Index: ble fast connect receive/do.bat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/do.bat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/do.bat	(working copy)
@@ -0,0 +1,146 @@
+@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
+@set device_option=shutter
+@rem set device_option=hci
+@rem 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 in (program\*.prog) do @if not %%f==program\bt.prog if not %%f==program\patch.prog if not %%f==program\sim.prog set progs=!progs! %%f
+type program\bt.prog %progs% > output\bt_program23.meta
+for %%f in (format\*.format) do @if not %%f==format\bt.format if not %%f==format\command.format set fmts=!fmts! %%f
+type format\bt.format %fmts% format\command.format > output\bt_format.meta
+perl util/mergepatch.pl output/bt_program23.meta
+perl util/memalloc.pl output/bt_format.meta
+
+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\ssp.dat + ..\sched\kb.dat +  ..\sched\fpga.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\ssp.dat + ..\sched\mouse.dat + ..\sched\le_mouse.dat +  ..\sched\fpga.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\109x.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
+
+..\..\regedr\geneep ramcode.rom fwram.rom sched.rom 0 %enckey% c
+cd ..\output
+
+echo eeprom.dat Generated......
+@rem perl eeprom2hciimage.pl
+@rem echo bt_patch.bin Generated......
+@rem perl bin2array.pl > bt_patch.h
+@rem echo bt_patch.h Generated......
+
+echo **********define info*************
+cd ..\program
+perl ..\util\define_info.pl
+
+
+:gen_eep_end
+cd ..
+echo **********************************
+echo EEPROM Generated.
+echo The Device is %device_option%. 
+echo Use command "e ep" to download EEPROM.
+echo **********************************
+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: ble fast connect receive/format/24g.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/24g.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/24g.format	(working copy)
@@ -0,0 +1,92 @@
+
+omemalloc(
+// patch allocated
+4 mem_24g_tx_btclk	
+1 mem_24g_interval
+1 mem_24g_txfail_cnt
+1 mem_24g_attempt_cnt
+1 mem_24g_attempt_flag
+3 mem_24g_rxfail_cnt
+1 mem_24g_retry
+1 mem_24g_pid
+1 mem_24g_datalen
+2 mem_24g_crc
+64 mem_24g_rxbuf
+4 mem_24g_addr
+2 mem_24g_len
+10 mem_24g_txpayload
+10 mem_24g_txdata
+1 mem_24g_ch
+16 mem_24g_scremble
+1 mem_24g_current_ch_number
+4 mem_24g_ch_map1
+4 mem_24g_ch_map2
+4 mem_24g_ch_map3
+4 mem_24g_ch_map4
+1 mem_24g_interval_min
+1 mem_24g_interval_max
+1 mem_24g_ensure
+
+8 mem_24g_enter_hibernate
+1 mem_24g_enter_lpm_timer
+1 mem_24g_pairing_sm
+4 mem_24g_addr_copy
+
+//2.4g dongle
+1 mem_24g_sifs
+1 mem_24g_rxcnt
+4 mem_24g_addr_private_dongle
+1 mem_24g_map_buff0_dongle
+1 mem_24g_channel_cnt_dongle
+1 mem_24g_pairing_sm_dongle
+4 mem_24g_tx_btclk_dongle	
+1 mem_24g_interval_dongle
+1 mem_24g_ch_update_dongle
+1 mem_24g_rx_sync_dongle
+1 mem_24g_ch_cnt_dongle
+6 mem_24g_rxbuf_temp_dongle
+6 mem_24g_rxbuf_dongle
+3 mem_24g_rxfail_cnt_dongle
+1 mem_24g_spi_enable_flag
+
+)
+
+(
+0 P24G_SM_PAIRING_SUCC
+1 P24G_SM_PAIRING_REQUEST
+2 P24G_SM_PAIRING_WAIT_ADDR
+3 P24G_SM_PAIRING_COMPLETE
+4 P24G_SM_PAIRING_WAIT_SUCC
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+3 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
+
+)
+
+
Index: ble fast connect receive/format/Hid.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/Hid.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/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: ble fast connect receive/format/app.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/app.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/app.format	(working copy)
@@ -0,0 +1,268 @@
+
+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_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
+2 mem_cb_update_notify_continue
+2 mem_cb_event_timer
+2 mem_cb_le_set_mult
+2 mem_cb_bt_set_mult
+2 mem_soft_version_num
+
+
+
+
+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
+4 mem_lpm_delay_after_sniff
+1 mem_xrecord_mode
+
+2 mem_eeprom_block_size
+1 mem_wakup_from_power_flag
+1 mem_spi_init_clk
+1 mem_spi_init_delay_time
+1 mem_spi_ncs_gpio
+
+2 mem_nv_data_ptr
+1 mem_nv_data_number
+
+//adc
+2 mem_0_5_adc_io_data
+2 mem_1v_adc_hvin_data
+2 mem_2v_adc_vinlpm_data
+2 mem_1v_adc_io_data
+2 mem_5v_adc_hvin_data
+2 mem_3v_adc_vinlpm_data
+2 mem_otp_adc_flag
+2 mem_reference_voltage
+1 mem_adc_config_flag
+1 mem_adc_channel
+2 mem_adc_current_value
+
+
+ifdef SPI_SIMULATE
+//spi gpio config
+0 mem_spi_simulate_struct
+1 mem_spi_simulate_cs_gpio
+1 mem_spi_simulate_sclk_gpio
+1 mem_spi_simulate_mosi_gpio
+1 mem_spi_simulate_miso_gpio
+1 mem_spi_simulate_motion_gpio
+//spi slave read byte
+50 mem_spi_simulate_read_byte_slave
+1 mem_spi_simulate_read_byte_slave_temp
+1 mem_spi_simulate_read_length_slave
+1 mem_spi_simulate_read_length_slave_temp
+//spi slave write byte
+50 mem_spi_simulate_write_byte_slave
+1 mem_spi_simulate_write_byte_slave_temp
+1 mem_spi_simulate_write_byte_slave_temp_temp
+1 mem_spi_simulate_write_length_slave
+1 mem_spi_simulate_write_length_slave_temp
+endif
+)
+//adc read
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+/* adc data addr and flag */
+(
+0x07e0 OTP_CHIP_FUNCTIONS
+0x07e2 otp_adc_io_0_5V_addr
+0x07e4 otp_adc_hvin_1V_addr
+0x07e6 otp_adc_vinlpm_2V_addr
+0x07e8 otp_adc_io_1V_addr
+0x07ea otp_adc_hvin_5V_addr
+0x07ec otp_adc_vinlpm_3V_addr
+0x07ee otp_adc_flag_addr
+0xaa55 OTP_ADC_FLAG
+)
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+0	eeprom_nv_ram
+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_uuid//6
+203 eeprom_module_ssp_enable//1
+204 eeprom_module_end//2
+
+//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
+//device option hight 4
+6 dvc_op_mouse
+7 dvc_op_keyboard
+//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
+)
+
Index: ble fast connect receive/format/bt.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/bt.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/bt.format	(working copy)
@@ -0,0 +1,1028 @@
+
+	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
+
+
+
+/* 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
+
+//
+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_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
+
+1 mem_tx_lch
+2 mem_tx_len
+
+1 mem_tx_power
+
+1 mem_context_number
+
+ifdef DEBUG_RF_INIT
+1 mem_rf_init_data
+endif
+)
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+
+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
+0x000a06 param_lmp_version0
+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
+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
+38 mark_24g
+39 mark_24g_conext
+40 mark_24g_search_pair
+41 mark_24g_normal_rcv
+42 mark_eeprom_size
+// 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
+2 page_inq_enable
+)
+//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
+0x35  REC_4_MODE_STATIC_ADDRESS
+0x36  REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS
+0x37  REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
Index: ble fast connect receive/format/command.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/command.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/command.format	(working copy)
@@ -0,0 +1,1386 @@
+
+/* 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
+  [1] 0   /* msb */
+  [15] 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: ble fast connect receive/format/hci.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/hci.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/hci.format	(working copy)
@@ -0,0 +1,642 @@
+
+
+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
+
+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
+(
+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: ble fast connect receive/format/keyboard.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/keyboard.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/keyboard.format	(working copy)
@@ -0,0 +1,224 @@
+
+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
+
+2 mem_kb_current_vdd_value_10times
+1 mem_kb_read_adc_cnt_100ms
+2 mem_kb_current_vdd_value
+1 mem_led_power_blink_count
+1 mem_led_power_500ms_cnt
+
+700 mem_kb_map2
+2 mem_3v1_adc_default
+158 mem_kb_map
+2 mem_kb_discovery_timer
+2 mem_kb_direct_timer
+2 mem_kb_no_data_timer
+2 mem_kb_direct_timeout
+1 mem_kscn_event_last
+
+1 mem_kscan_event_num_last
+
+
+//three devices param
+
+1 mem_auto_enable_mult_timer
+1 mem_auto_enable_mult_timer_init
+
+1 mem_kb_temp_flag
+
+8 mem_map2_out_report0
+8 mem_map2_out_report1
+
+8 mem_table_last_repory_data0
+8 mem_table_last_repory_data1
+
+10 mem_kb_down
+10 mem_kb_down_last
+8 mem_table_temp
+1 mem_pincode_vk_last
+1 mem_kb_device_button_last
+1 mem_kb_device_button_timer
+1 mem_kb_current_status
+1 mem_seq
+1 mem_dorx_cnt
+2 mem_matched_btclk
+1 mem_master_sniff_interval
+
+1 mem_led_power_gpio
+2 mem_kb_check_vdd_count
+
+
+2 mem_0v_adc_data
+2 mem_2v2_adc_data
+2 mem_3v_adc_data
+
+1 mem_select_system_led_timer
+1 mem_led_cap_gpio_status
+2 mem_kb_no_data_timeout
+4 mem_kb_gpio_last_val
+1 mem_store_current_status
+//1 mem_kb_check_kscan_flag
+
+1 mem_kb_led_on_timer
+1 mem_kb_debug_sm
+2 mem_kb_mode
+2 mem_kb_mode_revese
+6 mem_master_addr
+1 mem_led_device_blink_count
+1 mem_led_device_500ms_cnt
+
+1 mem_kb_caps_led_status
+1 mem_kb_reconnection_ssp
+1 mem_kb_rcv_hid_control_rsp
+
+5 mem_kb_down_regroup
+1 mem_kb_get_fn_flag
+1 mem_kb_kscan_cnt
+10 mem_kb_down_test
+1 mem_kb_release_fn_data
+
+
+1 mem_led_cap_delay_timer
+1 mem_led_cap_mult_timer
+1 mem_led_cap_flag
+1 mem_hid_rx_data
+1 mem_kb_fn_c
+1 mem_kb_c_fn
+
+650 mem_keyboard_uuid_list
+0 mem_keyboard_uuid_list_end
+500 mem_keyboard_le_att_list
+0 mem_keyboard_le_att_list_end
+)
+
+
+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
+
+)
+(
+0 CACEL_RECONN_FLAG
+1 KEY_EVENT_FLAG
+2 KEY_SEARCH_M_KEY_FLAG
+3 CHECK_VDD_LOW_FLAG
+)
+
+// MACRO for map2
+
+// MACRO for map2
+
+//map2 Functions definition
+ 0x00 KB_MAP2_FUNC_REPORT0
+ 0x01 KB_MAP2_FUNC_REPORT1
+ 0x02 KB_MAP2_FUNC_REPORT2
+ 0x80 KB_MAP2_FUNC_IGNORE
+ 0x81 KB_MAP2_FUNC_DISCOV
+ 0x82 KB_MAP2_FUNC_WIN
+ 0x83 KB_MAP2_FUNC_ANDROID
+ 0x84 KB_MAP2_FUNC_IOS
+ 0x85 KB_MAP2_FUNC_DEV1
+ 0x86 KB_MAP2_FUNC_DEV2
+ 0x87 KB_MAP2_FUNC_DEV3
+ 
+//map2 Status definition (bit map)
+ 0x01 KB_MAP2_STATUS_WIN
+ 0x02 KB_MAP2_STATUS_ANDROID
+ 0x04 KB_MAP2_STATUS_IOS
+ 0x10 KB_MAP2_STATUS_CONN
+ 0x20 KB_MAP2_STATUS_UNCONN
+ 
+ 0x00 KB_MAP2_STATUS_BIT_WIN
+ 0x01 KB_MAP2_STATUS_BIT_ANDROID
+ 0x02 KB_MAP2_STATUS_BIT_IOS
+ 0x04 KB_MAP2_STATUS_BIT_CONN
+ 0x05 KB_MAP2_STATUS_BIT_UNCONN
+
+// map2 report length
+8 KB_MAP2_REPORT_LENGTH
+0x08 KB_VK_MAX_LEN
+
+//map2 device button state
+0 KB_DEVICE_BUTTON_UP
+1 KB_DEVICE_BUTTON_DEVICE1
+2 KB_DEVICE_BUTTON_DEVICE2
+3 KB_DEVICE_BUTTON_DEVICE3
+0xff KB_DEVICE_BUTTON_ALREADY_LONG
+)
+
+//
+(
+0x01 REPORT_ID_1
+0x02 REPORT_ID_2
+0x03 REPORT_ID_3
+)
+
+(
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+0x1fe9 EEPROM_ADDR_VDD_FLAG
+0x1fea EEPROM_ADDR_VDD_LOW_FLAG
+0x1fec EEPROM_SYSTEM_FALG
+
+)
+
+//Specil Function Key
+(
+0XFF SFK_ANDROID_MAP
+0XFE SFK_IOS_SCREENSHOT
+
+)
+0x39 CAPS_LOCK_DATA
+)
+
+(
+2 KB_TEST_MODE
+)
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+/*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
+
+
+
Index: ble fast connect receive/format/l2cap.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/l2cap.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/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: ble fast connect receive/format/le.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/le.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/le.format	(working copy)
@@ -0,0 +1,693 @@
+
+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_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_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
+2 mem_le_l2cap_pdu_length
+
+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
+1 mem_24g_id
+
+
+2 mem_le_cur_attlist_start_ptr
+2 mem_le_cur_handle_start
+2 mem_le_cur_handle_end
+1 mem_le_cur_uuid_lenth
+16 mem_le_cur_uuid
+
+1 mem_le_search_len
+1 mem_le_search_res
+
+1 mem_le_continue_type
+1 mem_le_public_length
+
+)
+
+
+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_transmitwindowsize
+2 mem_le_new_transmitwindowoffset
+2 mem_le_new_conninterval
+2 mem_le_new_connslavelatency
+2 mem_le_new_connsupervisiontimeout
+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
+1 mem_le_preq
+1 mem_le_preq_iocap
+1 mem_le_preq_oob
+1 mem_le_preq_auth
+1 mem_le_preq_max_keysize
+1 mem_le_preq_init_key_distribution
+1 mem_le_preq_resp_key_distribution
+1 mem_le_pres
+1 mem_le_pres_iocap
+1 mem_le_pres_oob
+1 mem_le_pres_auth
+1 mem_le_pres_max_keysize
+1 mem_le_pres_init_key_distribution
+1 mem_le_pres_resp_key_distribution
+
+/* att related */
+2 mem_le_search_handle_start
+2 mem_le_search_handle_end
+0 mem_le_att_offset
+1 mem_le_search_att_type_length
+16 mem_le_search_att_type
+2 mem_le_notify_handle
+1 mem_le_search_uuid_length
+16 mem_le_search_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
+8 mem_le_xtype_fifo
+
+2 mem_le_local_mtu
+2 mem_le_remote_mtu
+1 mem_le_ll_cur_opcode
+
+8 mem_le_skdm
+8 mem_le_skds
+
+2 mem_le_init_superto
+
+
+1 mem_le_secure_connect_enable
+1 mem_le_secure_connect_flag
+1 mem_le_sc_calc
+1 mem_le_secure_connect_state
+1 mem_le_sc_confirm_gkey_flag
+1 mem_le_sc_local_key_invalid
+
+1 mem_le_continue_flag
+
+1 mem_le_pairing_state
+1 mem_le_enc_state
+1 mem_le_pairing_mode
+4 mem_le_tk
+2 mem_le_ediv
+8 mem_le_rand
+16 mem_le_irk
+2 mem_le_pairing_handle
+2 mem_le_interal_min
+2 mem_le_interal_max
+2 mem_le_latency
+2 mem_le_timeout
+//LE attribute list
+1 mem_le_switch_send_data
+4 mem_le_transmit_window
+
+2 mem_le_buff_len
+2 mem_le_buff_len_all
+2 mem_le_buff_data_len_all
+2 mem_prepare_write_len
+2 mem_le_prepare_write_req_offset
+2 mem_prepare_handle
+2 mem_prepare_write_offest
+
+1 mem_le_flag
+
+)
+
+(
+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	
+0xa0 param_le_sca
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+)
+
+/*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
+	0x4c XT_SMP_PAIRING_PUBLIC_KEY
+	0x4d XT_SMP_PAIRING_DHKEY_CHECK
+	)
+
+
+	/* 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
+	0x0c SMP_PAIRING_PUBLIC_KEY
+	0x0d SMP_PAIRING_DHKEY_CHECK
+	)
+
+	/* 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
+	0x1f ATTOP_CONTINUE
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	)
+
+	/* 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
+	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
+	)
+
+	(// pairing failed reason
+	0x00 PAIRING_FAILED_RESERVED
+	0X01 PAIRING_FAILED_PASSKEY_ENTRY_FAILED
+	0X02 PAIRING_FAILED_OOB_NOT_AVAILABLE
+	0X03 PAIRING_FAILED_AUTHENTICATION_REQUIRE
+	0X04 PAIRING_FAILED_CONFIRM_VALUE_FAILED
+	0X05 PAIRING_FAILED_PAIRING_NOT_SUPPORTED
+	0X06 PAIRING_FAILED_ENCRYPTION_KEY_SIZE
+	0X07 PAIRING_FAILED_COMMAND_NOT_SUPPORTED
+	0X08 PAIRING_FAILED_UNSPECIFIED_REASON
+	0X09 PAIRING_FAILED_REPEATED_ATTEMPTS
+	0X0A PAIRING_FAILED_INVALID_PARAMETERS
+	0X0B PAIRING_FAILED_DHKEY_CHECK_FAILED
+	0X0C PAIRING_FAILED_NUMERIC_COMPARISON_FAILED
+	0X0D PAIRING_FAILED_BR_EDR_PAIRING_IN_PROGRESS
+	0X0E PAIRING_FAILED_KEY_DERIVATION_GENERATION_NOT_ALLOWED
+	)
+
+	//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
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+(
+0 LE_CONTINUE_TYPE_NULL
+1 LE_CONTINUE_TYPE_NOTIFICATION
+2 LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE 
+)
+
+
+(
+0 LE_INITATOR_LTK_BIT
+1 LE_INITATOR_IRK_BIT
+2 LE_INITATOR_CSRK_BIT
+)
+
+(
+0X00	LE_PAIRING_MODE_NONE
+0X01	LE_PAIRING_MODE_LAGACY_JUSTWORK
+0X02	LE_PAIRING_MODE_LAGACY_PASSKEY
+0x81	LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82	LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+0X83	LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+
+7 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+)
+
+
+(
+0 FLAG_IOCAP_DISPLAYONLY
+1 FLAG_IOCAP_DISPLAYYESNO
+2 FLAG_IOCAP_KEYBOARDONLY
+3 FLAG_IOCAP_NOINPUTNOOUTPUT
+4 FLAG_IOCAP_KEYBOARDDISPLAY
+
+0x00 FLAG_OOB_DATA_FLAG_NO
+)
+
+(
+0X00 FLAG_LE_NO_BONDING_NO_MITM
+0X01 FLAG_LE_BONDING_NO_MITM
+0X04 FLAG_LE_NO_BONDING_MITM
+0X05 FLAG_LE_BONDING_MITM
+0X09 FLAG_LE_BONDING_NO_MITM_SECURE
+0X0D FLAG_LE_BONDING_MITM_SECURE
+
+2 LE_AUTH_MITM_BIT
+3 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+)
+
+(
+0  LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND
+1  LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE
+2  LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE
+
+)
+
+(
+0 MASTER_PUBLIC_ADDR
+1 MASTER_RANDOM_ADDR
+)
+
+(
+0x06 LE_ERR_PIN_OR_KEY_MISSING
+)
+
+//mem_le_enc_state
+(
+0 FLAG_LE_ENC_NULL
+1 FLAG_LE_ENC_START
+2 FLAG_LE_ENC_PAUSE
+3 FLAG_LE_ENC_END
+)
+
+//mem_le_pairing_state
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+/*LE secure connect state */
+(
+0x00 LE_SC_STAT_NULL
+0x01 LE_SC_STAT_RECEIVE_PUBLIC_KEY
+0x02 LE_SC_STAT_WAIT_SEND_PUBLIC_KEY
+0x03 LE_SC_STAT_SEND_PUBLIC_KEY
+0x04 LE_SC_STAT_RECEIVE_RANDOM
+0x05 LE_SC_STAT_SEND_RANDOM
+0x06 LE_SC_STAT_RECEIVE_DHKEY
+0x07 LE_SC_STAT_WAIT_CONFIRM_GKEY
+0x08 LE_SC_STAT_PASSKEY_WAIT_CONFIRM
+)
+
+
+(
+0 FLAG_LE_SC_CONFRIM_NULL
+1 FLAG_LE_SC_CONFRIM_GKEY_OK
+)
+
+
+(
+3 LE_CONTINUE_TYPE_PUBLIC_KEY
+)
+
+//mem_le_continue_flag
+(
+0 LE_CONTINUE_FLAG_NULL
+1 LE_CONTINUE_FLAG_RX
+2 LE_CONTINUE_FLAG_TX
+)
+
+
Index: ble fast connect receive/format/lmp.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/lmp.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/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: ble fast connect receive/format/memblocks.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/memblocks.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/memblocks.format	(working copy)
@@ -0,0 +1,62 @@
+//
+//
+//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
+)
+
+(
+0x4c00 mem_module_rx_buf//0x400
+0x4c00 mem_module_rx_buf_little
+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: ble fast connect receive/format/module.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/module.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/module.format	(working copy)
@@ -0,0 +1,231 @@
+memalloc(
+	2 mem_module_temp_len
+	1 mem_uart_cmd
+	1 mem_uart_opcode
+	1 mem_uart_len
+	1 mem_module_temp_nl_discard_packet
+	1 mem_module_le_md_flag
+)
+omemalloc(	
+	1 mem_module_wake_up_gpio
+	1 mem_module_state_gpio
+	1 mem_module_connect_state_gpio
+
+	2 mem_current_packet_length
+	1 mem_module_state
+	1 mem_module_task
+	6 mem_cmode_addr
+	1 mem_module_mcu_wake_pin
+	4 mem_module_mcu_wake_delay_us
+
+	1 mem_module_spp_lpm_mult
+	1 mem_module_le_lpm_mult	
+	1 mem_module_bluetooth_stauts_by_command
+
+	//uart
+	2 mem_module_uart_rx_buffer
+	2 mem_module_uart_rx_buffer_end
+	2 mem_module_uart_tx_buffer
+	2 mem_module_uart_tx_buffer_end
+
+	//ADC
+	1 mem_module_read_vdd_flag
+	1 mem_module_read_vdd_count
+	1 mem_module_vdd_quotient
+	1 mem_module_vdd_remainder
+
+	//ble
+	2 mem_module_le_buff_len
+	2 mem_module_le_buff_len_all
+	2 mem_module_le_buff_data_len_all
+	1 mem_module_le_continue_flag
+	1 mem_module_le_rx_data_len
+	2 mem_module_le_rx_data_address
+	2 mem_module_le_rx_data_handle
+	//ble write handle
+	2 mem_module_data_write_handle
+	2 mem_module_data_write_handle2
+	//flag
+	1 mem_module_flag
+	1 mem_le_notify_type
+	2 mem_module_hci_notify_start
+	2 mem_module_hci_notify_offset
+	2 mem_module_hci_notify_len
+	2 mem_module_hci_notify_att
+	2 mem_module_hci_notify_original_len
+	
+	300 mem_module_uuid_list
+	0 mem_module_uuid_list_end
+	500 mem_module_le_att_list
+	0 mem_module_le_att_list_end
+	0 mem_nv_data
+	34 mem_nv_data0
+	34 mem_nv_data1
+	34 mem_nv_data2
+	34 mem_nv_data3
+	34 mem_nv_data4
+)
+
+
+(
+0 MODULE_FLAG_UART_FLOW_CONTROL
+1 MODULE_FLAG_BLE_RECEIVED_DATA
+2 MODULE_FLAG_BLE_SEND_MTU23
+3 MODULE_FLAG_BLE_SEND_DATA
+)
+
+
+
+
+(
+34 NV_DATA_LEN
+-1 DECREASED_ONE
+)
+
+
+
+(
+	10 FLAG_MODULE_READ_VDD_COUNT
+)
+
+	(
+		110  DM_REFCOM_BUFF_LEN
+		230  NL_RFCOMM_BUFF_LEN
+		220  NL_RFCOMM_BUFF_LEN_220
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+	(
+		0 MODULE_LED_DISABLE
+		1 MODULE_LED_BLINK
+	)
+
+
+
+
+(
+0x01 HCI_DISCARD_PACKET
+0x00 HCI_NOT_DISCARD_PACKET
+
+
+)
+
+
+
+(//Command
+0x00 HCI_CMD_SET_BT_ADDR_REQ
+0x01 HCI_CMD_SET_LE_ADDR_REQ
+0x02 HCI_CMD_SET_VISIBILITY_REQ
+0x03 HCI_CMD_SET_BT_NAME_REQ
+0x04 HCI_CMD_SET_LE_NAME_REQ
+0x05 HCI_CMD_SPP_DATA_REQ
+0x09 HCI_CMD_LE_DATA_REQ
+0x0b HCI_CMD_STATUS_IRQ
+0x0c HCI_CMD_SET_PAIRING_REQ
+0x0d HCI_CMD_SET_PINCODE_REQ
+0x0e HCI_CMD_SET_UARTCONTROL_REQ
+0x0f HCI_CMD_SET_UART_BAUD_REQ
+0x10 HCI_CMD_VERSION_REQ
+0x11 HCI_CMD_BT_DISCONNECT
+0x12 HCI_CMD_BLE_DISCONNECT
+0x13 HCI_CMD_DELETE_DEVICE
+0x14 HCI_CMD_CREATE_CONNECT
+0x26 HCI_CMD_SET_NVRAM_REQ
+0x27 HCI_CMD_SLEEP
+0x28 HCI_CMD_CONFIRM_GKEY
+0x29 HCI_CMD_SET_CREDIT_GIVEN
+0x2a HCI_CMD_AUTO_ADV_SCAN
+0x2b HCI_CMD_POWER_REQ
+0x2c HCI_CMD_POWER_SET
+0x30 HCI_CMD_PASSKEY_ENTRY
+0x31 HCI_CMD_SET_GPIO
+0x32 HCI_CMD_READ_GPIO
+0x33 HCI_CMD_LE_SET_PAIRING
+0x34 HCI_CMD_LE_SET_ADV_DATA
+0x35 HCI_CMD_LE_SET_SCAN_DATA
+0x36 HCI_CMD_LE_SEND_CONN_UPDATE_REQ
+0x38 HCI_CMD_LE_START_PAIRING
+0x48 HCI_CMD_LE_CONFIRM_GKEY
+
+)
+
+(//event
+0x00 HCI_EVENT_SPP_CONN_REP
+0x01 HCI_EVENT_HID_CONN_REP
+0x02 HCI_EVENT_LE_CONN_REP
+0x03 HCI_EVENT_SPP_DIS_REP
+0x04 HCI_EVENT_HID_DIS_REP
+0x05 HCI_EVENT_LE_DIS_REP
+0x06 HCI_EVENT_CMD_RES
+0x07 HCI_EVENT_SPP_DATA_REP
+0x08 HCI_EVENT_LE_DATA_REP
+0x09 HCI_EVENT_STANDBY_REP
+0x0a HCI_EVENT_STATUS_RES
+0x0b HCI_EVENT_FINISH_PACK_NUM
+0X0C HCI_EVENT_SNIFF_MD_CHANGE
+0x0D HCI_EVENT_NVRAM_REP
+0x0e HCI_EVENT_GKEY
+0x0F HCI_EVENT_INVALID_PACKET
+0x10 HCI_EVENT_GET_PASSKEY
+0x11 HCI_EVENT_LE_TK
+0x12 HCI_EVENT_REMOTE_MTU
+0x14 HCI_EVENT_LE_PAIRING_STATE
+0X15 HCI_EVENT_LE_ENCRYPTION_STATE
+0x17 HCI_EVENT_LE_CONNECTION_UPDATE
+0x1d HCI_EVENT_LE_GKEY
+
+)
+
+
+
+
+(
+0x7e0 OTP_ADDR_RF_PARAM_FIX
+//struct of RF_PARAM_FIX
+// uint8       //length = param_pair_count * 2 
+// uint16     //param-pair-1
+// uint16     //param-pair-2
+// uint16     //param-pair-3
+// uint16     //param-pair-4
+// uint16     //param-pair-5
+// uint16     //param-pair-6
+// uint16     //param-pair-7
+)
+(
+0x0270 FW_VERSION_NUMBER
+)
+
+(
+0	PAIRING_PINCODE
+1	PAIRING_JUSTWORK
+2	PAIRING_PASSKEY
+3	PAIRING_CONFIRM
+)
+
+
+(
+0x0001	FLAG_BT_PAIRING_SUCCESS
+0x0101	FLAG_BT_PAIRING_FAIL
+0x0080	FLAG_BLE_PAIRING_SUCCESS
+0x0180	FLAG_BLE_PAIRING_FAIL
+)
+
+
+(
+1	FLAG_EVENT_START_ENC
+0	FLAG_EVENT_PAUSE_ENC
+)
+
+(
+	0 MOUDLE_STATE_BT_BIT
+	1 MOUDLE_STATE_BLE_BIT
+)
+
+(
+	0 MOUDLE_TASK_UNSINFF
+)
+
+
Index: ble fast connect receive/format/mouse.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/mouse.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/mouse.format	(working copy)
@@ -0,0 +1,134 @@
+
+memalloc(
+2 mem_init_cnt
+)
+//dpi eeprom addr
+198 mouse_dpi_eeprom_addr
+
+omemalloc(
+// Mouse Work Area
+1 mem_mouse_key
+2 mem_mouse_x
+2 mem_mouse_y
+1 mem_mouse_z
+1 mem_mouse_tz
+1 mem_mouse_xy_h
+1 mem_sensor_shutter_hi
+1 mem_sensor_shutter_lo
+1 mem_sensor_smart_flag
+1 mem_sensor_squal_reg
+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
+1 mem_mouse_le_notify_handle
+// Mouse Config Area
+
+1 mem_lbutton_gpio
+1 mem_rbutton_gpio
+1 mem_mbutton_gpio
+1 mem_sbutton1_gpio
+1 mem_sbutton2_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_sensor_reset_gpio
+1 mem_device1_led_gpio
+1 mem_device2_led_gpio
+1 mem_device3_led_gpio
+1 mem_conn_cnt
+//mouse T wheel
+1 mem_whee_ta_data_gpio
+1 mem_whee_tb_data_gpio
+1 mem_wheel_tb_old_pinlevel
+1 mem_wheel_tb_new_pinlevel
+1 mem_wheel_tog 
+1 mem_mouse_tz_data
+1 mem_mouse_tz_data_count
+1 mem_mouse_tz_data_count1
+
+1 mem_mwhee_a_data_gpio
+1 mem_mwhee_b_data_gpio
+1 mem_mwheel_b_old_pinlevel
+1 mem_mwheel_b_new_pinlevel
+1 mem_mwheel_tog 
+1 mem_mouse_z_data
+1 mem_mouse_z_data_count
+1 mem_mouse_z_data_count1
+
+1 mem_reconn_mode
+1 mem_mouse_statue_led_timer  
+
+1 mem_device_flag
+650 mem_mouse_uuid_list
+0 mem_mouse_uuid_list_end
+500 mem_mouse_le_att_list
+0 mem_mouse_le_att_list_end
+)
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+)
+0x30 P3204_ID
+0x31 P3065_ID
+0x3e P3610_ID
+
+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
+       2       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
+)
+
Index: ble fast connect receive/format/patch.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/patch.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/patch.format	(working copy)
@@ -0,0 +1,516 @@
+
+(
+	  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
+
+)
Index: ble fast connect receive/format/regs.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/regs.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/regs.format	(working copy)
@@ -0,0 +1,297 @@
+(
+  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
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+  0x8973 rfen_chgpump
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_ib_lna
+  0x894e 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
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+  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
+0x91 uart_ctrl_5line
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x00 uartclk_crystal
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x34 uart_baud_921600
+0x9c4 uart_baud_9600
+0x2dc6c00 uart_clk
+0x16E3600 uart_clk_24
+
+//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: ble fast connect receive/format/rfcomm.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/rfcomm.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/rfcomm.format	(working copy)
@@ -0,0 +1,391 @@
+/*****************************************************************************/
+/* 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
+
+1 mem_credit_flag
+
+2 mem_rfcomm_max_frame_size
+1 mem_rfcomm_credit_init_data
+
+2 mem_cb_receive_spp_data
+
+2 mem_nl_rx_data_src
+2 mem_nl_rx_len_all
+)
+
+
+(
+0 CREDIT_DISABLE
+1 CREDIT_ENABLE
+)
+
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* 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
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+)
+
+/*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: ble fast connect receive/format/sdp.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/sdp.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/sdp.format	(working copy)
@@ -0,0 +1,52 @@
+
+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 mem_ui_uuid_table
+22 mem_all_uuid_16bits
+18 mem_all_uuid_128bits
+2 mem_ui_le_uuid_table
+)
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+(
+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: ble fast connect receive/format/security.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/security.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/security.format	(working copy)
@@ -0,0 +1,141 @@
+
+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
+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
+2 mem_ec_loopc
+1 mem_aes_cmac_data_length
+
+0 memdat
+/* ecc calculation */
+
+24 mem_ax
+24  mem_ay
+24  mem_az
+24 mem_bx
+0 mem_ax_256 //32 bytes
+24 mem_by
+8 mem_bz
+16 mem_ay_256 // 32 bytes
+16 mem_cx
+8 mem_az_256 // 32 bytes
+23 mem_cy
+1 mem_cy5
+0 mem_bx_256 // 32 bytes
+24 mem_cz
+8  mem_k
+16 mem_by_256 // 31 bytes
+16 mem_align
+
+0 mem_bz_256  //32 bytes
+0 mem_tmp1
+24 memahbak
+8 mem_tmp5
+0 mem_cx_256  //32 bytes
+16 memahsave
+16  mem_tmp2
+0 mem_cy_256  // 32 bytes
+0  memahsave_end 
+1  mem_addr_padding 
+7   mem_addr_value         /* 12 bytes     */ 
+0 mem_tmp3
+5 mem_t1
+3  mem_addr_value_end   
+15 mem_addr_iocap_end
+1 mem_cy5_256 // 1 byte
+0 mem_cz_256 // 32 bytes
+0 mem_tmp0
+8 mem_t0
+16 mem_tmp0a
+8  mem_t2
+16 mem_k_256 //32 bytes
+16 mem_t3
+8  mem_tmp1_256 //32 bytes
+24 mem_t7
+
+
+32 mem_tmp5_256
+32  mem_tmp2_256
+0 mem_tmp3_256
+32 mem_t1_256
+0 mem_tmp0_256
+32 mem_t0_256
+32 mem_t2_256
+32 mem_t3_256
+32 mem_t7_256
+
+24 mem_p		
+24 mem_a
+24 mem_b
+24 mem_gx
+24 mem_gy
+32 memh0
+
+//p256
+//2 mem_ec_loopc_256
+//32 mem_ax_256
+//32 mem_ay_256
+//32 mem_az_256
+//32 mem_bx_256
+//32 mem_by_256
+//32 mem_bz_256
+//32 mem_cx_256
+//31 mem_cy_256
+//1 mem_cy5_256
+//32 mem_cz_256
+//32 mem_k_256
+
+
+//32 mem_tmp1_256
+//32 mem_tmp5_256
+//32  mem_tmp2_256
+
+//0 mem_tmp3_256
+//32 mem_t1_256
+//0 mem_tmp0_256
+//32 mem_t0_256
+//32 mem_t2_256
+//32 mem_t3_256
+//32 mem_t7_256
+
+32 mem_p_256		
+32 mem_a_256
+32 mem_gx_256
+32 mem_gy_256
+//4 mem_le_keyid
+16 mem_le_slat
+
+
+//64 mem_regext
+//1 mem_regext_index
+
+//16 mem_le_mackey
+
+
+//1 mem_AES_CMAC_flag
+//16 mem_AES_CMAC_temp
+//16 mem_AES_CMAC_M_last
+
+//4 mem_le_gkey
+
+//16 mem_le_r
+
+)
+
+
Index: ble fast connect receive/format/shutter.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/shutter.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/shutter.format	(working copy)
@@ -0,0 +1,460 @@
+
+
+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
+
+
+//1 mem_last_txlch
+//2 mem_last_txlen
+//20 mem_last_txdata
+1 mem_read_eeprom_temp
+3 mem_read_eeprom_mac_addr
+
+1 mem_scale_tx_length
+1 mem_scale_txbuff_inuse
+2 mem_adv_lap_ptr
+1 mem_le_sleep_flag
+2 mem_rx_window_sniff_inc
+1 mem_pair_state
+1 mem_exchange_mtu_req
+2 mem_le_sleep_timeout
+2 mem_le_sleep_timeout_timer_count
+2 mem_le_fast_adv_timeout
+2 mem_le_fast_adv_timeout_timer_count
+2 mem_led_fast_dark_time
+2 mem_led_fast_light_time
+/////////////////////////////////////////////////////////////////
+//the pin of power on button
+1 mem_power_on_pin 
+//uint(100ms)
+//1 mem_key_press_to_power_on_time
+//uint(100ms)
+//1 mem_key_press_to_power_off_time
+//= 1 hardswitch, =0 softswitch
+1 mem_hard_soft_switch_case
+//=1 power on, =0 power off
+//1 mem_is_poweron_flag 
+1 mem_shutter_powerup_flag
+1 mem_shutter_button_timeout
+1 mem_shutter_button_timer
+1 mem_power_timeout
+1 mem_power_timer
+1 mem_enable_key_scan
+2 mem_packet_interval_set
+
+// byte array for led pin,uint8_t mem_led_map[4]
+1 mem_shutter_led_num
+4 mem_led_map
+
+/*
+*	typedef struct
+*	{
+*		LED_STYLE led_type,
+*		uint8_t led_pin,//bit[4-0]:gpio num, bit 7 =0 low active
+*		uint16_t on_time,//led light time
+*		uint16_t off_time,//led dark time
+*		uint8_t blink_count,//the number of times of led flashing,if blink _count == 0xff, always flashing
+*	}Led_Style;
+*/
+0 mem_fast_adv_led_style
+1 mem_fa_led_type
+1 mem_fa_led_pin
+2 mem_fa_led_on_time
+2 mem_fa_led_off_time
+1 mem_fa_blink_count
+
+0 mem_slow_adv_led_style
+1 mem_sa_led_type
+1 mem_sa_led_pin
+2 mem_sa_led_on_time
+2 mem_sa_led_off_time
+1 mem_sa_blink_count
+
+//Led_style power_on_led_style
+0 mem_power_on_led_style
+1 mem_po_led_type
+1 mem_po_led_pin
+2 mem_po_led_on_time
+2 mem_po_led_off_time
+1 mem_po_blink_count
+
+//Led_style Powe_off_led_style
+0 mem_powe_off_led_style
+1 mem_pf_led_type
+1 mem_pf_led_pin
+2 mem_pf_led_on_time
+2 mem_pf_led_off_time
+1 mem_pf_blink_count
+
+//Led_style connected_led_style
+0 mem_connected_led_style
+1 mem_co_led_type
+1 mem_co_led_pin
+2 mem_co_led_on_time
+2 mem_co_led_off_time
+1 mem_co_blink_count
+
+0 mem_key_led_style
+0 mem_key_led_style_ind_0
+7 mem_key_led_style_ind_0_data
+0 mem_key_led_style_ind_1
+7 mem_key_led_style_ind_1_data
+0 mem_key_led_style_ind_2
+7 mem_key_led_style_ind_2_data
+0 mem_key_led_style_ind_3
+0 mem_key_led_style_ind_key_release
+7 mem_key_led_style_ind_3_data
+
+0 mem_temp_led_style
+1 mem_temp_led_type
+1 mem_temp_led_pin
+2 mem_temp_led_on_time
+2 mem_temp_led_off_time
+1 mem_temp_blink_count
+
+/**
+* typedef struct
+* {
+*	uint8_t key_pin,//bit[4-0]:gpio num, bit 7 =0 low active
+*	uint8_t led_style_ind,//key_led[0,1,2]
+*	uint8_t *press_ptr,
+*	uint8_t *rel_ptr;
+* }Key_Conf;
+**/
+1 mem_shutter_key_num
+//key_conf[max_shutter_key_num] 
+0 mem_key_conf0
+1 mem_key_conf0_pin
+1 mem_key_conf0_led
+//2 mem_key_conf0_press_ptr
+//2 mem_key_conf0_rel_ptr
+0 mem_key_conf1
+1 mem_key_conf1_pin
+1 mem_key_conf1_led
+//2 mem_key_conf1_press_ptr
+//2 mem_key_conf1_rel_ptr
+0 mem_key_conf2
+1 mem_key_conf2_pin
+1 mem_key_conf2_led
+//2 mem_key_conf2_press_ptr
+//2 mem_key_conf2_rel_ptr
+0 mem_key_conf3
+1 mem_key_conf3_pin
+1 mem_key_conf3_led
+//2 mem_key_conf3_press_ptr
+//2 mem_key_conf3_rel_ptr
+0 mem_key_conf4
+1 mem_key_conf4_pin
+1 mem_key_conf4_led
+//2 mem_key_conf4_press_ptr
+//2 mem_key_conf4_rel_ptr
+0 mem_key_conf5
+1 mem_key_conf5_pin
+1 mem_key_conf5_led
+//2 mem_key_conf5_press_ptr
+//2 mem_key_conf5_rel_ptr
+
+//0 mem_key_conf_temp
+//1 mem_key_conf_pin
+//1 mem_key_conf_led
+//2 mem_key_conf_press_ptr
+//2 mem_key_conf_rel_ptr
+2 mem_key_value_temp
+2 mem_key_value
+1 mem_key_packet_count
+2 mem_key_next_addr
+1 mem_key_value_temp1
+1 mem_key_value_temp2
+1 mem_key_value_temp3
+1 mem_key_value_temp4
+1 mem_key_value_temp5
+1 mem_key_value_temp6
+
+20 mem_key0_press
+20 mem_key0_release	
+14 mem_key1_press
+14 mem_key1_release
+14 mem_key2_press
+14 mem_key2_release
+14 mem_key3_press
+14 mem_key3_release
+14 mem_key4_press
+14 mem_key4_release
+14 mem_key5_press
+14 mem_key5_release
+
+1 mem_queue_ele_num
+2 mem_queue_read
+2 mem_queue_write
+0 mem_queue_start
+10 mem_data_ele0
+10 mem_data_ele1
+10 mem_data_ele2
+10 mem_data_ele3
+10 mem_data_ele4
+10 mem_data_ele5
+0 mem_queue_end
+2 mem_queue_temp
+
+
+
+1 mem_shutter_key_data_flag
+1 mem_shutter_key_data_flag_1
+
+// find type value 
+2 mem_le_find_type_value_start_handle
+2 mem_le_find_type_value_end_handle
+1 mem_shutter_find_type_value_flag
+1 mem_le_uuid
+
+1 mem_send_updata_le_param_timer
+3 mem_le_smp_key_dist
+1 mem_ltk_states
+1 mem_shutter_conn_update_timer
+
+1 mem_empty_count
+1 mem_shutter_notification_len
+2 mem_shutter_notification_addr
+500 mem_shutter_le_att_list
+1 mem_timeout_disconnect_timer
+135 mem_shutter_att_list_patch
+3 mem_le_app_peer_addr
+6 mem_app_peer_addr
+
+1 mem_le_conn_state
+1 mem_le_conn_sm
+1 mem_le_work_data_send_flag
+
+0 mem_le_car_write_cmd_data
+4 mem_le_car_write_cmd_head
+5 mem_le_car_write_cmd_data1
+2 mem_le_car_write_cmd_control
+1 mem_le_car_write_cmd_check_sum
+
+1 mem_queue_ele_num_patch
+2 mem_queue_read_patch
+2 mem_queue_write_patch
+0 mem_queue_start_patch
+20 mem_data_ele0_patch
+20 mem_data_ele1_patch
+20 mem_data_ele2_patch
+20 mem_data_ele3_patch
+20 mem_data_ele4_patch
+20 mem_data_ele5_patch
+0 mem_queue_end_patch
+2 mem_queue_temp_patch
+
+2 mem_le_sleep_conn_timeout
+
+6 mem_slave_addr
+
+11 mem_uart_mouse_data_buff
+6 mem_le_slave_peer_addr
+1 mem_le_send_write_request_count
+
+)
+
+(
+6 QUEUE_ELE_COUNT
+10 QUEUE_ELE_LENGTH
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0x18 ATT_WRITE_REQUEST_HANDLE
+)
+
+(
+0x13	HANDLE_VOLUM_UP_KEY	
+0x17	HANDLE_ENTER_KEY
+)
+	
+(
+0x010210 param_smp_key_dist1
+0x010010 param_smp_key_dist2
+)
+
+(
+0 INITATOR_LTK
+1 INITATOR_IRK
+2 INITATOR_CSRK
+)
+
+(
+//100ms
+0x00a0	FAST_ADV_INTERVAL_VALUE
+//200ms
+0x0140	SLOW_ADV_INTERVAL_VALUE
+)
+
+(
+0x01	GAP_ADTYPE_FLAGS
+0x02	GAP_ADTYPE_16BIT_MORE
+0x03	GAP_ADTYPE_16BIT_COMPLETE
+0x04	GAP_ADTYPE_32BIT_MORE
+0x05	GAP_ADTYPE_32BIT_COMPLETE
+0x06	GAP_ADTYPE_128BIT_MORE
+0x07	GAP_ADTYPE_128BIT_COMPLETE
+0x08	GAP_ADTYPE_LOCAL_NAME_SHORT
+0x09	GAP_ADTYPE_LOCAL_NAME_COMPLETE
+0x0a	GAP_ADTYPE_POWER_LEVEL
+0xff	GAP_ADTYPE_MANUFACTURER_SPECIFIC
+)
+
+(
+0 ATT_BIT_NOTIFICATION
+1 ATT_BIT_INDICATION
+)
+///////////////////////////////////////////////////////////////////////////////////////
+(
+13 MAX_SHUTER_KEY_NUM
+4  MAX_SHUTTER_LED_NUM
+0xFF INVALID_PIN_NUM
+)
+(
+0 KEY_DEFAULT
+1 kEY_1
+2 kEY_2
+3 KEY_3
+4 KEY_4
+)
+(
+0 HARD_SWITCH
+1 SOFT_SWITCH
+)
+(
+0 LED_OFF
+1 LED_ON
+2 LED_BLINK
+0xFF LED_INVALID
+)
+
+/*struct led_style*/
+(
+7 LED_STYLE_STRUCT_LEN
+0 LED_TYPE_OFFSET
+1 LED_PIN_OFFSET
+2 LED_ON_TIME_OFFSET
+4 LED_OFF_TIME_OFFSET
+6 LED_BLINK_COUNT_OFFSET
+)
+
+/*struct key_conf*/
+(
+2 KEY_CONF_STRUCT_LEN
+0 KEY_PIN_OFFSET
+1 KEY_STYLE_IND_OFFSET
+)
+
+(
+0 SHUTTER_POWER_UP
+1 SHUTTER_POWER_ON
+2 SHUTTER_POWER_OFF
+)
+
+(
+0x5907 le_parse_att0
+0x5656 le_prepare_smp0
+0x5666 le_prepare_att0
+0x7c67 check_51cmd_once0
+)
+
+
+(
+0xf00 EEP_LAP_ADDR
+)
+
+(
+0x33 PAIRED_DEVICE_TYPE_BT
+0x44 PAIRED_DEVICE_TYPE_BLE
+5 PAIRED_DEVICE_DEFAULT_LEN
+0x5a5a PAIRED_DEVICE_MAGIC
+)
+
+(
+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
+)
+
+
+//mem_shutter_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
+)
+
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE_PATCH
+)
+
+(
+50 TIMEOUT_DISCONNECT_TIMER
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+
+(
+6 QUEUE_ELE_COUNT_PATCH
+20 QUEUE_ELE_LENGTH_PATCH
+)
+
+(
+0x4000 mem_shutter_rx_buf
+0x4030 mem_shutter_rx_buf_end
+0x1f00 mem_shutter_tx_buf
+0x1f10 mem_shutter_tx_buf_end
+
+)
+
+(
+14 TIMER_UART_SEND_DATA_DELAY
+)
Index: ble fast connect receive/format/simple_pairing.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/simple_pairing.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/simple_pairing.format	(working copy)
@@ -0,0 +1,188 @@
+/* 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
+
+
+4 mem_gkey
+
+
+8 mem_le_pubkey_remote_x_256
+0 mem_sp_pubkey_remote
+24 mem_sp_pubkey_remote_x
+0 mem_sp_pubkey_remote_x_end
+8 mem_le_pubkey_remote_y_256
+24 mem_sp_pubkey_remote_y
+
+8 mem_le_dhkey_256
+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
+
+
+32 mem_le_private_key_256
+32 mem_le_pubkey_local_x_256
+32 mem_le_pubkey_local_y_256
+
+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
+3 mem_sp_iocap_local
+3 mem_sp_iocap_remote
+
+1 mem_flag_mode_ssp_pin
+1 mem_ssp_mode_flag
+1 mem_authentication_passkey_times
+1 mem_passkey_1bit
+1 mem_flag_pairing_state
+
+)
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+  0x02   LE_SP_FLAG_COMMIT_256
+
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+  0x03   SP_CALC_PUBKEY_256
+  0x04   SP_CALC_DHKEY_256
+)
+
+/* 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
+  0x03   SP_KEY_VALID_256
+
+)
+
+/* 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
+)
+
+(
+1 SSP_MODE_SSP_PIN_FLAG
+2 SSP_MODE_PASSKEY_ENTRY_FLAG
+3 SSP_MODE_JUST_WORK_FLAG
+)
+
+(//ssp mode
+0x040003 SSP_MODE_JUST_WORK_IO_CAP_DATA
+0X040001 SSP_MODE_SSP_PIN_IO_CAP_DATA
+0X040002 SSP_MODE_PASSKEY_IO_CAP_DATA
+)
+
+(
+0x00 DISPLAY_ONLY
+0x01 DISPLAY_YESNO
+0x02 KEYBOARD_ONLY
+0x03 NO_INPUT_NO_OUTPUT
+)
+
+(
+7 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT
+6 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT
+0 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT
+)
+(
+1 FLAG_PAIRING_STATE_PAIRING
+0 FLAG_PAIRING_STATE_NOT_PAIRING
+)
+
+  
Index: ble fast connect receive/format/ui.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/ui.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/ui.format	(working copy)
@@ -0,0 +1,442 @@
+/*****************************************************************************/
+/* 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
+8 mem_ipc_fifo_bt2c51
+8 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_led_blink_count
+1 mem_ui_button_timeout
+1 mem_ui_button_gpio
+2 mem_discovery_timeout
+1 mem_pin_length
+16 mem_pin
+
+)
+/************/
+/* 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
+)
+(
+0xFF LED_FLASH_INFINITE
+)
+
+(
+1 UI_STATE_SPP_NL_AUTO_DISCOVER
+
+)
+
+/* 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 */
+(
+0 BT_CMD_STANDBY
+1 BT_CMD_START_DISCOVERY
+2 BT_CMD_STOP_DISCOVERY
+3 BT_CMD_RECONNECT
+4 BT_CMD_DISCONNECT
+5 BT_CMD_ENTER_SNIFF
+6 BT_CMD_EXIT_SNIFF
+7 BT_CMD_ENTER_SNIFF_SUBRATING
+8 BT_CMD_EXIT_SNIFF_SUBRATING
+9 BT_CMD_SNIFF_TEST
+10 BT_CMD_SET_PIN_CODE
+11 BT_CMD_START_INQUIRY
+12 BT_CMD_STOP_INQUIRY
+13 BT_CMD_START_ADV
+14 BT_CMD_STOP_ADV
+15 BT_CMD_START_DIRECT_ADV
+16 BT_CMD_STOP_DIRECT_ADV
+17 BT_CMD_LE_DISCONNECT
+18 BT_CMD_LE_UPDATE_CONN
+19 BT_CMD_LED_OFF
+20 BT_CMD_LED_ON
+21 BT_CMD_LED_BLINK
+22 BT_CMD_LE_START_CONN
+23 BT_CMD_LE_START_SCAN
+24 BT_CMD_LE_STOP_SCAN
+25 BT_CMD_ENTER_HIBERNATE
+27 BT_CMD_LE_SMP_SECURITY_REQUEST
+28 BT_CMD_LE_START_WRITE
+29 BT_CMD_ROLE_SWITCH
+30 BT_CMD_BB_RECONN_CANCEL
+31 BT_CMD_STORE_RECONN_INFO_LE
+32 BT_CMD_STORE_RECONN_INFO_BT
+33 BT_CMD_DHKEY_NOT_ACCEPT
+34 BT_CMD_START_24G
+35 BT_CMD_STOP_24G
+36 BT_CMD_PAIR_24G
+)
+
+(
+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
+0x30 BT_EVT_LE_PAIRING_FAIL
+0x31 BT_EVT_LE_PAIRING_SUCCESS
+0x32 BT_EVT_LE_START_ENC
+0X33 BT_EVT_LE_PAUSE_ENC
+0X34 BT_EVT_LE_TK_GENERATE
+0x35 BT_EVT_BT_GKEY_GENERATE
+0x36 BT_EVT_BT_GET_PASSKEY
+0x37 BT_EVT_BT_PAIRING_FAIL
+0x38 BT_EVT_BT_PAIRING_SUCCESS
+0x39 BT_EVT_24G_PAIRING_COMPLETE
+0x3a BT_EVT_24G_ATTEMPT_FAIL
+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: ble fast connect receive/format/utility.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/utility.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/utility.format	(working copy)
@@ -0,0 +1,100 @@
+/**
+*  @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
+
+8 mem_pdatatemp
+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
+
+0 mem_le_data_len_temp	//1byte
+0 mem_tx_fifo_map_temp
+0 mem_rpn_dlci		//1byte
+0 mem_event_cmd_response_content	//2byte
+0 mem_le_prand		//16byte
+0 mem_AES_CMAC_k	 //16 bytes
+0 mem_regext_index 	//1 bytes
+1 mem_temp_block0
+0 mem_le_data_temp	//15bytes
+15 mem_temp_block1
+0 mem_le_aes_128	//16byte
+0 mem_regext   //64 bytes
+0 mem_AES_CMAC_k1  //16 bytes
+16 mem_temp_block2
+0 mem_AES_CMAC_k2  //16 bytes
+16 mem_temp_block3
+0 mem_AES_CMAC_temp  // 16 bytes
+16 mem_temp_block4
+0 mem_AES_CMAC_M_last // 16 bytes
+16 mem_temp_block5
+0 mem_le_mackey //16 bytes
+16 mem_temp_block6
+
+200 mem_temp_prepare_write_request
+)
+
+
+(
+/*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
+(
+
+8 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+memalloc(
+0 mem_kb_map2_temp_start
+3 mem_kb_map2_vk
+3 mem_kb_current_vk
+1 mem_kb_vk_offset
+1 mem_kb_vk_processed_cnt
+2 mem_kb_map2_current_cell_ptr
+1 mem_kb_device_button
+8 mem_table_temp0
+8 mem_table_temp1
+0 mem_kb_map2_temp_end
+
+
+1 mem_check_count
+1 mem_store_key_count
+4 mem_kb_gpio_val
+
+
+)
+
Index: ble fast connect receive/format/var.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/format/var.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/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: ble fast connect receive/output/bt_format.meta
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_format.meta	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_format.meta	(working copy)
@@ -0,0 +1,7901 @@
+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_rf_rccal
+0x416f mem_handle_num
+0x4170 mem_max_slot
+0x4171 mem_eir_enable
+0x4172 mem_afh_instant
+0x4176 mem_afh_error_total
+0x4178 mem_afh_cfg
+0x4179 mem_afh_new_mod
+0x417a mem_afh_map_lo
+0x417f mem_afh_map_hi
+0x4184 mem_afh_used
+0x4185 mem_afh_index
+0x4187 mem_afh_map_new
+0x4192 mem_afh_map
+0x41e2 mem_afh_timer
+0x41e6 mem_afh_classify_channel_map
+0x41f0 mem_chip_functions
+0x41f2 mem_lpm_wake_lock
+0x41f4 mem_lpm_interval
+0x41f6 mem_lpm_overhead
+0x41f7 mem_lpm_hibernate_switch
+0x41f8 mem_esco_addr
+0x41f9 mem_sniff_unint_lost
+0x41fa mem_ptt
+0x41fb mem_sleep_counter//should be 0x41fc in REVC
+0x41ff mem_sleep_counter_all
+0x4203 mem_sleep_clkn
+0x4209 mem_sniff_rcv
+0x420c mem_sniff_lost
+0x420f mem_clks_per_lpo
+0x4212 mem_lpm_mult
+0x4213 mem_lpm_mult_timeout
+0x4214 mem_lpm_mult_cnt
+0x4215 mem_lpm_config
+0x4218 mem_lpm_xtalcnt
+0x4219 mem_lpm_buckcnt
+0x421a mem_lpm_ldocnt
+0x421b mem_lpm_isogate
+0x421c mem_lpm_isogate_final
+0x421d mem_saved_gpio// should be 0x421e in REVC
+0x422d mem_saved_gsel
+0x4230 mem_saved_mark
+0x4238 mem_saved_spidctrl
+0x4239 mem_patch_ptr
+0x423b mem_patch_len
+0x423d mem_timers
+0x425d mem_link_key_exists
+0x425e mem_link_key_eeprom_head
+0x4261 mem_link_key
+0x4271 mem_hci_cmd
+0x4272 mem_hci_conn_handle
+0x4273 mem_hci_plap
+0x4276 mem_hci_puap
+0x4277 mem_hci_pnap
+0x4279 mem_uartd_rxitems_got_data
+0x427a mem_uartd_rxitems_threshold
+0x427b mem_uartd_rx_timeout
+0x427d mem_tx_lch
+0x427e mem_tx_len
+0x4280 mem_tx_power
+0x4281 mem_context_number
+0x4282 mem_rf_init_data
+0x4283 mem_app_handshake_flag
+0x4284 mem_sniff_param_interval
+0x4286 mem_sniff_param_attempt
+0x4288 mem_sniff_param_timeout
+0x428a mem_cb_check_wakelock
+0x428c mem_cb_before_hibernate
+0x428e mem_cb_before_lpm
+0x4290 mem_cb_le_process
+0x4292 mem_cb_bt_process
+0x4294 mem_cb_idle_process
+0x4296 mem_cb_bb_event_process
+0x4298 mem_cb_discovry_timeout
+0x429a mem_cb_att_write
+0x429c mem_cb_update_notify_value
+0x429e mem_cb_update_notify_continue
+0x42a0 mem_cb_event_timer
+0x42a2 mem_cb_le_set_mult
+0x42a4 mem_cb_bt_set_mult
+0x42a6 mem_soft_version_num
+0x42a8 mem_eeprom_base
+0x42aa mem_unsniff2sniff_timer_count
+0x42ab mem_wake_up_delay_timer
+0x42ac mem_app_connection_options
+0x42ad mem_app_disconn_reason
+0x42af mem_app_disconn_reason_flag
+0x42b1 mem_lpm_delay_after_sniff
+0x42b5 mem_xrecord_mode
+0x42b6 mem_eeprom_block_size
+0x42b8 mem_wakup_from_power_flag
+0x42b9 mem_spi_init_clk
+0x42ba mem_spi_init_delay_time
+0x42bb mem_spi_ncs_gpio
+0x42bc mem_nv_data_ptr
+0x42be mem_nv_data_number
+0x42bf mem_0_5_adc_io_data
+0x42c1 mem_1v_adc_hvin_data
+0x42c3 mem_2v_adc_vinlpm_data
+0x42c5 mem_1v_adc_io_data
+0x42c7 mem_5v_adc_hvin_data
+0x42c9 mem_3v_adc_vinlpm_data
+0x42cb mem_otp_adc_flag
+0x42cd mem_reference_voltage
+0x42cf mem_adc_config_flag
+0x42d0 mem_adc_channel
+0x42d1 mem_adc_current_value
+0x42d3 mem_baud
+0x42d5 mem_hci_lt_rx_state
+0x42d6 mem_l2cap_xmem_start
+0x42d6 mem_l2cap_tx_multi_offset//0 means single packet
+0x42d8 mem_sdp_remote_cid
+0x42da mem_rfcomm_remote_cid
+0x42dc mem_hid_ctrl_remote_cid
+0x42de mem_hid_int_remote_cid
+0x42e0 mem_sdp_state
+0x42e1 mem_rfcomm_state
+0x42e2 mem_hid_control_state
+0x42e3 mem_hid_interrupt_state
+0x42e4 mem_spp_state
+0x42e5 mem_ML2CAP_comm_id
+0x42e6 mem_used_map
+0x42e7 mem_tx_fifo0
+0x42e7 mem_tx_fifo0_map
+0x42e8 mem_tx_fifo0_ptr
+0x42ea mem_tx_fifo1
+0x42ea mem_tx_fifo1_map
+0x42eb mem_tx_fifo1_ptr
+0x42ed mem_tx_fifo2
+0x42ed mem_tx_fifo2_map
+0x42ee mem_tx_fifo2_ptr
+0x42f0 mem_tx_fifo3
+0x42f0 mem_tx_fifo3_map
+0x42f1 mem_tx_fifo3_ptr
+0x42f3 mem_tx_fifo_end
+0x42f3 mem_l2cap_lpm_txbuf
+0x43f3 mem_l2cap_flow_ctrl_flag
+0x43f4 mem_l2cap_pending_item
+0x43f5 mem_l2cap_xmem_end
+0x43f5 mem_le_dsniff
+0x43f7 mem_le_conn_interval
+0x43f9 mem_le_scan_enable
+0x43fa mem_le_scan_interval
+0x43fc mem_le_scan_window
+0x43fe mem_le_adv_led
+0x43ff mem_le_adv_enable
+0x4400 mem_le_adv_data_len
+0x4401 mem_le_adv_data
+0x4420 mem_le_scan_data_len
+0x4421 mem_le_scan_data
+0x4440 mem_le_name_len
+0x4441 mem_le_name
+0x4455 mem_le_led_on_time
+0x4456 mem_le_new_map
+0x445b mem_le_new_param
+0x445b mem_le_new_transmitwindowsize
+0x445c mem_le_new_transmitwindowoffset
+0x445e mem_le_new_conninterval
+0x4460 mem_le_new_connslavelatency
+0x4462 mem_le_new_connsupervisiontimeout
+0x4464 mem_le_temp
+0x4465 mem_le_txheader
+0x4466 mem_le_txlen
+0x4467 mem_le_txpayload
+0x4469 mem_le_txcid
+0x446b mem_le_l2cap
+0x446c mem_le_l2cap_response
+0x446d mem_le_txbdy
+0x448c mem_le_pcnt_tx
+0x4491 mem_le_pcnt_rx
+0x4496 mem_le_last_mic
+0x449a mem_le_ivm
+0x449e mem_le_ivs
+0x44a2 mem_le_ltk
+0x44b2 mem_ltk_exists
+0x44b3 mem_le_rconfirm
+0x44c3 mem_le_srand
+0x44d3 mem_le_iat
+0x44d4 mem_le_rat
+0x44d5 mem_le_preq
+0x44d6 mem_le_preq_iocap
+0x44d7 mem_le_preq_oob
+0x44d8 mem_le_preq_auth
+0x44d9 mem_le_preq_max_keysize
+0x44da mem_le_preq_init_key_distribution
+0x44db mem_le_preq_resp_key_distribution
+0x44dc mem_le_pres
+0x44dd mem_le_pres_iocap
+0x44de mem_le_pres_oob
+0x44df mem_le_pres_auth
+0x44e0 mem_le_pres_max_keysize
+0x44e1 mem_le_pres_init_key_distribution
+0x44e2 mem_le_pres_resp_key_distribution
+0x44e3 mem_le_search_handle_start
+0x44e5 mem_le_search_handle_end
+0x44e7 mem_le_att_offset
+0x44e7 mem_le_search_att_type_length
+0x44e8 mem_le_search_att_type
+0x44f8 mem_le_notify_handle
+0x44fa mem_le_search_uuid_length
+0x44fb mem_le_search_uuid
+0x450b mem_le_handle_data_len
+0x450c mem_le_handle_data
+0x451c mem_le_adv_param
+0x451c mem_le_adv_interval_min
+0x451e mem_le_adv_interval_max
+0x4520 mem_le_adv_type
+0x4521 mem_le_adv_own_addr_type
+0x4522 mem_le_adv_direct_addr_type
+0x4523 mem_le_adv_direct_addr
+0x4529 mem_le_adv_channel_map
+0x452a mem_le_adv_filter_policy
+0x452b mem_le_conn_param
+0x452b mem_le_conn_peer_addr_type
+0x452c mem_le_conn_peer_addr
+0x4532 mem_le_conn_own_addr_type
+0x4533 mem_le_conn_interval_min
+0x4535 mem_le_conn_interval_max
+0x4537 mem_le_conn_latency
+0x4539 mem_le_conn_superto
+0x453b mem_le_scan_params
+0x453b mem_le_scan_type
+0x453c mem_le_scan_own_addr_type
+0x453d mem_le_scan_filter_policy
+0x453e mem_le_lap
+0x4541 mem_le_uap
+0x4542 mem_le_nap
+0x4544 mem_le_xtype_fifo
+0x454c mem_le_local_mtu
+0x454e mem_le_remote_mtu
+0x4550 mem_le_ll_cur_opcode
+0x4551 mem_le_skdm
+0x4559 mem_le_skds
+0x4561 mem_le_init_superto
+0x4563 mem_le_secure_connect_enable
+0x4564 mem_le_secure_connect_flag
+0x4565 mem_le_sc_calc
+0x4566 mem_le_secure_connect_state
+0x4567 mem_le_sc_confirm_gkey_flag
+0x4568 mem_le_sc_local_key_invalid
+0x4569 mem_le_continue_flag
+0x456a mem_le_pairing_state
+0x456b mem_le_enc_state
+0x456c mem_le_pairing_mode
+0x456d mem_le_tk
+0x4571 mem_le_ediv
+0x4573 mem_le_rand
+0x457b mem_le_irk
+0x458b mem_le_pairing_handle
+0x458d mem_le_interal_min
+0x458f mem_le_interal_max
+0x4591 mem_le_latency
+0x4593 mem_le_timeout
+0x4595 mem_le_switch_send_data
+0x4596 mem_le_transmit_window
+0x459a mem_le_buff_len
+0x459c mem_le_buff_len_all
+0x459e mem_le_buff_data_len_all
+0x45a0 mem_prepare_write_len
+0x45a2 mem_le_prepare_write_req_offset
+0x45a4 mem_prepare_handle
+0x45a6 mem_prepare_write_offest
+0x45a8 mem_le_flag
+0x45a9 mem_lmp_version
+0x45ac mem_lmp_subversion
+0x45ae mem_local_name_length
+0x45af mem_local_name
+0x45b2 mem_local_name2
+0x45f2 mem_local_name_end
+0x45f3 mem_unsniff2sniff_timer
+0x45f4 mem_switch_flag
+0x45f5 mem_pn_dlci
+0x45f6 mem_pn_max_frame_size
+0x45f8 memFCStemp1
+0x45f9 memFCStemp2
+0x45fa memFCStemp3
+0x45fb mem_rfcomm_initiator
+0x45fc mem_remote_spp_channel
+0x45fd mem_HIUfcs_SPP
+0x45fe mem_HIUfcs_SPP_WCredits
+0x45ff mem_rfcomm_send_more_pkt
+0x4600 mem_remote_credits
+0x4601 mem_credit_given
+0x4602 mem_ms_channel
+0x4603 mem_credit_flag
+0x4604 mem_rfcomm_max_frame_size
+0x4606 mem_rfcomm_credit_init_data
+0x4607 mem_cb_receive_spp_data
+0x4609 mem_nl_rx_data_src
+0x460b mem_nl_rx_len_all
+0x460d mem_ui_uuid_table
+0x460f mem_all_uuid_16bits
+0x4625 mem_all_uuid_128bits
+0x4637 mem_ui_le_uuid_table
+0x4639 mem_sp_local_key_invalid
+0x463a mem_le_private_key_256
+0x465a mem_le_pubkey_local_x_256
+0x467a mem_le_pubkey_local_y_256
+0x469a mem_sp_private_key
+0x46b2 mem_sp_pubkey_local
+0x46b2 mem_sp_pubkey_local_x
+0x46ca mem_sp_pubkey_local_x_end
+0x46ca mem_sp_pubkey_local_y
+0x46e2 mem_ssp_enable
+0x46e3 mem_sp_iocap_local
+0x46e6 mem_sp_iocap_remote
+0x46e9 mem_flag_mode_ssp_pin
+0x46ea mem_ssp_mode_flag
+0x46eb mem_authentication_passkey_times
+0x46ec mem_passkey_1bit
+0x46ed mem_flag_pairing_state
+0x46ee mem_ipc_lock_bt
+0x46ef mem_ipc_lock_c51
+0x46f0 mem_ipc_fifo_bt2c51
+0x46f8 mem_ipc_fifo_c512bt
+0x4700 mem_led_switch
+0x4701 mem_ui_button_timer
+0x4702 mem_ui_button_last_state
+0x4703 mem_ui_timer_last_btclk
+0x4707 mem_discovery_timeout_timer_count
+0x4709 mem_hid_handshake_timer_count
+0x470a memui_reconnect_mode
+0x470b mem_ui_state_map
+0x470d mem_ui_profile_supported
+0x470e mem_led_gpio
+0x470f mem_led_dark_time
+0x4711 mem_led_light_time
+0x4713 mem_led_blink_count
+0x4714 mem_ui_button_timeout
+0x4715 mem_ui_button_gpio
+0x4716 mem_discovery_timeout
+0x4718 mem_pin_length
+0x4719 mem_pin
+0x4729 mem_24g_tx_btclk
+0x472d mem_24g_interval
+0x472e mem_24g_txfail_cnt
+0x472f mem_24g_attempt_cnt
+0x4730 mem_24g_attempt_flag
+0x4731 mem_24g_rxfail_cnt
+0x4734 mem_24g_retry
+0x4735 mem_24g_pid
+0x4736 mem_24g_datalen
+0x4737 mem_24g_crc
+0x4739 mem_24g_rxbuf
+0x4779 mem_24g_addr
+0x477d mem_24g_len
+0x477f mem_24g_txpayload
+0x4789 mem_24g_txdata
+0x4793 mem_24g_ch
+0x4794 mem_24g_scremble
+0x47a4 mem_24g_current_ch_number
+0x47a5 mem_24g_ch_map1
+0x47a9 mem_24g_ch_map2
+0x47ad mem_24g_ch_map3
+0x47b1 mem_24g_ch_map4
+0x47b5 mem_24g_interval_min
+0x47b6 mem_24g_interval_max
+0x47b7 mem_24g_ensure
+0x47b8 mem_24g_enter_hibernate
+0x47c0 mem_24g_enter_lpm_timer
+0x47c1 mem_24g_pairing_sm
+0x47c2 mem_24g_addr_copy
+0x47c6 mem_24g_sifs
+0x47c7 mem_24g_rxcnt
+0x47c8 mem_24g_addr_private_dongle
+0x47cc mem_24g_map_buff0_dongle
+0x47cd mem_24g_channel_cnt_dongle
+0x47ce mem_24g_pairing_sm_dongle
+0x47cf mem_24g_tx_btclk_dongle
+0x47d3 mem_24g_interval_dongle
+0x47d4 mem_24g_ch_update_dongle
+0x47d5 mem_24g_rx_sync_dongle
+0x47d6 mem_24g_ch_cnt_dongle
+0x47d7 mem_24g_rxbuf_temp_dongle
+0x47dd mem_24g_rxbuf_dongle
+0x47e3 mem_24g_rxfail_cnt_dongle
+0x47e6 mem_24g_spi_enable_flag
+0x4729 mem_acl_credits
+0x472b mem_allow_switch
+0x472c mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4730 mem_hci_wake_clk
+0x4729 mem_kb_state
+0x472b mem_kb_report_data
+0x4731 mem_kb_keys
+0x4732 mem_kb_rcv_led_data
+0x4733 mem_kb_fast_wake_last
+0x4737 mem_led_cap_gpio
+0x4738 mem_led_num_gpio
+0x4739 mem_led_scl_gpio
+0x473a mem_kb_current_vdd_value_10times
+0x473c mem_kb_read_adc_cnt_100ms
+0x473d mem_kb_current_vdd_value
+0x473f mem_led_power_blink_count
+0x4740 mem_led_power_500ms_cnt
+0x4741 mem_kb_map2
+0x49fd mem_3v1_adc_default
+0x49ff mem_kb_map
+0x4a9d mem_kb_discovery_timer
+0x4a9f mem_kb_direct_timer
+0x4aa1 mem_kb_no_data_timer
+0x4aa3 mem_kb_direct_timeout
+0x4aa5 mem_kscn_event_last
+0x4aa6 mem_kscan_event_num_last
+0x4aa7 mem_auto_enable_mult_timer
+0x4aa8 mem_auto_enable_mult_timer_init
+0x4aa9 mem_kb_temp_flag
+0x4aaa mem_map2_out_report0
+0x4ab2 mem_map2_out_report1
+0x4aba mem_table_last_repory_data0
+0x4ac2 mem_table_last_repory_data1
+0x4aca mem_kb_down
+0x4ad4 mem_kb_down_last
+0x4ade mem_table_temp
+0x4ae6 mem_pincode_vk_last
+0x4ae7 mem_kb_device_button_last
+0x4ae8 mem_kb_device_button_timer
+0x4ae9 mem_kb_current_status
+0x4aea mem_seq
+0x4aeb mem_dorx_cnt
+0x4aec mem_matched_btclk
+0x4aee mem_master_sniff_interval
+0x4aef mem_led_power_gpio
+0x4af0 mem_kb_check_vdd_count
+0x4af2 mem_0v_adc_data
+0x4af4 mem_2v2_adc_data
+0x4af6 mem_3v_adc_data
+0x4af8 mem_select_system_led_timer
+0x4af9 mem_led_cap_gpio_status
+0x4afa mem_kb_no_data_timeout
+0x4afc mem_kb_gpio_last_val
+0x4b00 mem_store_current_status
+0x4b01 mem_kb_led_on_timer
+0x4b02 mem_kb_debug_sm
+0x4b03 mem_kb_mode
+0x4b05 mem_kb_mode_revese
+0x4b07 mem_master_addr
+0x4b0d mem_led_device_blink_count
+0x4b0e mem_led_device_500ms_cnt
+0x4b0f mem_kb_caps_led_status
+0x4b10 mem_kb_reconnection_ssp
+0x4b11 mem_kb_rcv_hid_control_rsp
+0x4b12 mem_kb_down_regroup
+0x4b17 mem_kb_get_fn_flag
+0x4b18 mem_kb_kscan_cnt
+0x4b19 mem_kb_down_test
+0x4b23 mem_kb_release_fn_data
+0x4b24 mem_led_cap_delay_timer
+0x4b25 mem_led_cap_mult_timer
+0x4b26 mem_led_cap_flag
+0x4b27 mem_hid_rx_data
+0x4b28 mem_kb_fn_c
+0x4b29 mem_kb_c_fn
+0x4b2a mem_keyboard_uuid_list
+0x4db4 mem_keyboard_uuid_list_end
+0x4db4 mem_keyboard_le_att_list
+0x4fa8 mem_keyboard_le_att_list_end
+0x4729 mem_module_wake_up_gpio
+0x472a mem_module_state_gpio
+0x472b mem_module_connect_state_gpio
+0x472c mem_current_packet_length
+0x472e mem_module_state
+0x472f mem_module_task
+0x4730 mem_cmode_addr
+0x4736 mem_module_mcu_wake_pin
+0x4737 mem_module_mcu_wake_delay_us
+0x473b mem_module_spp_lpm_mult
+0x473c mem_module_le_lpm_mult
+0x473d mem_module_bluetooth_stauts_by_command
+0x473e mem_module_uart_rx_buffer
+0x4740 mem_module_uart_rx_buffer_end
+0x4742 mem_module_uart_tx_buffer
+0x4744 mem_module_uart_tx_buffer_end
+0x4746 mem_module_read_vdd_flag
+0x4747 mem_module_read_vdd_count
+0x4748 mem_module_vdd_quotient
+0x4749 mem_module_vdd_remainder
+0x474a mem_module_le_buff_len
+0x474c mem_module_le_buff_len_all
+0x474e mem_module_le_buff_data_len_all
+0x4750 mem_module_le_continue_flag
+0x4751 mem_module_le_rx_data_len
+0x4752 mem_module_le_rx_data_address
+0x4754 mem_module_le_rx_data_handle
+0x4756 mem_module_data_write_handle
+0x4758 mem_module_data_write_handle2
+0x475a mem_module_flag
+0x475b mem_le_notify_type
+0x475c mem_module_hci_notify_start
+0x475e mem_module_hci_notify_offset
+0x4760 mem_module_hci_notify_len
+0x4762 mem_module_hci_notify_att
+0x4764 mem_module_hci_notify_original_len
+0x4766 mem_module_uuid_list
+0x4892 mem_module_uuid_list_end
+0x4892 mem_module_le_att_list
+0x4a86 mem_module_le_att_list_end
+0x4a86 mem_nv_data
+0x4a86 mem_nv_data0
+0x4aa8 mem_nv_data1
+0x4aca mem_nv_data2
+0x4aec mem_nv_data3
+0x4b0e mem_nv_data4
+0x4729 mem_mouse_key
+0x472a mem_mouse_x
+0x472c mem_mouse_y
+0x472e mem_mouse_z
+0x472f mem_mouse_tz
+0x4730 mem_mouse_xy_h
+0x4731 mem_sensor_shutter_hi
+0x4732 mem_sensor_shutter_lo
+0x4733 mem_sensor_smart_flag
+0x4734 mem_sensor_squal_reg
+0x4735 mem_mouse_move_flag
+0x4736 mem_reconnect_timeout
+0x4737 mem_mouse_direct_timeout
+0x4739 mem_mouse_no_data_timeout
+0x473b mem_mouse_blank_data_timeout
+0x473d mem_mouse_discovery_timer
+0x473f mem_mouse_direct_timer
+0x4741 mem_mouse_no_data_timer
+0x4743 mem_mouse_blank_data_timer
+0x4745 mem_mouse_send_blank_timer
+0x4746 mem_mouse_dpi
+0x4747 mem_mouse_dpi_button_state
+0x4748 mem_mouse_test_cnt
+0x4749 mem_le_hibernate_timer
+0x474b mem_mouse_mode_state
+0x474c mem_mouse_le_notify_handle
+0x474d mem_lbutton_gpio
+0x474e mem_rbutton_gpio
+0x474f mem_mbutton_gpio
+0x4750 mem_sbutton1_gpio
+0x4751 mem_sbutton2_gpio
+0x4752 mem_dpi_button_gpio
+0x4753 mem_sensor_data_gpio
+0x4754 mem_whee_a_data_gpio
+0x4755 mem_whee_b_data_gpio
+0x4756 mem_sensor_reset_gpio
+0x4757 mem_device1_led_gpio
+0x4758 mem_device2_led_gpio
+0x4759 mem_device3_led_gpio
+0x475a mem_conn_cnt
+0x475b mem_whee_ta_data_gpio
+0x475c mem_whee_tb_data_gpio
+0x475d mem_wheel_tb_old_pinlevel
+0x475e mem_wheel_tb_new_pinlevel
+0x475f mem_wheel_tog
+0x4760 mem_mouse_tz_data
+0x4761 mem_mouse_tz_data_count
+0x4762 mem_mouse_tz_data_count1
+0x4763 mem_mwhee_a_data_gpio
+0x4764 mem_mwhee_b_data_gpio
+0x4765 mem_mwheel_b_old_pinlevel
+0x4766 mem_mwheel_b_new_pinlevel
+0x4767 mem_mwheel_tog
+0x4768 mem_mouse_z_data
+0x4769 mem_mouse_z_data_count
+0x476a mem_mouse_z_data_count1
+0x476b mem_reconn_mode
+0x476c mem_mouse_statue_led_timer
+0x476d mem_device_flag
+0x476e mem_mouse_uuid_list
+0x49f8 mem_mouse_uuid_list_end
+0x49f8 mem_mouse_le_att_list
+0x4bec mem_mouse_le_att_list_end
+0x4729 mem_shutter_send_data
+0x472d mem_shutter_key_temp
+0x472e mem_shutter_send_length
+0x472f mem_shutter_clkn_bt_last
+0x4733 mem_shutter_key
+0x4734 mem_shutter_flag
+0x4735 mem_shutter_cable_unplug_conut
+0x4736 mem_shutter_hid_disconn_count
+0x4737 mem_shutter_1key_send_sm
+0x4738 mem_shutter_iphonekey_gpio
+0x4739 mem_shutter_androidkey_gpio
+0x473a mem_shutter_key_number
+0x473b mem_read_eeprom_temp
+0x473c mem_read_eeprom_mac_addr
+0x473f mem_scale_tx_length
+0x4740 mem_scale_txbuff_inuse
+0x4741 mem_adv_lap_ptr
+0x4743 mem_le_sleep_flag
+0x4744 mem_rx_window_sniff_inc
+0x4746 mem_pair_state
+0x4747 mem_exchange_mtu_req
+0x4748 mem_le_sleep_timeout
+0x474a mem_le_sleep_timeout_timer_count
+0x474c mem_le_fast_adv_timeout
+0x474e mem_le_fast_adv_timeout_timer_count
+0x4750 mem_led_fast_dark_time
+0x4752 mem_led_fast_light_time
+0x4754 mem_power_on_pin
+0x4755 mem_hard_soft_switch_case
+0x4756 mem_shutter_powerup_flag
+0x4757 mem_shutter_button_timeout
+0x4758 mem_shutter_button_timer
+0x4759 mem_power_timeout
+0x475a mem_power_timer
+0x475b mem_enable_key_scan
+0x475c mem_packet_interval_set
+0x475e mem_shutter_led_num
+0x475f mem_led_map
+0x4763 mem_fast_adv_led_style
+0x4763 mem_fa_led_type
+0x4764 mem_fa_led_pin
+0x4765 mem_fa_led_on_time
+0x4767 mem_fa_led_off_time
+0x4769 mem_fa_blink_count
+0x476a mem_slow_adv_led_style
+0x476a mem_sa_led_type
+0x476b mem_sa_led_pin
+0x476c mem_sa_led_on_time
+0x476e mem_sa_led_off_time
+0x4770 mem_sa_blink_count
+0x4771 mem_power_on_led_style
+0x4771 mem_po_led_type
+0x4772 mem_po_led_pin
+0x4773 mem_po_led_on_time
+0x4775 mem_po_led_off_time
+0x4777 mem_po_blink_count
+0x4778 mem_powe_off_led_style
+0x4778 mem_pf_led_type
+0x4779 mem_pf_led_pin
+0x477a mem_pf_led_on_time
+0x477c mem_pf_led_off_time
+0x477e mem_pf_blink_count
+0x477f mem_connected_led_style
+0x477f mem_co_led_type
+0x4780 mem_co_led_pin
+0x4781 mem_co_led_on_time
+0x4783 mem_co_led_off_time
+0x4785 mem_co_blink_count
+0x4786 mem_key_led_style
+0x4786 mem_key_led_style_ind_0
+0x4786 mem_key_led_style_ind_0_data
+0x478d mem_key_led_style_ind_1
+0x478d mem_key_led_style_ind_1_data
+0x4794 mem_key_led_style_ind_2
+0x4794 mem_key_led_style_ind_2_data
+0x479b mem_key_led_style_ind_3
+0x479b mem_key_led_style_ind_key_release
+0x479b mem_key_led_style_ind_3_data
+0x47a2 mem_temp_led_style
+0x47a2 mem_temp_led_type
+0x47a3 mem_temp_led_pin
+0x47a4 mem_temp_led_on_time
+0x47a6 mem_temp_led_off_time
+0x47a8 mem_temp_blink_count
+0x47a9 mem_shutter_key_num
+0x47aa mem_key_conf0
+0x47aa mem_key_conf0_pin
+0x47ab mem_key_conf0_led
+0x47ac mem_key_conf1
+0x47ac mem_key_conf1_pin
+0x47ad mem_key_conf1_led
+0x47ae mem_key_conf2
+0x47ae mem_key_conf2_pin
+0x47af mem_key_conf2_led
+0x47b0 mem_key_conf3
+0x47b0 mem_key_conf3_pin
+0x47b1 mem_key_conf3_led
+0x47b2 mem_key_conf4
+0x47b2 mem_key_conf4_pin
+0x47b3 mem_key_conf4_led
+0x47b4 mem_key_conf5
+0x47b4 mem_key_conf5_pin
+0x47b5 mem_key_conf5_led
+0x47b6 mem_key_value_temp
+0x47b8 mem_key_value
+0x47ba mem_key_packet_count
+0x47bb mem_key_next_addr
+0x47bd mem_key_value_temp1
+0x47be mem_key_value_temp2
+0x47bf mem_key_value_temp3
+0x47c0 mem_key_value_temp4
+0x47c1 mem_key_value_temp5
+0x47c2 mem_key_value_temp6
+0x47c3 mem_key0_press
+0x47d7 mem_key0_release
+0x47eb mem_key1_press
+0x47f9 mem_key1_release
+0x4807 mem_key2_press
+0x4815 mem_key2_release
+0x4823 mem_key3_press
+0x4831 mem_key3_release
+0x483f mem_key4_press
+0x484d mem_key4_release
+0x485b mem_key5_press
+0x4869 mem_key5_release
+0x4877 mem_queue_ele_num
+0x4878 mem_queue_read
+0x487a mem_queue_write
+0x487c mem_queue_start
+0x487c mem_data_ele0
+0x4886 mem_data_ele1
+0x4890 mem_data_ele2
+0x489a mem_data_ele3
+0x48a4 mem_data_ele4
+0x48ae mem_data_ele5
+0x48b8 mem_queue_end
+0x48b8 mem_queue_temp
+0x48ba mem_shutter_key_data_flag
+0x48bb mem_shutter_key_data_flag_1
+0x48bc mem_le_find_type_value_start_handle
+0x48be mem_le_find_type_value_end_handle
+0x48c0 mem_shutter_find_type_value_flag
+0x48c1 mem_le_uuid
+0x48c2 mem_send_updata_le_param_timer
+0x48c3 mem_le_smp_key_dist
+0x48c6 mem_ltk_states
+0x48c7 mem_shutter_conn_update_timer
+0x48c8 mem_empty_count
+0x48c9 mem_shutter_notification_len
+0x48ca mem_shutter_notification_addr
+0x48cc mem_shutter_le_att_list
+0x4ac0 mem_timeout_disconnect_timer
+0x4ac1 mem_shutter_att_list_patch
+0x4b48 mem_le_app_peer_addr
+0x4b4b mem_app_peer_addr
+0x4b51 mem_le_conn_state
+0x4b52 mem_le_conn_sm
+0x4b53 mem_le_work_data_send_flag
+0x4b54 mem_le_car_write_cmd_data
+0x4b54 mem_le_car_write_cmd_head
+0x4b58 mem_le_car_write_cmd_data1
+0x4b5d mem_le_car_write_cmd_control
+0x4b5f mem_le_car_write_cmd_check_sum
+0x4b60 mem_queue_ele_num_patch
+0x4b61 mem_queue_read_patch
+0x4b63 mem_queue_write_patch
+0x4b65 mem_queue_start_patch
+0x4b65 mem_data_ele0_patch
+0x4b79 mem_data_ele1_patch
+0x4b8d mem_data_ele2_patch
+0x4ba1 mem_data_ele3_patch
+0x4bb5 mem_data_ele4_patch
+0x4bc9 mem_data_ele5_patch
+0x4bdd mem_queue_end_patch
+0x4bdd mem_queue_temp_patch
+0x4bdf mem_le_sleep_conn_timeout
+0x4be1 mem_slave_addr
+0x4be7 mem_uart_mouse_data_buff
+0x4bf2 mem_le_slave_peer_addr
+0x4bf8 mem_le_send_write_request_count
+
+	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_subsniff_instant
+0x0094 mem_subsniff_rate
+0x0095 mem_subsniff_tcmax
+0x0097 mem_subsniff_tsniff
+0x0098 mem_lpm_adjust
+0x0099 mem_sync_clke
+0x009f mem_lpm_current_mult
+0x00a0 mem_gpio_wakeup_low
+0x00a4 mem_gpio_wakeup_high
+0x00a8 mem_air_mode
+0x00a9 mem_sco_asso_handle
+0x00aa mem_sco_handle
+0x00ac mem_esco_desco
+0x00ad mem_esco_type
+0x00ae mem_neogotiation_state
+0x00af mem_saved_amaddr
+0x00b0 mem_esco_arq
+0x00b1 mem_esco_saved_arq
+0x00b2 mem_sco_obuf
+0x00d0 mem_sco_ibuf
+0x00ee mem_sco_poll
+0x00ef mem_npage_index
+0x00f0 mem_page_mode
+0x00f1 mem_page_clk
+0x00f5 mem_tst_pktcnt_sync
+0x00f7 mem_tst_pktcnt_hec
+0x00f9 mem_tst_pktcnt_crc
+0x00fb mem_tst_pktcnt_dmh
+0x00fd mem_tmp_buffer_head
+0x0100 mem_tmp_buffer
+0x0150 mem_tester_emulate
+0x0151 mem_temp_payload
+0x0151 test_mode_scenario
+0x0152 test_mode_hopping_mode
+0x0153 test_mode_tx_freq
+0x0154 test_mode_rx_freq
+0x0155 test_mode_power_mode
+0x0156 test_mode_poll_period
+0x0157 test_mode_packet_type
+0x0158 test_mode_data_length
+0x015a mem_test_mode_old_debug_config
+0x015b mem_tester_cnt
+0x015c mem_temp_am_addr
+0x015d mem_temp_arq
+0x015e mem_len
+0x0160 mem_clkn_bt
+0x0164 mem_clke_bt
+0x0168 mem_dpll_clkn
+0x016c mem_connection_options
+0x016d mem_nameres_cnt
+0x016e mem_txptr
+0x0170 mem_slot_offset
+0x0172 extm_fhs_misc
+0x0173 extm_newconn_am_addr
+0x0174 extm_class
+0x0177 extm_lap
+0x017a extm_uap
+0x017b extm_nap
+0x017e mem_debug_config
+0x017f mem_lch_code
+0x0180 mem_fhs_am_addr
+0x0181 mem_dpll_error
+0x0183 mem_bdaddr_list_buff
+0x01a7 mem_select_list_item
+0x01a8 mem_temp_reconn_record
+0x01a8 mem_record_bt_mode
+0x01a9 mem_temp_lap
+0x01af mem_list_item_ptr
+0x01b1 mem_eir
+
+
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+
+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
+0x000a06 param_lmp_version0
+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
+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
+38 mark_24g
+39 mark_24g_conext
+40 mark_24g_search_pair
+41 mark_24g_normal_rcv
+42 mark_eeprom_size
+// 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
+2 page_inq_enable
+)
+//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
+0x35  REC_4_MODE_STATIC_ADDRESS
+0x36  REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS
+0x37  REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
+
+
+(
+0 P24G_SM_PAIRING_SUCC
+1 P24G_SM_PAIRING_REQUEST
+2 P24G_SM_PAIRING_WAIT_ADDR
+3 P24G_SM_PAIRING_COMPLETE
+4 P24G_SM_PAIRING_WAIT_SUCC
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+3 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
+
+)
+
+
+
+0x0215 mem_ucode_status
+0x0216 mem_otp_ucode_flag
+0x0218 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0219 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0219 mem_addr_hi
+0x021a mem_addr_mi
+0x021b mem_addr_lo
+0x021c mem_iicd_addr
+0x021d mem_spid_rbuf
+0x0221 mem_ucode_buf
+0x0223 mem_ucode_len
+0x0225 mem_sched_addr
+0x0227 mem_ucode_ptr
+0x0229 mem_ucode_keybuf
+0x0239 mem_check_plap_temp
+0x024b mem_sensor_id
+0x024c mem_reconnect_flag
+0x024d mem_switch_fail_master_count
+0x024e mem_app_evt_timer_count
+
+//adc read
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+/* adc data addr and flag */
+(
+0x07e0 OTP_CHIP_FUNCTIONS
+0x07e2 otp_adc_io_0_5V_addr
+0x07e4 otp_adc_hvin_1V_addr
+0x07e6 otp_adc_vinlpm_2V_addr
+0x07e8 otp_adc_io_1V_addr
+0x07ea otp_adc_hvin_5V_addr
+0x07ec otp_adc_vinlpm_3V_addr
+0x07ee otp_adc_flag_addr
+0xaa55 OTP_ADC_FLAG
+)
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+0	eeprom_nv_ram
+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_uuid//6
+203 eeprom_module_ssp_enable//1
+204 eeprom_module_end//2
+
+//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
+//device option hight 4
+6 dvc_op_mouse
+7 dvc_op_keyboard
+//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
+)
+
+
+
+0x024f mem_h5rx_ackcnt
+0x0250 mem_check_err_acl_cont
+0x0251 mem_rp_packets
+0x0252 mem_packet_type
+0x0254 mem_hci_sniff_conn_handle
+0x0256 mem_hci_sniff_max_interval
+0x0258 mem_hci_sniff_min_interval
+0x025a mem_hci_sniff_attempt
+0x025c mem_hci_sniff_timeout
+0x025e mem_voice_setting
+0x0260 mem_retransmission_effort
+0x0261 mem_sco_ptype
+0x0263 mem_extm_uap_restore
+0x0266 mem_h5rx_rptr
+0x0268 mem_h5rx_ack
+0x0269 mem_h5tx_ack
+0x026a mem_h5tx_rptr
+0x026c mem_h5tx_wptr
+0x026e mem_h5tx_free
+0x0270 mem_h5rx_tmp
+0x0271 mem_h5tx_seq
+0x0272 mem_hci_acl_queue_wptr
+0x0274 mem_hci_acl_queue_rptr
+0x0276 mem_hci_acl_queue_end
+0x0278 mem_hci_acl_queue_wcnt
+0x0279 mem_hci_acl_cnt
+0x027a mem_hci_acl_tx_trigger_wptr//tx via uart
+0x027c mem_ucode_id_local
+0x027d mem_ucode_id_remote
+0x027e mem_check_sum
+0x027f mem_ucode_temp
+0x0280 mem_ucode_temp1
+0x0281 mem_lock_in_enc//boolean
+0x0282 mem_hci_disconn_reason
+0x0283 mem_hci_curr_len
+0x0284 mem_hci_curr_target
+
+
+15 hci_flag_rp
+//mem_hci_options bit map
+(
+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
+)
+
+
+
+
+
+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
+
+)
+(
+0 CACEL_RECONN_FLAG
+1 KEY_EVENT_FLAG
+2 KEY_SEARCH_M_KEY_FLAG
+3 CHECK_VDD_LOW_FLAG
+)
+
+// MACRO for map2
+
+// MACRO for map2
+
+//map2 Functions definition
+ 0x00 KB_MAP2_FUNC_REPORT0
+ 0x01 KB_MAP2_FUNC_REPORT1
+ 0x02 KB_MAP2_FUNC_REPORT2
+ 0x80 KB_MAP2_FUNC_IGNORE
+ 0x81 KB_MAP2_FUNC_DISCOV
+ 0x82 KB_MAP2_FUNC_WIN
+ 0x83 KB_MAP2_FUNC_ANDROID
+ 0x84 KB_MAP2_FUNC_IOS
+ 0x85 KB_MAP2_FUNC_DEV1
+ 0x86 KB_MAP2_FUNC_DEV2
+ 0x87 KB_MAP2_FUNC_DEV3
+ 
+//map2 Status definition (bit map)
+ 0x01 KB_MAP2_STATUS_WIN
+ 0x02 KB_MAP2_STATUS_ANDROID
+ 0x04 KB_MAP2_STATUS_IOS
+ 0x10 KB_MAP2_STATUS_CONN
+ 0x20 KB_MAP2_STATUS_UNCONN
+ 
+ 0x00 KB_MAP2_STATUS_BIT_WIN
+ 0x01 KB_MAP2_STATUS_BIT_ANDROID
+ 0x02 KB_MAP2_STATUS_BIT_IOS
+ 0x04 KB_MAP2_STATUS_BIT_CONN
+ 0x05 KB_MAP2_STATUS_BIT_UNCONN
+
+// map2 report length
+8 KB_MAP2_REPORT_LENGTH
+0x08 KB_VK_MAX_LEN
+
+//map2 device button state
+0 KB_DEVICE_BUTTON_UP
+1 KB_DEVICE_BUTTON_DEVICE1
+2 KB_DEVICE_BUTTON_DEVICE2
+3 KB_DEVICE_BUTTON_DEVICE3
+0xff KB_DEVICE_BUTTON_ALREADY_LONG
+)
+
+//
+(
+0x01 REPORT_ID_1
+0x02 REPORT_ID_2
+0x03 REPORT_ID_3
+)
+
+(
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+0x1fe9 EEPROM_ADDR_VDD_FLAG
+0x1fea EEPROM_ADDR_VDD_LOW_FLAG
+0x1fec EEPROM_SYSTEM_FALG
+
+)
+
+//Specil Function Key
+(
+0XFF SFK_ANDROID_MAP
+0XFE SFK_IOS_SCREENSHOT
+
+)
+0x39 CAPS_LOCK_DATA
+)
+
+(
+2 KB_TEST_MODE
+)
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+/*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
+
+
+
+
+0x0286 mem_l2cap_mem_start
+0x0286 mem_l2cap_rxbuff1_len
+0x0288 mem_l2cap_rxbuff2_len
+0x028a mem_l2cap_rxbuff_new
+0x028c mem_l2cap_rxbuff_inuse
+0x028d mem_l2cap_payload_ptr
+0x028f mem_l2cap_rx_pkt_length
+0x0291 mem_l2cap_rx_cid
+0x0293 mem_l2cap_rx_done
+0x0294 mem_l2cap_signal_tx_buff_ptr
+0x0296 mem_l2cap_signal_tx_payload_ptr
+0x0298 mem_l2cap_signal_tx_length
+0x029a mem_sdp_tx_buff_ptr
+0x029c mem_sdp_tx_payload_ptr
+0x029e mem_sdp_tx_pkt_length
+0x02a0 mem_rfcomm_tx_buff_ptr
+0x02a2 mem_rfcomm_tx_payload_ptr
+0x02a4 mem_rfcomm_tx_pkt_length
+0x02a6 memL2CAP_T1
+0x02a8 mem_CONTROL_tasks
+0x02a9 mem_send_config_req
+0x02aa mem_config_identifier
+0x02ab mem_config_req_dest_CID
+0x02ad mem_rfcomm_malloc_fail_flag
+0x02ae mem_message_to_uppersm
+0x02af mem_upper_sm_remote_page
+0x02b0 mem_upper_sm_reconn
+0x02b1 mem_upper_sm_ss
+0x02b2 mem_tx_malloc_log
+0x02f2 mem_l2cap_mem_end
+0x02f2 mem_scid
+0x02f4 mem_cmd_length
+0x02f6 mem_tt2
+0x02f8 mem_tt3
+0x02fa mem_id
+0x02fc mem_psm
+0x02fe 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
+)
+
+
+0x0302 mem_le_rxbuf
+0x033a mem_le_mic
+0x033e mem_le_peer_mic
+0x0342 mem_le_peer_ltk
+0x0352 mem_le_mrand
+0x0362 mem_le_state
+0x0363 mem_le_mode
+0x0364 mem_le_tsniff
+0x0366 mem_le_anchor
+0x036a mem_le_clk_offset
+0x0370 mem_le_receive_window
+0x0372 mem_le_plap
+0x0378 mem_le_conn_handle
+0x0379 mem_le_arq
+0x037a mem_le_ch
+0x037b mem_le_hop
+0x037c mem_le_event_count
+0x037e mem_le_supervision_timer
+0x0382 mem_le_instant
+0x0384 mem_le_channels
+0x0385 mem_le_op
+0x0386 mem_le_access
+0x038a mem_le_crcinit
+0x038d mem_le_window_size
+0x038e mem_le_slave_latency
+0x0390 mem_le_superto
+0x0392 mem_le_channel_map
+0x0397 mem_le_no_using
+0x0399 mem_le_peer_sca
+0x039a mem_le_att_opcode
+0x039b mem_le_att_handle
+0x039d mem_le_err_code
+0x039e mem_le_l2cap_pdu_length
+0x03a0 mem_le_sk
+0x03b0 mem_le_testtype
+0x03b1 mem_le_test_sync
+0x03b3 mem_le_test_pcnt
+0x03b5 mem_le_rxon_ts
+0x03bb mem_le_rx_ll_opcode
+0x03bc mem_le_notify_attr_start
+0x03be mem_le_notify_len
+0x03bf mem_cmd_le_create_conn
+0x03c0 mem_24g_id
+0x03c1 mem_le_cur_attlist_start_ptr
+0x03c3 mem_le_cur_handle_start
+0x03c5 mem_le_cur_handle_end
+0x03c7 mem_le_cur_uuid_lenth
+0x03c8 mem_le_cur_uuid
+0x03d8 mem_le_search_len
+0x03d9 mem_le_search_res
+0x03da mem_le_continue_type
+0x03db mem_le_public_length
+
+
+
+(
+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	
+0xa0 param_le_sca
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+)
+
+/*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
+	0x4c XT_SMP_PAIRING_PUBLIC_KEY
+	0x4d XT_SMP_PAIRING_DHKEY_CHECK
+	)
+
+
+	/* 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
+	0x0c SMP_PAIRING_PUBLIC_KEY
+	0x0d SMP_PAIRING_DHKEY_CHECK
+	)
+
+	/* 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
+	0x1f ATTOP_CONTINUE
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	)
+
+	/* 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
+	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
+	)
+
+	(// pairing failed reason
+	0x00 PAIRING_FAILED_RESERVED
+	0X01 PAIRING_FAILED_PASSKEY_ENTRY_FAILED
+	0X02 PAIRING_FAILED_OOB_NOT_AVAILABLE
+	0X03 PAIRING_FAILED_AUTHENTICATION_REQUIRE
+	0X04 PAIRING_FAILED_CONFIRM_VALUE_FAILED
+	0X05 PAIRING_FAILED_PAIRING_NOT_SUPPORTED
+	0X06 PAIRING_FAILED_ENCRYPTION_KEY_SIZE
+	0X07 PAIRING_FAILED_COMMAND_NOT_SUPPORTED
+	0X08 PAIRING_FAILED_UNSPECIFIED_REASON
+	0X09 PAIRING_FAILED_REPEATED_ATTEMPTS
+	0X0A PAIRING_FAILED_INVALID_PARAMETERS
+	0X0B PAIRING_FAILED_DHKEY_CHECK_FAILED
+	0X0C PAIRING_FAILED_NUMERIC_COMPARISON_FAILED
+	0X0D PAIRING_FAILED_BR_EDR_PAIRING_IN_PROGRESS
+	0X0E PAIRING_FAILED_KEY_DERIVATION_GENERATION_NOT_ALLOWED
+	)
+
+	//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
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+(
+0 LE_CONTINUE_TYPE_NULL
+1 LE_CONTINUE_TYPE_NOTIFICATION
+2 LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE 
+)
+
+
+(
+0 LE_INITATOR_LTK_BIT
+1 LE_INITATOR_IRK_BIT
+2 LE_INITATOR_CSRK_BIT
+)
+
+(
+0X00	LE_PAIRING_MODE_NONE
+0X01	LE_PAIRING_MODE_LAGACY_JUSTWORK
+0X02	LE_PAIRING_MODE_LAGACY_PASSKEY
+0x81	LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82	LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+0X83	LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+
+7 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+)
+
+
+(
+0 FLAG_IOCAP_DISPLAYONLY
+1 FLAG_IOCAP_DISPLAYYESNO
+2 FLAG_IOCAP_KEYBOARDONLY
+3 FLAG_IOCAP_NOINPUTNOOUTPUT
+4 FLAG_IOCAP_KEYBOARDDISPLAY
+
+0x00 FLAG_OOB_DATA_FLAG_NO
+)
+
+(
+0X00 FLAG_LE_NO_BONDING_NO_MITM
+0X01 FLAG_LE_BONDING_NO_MITM
+0X04 FLAG_LE_NO_BONDING_MITM
+0X05 FLAG_LE_BONDING_MITM
+0X09 FLAG_LE_BONDING_NO_MITM_SECURE
+0X0D FLAG_LE_BONDING_MITM_SECURE
+
+2 LE_AUTH_MITM_BIT
+3 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+)
+
+(
+0  LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND
+1  LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE
+2  LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE
+
+)
+
+(
+0 MASTER_PUBLIC_ADDR
+1 MASTER_RANDOM_ADDR
+)
+
+(
+0x06 LE_ERR_PIN_OR_KEY_MISSING
+)
+
+//mem_le_enc_state
+(
+0 FLAG_LE_ENC_NULL
+1 FLAG_LE_ENC_START
+2 FLAG_LE_ENC_PAUSE
+3 FLAG_LE_ENC_END
+)
+
+//mem_le_pairing_state
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+/*LE secure connect state */
+(
+0x00 LE_SC_STAT_NULL
+0x01 LE_SC_STAT_RECEIVE_PUBLIC_KEY
+0x02 LE_SC_STAT_WAIT_SEND_PUBLIC_KEY
+0x03 LE_SC_STAT_SEND_PUBLIC_KEY
+0x04 LE_SC_STAT_RECEIVE_RANDOM
+0x05 LE_SC_STAT_SEND_RANDOM
+0x06 LE_SC_STAT_RECEIVE_DHKEY
+0x07 LE_SC_STAT_WAIT_CONFIRM_GKEY
+0x08 LE_SC_STAT_PASSKEY_WAIT_CONFIRM
+)
+
+
+(
+0 FLAG_LE_SC_CONFRIM_NULL
+1 FLAG_LE_SC_CONFRIM_GKEY_OK
+)
+
+
+(
+3 LE_CONTINUE_TYPE_PUBLIC_KEY
+)
+
+//mem_le_continue_flag
+(
+0 LE_CONTINUE_FLAG_NULL
+1 LE_CONTINUE_FLAG_RX
+2 LE_CONTINUE_FLAG_TX
+)
+
+
+
+0x03dc mem_lmo_header_length
+0x03dd mem_lmo_header_opcode
+0x03de mem_lmo_payload
+0x03ef mem_lmi_accepted_opcode
+0x03f0 mem_disconn_reason_send
+0x03f1 mem_tx_fixed_freq
+0x03f2 mem_rx_fixed_freq
+0x03f3 mem_ext_features_page
+0x03f4 mem_lmpext_ssp_enable
+0x03f6 mem_remote_sppcap
+0x03f7 mem_lmp_conn_state
+0x03f8 mem_soft_timer
+0x03fa mem_pincode_state
+0x03fb mem_sres_tid
+0x03fc mem_accptsco_tid
+0x03fd mem_auth_enable
+0x03fe mem_wait_encryption
+0x03ff mem_sniff_payload
+0x040f 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
+)
+
+(
+0x4c00 mem_module_rx_buf//0x400
+0x4c00 mem_module_rx_buf_little
+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
+)
+
+
+0x0413 mem_module_temp_len
+0x0415 mem_uart_cmd
+0x0416 mem_uart_opcode
+0x0417 mem_uart_len
+0x0418 mem_module_temp_nl_discard_packet
+0x0419 mem_module_le_md_flag
+
+
+(
+0 MODULE_FLAG_UART_FLOW_CONTROL
+1 MODULE_FLAG_BLE_RECEIVED_DATA
+2 MODULE_FLAG_BLE_SEND_MTU23
+3 MODULE_FLAG_BLE_SEND_DATA
+)
+
+
+
+
+(
+34 NV_DATA_LEN
+-1 DECREASED_ONE
+)
+
+
+
+(
+	10 FLAG_MODULE_READ_VDD_COUNT
+)
+
+	(
+		110  DM_REFCOM_BUFF_LEN
+		230  NL_RFCOMM_BUFF_LEN
+		220  NL_RFCOMM_BUFF_LEN_220
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+	(
+		0 MODULE_LED_DISABLE
+		1 MODULE_LED_BLINK
+	)
+
+
+
+
+(
+0x01 HCI_DISCARD_PACKET
+0x00 HCI_NOT_DISCARD_PACKET
+
+
+)
+
+
+
+(//Command
+0x00 HCI_CMD_SET_BT_ADDR_REQ
+0x01 HCI_CMD_SET_LE_ADDR_REQ
+0x02 HCI_CMD_SET_VISIBILITY_REQ
+0x03 HCI_CMD_SET_BT_NAME_REQ
+0x04 HCI_CMD_SET_LE_NAME_REQ
+0x05 HCI_CMD_SPP_DATA_REQ
+0x09 HCI_CMD_LE_DATA_REQ
+0x0b HCI_CMD_STATUS_IRQ
+0x0c HCI_CMD_SET_PAIRING_REQ
+0x0d HCI_CMD_SET_PINCODE_REQ
+0x0e HCI_CMD_SET_UARTCONTROL_REQ
+0x0f HCI_CMD_SET_UART_BAUD_REQ
+0x10 HCI_CMD_VERSION_REQ
+0x11 HCI_CMD_BT_DISCONNECT
+0x12 HCI_CMD_BLE_DISCONNECT
+0x13 HCI_CMD_DELETE_DEVICE
+0x14 HCI_CMD_CREATE_CONNECT
+0x26 HCI_CMD_SET_NVRAM_REQ
+0x27 HCI_CMD_SLEEP
+0x28 HCI_CMD_CONFIRM_GKEY
+0x29 HCI_CMD_SET_CREDIT_GIVEN
+0x2a HCI_CMD_AUTO_ADV_SCAN
+0x2b HCI_CMD_POWER_REQ
+0x2c HCI_CMD_POWER_SET
+0x30 HCI_CMD_PASSKEY_ENTRY
+0x31 HCI_CMD_SET_GPIO
+0x32 HCI_CMD_READ_GPIO
+0x33 HCI_CMD_LE_SET_PAIRING
+0x34 HCI_CMD_LE_SET_ADV_DATA
+0x35 HCI_CMD_LE_SET_SCAN_DATA
+0x36 HCI_CMD_LE_SEND_CONN_UPDATE_REQ
+0x38 HCI_CMD_LE_START_PAIRING
+0x48 HCI_CMD_LE_CONFIRM_GKEY
+
+)
+
+(//event
+0x00 HCI_EVENT_SPP_CONN_REP
+0x01 HCI_EVENT_HID_CONN_REP
+0x02 HCI_EVENT_LE_CONN_REP
+0x03 HCI_EVENT_SPP_DIS_REP
+0x04 HCI_EVENT_HID_DIS_REP
+0x05 HCI_EVENT_LE_DIS_REP
+0x06 HCI_EVENT_CMD_RES
+0x07 HCI_EVENT_SPP_DATA_REP
+0x08 HCI_EVENT_LE_DATA_REP
+0x09 HCI_EVENT_STANDBY_REP
+0x0a HCI_EVENT_STATUS_RES
+0x0b HCI_EVENT_FINISH_PACK_NUM
+0X0C HCI_EVENT_SNIFF_MD_CHANGE
+0x0D HCI_EVENT_NVRAM_REP
+0x0e HCI_EVENT_GKEY
+0x0F HCI_EVENT_INVALID_PACKET
+0x10 HCI_EVENT_GET_PASSKEY
+0x11 HCI_EVENT_LE_TK
+0x12 HCI_EVENT_REMOTE_MTU
+0x14 HCI_EVENT_LE_PAIRING_STATE
+0X15 HCI_EVENT_LE_ENCRYPTION_STATE
+0x17 HCI_EVENT_LE_CONNECTION_UPDATE
+0x1d HCI_EVENT_LE_GKEY
+
+)
+
+
+
+
+(
+0x7e0 OTP_ADDR_RF_PARAM_FIX
+//struct of RF_PARAM_FIX
+// uint8       //length = param_pair_count * 2 
+// uint16     //param-pair-1
+// uint16     //param-pair-2
+// uint16     //param-pair-3
+// uint16     //param-pair-4
+// uint16     //param-pair-5
+// uint16     //param-pair-6
+// uint16     //param-pair-7
+)
+(
+0x0270 FW_VERSION_NUMBER
+)
+
+(
+0	PAIRING_PINCODE
+1	PAIRING_JUSTWORK
+2	PAIRING_PASSKEY
+3	PAIRING_CONFIRM
+)
+
+
+(
+0x0001	FLAG_BT_PAIRING_SUCCESS
+0x0101	FLAG_BT_PAIRING_FAIL
+0x0080	FLAG_BLE_PAIRING_SUCCESS
+0x0180	FLAG_BLE_PAIRING_FAIL
+)
+
+
+(
+1	FLAG_EVENT_START_ENC
+0	FLAG_EVENT_PAUSE_ENC
+)
+
+(
+	0 MOUDLE_STATE_BT_BIT
+	1 MOUDLE_STATE_BLE_BIT
+)
+
+(
+	0 MOUDLE_TASK_UNSINFF
+)
+
+
+
+0x041a mem_init_cnt
+//dpi eeprom addr
+198 mouse_dpi_eeprom_addr
+
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+)
+0x30 P3204_ID
+0x31 P3065_ID
+0x3e P3610_ID
+
+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
+       2       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
+)
+
+
+(
+	  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
+
+)
+(
+  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
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+  0x8973 rfen_chgpump
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_ib_lna
+  0x894e 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
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+  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
+0x91 uart_ctrl_5line
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x00 uartclk_crystal
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x34 uart_baud_921600
+0x9c4 uart_baud_9600
+0x2dc6c00 uart_clk
+0x16E3600 uart_clk_24
+
+//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 */
+/**********/
+
+0x041c memRemoteRPNBitRate
+0x041d memRemotePRNDataBits
+0x041e memRemotePRNStopBit
+0x041f memRemotePRNParity
+0x0420 memRemotePRNFlowControl
+0x0421 memRemotePRNXon
+0x0422 memRemotePRNXoff
+0x0423 mem_mod2div_temp
+0x0426 mem_contw_temp
+0x0428 mem_attrib_list
+0x042a mem_current_adss
+0x042b mem_current_channel
+0x042c mem_current_frame_type
+0x042d mem_current_fcs
+0x042e mem_current_length
+0x0430 mem_rfcomm_uih_payload_ptr
+0x0432 mem_uih_cmd_type
+0x0433 mem_uih_length
+0x0435 mem_param_payload_ptr
+0x0437 mem_ms_param
+0x0438 mem_pn_credit_flow_type_info
+0x0439 mem_pn_priority
+0x043a mem_pn_acknowledg_timer
+0x043b mem_pn_max_retrans
+0x043c mem_rfcomm_send_adss
+0x043d mem_rfcomm_send_frame_type
+0x043e mem_rfcomm_send_fcs
+0x043f mem_rfcomm_send_offset
+
+
+
+(
+0 CREDIT_DISABLE
+1 CREDIT_ENABLE
+)
+
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* 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
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+)
+
+/*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
+	)
+0x0440 mem_sdp_mem_start
+0x0440 mem_uuid_search_pat
+0x0444 mem_sdp_continue_byte
+0x0446 mem_sdp_pduid
+0x0447 mem_sdp_transactionid
+0x0449 mem_sdp_attribute_maxbyte
+0x044b mem_sdp_record_maxcnt
+0x044d mem_sdp_error_code
+0x0455 mem_sdp_record_handle
+0x0459 mem_sdp_search_failed
+0x045a mem_sdp_LACAP_found
+0x045b mem_sdp_RFCOMM_found
+0x045c mem_handle_list
+0x0474 mem_handle_humber
+0x0475 mem_sdp_mem_end
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+(
+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
+
+ 
+
+0x0475 mem_rxbuf
+0x0486 mem_random_number
+0x0496 mem_round_key
+0x04a6 mem_kinit
+0x04b6 mem_input_store
+0x04c6 mem_x
+0x04d6 mem_y
+0x04e5 mem_y15
+0x04e6 mem_key_store
+0x04f7 mem_key_store_end
+0x04f8 memp_ar_key
+0x04fa memp_ar_input
+0x04fc mem_ar_hround
+0x0506 mem_ec_infinite
+0x0507 mem_ec_loopc
+0x0509 mem_aes_cmac_data_length
+0x050a memdat
+0x050a mem_ax
+0x0522 mem_ay
+0x053a mem_az
+0x0552 mem_bx
+0x056a mem_ax_256//32 bytes
+0x056a mem_by
+0x0582 mem_bz
+0x058a mem_ay_256// 32 bytes
+0x059a mem_cx
+0x05aa mem_az_256// 32 bytes
+0x05b2 mem_cy
+0x05c9 mem_cy5
+0x05ca mem_bx_256// 32 bytes
+0x05ca mem_cz
+0x05e2 mem_k
+0x05ea mem_by_256// 31 bytes
+0x05fa mem_align
+0x060a mem_bz_256//32 bytes
+0x060a mem_tmp1
+0x060a memahbak
+0x0622 mem_tmp5
+0x062a mem_cx_256//32 bytes
+0x062a memahsave
+0x063a mem_tmp2
+0x064a mem_cy_256// 32 bytes
+0x064a memahsave_end
+0x064a mem_addr_padding
+0x064b mem_addr_value/* 12 bytes     */ 
+0x0652 mem_tmp3
+0x0652 mem_t1
+0x0657 mem_addr_value_end
+0x065a mem_addr_iocap_end
+0x0669 mem_cy5_256// 1 byte
+0x066a mem_cz_256// 32 bytes
+0x066a mem_tmp0
+0x066a mem_t0
+0x0672 mem_tmp0a
+0x0682 mem_t2
+0x068a mem_k_256//32 bytes
+0x069a mem_t3
+0x06aa mem_tmp1_256//32 bytes
+0x06b2 mem_t7
+0x06ca mem_tmp5_256
+0x06ea mem_tmp2_256
+0x070a mem_tmp3_256
+0x070a mem_t1_256
+0x072a mem_tmp0_256
+0x072a mem_t0_256
+0x074a mem_t2_256
+0x076a mem_t3_256
+0x078a mem_t7_256
+0x07aa mem_p
+0x07c2 mem_a
+0x07da mem_b
+0x07f2 mem_gx
+0x080a mem_gy
+0x0822 memh0
+0x0842 mem_p_256
+0x0862 mem_a_256
+0x0882 mem_gx_256
+0x08a2 mem_gy_256
+0x08c2 mem_le_slat
+
+
+
+
+
+(
+6 QUEUE_ELE_COUNT
+10 QUEUE_ELE_LENGTH
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0x18 ATT_WRITE_REQUEST_HANDLE
+)
+
+(
+0x13	HANDLE_VOLUM_UP_KEY	
+0x17	HANDLE_ENTER_KEY
+)
+	
+(
+0x010210 param_smp_key_dist1
+0x010010 param_smp_key_dist2
+)
+
+(
+0 INITATOR_LTK
+1 INITATOR_IRK
+2 INITATOR_CSRK
+)
+
+(
+//100ms
+0x00a0	FAST_ADV_INTERVAL_VALUE
+//200ms
+0x0140	SLOW_ADV_INTERVAL_VALUE
+)
+
+(
+0x01	GAP_ADTYPE_FLAGS
+0x02	GAP_ADTYPE_16BIT_MORE
+0x03	GAP_ADTYPE_16BIT_COMPLETE
+0x04	GAP_ADTYPE_32BIT_MORE
+0x05	GAP_ADTYPE_32BIT_COMPLETE
+0x06	GAP_ADTYPE_128BIT_MORE
+0x07	GAP_ADTYPE_128BIT_COMPLETE
+0x08	GAP_ADTYPE_LOCAL_NAME_SHORT
+0x09	GAP_ADTYPE_LOCAL_NAME_COMPLETE
+0x0a	GAP_ADTYPE_POWER_LEVEL
+0xff	GAP_ADTYPE_MANUFACTURER_SPECIFIC
+)
+
+(
+0 ATT_BIT_NOTIFICATION
+1 ATT_BIT_INDICATION
+)
+///////////////////////////////////////////////////////////////////////////////////////
+(
+13 MAX_SHUTER_KEY_NUM
+4  MAX_SHUTTER_LED_NUM
+0xFF INVALID_PIN_NUM
+)
+(
+0 KEY_DEFAULT
+1 kEY_1
+2 kEY_2
+3 KEY_3
+4 KEY_4
+)
+(
+0 HARD_SWITCH
+1 SOFT_SWITCH
+)
+(
+0 LED_OFF
+1 LED_ON
+2 LED_BLINK
+0xFF LED_INVALID
+)
+
+/*struct led_style*/
+(
+7 LED_STYLE_STRUCT_LEN
+0 LED_TYPE_OFFSET
+1 LED_PIN_OFFSET
+2 LED_ON_TIME_OFFSET
+4 LED_OFF_TIME_OFFSET
+6 LED_BLINK_COUNT_OFFSET
+)
+
+/*struct key_conf*/
+(
+2 KEY_CONF_STRUCT_LEN
+0 KEY_PIN_OFFSET
+1 KEY_STYLE_IND_OFFSET
+)
+
+(
+0 SHUTTER_POWER_UP
+1 SHUTTER_POWER_ON
+2 SHUTTER_POWER_OFF
+)
+
+(
+0x5907 le_parse_att0
+0x5656 le_prepare_smp0
+0x5666 le_prepare_att0
+0x7c67 check_51cmd_once0
+)
+
+
+(
+0xf00 EEP_LAP_ADDR
+)
+
+(
+0x33 PAIRED_DEVICE_TYPE_BT
+0x44 PAIRED_DEVICE_TYPE_BLE
+5 PAIRED_DEVICE_DEFAULT_LEN
+0x5a5a PAIRED_DEVICE_MAGIC
+)
+
+(
+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
+)
+
+
+//mem_shutter_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
+)
+
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE_PATCH
+)
+
+(
+50 TIMEOUT_DISCONNECT_TIMER
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+
+(
+6 QUEUE_ELE_COUNT_PATCH
+20 QUEUE_ELE_LENGTH_PATCH
+)
+
+(
+0x4000 mem_shutter_rx_buf
+0x4030 mem_shutter_rx_buf_end
+0x1f00 mem_shutter_tx_buf
+0x1f10 mem_shutter_tx_buf_end
+
+)
+
+(
+14 TIMER_UART_SEND_DATA_DELAY
+)
+/* simple pairing page */
+
+0x08d2 mem_sp_state_start
+0x08d2 mem_sp_state
+0x08d3 mem_master_sp_state
+0x08d4 mem_sp_flag
+0x08d5 mem_master_sp_flag
+0x08d6 mem_sp_calc
+0x08d7 mem_sp_dh_ready
+0x08d8 mem_sp_localsm
+0x08d9 mem_pairing_auth
+0x08da mem_sp_flag_start
+0x08da mem_sp_local_key_send_count
+0x08db mem_sp_remote_key_recv_count
+0x08dc mem_sp_remote_key_invalid
+0x08dd mem_sp_dhkey_invalid
+0x08de mem_gkey
+0x08e2 mem_le_pubkey_remote_x_256
+0x08ea mem_sp_pubkey_remote
+0x08ea mem_sp_pubkey_remote_x
+0x0902 mem_sp_pubkey_remote_x_end
+0x0902 mem_le_pubkey_remote_y_256
+0x090a mem_sp_pubkey_remote_y
+0x0922 mem_le_dhkey_256
+0x092a mem_sp_dhkey
+0x0942 mem_sp_dhkey_end
+0x0942 mem_sp_random_local
+0x0952 mem_sp_random_local_end
+0x0952 mem_sp_random_remote
+0x0962 mem_sp_random_remote_end
+0x0962 memresult
+0x0962 mem_sp_calc_result
+0x0962 memh
+0x0966 memg
+0x096a memf
+0x096e meme
+0x0972 mem_sp_calc_result_high
+0x0972 memd
+0x0976 memc
+0x097a memb
+0x097e mema
+0x0982 mem_sp_check_result
+0x0992 mem_sp_confirm_remote
+0x09a2 mem_sp_prarm_stack
+
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+  0x02   LE_SP_FLAG_COMMIT_256
+
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+  0x03   SP_CALC_PUBKEY_256
+  0x04   SP_CALC_DHKEY_256
+)
+
+/* 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
+  0x03   SP_KEY_VALID_256
+
+)
+
+/* 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
+)
+
+(
+1 SSP_MODE_SSP_PIN_FLAG
+2 SSP_MODE_PASSKEY_ENTRY_FLAG
+3 SSP_MODE_JUST_WORK_FLAG
+)
+
+(//ssp mode
+0x040003 SSP_MODE_JUST_WORK_IO_CAP_DATA
+0X040001 SSP_MODE_SSP_PIN_IO_CAP_DATA
+0X040002 SSP_MODE_PASSKEY_IO_CAP_DATA
+)
+
+(
+0x00 DISPLAY_ONLY
+0x01 DISPLAY_YESNO
+0x02 KEYBOARD_ONLY
+0x03 NO_INPUT_NO_OUTPUT
+)
+
+(
+7 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT
+6 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT
+0 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT
+)
+(
+1 FLAG_PAIRING_STATE_PAIRING
+0 FLAG_PAIRING_STATE_NOT_PAIRING
+)
+
+  
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_ui_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $     */
+/************************************************************************/
+
+
+	/* ========= memory ============== */
+0x09b2 mem_UI_data_txbuff_length
+0x09b4 mem_ipc_skip_continue_proc
+0x09b5 mem_ui_timer_temp//length 4
+0x09b5 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
+)
+(
+0xFF LED_FLASH_INFINITE
+)
+
+(
+1 UI_STATE_SPP_NL_AUTO_DISCOVER
+
+)
+
+/* 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 */
+(
+0 BT_CMD_STANDBY
+1 BT_CMD_START_DISCOVERY
+2 BT_CMD_STOP_DISCOVERY
+3 BT_CMD_RECONNECT
+4 BT_CMD_DISCONNECT
+5 BT_CMD_ENTER_SNIFF
+6 BT_CMD_EXIT_SNIFF
+7 BT_CMD_ENTER_SNIFF_SUBRATING
+8 BT_CMD_EXIT_SNIFF_SUBRATING
+9 BT_CMD_SNIFF_TEST
+10 BT_CMD_SET_PIN_CODE
+11 BT_CMD_START_INQUIRY
+12 BT_CMD_STOP_INQUIRY
+13 BT_CMD_START_ADV
+14 BT_CMD_STOP_ADV
+15 BT_CMD_START_DIRECT_ADV
+16 BT_CMD_STOP_DIRECT_ADV
+17 BT_CMD_LE_DISCONNECT
+18 BT_CMD_LE_UPDATE_CONN
+19 BT_CMD_LED_OFF
+20 BT_CMD_LED_ON
+21 BT_CMD_LED_BLINK
+22 BT_CMD_LE_START_CONN
+23 BT_CMD_LE_START_SCAN
+24 BT_CMD_LE_STOP_SCAN
+25 BT_CMD_ENTER_HIBERNATE
+27 BT_CMD_LE_SMP_SECURITY_REQUEST
+28 BT_CMD_LE_START_WRITE
+29 BT_CMD_ROLE_SWITCH
+30 BT_CMD_BB_RECONN_CANCEL
+31 BT_CMD_STORE_RECONN_INFO_LE
+32 BT_CMD_STORE_RECONN_INFO_BT
+33 BT_CMD_DHKEY_NOT_ACCEPT
+34 BT_CMD_START_24G
+35 BT_CMD_STOP_24G
+36 BT_CMD_PAIR_24G
+)
+
+(
+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
+0x30 BT_EVT_LE_PAIRING_FAIL
+0x31 BT_EVT_LE_PAIRING_SUCCESS
+0x32 BT_EVT_LE_START_ENC
+0X33 BT_EVT_LE_PAUSE_ENC
+0X34 BT_EVT_LE_TK_GENERATE
+0x35 BT_EVT_BT_GKEY_GENERATE
+0x36 BT_EVT_BT_GET_PASSKEY
+0x37 BT_EVT_BT_PAIRING_FAIL
+0x38 BT_EVT_BT_PAIRING_SUCCESS
+0x39 BT_EVT_24G_PAIRING_COMPLETE
+0x3a BT_EVT_24G_ATTEMPT_FAIL
+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
+)
+
+/**
+*  @file:bt_utility_format.upper
+*  @author: lei.zhu
+*  utility header file. inlcude timer
+*  Copyright:  (C)Hanlynn Technology    
+*/
+
+0x09b9 mem_hold_contr
+0x09bb mem_hold_contw
+0x09bd mem_fifo_temp
+0x09be mem_pdatatemp
+0x09c6 mem_temp//8 bytes
+0x09ce mem_timeup// 4 bytes
+0x09d2 mem_rega//4 bytes
+0x09d6 mem_regb//4 bytes
+0x09da mem_regc//3 bytes
+0x09dd mem_contr//2 bytes
+0x09df mem_contw//2 bytes
+0x09e1 mem_le_data_len_temp//1byte
+0x09e1 mem_tx_fifo_map_temp
+0x09e1 mem_rpn_dlci//1byte
+0x09e1 mem_event_cmd_response_content//2byte
+0x09e1 mem_le_prand//16byte
+0x09e1 mem_AES_CMAC_k//16 bytes
+0x09e1 mem_regext_index//1 bytes
+0x09e1 mem_temp_block0
+0x09e2 mem_le_data_temp//15bytes
+0x09e2 mem_temp_block1
+0x09f1 mem_le_aes_128//16byte
+0x09f1 mem_regext//64 bytes
+0x09f1 mem_AES_CMAC_k1//16 bytes
+0x09f1 mem_temp_block2
+0x0a01 mem_AES_CMAC_k2//16 bytes
+0x0a01 mem_temp_block3
+0x0a11 mem_AES_CMAC_temp// 16 bytes
+0x0a11 mem_temp_block4
+0x0a21 mem_AES_CMAC_M_last// 16 bytes
+0x0a21 mem_temp_block5
+0x0a31 mem_le_mackey//16 bytes
+0x0a31 mem_temp_block6
+0x0a41 mem_temp_prepare_write_request
+
+
+(
+/*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
+(
+
+8 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+0x0b09 mem_kb_map2_temp_start
+0x0b09 mem_kb_map2_vk
+0x0b0c mem_kb_current_vk
+0x0b0f mem_kb_vk_offset
+0x0b10 mem_kb_vk_processed_cnt
+0x0b11 mem_kb_map2_current_cell_ptr
+0x0b13 mem_kb_device_button
+0x0b14 mem_table_temp0
+0x0b1c mem_table_temp1
+0x0b24 mem_kb_map2_temp_end
+0x0b24 mem_check_count
+0x0b25 mem_store_key_count
+0x0b26 mem_kb_gpio_val
+
+/************************************************************************/
+/* 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
+  [1] 0   /* msb */
+  [15] 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: ble fast connect receive/output/bt_program23.icode
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.icode	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.icode	(working copy)
@@ -0,0 +1,21005 @@
+ 00000000  0x00000028 bmark1  0x00000025 , 0x00000007 
+ 00000001  0x00000029 beq  0x00000003 , 0x00000014 
+ 00000002  0x0000002a beq  0x00000086 , 0x00000228 
+ 00000003  0x0000002b beq  0x0000008a , 0x000001f1 
+ 00000004  0x0000002c beq  0x0000008b , 0x0000024a 
+ 00000005  0x0000002d beq  0x000000b4 , 0x00000034 
+ 00000006  0x0000002e branch  0x00003b31 
+ 00000007  0x00000031 beq  0x00000003 , 0x000000ce 
+ 00000008  0x00000032 beq  0x00000019 , 0x00000220 
+ 00000009  0x00000033 beq  0x0000002b , 0x00000072 
+ 00000010  0x00000034 beq  0x0000002e , 0x000000c5 
+ 00000011  0x00000035 beq  0x00000032 , 0x0000001d 
+ 00000012  0x00000036 beq  0x00000033 , 0x000000b2 
+ 00000013  0x00000037 beq  0x0000003e , 0x00000093 
+ 00000014  0x00000038 beq  0x00000095 , 0x000001ea 
+ 00000015  0x00000039 beq  0x000000d8 , 0x0000005a 
+ 00000016  0x0000003a beq  0x000000d9 , 0x000001bb 
+ 00000017  0x0000003b beq  0x000000dc , 0x00000131 
+ 00000018  0x0000003c beq  0x000000f7 , 0x00000085 
+ 00000019  0x0000003d branch  0x00003b31 
+ 00000020  0x00000040 arg  0x0000000e , 0x00000007 
+ 00000021  0x00000041 call  0x00007ee2 
+ 00000022  0x00000042 ncall  0x00000019 , 0x00000034 
+ 00000023  0x00000043 call  0x0000001a 
+ 00000024  0x00000044 call  0x00000093 
+ 00000025  0x00000046 branch  0x0000301b 
+ 00000026  0x00000049 setarg  0x0000000e 
+ 00000027  0x0000004a arg  0x0000000e , 0x00000007 
+ 00000028  0x0000004b branch  0x00007ed4 
+ 00000029  0x0000004e fetch  0x00000001 , 0x0000446b 
+ 00000030  0x00000050 beq  0x00000001 , 0x00004cbb 
+ 00000031  0x00000051 beq  0x00000002 , 0x0000002c 
+ 00000032  0x00000052 beq  0x00000003 , 0x00004cda 
+ 00000033  0x00000053 beq  0x00000004 , 0x00004ce8 
+ 00000034  0x00000054 beq  0x00000005 , 0x00004ced 
+ 00000035  0x00000055 beq  0x00000006 , 0x00004cf2 
+ 00000036  0x00000056 beq  0x00000007 , 0x00004d10 
+ 00000037  0x00000057 beq  0x00000008 , 0x00004d27 
+ 00000038  0x00000058 beq  0x00000009 , 0x00004d2d 
+ 00000039  0x00000059 beq  0x0000000a , 0x00004d32 
+ 00000040  0x0000005a beq  0x0000000b , 0x00004d35 
+ 00000041  0x0000005b beq  0x0000000c , 0x00004d39 
+ 00000042  0x0000005c beq  0x0000000d , 0x00004d64 
+ 00000043  0x0000005d branch  0x00003b31 
+ 00000044  0x00000060 setarg  0x01000302 
+ 00000045  0x00000061 store  0x00000004 , 0x000044dc 
+ 00000046  0x00000062 setarg  0x00010010 
+ 00000047  0x00000063 istore  0x00000003 , 0x00000005 
+ 00000048  0x00000064 fetch  0x00000006 , 0x000044dd 
+ 00000049  0x00000065 store  0x00000006 , 0x0000446c 
+ 00000050  0x00000066 force  0x0000000b , 0x00000002 
+ 00000051  0x00000067 branch  0x00004f89 
+ 00000052  0x00000069 fetch  0x00000001 , 0x00004132 
+ 00000053  0x0000006a branch  0x00003d4b , 0x00000034 
+ 00000054  0x0000006e beq  0x00000003 , 0x0000400c 
+ 00000055  0x0000006f beq  0x00000009 , 0x0000003c 
+ 00000056  0x00000070 beq  0x0000000a , 0x000059dd 
+ 00000057  0x00000072 bbit1  0x00000006 , 0x00005dca 
+ 00000058  0x00000073 bbit1  0x00000007 , 0x0000400c 
+ 00000059  0x00000074 rtn 
+ 00000060  0x00000077 rtn  0x0000002b 
+ 00000061  0x00000078 call  0x000074fd 
+ 00000062  0x00000079 arg  0x00000087 , 0x00000039 
+ 00000063  0x0000007a arg  0x000049b2 , 0x00000005 
+ 00000064  0x0000007b arg  0x00004ac1 , 0x00000006 
+ 00000065  0x0000007c call  0x00007ecd 
+ 00000066  0x0000007d call  0x000075c9 
+ 00000067  0x0000007f hjam  0x00000000 , 0x00008081 
+ 00000068  0x00000080 call  0x000073a5 
+ 00000069  0x00000082 setarg  0x0000737c 
+ 00000070  0x00000083 store  0x00000002 , 0x0000428c 
+ 00000071  0x00000085 setarg  0x0000748c 
+ 00000072  0x00000086 store  0x00000002 , 0x0000428e 
+ 00000073  0x00000088 setarg  0x00007365 
+ 00000074  0x00000089 store  0x00000002 , 0x00004298 
+ 00000075  0x0000008b setarg  0x0000737a 
+ 00000076  0x0000008c store  0x00000002 , 0x00004294 
+ 00000077  0x0000008e setarg  0x00007371 
+ 00000078  0x0000008f store  0x00000002 , 0x00004290 
+ 00000079  0x00000091 setarg  0x000000bc 
+ 00000080  0x00000092 store  0x00000002 , 0x00004296 
+ 00000081  0x00000094 call  0x000001c6 
+ 00000082  0x00000096 setarg  0x000072ef 
+ 00000083  0x00000097 store  0x00000002 , 0x0000428a 
+ 00000084  0x00000098 setarg  0x000074f4 
+ 00000085  0x00000099 store  0x00000002 , 0x0000429a 
+ 00000086  0x0000009a call  0x00000101 
+ 00000087  0x0000009b jam  0x00000000 , 0x00004212 
+ 00000088  0x0000009c jam  0x00000000 , 0x000048c7 
+ 00000089  0x0000009d branch  0x000072ad 
+ 00000090  0x000000a0 fetch  0x00000001 , 0x00004755 
+ 00000091  0x000000a1 beq  0x00000000 , 0x0000005d 
+ 00000092  0x000000a2 branch  0x000072b1 
+ 00000093  0x000000a6 jam  0x00000001 , 0x00004756 
+ 00000094  0x000000a7 jam  0x00000001 , 0x0000475b 
+ 00000095  0x000000a8 call  0x00007382 
+ 00000096  0x000000a9 setarg  0x00004771 
+ 00000097  0x000000aa call  0x0000738e 
+ 00000098  0x000000ac call  0x00007d44 
+ 00000099  0x000000ad fetch  0x00000001 , 0x00004713 
+ 00000100  0x000000ae nbranch  0x00000062 , 0x00000034 
+ 00000101  0x000000b0 jam  0x00000001 , 0x000043f9 
+ 00000102  0x000000b1 setarg  0x00000000 
+ 00000103  0x000000b2 store  0x00000004 , 0x00004729 
+ 00000104  0x000000b3 call  0x00007382 
+ 00000105  0x000000b6 fetch  0x00000002 , 0x00004748 
+ 00000106  0x000000b7 store  0x00000002 , 0x0000474a 
+ 00000107  0x000000b8 branch  0x0000006c 
+ 00000108  0x000000bc fetch  0x00000002 , 0x00004748 
+ 00000109  0x000000bd store  0x00000002 , 0x0000474a 
+ 00000110  0x000000be jam  0x00000000 , 0x000048bb 
+ 00000111  0x000000bf jam  0x00000001 , 0x000043f9 
+ 00000112  0x000000c0 setarg  0x00004763 
+ 00000113  0x000000c1 branch  0x0000738e 
+ 00000114  0x000000c4 fetch  0x00000006 , 0x00000304 
+ 00000115  0x000000c5 store  0x00000006 , 0x00000372 
+ 00000116  0x000000c6 fetch  0x00000006 , 0x00000372 
+ 00000117  0x000000c9 fetcht  0x00000006 , 0x0000452c 
+ 00000118  0x000000ca isub  0x00000002 , 0x0000003e 
+ 00000119  0x000000cb branch  0x00004bb4 , 0x00000005 
+ 00000120  0x000000cc branch  0x00000079 
+ 00000121  0x000000cf fetch  0x00000006 , 0x00000372 
+ 00000122  0x000000d2 fetcht  0x00000006 , 0x00004bf2 
+ 00000123  0x000000d3 isub  0x00000002 , 0x0000003e 
+ 00000124  0x000000d4 nrtn  0x00000005 
+ 00000125  0x000000d5 fetch  0x00000006 , 0x00000372 
+ 00000126  0x000000d6 store  0x00000006 , 0x00004b4b 
+ 00000127  0x000000d7 jam  0x0000001c , 0x000043f7 
+ 00000128  0x000000d8 setarg  0x00000100 
+ 00000129  0x000000d9 store  0x00000002 , 0x00004539 
+ 00000130  0x000000da jam  0x00000000 , 0x000043f9 
+ 00000131  0x000000db jam  0x00000001 , 0x00004b51 
+ 00000132  0x000000dc branch  0x00003e69 
+ 00000133  0x000000df call  0x00007d80 
+ 00000134  0x000000e0 arg  0x000046f8 , 0x00000011 
+ 00000135  0x000000e1 call  0x00007f95 
+ 00000136  0x000000e2 copy  0x0000003f , 0x00000002 
+ 00000137  0x000000e3 call  0x00007d84 
+ 00000138  0x000000e4 copy  0x00000002 , 0x0000003f 
+ 00000139  0x000000e5 rtn  0x00000034 
+ 00000140  0x000000e6 beq  0x00000016 , 0x0000008e 
+ 00000141  0x000000e7 branch  0x00007db3 
+ 00000142  0x000000e9 jam  0x00000001 , 0x000043f9 
+ 00000143  0x000000ea jam  0x0000001b , 0x00004271 
+ 00000144  0x000000eb fetch  0x00000006 , 0x00004b4b 
+ 00000145  0x000000ec store  0x00000006 , 0x0000452c 
+ 00000146  0x000000ed rtn 
+ 00000147  0x000000f0 ifetch  0x00000003 , 0x00000006 
+ 00000148  0x000000f1 store  0x00000003 , 0x0000039a 
+ 00000149  0x000000f2 beq  0x00000013 , 0x00000099 
+ 00000150  0x000000f3 beq  0x0000001b , 0x00000098 
+ 00000151  0x000000f4 rtn 
+ 00000152  0x000000f7 branch  0x000001df 
+ 00000153  0x000000fb fetch  0x00000001 , 0x00004bf8 
+ 00000154  0x000000fc rtn  0x00000034 
+ 00000155  0x000000fd increase  0xffffffff , 0x0000003f 
+ 00000156  0x000000fe store  0x00000001 , 0x00004bf8 
+ 00000157  0x000000ff beq  0x00000001 , 0x000000a0 
+ 00000158  0x00000100 beq  0x00000000 , 0x000000a9 
+ 00000159  0x00000101 rtn 
+ 00000160  0x00000104 setarg  0x00000027 
+ 00000161  0x00000105 store  0x00000002 , 0x000044f8 
+ 00000162  0x00000106 jam  0x00000002 , 0x0000450b 
+ 00000163  0x00000107 setarg  0x00000001 
+ 00000164  0x00000108 store  0x00000002 , 0x0000450c 
+ 00000165  0x00000109 jam  0x00000000 , 0x00004b52 
+ 00000166  0x0000010b jam  0x00000001 , 0x00004b53 
+ 00000167  0x0000010c jam  0x00000012 , 0x000009bd 
+ 00000168  0x0000010d branch  0x00004bd6 
+ 00000169  0x0000010f setarg  0x00000060 
+ 00000170  0x00000110 store  0x00000002 , 0x000044f8 
+ 00000171  0x00000111 jam  0x00000002 , 0x0000450b 
+ 00000172  0x00000112 setarg  0x00000001 
+ 00000173  0x00000113 store  0x00000002 , 0x0000450c 
+ 00000174  0x00000114 jam  0x00000000 , 0x00004b52 
+ 00000175  0x00000116 jam  0x00000001 , 0x00004b53 
+ 00000176  0x00000117 jam  0x00000012 , 0x000009bd 
+ 00000177  0x00000118 branch  0x00004bd6 
+ 00000178  0x0000011c fetch  0x00000001 , 0x0000446b 
+ 00000179  0x0000011d beq  0x00000012 , 0x000000b5 
+ 00000180  0x0000011e branch  0x00004c2b 
+ 00000181  0x00000134 fetch  0x00000002 , 0x000044f8 
+ 00000182  0x00000135 store  0x00000002 , 0x0000446c 
+ 00000183  0x00000136 fetch  0x00000001 , 0x0000450b 
+ 00000184  0x00000137 copy  0x0000003f , 0x00000039 
+ 00000185  0x00000138 arg  0x0000450c , 0x00000006 
+ 00000186  0x00000139 call  0x00007ecd 
+ 00000187  0x0000013a branch  0x00004f81 
+ 00000188  0x0000013e copy  0x00000013 , 0x0000003f 
+ 00000189  0x00000140 beq  0x0000002d , 0x00007475 
+ 00000190  0x00000141 beq  0x00000010 , 0x0000747a 
+ 00000191  0x00000142 beq  0x00000014 , 0x00007334 
+ 00000192  0x00000143 beq  0x00000015 , 0x000000ec 
+ 00000193  0x00000144 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00000194  0x00000145 and_into  0x000000f0 , 0x0000003f 
+ 00000195  0x00000146 beq  0x00000050 , 0x000072fd 
+ 00000196  0x00000147 rtn 
+ 00000197  0x0000014a fetch  0x00000002 , 0x00004bdf 
+ 00000198  0x0000014b store  0x00000002 , 0x0000474a 
+ 00000199  0x0000014c setarg  0x0000477f 
+ 00000200  0x0000014d call  0x0000738e 
+ 00000201  0x0000014e jam  0x00000001 , 0x00004b51 
+ 00000202  0x00000150 jam  0x00000001 , 0x0000475b 
+ 00000203  0x00000151 jam  0x00000021 , 0x00004b52 
+ 00000204  0x00000152 call  0x00004bc2 
+ 00000205  0x00000153 rtn 
+ 00000206  0x00000156 fetch  0x00000001 , 0x00000005 
+ 00000207  0x00000157 increase  0x00000001 , 0x0000003f 
+ 00000208  0x00000158 store  0x00000001 , 0x00000005 
+ 00000209  0x00000159 call  0x00004b51 
+ 00000210  0x0000015a call  0x000000d5 
+ 00000211  0x0000015b disable  0x00000029 
+ 00000212  0x0000015c rtn 
+ 00000213  0x00000160 fetch  0x00000001 , 0x00004b52 
+ 00000214  0x00000161 beq  0x00000021 , 0x000000da 
+ 00000215  0x00000162 beq  0x00000025 , 0x000000e4 
+ 00000216  0x00000163 beq  0x00000026 , 0x000000eb 
+ 00000217  0x00000164 rtn 
+ 00000218  0x00000167 setarg  0x0000001a 
+ 00000219  0x00000168 store  0x00000002 , 0x000044f8 
+ 00000220  0x00000169 jam  0x00000002 , 0x0000450b 
+ 00000221  0x0000016a setarg  0x00000001 
+ 00000222  0x0000016b store  0x00000002 , 0x0000450c 
+ 00000223  0x0000016c jam  0x00000000 , 0x00004b52 
+ 00000224  0x0000016e jam  0x00000001 , 0x00004b53 
+ 00000225  0x0000016f jam  0x00000012 , 0x000009bd 
+ 00000226  0x00000170 call  0x00004bd6 
+ 00000227  0x00000171 rtn 
+ 00000228  0x00000174 jam  0x00000026 , 0x00004b52 
+ 00000229  0x00000175 jam  0x00000002 , 0x000009bd 
+ 00000230  0x00000176 call  0x00004bd6 
+ 00000231  0x00000177 fetch  0x00000002 , 0x0000470b 
+ 00000232  0x00000178 set1  0x00000009 , 0x0000003f 
+ 00000233  0x00000179 store  0x00000002 , 0x0000470b 
+ 00000234  0x0000017a rtn 
+ 00000235  0x0000017d rtn 
+ 00000236  0x00000182 setarg  0x00000000 
+ 00000237  0x00000183 store  0x00000006 , 0x0000452c 
+ 00000238  0x00000184 jam  0x00000002 , 0x00004bf8 
+ 00000239  0x00000185 jam  0x00000000 , 0x00004b51 
+ 00000240  0x00000186 jam  0x00000000 , 0x00004212 
+ 00000241  0x00000187 jam  0x00000000 , 0x000048c7 
+ 00000242  0x00000188 jam  0x00000000 , 0x000044b2 
+ 00000243  0x00000189 jam  0x00000000 , 0x000048c6 
+ 00000244  0x0000018a jam  0x00000000 , 0x000048c0 
+ 00000245  0x0000018b call  0x00000106 
+ 00000246  0x0000018c fetch  0x00000002 , 0x00004748 
+ 00000247  0x0000018d store  0x00000002 , 0x0000474a 
+ 00000248  0x0000018e fetch  0x00000001 , 0x00004743 
+ 00000249  0x0000018f bne  0x00000000 , 0x00007369 
+ 00000250  0x00000190 call  0x0000006c 
+ 00000251  0x00000191 jam  0x00000000 , 0x00004746 
+ 00000252  0x00000192 setarg  0x00000000 
+ 00000253  0x00000193 store  0x00000002 , 0x00000286 
+ 00000254  0x00000194 setarg  0x00000000 
+ 00000255  0x00000195 store  0x00000002 , 0x00000288 
+ 00000256  0x00000196 branch  0x00007363 
+ 00000257  0x00000199 jam  0x00000000 , 0x00004b60 
+ 00000258  0x0000019a setarg  0x00004b65 
+ 00000259  0x0000019b store  0x00000002 , 0x00004b61 
+ 00000260  0x0000019c store  0x00000002 , 0x00004b63 
+ 00000261  0x0000019d rtn 
+ 00000262  0x000001a1 branch  0x00000101 
+ 00000263  0x000001a6 disable  0x00000028 
+ 00000264  0x000001a7 fetch  0x00000001 , 0x00004b60 
+ 00000265  0x000001a8 compare  0x00000006 , 0x0000003f , 0x000000ff 
+ 00000266  0x000001a9 rtn  0x00000001 
+ 00000267  0x000001ab enable  0x00000028 
+ 00000268  0x000001ac fetch  0x00000002 , 0x00004b63 
+ 00000269  0x000001ad copy  0x0000003f , 0x00000005 
+ 00000270  0x000001ae copy  0x00000002 , 0x00000006 
+ 00000271  0x000001af call  0x00007ecd 
+ 00000272  0x000001b1 fetch  0x00000001 , 0x00004b60 
+ 00000273  0x000001b2 increase  0x00000001 , 0x0000003f 
+ 00000274  0x000001b3 store  0x00000001 , 0x00004b60 
+ 00000275  0x000001b5 setarg  0x00004b63 
+ 00000276  0x000001b6 branch  0x00000115 
+ 00000277  0x000001ba copy  0x0000003f , 0x00000011 
+ 00000278  0x000001bb arg  0x00004bdd , 0x00000002 
+ 00000279  0x000001bc ifetch  0x00000002 , 0x00000011 
+ 00000280  0x000001bd increase  0x00000014 , 0x0000003f 
+ 00000281  0x000001be isub  0x00000002 , 0x0000003e 
+ 00000282  0x000001bf nbranch  0x0000011c , 0x00000002 
+ 00000283  0x000001c0 setarg  0x00004b65 
+ 00000284  0x000001c2 istore  0x00000002 , 0x00000011 
+ 00000285  0x000001c3 rtn 
+ 00000286  0x000001c8 disable  0x00000028 
+ 00000287  0x000001c9 fetch  0x00000001 , 0x00004b60 
+ 00000288  0x000001ca rtn  0x00000034 
+ 00000289  0x000001cb enable  0x00000028 
+ 00000290  0x000001cc fetch  0x00000001 , 0x00004b60 
+ 00000291  0x000001cd increase  0xffffffff , 0x0000003f 
+ 00000292  0x000001ce store  0x00000001 , 0x00004b60 
+ 00000293  0x000001d0 fetch  0x00000002 , 0x00004b61 
+ 00000294  0x000001d1 store  0x00000002 , 0x00004bdd 
+ 00000295  0x000001d3 setarg  0x00004b61 
+ 00000296  0x000001d4 call  0x00000115 
+ 00000297  0x000001d5 fetch  0x00000002 , 0x00004bdd 
+ 00000298  0x000001d6 rtn 
+ 00000299  0x000001d9 disable  0x00000028 
+ 00000300  0x000001da fetch  0x00000001 , 0x00004b60 
+ 00000301  0x000001db rtn  0x00000034 
+ 00000302  0x000001dc enable  0x00000028 
+ 00000303  0x000001dd fetch  0x00000002 , 0x00004b61 
+ 00000304  0x000001de rtn 
+ 00000305  0x000001e1 fetch  0x00000001 , 0x000047a9 
+ 00000306  0x000001e2 rtn  0x00000034 
+ 00000307  0x000001e3 call  0x000073af 
+ 00000308  0x000001e4 nbranch  0x00007d28 , 0x00000028 
+ 00000309  0x000001e5 call  0x00007d26 
+ 00000310  0x000001e6 disable  0x00000028 
+ 00000311  0x000001e7 fetch  0x00000002 , 0x00004bdf 
+ 00000312  0x000001e8 store  0x00000002 , 0x0000474a 
+ 00000313  0x000001eb fetch  0x00000001 , 0x00004b51 
+ 00000314  0x000001ec beq  0x00000000 , 0x0000006c 
+ 00000315  0x000001ed call  0x000074de 
+ 00000316  0x000001ee branch  0x00000155 , 0x00000002 
+ 00000317  0x000001ef fetch  0x00000002 , 0x000047b6 
+ 00000318  0x000001f0 store  0x00000002 , 0x000047c0 
+ 00000319  0x000001f1 jam  0x00000000 , 0x000047c2 
+ 00000320  0x000001f2 force  0x00000000 , 0x00000007 
+ 00000321  0x000001f5 fetch  0x00000002 , 0x000047b8 
+ 00000322  0x000001f6 rshift  0x0000003f , 0x00000002 
+ 00000323  0x000001f7 storet  0x00000002 , 0x000047b8 
+ 00000324  0x000001f8 and  0x0000003f , 0x00000001 , 0x0000003f 
+ 00000325  0x000001f9 fetcht  0x00000002 , 0x000047c0 
+ 00000326  0x000001fa and  0x00000002 , 0x00000001 , 0x00000011 
+ 00000327  0x000001fb rshift  0x00000002 , 0x00000002 
+ 00000328  0x000001fc storet  0x00000002 , 0x000047c0 
+ 00000329  0x000001fd ixor  0x00000011 , 0x0000003e 
+ 00000330  0x000001fe ncall  0x00000159 , 0x00000005 
+ 00000331  0x000001ff fetch  0x00000001 , 0x000047a9 
+ 00000332  0x00000200 fetcht  0x00000001 , 0x000047c2 
+ 00000333  0x00000201 increase  0x00000001 , 0x00000002 
+ 00000334  0x00000202 storet  0x00000001 , 0x000047c2 
+ 00000335  0x00000203 copy  0x00000002 , 0x00000007 
+ 00000336  0x00000204 ixor  0x00000007 , 0x0000003e 
+ 00000337  0x00000206 nbranch  0x00000141 , 0x00000005 
+ 00000338  0x00000207 fetch  0x00000002 , 0x000047b6 
+ 00000339  0x00000208 store  0x00000002 , 0x000047b8 
+ 00000340  0x00000209 rtn 
+ 00000341  0x0000020b setarg  0x00000000 
+ 00000342  0x0000020c store  0x00000002 , 0x000047b6 
+ 00000343  0x0000020d store  0x00000002 , 0x000047b8 
+ 00000344  0x0000020e rtn 
+ 00000345  0x00000214 deposit  0x00000011 
+ 00000346  0x00000215 branch  0x00000177 , 0x00000034 
+ 00000347  0x00000216 copy  0x00000007 , 0x0000003f 
+ 00000348  0x00000217 beq  0x00000000 , 0x0000017d 
+ 00000349  0x00000218 beq  0x00000001 , 0x00000184 
+ 00000350  0x00000219 beq  0x00000002 , 0x0000018b 
+ 00000351  0x0000021a beq  0x00000003 , 0x00000192 
+ 00000352  0x0000021c ifetch  0x00000001 , 0x00000002 
+ 00000353  0x0000021d rtn  0x00000034 
+ 00000354  0x0000021e store  0x00000001 , 0x000047ba 
+ 00000355  0x0000021f increase  0x00000001 , 0x00000002 
+ 00000356  0x00000220 storet  0x00000002 , 0x000047bb 
+ 00000357  0x00000222 fetch  0x00000002 , 0x000047bb 
+ 00000358  0x00000223 ifetcht  0x00000001 , 0x0000003f 
+ 00000359  0x00000224 copy  0x00000002 , 0x00000039 
+ 00000360  0x00000225 iadd  0x00000002 , 0x00000002 
+ 00000361  0x00000226 storet  0x00000002 , 0x000047bb 
+ 00000362  0x00000227 copy  0x0000003f , 0x00000002 
+ 00000363  0x00000228 call  0x00000107 
+ 00000364  0x00000229 fetch  0x00000001 , 0x000047ba 
+ 00000365  0x0000022a increase  0xffffffff , 0x0000003f 
+ 00000366  0x0000022b store  0x00000001 , 0x000047ba 
+ 00000367  0x0000022c nbranch  0x00000165 , 0x00000005 
+ 00000368  0x0000022d branch  0x00000171 
+ 00000369  0x00000230 call  0x0000012b 
+ 00000370  0x00000231 nrtn  0x00000028 
+ 00000371  0x00000232 disable  0x00000028 
+ 00000372  0x00000234 jam  0x00000012 , 0x000009bd 
+ 00000373  0x00000235 call  0x00004bd6 
+ 00000374  0x00000236 branch  0x0000735f 
+ 00000375  0x0000023a copy  0x00000007 , 0x0000003f 
+ 00000376  0x0000023b beq  0x00000000 , 0x00000199 
+ 00000377  0x0000023c beq  0x00000001 , 0x000001a0 
+ 00000378  0x0000023d beq  0x00000002 , 0x000001a7 
+ 00000379  0x0000023e beq  0x00000003 , 0x000001ae 
+ 00000380  0x0000023f branch  0x00000160 
+ 00000381  0x00000242 jam  0x00000001 , 0x00004b5e 
+ 00000382  0x00000243 arg  0x00004b58 , 0x00000006 
+ 00000383  0x00000244 arg  0x00000007 , 0x00000039 
+ 00000384  0x00000245 call  0x000001b5 
+ 00000385  0x00000246 store  0x00000001 , 0x00004b5f 
+ 00000386  0x00000247 arg  0x00004b54 , 0x00000002 
+ 00000387  0x00000248 branch  0x00000160 
+ 00000388  0x0000024a jam  0x00000002 , 0x00004b5e 
+ 00000389  0x0000024b arg  0x00004b58 , 0x00000006 
+ 00000390  0x0000024c arg  0x00000007 , 0x00000039 
+ 00000391  0x0000024d call  0x000001b5 
+ 00000392  0x0000024e store  0x00000001 , 0x00004b5f 
+ 00000393  0x0000024f arg  0x00004b54 , 0x00000002 
+ 00000394  0x00000250 branch  0x00000160 
+ 00000395  0x00000252 jam  0x00000001 , 0x00004b5d 
+ 00000396  0x00000253 arg  0x00004b58 , 0x00000006 
+ 00000397  0x00000254 arg  0x00000007 , 0x00000039 
+ 00000398  0x00000255 call  0x000001b5 
+ 00000399  0x00000256 store  0x00000001 , 0x00004b5f 
+ 00000400  0x00000257 arg  0x00004b54 , 0x00000002 
+ 00000401  0x00000258 branch  0x00000160 
+ 00000402  0x0000025a jam  0x00000002 , 0x00004b5d 
+ 00000403  0x0000025b arg  0x00004b58 , 0x00000006 
+ 00000404  0x0000025c arg  0x00000007 , 0x00000039 
+ 00000405  0x0000025d call  0x000001b5 
+ 00000406  0x0000025e store  0x00000001 , 0x00004b5f 
+ 00000407  0x0000025f arg  0x00004b54 , 0x00000002 
+ 00000408  0x00000260 branch  0x00000160 
+ 00000409  0x00000263 jam  0x00000000 , 0x00004b5e 
+ 00000410  0x00000264 arg  0x00004b58 , 0x00000006 
+ 00000411  0x00000265 arg  0x00000007 , 0x00000039 
+ 00000412  0x00000266 call  0x000001b5 
+ 00000413  0x00000267 store  0x00000001 , 0x00004b5f 
+ 00000414  0x00000268 arg  0x00004b54 , 0x00000002 
+ 00000415  0x00000269 branch  0x00000160 
+ 00000416  0x0000026b jam  0x00000000 , 0x00004b5e 
+ 00000417  0x0000026c arg  0x00004b58 , 0x00000006 
+ 00000418  0x0000026d arg  0x00000007 , 0x00000039 
+ 00000419  0x0000026e call  0x000001b5 
+ 00000420  0x0000026f store  0x00000001 , 0x00004b5f 
+ 00000421  0x00000270 arg  0x00004b54 , 0x00000002 
+ 00000422  0x00000271 branch  0x00000160 
+ 00000423  0x00000273 jam  0x00000000 , 0x00004b5d 
+ 00000424  0x00000274 arg  0x00004b58 , 0x00000006 
+ 00000425  0x00000275 arg  0x00000007 , 0x00000039 
+ 00000426  0x00000276 call  0x000001b5 
+ 00000427  0x00000277 store  0x00000001 , 0x00004b5f 
+ 00000428  0x00000278 arg  0x00004b54 , 0x00000002 
+ 00000429  0x00000279 branch  0x00000160 
+ 00000430  0x0000027b jam  0x00000000 , 0x00004b5d 
+ 00000431  0x0000027c arg  0x00004b58 , 0x00000006 
+ 00000432  0x0000027d arg  0x00000007 , 0x00000039 
+ 00000433  0x0000027e call  0x000001b5 
+ 00000434  0x0000027f store  0x00000001 , 0x00004b5f 
+ 00000435  0x00000280 arg  0x00004b54 , 0x00000002 
+ 00000436  0x00000281 branch  0x00000160 
+ 00000437  0x00000286 arg  0x00000000 , 0x00000011 
+ 00000438  0x00000288 ifetch  0x00000001 , 0x00000006 
+ 00000439  0x00000289 iadd  0x00000011 , 0x00000011 
+ 00000440  0x0000028a loop  0x000001b6 
+ 00000441  0x0000028c and  0x00000011 , 0x000000ff , 0x0000003f 
+ 00000442  0x0000028d rtn 
+ 00000443  0x00000292 call  0x0000731f 
+ 00000444  0x00000296 call  0x00007313 
+ 00000445  0x00000298 branch  0x000072fe 
+ 00000446  0x0000029b fetch  0x00000001 , 0x0000475a 
+ 00000447  0x0000029c rtn  0x00000034 
+ 00000448  0x0000029d increase  0xffffffff , 0x0000003f 
+ 00000449  0x0000029e store  0x00000001 , 0x0000475a 
+ 00000450  0x0000029f nrtn  0x00000034 
+ 00000451  0x000002a0 fetch  0x00000001 , 0x00004756 
+ 00000452  0x000002a1 beq  0x00000001 , 0x00000065 
+ 00000453  0x000002a2 branch  0x0000748a 
+ 00000454  0x000002b1 hjam  0x00000004 , 0x00008081 
+ 00000455  0x000002b2 hfetch  0x00000004 , 0x00008078 
+ 00000456  0x000002b3 set1  0x00000007 , 0x0000003f 
+ 00000457  0x000002b4 hstore  0x00000004 , 0x00008078 
+ 00000458  0x000002b6 hjam  0x00000001 , 0x00008043 
+ 00000459  0x000002b7 setarg  0x00004000 
+ 00000460  0x000002b8 hstore  0x00000002 , 0x00008054 
+ 00000461  0x000002b9 setarg  0x00004030 
+ 00000462  0x000002ba hstore  0x00000002 , 0x00008056 
+ 00000463  0x000002bb setarg  0x00001f00 
+ 00000464  0x000002bc hstore  0x00000002 , 0x0000805a 
+ 00000465  0x000002bd setarg  0x00001f10 
+ 00000466  0x000002be hstore  0x00000002 , 0x0000805c 
+ 00000467  0x000002bf setarg  0x00004000 
+ 00000468  0x000002c0 hstore  0x00000002 , 0x00008058 
+ 00000469  0x000002c1 setarg  0x00001f00 
+ 00000470  0x000002c2 hstore  0x00000002 , 0x0000805e 
+ 00000471  0x000002c3 hstore  0x00000002 , 0x00008060 
+ 00000472  0x000002c5 setarg  0x000001a0 
+ 00000473  0x000002c6 hstore  0x00000002 , 0x00008052 
+ 00000474  0x000002c8 hfetch  0x00000002 , 0x00008050 
+ 00000475  0x000002c9 set0  0x0000000f , 0x0000003f 
+ 00000476  0x000002ca hstore  0x00000002 , 0x00008050 
+ 00000477  0x000002cb hjam  0x00000081 , 0x00008062 
+ 00000478  0x000002cc rtn 
+ 00000479  0x000002cf fetch  0x00000007 , 0x0000030b 
+ 00000480  0x000002d0 store  0x00000007 , 0x00004bea 
+ 00000481  0x000002d2 jam  0x00000002 , 0x00004be7 
+ 00000482  0x000002d3 jam  0x00000029 , 0x00004be8 
+ 00000483  0x000002d4 jam  0x00000008 , 0x00004be9 
+ 00000484  0x000002d6 hfetch  0x00000002 , 0x0000805e 
+ 00000485  0x000002d7 copy  0x0000003f , 0x0000000a 
+ 00000486  0x000002d8 arg  0x0000000b , 0x00000039 
+ 00000487  0x000002d9 arg  0x00004be7 , 0x00000006 
+ 00000488  0x000002da call  0x0000633b 
+ 00000489  0x000002db branch  0x0000631f 
+ 00000490  0x000002de hfetch  0x00000004 , 0x00008078 
+ 00000491  0x000002df hfetcht  0x00000004 , 0x0000807c 
+ 00000492  0x000002e0 ior  0x00000002 , 0x0000003f 
+ 00000493  0x000002e1 invert  0x0000003f , 0x0000003f 
+ 00000494  0x000002e2 iand  0x00000011 , 0x0000003f 
+ 00000495  0x000002e4 hstore  0x00000004 , 0x00008070 
+ 00000496  0x000002e5 rtn 
+ 00000497  0x000002e8 storet  0x00000001 , 0x00000017 
+ 00000498  0x000002e9 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00000499  0x000002ea call  0x00003a13 
+ 00000500  0x000002eb setarg  0x00000500 
+ 00000501  0x000002ec call  0x00003b35 
+ 00000502  0x000002ee hjam  0x00000001 , 0x00008906 
+ 00000503  0x000002ef hjam  0x0000003c , 0x00008900 
+ 00000504  0x000002f0 hjam  0x000000e0 , 0x00008901 
+ 00000505  0x000002f1 hjam  0x00000012 , 0x0000096d 
+ 00000506  0x000002f2 nop  0x0000000a 
+ 00000507  0x000002f3 hjam  0x00000001 , 0x00008902 
+ 00000508  0x000002f4 hjam  0x0000003d , 0x00008902 
+ 00000509  0x000002f5 nop  0x0000000a 
+ 00000510  0x000002f6 hjam  0x000000b7 , 0x00008903 
+ 00000511  0x000002f7 nop  0x0000000a 
+ 00000512  0x000002f8 hjam  0x0000007f , 0x00008902 
+ 00000513  0x000002f9 fetch  0x00000001 , 0x00004b51 
+ 00000514  0x000002fb beq  0x00000000 , 0x00000211 
+ 00000515  0x000002fc fetch  0x00000001 , 0x00004280 
+ 00000516  0x000002fd bbit1  0x00000000 , 0x00000209 
+ 00000517  0x000002fe bbit1  0x00000001 , 0x0000020d 
+ 00000518  0x000002ff bbit1  0x00000002 , 0x00000211 
+ 00000519  0x00000300 bbit1  0x00000003 , 0x00000215 
+ 00000520  0x00000301 bbit1  0x00000004 , 0x00000219 
+ 00000521  0x00000303 hjam  0x000000f0 , 0x00000956 
+ 00000522  0x00000304 call  0x000039f5 
+ 00000523  0x00000305 hjam  0x000000d8 , 0x00000955 
+ 00000524  0x00000306 rtn 
+ 00000525  0x00000308 hjam  0x000000df , 0x00000956 
+ 00000526  0x00000309 call  0x000039f5 
+ 00000527  0x0000030a hjam  0x000000df , 0x00000955 
+ 00000528  0x0000030b rtn 
+ 00000529  0x0000030d hjam  0x000000ff , 0x00000956 
+ 00000530  0x0000030e call  0x000039f5 
+ 00000531  0x0000030f hjam  0x000000df , 0x00000955 
+ 00000532  0x00000310 rtn 
+ 00000533  0x00000312 hjam  0x000000ce , 0x00000956 
+ 00000534  0x00000313 call  0x000039f5 
+ 00000535  0x00000314 hjam  0x000000d8 , 0x00000955 
+ 00000536  0x00000315 rtn 
+ 00000537  0x00000317 hjam  0x000000cb , 0x00000956 
+ 00000538  0x00000318 call  0x000039f5 
+ 00000539  0x00000319 hjam  0x000000d8 , 0x00000955 
+ 00000540  0x0000031a rtn 
+ 00000541  0x0000031c hjam  0x000000c0 , 0x00000956 
+ 00000542  0x0000031d hjam  0x000000d8 , 0x00000955 
+ 00000543  0x0000031e rtn 
+ 00000544  0x00000321 call  0x00004985 
+ 00000545  0x00000322 call  0x00000226 
+ 00000546  0x00000323 call  0x00004a6d 
+ 00000547  0x00000324 fetch  0x00000001 , 0x00004132 
+ 00000548  0x00000325 beq  0x0000000a , 0x00005d8e 
+ 00000549  0x00000326 rtn 
+ 00000550  0x00000328 branch  0x000001f6 , 0x0000002d 
+ 00000551  0x00000329 branch  0x00004994 
+ 00000552  0x0000032c branch  0x00000239 , 0x00000021 
+ 00000553  0x0000032d hjam  0x000000d4 , 0x00000955 
+ 00000554  0x0000032e nop  0x00000004 
+ 00000555  0x0000032f hjam  0x000000d2 , 0x00000955 
+ 00000556  0x00000330 nop  0x00000004 
+ 00000557  0x00000331 hjam  0x000000d1 , 0x00000955 
+ 00000558  0x00000332 nop  0x00000004 
+ 00000559  0x00000333 fetch  0x00000001 , 0x00004b51 
+ 00000560  0x00000334 beq  0x00000000 , 0x00000247 
+ 00000561  0x00000335 fetch  0x00000001 , 0x00004280 
+ 00000562  0x00000336 bbit1  0x00000000 , 0x00000237 
+ 00000563  0x00000337 bbit1  0x00000001 , 0x00000244 
+ 00000564  0x00000338 bbit1  0x00000002 , 0x00000237 
+ 00000565  0x00000339 bbit1  0x00000003 , 0x00000244 
+ 00000566  0x0000033a bbit1  0x00000004 , 0x00000244 
+ 00000567  0x0000033d hjam  0x000000d0 , 0x00000955 
+ 00000568  0x0000033e hjam  0x000000e0 , 0x00000956 
+ 00000569  0x00000340 force  0x00000000 , 0x00000015 
+ 00000570  0x00000341 disable  0x00000021 
+ 00000571  0x00000342 disable  0x00000020 
+ 00000572  0x00000343 pulse  0x0000001e 
+ 00000573  0x00000344 hjam  0x00000000 , 0x00008902 
+ 00000574  0x00000345 hjam  0x00000000 , 0x00008901 
+ 00000575  0x00000346 hjam  0x00000000 , 0x00008900 
+ 00000576  0x00000347 hjam  0x00000000 , 0x00008903 
+ 00000577  0x00000348 hjam  0x00000070 , 0x00008904 
+ 00000578  0x00000349 hjam  0x00000000 , 0x00008906 
+ 00000579  0x0000034a rtn 
+ 00000580  0x0000034f hjam  0x000000d0 , 0x00000955 
+ 00000581  0x00000350 hjam  0x000000c0 , 0x00000956 
+ 00000582  0x00000351 branch  0x00000239 
+ 00000583  0x00000353 hjam  0x000000d0 , 0x00000955 
+ 00000584  0x00000354 hjam  0x000000c0 , 0x00000956 
+ 00000585  0x00000355 rtn 
+ 00000586  0x00000359 fetch  0x00000001 , 0x00004218 
+ 00000587  0x0000035a nbranch  0x00000250 , 0x00000034 
+ 00000588  0x0000035b call  0x00003cd2 
+ 00000589  0x0000035c nop  0x00007530 
+ 00000590  0x0000035d nop  0x00007530 
+ 00000591  0x0000035e nop  0x00007530 
+ 00000592  0x00000360 call  0x00003a5f 
+ 00000593  0x00000361 hjam  0x00000005 , 0x00008042 
+ 00000594  0x00000362 nop  0x00000001 
+ 00000595  0x00000363 hjam  0x00000004 , 0x00008042 
+ 00000596  0x00000364 hfetch  0x00000001 , 0x0000896b 
+ 00000597  0x00000365 and_into  0x000000cf , 0x0000003f 
+ 00000598  0x00000366 hstore  0x00000001 , 0x0000896b 
+ 00000599  0x00000367 or_into  0x00000030 , 0x0000003f 
+ 00000600  0x00000368 hstore  0x00000001 , 0x0000896b 
+ 00000601  0x00000369 rtn 
+ 00012288  0x00000373 call  0x00003bab 
+ 00012289  0x00000377 hjam  0x00000008 , 0x00008006 
+ 00012290  0x00000378 set0  0x00000025 , 0x00000000 
+ 00012291  0x00000379 bpatch  0x00000000 , 0x00004000 
+ 00012292  0x0000037a hfetch  0x00000001 , 0x0000813b 
+ 00012293  0x0000037b store  0x00000001 , 0x000042b8 
+ 00012294  0x0000037c call  0x000060e3 
+ 00012295  0x0000037d clear_stack 
+ 00012296  0x0000037e ncall  0x00007f6b , 0x0000002b 
+ 00012297  0x0000037f call  0x000039fc 
+ 00012298  0x00000380 call  0x0000621d 
+ 00012299  0x00000381 call  0x00003b3c 
+ 00012300  0x00000382 call  0x000042ea 
+ 00012301  0x00000383 set0  0x00000025 , 0x00000000 
+ 00012302  0x00000384 bpatch  0x00000001 , 0x00004000 
+ 00012303  0x00000385 call  0x00006607 
+ 00012304  0x00000386 call  0x0000530c 
+ 00012305  0x00000387 call  0x00007cef 
+ 00012306  0x00000388 call  0x00003d4b 
+ 00012307  0x00000389 ncall  0x00006571 , 0x0000002b 
+ 00012308  0x0000038a set0  0x00000025 , 0x00000000 
+ 00012309  0x0000038b bpatch  0x00000002 , 0x00004000 
+ 00012310  0x0000038c call  0x00003d55 , 0x0000002b 
+ 00012311  0x0000038d call  0x000075e0 
+ 00012312  0x0000038e call  0x00003c29 , 0x0000002b 
+ 00012313  0x00000390 set0  0x00000025 , 0x00000000 
+ 00012314  0x00000391 bpatch  0x00000003 , 0x00004000 
+ 00012315  0x00000392 call  0x000076f7 
+ 00012316  0x00000393 call  0x00007acf 
+ 00012317  0x00000394 call  0x000075e3 
+ 00012318  0x00000395 call  0x00004911 
+ 00012319  0x00000396 set0  0x00000025 , 0x00000000 
+ 00012320  0x00000397 bpatch  0x00000004 , 0x00004000 
+ 00012321  0x00000398 call  0x00003043 
+ 00012322  0x00000399 call  0x00003d60 
+ 00012323  0x0000039a call  0x0000309e 
+ 00012324  0x0000039b call  0x0000333e 
+ 00012325  0x0000039c call  0x000033b3 
+ 00012326  0x0000039d call  0x00003029 
+ 00012327  0x0000039e call  0x00003c53 
+ 00012328  0x0000039f branch  0x00003019 
+ 00012329  0x000003a2 call  0x0000302e 
+ 00012330  0x000003a3 rtnmark0  0x00000009 
+ 00012331  0x000003a4 set0  0x00000009 , 0x00000000 
+ 00012332  0x000003a5 call  0x00003260 
+ 00012333  0x000003a6 branch  0x0000497d 
+ 00012334  0x000003a9 set0  0x00000025 , 0x00000000 
+ 00012335  0x000003aa bpatch  0x00000005 , 0x00004000 
+ 00012336  0x000003ab call  0x0000329f 
+ 00012337  0x000003ac nbranch  0x00003038 , 0x00000005 
+ 00012338  0x000003ad call  0x00003246 
+ 00012339  0x000003ae add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012340  0x000003af ifetch  0x00000001 , 0x00000006 
+ 00012341  0x000003b0 bbit1  0x00000000 , 0x00004915 
+ 00012342  0x000003b1 bbit1  0x00000001 , 0x00003188 
+ 00012343  0x000003b2 branch  0x0000341f 
+ 00012344  0x000003b4 set0  0x00000025 , 0x00000000 
+ 00012345  0x000003b5 bpatch  0x00000006 , 0x00004000 
+ 00012346  0x000003b6 call  0x00003269 
+ 00012347  0x000003b7 copy  0x00000039 , 0x0000003e 
+ 00012348  0x000003b8 rtn  0x00000005 
+ 00012349  0x000003b9 call  0x00003246 
+ 00012350  0x000003ba fetch  0x00000001 , 0x00000030 
+ 00012351  0x000003bb bbit1  0x00000003 , 0x000030e8 
+ 00012352  0x000003bc fetch  0x00000001 , 0x00000031 
+ 00012353  0x000003bd bbit1  0x00000001 , 0x00003188 
+ 00012354  0x000003be branch  0x0000341f 
+ 00012355  0x000003c7 fetch  0x00000001 , 0x00004271 
+ 00012356  0x000003c8 rtn  0x00000034 
+ 00012357  0x000003c9 beq  0x00000001 , 0x00003053 
+ 00012358  0x000003ca beq  0x00000002 , 0x00003058 
+ 00012359  0x000003cb beq  0x00000003 , 0x0000305b 
+ 00012360  0x000003cc beq  0x00000005 , 0x00003060 
+ 00012361  0x000003cd beq  0x0000001b , 0x00003050 
+ 00012362  0x000003ce call  0x00003297 
+ 00012363  0x000003cf rtn  0x00000005 
+ 00012364  0x000003d0 call  0x0000329a 
+ 00012365  0x000003d1 rtn  0x00000005 
+ 00012366  0x000003d3 jam  0x00000000 , 0x00004271 
+ 00012367  0x000003d4 rtn 
+ 00012368  0x000003d7 jam  0x0000001b , 0x000003bf 
+ 00012369  0x000003d8 jam  0x00000000 , 0x00004271 
+ 00012370  0x000003d9 rtn 
+ 00012371  0x000003dc set1  0x0000001c , 0x00000000 
+ 00012372  0x000003dd set0  0x0000001e , 0x00000000 
+ 00012373  0x000003de jam  0x000000ff , 0x0000008e 
+ 00012374  0x000003df jam  0x0000001f , 0x0000008c 
+ 00012375  0x000003e0 branch  0x0000304e 
+ 00012376  0x000003e3 set0  0x0000001c , 0x00000000 
+ 00012377  0x000003e4 force  0x00000000 , 0x0000001b 
+ 00012378  0x000003e5 branch  0x0000304e 
+ 00012379  0x000003e8 call  0x0000329a 
+ 00012380  0x000003e9 rtn  0x00000005 
+ 00012381  0x000003ea force  0x00000001 , 0x00000002 
+ 00012382  0x000003eb jam  0x00000005 , 0x0000016d 
+ 00012383  0x000003ec branch  0x00003068 
+ 00012384  0x000003ef set0  0x00000025 , 0x00000000 
+ 00012385  0x000003f0 bpatch  0x00000007 , 0x00004000 
+ 00012386  0x000003f2 fetch  0x00000006 , 0x00004273 
+ 00012387  0x000003f3 branch  0x0000304e , 0x00000034 
+ 00012388  0x000003f4 jam  0x00000001 , 0x0000470a 
+ 00012389  0x000003f6 jam  0x00000003 , 0x00000055 
+ 00012390  0x000003f7 branch  0x00003067 
+ 00012391  0x000003fa force  0x00000025 , 0x00000002 
+ 00012392  0x000003fc set0  0x00000025 , 0x00000000 
+ 00012393  0x000003fd bpatch  0x00000008 , 0x00004001 
+ 00012394  0x000003fe fetch  0x00000001 , 0x000000f0 
+ 00012395  0x000003ff branch  0x0000306f , 0x00000034 
+ 00012396  0x00000400 lshift3  0x0000003f , 0x0000003f 
+ 00012397  0x00000401 lshift4  0x0000003f , 0x0000003f 
+ 00012398  0x00000402 increase  0xffffffff , 0x0000003f 
+ 00012399  0x00000404 store  0x00000001 , 0x00004146 
+ 00012400  0x00000405 store  0x00000001 , 0x000000ef 
+ 00012401  0x00000406 jam  0x0000001f , 0x0000008d 
+ 00012402  0x00000407 set0  0x0000000c , 0x00000000 
+ 00012403  0x00000408 call  0x0000327a 
+ 00012404  0x00000409 nbranch  0x00003091 , 0x00000005 
+ 00012405  0x0000040a call  0x00003b11 
+ 00012406  0x0000040b store  0x00000001 , 0x00000077 
+ 00012407  0x0000040c storet  0x00000001 , 0x0000007c 
+ 00012408  0x0000040d fetch  0x00000006 , 0x00004273 
+ 00012409  0x0000040e store  0x00000006 , 0x00000040 
+ 00012410  0x0000040f set0  0x00000025 , 0x00000000 
+ 00012411  0x00000410 bpatch  0x00000009 , 0x00004001 
+ 00012412  0x00000411 call  0x00007ee2 
+ 00012413  0x00000412 force  0x00000000 , 0x0000003f 
+ 00012414  0x00000413 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012415  0x00000414 nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00012416  0x00000415 set1  0x00000003 , 0x0000003f 
+ 00012417  0x00000416 store  0x00000001 , 0x00000030 
+ 00012418  0x00000417 jam  0x00000003 , 0x000009bd 
+ 00012419  0x00000418 call  0x00007d86 
+ 00012420  0x00000419 force  0x00000000 , 0x0000003f 
+ 00012421  0x0000041a setflag  0x00000001 , 0x00000004 , 0x0000003f 
+ 00012422  0x0000041b store  0x00000001 , 0x0000004c 
+ 00012423  0x0000041c setarg  0x00000000 
+ 00012424  0x0000041d set1  0x00000001 , 0x0000003f 
+ 00012425  0x0000041e store  0x00000001 , 0x00000031 
+ 00012426  0x0000041f enable  0x00000029 
+ 00012427  0x00000420 call  0x00003260 
+ 00012428  0x00000421 disable  0x00000029 
+ 00012429  0x00000422 force  0x00000004 , 0x00000007 
+ 00012430  0x00000423 fetch  0x00000002 , 0x00004159 
+ 00012431  0x00000424 call  0x00007ed4 
+ 00012432  0x00000425 branch  0x0000304e 
+ 00012433  0x00000427 set0  0x00000025 , 0x00000000 
+ 00012434  0x00000428 bpatch  0x0000000a , 0x00004001 
+ 00012435  0x00000429 fetch  0x00000006 , 0x00004273 
+ 00012436  0x0000042a store  0x00000006 , 0x00000040 
+ 00012437  0x0000042b compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012438  0x0000042c branch  0x00003098 , 0x00000001 
+ 00012439  0x0000042d branch  0x0000304e 
+ 00012440  0x0000042f arg  0x00000100 , 0x00000005 
+ 00012441  0x00000430 arg  0x00000008 , 0x00000039 
+ 00012442  0x00000431 call  0x00007e91 
+ 00012443  0x00000432 jam  0x00000004 , 0x000009bd 
+ 00012444  0x00000433 call  0x00007d86 
+ 00012445  0x00000434 branch  0x0000304e 
+ 00012446  0x0000043c rtnmark0  0x0000001c 
+ 00012447  0x0000043d force  0x00000002 , 0x00000007 
+ 00012448  0x0000043e call  0x00007ee2 
+ 00012449  0x0000043f nsetflag  0x00000034 , 0x0000001c , 0x00000000 
+ 00012450  0x00000440 nbranch  0x000030a4 , 0x00000034 
+ 00012451  0x00000441 rtn 
+ 00012452  0x00000446 set0  0x00000025 , 0x00000000 
+ 00012453  0x00000447 bpatch  0x0000000b , 0x00004001 
+ 00012454  0x00000448 fetcht  0x00000002 , 0x0000415b 
+ 00012455  0x00000449 force  0x00000004 , 0x00000007 
+ 00012456  0x0000044a call  0x0000379f 
+ 00012457  0x0000044b rtn  0x00000028 
+ 00012458  0x0000044c call  0x00003937 
+ 00012459  0x0000044d force  0x00000000 , 0x00000024 
+ 00012460  0x0000044f rtn  0x00000003 
+ 00012461  0x00000450 set0  0x0000000b , 0x00000000 
+ 00012462  0x00000451 set0  0x00000000 , 0x00000000 
+ 00012463  0x00000453 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012464  0x00000454 isolate1  0x0000001e , 0x00000000 
+ 00012465  0x00000455 setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012466  0x00000456 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012467  0x00000457 nbranch  0x000030d0 , 0x00000001 
+ 00012468  0x0000045a set0  0x00000025 , 0x00000000 
+ 00012469  0x0000045b bpatch  0x0000000c , 0x00004001 
+ 00012470  0x0000045c fetch  0x00000001 , 0x00000012 
+ 00012471  0x0000045d increase  0x00000001 , 0x0000003f 
+ 00012472  0x0000045e store  0x00000001 , 0x00000012 
+ 00012473  0x0000045f call  0x0000396e 
+ 00012474  0x00000460 call  0x00003967 
+ 00012475  0x00000461 call  0x0000398b 
+ 00012476  0x00000462 call  0x00003aee 
+ 00012477  0x00000463 call  0x00003af4 
+ 00012478  0x00000464 call  0x00003b05 
+ 00012479  0x00000465 call  0x000036c6 
+ 00012480  0x00000466 call  0x000030c2 
+ 00012481  0x00000467 branch  0x000030ac 
+ 00012482  0x0000046a set0  0x00000025 , 0x00000000 
+ 00012483  0x0000046b bpatch  0x0000000d , 0x00004001 
+ 00012484  0x0000046c fetch  0x00000001 , 0x0000008c 
+ 00012485  0x0000046d increase  0xffffffff , 0x0000003f 
+ 00012486  0x0000046e store  0x00000001 , 0x0000008c 
+ 00012487  0x0000046f rtn  0x00000002 
+ 00012488  0x00000470 jam  0x0000001f , 0x0000008c 
+ 00012489  0x00000471 fetch  0x00000001 , 0x0000008e 
+ 00012490  0x00000472 increase  0xffffffff , 0x0000003f 
+ 00012491  0x00000473 store  0x00000001 , 0x0000008e 
+ 00012492  0x00000474 rtn  0x00000002 
+ 00012493  0x00000475 setflip  0x0000001e , 0x00000000 
+ 00012494  0x00000476 jam  0x000000ff , 0x0000008e 
+ 00012495  0x00000477 rtn 
+ 00012496  0x0000047a set0  0x00000025 , 0x00000000 
+ 00012497  0x0000047b bpatch  0x0000000e , 0x00004001 
+ 00012498  0x0000047c call  0x0000396e 
+ 00012499  0x0000047d call  0x00003960 
+ 00012500  0x0000047e call  0x0000398b 
+ 00012501  0x0000047f call  0x00003afa 
+ 00012502  0x00000480 call  0x00003a7f 
+ 00012503  0x00000481 call  0x00003aa3 
+ 00012504  0x00000482 branch  0x000030db , 0x00000018 
+ 00012505  0x00000483 call  0x000030c2 
+ 00012506  0x00000484 branch  0x000030af 
+ 00012507  0x00000486 set0  0x00000025 , 0x00000000 
+ 00012508  0x00000487 bpatch  0x0000000f , 0x00004001 
+ 00012509  0x00000488 call  0x00003a50 
+ 00012510  0x00000489 call  0x00003b0d 
+ 00012511  0x0000048a call  0x00003584 
+ 00012512  0x0000048b set0  0x00000001 , 0x00000000 
+ 00012513  0x0000048c rtnmark0  0x0000000b 
+ 00012514  0x0000048e set0  0x00000025 , 0x00000000 
+ 00012515  0x0000048f bpatch  0x00000010 , 0x00004002 
+ 00012516  0x00000491 fetch  0x00000001 , 0x00000013 
+ 00012517  0x00000492 increase  0x00000001 , 0x0000003f 
+ 00012518  0x00000493 store  0x00000001 , 0x00000013 
+ 00012519  0x00000494 rtn 
+ 00012520  0x0000049d set0  0x00000025 , 0x00000000 
+ 00012521  0x0000049e bpatch  0x00000011 , 0x00004002 
+ 00012522  0x0000049f enable  0x00000029 
+ 00012523  0x000004a0 enable  0x00000030 
+ 00012524  0x000004a1 fetch  0x00000002 , 0x00004155 
+ 00012525  0x000004a2 branch  0x000030f1 , 0x00000034 
+ 00012526  0x000004a3 force  0x0000000d , 0x00000007 
+ 00012527  0x000004a4 call  0x00007ee2 
+ 00012528  0x000004a5 nrtn  0x00000034 
+ 00012529  0x000004a7 set0  0x00000025 , 0x00000000 
+ 00012530  0x000004a8 bpatch  0x00000012 , 0x00004002 
+ 00012531  0x000004a9 fetcht  0x00000002 , 0x00004157 
+ 00012532  0x000004aa force  0x00000028 , 0x00000007 
+ 00012533  0x000004ab call  0x0000379f 
+ 00012534  0x000004ac branch  0x0000312f , 0x00000028 
+ 00012535  0x000004ad force  0x00000004 , 0x00000007 
+ 00012536  0x000004ae call  0x00007ee2 
+ 00012537  0x000004af nbranch  0x00003108 , 0x00000034 
+ 00012538  0x000004b0 fetch  0x00000001 , 0x0000004c 
+ 00012539  0x000004b1 bbit1  0x00000004 , 0x000030fd 
+ 00012540  0x000004b2 branch  0x00003100 
+ 00012541  0x000004b4 arg  0x00000100 , 0x00000005 
+ 00012542  0x000004b5 arg  0x00000008 , 0x00000039 
+ 00012543  0x000004b6 call  0x00007e91 
+ 00012544  0x000004b8 set0  0x00000025 , 0x00000000 
+ 00012545  0x000004b9 bpatch  0x00000013 , 0x00004002 
+ 00012546  0x000004ba jam  0x00000000 , 0x00000030 
+ 00012547  0x000004bb call  0x0000530d 
+ 00012548  0x000004bc jam  0x00000000 , 0x0000470a 
+ 00012549  0x000004bd jam  0x00000013 , 0x000009bd 
+ 00012550  0x000004be call  0x00007d86 
+ 00012551  0x000004bf branch  0x0000312f 
+ 00012552  0x000004c2 set0  0x00000025 , 0x00000000 
+ 00012553  0x000004c3 bpatch  0x00000014 , 0x00004002 
+ 00012554  0x000004c4 force  0x00000000 , 0x0000000b 
+ 00012555  0x000004c5 until  0x00000023 , 0x00000026 
+ 00012556  0x000004c6 fetch  0x00000001 , 0x000000f1 
+ 00012557  0x000004c7 increase  0xffffffff , 0x0000003f 
+ 00012558  0x000004c8 ixor  0x00000022 , 0x0000003f 
+ 00012559  0x000004c9 compare  0x00000000 , 0x0000003f , 0x00000003 
+ 00012560  0x000004ca nbranch  0x00003108 , 0x00000001 
+ 00012561  0x000004cb deposit  0x00000004 
+ 00012562  0x000004cc store  0x00000001 , 0x00000180 
+ 00012563  0x000004cd force  0x00000000 , 0x00000026 
+ 00012564  0x000004ce force  0x00000000 , 0x00000024 
+ 00012565  0x000004d1 set0  0x00000025 , 0x00000000 
+ 00012566  0x000004d2 bpatch  0x00000015 , 0x00004002 
+ 00012567  0x000004d3 branch  0x0000312f , 0x00000003 
+ 00012568  0x000004d4 call  0x00003972 
+ 00012569  0x000004d5 arg  0x00000600 , 0x0000000b 
+ 00012570  0x000004d6 until  0x00000023 , 0x00000026 
+ 00012571  0x000004d8 set0  0x00000025 , 0x00000000 
+ 00012572  0x000004d9 bpatch  0x00000016 , 0x00004002 
+ 00012573  0x000004da fetch  0x00000004 , 0x000000f1 
+ 00012574  0x000004db iforce  0x00000021 
+ 00012575  0x000004dc increase  0x00000001 , 0x0000003f 
+ 00012576  0x000004dd store  0x00000004 , 0x000000f1 
+ 00012577  0x000004de isolate1  0x0000000c , 0x00000000 
+ 00012578  0x000004df setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012579  0x000004e0 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012580  0x000004e1 nbranch  0x00003145 , 0x00000001 
+ 00012581  0x000004e2 fetch  0x00000001 , 0x0000000c 
+ 00012582  0x000004e3 increase  0x00000001 , 0x0000003f 
+ 00012583  0x000004e4 store  0x00000001 , 0x0000000c 
+ 00012584  0x000004e5 call  0x00003967 
+ 00012585  0x000004e6 call  0x00003aee 
+ 00012586  0x000004e7 call  0x00003af4 
+ 00012587  0x000004e8 call  0x00003b05 
+ 00012588  0x000004e9 call  0x000036c6 
+ 00012589  0x000004ea call  0x00003136 
+ 00012590  0x000004eb branch  0x00003115 
+ 00012591  0x000004ed set0  0x00000025 , 0x00000000 
+ 00012592  0x000004ee bpatch  0x00000017 , 0x00004002 
+ 00012593  0x000004ef disable  0x00000029 
+ 00012594  0x000004f0 fetch  0x00000002 , 0x00004155 
+ 00012595  0x000004f1 rtn  0x00000034 
+ 00012596  0x000004f2 force  0x0000000d , 0x00000007 
+ 00012597  0x000004f3 branch  0x00007ed4 
+ 00012598  0x000004f6 set0  0x00000025 , 0x00000000 
+ 00012599  0x000004f7 bpatch  0x00000018 , 0x00004003 
+ 00012600  0x000004f8 fetch  0x00000001 , 0x0000008d 
+ 00012601  0x000004f9 increase  0xffffffff , 0x0000003f 
+ 00012602  0x000004fa store  0x00000001 , 0x0000008d 
+ 00012603  0x000004fb rtn  0x00000002 
+ 00012604  0x000004fc jam  0x0000001f , 0x0000008d 
+ 00012605  0x000004fd fetch  0x00000001 , 0x000000ef 
+ 00012606  0x000004fe increase  0xffffffff , 0x0000003f 
+ 00012607  0x000004ff store  0x00000001 , 0x000000ef 
+ 00012608  0x00000500 rtn  0x00000002 
+ 00012609  0x00000501 setflip  0x0000000c , 0x00000000 
+ 00012610  0x00000502 fetch  0x00000001 , 0x00004146 
+ 00012611  0x00000503 store  0x00000001 , 0x000000ef 
+ 00012612  0x00000504 rtn 
+ 00012613  0x00000507 set0  0x00000025 , 0x00000000 
+ 00012614  0x00000508 bpatch  0x00000019 , 0x00004003 
+ 00012615  0x00000509 call  0x00003960 
+ 00012616  0x0000050a call  0x00003afa 
+ 00012617  0x0000050b call  0x00003a7f 
+ 00012618  0x0000050c call  0x00003aa3 
+ 00012619  0x0000050d branch  0x0000314e , 0x00000018 
+ 00012620  0x0000050e call  0x00003136 
+ 00012621  0x0000050f branch  0x0000311b 
+ 00012622  0x00000511 call  0x000036c6 
+ 00012623  0x00000512 fetch  0x00000001 , 0x0000000d 
+ 00012624  0x00000513 increase  0x00000001 , 0x0000003f 
+ 00012625  0x00000514 store  0x00000001 , 0x0000000d 
+ 00012626  0x00000515 force  0x00000000 , 0x0000001b 
+ 00012627  0x00000516 fetch  0x00000004 , 0x000000f1 
+ 00012628  0x00000518 set0  0x00000025 , 0x00000000 
+ 00012629  0x00000519 bpatch  0x0000001a , 0x00004003 
+ 00012630  0x0000051a call  0x00003aec 
+ 00012631  0x0000051b call  0x00003972 
+ 00012632  0x0000051c increase  0x00000001 , 0x00000026 
+ 00012633  0x0000051e and_into  0x000001fd , 0x00000021 
+ 00012634  0x0000051f and_into  0x000001fc , 0x00000024 
+ 00012635  0x00000520 call  0x00003967 
+ 00012636  0x00000521 call  0x00003aee 
+ 00012637  0x00000522 call  0x00003af4 
+ 00012638  0x00000523 call  0x00003b05 
+ 00012639  0x00000524 deposit  0x00000022 
+ 00012640  0x00000525 store  0x00000004 , 0x00000160 
+ 00012641  0x00000526 force  0x00000000 , 0x00000004 
+ 00012642  0x00000527 force  0x00000002 , 0x00000001 
+ 00012643  0x00000528 call  0x00003b0d 
+ 00012644  0x00000529 call  0x000037ee 
+ 00012645  0x0000052b set0  0x00000025 , 0x00000000 
+ 00012646  0x0000052c bpatch  0x0000001b , 0x00004003 
+ 00012647  0x0000052d call  0x00003aea 
+ 00012648  0x0000052e or_into  0x00000002 , 0x00000021 
+ 00012649  0x0000052f and_into  0x000001fc , 0x00000024 
+ 00012650  0x00000530 call  0x00003960 
+ 00012651  0x00000531 call  0x00003afa 
+ 00012652  0x00000532 call  0x00003a7f 
+ 00012653  0x00000533 call  0x00003aa3 
+ 00012654  0x00000534 call  0x000036c6 , 0x00000018 
+ 00012655  0x00000535 branch  0x00003175 , 0x00000018 
+ 00012656  0x00000536 fetch  0x00000001 , 0x00000010 
+ 00012657  0x00000537 branch  0x00003115 , 0x00000034 
+ 00012658  0x00000538 increase  0xffffffff , 0x0000003f 
+ 00012659  0x00000539 store  0x00000001 , 0x00000010 
+ 00012660  0x0000053a branch  0x00003154 
+ 00012661  0x0000053d set0  0x00000025 , 0x00000000 
+ 00012662  0x0000053e bpatch  0x0000001c , 0x00004003 
+ 00012663  0x0000053f fetch  0x00000001 , 0x0000000e 
+ 00012664  0x00000540 increase  0x00000001 , 0x0000003f 
+ 00012665  0x00000541 store  0x00000001 , 0x0000000e 
+ 00012666  0x00000542 call  0x0000348d 
+ 00012667  0x00000544 call  0x00003337 
+ 00012668  0x00000545 branch  0x00003180 , 0x00000018 
+ 00012669  0x00000546 call  0x000034b0 
+ 00012670  0x00000547 nbranch  0x0000317b , 0x00000034 
+ 00012671  0x00000548 branch  0x00003115 
+ 00012672  0x0000054b set0  0x00000025 , 0x00000000 
+ 00012673  0x0000054c bpatch  0x0000001d , 0x00004003 
+ 00012674  0x0000054d fetch  0x00000001 , 0x00000030 
+ 00012675  0x0000054e set0  0x00000003 , 0x0000003f 
+ 00012676  0x0000054f store  0x00000001 , 0x00000030 
+ 00012677  0x00000550 call  0x00003499 
+ 00012678  0x00000551 disable  0x00000029 
+ 00012679  0x00000552 rtn 
+ 00012680  0x00000556 set0  0x00000025 , 0x00000000 
+ 00012681  0x00000557 bpatch  0x0000001e , 0x00004003 
+ 00012682  0x00000558 enable  0x00000029 
+ 00012683  0x00000559 enable  0x00000030 
+ 00012684  0x0000055a call  0x0000321a 
+ 00012685  0x0000055b rtn  0x00000028 
+ 00012686  0x0000055c call  0x00003d42 
+ 00012687  0x0000055d call  0x00003aec 
+ 00012688  0x0000055e add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012689  0x0000055f call  0x00003979 
+ 00012690  0x00000560 force  0x00000003 , 0x00000024 
+ 00012691  0x00000561 call  0x000068dc 
+ 00012692  0x00000562 call  0x000034e7 
+ 00012693  0x00000563 call  0x00003967 
+ 00012694  0x00000564 call  0x00003aee 
+ 00012695  0x00000565 call  0x00003af4 
+ 00012696  0x00000566 call  0x00003b05 
+ 00012697  0x00000567 call  0x000037ec 
+ 00012698  0x00000569 set0  0x00000025 , 0x00000000 
+ 00012699  0x0000056a bpatch  0x0000001f , 0x00004003 
+ 00012700  0x0000056b call  0x0000531f 
+ 00012701  0x0000056c call  0x00003328 
+ 00012702  0x0000056d nbranch  0x000031a4 , 0x0000002d 
+ 00012703  0x0000056e call  0x00003b2c 
+ 00012704  0x0000056f call  0x000037ac 
+ 00012705  0x00000570 fetch  0x00000001 , 0x0000000f 
+ 00012706  0x00000571 increase  0x00000001 , 0x0000003f 
+ 00012707  0x00000572 store  0x00000001 , 0x0000000f 
+ 00012708  0x00000574 set0  0x00000025 , 0x00000000 
+ 00012709  0x00000575 bpatch  0x00000020 , 0x00004004 
+ 00012710  0x00000576 call  0x000068c0 
+ 00012711  0x00000577 call  0x000031b0 
+ 00012712  0x00000578 nrtn  0x00000029 
+ 00012713  0x00000579 call  0x00003775 
+ 00012714  0x0000057a nbranch  0x000031ad , 0x00000034 
+ 00012715  0x0000057c disable  0x00000029 
+ 00012716  0x0000057d rtn 
+ 00012717  0x00000580 call  0x000034e7 
+ 00012718  0x00000581 call  0x0000331d 
+ 00012719  0x00000582 branch  0x0000319a 
+ 00012720  0x00000586 branch  0x000031b3 , 0x0000002d 
+ 00012721  0x00000587 call  0x00003b22 
+ 00012722  0x00000588 branch  0x000031c1 , 0x00000002 
+ 00012723  0x0000058a call  0x000031cd 
+ 00012724  0x0000058b nbranch  0x000031c1 , 0x00000028 
+ 00012725  0x0000058c fetch  0x00000001 , 0x0000004c 
+ 00012726  0x0000058d rtnbit0  0x00000004 
+ 00012727  0x0000058e rtnbit1  0x00000003 
+ 00012728  0x0000058f fetch  0x00000001 , 0x0000004b 
+ 00012729  0x00000590 rtnbit1  0x00000003 
+ 00012730  0x00000591 call  0x000031d6 
+ 00012731  0x00000592 nrtn  0x00000034 
+ 00012732  0x00000593 fetch  0x00000001 , 0x0000016d 
+ 00012733  0x00000594 increase  0xffffffff , 0x0000003f 
+ 00012734  0x00000595 store  0x00000001 , 0x0000016d 
+ 00012735  0x00000596 nrtn  0x00000034 
+ 00012736  0x00000597 branch  0x0000561d 
+ 00012737  0x0000059a set0  0x00000025 , 0x00000000 
+ 00012738  0x0000059b bpatch  0x00000021 , 0x00004004 
+ 00012739  0x0000059c call  0x000034b8 
+ 00012740  0x0000059d disable  0x00000029 
+ 00012741  0x0000059e fetch  0x00000001 , 0x0000004c 
+ 00012742  0x0000059f bbit1  0x00000004 , 0x000031c8 
+ 00012743  0x000005a0 rtn 
+ 00012744  0x000005a3 fetch  0x00000001 , 0x0000004c 
+ 00012745  0x000005a4 rtnbit1  0x00000003 
+ 00012746  0x000005a6 arg  0x00000100 , 0x00000005 
+ 00012747  0x000005a7 arg  0x00000008 , 0x00000039 
+ 00012748  0x000005a8 branch  0x00007e91 
+ 00012749  0x000005ab set0  0x00000025 , 0x00000000 
+ 00012750  0x000005ac bpatch  0x00000022 , 0x00004004 
+ 00012751  0x000005ad enable  0x00000028 
+ 00012752  0x000005ae fetch  0x00000001 , 0x0000004b 
+ 00012753  0x000005af rtnbit0  0x00000003 
+ 00012754  0x000005b0 call  0x000031d6 
+ 00012755  0x000005b1 nrtn  0x00000034 
+ 00012756  0x000005b3 disable  0x00000028 
+ 00012757  0x000005b4 rtn 
+ 00012758  0x000005b7 fetch  0x00000001 , 0x00000072 
+ 00012759  0x000005b8 increase  0xffffffff , 0x0000003f 
+ 00012760  0x000005b9 store  0x00000001 , 0x00000072 
+ 00012761  0x000005ba rtn 
+ 00012762  0x000005bd set0  0x00000025 , 0x00000000 
+ 00012763  0x000005be bpatch  0x00000023 , 0x00004004 
+ 00012764  0x000005bf fetch  0x00000001 , 0x00000030 
+ 00012765  0x000005c0 bbit1  0x00000007 , 0x000031e4 
+ 00012766  0x000005c1 fetch  0x00000001 , 0x000008d9 
+ 00012767  0x000005c2 branch  0x000031e4 , 0x00000034 
+ 00012768  0x000005c3 jam  0x00000000 , 0x000008d9 
+ 00012769  0x000005c4 jam  0x00000018 , 0x000009bd 
+ 00012770  0x000005c5 call  0x00007d86 
+ 00012771  0x000005c6 branch  0x000031e4 
+ 00012772  0x000005c8 set0  0x00000025 , 0x00000000 
+ 00012773  0x000005c9 bpatch  0x00000024 , 0x00004004 
+ 00012774  0x000005ca call  0x00003294 
+ 00012775  0x000005cb fetch  0x00000001 , 0x00000030 
+ 00012776  0x000005cc set1  0x00000007 , 0x0000003f 
+ 00012777  0x000005cd store  0x00000001 , 0x00000030 
+ 00012778  0x000005ce jam  0x00000001 , 0x0000425d 
+ 00012779  0x000005cf fetch  0x00000001 , 0x00000055 
+ 00012780  0x000005d0 bne  0x00000016 , 0x000031ed 
+ 00012781  0x000005d2 rtn 
+ 00012782  0x000005d5 jam  0x00000001 , 0x000008d9 
+ 00012783  0x000005d7 fetch  0x00000001 , 0x00000030 
+ 00012784  0x000005d8 set0  0x00000007 , 0x0000003f 
+ 00012785  0x000005d9 store  0x00000001 , 0x00000030 
+ 00012786  0x000005da rtn 
+ 00012787  0x000005df set0  0x00000025 , 0x00000000 
+ 00012788  0x000005e0 bpatch  0x00000025 , 0x00004004 
+ 00012789  0x000005e1 disable  0x00000028 
+ 00012790  0x000005e2 fetch  0x00000001 , 0x00000030 
+ 00012791  0x000005e3 rtnbit0  0x00000001 
+ 00012792  0x000005e4 fetch  0x00000002 , 0x00000032 
+ 00012793  0x000005e5 nrtn  0x00000034 
+ 00012794  0x000005e6 fetch  0x00000004 , 0x00000034 
+ 00012795  0x000005e7 branch  0x000031fe , 0x00000030 
+ 00012796  0x000005e8 isub  0x00000028 , 0x0000003f 
+ 00012797  0x000005e9 branch  0x000031ff 
+ 00012798  0x000005eb isub  0x00000022 , 0x0000003f 
+ 00012799  0x000005ed sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00012800  0x000005ee nrtn  0x00000002 
+ 00012801  0x000005ef fetch  0x00000001 , 0x00000030 
+ 00012802  0x000005f0 set0  0x00000001 , 0x0000003f 
+ 00012803  0x000005f1 store  0x00000001 , 0x00000030 
+ 00012804  0x000005f2 enable  0x00000028 
+ 00012805  0x000005f3 rtn 
+ 00012806  0x000005f7 copy  0x0000003f , 0x00000002 
+ 00012807  0x000005f8 set0  0x00000025 , 0x00000000 
+ 00012808  0x000005f9 bpatch  0x00000026 , 0x00004004 
+ 00012809  0x000005fa store  0x00000004 , 0x00000034 
+ 00012810  0x000005fc jam  0x00000001 , 0x000045f4 
+ 00012811  0x000005fd fetch  0x00000001 , 0x00000030 
+ 00012812  0x000005fe set1  0x00000001 , 0x0000003f 
+ 00012813  0x000005ff store  0x00000001 , 0x00000030 
+ 00012814  0x00000600 force  0x00000000 , 0x0000003f 
+ 00012815  0x00000601 store  0x00000002 , 0x00000032 
+ 00012816  0x00000602 jam  0x00000001 , 0x00000073 
+ 00012817  0x00000603 jam  0x00000000 , 0x00000074 
+ 00012818  0x00000604 jam  0x00000000 , 0x0000008b 
+ 00012819  0x00000605 fetch  0x00000004 , 0x00000034 
+ 00012820  0x00000606 copy  0x00000022 , 0x00000002 
+ 00012821  0x00000607 isub  0x00000002 , 0x0000003f 
+ 00012822  0x00000608 rshift2  0x0000003f , 0x0000003f 
+ 00012823  0x00000609 increase  0xfffffff8 , 0x0000003f 
+ 00012824  0x0000060a store  0x00000001 , 0x0000008a 
+ 00012825  0x0000060b rtn 
+ 00012826  0x0000060f set0  0x00000025 , 0x00000000 
+ 00012827  0x00000610 bpatch  0x00000027 , 0x00004004 
+ 00012828  0x00000611 call  0x000031f3 
+ 00012829  0x00000612 nrtn  0x00000028 
+ 00012830  0x00000613 disable  0x00000028 
+ 00012831  0x00000614 jam  0x00000020 , 0x00000011 
+ 00012832  0x00000615 set0  0x0000000b , 0x00000000 
+ 00012833  0x00000617 call  0x00003aec 
+ 00012834  0x00000618 call  0x0000332b 
+ 00012835  0x00000619 bmark1  0x0000000b , 0x0000322f 
+ 00012836  0x0000061a call  0x000034b0 
+ 00012837  0x0000061b nbranch  0x00003221 , 0x00000034 
+ 00012838  0x0000061d set0  0x00000025 , 0x00000000 
+ 00012839  0x0000061e bpatch  0x00000028 , 0x00004005 
+ 00012840  0x0000061f disable  0x00000028 
+ 00012841  0x00000620 deposit  0x00000022 
+ 00012842  0x00000621 store  0x00000004 , 0x0000416a 
+ 00012843  0x00000622 enable  0x00000030 
+ 00012844  0x00000623 enable  0x00000029 
+ 00012845  0x00000624 jam  0x0000002a , 0x000009bd 
+ 00012846  0x00000625 branch  0x00007d86 
+ 00012847  0x00000628 set0  0x00000025 , 0x00000000 
+ 00012848  0x00000629 bpatch  0x00000029 , 0x00004005 
+ 00012849  0x0000062a call  0x00003aea 
+ 00012850  0x0000062b call  0x00003320 
+ 00012851  0x0000062c disable  0x00000030 
+ 00012852  0x0000062d disable  0x00000029 
+ 00012853  0x0000062e call  0x000038a7 
+ 00012854  0x0000062f call  0x0000348d 
+ 00012855  0x00000631 set0  0x00000025 , 0x00000000 
+ 00012856  0x00000632 bpatch  0x0000002a , 0x00004005 
+ 00012857  0x00000633 call  0x000034d9 
+ 00012858  0x00000634 branch  0x0000323e , 0x0000002d 
+ 00012859  0x00000635 call  0x000034b0 
+ 00012860  0x00000636 nbranch  0x00003237 , 0x00000034 
+ 00012861  0x00000637 branch  0x00003226 
+ 00012862  0x00000639 fetch  0x00000001 , 0x00000031 
+ 00012863  0x0000063a set0  0x00000001 , 0x0000003f 
+ 00012864  0x0000063b store  0x00000001 , 0x00000031 
+ 00012865  0x0000063c call  0x00003b2c 
+ 00012866  0x0000063d call  0x000038d1 
+ 00012867  0x0000063e enable  0x00000028 
+ 00012868  0x0000063f jam  0x0000002b , 0x000009bd 
+ 00012869  0x00000640 branch  0x00007d86 
+ 00012870  0x00000646 set0  0x00000025 , 0x00000000 
+ 00012871  0x00000647 bpatch  0x0000002b , 0x00004005 
+ 00012872  0x00000648 set1  0x00000009 , 0x00000000 
+ 00012873  0x00000649 deposit  0x00000011 
+ 00012874  0x0000064a store  0x00000002 , 0x0000001e 
+ 00012875  0x0000064b force  0x00000050 , 0x00000039 
+ 00012876  0x0000064c arg  0x00000362 , 0x00000005 
+ 00012877  0x0000064d add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012878  0x0000064e ifetch  0x00000001 , 0x00000006 
+ 00012879  0x0000064f copy  0x00000011 , 0x00000006 
+ 00012880  0x00000650 bbit1  0x00000000 , 0x00007ecd 
+ 00012881  0x00000651 arg  0x00000030 , 0x00000005 
+ 00012882  0x00000652 call  0x00007ecd 
+ 00012883  0x00000653 disable  0x0000002e 
+ 00012884  0x00000654 fetch  0x00000001 , 0x00000077 
+ 00012885  0x00000655 iforce  0x00000004 
+ 00012886  0x00000656 jam  0x00000001 , 0x0000008a 
+ 00012887  0x00000657 branch  0x00003259 , 0x00000029 
+ 00012888  0x00000658 jam  0x00000001 , 0x0000008a 
+ 00012889  0x0000065a fetch  0x00000001 , 0x00000030 
+ 00012890  0x0000065b rtnbit0  0x00000001 
+ 00012891  0x0000065c fetch  0x00000001 , 0x00000073 
+ 00012892  0x0000065d store  0x00000001 , 0x0000008a 
+ 00012893  0x0000065e fetch  0x00000001 , 0x00000074 
+ 00012894  0x0000065f store  0x00000001 , 0x0000008b 
+ 00012895  0x00000660 rtn 
+ 00012896  0x00000663 set0  0x00000025 , 0x00000000 
+ 00012897  0x00000664 bpatch  0x0000002c , 0x00004005 
+ 00012898  0x00000665 fetch  0x00000002 , 0x0000001e 
+ 00012899  0x00000666 iforce  0x00000005 
+ 00012900  0x00000667 force  0x00000050 , 0x00000039 
+ 00012901  0x00000668 arg  0x00000362 , 0x00000006 
+ 00012902  0x00000669 branch  0x00007ecd , 0x00000036 
+ 00012903  0x0000066a arg  0x00000030 , 0x00000006 
+ 00012904  0x0000066b branch  0x00007ecd 
+ 00012905  0x00000670 fetch  0x00000001 , 0x00004281 
+ 00012906  0x00000671 copy  0x0000003f , 0x00000039 
+ 00012907  0x00000672 fetcht  0x00000001 , 0x00000015 
+ 00012908  0x00000674 increase  0x00000001 , 0x00000002 
+ 00012909  0x00000675 compare  0x00000003 , 0x00000002 , 0x000000ff 
+ 00012910  0x00000676 nbranch  0x00003270 , 0x00000001 
+ 00012911  0x00000677 arg  0x00000000 , 0x00000002 
+ 00012912  0x00000679 storet  0x00000001 , 0x00000015 
+ 00012913  0x0000067a mul32  0x00000002 , 0x00000050 , 0x0000003f 
+ 00012914  0x0000067b arg  0x00004040 , 0x00000011 
+ 00012915  0x0000067c iadd  0x00000011 , 0x00000011 
+ 00012916  0x0000067d ifetch  0x00000001 , 0x00000011 
+ 00012917  0x0000067e bbit1  0x00000001 , 0x00003278 
+ 00012918  0x0000067f rtnbit1  0x00000000 
+ 00012919  0x00000680 rtnbit1  0x00000003 
+ 00012920  0x00000682 loop  0x0000326c 
+ 00012921  0x00000683 rtn 
+ 00012922  0x00000686 set0  0x00000025 , 0x00000000 
+ 00012923  0x00000687 bpatch  0x0000002d , 0x00004005 
+ 00012924  0x00000688 arg  0x000032ad , 0x00000013 
+ 00012925  0x00000689 call  0x000032a2 
+ 00012926  0x0000068a nrtn  0x00000005 
+ 00012927  0x0000068b deposit  0x00000011 
+ 00012928  0x0000068c store  0x00000002 , 0x0000001e 
+ 00012929  0x0000068d force  0x00000000 , 0x0000003e 
+ 00012930  0x0000068e rtn 
+ 00012931  0x00000693 call  0x000037a9 
+ 00012932  0x00000694 branch  0x0000328b , 0x00000001 
+ 00012933  0x00000695 fetch  0x00000002 , 0x0000001e 
+ 00012934  0x00000696 add  0x0000003f , 0x00000017 , 0x00000005 
+ 00012935  0x00000697 fetch  0x00000001 , 0x00000047 
+ 00012936  0x00000698 istore  0x00000001 , 0x00000005 
+ 00012937  0x00000699 arg  0x000032ed , 0x00000013 
+ 00012938  0x0000069a branch  0x000032a2 
+ 00012939  0x0000069d fetch  0x00000001 , 0x00000047 
+ 00012940  0x0000069e isolate1  0x00000003 , 0x0000003f 
+ 00012941  0x0000069f branch  0x00003290 , 0x00000001 
+ 00012942  0x000006a0 force  0x00000001 , 0x0000003e 
+ 00012943  0x000006a1 rtn 
+ 00012944  0x000006a3 force  0x00000000 , 0x0000003e 
+ 00012945  0x000006a4 rtn 
+ 00012946  0x000006a8 arg  0x000032ea , 0x00000013 
+ 00012947  0x000006a9 branch  0x000032a2 
+ 00012948  0x000006ac fetcht  0x00000002 , 0x0000001e 
+ 00012949  0x000006ad arg  0x00003312 , 0x00000013 
+ 00012950  0x000006ae branch  0x000032a2 
+ 00012951  0x000006b3 fetcht  0x00000001 , 0x00004272 
+ 00012952  0x000006b5 arg  0x000032b8 , 0x00000013 
+ 00012953  0x000006b6 branch  0x000032a2 
+ 00012954  0x000006b9 set0  0x00000025 , 0x00000000 
+ 00012955  0x000006ba bpatch  0x0000002e , 0x00004005 
+ 00012956  0x000006bb fetcht  0x00000006 , 0x00004273 
+ 00012957  0x000006bd arg  0x000032b1 , 0x00000013 
+ 00012958  0x000006be branch  0x000032a2 
+ 00012959  0x000006c1 arg  0x000032be , 0x00000013 
+ 00012960  0x000006c2 branch  0x000032a2 
+ 00012961  0x000006c5 arg  0x00003309 , 0x00000013 
+ 00012962  0x000006c7 set0  0x00000025 , 0x00000000 
+ 00012963  0x000006c8 bpatch  0x0000002f , 0x00004005 
+ 00012964  0x000006c9 arg  0x00004040 , 0x00000011 
+ 00012965  0x000006ca fetch  0x00000001 , 0x00004281 
+ 00012966  0x000006cb copy  0x0000003f , 0x00000039 
+ 00012967  0x000006cd ifetch  0x00000001 , 0x00000011 
+ 00012968  0x000006ce copy  0x00000013 , 0x0000003d 
+ 00012969  0x000006d0 increase  0x00000050 , 0x00000011 
+ 00012970  0x000006d1 loop  0x000032a7 
+ 00012971  0x000006d2 force  0x00000001 , 0x0000003e 
+ 00012972  0x000006d3 rtn 
+ 00012973  0x000006d6 bbit1  0x00000000 , 0x000032a9 
+ 00012974  0x000006d7 bbit1  0x00000003 , 0x000032a9 
+ 00012975  0x000006d8 force  0x00000000 , 0x0000003e 
+ 00012976  0x000006d9 rtn 
+ 00012977  0x000006dc bbit1  0x00000003 , 0x000032b3 
+ 00012978  0x000006dd bbit0  0x00000000 , 0x000032a9 
+ 00012979  0x000006df add  0x00000011 , 0x00000010 , 0x00000006 
+ 00012980  0x000006e0 ifetch  0x00000006 , 0x00000006 
+ 00012981  0x000006e1 isub  0x00000002 , 0x0000003e 
+ 00012982  0x000006e2 rtn  0x00000005 
+ 00012983  0x000006e3 branch  0x000032a9 
+ 00012984  0x000006e6 bbit0  0x00000000 , 0x000032a9 
+ 00012985  0x000006e7 add  0x00000011 , 0x00000016 , 0x00000006 
+ 00012986  0x000006e8 ifetch  0x00000001 , 0x00000006 
+ 00012987  0x000006e9 isub  0x00000002 , 0x0000003e 
+ 00012988  0x000006ea rtn  0x00000005 
+ 00012989  0x000006eb branch  0x000032a9 
+ 00012990  0x000006ee bbit0  0x00000001 , 0x000032a9 
+ 00012991  0x000006f0 call  0x000032f6 
+ 00012992  0x000006f1 call  0x000032da 
+ 00012993  0x000006f2 isub  0x00000002 , 0x0000003f 
+ 00012994  0x000006f3 increase  0x00000001 , 0x0000003f 
+ 00012995  0x000006f4 branch  0x000032d4 , 0x00000002 
+ 00012996  0x000006f5 copy  0x00000006 , 0x00000012 
+ 00012997  0x000006f6 store  0x00000009 , 0x000009c6 
+ 00012998  0x000006f7 fetch  0x00000001 , 0x00004565 
+ 00012999  0x000006f8 nbranch  0x000032cc , 0x00000034 
+ 00013000  0x000006f9 fetch  0x00000009 , 0x000009c6 
+ 00013001  0x000006fa copy  0x00000012 , 0x00000006 
+ 00013002  0x000006fb increase  0x00000005 , 0x0000003f 
+ 00013003  0x000006fc branch  0x000032cf 
+ 00013004  0x000006fe fetch  0x00000009 , 0x000009c6 
+ 00013005  0x000006ff copy  0x00000012 , 0x00000006 
+ 00013006  0x00000700 increase  0x00000014 , 0x0000003f 
+ 00013007  0x00000702 nbranch  0x000032a9 , 0x00000002 
+ 00013008  0x00000704 copy  0x00000002 , 0x00000021 
+ 00013009  0x00000705 call  0x00003302 
+ 00013010  0x00000706 force  0x00000000 , 0x0000003e 
+ 00013011  0x00000707 rtn 
+ 00013012  0x0000070b iforce  0x00000012 
+ 00013013  0x0000070c add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013014  0x0000070d ifetch  0x00000002 , 0x00000006 
+ 00013015  0x0000070e branch  0x000032d0 , 0x00000034 
+ 00013016  0x0000070f call  0x00003302 
+ 00013017  0x00000710 branch  0x000032bf 
+ 00013018  0x00000713 rshift16  0x0000003f , 0x0000000b 
+ 00013019  0x00000714 rshift8  0x0000000b , 0x0000000b 
+ 00013020  0x00000715 branch  0x000032e4 , 0x00000005 
+ 00013021  0x00000716 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013022  0x00000717 nrtn  0x00000001 
+ 00013023  0x00000718 rshift16  0x00000002 , 0x0000000b 
+ 00013024  0x00000719 rshift8  0x0000000b , 0x0000000b 
+ 00013025  0x0000071a nrtn  0x00000005 
+ 00013026  0x0000071b set1  0x0000001c , 0x00000002 
+ 00013027  0x0000071c rtn 
+ 00013028  0x0000071e rshift16  0x00000002 , 0x0000000b 
+ 00013029  0x0000071f rshift8  0x0000000b , 0x0000000b 
+ 00013030  0x00000720 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013031  0x00000721 nrtn  0x00000001 
+ 00013032  0x00000722 set1  0x0000001c , 0x0000003f 
+ 00013033  0x00000723 rtn 
+ 00013034  0x00000726 bbit0  0x00000000 , 0x000032a9 
+ 00013035  0x00000727 force  0x00000000 , 0x0000003e 
+ 00013036  0x00000728 rtn 
+ 00013037  0x0000072b bbit0  0x00000000 , 0x000032a9 
+ 00013038  0x0000072c add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013039  0x0000072d ifetch  0x00000001 , 0x00000006 
+ 00013040  0x0000072e bbit1  0x00000000 , 0x000032a9 
+ 00013041  0x0000072f add  0x00000011 , 0x00000017 , 0x00000006 
+ 00013042  0x00000730 ifetch  0x00000001 , 0x00000006 
+ 00013043  0x00000731 bbit0  0x00000003 , 0x000032a9 
+ 00013044  0x00000732 force  0x00000000 , 0x0000003e 
+ 00013045  0x00000733 rtn 
+ 00013046  0x00000736 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013047  0x00000737 ifetcht  0x00000001 , 0x00000006 
+ 00013048  0x00000738 deposit  0x00000022 
+ 00013049  0x00000739 isolate1  0x00000001 , 0x00000002 
+ 00013050  0x0000073a add  0x00000011 , 0x00000004 , 0x00000006 
+ 00013051  0x0000073b ifetcht  0x00000004 , 0x00000006 
+ 00013052  0x0000073c rtn  0x00000001 
+ 00013053  0x0000073d add  0x00000011 , 0x00000008 , 0x00000006 
+ 00013054  0x0000073e ifetch  0x00000006 , 0x00000006 
+ 00013055  0x0000073f call  0x000038e5 
+ 00013056  0x00000740 deposit  0x00000028 
+ 00013057  0x00000741 rtn 
+ 00013058  0x00000744 add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013059  0x00000745 add  0x00000011 , 0x00000004 , 0x00000005 
+ 00013060  0x00000746 ifetch  0x00000002 , 0x00000006 
+ 00013061  0x00000747 iadd  0x00000002 , 0x0000000b 
+ 00013062  0x00000748 deposit  0x0000000b 
+ 00013063  0x00000749 istore  0x00000004 , 0x00000005 
+ 00013064  0x0000074a branch  0x000049dc 
+ 00013065  0x0000074e bbit0  0x00000001 , 0x000032a9 
+ 00013066  0x0000074f call  0x000032f6 
+ 00013067  0x00000750 iadd  0x0000001b , 0x0000003f 
+ 00013068  0x00000751 iadd  0x0000001b , 0x0000003f 
+ 00013069  0x00000752 iadd  0x00000007 , 0x0000003f 
+ 00013070  0x00000753 isub  0x00000002 , 0x0000003e 
+ 00013071  0x00000754 nbranch  0x000032a9 , 0x00000002 
+ 00013072  0x00000755 force  0x00000000 , 0x0000003e 
+ 00013073  0x00000756 rtn 
+ 00013074  0x00000759 bbit0  0x00000000 , 0x000032a9 
+ 00013075  0x0000075a deposit  0x00000002 
+ 00013076  0x0000075b isub  0x00000011 , 0x0000003e 
+ 00013077  0x0000075c branch  0x000032a9 , 0x0000003e 
+ 00013078  0x0000075d add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013079  0x0000075e ifetch  0x00000001 , 0x00000006 
+ 00013080  0x0000075f bbit1  0x00000000 , 0x000032a9 
+ 00013081  0x00000760 ifetch  0x00000001 , 0x00000011 
+ 00013082  0x00000761 set0  0x00000007 , 0x0000003f 
+ 00013083  0x00000762 istore  0x00000001 , 0x00000011 
+ 00013084  0x00000763 branch  0x000032a9 
+ 00013085  0x00000767 set0  0x00000025 , 0x00000000 
+ 00013086  0x00000768 bpatch  0x00000030 , 0x00004006 
+ 00013087  0x00000769 call  0x00003aec 
+ 00013088  0x0000076b add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013089  0x0000076c call  0x00003979 
+ 00013090  0x0000076d force  0x00000003 , 0x00000024 
+ 00013091  0x0000076e call  0x00003967 
+ 00013092  0x0000076f call  0x00003aee 
+ 00013093  0x00000770 call  0x00003af4 
+ 00013094  0x00000771 call  0x00003b05 
+ 00013095  0x00000772 branch  0x000037ec 
+ 00013096  0x00000775 set0  0x00000025 , 0x00000000 
+ 00013097  0x00000776 bpatch  0x00000031 , 0x00004006 
+ 00013098  0x00000777 call  0x00003aea 
+ 00013099  0x00000779 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013100  0x0000077a call  0x00003979 
+ 00013101  0x0000077b force  0x00000003 , 0x00000024 
+ 00013102  0x0000077c call  0x00003960 
+ 00013103  0x0000077d call  0x00003481 
+ 00013104  0x0000077e call  0x00003a86 
+ 00013105  0x0000077f call  0x00003afa 
+ 00013106  0x00000780 call  0x00003a7f 
+ 00013107  0x00000782 call  0x00003aa3 
+ 00013108  0x00000783 nrtn  0x00000018 
+ 00013109  0x00000784 call  0x00003a50 
+ 00013110  0x00000785 branch  0x00003582 
+ 00013111  0x0000078a set0  0x00000025 , 0x00000000 
+ 00013112  0x0000078b bpatch  0x00000032 , 0x00004006 
+ 00013113  0x0000078c fetch  0x00000001 , 0x00000180 
+ 00013114  0x0000078d iforce  0x00000004 
+ 00013115  0x0000078e force  0x00000001 , 0x00000001 
+ 00013116  0x0000078f call  0x0000331d 
+ 00013117  0x00000790 branch  0x00003328 
+ 00013118  0x0000079c fetch  0x00000001 , 0x00004133 
+ 00013119  0x0000079d rtnbit0  0x00000000 
+ 00013120  0x0000079e force  0x00000005 , 0x00000007 
+ 00013121  0x0000079f call  0x00007ee2 
+ 00013122  0x000007a0 nrtn  0x00000034 
+ 00013123  0x000007a1 fetcht  0x00000002 , 0x0000414d 
+ 00013124  0x000007a2 force  0x00000004 , 0x00000007 
+ 00013125  0x000007a3 call  0x0000379f 
+ 00013126  0x000007a4 rtn  0x00000028 
+ 00013127  0x000007a5 call  0x0000334e 
+ 00013128  0x000007a6 force  0x00000005 , 0x00000007 
+ 00013129  0x000007a7 fetch  0x00000002 , 0x0000414f 
+ 00013130  0x000007a8 nbranch  0x00007ed4 , 0x00000018 
+ 00013131  0x000007a9 random  0x0000003f 
+ 00013132  0x000007aa iand  0x00000035 , 0x0000003f 
+ 00013133  0x000007ab branch  0x00007ed4 
+ 00013134  0x000007af set0  0x00000025 , 0x00000000 
+ 00013135  0x000007b0 bpatch  0x00000033 , 0x00004006 
+ 00013136  0x000007b1 jam  0x00000000 , 0x00000180 
+ 00013137  0x000007b2 disable  0x00000030 
+ 00013138  0x000007b3 disable  0x0000002e 
+ 00013139  0x000007b4 call  0x00003937 
+ 00013140  0x000007b5 and  0x00000022 , 0x000001fc , 0x00000021 
+ 00013141  0x000007b6 force  0x00000001 , 0x00000024 
+ 00013142  0x000007b7 call  0x0000396e 
+ 00013143  0x000007b8 call  0x00003960 
+ 00013144  0x000007b9 setflip  0x0000001d , 0x00000000 
+ 00013145  0x000007ba fetch  0x00000001 , 0x00000006 
+ 00013146  0x000007bb increase  0x00000001 , 0x0000003f 
+ 00013147  0x000007bc store  0x00000001 , 0x00000006 
+ 00013148  0x000007bd call  0x0000398b 
+ 00013149  0x000007be call  0x00003a7f 
+ 00013150  0x000007bf call  0x00003aab 
+ 00013151  0x000007c0 nrtn  0x00000018 
+ 00013152  0x000007c1 set0  0x00000025 , 0x00000000 
+ 00013153  0x000007c2 bpatch  0x00000034 , 0x00004006 
+ 00013154  0x000007c3 force  0x00000000 , 0x0000001b 
+ 00013155  0x000007c4 call  0x00003992 
+ 00013156  0x000007c5 fetch  0x00000001 , 0x00000007 
+ 00013157  0x000007c6 increase  0x00000001 , 0x0000003f 
+ 00013158  0x000007c7 store  0x00000001 , 0x00000007 
+ 00013159  0x000007c8 call  0x0000396e 
+ 00013160  0x000007c9 call  0x00003aea 
+ 00013161  0x000007ca or_into  0x00000002 , 0x00000021 
+ 00013162  0x000007cb force  0x00000001 , 0x00000024 
+ 00013163  0x000007cc call  0x00003967 
+ 00013164  0x000007cd call  0x0000398b 
+ 00013165  0x000007ce call  0x00003aee 
+ 00013166  0x000007cf call  0x00003aff 
+ 00013167  0x000007d0 deposit  0x00000022 
+ 00013168  0x000007d1 store  0x00000004 , 0x00000160 
+ 00013169  0x000007d2 call  0x00003b05 
+ 00013170  0x000007d3 force  0x00000002 , 0x00000001 
+ 00013171  0x000007d4 force  0x00000000 , 0x00000004 
+ 00013172  0x000007d5 call  0x00003b0d 
+ 00013173  0x000007d6 call  0x000037ee 
+ 00013174  0x000007d7 call  0x0000337a 
+ 00013175  0x000007d8 and_into  0x000001fd , 0x00000021 
+ 00013176  0x000007d9 increase  0x00000001 , 0x00000026 
+ 00013177  0x000007da rtn 
+ 00013178  0x000007dd set0  0x00000025 , 0x00000000 
+ 00013179  0x000007de bpatch  0x00000035 , 0x00004006 
+ 00013180  0x000007df fetch  0x00000001 , 0x00004171 
+ 00013181  0x000007e0 rtn  0x00000034 
+ 00013182  0x000007e1 arg  0x000001b1 , 0x00000005 
+ 00013183  0x000007e2 fetch  0x00000001 , 0x000045ae 
+ 00013184  0x000007e3 copy  0x0000003f , 0x00000039 
+ 00013185  0x000007e4 increase  0x00000001 , 0x0000003f 
+ 00013186  0x000007e5 istore  0x00000001 , 0x00000005 
+ 00013187  0x000007e6 copy  0x00000005 , 0x00000002 
+ 00013188  0x000007e7 increase  0x00000001 , 0x0000003f 
+ 00013189  0x000007e8 store  0x00000002 , 0x0000427e 
+ 00013190  0x000007e9 copy  0x00000002 , 0x00000005 
+ 00013191  0x000007ea setarg  0x00000009 
+ 00013192  0x000007eb istore  0x00000001 , 0x00000005 
+ 00013193  0x000007ec arg  0x000045af , 0x00000006 
+ 00013194  0x000007ed call  0x00007ecd 
+ 00013195  0x000007ef arg  0x00004625 , 0x00000013 
+ 00013196  0x000007f0 arg  0x00000004 , 0x00000039 
+ 00013197  0x000007f1 call  0x0000339d 
+ 00013198  0x000007f2 arg  0x0000460f , 0x00000013 
+ 00013199  0x000007f3 arg  0x00000001 , 0x00000039 
+ 00013200  0x000007f4 call  0x0000339d 
+ 00013201  0x000007f6 force  0x0000000a , 0x00000001 
+ 00013202  0x000007f7 jam  0x00000002 , 0x0000427d 
+ 00013203  0x000007f8 setarg  0x000001b1 
+ 00013204  0x000007f9 store  0x00000002 , 0x0000016e 
+ 00013205  0x000007fa call  0x00003aea 
+ 00013206  0x000007fb call  0x00003967 
+ 00013207  0x000007fc call  0x00003aee 
+ 00013208  0x000007fd call  0x00003aff 
+ 00013209  0x000007fe call  0x00003b05 
+ 00013210  0x000007ff call  0x00003b0d 
+ 00013211  0x00000800 call  0x000037ee 
+ 00013212  0x00000801 rtn 
+ 00013213  0x00000805 copy  0x00000005 , 0x00000002 
+ 00013214  0x00000806 copy  0x00000013 , 0x00000006 
+ 00013215  0x00000807 ifetch  0x00000001 , 0x00000006 
+ 00013216  0x00000808 rtn  0x00000034 
+ 00013217  0x0000080a lshift  0x0000003f , 0x0000003f 
+ 00013218  0x0000080b loop  0x000033a1 
+ 00013219  0x0000080c copy  0x0000003f , 0x00000011 
+ 00013220  0x0000080d increase  0x00000002 , 0x0000003f 
+ 00013221  0x0000080e copy  0x0000003f , 0x00000007 
+ 00013222  0x0000080f fetch  0x00000002 , 0x0000427e 
+ 00013223  0x00000810 iadd  0x00000007 , 0x0000003f 
+ 00013224  0x00000811 store  0x00000002 , 0x0000427e 
+ 00013225  0x00000812 copy  0x00000002 , 0x00000005 
+ 00013226  0x00000813 copy  0x00000011 , 0x0000003f 
+ 00013227  0x00000814 increase  0x00000001 , 0x0000003f 
+ 00013228  0x00000815 istore  0x00000001 , 0x00000005 
+ 00013229  0x00000816 copy  0x00000013 , 0x00000006 
+ 00013230  0x00000817 ifetch  0x00000001 , 0x00000006 
+ 00013231  0x00000818 ifetch  0x00000001 , 0x00000006 
+ 00013232  0x00000819 istore  0x00000001 , 0x00000005 
+ 00013233  0x0000081a copy  0x00000011 , 0x00000039 
+ 00013234  0x0000081b branch  0x00007ecd 
+ 00013235  0x00000822 fetch  0x00000001 , 0x00004133 
+ 00013236  0x00000823 rtnbit0  0x00000001 
+ 00013237  0x00000824 force  0x00000006 , 0x00000007 
+ 00013238  0x00000825 call  0x00007ee2 
+ 00013239  0x00000826 nrtn  0x00000034 
+ 00013240  0x00000827 fetcht  0x00000002 , 0x00004151 
+ 00013241  0x00000828 force  0x00000028 , 0x00000007 
+ 00013242  0x00000829 call  0x0000379f 
+ 00013243  0x0000082a rtn  0x00000028 
+ 00013244  0x0000082b force  0x00000000 , 0x00000004 
+ 00013245  0x0000082c jam  0x00000008 , 0x00000010 
+ 00013246  0x0000082d set0  0x0000000b , 0x00000000 
+ 00013247  0x0000082e call  0x000033c3 
+ 00013248  0x0000082f force  0x00000006 , 0x00000007 
+ 00013249  0x00000830 fetch  0x00000002 , 0x00004153 
+ 00013250  0x00000831 branch  0x00007ed4 
+ 00013251  0x00000835 set0  0x00000025 , 0x00000000 
+ 00013252  0x00000836 bpatch  0x00000036 , 0x00004006 
+ 00013253  0x00000837 disable  0x00000030 
+ 00013254  0x00000838 call  0x00003937 
+ 00013255  0x00000839 fetch  0x00000001 , 0x00000008 
+ 00013256  0x0000083a increase  0x00000001 , 0x0000003f 
+ 00013257  0x0000083b store  0x00000001 , 0x00000008 
+ 00013258  0x0000083c force  0x00000000 , 0x00000026 
+ 00013259  0x0000083d call  0x00003979 
+ 00013260  0x0000083e add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013261  0x0000083f force  0x00000002 , 0x00000024 
+ 00013262  0x00000840 set0  0x00000025 , 0x00000000 
+ 00013263  0x00000841 bpatch  0x00000037 , 0x00004006 
+ 00013264  0x00000842 call  0x00003960 
+ 00013265  0x00000843 call  0x00003a7f 
+ 00013266  0x00000844 call  0x00003aab 
+ 00013267  0x00000845 nrtn  0x00000018 
+ 00013268  0x00000846 call  0x00003992 
+ 00013269  0x00000847 fetch  0x00000001 , 0x00000009 
+ 00013270  0x00000848 increase  0x00000001 , 0x0000003f 
+ 00013271  0x00000849 store  0x00000001 , 0x00000009 
+ 00013272  0x0000084a force  0x00000000 , 0x0000001b 
+ 00013273  0x0000084b call  0x00003aea 
+ 00013274  0x0000084c or_into  0x00000002 , 0x00000021 
+ 00013275  0x0000084d force  0x00000001 , 0x00000024 
+ 00013276  0x0000084e call  0x00003967 
+ 00013277  0x0000084f call  0x00003aee 
+ 00013278  0x00000850 call  0x00003aff 
+ 00013279  0x00000851 call  0x00003b05 
+ 00013280  0x00000852 call  0x000036c6 
+ 00013281  0x00000853 force  0x00000000 , 0x00000004 
+ 00013282  0x00000854 arg  0x00000600 , 0x0000000b 
+ 00013283  0x00000855 until  0x00000029 , 0x00000026 
+ 00013284  0x00000856 or_into  0x00000003 , 0x00000028 
+ 00013285  0x00000857 and_into  0x000001fd , 0x00000021 
+ 00013286  0x00000859 set0  0x00000025 , 0x00000000 
+ 00013287  0x0000085a bpatch  0x00000038 , 0x00004007 
+ 00013288  0x0000085b increase  0x00000001 , 0x00000026 
+ 00013289  0x0000085c call  0x00003960 
+ 00013290  0x0000085d call  0x00003a7f 
+ 00013291  0x0000085e call  0x00003a9d 
+ 00013292  0x0000085f nbranch  0x000033f0 , 0x00000018 
+ 00013293  0x00000860 call  0x00003b0d 
+ 00013294  0x00000861 call  0x00003584 
+ 00013295  0x00000862 bmark1  0x0000000b , 0x000033f8 
+ 00013296  0x00000864 set0  0x00000025 , 0x00000000 
+ 00013297  0x00000865 bpatch  0x00000039 , 0x00004007 
+ 00013298  0x00000866 fetch  0x00000001 , 0x00000010 
+ 00013299  0x00000867 rtn  0x00000034 
+ 00013300  0x00000868 increase  0xffffffff , 0x0000003f 
+ 00013301  0x00000869 store  0x00000001 , 0x00000010 
+ 00013302  0x0000086a call  0x00003aec 
+ 00013303  0x0000086b branch  0x000033e6 
+ 00013304  0x0000086f set0  0x00000025 , 0x00000000 
+ 00013305  0x00000870 bpatch  0x0000003a , 0x00004007 
+ 00013306  0x00000871 set0  0x00000001 , 0x00000028 
+ 00013307  0x00000872 set1  0x00000000 , 0x00000028 
+ 00013308  0x00000873 fetch  0x00000001 , 0x0000000a 
+ 00013309  0x00000874 increase  0x00000001 , 0x0000003f 
+ 00013310  0x00000875 store  0x00000001 , 0x0000000a 
+ 00013311  0x00000876 call  0x00003aea 
+ 00013312  0x00000877 or_into  0x00000002 , 0x00000021 
+ 00013313  0x00000878 call  0x00003967 
+ 00013314  0x00000879 call  0x00003aee 
+ 00013315  0x0000087a call  0x00003aff 
+ 00013316  0x0000087b call  0x00003b05 
+ 00013317  0x0000087c call  0x000036c6 
+ 00013318  0x0000087e compare  0x00000003 , 0x00000028 , 0x00000003 
+ 00013319  0x0000087f branch  0x0000340a , 0x00000001 
+ 00013320  0x00000880 until  0x0000003e , 0x00000017 
+ 00013321  0x00000881 branch  0x00003406 
+ 00013322  0x00000883 fetch  0x00000004 , 0x00000164 
+ 00013323  0x00000884 or_into  0x00000003 , 0x0000003f 
+ 00013324  0x00000885 icopy  0x00000028 
+ 00013325  0x00000888 set0  0x00000025 , 0x00000000 
+ 00013326  0x00000889 bpatch  0x0000003b , 0x00004007 
+ 00013327  0x0000088a fetch  0x00000006 , 0x00000177 
+ 00013328  0x0000088b store  0x00000006 , 0x00000040 
+ 00013329  0x0000088c call  0x0000348d 
+ 00013330  0x0000088e call  0x000034d9 
+ 00013331  0x0000088f branch  0x00003417 , 0x0000002d 
+ 00013332  0x00000890 call  0x000034b0 
+ 00013333  0x00000891 nbranch  0x00003412 , 0x00000034 
+ 00013334  0x00000892 rtn 
+ 00013335  0x00000896 set0  0x00000025 , 0x00000000 
+ 00013336  0x00000897 bpatch  0x0000003c , 0x00004007 
+ 00013337  0x00000898 call  0x00003499 
+ 00013338  0x00000899 call  0x0000327a 
+ 00013339  0x0000089a nrtn  0x00000005 
+ 00013340  0x0000089b jam  0x00000000 , 0x00000031 
+ 00013341  0x0000089c call  0x000038d1 
+ 00013342  0x0000089d branch  0x00003260 
+ 00013343  0x000008a1 set0  0x00000025 , 0x00000000 
+ 00013344  0x000008a2 bpatch  0x0000003d , 0x00004007 
+ 00013345  0x000008a3 call  0x000038e1 
+ 00013346  0x000008a4 call  0x00003447 
+ 00013347  0x000008a5 rtn  0x00000028 
+ 00013348  0x000008a7 set0  0x00000025 , 0x00000000 
+ 00013349  0x000008a8 bpatch  0x0000003e , 0x00004007 
+ 00013350  0x000008a9 call  0x00003d42 
+ 00013351  0x000008aa call  0x000068c0 
+ 00013352  0x000008ab call  0x00003579 
+ 00013353  0x000008ac nbranch  0x00003434 , 0x0000002d 
+ 00013354  0x000008ad call  0x00003b2c 
+ 00013355  0x000008ae call  0x000068dc 
+ 00013356  0x000008af call  0x000034e7 
+ 00013357  0x000008b0 call  0x000037de 
+ 00013358  0x000008b1 call  0x000037ac 
+ 00013359  0x000008b2 call  0x0000531f 
+ 00013360  0x000008b3 fetch  0x00000001 , 0x0000000b 
+ 00013361  0x000008b4 increase  0x00000001 , 0x0000003f 
+ 00013362  0x000008b5 store  0x00000001 , 0x0000000b 
+ 00013363  0x000008b6 call  0x000038d1 
+ 00013364  0x000008b8 set0  0x00000025 , 0x00000000 
+ 00013365  0x000008b9 bpatch  0x0000003f , 0x00004007 
+ 00013366  0x000008ba call  0x00003ca0 
+ 00013367  0x000008bb call  0x00003b22 
+ 00013368  0x000008bc branch  0x0000343e , 0x00000002 
+ 00013369  0x000008bd call  0x000031cd 
+ 00013370  0x000008be nbranch  0x0000343e , 0x00000028 
+ 00013371  0x000008bf call  0x00003775 
+ 00013372  0x000008c0 nbranch  0x00003424 , 0x00000034 
+ 00013373  0x000008c1 rtn 
+ 00013374  0x000008c4 set0  0x00000025 , 0x00000000 
+ 00013375  0x000008c5 bpatch  0x00000040 , 0x00004008 
+ 00013376  0x000008c6 jam  0x00000000 , 0x00000150 
+ 00013377  0x000008c7 jam  0x00000000 , 0x0000017e 
+ 00013378  0x000008c8 call  0x000034b8 
+ 00013379  0x000008c9 set0  0x00000011 , 0x00000000 
+ 00013380  0x000008ca call  0x00007f80 
+ 00013381  0x000008cb fetch  0x00000001 , 0x00000030 
+ 00013382  0x000008cc rtn 
+ 00013383  0x000008d0 set0  0x00000025 , 0x00000000 
+ 00013384  0x000008d1 bpatch  0x00000041 , 0x00004008 
+ 00013385  0x000008d2 call  0x000031f3 
+ 00013386  0x000008d3 nrtn  0x00000028 
+ 00013387  0x000008d4 copy  0x00000004 , 0x00000002 
+ 00013388  0x000008d5 call  0x00003b11 
+ 00013389  0x000008d6 store  0x00000001 , 0x00000180 
+ 00013390  0x000008d7 copy  0x00000002 , 0x00000004 
+ 00013391  0x000008d8 jam  0x00000020 , 0x00000011 
+ 00013392  0x000008da set0  0x00000025 , 0x00000000 
+ 00013393  0x000008db bpatch  0x00000042 , 0x00004008 
+ 00013394  0x000008dc call  0x00003aec 
+ 00013395  0x000008dd force  0x00000002 , 0x00000001 
+ 00013396  0x000008de call  0x000037d5 
+ 00013397  0x000008df deposit  0x00000022 
+ 00013398  0x000008e0 store  0x00000004 , 0x00000160 
+ 00013399  0x000008e1 call  0x000037ec 
+ 00013400  0x000008e2 call  0x00003aea 
+ 00013401  0x000008e3 enable  0x0000002f 
+ 00013402  0x000008e4 call  0x0000355a 
+ 00013403  0x000008e5 branch  0x00003463 , 0x00000018 
+ 00013404  0x000008e6 call  0x00003992 
+ 00013405  0x000008e7 call  0x000034b0 
+ 00013406  0x000008e8 nbranch  0x00003450 , 0x00000034 
+ 00013407  0x000008e9 rtnmark0  0x00000004 
+ 00013408  0x000008ea jam  0x00000034 , 0x0000007c 
+ 00013409  0x000008eb set1  0x00000003 , 0x00000000 
+ 00013410  0x000008ec rtn 
+ 00013411  0x000008ee enable  0x00000030 
+ 00013412  0x000008ef call  0x0000348d 
+ 00013413  0x000008f0 call  0x00003937 
+ 00013414  0x000008f2 set0  0x00000025 , 0x00000000 
+ 00013415  0x000008f3 bpatch  0x00000043 , 0x00004008 
+ 00013416  0x000008f4 call  0x00003337 
+ 00013417  0x000008f5 branch  0x00003470 , 0x00000018 
+ 00013418  0x000008f6 call  0x000034b0 
+ 00013419  0x000008f7 nbranch  0x00003466 , 0x00000034 
+ 00013420  0x000008f8 disable  0x00000030 
+ 00013421  0x000008f9 deposit  0x00000028 
+ 00013422  0x000008fa store  0x00000004 , 0x0000416a 
+ 00013423  0x000008fb rtn 
+ 00013424  0x000008fd enable  0x00000029 
+ 00013425  0x000008fe bmark0  0x00000004 , 0x00003476 
+ 00013426  0x000008ff set0  0x00000004 , 0x00000000 
+ 00013427  0x00000900 jam  0x00000003 , 0x0000007c 
+ 00013428  0x00000901 jam  0x00000033 , 0x0000007d 
+ 00013429  0x00000902 call  0x00005903 
+ 00013430  0x00000904 deposit  0x00000004 
+ 00013431  0x00000905 store  0x00000001 , 0x00000077 
+ 00013432  0x00000906 force  0x00000000 , 0x0000003f 
+ 00013433  0x00000907 store  0x00000006 , 0x00000038 
+ 00013434  0x00000908 fetch  0x00000001 , 0x00000031 
+ 00013435  0x00000909 set1  0x00000001 , 0x0000003f 
+ 00013436  0x0000090a store  0x00000001 , 0x00000031 
+ 00013437  0x0000090b call  0x00003b2c 
+ 00013438  0x0000090c disable  0x00000029 
+ 00013439  0x0000090d enable  0x00000028 
+ 00013440  0x0000090e rtn 
+ 00013441  0x00000913 set0  0x00000025 , 0x00000000 
+ 00013442  0x00000914 bpatch  0x00000044 , 0x00004008 
+ 00013443  0x00000915 disable  0x0000002d 
+ 00013444  0x00000916 set0  0x00000005 , 0x00000000 
+ 00013445  0x00000917 set0  0x0000000a , 0x00000000 
+ 00013446  0x00000918 set0  0x00000010 , 0x00000000 
+ 00013447  0x00000919 set0  0x0000000f , 0x00000000 
+ 00013448  0x0000091a fetch  0x00000001 , 0x00000047 
+ 00013449  0x0000091b set0  0x00000005 , 0x0000003f 
+ 00013450  0x0000091c set1  0x00000004 , 0x0000003f 
+ 00013451  0x0000091d store  0x00000001 , 0x00000047 
+ 00013452  0x0000091e rtn 
+ 00013453  0x00000921 set0  0x00000025 , 0x00000000 
+ 00013454  0x00000922 bpatch  0x00000045 , 0x00004008 
+ 00013455  0x00000923 jam  0x00000020 , 0x00000011 
+ 00013456  0x00000924 jam  0x00000050 , 0x00000047 
+ 00013457  0x00000925 fetch  0x00000002 , 0x0000415f 
+ 00013458  0x00000926 store  0x00000002 , 0x0000003e 
+ 00013459  0x00000927 deposit  0x00000022 
+ 00013460  0x00000928 store  0x00000004 , 0x0000416a 
+ 00013461  0x00000929 rtn  0x00000030 
+ 00013462  0x0000092a deposit  0x00000028 
+ 00013463  0x0000092b store  0x00000004 , 0x0000416a 
+ 00013464  0x0000092c rtn 
+ 00013465  0x0000092f set0  0x00000025 , 0x00000000 
+ 00013466  0x00000930 bpatch  0x00000046 , 0x00004008 
+ 00013467  0x00000931 call  0x0000531b 
+ 00013468  0x00000932 call  0x000034b4 
+ 00013469  0x00000933 store  0x00000001 , 0x00000046 
+ 00013470  0x00000934 setarg  0x00000000 
+ 00013471  0x00000935 store  0x00000002 , 0x00000286 
+ 00013472  0x00000936 setarg  0x00001c80 
+ 00013473  0x00000937 store  0x00000002 , 0x00000051 
+ 00013474  0x00000938 fetch  0x00000001 , 0x00000030 
+ 00013475  0x00000939 set1  0x00000000 , 0x0000003f 
+ 00013476  0x0000093a store  0x00000001 , 0x00000030 
+ 00013477  0x0000093b jam  0x00000000 , 0x0000004b 
+ 00013478  0x0000093c jam  0x00000000 , 0x0000004c 
+ 00013479  0x0000093d jam  0x00000000 , 0x0000009f 
+ 00013480  0x0000093e branch  0x00003b2c 
+ 00013481  0x00000942 set0  0x00000025 , 0x00000000 
+ 00013482  0x00000943 bpatch  0x00000047 , 0x00004008 
+ 00013483  0x00000944 force  0x00000000 , 0x0000003f 
+ 00013484  0x00000945 store  0x00000008 , 0x00004261 
+ 00013485  0x00000946 istore  0x00000008 , 0x00000005 
+ 00013486  0x00000947 call  0x000031ef 
+ 00013487  0x00000948 branch  0x00003294 
+ 00013488  0x0000094b fetch  0x00000001 , 0x00000011 
+ 00013489  0x0000094c increase  0xffffffff , 0x0000003f 
+ 00013490  0x0000094d store  0x00000001 , 0x00000011 
+ 00013491  0x0000094e rtn 
+ 00013492  0x00000951 fetch  0x00000001 , 0x0000416f 
+ 00013493  0x00000952 increase  0x00000001 , 0x0000003f 
+ 00013494  0x00000953 store  0x00000001 , 0x0000416f 
+ 00013495  0x00000954 rtn 
+ 00013496  0x00000958 set0  0x00000025 , 0x00000000 
+ 00013497  0x00000959 bpatch  0x00000048 , 0x00004009 
+ 00013498  0x0000095a fetch  0x00000001 , 0x00004271 
+ 00013499  0x0000095b beq  0x00000003 , 0x000034be 
+ 00013500  0x0000095c fetch  0x00000001 , 0x00000048 
+ 00013501  0x0000095d bne  0x00000001 , 0x000034c2 
+ 00013502  0x0000095f call  0x00003f9d 
+ 00013503  0x00000960 nbranch  0x000034c2 , 0x00000005 
+ 00013504  0x00000961 call  0x000031ca 
+ 00013505  0x00000962 jam  0x00000000 , 0x00004271 
+ 00013506  0x00000964 set0  0x00000025 , 0x00000000 
+ 00013507  0x00000965 bpatch  0x00000049 , 0x00004009 
+ 00013508  0x00000966 call  0x00003e12 
+ 00013509  0x00000967 call  0x0000376a 
+ 00013510  0x00000968 jam  0x00000002 , 0x000009bd 
+ 00013511  0x00000969 call  0x00007d86 
+ 00013512  0x0000096a call  0x0000530d 
+ 00013513  0x0000096b call  0x000042eb 
+ 00013514  0x0000096c call  0x000075f4 
+ 00013515  0x0000096d fetch  0x00000001 , 0x00000030 
+ 00013516  0x0000096e set0  0x00000000 
+ 00013517  0x0000096f store  0x00000001 , 0x00000030 
+ 00013518  0x00000970 jam  0x00000000 , 0x0000470a 
+ 00013519  0x00000972 fetch  0x00000001 , 0x0000004c 
+ 00013520  0x00000973 compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00013521  0x00000974 branch  0x000034d3 , 0x00000001 
+ 00013522  0x00000975 set0  0x00000001 , 0x00000000 
+ 00013523  0x00000977 fetch  0x00000001 , 0x00000047 
+ 00013524  0x00000978 bbit0  0x00000003 , 0x000034d5 
+ 00013525  0x0000097a fetch  0x00000001 , 0x0000004b 
+ 00013526  0x0000097b rtnbit0  0x00000006 
+ 00013527  0x0000097c set0  0x00000002 , 0x00000000 
+ 00013528  0x0000097d rtn 
+ 00013529  0x00000980 set0  0x00000025 , 0x00000000 
+ 00013530  0x00000981 bpatch  0x0000004a , 0x00004009 
+ 00013531  0x00000982 fetch  0x00000001 , 0x00000173 
+ 00013532  0x00000983 rtn  0x00000034 
+ 00013533  0x00000984 icopy  0x00000004 
+ 00013534  0x00000985 call  0x00003579 
+ 00013535  0x00000986 nrtn  0x0000002d 
+ 00013536  0x00000987 force  0x00000000 , 0x00000001 
+ 00013537  0x00000988 call  0x000037de 
+ 00013538  0x00000989 deposit  0x00000004 
+ 00013539  0x0000098a store  0x00000001 , 0x00000077 
+ 00013540  0x0000098b force  0x00000000 , 0x0000003f 
+ 00013541  0x0000098c store  0x00000001 , 0x00000173 
+ 00013542  0x0000098d rtn 
+ 00013543  0x00000994 set0  0x00000025 , 0x00000000 
+ 00013544  0x00000995 bpatch  0x0000004b , 0x00004009 
+ 00013545  0x00000996 fetch  0x00000001 , 0x00000030 
+ 00013546  0x00000997 bbit0  0x00000002 , 0x000034f5 
+ 00013547  0x00000998 force  0x00000007 , 0x00000001 
+ 00013548  0x00000999 bmark0  0x00000007 , 0x000034f4 
+ 00013549  0x0000099a call  0x000037a9 
+ 00013550  0x0000099b nbranch  0x000034f5 , 0x00000001 
+ 00013551  0x0000099c branch  0x000034f5 , 0x0000002e 
+ 00013552  0x0000099d call  0x00003523 
+ 00013553  0x0000099e setarg  0x00000002 
+ 00013554  0x0000099f store  0x00000002 , 0x00004168 
+ 00013555  0x000009a0 rtn 
+ 00013556  0x000009a2 nrtn  0x0000002e 
+ 00013557  0x000009a4 set0  0x00000025 , 0x00000000 
+ 00013558  0x000009a5 bpatch  0x0000004c , 0x00004009 
+ 00013559  0x000009a6 call  0x00003283 
+ 00013560  0x000009a7 nbranch  0x00003508 , 0x00000005 
+ 00013561  0x000009a8 fetch  0x00000001 , 0x00000047 
+ 00013562  0x000009a9 bbit0  0x00000003 , 0x00003511 
+ 00013563  0x000009ab bmark1  0x00000005 , 0x00003515 
+ 00013564  0x000009ac fetch  0x00000001 , 0x0000017e 
+ 00013565  0x000009ad bbit1  0x00000006 , 0x0000351c 
+ 00013566  0x000009ae fetch  0x00000002 , 0x00004168 
+ 00013567  0x000009af increase  0xffffffff , 0x0000003f 
+ 00013568  0x000009b0 store  0x00000002 , 0x00004168 
+ 00013569  0x000009b1 branch  0x00003505 , 0x00000034 
+ 00013570  0x000009b2 fetch  0x00000001 , 0x00004165 
+ 00013571  0x000009b3 iforce  0x00000001 
+ 00013572  0x000009b4 rtn 
+ 00013573  0x000009b7 set0  0x00000025 , 0x00000000 
+ 00013574  0x000009b8 bpatch  0x0000004d , 0x00004009 
+ 00013575  0x000009b9 call  0x00003703 
+ 00013576  0x000009bb call  0x000037a9 
+ 00013577  0x000009bc branch  0x00003511 , 0x00000001 
+ 00013578  0x000009bd call  0x00005621 
+ 00013579  0x000009be branch  0x00003520 , 0x00000028 
+ 00013580  0x000009bf fetch  0x00000001 , 0x0000004b 
+ 00013581  0x000009c0 bbit1  0x00000006 , 0x00003522 
+ 00013582  0x000009c1 bmark1  0x00000005 , 0x00003515 
+ 00013583  0x000009c2 fetch  0x00000001 , 0x0000017e 
+ 00013584  0x000009c3 bbit1  0x00000006 , 0x0000351c 
+ 00013585  0x000009c5 force  0x00000001 , 0x00000001 
+ 00013586  0x000009c6 rtn  0x00000029 
+ 00013587  0x000009c7 force  0x00000000 , 0x00000001 
+ 00013588  0x000009c8 rtn 
+ 00013589  0x000009ca set0  0x00000025 , 0x00000000 
+ 00013590  0x000009cb bpatch  0x0000004e , 0x00004009 
+ 00013591  0x000009cc fetch  0x00000001 , 0x00000019 
+ 00013592  0x000009cd iforce  0x00000001 
+ 00013593  0x000009ce rtnne  0x00000001 
+ 00013594  0x000009cf force  0x00000000 , 0x00000001 
+ 00013595  0x000009d0 rtn 
+ 00013596  0x000009d2 fetch  0x00000001 , 0x00000157 
+ 00013597  0x000009d3 and  0x0000003f , 0x0000000f , 0x00000001 
+ 00013598  0x000009d4 set1  0x00000005 , 0x00000000 
+ 00013599  0x000009d5 rtn 
+ 00013600  0x000009d7 force  0x00000013 , 0x00000001 
+ 00013601  0x000009d8 branch  0x00003523 
+ 00013602  0x000009da call  0x0000352d 
+ 00013603  0x000009dd set0  0x00000025 , 0x00000000 
+ 00013604  0x000009de bpatch  0x0000004f , 0x00004009 
+ 00013605  0x000009df fetcht  0x00000001 , 0x00000047 
+ 00013606  0x000009e0 set1  0x00000003 , 0x00000002 
+ 00013607  0x000009e1 storet  0x00000001 , 0x00000047 
+ 00013608  0x000009e2 deposit  0x00000001 
+ 00013609  0x000009e3 store  0x00000001 , 0x00004165 
+ 00013610  0x000009e4 setarg  0x0000ffff 
+ 00013611  0x000009e5 store  0x00000002 , 0x00004168 
+ 00013612  0x000009e6 rtn 
+ 00013613  0x000009e9 set0  0x00000025 , 0x00000000 
+ 00013614  0x000009ea bpatch  0x00000050 , 0x0000400a 
+ 00013615  0x000009eb fetch  0x00000001 , 0x0000004c 
+ 00013616  0x000009ec isolate1  0x00000005 , 0x0000003f 
+ 00013617  0x000009ed fetch  0x00000002 , 0x0000427e 
+ 00013618  0x000009ee branch  0x00003544 , 0x00000001 
+ 00013619  0x000009ef force  0x00000003 , 0x00000001 
+ 00013620  0x000009f0 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013621  0x000009f1 rtn  0x00000002 
+ 00013622  0x000009f2 force  0x00000004 , 0x00000001 
+ 00013623  0x000009f3 sub  0x0000003f , 0x0000001b , 0x0000003e 
+ 00013624  0x000009f4 rtn  0x00000002 
+ 00013625  0x000009f5 force  0x0000000a , 0x00000001 
+ 00013626  0x000009f6 sub  0x0000003f , 0x00000079 , 0x0000003e 
+ 00013627  0x000009f7 rtn  0x00000002 
+ 00013628  0x000009f8 force  0x0000000b , 0x00000001 
+ 00013629  0x000009f9 sub  0x0000003f , 0x000000b7 , 0x0000003e 
+ 00013630  0x000009fa rtn  0x00000002 
+ 00013631  0x000009fb force  0x0000000e , 0x00000001 
+ 00013632  0x000009fc sub  0x0000003f , 0x000000e0 , 0x0000003e 
+ 00013633  0x000009fd rtn  0x00000002 
+ 00013634  0x000009fe force  0x0000000f , 0x00000001 
+ 00013635  0x000009ff rtn 
+ 00013636  0x00000a01 force  0x00000003 , 0x00000001 
+ 00013637  0x00000a02 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013638  0x00000a03 rtn  0x00000002 
+ 00013639  0x00000a04 force  0x00000004 , 0x00000001 
+ 00013640  0x00000a05 sub  0x0000003f , 0x00000036 , 0x0000003e 
+ 00013641  0x00000a06 rtn  0x00000002 
+ 00013642  0x00000a07 force  0x0000000a , 0x00000001 
+ 00013643  0x00000a08 arg  0x0000016f , 0x00000002 
+ 00013644  0x00000a09 isub  0x00000002 , 0x0000003e 
+ 00013645  0x00000a0a nrtn  0x00000002 
+ 00013646  0x00000a0b force  0x0000000e , 0x00000001 
+ 00013647  0x00000a0c arg  0x000002a7 , 0x00000002 
+ 00013648  0x00000a0d isub  0x00000002 , 0x0000003e 
+ 00013649  0x00000a0e nrtn  0x00000002 
+ 00013650  0x00000a0f force  0x0000000f , 0x00000001 
+ 00013651  0x00000a10 rtn 
+ 00013652  0x00000a1a fetch  0x00000001 , 0x00000030 
+ 00013653  0x00000a1b bbit0  0x00000001 , 0x00003559 
+ 00013654  0x00000a1c fetch  0x00000002 , 0x00000032 
+ 00013655  0x00000a1d branch  0x00003559 , 0x00000034 
+ 00013656  0x00000a1e nbranch  0x0000355b , 0x0000002e 
+ 00013657  0x00000a20 call  0x00003aec 
+ 00013658  0x00000a22 add  0x00000028 , 0x00000001 , 0x00000021 
+ 00013659  0x00000a24 enable  0x00000010 
+ 00013660  0x00000a25 fetch  0x00000002 , 0x0000003e 
+ 00013661  0x00000a26 rshift  0x0000003f , 0x0000003f 
+ 00013662  0x00000a27 arg  0x00000500 , 0x00000002 
+ 00013663  0x00000a28 iadd  0x00000002 , 0x0000003f 
+ 00013664  0x00000a29 call  0x00003abd 
+ 00013665  0x00000a2a call  0x00003982 
+ 00013666  0x00000a2b force  0x00000003 , 0x00000024 
+ 00013667  0x00000a2c call  0x00003960 
+ 00013668  0x00000a2d call  0x00003481 
+ 00013669  0x00000a2e call  0x00003a86 
+ 00013670  0x00000a2f set0  0x00000025 , 0x00000000 
+ 00013671  0x00000a30 bpatch  0x00000051 , 0x0000400a 
+ 00013672  0x00000a31 fetch  0x00000002 , 0x0000003e 
+ 00013673  0x00000a32 rshift  0x0000003f , 0x0000003f 
+ 00013674  0x00000a33 call  0x00003abd 
+ 00013675  0x00000a34 call  0x00003a7f 
+ 00013676  0x00000a35 enable  0x0000000d 
+ 00013677  0x00000a36 fetch  0x00000002 , 0x0000003e 
+ 00013678  0x00000a37 arg  0x000003bb , 0x00000002 
+ 00013679  0x00000a38 iadd  0x00000002 , 0x0000001b 
+ 00013680  0x00000a39 correlate  0x0000003e , 0x00000003 
+ 00013681  0x00000a3a copy  0x0000001a , 0x00000002 
+ 00013682  0x00000a3b storet  0x00000006 , 0x00000099 
+ 00013683  0x00000a3c disable  0x0000000d 
+ 00013684  0x00000a3d nrtn  0x00000018 
+ 00013685  0x00000a3e arg  0x000003bb , 0x00000029 
+ 00013686  0x00000a3f copy  0x00000021 , 0x00000028 
+ 00013687  0x00000a40 branch  0x00003bed , 0x0000002b 
+ 00013688  0x00000a41 rtn 
+ 00013689  0x00000a45 set0  0x00000025 , 0x00000000 
+ 00013690  0x00000a46 bpatch  0x00000052 , 0x0000400a 
+ 00013691  0x00000a47 call  0x00003554 
+ 00013692  0x00000a48 nbranch  0x00003992 , 0x00000018 
+ 00013693  0x00000a49 call  0x00003a50 
+ 00013694  0x00000a4a bmark0  0x00000011 , 0x00003582 
+ 00013695  0x00000a4b fetch  0x00000002 , 0x000000f5 
+ 00013696  0x00000a4c increase  0x00000001 , 0x0000003f 
+ 00013697  0x00000a4d store  0x00000002 , 0x000000f5 
+ 00013698  0x00000a4f rshift  0x00000021 , 0x00000002 
+ 00013699  0x00000a50 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00013700  0x00000a52 set0  0x00000025 , 0x00000000 
+ 00013701  0x00000a53 bpatch  0x00000053 , 0x0000400a 
+ 00013702  0x00000a54 enable  0x00000007 
+ 00013703  0x00000a55 enable  0x0000000a 
+ 00013704  0x00000a56 enable  0x0000000b 
+ 00013705  0x00000a57 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013706  0x00000a58 rshift8  0x0000000c , 0x0000003f 
+ 00013707  0x00000a59 store  0x00000001 , 0x0000015c 
+ 00013708  0x00000a5a parse  0x00000003 , 0x00000000 , 0x00000004 
+ 00013709  0x00000a5b inject  0x00000000 , 0x00000007 
+ 00013710  0x00000a5c copy  0x0000000c , 0x0000003f 
+ 00013711  0x00000a5d store  0x00000001 , 0x00000019 
+ 00013712  0x00000a5e parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013713  0x00000a5f rshift8  0x0000000c , 0x0000003f 
+ 00013714  0x00000a60 store  0x00000001 , 0x0000015d 
+ 00013715  0x00000a61 fetch  0x00000001 , 0x00000019 
+ 00013716  0x00000a62 sub  0x0000003f , 0x00000003 , 0x0000003e 
+ 00013717  0x00000a63 branch  0x0000359a , 0x00000002 
+ 00013718  0x00000a64 beq  0x00000007 , 0x0000359a 
+ 00013719  0x00000a65 fetch  0x00000001 , 0x0000004c 
+ 00013720  0x00000a66 isolate1  0x00000005 , 0x0000003f 
+ 00013721  0x00000a67 setflag  0x00000001 , 0x00000001 , 0x00000015 
+ 00013722  0x00000a69 set0  0x00000025 , 0x00000000 
+ 00013723  0x00000a6a bpatch  0x00000054 , 0x0000400a 
+ 00013724  0x00000a6b parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013725  0x00000a6c disable  0x0000000b 
+ 00013726  0x00000a6d disable  0x0000000a 
+ 00013727  0x00000a6e branch  0x000036a8 , 0x00000006 
+ 00013728  0x00000a6f bmark0  0x00000011 , 0x000035a4 
+ 00013729  0x00000a70 fetch  0x00000002 , 0x000000f7 
+ 00013730  0x00000a71 increase  0x00000001 , 0x0000003f 
+ 00013731  0x00000a72 store  0x00000002 , 0x000000f7 
+ 00013732  0x00000a74 set0  0x00000025 , 0x00000000 
+ 00013733  0x00000a75 bpatch  0x00000055 , 0x0000400a 
+ 00013734  0x00000a76 fetch  0x00000001 , 0x0000015c 
+ 00013735  0x00000a77 compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00013736  0x00000a78 setflag  0x00000001 , 0x0000000a , 0x00000000 
+ 00013737  0x00000a79 branch  0x000035b5 , 0x00000001 
+ 00013738  0x00000a7a icompare  0x00000007 , 0x00000004 
+ 00013739  0x00000a7b branch  0x000035b4 , 0x00000001 
+ 00013740  0x00000a7c bmark0  0x00000007 , 0x000036c6 
+ 00013741  0x00000a7d fetcht  0x00000001 , 0x000000af 
+ 00013742  0x00000a7e icompare  0x00000007 , 0x00000002 
+ 00013743  0x00000a7f nbranch  0x000036c6 , 0x00000001 
+ 00013744  0x00000a80 fetch  0x00000001 , 0x00000047 
+ 00013745  0x00000a81 set0  0x00000005 , 0x0000003f 
+ 00013746  0x00000a82 set1  0x00000004 , 0x0000003f 
+ 00013747  0x00000a83 store  0x00000001 , 0x00000047 
+ 00013748  0x00000a85 enable  0x0000002d 
+ 00013749  0x00000a87 set0  0x00000025 , 0x00000000 
+ 00013750  0x00000a88 bpatch  0x00000056 , 0x0000400a 
+ 00013751  0x00000a89 fetch  0x00000001 , 0x00000019 
+ 00013752  0x00000a8a icopy  0x00000001 
+ 00013753  0x00000a8b bmark1  0x0000000a , 0x000035c5 
+ 00013754  0x00000a8c fetcht  0x00000001 , 0x0000015d 
+ 00013755  0x00000a8d fetch  0x00000001 , 0x00000047 
+ 00013756  0x00000a8e set0  0x00000000 , 0x0000003f 
+ 00013757  0x00000a8f isolate1  0x00000000 , 0x00000002 
+ 00013758  0x00000a90 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00013759  0x00000a91 isolate1  0x00000001 , 0x00000002 
+ 00013760  0x00000a92 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00013761  0x00000a93 store  0x00000001 , 0x00000047 
+ 00013762  0x00000a94 isolate0  0x00000001 , 0x00000002 
+ 00013763  0x00000a95 branch  0x000035c5 , 0x00000001 
+ 00013764  0x00000a96 call  0x00003703 
+ 00013765  0x00000a98 set0  0x00000025 , 0x00000000 
+ 00013766  0x00000a99 bpatch  0x00000057 , 0x0000400a 
+ 00013767  0x00000a9a arg  0x00000000 , 0x00000002 
+ 00013768  0x00000a9b call  0x00003ab4 
+ 00013769  0x00000a9c and  0x00000001 , 0x0000000f , 0x0000003f 
+ 00013770  0x00000a9d beq  0x00000001 , 0x000035f4 
+ 00013771  0x00000a9e beq  0x00000000 , 0x000036c6 
+ 00013772  0x00000a9f beq  0x00000002 , 0x000036d3 
+ 00013773  0x00000aa0 fetcht  0x00000001 , 0x0000015d 
+ 00013774  0x00000aa1 fetch  0x00000001 , 0x00000047 
+ 00013775  0x00000aa2 icompare  0x00000004 , 0x00000002 
+ 00013776  0x00000aa3 nbranch  0x000035d4 , 0x00000001 
+ 00013777  0x00000aa4 bmark0  0x0000000a , 0x000035d3 
+ 00013778  0x00000aa5 bbit0  0x00000007 , 0x000035d4 
+ 00013779  0x00000aa7 set1  0x0000000f , 0x00000000 
+ 00013780  0x00000aa9 set0  0x00000025 , 0x00000000 
+ 00013781  0x00000aaa bpatch  0x00000058 , 0x0000400b 
+ 00013782  0x00000aab deposit  0x00000001 
+ 00013783  0x00000aac beq  0x00000003 , 0x000035f6 
+ 00013784  0x00000aad beq  0x00000004 , 0x000035fa 
+ 00013785  0x00000aae beq  0x00000007 , 0x000035e4 
+ 00013786  0x00000aaf beq  0x00000008 , 0x000035f9 
+ 00013787  0x00000ab0 arg  0x00000004 , 0x00000002 
+ 00013788  0x00000ab1 call  0x00003ab4 
+ 00013789  0x00000ab2 beq  0x0000000a , 0x000035f5 
+ 00013790  0x00000ab3 beq  0x0000000b , 0x000035f8 
+ 00013791  0x00000ab4 arg  0x00000008 , 0x00000002 
+ 00013792  0x00000ab5 call  0x00003ab4 
+ 00013793  0x00000ab6 beq  0x0000000e , 0x000035f5 
+ 00013794  0x00000ab7 beq  0x0000000f , 0x000035f8 
+ 00013795  0x00000ab8 rtn 
+ 00013796  0x00000abc set0  0x00000025 , 0x00000000 
+ 00013797  0x00000abd bpatch  0x00000059 , 0x0000400b 
+ 00013798  0x00000abe enable  0x0000000d 
+ 00013799  0x00000abf enable  0x00000009 
+ 00013800  0x00000ac0 enable  0x0000000e 
+ 00013801  0x00000ac1 arg  0x000000d0 , 0x00000005 
+ 00013802  0x00000ac2 force  0x0000001e , 0x00000039 
+ 00013803  0x00000ac4 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013804  0x00000ac5 rshift3  0x0000000c , 0x0000003f 
+ 00013805  0x00000ac6 istore  0x00000001 , 0x00000005 
+ 00013806  0x00000ac7 loop  0x000035eb 
+ 00013807  0x00000ac8 bmark0  0x00000007 , 0x000036c6 
+ 00013808  0x00000ac9 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013809  0x00000aca nsetflag  0x00000006 , 0x00000008 , 0x00000000 
+ 00013810  0x00000acb branch  0x000036b5 , 0x00000006 
+ 00013811  0x00000acc branch  0x00003696 
+ 00013812  0x00000ad0 branch  0x000036c6 
+ 00013813  0x00000ad4 set1  0x00000010 , 0x00000000 
+ 00013814  0x00000ad6 enable  0x0000000c 
+ 00013815  0x00000ad7 branch  0x000035fb 
+ 00013816  0x00000adb set1  0x00000010 , 0x00000000 
+ 00013817  0x00000add set1  0x00000002 , 0x00000015 
+ 00013818  0x00000adf enable  0x0000000d 
+ 00013819  0x00000ae1 set0  0x00000025 , 0x00000000 
+ 00013820  0x00000ae2 bpatch  0x0000005a , 0x0000400b 
+ 00013821  0x00000ae3 bmark1  0x00000001 , 0x000036c6 
+ 00013822  0x00000ae4 isolate0  0x00000001 , 0x00000015 
+ 00013823  0x00000ae5 branch  0x00003608 , 0x00000001 
+ 00013824  0x00000ae6 disable  0x00000007 
+ 00013825  0x00000ae7 enable  0x0000000d 
+ 00013826  0x00000ae8 disable  0x0000000c 
+ 00013827  0x00000ae9 add  0x00000022 , 0x00000002 , 0x0000000b 
+ 00013828  0x00000aea correlate  0x00000022 , 0x00000026 
+ 00013829  0x00000aeb nbranch  0x000036b5 , 0x00000018 
+ 00013830  0x00000aec set1  0x00000010 , 0x00000000 
+ 00013831  0x00000aed enable  0x00000007 
+ 00013832  0x00000aef set0  0x00000025 , 0x00000000 
+ 00013833  0x00000af0 bpatch  0x0000005b , 0x0000400b 
+ 00013834  0x00000af1 enable  0x0000000e 
+ 00013835  0x00000af2 enable  0x00000009 
+ 00013836  0x00000af3 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013837  0x00000af4 rshift8  0x0000000c , 0x0000003f 
+ 00013838  0x00000af5 store  0x00000001 , 0x0000017f 
+ 00013839  0x00000af6 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013840  0x00000af7 bmark1  0x00000010 , 0x00003614 
+ 00013841  0x00000af8 rshift3  0x0000000c , 0x00000039 
+ 00013842  0x00000af9 rshift3  0x00000039 , 0x00000039 
+ 00013843  0x00000afa branch  0x00003617 
+ 00013844  0x00000afc parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013845  0x00000afd rshift  0x0000000c , 0x00000039 
+ 00013846  0x00000afe parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013847  0x00000b00 set0  0x00000025 , 0x00000000 
+ 00013848  0x00000b01 bpatch  0x0000005c , 0x0000400b 
+ 00013849  0x00000b02 deposit  0x00000039 
+ 00013850  0x00000b03 store  0x00000002 , 0x0000015e 
+ 00013851  0x00000b04 branch  0x0000365b , 0x00000034 
+ 00013852  0x00000b05 isub  0x00000035 , 0x0000003e 
+ 00013853  0x00000b06 branch  0x000036b5 , 0x00000002 
+ 00013854  0x00000b07 set0  0x00000025 , 0x00000000 
+ 00013855  0x00000b08 bpatch  0x0000005d , 0x0000400b 
+ 00013856  0x00000b09 set0  0x00000000 , 0x00000000 
+ 00013857  0x00000b0a fetch  0x00000001 , 0x0000017f 
+ 00013858  0x00000b0b and_into  0x00000003 , 0x0000003f 
+ 00013859  0x00000b0c arg  0x00000475 , 0x00000005 
+ 00013860  0x00000b0d beq  0x00000003 , 0x0000362b 
+ 00013861  0x00000b0e bmark1  0x00000011 , 0x00003657 
+ 00013862  0x00000b10 fetch  0x00000001 , 0x0000017f 
+ 00013863  0x00000b11 and_into  0x00000003 , 0x0000003f 
+ 00013864  0x00000b12 beq  0x00000002 , 0x00003630 
+ 00013865  0x00000b13 beq  0x00000001 , 0x00003645 
+ 00013866  0x00000b14 branch  0x000036b5 
+ 00013867  0x00000b17 fetch  0x00000002 , 0x0000015e 
+ 00013868  0x00000b18 sub  0x0000003f , 0x00000070 , 0x0000003e 
+ 00013869  0x00000b19 nbranch  0x000036b5 , 0x00000002 
+ 00013870  0x00000b1a bmark1  0x0000000f , 0x00003696 
+ 00013871  0x00000b1b branch  0x00003657 
+ 00013872  0x00000b1f set0  0x00000025 , 0x00000000 
+ 00013873  0x00000b20 bpatch  0x0000005e , 0x0000400b 
+ 00013874  0x00000b21 bmark1  0x0000000f , 0x00003696 
+ 00013875  0x00000b22 fetch  0x00000002 , 0x0000015e 
+ 00013876  0x00000b23 arg  0x000002e0 , 0x00000002 
+ 00013877  0x00000b24 isub  0x00000002 , 0x0000003e 
+ 00013878  0x00000b25 branch  0x000036b5 , 0x00000002 
+ 00013879  0x00000b26 fetch  0x00000001 , 0x0000028c 
+ 00013880  0x00000b27 bbit0  0x00000000 , 0x0000363b 
+ 00013881  0x00000b28 bbit0  0x00000001 , 0x00003640 
+ 00013882  0x00000b29 branch  0x000036c6 
+ 00013883  0x00000b2b jam  0x00000001 , 0x0000028a 
+ 00013884  0x00000b2c fetch  0x00000002 , 0x00000286 
+ 00013885  0x00000b2d bne  0x00000000 , 0x000036c6 
+ 00013886  0x00000b2e arg  0x00001000 , 0x00000005 
+ 00013887  0x00000b2f branch  0x00003657 
+ 00013888  0x00000b31 jam  0x00000002 , 0x0000028a 
+ 00013889  0x00000b32 fetch  0x00000002 , 0x00000288 
+ 00013890  0x00000b33 bne  0x00000000 , 0x000036c6 
+ 00013891  0x00000b34 arg  0x00001400 , 0x00000005 
+ 00013892  0x00000b35 branch  0x00003657 
+ 00013893  0x00000b38 set0  0x00000025 , 0x00000000 
+ 00013894  0x00000b39 bpatch  0x0000005f , 0x0000400b 
+ 00013895  0x00000b3a bmark1  0x0000000f , 0x00003696 
+ 00013896  0x00000b3b fetch  0x00000002 , 0x0000015e 
+ 00013897  0x00000b3c arg  0x000002e0 , 0x00000002 
+ 00013898  0x00000b3d isub  0x00000002 , 0x0000003e 
+ 00013899  0x00000b3e branch  0x000036b5 , 0x00000002 
+ 00013900  0x00000b3f fetch  0x00000001 , 0x0000028a 
+ 00013901  0x00000b40 beq  0x00000001 , 0x00003650 
+ 00013902  0x00000b41 beq  0x00000002 , 0x00003654 
+ 00013903  0x00000b42 branch  0x000036c6 
+ 00013904  0x00000b44 arg  0x00001000 , 0x00000005 
+ 00013905  0x00000b45 fetch  0x00000002 , 0x00000286 
+ 00013906  0x00000b46 iadd  0x00000005 , 0x00000005 
+ 00013907  0x00000b47 branch  0x00003657 
+ 00013908  0x00000b49 arg  0x00001400 , 0x00000005 
+ 00013909  0x00000b4a fetch  0x00000002 , 0x00000288 
+ 00013910  0x00000b4b iadd  0x00000005 , 0x00000005 
+ 00013911  0x00000b4d parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013912  0x00000b4e rshift3  0x0000000c , 0x0000003f 
+ 00013913  0x00000b4f istore  0x00000001 , 0x00000005 
+ 00013914  0x00000b50 loop  0x00003657 
+ 00013915  0x00000b52 set0  0x00000025 , 0x00000000 
+ 00013916  0x00000b53 bpatch  0x00000060 , 0x0000400c 
+ 00013917  0x00000b54 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013918  0x00000b55 branch  0x000036af , 0x00000006 
+ 00013919  0x00000b56 fetch  0x00000001 , 0x000043f3 
+ 00013920  0x00000b57 beq  0x00000001 , 0x000036c6 
+ 00013921  0x00000b58 bmark1  0x00000011 , 0x00003682 
+ 00013922  0x00000b59 bmark1  0x0000000f , 0x000036c3 
+ 00013923  0x00000b5a fetch  0x00000001 , 0x0000017f 
+ 00013924  0x00000b5b compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013925  0x00000b5c branch  0x00003682 , 0x00000001 
+ 00013926  0x00000b5d fetch  0x00000002 , 0x0000015e 
+ 00013927  0x00000b5e branch  0x00003682 , 0x00000034 
+ 00013928  0x00000b5f set0  0x00000025 , 0x00000000 
+ 00013929  0x00000b60 bpatch  0x00000061 , 0x0000400c 
+ 00013930  0x00000b61 fetch  0x00000001 , 0x0000028a 
+ 00013931  0x00000b62 beq  0x00000001 , 0x0000366e 
+ 00013932  0x00000b63 beq  0x00000002 , 0x00003678 
+ 00013933  0x00000b64 branch  0x00003b31 
+ 00013934  0x00000b66 fetch  0x00000002 , 0x00000286 
+ 00013935  0x00000b67 fetcht  0x00000002 , 0x0000015e 
+ 00013936  0x00000b68 iadd  0x00000002 , 0x0000003f 
+ 00013937  0x00000b69 store  0x00000002 , 0x00000286 
+ 00013938  0x00000b6a beq  0x00000000 , 0x00003b31 
+ 00013939  0x00000b6b fetcht  0x00000002 , 0x00001000 
+ 00013940  0x00000b6c increase  0x00000004 , 0x00000002 
+ 00013941  0x00000b6d isub  0x00000002 , 0x0000003e 
+ 00013942  0x00000b6e call  0x000037cd , 0x00000005 
+ 00013943  0x00000b6f branch  0x00003682 
+ 00013944  0x00000b71 fetch  0x00000002 , 0x00000288 
+ 00013945  0x00000b72 fetcht  0x00000002 , 0x0000015e 
+ 00013946  0x00000b73 iadd  0x00000002 , 0x0000003f 
+ 00013947  0x00000b74 store  0x00000002 , 0x00000288 
+ 00013948  0x00000b75 beq  0x00000000 , 0x00003b31 
+ 00013949  0x00000b76 fetcht  0x00000002 , 0x00001400 
+ 00013950  0x00000b77 add  0x00000002 , 0x00000004 , 0x00000002 
+ 00013951  0x00000b78 isub  0x00000002 , 0x0000003e 
+ 00013952  0x00000b79 call  0x000037d1 , 0x00000005 
+ 00013953  0x00000b7a branch  0x00003682 
+ 00013954  0x00000b7c set0  0x00000025 , 0x00000000 
+ 00013955  0x00000b7d bpatch  0x00000062 , 0x0000400c 
+ 00013956  0x00000b7e fetcht  0x00000001 , 0x0000004c 
+ 00013957  0x00000b7f fetch  0x00000001 , 0x0000017f 
+ 00013958  0x00000b80 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013959  0x00000b81 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00013960  0x00000b82 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00013961  0x00000b83 storet  0x00000001 , 0x0000004c 
+ 00013962  0x00000b84 nbranch  0x0000368c , 0x00000001 
+ 00013963  0x00000b85 set1  0x00000001 , 0x00000000 
+ 00013964  0x00000b87 bmark0  0x00000011 , 0x00003696 
+ 00013965  0x00000b88 isolate1  0x00000006 , 0x00000002 
+ 00013966  0x00000b89 branch  0x00003696 , 0x00000001 
+ 00013967  0x00000b8a fetch  0x00000002 , 0x000000f9 
+ 00013968  0x00000b8b increase  0x00000001 , 0x0000003f 
+ 00013969  0x00000b8c store  0x00000002 , 0x000000f9 
+ 00013970  0x00000b8d set1  0x00000005 , 0x00000000 
+ 00013971  0x00000b8e set0  0x00000007 , 0x00000002 
+ 00013972  0x00000b8f set0  0x00000001 , 0x00000000 
+ 00013973  0x00000b90 storet  0x00000001 , 0x0000004c 
+ 00013974  0x00000b92 set0  0x00000025 , 0x00000000 
+ 00013975  0x00000b93 bpatch  0x00000063 , 0x0000400c 
+ 00013976  0x00000b94 fetcht  0x00000001 , 0x0000015d 
+ 00013977  0x00000b95 fetch  0x00000001 , 0x00000047 
+ 00013978  0x00000b96 set1  0x00000005 , 0x0000003f 
+ 00013979  0x00000b97 isolate1  0x00000002 , 0x00000002 
+ 00013980  0x00000b98 setflag  0x00000001 , 0x00000002 , 0x0000003f 
+ 00013981  0x00000b99 isolate1  0x0000000a , 0x00000000 
+ 00013982  0x00000b9a setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00013983  0x00000b9b store  0x00000001 , 0x00000047 
+ 00013984  0x00000b9c fetch  0x00000002 , 0x0000015e 
+ 00013985  0x00000b9d nbranch  0x000036c6 , 0x00000034 
+ 00013986  0x00000b9e fetch  0x00000001 , 0x0000004c 
+ 00013987  0x00000b9f set0  0x00000007 , 0x0000003f 
+ 00013988  0x00000ba0 store  0x00000001 , 0x0000004c 
+ 00013989  0x00000ba1 fetch  0x00000001 , 0x0000017f 
+ 00013990  0x00000ba2 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00013991  0x00000ba4 branch  0x000036c6 
+ 00013992  0x00000ba7 set0  0x00000025 , 0x00000000 
+ 00013993  0x00000ba8 bpatch  0x00000064 , 0x0000400c 
+ 00013994  0x00000ba9 disable  0x0000002d 
+ 00013995  0x00000baa fetch  0x00000002 , 0x0000001a 
+ 00013996  0x00000bab increase  0x00000001 , 0x0000003f 
+ 00013997  0x00000bac store  0x00000002 , 0x0000001a 
+ 00013998  0x00000bad branch  0x000036c6 
+ 00013999  0x00000baf fetch  0x00000002 , 0x0000001c 
+ 00014000  0x00000bb0 increase  0x00000001 , 0x0000003f 
+ 00014001  0x00000bb1 store  0x00000002 , 0x0000001c 
+ 00014002  0x00000bb2 call  0x000036b6 
+ 00014003  0x00000bb3 bmark0  0x00000011 , 0x000036b5 
+ 00014004  0x00000bb4 set1  0x00000005 , 0x00000000 
+ 00014005  0x00000bb6 branch  0x000036c6 
+ 00014006  0x00000bb9 set0  0x00000025 , 0x00000000 
+ 00014007  0x00000bba bpatch  0x00000065 , 0x0000400c 
+ 00014008  0x00000bbb fetch  0x00000001 , 0x0000017f 
+ 00014009  0x00000bbc compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014010  0x00000bbd nbranch  0x000036bf , 0x00000001 
+ 00014011  0x00000bbf fetcht  0x00000001 , 0x0000004c 
+ 00014012  0x00000bc0 set0  0x00000006 , 0x00000002 
+ 00014013  0x00000bc1 storet  0x00000001 , 0x0000004c 
+ 00014014  0x00000bc2 rtn 
+ 00014015  0x00000bc6 fetcht  0x00000001 , 0x0000004c 
+ 00014016  0x00000bc7 set0  0x00000007 , 0x00000002 
+ 00014017  0x00000bc8 storet  0x00000001 , 0x0000004c 
+ 00014018  0x00000bc9 branch  0x00003eca 
+ 00014019  0x00000bcc fetch  0x00000001 , 0x00000047 
+ 00014020  0x00000bcd set1  0x00000005 , 0x0000003f 
+ 00014021  0x00000bce store  0x00000001 , 0x00000047 
+ 00014022  0x00000bd0 set0  0x00000025 , 0x00000000 
+ 00014023  0x00000bd1 bpatch  0x00000066 , 0x0000400c 
+ 00014024  0x00000bd2 disable  0x0000001d 
+ 00014025  0x00000bd3 disable  0x0000001c 
+ 00014026  0x00000bd4 disable  0x0000000d 
+ 00014027  0x00000bd5 disable  0x0000000c 
+ 00014028  0x00000bd6 disable  0x00000009 
+ 00014029  0x00000bd7 disable  0x0000000e 
+ 00014030  0x00000bd8 disable  0x00000007 
+ 00014031  0x00000bd9 branch  0x00003992 , 0x00000021 
+ 00014032  0x00000bda until  0x0000003e , 0x00000027 
+ 00014033  0x00000bdb nop  0x00000064 
+ 00014034  0x00000bdc branch  0x00003992 
+ 00014035  0x00000bdf set0  0x00000025 , 0x00000000 
+ 00014036  0x00000be0 bpatch  0x00000067 , 0x0000400c 
+ 00014037  0x00000be1 enable  0x00000009 
+ 00014038  0x00000be2 enable  0x0000000c 
+ 00014039  0x00000be3 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014040  0x00000be4 isolate1  0x0000003a , 0x0000003f 
+ 00014041  0x00000be5 setflag  0x00000001 , 0x00000000 , 0x00000000 
+ 00014042  0x00000be6 copy  0x00000020 , 0x00000002 
+ 00014043  0x00000be7 ialigned  0x00000020 
+ 00014044  0x00000be8 ialigned  0x0000001e 
+ 00014045  0x00000be9 pulse  0x00000015 
+ 00014046  0x00000bea setsect  0x00000002 , 0x000fffff 
+ 00014047  0x00000beb setsect  0x00000003 , 0x0000ffff 
+ 00014048  0x00000bec nop  0x00000020 
+ 00014049  0x00000bed iverify  0x0000000d 
+ 00014050  0x00000bee deposit  0x0000002c 
+ 00014051  0x00000bef store  0x00000003 , 0x00000177 
+ 00014052  0x00000bf0 deposit  0x0000002d 
+ 00014053  0x00000bf1 store  0x00000001 , 0x0000017a 
+ 00014054  0x00000bf2 copy  0x00000002 , 0x00000020 
+ 00014055  0x00000bf3 branch  0x000036e9 , 0x00000001 
+ 00014056  0x00000bf4 branch  0x000036b5 
+ 00014057  0x00000bf6 set0  0x00000025 , 0x00000000 
+ 00014058  0x00000bf7 bpatch  0x00000068 , 0x0000400d 
+ 00014059  0x00000bf8 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014060  0x00000bf9 ialigned  0x0000001f 
+ 00014061  0x00000bfa ialigned  0x00000004 
+ 00014062  0x00000bfb ialigned  0x0000002e 
+ 00014063  0x00000bfc ialigned  0x00000012 
+ 00014064  0x00000bfd force  0x00000000 , 0x0000003f 
+ 00014065  0x00000bfe parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014066  0x00000bff branch  0x000036b5 , 0x00000006 
+ 00014067  0x00000c00 setarg  0x0ffffffc 
+ 00014068  0x00000c01 iand  0x00000012 , 0x0000003f 
+ 00014069  0x00000c02 store  0x00000004 , 0x00000164 
+ 00014070  0x00000c03 deposit  0x0000001d 
+ 00014071  0x00000c04 store  0x00000003 , 0x00000174 
+ 00014072  0x00000c05 deposit  0x0000001c 
+ 00014073  0x00000c06 store  0x00000001 , 0x00000172 
+ 00014074  0x00000c07 deposit  0x00000004 
+ 00014075  0x00000c08 store  0x00000001 , 0x00000173 
+ 00014076  0x00000c09 deposit  0x0000002e 
+ 00014077  0x00000c0a store  0x00000002 , 0x0000017b 
+ 00014078  0x00000c0b deposit  0x00000021 
+ 00014079  0x00000c0c inject  0x00000001 , 0x00000020 
+ 00014080  0x00000c0d compare  0x00000002 , 0x00000001 , 0x0000000f 
+ 00014081  0x00000c0e setflag  0x00000001 , 0x0000000b , 0x00000000 
+ 00014082  0x00000c0f branch  0x000036c6 
+ 00014083  0x00000c12 set0  0x00000025 , 0x00000000 
+ 00014084  0x00000c13 bpatch  0x00000069 , 0x0000400d 
+ 00014085  0x00000c14 fetch  0x00000001 , 0x00000047 
+ 00014086  0x00000c15 rtnbit0  0x00000003 
+ 00014087  0x00000c16 set0  0x00000003 , 0x0000003f 
+ 00014088  0x00000c17 setflip  0x00000006 , 0x0000003f 
+ 00014089  0x00000c18 store  0x00000001 , 0x00000047 
+ 00014090  0x00000c19 fetch  0x00000001 , 0x00004165 
+ 00014091  0x00000c1a beq  0x00000013 , 0x00003719 
+ 00014092  0x00000c1b rtneq  0x00000007 
+ 00014093  0x00000c1c fetch  0x00000001 , 0x0000004b 
+ 00014094  0x00000c1d rtnbit0  0x00000006 , 0x0000003f 
+ 00014095  0x00000c1e set0  0x00000006 , 0x0000003f 
+ 00014096  0x00000c1f set1  0x00000007 , 0x0000003f 
+ 00014097  0x00000c20 store  0x00000001 , 0x0000004b 
+ 00014098  0x00000c21 set0  0x00000002 , 0x00000000 
+ 00014099  0x00000c22 fetch  0x00000002 , 0x000042d6 
+ 00014100  0x00000c23 nrtn  0x00000034 
+ 00014101  0x00000c24 fetch  0x00000001 , 0x0000004b 
+ 00014102  0x00000c25 set0  0x00000007 , 0x0000003f 
+ 00014103  0x00000c26 store  0x00000001 , 0x0000004b 
+ 00014104  0x00000c27 branch  0x000047fb 
+ 00014105  0x00000c2a set0  0x00000025 , 0x00000000 
+ 00014106  0x00000c2b bpatch  0x0000006a , 0x0000400d 
+ 00014107  0x00000c2c fetch  0x00000001 , 0x000003dd 
+ 00014108  0x00000c2d rshift  0x0000003f , 0x0000003f 
+ 00014109  0x00000c2e beq  0x00000011 , 0x00003736 
+ 00014110  0x00000c2f beq  0x00000012 , 0x0000373f 
+ 00014111  0x00000c30 beq  0x00000018 , 0x0000376a 
+ 00014112  0x00000c31 beq  0x0000007f , 0x00003726 
+ 00014113  0x00000c32 rtnne  0x00000003 
+ 00014114  0x00000c33 fetch  0x00000001 , 0x000003de 
+ 00014115  0x00000c34 beq  0x0000002b , 0x0000372e 
+ 00014116  0x00000c35 beq  0x00000011 , 0x00003729 
+ 00014117  0x00000c36 rtn 
+ 00014118  0x00000c39 fetch  0x00000001 , 0x000003de 
+ 00014119  0x00000c3a set1  0x00000007 , 0x0000003f 
+ 00014120  0x00000c3b rtn 
+ 00014121  0x00000c3d rtn  0x00000029 
+ 00014122  0x00000c3e fetch  0x00000001 , 0x00000030 
+ 00014123  0x00000c3f rtnbit1  0x00000004 
+ 00014124  0x00000c40 jam  0x00000031 , 0x0000007c 
+ 00014125  0x00000c41 rtn 
+ 00014126  0x00000c45 rtn  0x00000029 
+ 00014127  0x00000c46 fetch  0x00000001 , 0x00000031 
+ 00014128  0x00000c47 isolate1  0x00000004 , 0x0000003f 
+ 00014129  0x00000c48 branch  0x00003733 , 0x00000001 
+ 00014130  0x00000c4a rtn 
+ 00014131  0x00000c4c set0  0x00000004 , 0x0000003f 
+ 00014132  0x00000c4d store  0x00000001 , 0x00000031 
+ 00014133  0x00000c4e rtn 
+ 00014134  0x00000c51 set0  0x00000025 , 0x00000000 
+ 00014135  0x00000c52 bpatch  0x0000006b , 0x0000400d 
+ 00014136  0x00000c53 fetch  0x00000001 , 0x0000004c 
+ 00014137  0x00000c54 set1  0x00000002 , 0x0000003f 
+ 00014138  0x00000c55 store  0x00000001 , 0x0000004c 
+ 00014139  0x00000c56 hjam  0x00000001 , 0x00008011 
+ 00014140  0x00000c57 fetch  0x00000001 , 0x00000030 
+ 00014141  0x00000c58 isolate1  0x00000004 , 0x0000003f 
+ 00014142  0x00000c59 rtn 
+ 00014143  0x00000c5c set0  0x00000025 , 0x00000000 
+ 00014144  0x00000c5d bpatch  0x0000006c , 0x0000400d 
+ 00014145  0x00000c5e fetch  0x00000001 , 0x0000004c 
+ 00014146  0x00000c5f set0  0x00000002 , 0x0000003f 
+ 00014147  0x00000c60 store  0x00000001 , 0x0000004c 
+ 00014148  0x00000c61 hjam  0x00000000 , 0x00008011 
+ 00014149  0x00000c62 rtn 
+ 00014150  0x00000c66 set0  0x00000025 , 0x00000000 
+ 00014151  0x00000c67 bpatch  0x0000006d , 0x0000400d 
+ 00014152  0x00000c68 copy  0x00000022 , 0x0000003f 
+ 00014153  0x00000c69 store  0x00000004 , 0x000042b1 
+ 00014154  0x00000c6a add  0x00000022 , 0x00000003 , 0x00000011 
+ 00014155  0x00000c6b branch  0x0000374d , 0x00000029 
+ 00014156  0x00000c6c add  0x00000028 , 0x00000003 , 0x00000011 
+ 00014157  0x00000c6e fetcht  0x00000002 , 0x00000032 
+ 00014158  0x00000c6f deposit  0x00000011 
+ 00014159  0x00000c70 set0  0x0000001b , 0x0000003f 
+ 00014160  0x00000c71 idiv  0x00000002 
+ 00014161  0x00000c72 fetch  0x00000002 , 0x00000075 
+ 00014162  0x00000c73 call  0x00007f53 
+ 00014163  0x00000c74 remainder  0x00000013 
+ 00014164  0x00000c75 isub  0x00000013 , 0x0000003f 
+ 00014165  0x00000c76 branch  0x00003757 , 0x00000002 
+ 00014166  0x00000c77 iadd  0x00000002 , 0x0000003f 
+ 00014167  0x00000c79 iadd  0x00000011 , 0x0000003f 
+ 00014168  0x00000c7a store  0x00000004 , 0x00000034 
+ 00014169  0x00000c7b jam  0x00000000 , 0x000045f4 
+ 00014170  0x00000c7c fetch  0x00000001 , 0x00000030 
+ 00014171  0x00000c7d set1  0x00000001 , 0x0000003f 
+ 00014172  0x00000c7e store  0x00000001 , 0x00000030 
+ 00014173  0x00000c7f fetch  0x00000001 , 0x00000073 
+ 00014174  0x00000c80 store  0x00000001 , 0x0000008a 
+ 00014175  0x00000c81 setarg  0x00000000 
+ 00014176  0x00000c82 store  0x00000003 , 0x00004209 
+ 00014177  0x00000c83 store  0x00000003 , 0x0000420c 
+ 00014178  0x00000c84 store  0x00000001 , 0x000041f9 
+ 00014179  0x00000c85 jam  0x0000000b , 0x000009bd 
+ 00014180  0x00000c86 call  0x00007d86 
+ 00014181  0x00000c87 fetch  0x00000002 , 0x00004161 
+ 00014182  0x00000c88 store  0x00000002 , 0x0000003e 
+ 00014183  0x00000c89 nrtn  0x00000029 
+ 00014184  0x00000c8a add  0x00000004 , 0xffffffff , 0x00000007 
+ 00014185  0x00000c8b rtn 
+ 00014186  0x00000c8e set0  0x00000025 , 0x00000000 
+ 00014187  0x00000c8f bpatch  0x0000006e , 0x0000400d 
+ 00014188  0x00000c90 fetch  0x00000001 , 0x00000030 
+ 00014189  0x00000c91 rtnbit0  0x00000001 
+ 00014190  0x00000c92 set0  0x00000001 , 0x0000003f 
+ 00014191  0x00000c93 store  0x00000001 , 0x00000030 
+ 00014192  0x00000c94 fetch  0x00000002 , 0x0000415f 
+ 00014193  0x00000c95 store  0x00000002 , 0x0000003e 
+ 00014194  0x00000c96 disable  0x0000002b 
+ 00014195  0x00000c97 jam  0x0000000c , 0x000009bd 
+ 00014196  0x00000c98 branch  0x00007d86 
+ 00014197  0x00000c9c set0  0x00000025 , 0x00000000 
+ 00014198  0x00000c9d bpatch  0x0000006f , 0x0000400d 
+ 00014199  0x00000c9e enable  0x0000002e 
+ 00014200  0x00000c9f fetch  0x00000001 , 0x00000030 
+ 00014201  0x00000ca0 bbit1  0x00000001 , 0x00003783 
+ 00014202  0x00000ca1 rtnmark1  0x00000011 
+ 00014203  0x00000ca2 fetch  0x00000001 , 0x00000047 
+ 00014204  0x00000ca3 rtnbit1  0x00000003 
+ 00014205  0x00000ca4 fetch  0x00000001 , 0x00000048 
+ 00014206  0x00000ca5 nrtn  0x00000034 
+ 00014207  0x00000ca6 fetch  0x00000001 , 0x0000004b 
+ 00014208  0x00000ca7 rtnbit1  0x00000006 
+ 00014209  0x00000ca9 force  0x00000000 , 0x0000003f 
+ 00014210  0x00000caa rtn 
+ 00014211  0x00000cad bbit0  0x00000002 , 0x00003792 
+ 00014212  0x00000cae fetch  0x00000001 , 0x0000008a 
+ 00014213  0x00000caf beq  0x00000002 , 0x00003789 
+ 00014214  0x00000cb0 fetch  0x00000001 , 0x00000047 
+ 00014215  0x00000cb1 bbit1  0x00000003 , 0x0000379b 
+ 00014216  0x00000cb2 bmark0  0x00000008 , 0x0000379b 
+ 00014217  0x00000cb4 nbranch  0x0000379b , 0x00000029 
+ 00014218  0x00000cb5 fetch  0x00000001 , 0x00000048 
+ 00014219  0x00000cb6 nbranch  0x0000379b , 0x00000034 
+ 00014220  0x00000cb8 fetch  0x00000001 , 0x000000ee 
+ 00014221  0x00000cb9 increase  0xffffffff , 0x0000003f 
+ 00014222  0x00000cba store  0x00000001 , 0x000000ee 
+ 00014223  0x00000cbb nbranch  0x00003781 , 0x00000034 
+ 00014224  0x00000cbc jam  0x00000010 , 0x000000ee 
+ 00014225  0x00000cbd branch  0x0000379b 
+ 00014226  0x00000cc0 fetch  0x00000001 , 0x0000008a 
+ 00014227  0x00000cc1 bne  0x00000001 , 0x0000379b 
+ 00014228  0x00000cc2 fetch  0x00000001 , 0x0000008b 
+ 00014229  0x00000cc3 branch  0x0000379b , 0x00000034 
+ 00014230  0x00000cc4 increase  0xffffffff , 0x0000003f 
+ 00014231  0x00000cc5 store  0x00000001 , 0x0000008b 
+ 00014232  0x00000cc6 fetch  0x00000001 , 0x00000047 
+ 00014233  0x00000cc7 rtnbit1  0x00000003 
+ 00014234  0x00000cc8 nrtn  0x0000002d 
+ 00014235  0x00000cca fetch  0x00000001 , 0x0000008a 
+ 00014236  0x00000ccb increase  0xffffffff , 0x0000003f 
+ 00014237  0x00000ccc store  0x00000001 , 0x0000008a 
+ 00014238  0x00000ccd rtn 
+ 00014239  0x00000cd1 set0  0x00000025 , 0x00000000 
+ 00014240  0x00000cd2 bpatch  0x00000070 , 0x0000400e 
+ 00014241  0x00000cd3 disable  0x00000010 
+ 00014242  0x00000cd4 copy  0x00000002 , 0x0000001b 
+ 00014243  0x00000cd5 call  0x000032a1 
+ 00014244  0x00000cd6 disable  0x00000028 
+ 00014245  0x00000cd7 nrtn  0x00000005 
+ 00014246  0x00000cd8 force  0x00000000 , 0x0000001b 
+ 00014247  0x00000cd9 enable  0x00000028 
+ 00014248  0x00000cda rtn 
+ 00014249  0x00000cde fetch  0x00000001 , 0x000041f8 
+ 00014250  0x00000cdf icompare  0x000000ff , 0x00000004 
+ 00014251  0x00000ce0 rtn 
+ 00014252  0x00000ce4 set0  0x00000025 , 0x00000000 
+ 00014253  0x00000ce5 bpatch  0x00000071 , 0x0000400e 
+ 00014254  0x00000ce6 set0  0x00000001 , 0x00000000 
+ 00014255  0x00000ce8 jam  0x00000000 , 0x00000293 
+ 00014256  0x00000ce9 fetch  0x00000001 , 0x0000028c 
+ 00014257  0x00000cea rtn  0x00000034 
+ 00014258  0x00000ceb isolate1  0x00000000 , 0x0000003f 
+ 00014259  0x00000cec arg  0x00001000 , 0x00000006 
+ 00014260  0x00000ced call  0x000042fa , 0x00000001 
+ 00014261  0x00000cee set0  0x00000025 , 0x00000000 
+ 00014262  0x00000cef bpatch  0x00000072 , 0x0000400e 
+ 00014263  0x00000cf0 fetch  0x00000001 , 0x00000293 
+ 00014264  0x00000cf1 beq  0x00000001 , 0x000037c1 
+ 00014265  0x00000cf3 jam  0x00000000 , 0x00000293 
+ 00014266  0x00000cf4 fetch  0x00000001 , 0x0000028c 
+ 00014267  0x00000cf5 rtnbit0  0x00000001 
+ 00014268  0x00000cf6 arg  0x00001400 , 0x00000006 
+ 00014269  0x00000cf7 call  0x000042fa 
+ 00014270  0x00000cf8 fetch  0x00000001 , 0x00000293 
+ 00014271  0x00000cf9 beq  0x00000001 , 0x000037c7 
+ 00014272  0x00000cfa rtn 
+ 00014273  0x00000cfd fetch  0x00000001 , 0x0000028c 
+ 00014274  0x00000cfe set0  0x00000000 , 0x0000003f 
+ 00014275  0x00000cff store  0x00000001 , 0x0000028c 
+ 00014276  0x00000d00 setarg  0x00000000 
+ 00014277  0x00000d01 store  0x00000002 , 0x00000286 
+ 00014278  0x00000d02 rtn 
+ 00014279  0x00000d04 fetch  0x00000001 , 0x0000028c 
+ 00014280  0x00000d05 set0  0x00000001 , 0x0000003f 
+ 00014281  0x00000d06 store  0x00000001 , 0x0000028c 
+ 00014282  0x00000d07 setarg  0x00000000 
+ 00014283  0x00000d08 store  0x00000002 , 0x00000288 
+ 00014284  0x00000d09 rtn 
+ 00014285  0x00000d0c fetch  0x00000001 , 0x0000028c 
+ 00014286  0x00000d0d set1  0x00000000 , 0x0000003f 
+ 00014287  0x00000d0e store  0x00000001 , 0x0000028c 
+ 00014288  0x00000d0f rtn 
+ 00014289  0x00000d12 fetch  0x00000001 , 0x0000028c 
+ 00014290  0x00000d13 set1  0x00000001 , 0x0000003f 
+ 00014291  0x00000d14 store  0x00000001 , 0x0000028c 
+ 00014292  0x00000d15 rtn 
+ 00014293  0x00000d1c set0  0x00000025 , 0x00000000 
+ 00014294  0x00000d1d bpatch  0x00000073 , 0x0000400e 
+ 00014295  0x00000d1e add  0x00000028 , 0x00000001 , 0x00000021 
+ 00014296  0x00000d1f call  0x00003982 
+ 00014297  0x00000d20 force  0x00000003 , 0x00000024 
+ 00014298  0x00000d21 call  0x00003967 
+ 00014299  0x00000d22 call  0x00003aee 
+ 00014300  0x00000d23 call  0x00003aff 
+ 00014301  0x00000d24 branch  0x00003b05 
+ 00014302  0x00000d28 set0  0x00000025 , 0x00000000 
+ 00014303  0x00000d29 bpatch  0x00000074 , 0x0000400e 
+ 00014304  0x00000d2a call  0x00003aea 
+ 00014305  0x00000d2b deposit  0x00000028 
+ 00014306  0x00000d2c fetcht  0x00000004 , 0x0000416a 
+ 00014307  0x00000d2d isub  0x00000002 , 0x0000003f 
+ 00014308  0x00000d2e rtnne  0x00000001 
+ 00014309  0x00000d2f compare  0x00000000 , 0x00000001 , 0x0000001f 
+ 00014310  0x00000d30 nbranch  0x000037e9 , 0x00000001 
+ 00014311  0x00000d31 fetch  0x00000001 , 0x00000019 
+ 00014312  0x00000d32 rtn  0x00000034 
+ 00014313  0x00000d34 call  0x000037d5 
+ 00014314  0x00000d35 compare  0x00000010 , 0x00000001 , 0x0000001f 
+ 00014315  0x00000d36 branch  0x000036c6 , 0x00000001 
+ 00014316  0x00000d38 rshift  0x00000021 , 0x00000002 
+ 00014317  0x00000d39 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00014318  0x00000d3b set0  0x00000025 , 0x00000000 
+ 00014319  0x00000d3c bpatch  0x00000075 , 0x0000400e 
+ 00014320  0x00000d3d enable  0x00000007 
+ 00014321  0x00000d3e enable  0x0000000a 
+ 00014322  0x00000d3f enable  0x0000001b 
+ 00014323  0x00000d40 set0  0x00000010 , 0x00000000 
+ 00014324  0x00000d41 deposit  0x00000004 
+ 00014325  0x00000d42 inject  0x00000003 , 0x00000003 
+ 00014326  0x00000d43 deposit  0x00000001 
+ 00014327  0x00000d44 inject  0x00000003 , 0x00000004 
+ 00014328  0x00000d45 fetch  0x00000001 , 0x00000047 
+ 00014329  0x00000d46 inject  0x00000000 , 0x00000004 
+ 00014330  0x00000d47 inject  0x00000003 , 0x00000003 
+ 00014331  0x00000d48 enable  0x00000008 
+ 00014332  0x00000d49 inject  0x00000003 , 0x00000008 
+ 00014333  0x00000d4a disable  0x0000001b 
+ 00014334  0x00000d4b disable  0x00000008 
+ 00014335  0x00000d4c disable  0x0000000a 
+ 00014336  0x00000d4d set0  0x00000002 , 0x00000015 
+ 00014337  0x00000d4e arg  0x00000000 , 0x00000002 
+ 00014338  0x00000d4f call  0x00003ab4 
+ 00014339  0x00000d50 set0  0x00000025 , 0x00000000 
+ 00014340  0x00000d51 bpatch  0x00000076 , 0x0000400e 
+ 00014341  0x00000d52 and  0x00000001 , 0x0000001f , 0x0000003f 
+ 00014342  0x00000d53 beq  0x00000013 , 0x00003840 
+ 00014343  0x00000d54 beq  0x00000000 , 0x000036c6 
+ 00014344  0x00000d55 beq  0x00000001 , 0x000036c6 
+ 00014345  0x00000d56 beq  0x00000002 , 0x00003822 
+ 00014346  0x00000d57 beq  0x00000003 , 0x00003852 
+ 00014347  0x00000d58 beq  0x00000004 , 0x00003858 
+ 00014348  0x00000d59 beq  0x00000007 , 0x00003816 
+ 00014349  0x00000d5a beq  0x00000008 , 0x00003857 
+ 00014350  0x00000d5b arg  0x00000004 , 0x00000002 
+ 00014351  0x00000d5c call  0x00003ab4 
+ 00014352  0x00000d5d beq  0x0000000a , 0x00003854 
+ 00014353  0x00000d5e beq  0x0000000b , 0x0000385a 
+ 00014354  0x00000d5f arg  0x00000008 , 0x00000002 
+ 00014355  0x00000d60 call  0x00003ab4 
+ 00014356  0x00000d61 beq  0x0000000f , 0x0000385a 
+ 00014357  0x00000d62 branch  0x00003854 
+ 00014358  0x00000d66 set0  0x00000025 , 0x00000000 
+ 00014359  0x00000d67 bpatch  0x00000077 , 0x0000400e 
+ 00014360  0x00000d68 enable  0x0000001d 
+ 00014361  0x00000d69 enable  0x00000009 
+ 00014362  0x00000d6a enable  0x0000000e 
+ 00014363  0x00000d6b force  0x0000001e , 0x00000039 
+ 00014364  0x00000d6c arg  0x000000b2 , 0x00000006 
+ 00014365  0x00000d6e ifetch  0x00000001 , 0x00000006 
+ 00014366  0x00000d6f inject  0x00000003 , 0x00000008 
+ 00014367  0x00000d70 loop  0x0000381d 
+ 00014368  0x00000d71 bmark1  0x00000007 , 0x00003885 
+ 00014369  0x00000d72 branch  0x000036c6 
+ 00014370  0x00000d75 set0  0x00000025 , 0x00000000 
+ 00014371  0x00000d76 bpatch  0x00000078 , 0x0000400f 
+ 00014372  0x00000d77 fetch  0x00000001 , 0x00000180 
+ 00014373  0x00000d78 icopy  0x00000004 
+ 00014374  0x00000d79 fetch  0x00000001 , 0x0000008f 
+ 00014375  0x00000d7a icopy  0x0000001c 
+ 00014376  0x00000d7b fetch  0x00000003 , 0x0000414a 
+ 00014377  0x00000d7c icopy  0x0000001d 
+ 00014378  0x00000d7d fetch  0x00000002 , 0x00004144 
+ 00014379  0x00000d7e icopy  0x0000002e 
+ 00014380  0x00000d7f enable  0x00000009 
+ 00014381  0x00000d80 enable  0x0000001c 
+ 00014382  0x00000d81 copy  0x00000020 , 0x00000011 
+ 00014383  0x00000d82 call  0x00003979 
+ 00014384  0x00000d83 pulse  0x00000015 
+ 00014385  0x00000d84 nop  0x00000020 
+ 00014386  0x00000d85 copy  0x00000021 , 0x0000000b 
+ 00014387  0x00000d86 fetch  0x00000004 , 0x00000160 
+ 00014388  0x00000d87 icopy  0x00000021 
+ 00014389  0x00000d88 preload  0x0000001e 
+ 00014390  0x00000d89 set1  0x0000003a , 0x0000003f 
+ 00014391  0x00000d8a inject  0x00000003 , 0x00000048 
+ 00014392  0x00000d8b preload  0x0000001f 
+ 00014393  0x00000d8c inject  0x00000003 , 0x00000048 
+ 00014394  0x00000d8d copy  0x0000000b , 0x00000021 
+ 00014395  0x00000d8e copy  0x00000011 , 0x00000020 
+ 00014396  0x00000d8f enable  0x00000008 
+ 00014397  0x00000d90 inject  0x00000003 , 0x00000010 
+ 00014398  0x00000d91 disable  0x00000008 
+ 00014399  0x00000d92 branch  0x000036c6 
+ 00014400  0x00000d95 set0  0x00000025 , 0x00000000 
+ 00014401  0x00000d96 bpatch  0x00000079 , 0x0000400f 
+ 00014402  0x00000d97 enable  0x0000000e 
+ 00014403  0x00000d98 enable  0x00000009 
+ 00014404  0x00000d99 enable  0x0000001c 
+ 00014405  0x00000d9a fetch  0x00000001 , 0x000003dc 
+ 00014406  0x00000d9b and  0x0000003f , 0x000001f8 , 0x00000002 
+ 00014407  0x00000d9c arg  0x000003dc , 0x00000006 
+ 00014408  0x00000d9d increase  0x00000008 , 0x00000002 
+ 00014409  0x00000d9f add  0x00000002 , 0xffffffb8 , 0x00000013 
+ 00014410  0x00000da0 nbranch  0x0000384f , 0x00000002 
+ 00014411  0x00000da1 ifetch  0x00000009 , 0x00000006 
+ 00014412  0x00000da2 inject  0x00000003 , 0x00000048 
+ 00014413  0x00000da3 copy  0x00000013 , 0x00000002 
+ 00014414  0x00000da4 branch  0x00003849 
+ 00014415  0x00000da6 ifetch  0x00000009 , 0x00000006 
+ 00014416  0x00000da7 iinject  0x00000003 , 0x00000002 
+ 00014417  0x00000da8 branch  0x00003885 
+ 00014418  0x00000dab enable  0x0000001c 
+ 00014419  0x00000dac branch  0x0000385d 
+ 00014420  0x00000daf enable  0x0000001c 
+ 00014421  0x00000db0 set1  0x00000010 , 0x00000000 
+ 00014422  0x00000db1 branch  0x0000385d 
+ 00014423  0x00000db4 set1  0x00000002 , 0x00000015 
+ 00014424  0x00000db6 enable  0x0000001d 
+ 00014425  0x00000db7 branch  0x0000385d 
+ 00014426  0x00000dbb set1  0x00000002 , 0x00000015 
+ 00014427  0x00000dbc enable  0x0000001d 
+ 00014428  0x00000dbd set1  0x00000010 , 0x00000000 
+ 00014429  0x00000dc0 set0  0x00000025 , 0x00000000 
+ 00014430  0x00000dc1 bpatch  0x0000007a , 0x0000400f 
+ 00014431  0x00000dc2 fetch  0x00000001 , 0x0000004c 
+ 00014432  0x00000dc3 bbit0  0x00000005 , 0x00003873 
+ 00014433  0x00000dc4 sub  0x00000001 , 0x00000003 , 0x0000003e 
+ 00014434  0x00000dc5 branch  0x00003873 , 0x00000002 
+ 00014435  0x00000dc6 disable  0x0000000e 
+ 00014436  0x00000dc7 disable  0x0000001c 
+ 00014437  0x00000dc8 enable  0x0000001d 
+ 00014438  0x00000dc9 disable  0x00000007 
+ 00014439  0x00000dca set1  0x00000001 , 0x00000015 
+ 00014440  0x00000dcb isolate1  0x00000002 , 0x00000015 
+ 00014441  0x00000dcc branch  0x0000386d , 0x00000001 
+ 00014442  0x00000dcd setarg  0x000abeee 
+ 00014443  0x00000dce inject  0x00000003 , 0x00000014 
+ 00014444  0x00000dcf branch  0x00003871 
+ 00014445  0x00000dd1 setarg  0x005faeba 
+ 00014446  0x00000dd2 inject  0x00000003 , 0x00000018 
+ 00014447  0x00000dd3 setarg  0x00000012 
+ 00014448  0x00000dd4 inject  0x00000003 , 0x00000006 
+ 00014449  0x00000dd6 enable  0x00000007 
+ 00014450  0x00000dd7 set1  0x00000010 , 0x00000000 
+ 00014451  0x00000dd9 enable  0x0000000e 
+ 00014452  0x00000dda enable  0x00000009 
+ 00014453  0x00000ddb bmark1  0x00000005 , 0x0000388e 
+ 00014454  0x00000ddc fetch  0x00000001 , 0x0000427d 
+ 00014455  0x00000ddd inject  0x00000003 , 0x00000003 
+ 00014456  0x00000dde fetch  0x00000002 , 0x0000427e 
+ 00014457  0x00000ddf iforce  0x00000039 
+ 00014458  0x00000de0 bmark1  0x00000010 , 0x0000387d 
+ 00014459  0x00000de1 inject  0x00000003 , 0x00000005 
+ 00014460  0x00000de2 branch  0x0000387e 
+ 00014461  0x00000de4 inject  0x00000003 , 0x0000000d 
+ 00014462  0x00000de6 deposit  0x00000039 
+ 00014463  0x00000de7 branch  0x00003885 , 0x00000034 
+ 00014464  0x00000de8 fetch  0x00000002 , 0x0000016e 
+ 00014465  0x00000de9 iforce  0x00000006 
+ 00014466  0x00000deb ifetch  0x00000001 , 0x00000006 
+ 00014467  0x00000dec inject  0x00000003 , 0x00000008 
+ 00014468  0x00000ded loop  0x00003882 
+ 00014469  0x00000df1 enable  0x00000008 
+ 00014470  0x00000df2 inject  0x00000003 , 0x00000010 
+ 00014471  0x00000df3 disable  0x00000008 
+ 00014472  0x00000df4 call  0x00003523 
+ 00014473  0x00000df5 fetch  0x00000001 , 0x0000004c 
+ 00014474  0x00000df6 bbit0  0x00000005 , 0x000036c6 
+ 00014475  0x00000df7 force  0x00000000 , 0x0000003f 
+ 00014476  0x00000df8 inject  0x00000003 , 0x00000006 
+ 00014477  0x00000df9 branch  0x000036c6 
+ 00014478  0x00000dfd set0  0x00000025 , 0x00000000 
+ 00014479  0x00000dfe bpatch  0x0000007b , 0x0000400f 
+ 00014480  0x00000dff bmark1  0x00000010 , 0x00003897 
+ 00014481  0x00000e01 fetch  0x00000001 , 0x0000017f 
+ 00014482  0x00000e02 inject  0x00000003 , 0x00000003 
+ 00014483  0x00000e03 fetch  0x00000001 , 0x0000015e 
+ 00014484  0x00000e04 iforce  0x00000013 
+ 00014485  0x00000e05 inject  0x00000003 , 0x00000005 
+ 00014486  0x00000e06 branch  0x0000389c 
+ 00014487  0x00000e08 fetch  0x00000001 , 0x0000017f 
+ 00014488  0x00000e09 inject  0x00000003 , 0x00000003 
+ 00014489  0x00000e0a fetch  0x00000002 , 0x0000015e 
+ 00014490  0x00000e0b iforce  0x00000013 
+ 00014491  0x00000e0c inject  0x00000003 , 0x0000000d 
+ 00014492  0x00000e0e arg  0x00000475 , 0x00000006 
+ 00014493  0x00000e10 copy  0x00000013 , 0x0000003e 
+ 00014494  0x00000e11 branch  0x000038a3 , 0x00000005 
+ 00014495  0x00000e12 ifetch  0x00000001 , 0x00000006 
+ 00014496  0x00000e13 inject  0x00000003 , 0x00000008 
+ 00014497  0x00000e14 increase  0xffffffff , 0x00000013 
+ 00014498  0x00000e15 branch  0x0000389d 
+ 00014499  0x00000e17 fetch  0x00000002 , 0x000000fb 
+ 00014500  0x00000e18 increase  0x00000001 , 0x0000003f 
+ 00014501  0x00000e19 store  0x00000002 , 0x000000fb 
+ 00014502  0x00000e1a branch  0x00003885 
+ 00014503  0x00000e1e fetch  0x00000004 , 0x00000164 
+ 00014504  0x00000e1f add  0x0000003f , 0x00000007 , 0x00000011 
+ 00014505  0x00000e20 fetch  0x00000002 , 0x00000170 
+ 00014506  0x00000e21 nbranch  0x000038ad , 0x00000034 
+ 00014507  0x00000e22 increase  0xfffffffd , 0x00000011 
+ 00014508  0x00000e23 branch  0x000038b5 
+ 00014509  0x00000e25 mul32  0x0000003f , 0x0000000c , 0x0000003f 
+ 00014510  0x00000e26 hfetcht  0x00000002 , 0x00008040 
+ 00014511  0x00000e27 increase  0x00000001 , 0x00000002 
+ 00014512  0x00000e29 isub  0x00000002 , 0x0000003f 
+ 00014513  0x00000e2a nbranch  0x000038b4 , 0x00000002 
+ 00014514  0x00000e2b increase  0xffffffff , 0x00000011 
+ 00014515  0x00000e2c branch  0x000038b0 
+ 00014516  0x00000e2e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014517  0x00000e30 until  0x0000003e , 0x00000023 
+ 00014518  0x00000e31 compare  0x00000000 , 0x00000022 , 0x00000003 
+ 00014519  0x00000e32 nbranch  0x000038b5 , 0x00000001 
+ 00014520  0x00000e33 iforce  0x00000029 
+ 00014521  0x00000e34 copy  0x00000011 , 0x00000028 
+ 00014522  0x00000e35 iforce  0x00000029 
+ 00014523  0x00000e36 rtn 
+ 00014524  0x00000e3a set0  0x00000025 , 0x00000000 
+ 00014525  0x00000e3b bpatch  0x0000007c , 0x0000400f 
+ 00014526  0x00000e3c until  0x0000003e , 0x00000022 
+ 00014527  0x00000e3d deposit  0x0000001a 
+ 00014528  0x00000e3e iforce  0x00000006 
+ 00014529  0x00000e3f rshift16 , 0x0000003f , 0x0000003f 
+ 00014530  0x00000e40 isub  0x00000022 , 0x00000039 
+ 00014531  0x00000e41 and_into  0x00000003 , 0x00000039 
+ 00014532  0x00000e42 nbranch  0x000038c7 , 0x00000005 
+ 00014533  0x00000e43 force  0x00000000 , 0x0000003f 
+ 00014534  0x00000e44 branch  0x000038cb 
+ 00014535  0x00000e46 arg  0x00000ea6 , 0x00000002 
+ 00014536  0x00000e47 force  0x00000000 , 0x0000003f 
+ 00014537  0x00000e49 iadd  0x00000002 , 0x0000003f 
+ 00014538  0x00000e4a loop  0x000038c9 
+ 00014539  0x00000e4c iadd  0x00000006 , 0x0000003f 
+ 00014540  0x00000e4d div  0x0000003f , 0x0000000c 
+ 00014541  0x00000e4e call  0x00007f53 
+ 00014542  0x00000e4f quotient  0x0000003f 
+ 00014543  0x00000e50 store  0x00000002 , 0x00000170 
+ 00014544  0x00000e51 rtn 
+ 00014545  0x00000e54 set0  0x00000025 , 0x00000000 
+ 00014546  0x00000e55 bpatch  0x0000007d , 0x0000400f 
+ 00014547  0x00000e56 deposit  0x0000001a 
+ 00014548  0x00000e57 copy  0x00000019 , 0x00000002 
+ 00014549  0x00000e58 isub  0x00000002 , 0x0000003e 
+ 00014550  0x00000e59 nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
+ 00014551  0x00000e5a isub  0x00000002 , 0x00000002 
+ 00014552  0x00000e5b setarg  0x00000ea6 
+ 00014553  0x00000e5c isolate0  0x0000000f , 0x00000002 
+ 00014554  0x00000e5d branch  0x000038dd , 0x00000001 
+ 00014555  0x00000e5e setarg  0xffff0ea6 
+ 00014556  0x00000e5f iadd  0x00000002 , 0x00000002 
+ 00014557  0x00000e61 storet  0x00000006 , 0x0000036a 
+ 00014558  0x00000e62 rtn  0x00000036 
+ 00014559  0x00000e63 storet  0x00000006 , 0x00000038 
+ 00014560  0x00000e64 rtn 
+ 00014561  0x00000e67 disable  0x00000030 
+ 00014562  0x00000e68 fetch  0x00000006 , 0x0000036a 
+ 00014563  0x00000e69 branch  0x000038e5 , 0x00000036 
+ 00014564  0x00000e6a fetch  0x00000006 , 0x00000038 
+ 00014565  0x00000e6c iadd  0x00000019 , 0x00000030 
+ 00014566  0x00000e6d increase  0x0000000a , 0x00000030 
+ 00014567  0x00000e6e setarg  0x00000ea6 
+ 00014568  0x00000e6f isub  0x00000030 , 0x0000003f 
+ 00014569  0x00000e70 isolate0  0x0000000f , 0x0000003f 
+ 00014570  0x00000e71 branch  0x000038ef , 0x00000001 
+ 00014571  0x00000e72 setarg  0x0000f15a 
+ 00014572  0x00000e73 iadd  0x00000030 , 0x00000030 
+ 00014573  0x00000e75 copy  0x00000030 , 0x0000001a 
+ 00014574  0x00000e76 rtn 
+ 00014575  0x00000e78 force  0x00000000 , 0x0000003e 
+ 00014576  0x00000e79 branch  0x000038ed 
+ 00014577  0x00000e81 set0  0x00000025 , 0x00000000 
+ 00014578  0x00000e82 bpatch  0x0000007e , 0x0000400f 
+ 00014579  0x00000e83 call  0x000039b1 
+ 00014580  0x00000e84 copy  0x00000021 , 0x0000003f 
+ 00014581  0x00000e85 and_into  0x00000180 , 0x0000003f 
+ 00014582  0x00000e86 compare  0x00000003 , 0x00000024 , 0x00000007 
+ 00014583  0x00000e87 nbranch  0x000038fb , 0x00000001 
+ 00014584  0x00000e88 rshift3  0x0000003f , 0x0000003f 
+ 00014585  0x00000e89 iadd  0x00000017 , 0x0000003f 
+ 00014586  0x00000e8a branch  0x000038fc 
+ 00014587  0x00000e8c copy  0x00000017 , 0x0000003f 
+ 00014588  0x00000e8e div  0x0000003f , 0x0000004f 
+ 00014589  0x00000e8f pulse  0x00000015 
+ 00014590  0x00000e90 call  0x00007f53 
+ 00014591  0x00000e91 remainder  0x00000011 
+ 00014592  0x00000e92 add  0x00000011 , 0xffffffd8 , 0x00000002 
+ 00014593  0x00000e93 branch  0x00003904 , 0x00000002 
+ 00014594  0x00000e94 lshift  0x00000011 , 0x00000002 
+ 00014595  0x00000e95 branch  0x00003906 
+ 00014596  0x00000e97 lshift  0x00000002 , 0x00000002 
+ 00014597  0x00000e98 increase  0x00000001 , 0x00000002 
+ 00014598  0x00000e9a set0  0x00000025 , 0x00000000 
+ 00014599  0x00000e9b bpatch  0x0000007f , 0x0000400f 
+ 00014600  0x00000e9c fetch  0x00000001 , 0x00000031 
+ 00014601  0x00000e9d bbit0  0x00000003 , 0x00003918 
+ 00014602  0x00000e9f fetch  0x00000004 , 0x00004172 
+ 00014603  0x00000ea0 isub  0x00000021 , 0x0000003e 
+ 00014604  0x00000ea1 branch  0x00003918 , 0x00000002 
+ 00014605  0x00000ea2 call  0x00003937 
+ 00014606  0x00000ea3 fetch  0x00000001 , 0x00004179 
+ 00014607  0x00000ea4 rtn  0x00000034 
+ 00014608  0x00000ea5 fetch  0x00000001 , 0x00000031 
+ 00014609  0x00000ea6 set1  0x00000002 , 0x0000003f 
+ 00014610  0x00000ea7 store  0x00000001 , 0x00000031 
+ 00014611  0x00000ea8 fetch  0x00000005 , 0x00004187 
+ 00014612  0x00000ea9 store  0x00000005 , 0x0000417a 
+ 00014613  0x00000eaa ifetch  0x00000005 , 0x00000006 
+ 00014614  0x00000eab store  0x00000005 , 0x0000417f 
+ 00014615  0x00000eac call  0x0000393c 
+ 00014616  0x00000eae fetch  0x00000001 , 0x00000031 
+ 00014617  0x00000eaf rtnbit0  0x00000002 
+ 00014618  0x00000eb0 isolate1  0x00000001 , 0x00000021 
+ 00014619  0x00000eb1 branch  0x00003934 , 0x00000001 
+ 00014620  0x00000eb2 rshift3  0x00000002 , 0x00000011 
+ 00014621  0x00000eb3 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00014622  0x00000eb4 setarg  0x0000417a 
+ 00014623  0x00000eb5 iadd  0x00000011 , 0x00000011 
+ 00014624  0x00000eb6 ifetch  0x00000001 , 0x00000011 
+ 00014625  0x00000eb7 qisolate0  0x0000003f 
+ 00014626  0x00000eb8 branch  0x00003925 , 0x00000001 
+ 00014627  0x00000eb9 deposit  0x00000002 
+ 00014628  0x00000eba branch  0x00003931 
+ 00014629  0x00000ebc fetch  0x00000001 , 0x00004184 
+ 00014630  0x00000ebd iforce  0x00000012 
+ 00014631  0x00000ebe deposit  0x00000021 
+ 00014632  0x00000ebf and_into  0x00000180 , 0x0000003f 
+ 00014633  0x00000ec0 rshift3  0x0000003f , 0x0000003f 
+ 00014634  0x00000ec1 iadd  0x00000017 , 0x0000003f 
+ 00014635  0x00000ec2 idiv  0x00000012 
+ 00014636  0x00000ec3 setarg  0x00004192 
+ 00014637  0x00000ec4 call  0x00007f53 
+ 00014638  0x00000ec5 remainder  0x00000011 
+ 00014639  0x00000ec6 iadd  0x00000011 , 0x00000006 
+ 00014640  0x00000ec7 ifetch  0x00000001 , 0x00000006 
+ 00014641  0x00000ec9 store  0x00000001 , 0x00004185 
+ 00014642  0x00000eca iforce  0x00000002 
+ 00014643  0x00000ecb rtn 
+ 00014644  0x00000ece fetch  0x00000001 , 0x00004185 
+ 00014645  0x00000ecf iforce  0x00000002 
+ 00014646  0x00000ed0 rtn 
+ 00014647  0x00000ed3 fetch  0x00000001 , 0x00000031 
+ 00014648  0x00000ed4 set0  0x00000002 , 0x0000003f 
+ 00014649  0x00000ed5 set0  0x00000003 , 0x0000003f 
+ 00014650  0x00000ed6 store  0x00000001 , 0x00000031 
+ 00014651  0x00000ed7 rtn 
+ 00014652  0x00000ede set0  0x00000025 , 0x00000000 
+ 00014653  0x00000edf bpatch  0x00000080 , 0x00004010 
+ 00014654  0x00000ee0 arg  0x00004192 , 0x00000005 
+ 00014655  0x00000ee1 force  0x0000000a , 0x00000039 
+ 00014656  0x00000ee2 call  0x00007e91 
+ 00014657  0x00000ee3 arg  0x00004192 , 0x00000005 
+ 00014658  0x00000ee4 force  0x00000000 , 0x00000013 
+ 00014659  0x00000ee5 force  0x00000002 , 0x00000007 
+ 00014660  0x00000ee7 fetch  0x00000005 , 0x0000417a 
+ 00014661  0x00000ee8 iforce  0x00000002 
+ 00014662  0x00000ee9 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014663  0x00000eea branch  0x00003949 , 0x00000001 
+ 00014664  0x00000eeb rshift  0x00000002 , 0x00000002 
+ 00014665  0x00000eed isolate0  0x00000000 , 0x00000002 
+ 00014666  0x00000eee branch  0x0000394d , 0x00000001 
+ 00014667  0x00000eef deposit  0x00000013 
+ 00014668  0x00000ef0 istore  0x00000001 , 0x00000005 
+ 00014669  0x00000ef2 rshift2  0x00000002 , 0x00000002 
+ 00014670  0x00000ef3 increase  0x00000002 , 0x00000013 
+ 00014671  0x00000ef4 compare  0x00000028 , 0x00000013 , 0x000000fe 
+ 00014672  0x00000ef5 nbranch  0x00003956 , 0x00000001 
+ 00014673  0x00000ef6 fetch  0x00000005 , 0x0000417f 
+ 00014674  0x00000ef7 iforce  0x00000002 
+ 00014675  0x00000ef8 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014676  0x00000ef9 branch  0x00003956 , 0x00000001 
+ 00014677  0x00000efa rshift  0x00000002 , 0x00000002 
+ 00014678  0x00000efc sub  0x00000013 , 0x0000004e , 0x0000003e 
+ 00014679  0x00000efd branch  0x00003949 , 0x00000002 
+ 00014680  0x00000efe force  0x00000001 , 0x00000013 
+ 00014681  0x00000eff increase  0xffffffff , 0x00000007 
+ 00014682  0x00000f00 nbranch  0x00003944 , 0x00000005 
+ 00014683  0x00000f01 arg  0x00004192 , 0x00000011 
+ 00014684  0x00000f02 deposit  0x00000005 
+ 00014685  0x00000f03 isub  0x00000011 , 0x0000003f 
+ 00014686  0x00000f04 store  0x00000001 , 0x00004184 
+ 00014687  0x00000f05 rtn 
+ 00014688  0x00000f08 set0  0x00000025 , 0x00000000 
+ 00014689  0x00000f09 bpatch  0x00000081 , 0x00004010 
+ 00014690  0x00000f0a call  0x000038f1 
+ 00014691  0x00000f0b fetch  0x00000001 , 0x0000017e 
+ 00014692  0x00000f0c bbit0  0x00000005 , 0x00003966 
+ 00014693  0x00000f0d fetcht  0x00000001 , 0x000003f2 
+ 00014694  0x00000f0f branch  0x000039b9 
+ 00014695  0x00000f13 set0  0x00000025 , 0x00000000 
+ 00014696  0x00000f14 bpatch  0x00000082 , 0x00004010 
+ 00014697  0x00000f15 call  0x000038f1 
+ 00014698  0x00000f16 fetch  0x00000001 , 0x0000017e 
+ 00014699  0x00000f17 bbit0  0x00000004 , 0x0000396d 
+ 00014700  0x00000f18 fetcht  0x00000001 , 0x000003f1 
+ 00014701  0x00000f1a branch  0x000039c9 
+ 00014702  0x00000f1e force  0x00000000 , 0x0000002d 
+ 00014703  0x00000f1f fetch  0x00000003 , 0x00004147 
+ 00014704  0x00000f20 iforce  0x0000002c 
+ 00014705  0x00000f21 rtn 
+ 00014706  0x00000f24 set0  0x00000025 , 0x00000000 
+ 00014707  0x00000f25 bpatch  0x00000083 , 0x00004010 
+ 00014708  0x00000f26 fetch  0x00000001 , 0x00004276 
+ 00014709  0x00000f27 icopy  0x0000002d 
+ 00014710  0x00000f28 fetch  0x00000003 , 0x00004273 
+ 00014711  0x00000f29 icopy  0x0000002c 
+ 00014712  0x00000f2a rtn 
+ 00014713  0x00000f2d set0  0x00000025 , 0x00000000 
+ 00014714  0x00000f2e bpatch  0x00000084 , 0x00004010 
+ 00014715  0x00000f2f fetch  0x00000002 , 0x00004144 
+ 00014716  0x00000f30 icopy  0x0000002e 
+ 00014717  0x00000f31 fetch  0x00000001 , 0x00004143 
+ 00014718  0x00000f32 icopy  0x0000002d 
+ 00014719  0x00000f33 fetch  0x00000003 , 0x00004140 
+ 00014720  0x00000f34 icopy  0x0000002c 
+ 00014721  0x00000f35 rtn 
+ 00014722  0x00000f38 set0  0x00000025 , 0x00000000 
+ 00014723  0x00000f39 bpatch  0x00000085 , 0x00004010 
+ 00014724  0x00000f3a fetch  0x00000002 , 0x00000044 
+ 00014725  0x00000f3b icopy  0x0000002e 
+ 00014726  0x00000f3c fetch  0x00000001 , 0x00000043 
+ 00014727  0x00000f3d icopy  0x0000002d 
+ 00014728  0x00000f3e fetch  0x00000003 , 0x00000040 
+ 00014729  0x00000f3f icopy  0x0000002c 
+ 00014730  0x00000f40 rtn 
+ 00014731  0x00000f44 bmark1  0x00000020 , 0x0000398e 
+ 00014732  0x00000f45 rtnmark0  0x0000001d 
+ 00014733  0x00000f46 rtnmark0  0x0000001f 
+ 00014734  0x00000f48 and_into  0xffffff00 , 0x0000002c 
+ 00014735  0x00000f49 pulse  0x00000015 
+ 00014736  0x00000f4a nop  0x00000020 
+ 00014737  0x00000f4b rtn 
+ 00014738  0x00000f4f set0  0x00000025 , 0x00000000 
+ 00014739  0x00000f50 bpatch  0x00000086 , 0x00004010 
+ 00014740  0x00000f51 branch  0x000039a3 , 0x00000021 
+ 00014741  0x00000f52 hjam  0x000000d4 , 0x00000955 
+ 00014742  0x00000f53 nop  0x00000004 
+ 00014743  0x00000f54 hjam  0x000000d2 , 0x00000955 
+ 00014744  0x00000f55 nop  0x00000004 
+ 00014745  0x00000f56 hjam  0x000000d1 , 0x00000955 
+ 00014746  0x00000f57 nop  0x00000004 
+ 00014747  0x00000f58 fetch  0x00000001 , 0x00004280 
+ 00014748  0x00000f59 bbit1  0x00000000 , 0x000039a1 
+ 00014749  0x00000f5a bbit1  0x00000001 , 0x000039ae 
+ 00014750  0x00000f5b bbit1  0x00000002 , 0x000039a1 
+ 00014751  0x00000f5c bbit1  0x00000003 , 0x000039ae 
+ 00014752  0x00000f5d bbit1  0x00000004 , 0x000039ae 
+ 00014753  0x00000f60 hjam  0x000000d0 , 0x00000955 
+ 00014754  0x00000f61 hjam  0x000000e0 , 0x00000956 
+ 00014755  0x00000f63 force  0x00000000 , 0x00000015 
+ 00014756  0x00000f64 disable  0x00000021 
+ 00014757  0x00000f65 disable  0x00000020 
+ 00014758  0x00000f66 pulse  0x0000001e 
+ 00014759  0x00000f67 hjam  0x00000000 , 0x00008902 
+ 00014760  0x00000f68 hjam  0x00000000 , 0x00008901 
+ 00014761  0x00000f69 hjam  0x00000000 , 0x00008900 
+ 00014762  0x00000f6a hjam  0x00000000 , 0x00008903 
+ 00014763  0x00000f6b hjam  0x00000070 , 0x00008904 
+ 00014764  0x00000f6c hjam  0x00000000 , 0x00008906 
+ 00014765  0x00000f6d rtn 
+ 00014766  0x00000f72 hjam  0x000000d0 , 0x00000955 
+ 00014767  0x00000f73 hjam  0x000000c0 , 0x00000956 
+ 00014768  0x00000f74 branch  0x000039a3 
+ 00014769  0x00000f77 set0  0x00000025 , 0x00000000 
+ 00014770  0x00000f78 bpatch  0x00000087 , 0x00004010 
+ 00014771  0x00000f79 hjam  0x00000000 , 0x00008902 
+ 00014772  0x00000f7a hjam  0x00000000 , 0x00008901 
+ 00014773  0x00000f7b hjam  0x00000018 , 0x00008900 
+ 00014774  0x00000f7c hjam  0x000000a7 , 0x00008903 
+ 00014775  0x00000f7d hjam  0x0000007f , 0x00008904 
+ 00014776  0x00000f7e rtn 
+ 00014777  0x00000f81 set0  0x00000025 , 0x00000000 
+ 00014778  0x00000f82 bpatch  0x00000088 , 0x00004011 
+ 00014779  0x00000f84 storet  0x00000001 , 0x00000017 
+ 00014780  0x00000f85 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00014781  0x00000f86 hjam  0x00000007 , 0x0000096d 
+ 00014782  0x00000f87 branch  0x00003a13 
+ 00014783  0x00000f89 set0  0x00000025 , 0x00000000 
+ 00014784  0x00000f8a bpatch  0x00000089 , 0x00004011 
+ 00014785  0x00000f8b hjam  0x000000cf , 0x00008901 
+ 00014786  0x00000f8c nop  0x0000000a 
+ 00014787  0x00000f8d hjam  0x000000ff , 0x00008900 
+ 00014788  0x00000f8e hjam  0x000000af , 0x00008903 
+ 00014789  0x00000f8f hjam  0x000000ff , 0x00008904 
+ 00014790  0x00000f90 nop  0x0000000a 
+ 00014791  0x00000f91 hjam  0x000000a0 , 0x00008902 
+ 00014792  0x00000f92 rtn 
+ 00014793  0x00000f96 set0  0x00000025 , 0x00000000 
+ 00014794  0x00000f97 bpatch  0x0000008a , 0x00004011 
+ 00014795  0x00000f98 storet  0x00000001 , 0x00000017 
+ 00014796  0x00000f99 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00014797  0x00000f9a call  0x00003a13 
+ 00014798  0x00000f9b setarg  0x00000500 
+ 00014799  0x00000f9c call  0x00003b35 
+ 00014800  0x00000f9e hjam  0x00000001 , 0x00008906 
+ 00014801  0x00000f9f hjam  0x0000003c , 0x00008900 
+ 00014802  0x00000fa0 hjam  0x000000e0 , 0x00008901 
+ 00014803  0x00000fa1 hjam  0x00000012 , 0x0000096d 
+ 00014804  0x00000fa2 nop  0x0000000a 
+ 00014805  0x00000fa3 hjam  0x00000001 , 0x00008902 
+ 00014806  0x00000fa4 hjam  0x0000003d , 0x00008902 
+ 00014807  0x00000fa5 nop  0x0000000a 
+ 00014808  0x00000fa6 hjam  0x000000b7 , 0x00008903 
+ 00014809  0x00000fa7 nop  0x0000000a 
+ 00014810  0x00000fa8 hjam  0x0000007f , 0x00008902 
+ 00014811  0x00000fa9 fetch  0x00000001 , 0x00004280 
+ 00014812  0x00000faa bbit1  0x00000000 , 0x000039e1 
+ 00014813  0x00000fab bbit1  0x00000001 , 0x000039e5 
+ 00014814  0x00000fac bbit1  0x00000002 , 0x000039e9 
+ 00014815  0x00000fad bbit1  0x00000003 , 0x000039ed 
+ 00014816  0x00000fae bbit1  0x00000004 , 0x000039f1 
+ 00014817  0x00000fb0 hjam  0x000000f0 , 0x00000956 
+ 00014818  0x00000fb1 call  0x000039f5 
+ 00014819  0x00000fb2 hjam  0x000000d8 , 0x00000955 
+ 00014820  0x00000fb3 rtn 
+ 00014821  0x00000fb6 hjam  0x000000df , 0x00000956 
+ 00014822  0x00000fb7 call  0x000039f5 
+ 00014823  0x00000fb8 hjam  0x000000df , 0x00000955 
+ 00014824  0x00000fb9 rtn 
+ 00014825  0x00000fbc hjam  0x000000ff , 0x00000956 
+ 00014826  0x00000fbd call  0x000039f5 
+ 00014827  0x00000fbe hjam  0x000000df , 0x00000955 
+ 00014828  0x00000fbf rtn 
+ 00014829  0x00000fc1 hjam  0x000000ce , 0x00000956 
+ 00014830  0x00000fc2 call  0x000039f5 
+ 00014831  0x00000fc3 hjam  0x000000d8 , 0x00000955 
+ 00014832  0x00000fc4 rtn 
+ 00014833  0x00000fc7 hjam  0x000000cb , 0x00000956 
+ 00014834  0x00000fc8 call  0x000039f5 
+ 00014835  0x00000fc9 hjam  0x000000d8 , 0x00000955 
+ 00014836  0x00000fca rtn 
+ 00014837  0x00000fcd nop  0x00000004 
+ 00014838  0x00000fce hjam  0x000000d1 , 0x00000955 
+ 00014839  0x00000fcf nop  0x00000004 
+ 00014840  0x00000fd0 hjam  0x000000d2 , 0x00000955 
+ 00014841  0x00000fd1 nop  0x00000004 
+ 00014842  0x00000fd2 hjam  0x000000d4 , 0x00000955 
+ 00014843  0x00000fd3 rtn 
+ 00014844  0x00000fd7 hjam  0x00000006 , 0x00008042 
+ 00014845  0x00000fd8 call  0x00003b64 
+ 00014846  0x00000fda fetch  0x00000002 , 0x00004163 
+ 00014847  0x00000fdb bbit0  0x0000000e , 0x000039fe 
+ 00014848  0x00000fdc iforce  0x00000006 
+ 00014849  0x00000fdd arg  0x00008900 , 0x00000002 
+ 00014850  0x00000fdf ifetch  0x00000001 , 0x00000006 
+ 00014851  0x00000fe0 beq  0x000000ff , 0x00003a08 
+ 00014852  0x00000fe1 ior  0x00000002 , 0x00000005 
+ 00014853  0x00000fe2 ifetch  0x00000001 , 0x00000006 
+ 00014854  0x00000fe3 istore  0x00000001 , 0x00000005 
+ 00014855  0x00000fe4 branch  0x00003a02 
+ 00014856  0x00000fe6 set0  0x00000025 , 0x00000000 
+ 00014857  0x00000fe7 bpatch  0x0000008b , 0x00004011 
+ 00014858  0x00000fe8 call  0x00003cd2 
+ 00014859  0x00000fe9 call  0x00003a5f 
+ 00014860  0x00000feb setarg  0x000007d0 
+ 00014861  0x00000fec iadd  0x00000022 , 0x0000003f 
+ 00014862  0x00000fed store  0x00000004 , 0x00000168 
+ 00014863  0x00000fee set1  0x00000003 , 0x00000015 
+ 00014864  0x00000fef force  0x00000000 , 0x00000015 
+ 00014865  0x00000ff0 ncall  0x00003a2b , 0x0000002b 
+ 00014866  0x00000ff1 branch  0x00003a3f 
+ 00014867  0x00000ff5 set0  0x00000025 , 0x00000000 
+ 00014868  0x00000ff6 bpatch  0x0000008c , 0x00004011 
+ 00014869  0x00000ff7 setarg  0x00000960 
+ 00014870  0x00000ff8 iadd  0x00000011 , 0x00000002 
+ 00014871  0x00000ff9 fetch  0x00000001 , 0x0000415d 
+ 00014872  0x00000ffa hjam  0x00000004 , 0x0000895f 
+ 00014873  0x00000ffb imul32  0x00000002 , 0x0000003f 
+ 00014874  0x00000ffc fetcht  0x00000001 , 0x0000415e 
+ 00014875  0x00000ffd idiv  0x00000002 
+ 00014876  0x00000ffe call  0x00007f53 
+ 00014877  0x00000fff quotient  0x00000011 
+ 00014878  0x00001000 remainder  0x0000003f 
+ 00014879  0x00001001 lshift16  0x0000003f , 0x0000003f 
+ 00014880  0x00001002 lshift4  0x0000003f , 0x0000003f 
+ 00014881  0x00001003 idiv  0x00000002 
+ 00014882  0x00001004 call  0x00007f53 
+ 00014883  0x00001005 quotient  0x0000003f 
+ 00014884  0x00001006 lshift8  0x0000003f , 0x0000003f 
+ 00014885  0x00001007 lshift  0x0000003f , 0x0000003f 
+ 00014886  0x00001008 ior  0x00000011 , 0x0000003f 
+ 00014887  0x00001009 hstore  0x00000004 , 0x00008960 
+ 00014888  0x0000100a hjam  0x00000044 , 0x0000895f 
+ 00014889  0x0000100b hjam  0x000000c4 , 0x0000895f 
+ 00014890  0x0000100c rtn 
+ 00014891  0x00001010 set0  0x00000025 , 0x00000000 
+ 00014892  0x00001011 bpatch  0x0000008d , 0x00004011 
+ 00014893  0x00001012 hjam  0x00000002 , 0x00008906 
+ 00014894  0x00001013 setarg  0x0003d090 
+ 00014895  0x00001014 call  0x00003b35 
+ 00014896  0x00001015 hjam  0x0000007f , 0x00008900 
+ 00014897  0x00001016 nop  0x00000082 
+ 00014898  0x00001017 hjam  0x00000030 , 0x00008952 
+ 00014899  0x00001018 hjam  0x000000d0 , 0x00008901 
+ 00014900  0x00001019 hjam  0x00000070 , 0x00008952 
+ 00014901  0x0000101a hjam  0x000000f0 , 0x00008952 
+ 00014902  0x0000101b force  0x00000032 , 0x00000039 
+ 00014903  0x0000101d hfetch  0x00000001 , 0x00008980 
+ 00014904  0x0000101e bbit1  0x00000005 , 0x00003a3a 
+ 00014905  0x0000101f loop  0x00003a37 
+ 00014906  0x00001021 store  0x00000001 , 0x0000416e 
+ 00014907  0x00001022 hjam  0x00000000 , 0x00008901 
+ 00014908  0x00001023 hjam  0x00000000 , 0x00008900 
+ 00014909  0x00001024 hjam  0x00000000 , 0x00008906 
+ 00014910  0x00001025 rtn 
+ 00014911  0x00001028 set0  0x00000025 , 0x00000000 
+ 00014912  0x00001029 bpatch  0x0000008e , 0x00004011 
+ 00014913  0x0000102a fetch  0x00000001 , 0x0000416e 
+ 00014914  0x0000102b set1  0x00000005 , 0x0000003f 
+ 00014915  0x0000102c hstore  0x00000001 , 0x00008952 
+ 00014916  0x0000102d hfetcht  0x00000001 , 0x00008950 
+ 00014917  0x0000102e and_into  0x00000007 , 0x00000002 
+ 00014918  0x0000102f lshift3  0x0000003f , 0x0000003f 
+ 00014919  0x00001030 ior  0x00000002 , 0x0000003f 
+ 00014920  0x00001031 hstore  0x00000001 , 0x00008950 
+ 00014921  0x00001032 hfetch  0x00000001 , 0x00008951 
+ 00014922  0x00001033 set0  0x00000000 , 0x0000003f 
+ 00014923  0x00001034 hstore  0x00000001 , 0x00008951 
+ 00014924  0x00001035 hfetch  0x00000001 , 0x00008952 
+ 00014925  0x00001036 set0  0x00000005 , 0x0000003f 
+ 00014926  0x00001037 hstore  0x00000001 , 0x00008952 
+ 00014927  0x00001038 rtn 
+ 00014928  0x0000103b set0  0x00000025 , 0x00000000 
+ 00014929  0x0000103c bpatch  0x0000008f , 0x00004011 
+ 00014930  0x0000103d hfetch  0x00000002 , 0x00008981 
+ 00014931  0x0000103e rshift4  0x0000003f , 0x0000003f 
+ 00014932  0x0000103f rshift3  0x0000003f , 0x0000003f 
+ 00014933  0x00001040 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014934  0x00001041 and_into  0x000000ff , 0x0000003f 
+ 00014935  0x00001042 div  0x0000003f , 0x0000000a 
+ 00014936  0x00001043 call  0x00007f53 
+ 00014937  0x00001044 quotient  0x0000003f 
+ 00014938  0x00001045 lshift4  0x0000003f , 0x0000003f 
+ 00014939  0x00001046 remainder  0x00000002 
+ 00014940  0x00001047 ior  0x00000002 , 0x0000003f 
+ 00014941  0x00001048 store  0x00000001 , 0x00000018 
+ 00014942  0x00001049 rtn 
+ 00014943  0x0000104d hjam  0x00000006 , 0x00008042 
+ 00014944  0x0000104e hfetch  0x00000001 , 0x0000896b 
+ 00014945  0x0000104f set0  0x00000004 , 0x0000003f 
+ 00014946  0x00001050 set0  0x00000005 , 0x0000003f 
+ 00014947  0x00001051 hstore  0x00000001 , 0x0000896b 
+ 00014948  0x00001052 hjam  0x00000000 , 0x00008905 
+ 00014949  0x00001053 hjam  0x00000000 , 0x00008904 
+ 00014950  0x00001054 hjam  0x00000070 , 0x00008904 
+ 00014951  0x00001055 hjam  0x000000ff , 0x00008905 
+ 00014952  0x00001056 hfetch  0x00000001 , 0x0000896b 
+ 00014953  0x00001057 set1  0x00000004 , 0x0000003f 
+ 00014954  0x00001058 set1  0x00000005 , 0x0000003f 
+ 00014955  0x00001059 hstore  0x00000001 , 0x0000896b 
+ 00014956  0x0000105a call  0x00003a7d 
+ 00014957  0x0000105b hfetch  0x00000001 , 0x00008968 
+ 00014958  0x0000105c set1  0x00000007 , 0x0000003f 
+ 00014959  0x0000105d hstore  0x00000001 , 0x00008968 
+ 00014960  0x0000105e set0  0x00000007 , 0x0000003f 
+ 00014961  0x0000105f hstore  0x00000001 , 0x00008968 
+ 00014962  0x00001060 set1  0x00000007 , 0x0000003f 
+ 00014963  0x00001061 hstore  0x00000001 , 0x00008968 
+ 00014964  0x00001063 hjam  0x00000004 , 0x00008042 
+ 00014965  0x00001064 hfetch  0x00000001 , 0x0000896b 
+ 00014966  0x00001065 and_into  0x000000cf , 0x0000003f 
+ 00014967  0x00001066 hstore  0x00000001 , 0x0000896b 
+ 00014968  0x00001067 or_into  0x00000030 , 0x0000003f 
+ 00014969  0x00001068 hstore  0x00000001 , 0x0000896b 
+ 00014970  0x00001069 rtn 
+ 00014971  0x0000106d setarg  0x00000f0f 
+ 00014972  0x0000106e branch  0x00003ceb 
+ 00014973  0x00001071 setarg  0x0000080f 
+ 00014974  0x00001072 branch  0x00003ceb 
+ 00014975  0x00001077 set0  0x00000025 , 0x00000000 
+ 00014976  0x00001078 bpatch  0x00000090 , 0x00004012 
+ 00014977  0x00001079 call  0x000039bf 
+ 00014978  0x0000107a disable  0x00000020 
+ 00014979  0x0000107b enable  0x00000021 
+ 00014980  0x0000107c pulse  0x00000016 
+ 00014981  0x0000107d rtn 
+ 00014982  0x00001080 set0  0x00000025 , 0x00000000 
+ 00014983  0x00001081 bpatch  0x00000091 , 0x00004012 
+ 00014984  0x00001082 fetch  0x00000001 , 0x0000004c 
+ 00014985  0x00001083 isolate1  0x00000002 , 0x0000003f 
+ 00014986  0x00001084 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00014987  0x00001085 hstore  0x00000001 , 0x00008011 
+ 00014988  0x00001086 arg  0x00000062 , 0x00000006 
+ 00014989  0x00001087 ifetch  0x00000009 , 0x00000006 
+ 00014990  0x00001088 iforce  0x00000032 
+ 00014991  0x00001089 ifetch  0x00000007 , 0x00000006 
+ 00014992  0x0000108a iforce  0x00000033 
+ 00014993  0x0000108b fetch  0x00000001 , 0x00000054 
+ 00014994  0x0000108c add  0x0000003f , 0xffffffff , 0x00000034 
+ 00014995  0x0000108d pulse  0x0000001a 
+ 00014996  0x0000108e rtn 
+ 00014997  0x00001091 deposit  0x0000001a 
+ 00014998  0x00001092 store  0x00000006 , 0x00000099 
+ 00014999  0x00001093 disable  0x0000000d 
+ 00015000  0x00001094 nbranch  0x00003992 , 0x00000018 
+ 00015001  0x00001095 arg  0x000003bb , 0x00000029 
+ 00015002  0x00001096 increase  0x00000001 , 0x00000028 
+ 00015003  0x00001097 and_into  0x000001fc , 0x00000028 
+ 00015004  0x00001098 rtn 
+ 00015005  0x0000109d enable  0x0000000d 
+ 00015006  0x0000109f correlate  0x0000003e , 0x00000017 
+ 00015007  0x000010a0 branch  0x00003a95 , 0x00000018 
+ 00015008  0x000010a1 compare  0x00000002 , 0x00000028 , 0x00000002 
+ 00015009  0x000010a2 nbranch  0x00003a9e , 0x00000001 
+ 00015010  0x000010a3 branch  0x00003a95 
+ 00015011  0x000010a6 set0  0x00000025 , 0x00000000 
+ 00015012  0x000010a7 bpatch  0x00000092 , 0x00004012 
+ 00015013  0x000010a8 arg  0x00000600 , 0x0000000b 
+ 00015014  0x000010a9 enable  0x0000000d 
+ 00015015  0x000010aa correlate  0x00000023 , 0x00000026 
+ 00015016  0x000010ab disable  0x0000000d 
+ 00015017  0x000010ac nbranch  0x00003992 , 0x00000018 
+ 00015018  0x000010ad rtn 
+ 00015019  0x000010b0 set0  0x00000025 , 0x00000000 
+ 00015020  0x000010b1 bpatch  0x00000093 , 0x00004012 
+ 00015021  0x000010b2 enable  0x0000000d 
+ 00015022  0x000010b3 correlate  0x0000003e , 0x00000003 
+ 00015023  0x000010b4 disable  0x0000000d 
+ 00015024  0x000010b5 nbranch  0x00003992 , 0x00000018 
+ 00015025  0x000010b6 arg  0x000003bb , 0x00000029 
+ 00015026  0x000010b7 and_into  0x000001fc , 0x00000028 
+ 00015027  0x000010b8 rtn 
+ 00015028  0x000010bc set0  0x00000025 , 0x00000000 
+ 00015029  0x000010bd bpatch  0x00000094 , 0x00004012 
+ 00015030  0x000010be iforce  0x00000011 
+ 00015031  0x000010bf deposit  0x00000021 
+ 00015032  0x000010c0 iadd  0x00000002 , 0x0000000b 
+ 00015033  0x000010c1 copy  0x0000000b , 0x0000003f 
+ 00015034  0x000010c2 store  0x00000004 , 0x0000416a 
+ 00015035  0x000010c3 deposit  0x00000011 
+ 00015036  0x000010c4 rtn 
+ 00015037  0x000010c8 copy  0x0000003f , 0x00000002 
+ 00015038  0x000010c9 set0  0x00000025 , 0x00000000 
+ 00015039  0x000010ca bpatch  0x00000095 , 0x00004012 
+ 00015040  0x000010cb copy  0x00000002 , 0x0000003f 
+ 00015041  0x000010cc call  0x00007f1d 
+ 00015042  0x000010cd lshift16  0x00000021 , 0x0000003f 
+ 00015043  0x000010ce set1  0x0000002c , 0x0000003f 
+ 00015044  0x000010cf call  0x00007f06 
+ 00015045  0x000010d0 set0  0x0000002c , 0x0000003f 
+ 00015046  0x000010d1 call  0x00003b1a 
+ 00015047  0x000010d2 call  0x00007f06 
+ 00015048  0x000010d3 rtn  0x00000028 
+ 00015049  0x000010d4 call  0x00007f10 
+ 00015050  0x000010d5 iforce  0x0000001b 
+ 00015051  0x000010d6 until  0x0000003e , 0x00000003 
+ 00015052  0x000010d7 rtn 
+ 00015053  0x000010db set0  0x00000025 , 0x00000000 
+ 00015054  0x000010dc bpatch  0x00000096 , 0x00004012 
+ 00015055  0x000010dd branch  0x00003ad3 , 0x00000030 
+ 00015056  0x000010de until  0x00000029 , 0x00000026 
+ 00015057  0x000010e0 copy  0x00000028 , 0x00000002 
+ 00015058  0x000010e1 branch  0x00003ad6 
+ 00015059  0x000010e3 branch  0x00003ad5 , 0x0000002e 
+ 00015060  0x000010e4 until  0x00000023 , 0x00000026 
+ 00015061  0x000010e6 copy  0x00000022 , 0x00000002 
+ 00015062  0x000010e8 branch  0x00003ae3 , 0x00000028 
+ 00015063  0x000010e9 compare  0x00000001 , 0x00000002 , 0x00000003 
+ 00015064  0x000010ea nbranch  0x00003acd , 0x00000001 
+ 00015065  0x000010ec set0  0x00000025 , 0x00000000 
+ 00015066  0x000010ed bpatch  0x00000097 , 0x00004012 
+ 00015067  0x000010ee fetch  0x00000001 , 0x00000030 
+ 00015068  0x000010ef rtnbit0  0x00000000 
+ 00015069  0x000010f0 fetch  0x00000004 , 0x0000416a 
+ 00015070  0x000010f1 isub  0x00000002 , 0x0000003f 
+ 00015071  0x000010f2 nrtn  0x00000002 
+ 00015072  0x000010f3 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00015073  0x000010f4 branch  0x00003acd , 0x00000002 
+ 00015074  0x000010f5 rtn 
+ 00015075  0x000010f7 compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00015076  0x000010f8 nbranch  0x00003acd , 0x00000001 
+ 00015077  0x000010f9 branch  0x00003ad9 
+ 00015078  0x000010fc set0  0x00000025 , 0x00000000 
+ 00015079  0x000010fd bpatch  0x00000098 , 0x00004013 
+ 00015080  0x000010fe arg  0x00000600 , 0x0000000b 
+ 00015081  0x000010ff branch  0x00003acd 
+ 00015082  0x00001102 disable  0x00000028 
+ 00015083  0x00001103 branch  0x00003ae6 
+ 00015084  0x00001106 enable  0x00000028 
+ 00015085  0x00001107 branch  0x00003ae6 
+ 00015086  0x0000110a set0  0x00000025 , 0x00000000 
+ 00015087  0x0000110b bpatch  0x00000099 , 0x00004013 
+ 00015088  0x0000110c call  0x00003a86 
+ 00015089  0x0000110d disable  0x00000021 
+ 00015090  0x0000110e enable  0x00000020 
+ 00015091  0x0000110f rtn 
+ 00015092  0x00001114 set0  0x00000025 , 0x00000000 
+ 00015093  0x00001115 bpatch  0x0000009a , 0x00004013 
+ 00015094  0x00001116 arg  0x00000e43 , 0x0000000b 
+ 00015095  0x00001117 until  0x00000023 , 0x00000026 
+ 00015096  0x00001118 pulse  0x00000016 
+ 00015097  0x00001119 rtn 
+ 00015098  0x0000111c set0  0x00000025 , 0x00000000 
+ 00015099  0x0000111d bpatch  0x0000009b , 0x00004013 
+ 00015100  0x0000111e arg  0x00000d00 , 0x0000000b 
+ 00015101  0x0000111f until  0x00000023 , 0x00000026 
+ 00015102  0x00001120 rtn 
+ 00015103  0x00001124 set0  0x00000025 , 0x00000000 
+ 00015104  0x00001125 bpatch  0x0000009c , 0x00004013 
+ 00015105  0x00001126 arg  0x00000e43 , 0x0000000b 
+ 00015106  0x00001127 until  0x00000029 , 0x00000026 
+ 00015107  0x00001128 pulse  0x00000016 
+ 00015108  0x00001129 rtn 
+ 00015109  0x0000112c set0  0x00000025 , 0x00000000 
+ 00015110  0x0000112d bpatch  0x0000009d , 0x00004013 
+ 00015111  0x0000112e preload  0x00000009 
+ 00015112  0x0000112f enable  0x0000001d 
+ 00015113  0x00001130 set1  0x00000000 , 0x00000015 
+ 00015114  0x00001131 inject  0x00000003 , 0x00000048 
+ 00015115  0x00001132 disable  0x0000001d 
+ 00015116  0x00001133 rtn 
+ 00015117  0x00001137 copy  0x00000025 , 0x00000002 
+ 00015118  0x00001138 or_into  0x00000060 , 0x00000002 
+ 00015119  0x00001139 copy  0x00000002 , 0x0000000e 
+ 00015120  0x0000113a rtn 
+ 00015121  0x00001140 set0  0x00000025 , 0x00000000 
+ 00015122  0x00001141 bpatch  0x0000009e , 0x00004013 
+ 00015123  0x00001142 fetch  0x00000001 , 0x00004130 
+ 00015124  0x00001143 increase  0x00000001 , 0x0000003f 
+ 00015125  0x00001144 bne  0x00000007 , 0x00003b17 
+ 00015126  0x00001145 force  0x00000001 , 0x0000003f 
+ 00015127  0x00001147 store  0x00000001 , 0x00004130 
+ 00015128  0x00001148 iforce  0x00000004 
+ 00015129  0x00001149 rtn 
+ 00015130  0x0000114c copy  0x00000019 , 0x00000002 
+ 00015131  0x0000114d rtn  0x00000029 
+ 00015132  0x0000114e copy  0x0000001a , 0x00000002 
+ 00015133  0x0000114f rtn 
+ 00015134  0x00001152 deposit  0x00000022 
+ 00015135  0x00001153 rtn  0x00000029 
+ 00015136  0x00001154 deposit  0x00000028 
+ 00015137  0x00001155 rtn 
+ 00015138  0x00001159 set0  0x00000025 , 0x00000000 
+ 00015139  0x0000115a bpatch  0x0000009f , 0x00004013 
+ 00015140  0x0000115b fetcht  0x00000004 , 0x0000004d 
+ 00015141  0x0000115c call  0x00003b1e 
+ 00015142  0x0000115d isub  0x00000002 , 0x0000000b 
+ 00015143  0x0000115e deposit  0x0000000b 
+ 00015144  0x0000115f fetcht  0x00000002 , 0x00000051 
+ 00015145  0x00001160 lshift  0x00000002 , 0x00000002 
+ 00015146  0x00001161 isub  0x00000002 , 0x0000003f 
+ 00015147  0x00001162 rtn 
+ 00015148  0x00001165 set0  0x00000025 , 0x00000000 
+ 00015149  0x00001166 bpatch  0x000000a0 , 0x00004014 
+ 00015150  0x00001167 call  0x00003b1e 
+ 00015151  0x00001168 store  0x00000004 , 0x0000004d 
+ 00015152  0x00001169 rtn 
+ 00015153  0x0000116c set0  0x00000025 , 0x00000000 
+ 00015154  0x0000116d bpatch  0x000000a1 , 0x00004014 
+ 00015155  0x0000116e rtn 
+ 00015156  0x00001171 branch  0x00003b34 
+ 00015157  0x00001174 rtn  0x00000034 
+ 00015158  0x00001176 rshift  0x0000003f , 0x0000003f 
+ 00015159  0x00001177 increase  0xfffffffd , 0x0000003f 
+ 00015160  0x00001179 increase  0xffffffff , 0x0000003f 
+ 00015161  0x0000117a nbranch  0x00003b38 , 0x00000005 
+ 00015162  0x0000117b force  0x00000000 , 0x0000003f 
+ 00015163  0x0000117c rtn 
+ 00015164  0x00001182 arg  0x00000010 , 0x00000039 
+ 00015165  0x00001183 arg  0x00000000 , 0x00000005 
+ 00015166  0x00001184 call  0x00007e91 
+ 00015167  0x00001185 arg  0x00000362 , 0x00000005 
+ 00015168  0x00001186 arg  0x0000000a , 0x00000039 
+ 00015169  0x00001187 call  0x00007e91 
+ 00015170  0x00001188 jam  0x00000000 , 0x000008d6 
+ 00015171  0x00001189 jam  0x00000000 , 0x000009bd 
+ 00015172  0x0000118a jam  0x00000000 , 0x000003b0 
+ 00015173  0x0000118b jam  0x00000000 , 0x0000017e 
+ 00015174  0x0000118c jam  0x00000000 , 0x000003f7 
+ 00015175  0x0000118d set0  0x00000025 , 0x00000000 
+ 00015176  0x0000118e bpatch  0x000000a2 , 0x00004014 
+ 00015177  0x0000118f jam  0x00000000 , 0x0000016c 
+ 00015178  0x00001190 jam  0x00000000 , 0x00000150 
+ 00015179  0x00001191 jam  0x00000000 , 0x0000015b 
+ 00015180  0x00001192 setarg  0x009e8b33 
+ 00015181  0x00001193 store  0x00000003 , 0x00004147 
+ 00015182  0x00001194 setarg  0x00000153 
+ 00015183  0x00001195 store  0x00000002 , 0x00000083 
+ 00015184  0x00001196 jam  0x0000001e , 0x00000085 
+ 00015185  0x00001197 jam  0x00000001 , 0x00000086 
+ 00015186  0x00001198 jam  0x00000007 , 0x00000088 
+ 00015187  0x00001199 setarg  0x0012e904 
+ 00015188  0x0000119a store  0x00000003 , 0x00000080 
+ 00015189  0x0000119f jam  0x00000060 , 0x0000008f 
+ 00015190  0x000011a0 jam  0x00000005 , 0x00004170 
+ 00015191  0x000011a1 jam  0x00000002 , 0x00000014 
+ 00015192  0x000011a2 fetch  0x00000001 , 0x000046e2 
+ 00015193  0x000011a3 ncall  0x000071ea , 0x00000034 
+ 00015194  0x000011a4 fetch  0x00000001 , 0x00004563 
+ 00015195  0x000011a5 ncall  0x00007241 , 0x00000034 
+ 00015196  0x000011a6 set0  0x00000025 , 0x00000000 
+ 00015197  0x000011a7 bpatch  0x000000a3 , 0x00004014 
+ 00015198  0x000011a8 rtn  0x0000002b 
+ 00015199  0x000011a9 setarg  0x00000000 
+ 00015200  0x000011aa store  0x00000002 , 0x0000427e 
+ 00015201  0x000011ab rshift  0x00000022 , 0x0000003f 
+ 00015202  0x000011ac store  0x00000004 , 0x00004134 
+ 00015203  0x000011ad rtn 
+ 00015204  0x000011b0 hjam  0x0000001f , 0x00000909 
+ 00015205  0x000011b1 hjam  0x00000045 , 0x00000912 
+ 00015206  0x000011b2 hjam  0x00000000 , 0x00000953 
+ 00015207  0x000011b3 hjam  0x00000088 , 0x0000096f 
+ 00015208  0x000011b4 hjam  0x00000030 , 0x00000973 
+ 00015209  0x000011b5 hjam  0x000000c9 , 0x00000956 
+ 00015210  0x000011b7 hjam  0x000000ff , 0x00000907 
+ 00015211  0x000011b8 hjam  0x00000001 , 0x00000908 
+ 00015212  0x000011b9 hjam  0x000000f8 , 0x0000090a 
+ 00015213  0x000011ba hjam  0x000000ff , 0x0000090b 
+ 00015214  0x000011bb hjam  0x000000fb , 0x0000091a 
+ 00015215  0x000011bc hjam  0x000000fb , 0x0000091b 
+ 00015216  0x000011bd hjam  0x000000fb , 0x0000091c 
+ 00015217  0x000011be hjam  0x000000f6 , 0x0000091d 
+ 00015218  0x000011bf hjam  0x000000f2 , 0x0000091e 
+ 00015219  0x000011c0 hjam  0x000000ee , 0x0000091f 
+ 00015220  0x000011c1 hjam  0x000000ea , 0x00000920 
+ 00015221  0x000011c2 hjam  0x000000e6 , 0x00000921 
+ 00015222  0x000011c3 hjam  0x000000e2 , 0x00000922 
+ 00015223  0x000011c4 hjam  0x000000de , 0x00000923 
+ 00015224  0x000011c5 hjam  0x000000da , 0x00000924 
+ 00015225  0x000011c6 hjam  0x000000d6 , 0x00000925 
+ 00015226  0x000011c7 hjam  0x000000d2 , 0x00000926 
+ 00015227  0x000011c8 hjam  0x000000ce , 0x00000927 
+ 00015228  0x000011c9 hjam  0x000000ca , 0x00000928 
+ 00015229  0x000011ca hjam  0x000000c6 , 0x00000929 
+ 00015230  0x000011cb hjam  0x000000c2 , 0x0000092a 
+ 00015231  0x000011cc hjam  0x000000bd , 0x0000092b 
+ 00015232  0x000011cd hjam  0x000000b9 , 0x0000092c 
+ 00015233  0x000011ce hjam  0x000000b5 , 0x0000092d 
+ 00015234  0x000011cf hjam  0x000000b1 , 0x0000092e 
+ 00015235  0x000011d0 hjam  0x000000ad , 0x0000092f 
+ 00015236  0x000011d1 hjam  0x000000a9 , 0x00000930 
+ 00015237  0x000011d2 hjam  0x00000080 , 0x00000931 
+ 00015238  0x000011d3 hjam  0x00000080 , 0x00000932 
+ 00015239  0x000011d4 hjam  0x00000080 , 0x00000933 
+ 00015240  0x000011d5 hjam  0x000000c0 , 0x00000934 
+ 00015241  0x000011d6 hjam  0x000000c1 , 0x00000935 
+ 00015242  0x000011d7 hjam  0x000000c2 , 0x00000936 
+ 00015243  0x000011d8 hjam  0x000000c3 , 0x00000937 
+ 00015244  0x000011d9 hjam  0x000000c4 , 0x00000938 
+ 00015245  0x000011da hjam  0x000000c5 , 0x00000939 
+ 00015246  0x000011db hjam  0x000000c6 , 0x0000093a 
+ 00015247  0x000011dc hjam  0x000000c7 , 0x0000093b 
+ 00015248  0x000011dd hjam  0x00000006 , 0x0000093c 
+ 00015249  0x000011de hjam  0x00000007 , 0x0000093d 
+ 00015250  0x000011df hjam  0x00000046 , 0x0000093e 
+ 00015251  0x000011e0 hjam  0x00000085 , 0x0000093f 
+ 00015252  0x000011e1 hjam  0x00000086 , 0x00000940 
+ 00015253  0x000011e2 hjam  0x00000087 , 0x00000941 
+ 00015254  0x000011e3 hjam  0x000000c6 , 0x00000942 
+ 00015255  0x000011e4 hjam  0x000000c7 , 0x00000943 
+ 00015256  0x000011e5 hjam  0x000000d6 , 0x00000944 
+ 00015257  0x000011e6 hjam  0x000000d7 , 0x00000945 
+ 00015258  0x000011e7 hjam  0x000000e6 , 0x00000946 
+ 00015259  0x000011e8 hjam  0x000000f5 , 0x00000947 
+ 00015260  0x000011e9 hjam  0x00000000 , 0x00000948 
+ 00015261  0x000011ea hjam  0x000000f8 , 0x00000949 
+ 00015262  0x000011eb hjam  0x0000007f , 0x0000094a 
+ 00015263  0x000011ec hjam  0x000000fb , 0x0000094c 
+ 00015264  0x000011ed hjam  0x000000ef , 0x0000094d 
+ 00015265  0x000011ee hjam  0x000000ec , 0x0000094e 
+ 00015266  0x000011ef hjam  0x0000005e , 0x0000094f 
+ 00015267  0x000011f0 hjam  0x0000004c , 0x00000957 
+ 00015268  0x000011f1 hjam  0x0000006c , 0x00000958 
+ 00015269  0x000011f2 hjam  0x00000050 , 0x00000959 
+ 00015270  0x000011f3 hjam  0x000000e4 , 0x00000968 
+ 00015271  0x000011f4 hjam  0x00000000 , 0x00000969 
+ 00015272  0x000011f5 hjam  0x00000000 , 0x0000096a 
+ 00015273  0x000011f6 hjam  0x00000030 , 0x0000096b 
+ 00015274  0x000011f7 rtn 
+ 00015275  0x00001201 setarg  0x0000ee21 
+ 00015276  0x00001202 hstore  0x00000002 , 0x00008050 
+ 00015277  0x00001203 hfetch  0x00000001 , 0x0000813e 
+ 00015278  0x00001204 bbit0  0x00000003 , 0x0000613b 
+ 00015279  0x00001205 enable  0x0000002b 
+ 00015280  0x00001206 bbit0  0x00000007 , 0x00003bb6 
+ 00015281  0x00001207 disable  0x0000002b 
+ 00015282  0x00001208 deposit  0x00000027 
+ 00015283  0x00001209 nbranch  0x00003bb6 , 0x00000034 
+ 00015284  0x0000120a arg  0xffffffff , 0x00000002 
+ 00015285  0x0000120b branch  0x00003c24 
+ 00015286  0x0000120d hfetch  0x00000003 , 0x0000813c 
+ 00015287  0x0000120e hstore  0x00000003 , 0x0000804c 
+ 00015288  0x0000120f ifetch  0x00000001 , 0x00000006 
+ 00015289  0x00001210 or_into  0x000000ef , 0x0000003f 
+ 00015290  0x00001211 istore  0x00000001 , 0x00000005 
+ 00015291  0x00001212 call  0x00003cf6 
+ 00015292  0x00001213 hfetch  0x00000001 , 0x0000804f 
+ 00015293  0x00001214 set1  0x00000004 , 0x0000003f 
+ 00015294  0x00001215 hstore  0x00000001 , 0x0000804f 
+ 00015295  0x00001216 call  0x00003cf6 
+ 00015296  0x00001217 call  0x00003bc7 , 0x0000002b 
+ 00015297  0x00001218 hfetch  0x00000001 , 0x0000804e 
+ 00015298  0x00001219 set0  0x00000003 , 0x0000003f 
+ 00015299  0x0000121a hstore  0x00000001 , 0x0000804e 
+ 00015300  0x0000121b call  0x00003cf6 
+ 00015301  0x0000121c rtn  0x0000002b 
+ 00015302  0x0000121d branch  0x0000613b 
+ 00015303  0x00001220 fetch  0x00000001 , 0x00004238 
+ 00015304  0x00001221 hstore  0x00000001 , 0x00008086 
+ 00015305  0x00001222 fetch  0x00000003 , 0x0000422d 
+ 00015306  0x00001223 hstore  0x00000003 , 0x00008080 
+ 00015307  0x00001224 fetch  0x00000004 , 0x00004221 
+ 00015308  0x00001225 hstore  0x00000004 , 0x00008074 
+ 00015309  0x00001226 fetch  0x00000004 , 0x0000421d 
+ 00015310  0x00001227 hstore  0x00000004 , 0x00008070 
+ 00015311  0x00001228 fetch  0x00000008 , 0x00004225 
+ 00015312  0x00001229 hstore  0x00000008 , 0x00008078 
+ 00015313  0x0000122a fetch  0x00000008 , 0x00004230 
+ 00015314  0x0000122b iforce  0x00000000 
+ 00015315  0x0000122c hfetch  0x00000008 , 0x00008140 
+ 00015316  0x0000122d store  0x00000008 , 0x000000a0 
+ 00015317  0x0000122e call  0x0000619f 
+ 00015318  0x0000122f rtn 
+ 00015319  0x00001232 deposit  0x00000000 
+ 00015320  0x00001233 store  0x00000008 , 0x00004230 
+ 00015321  0x00001234 hfetch  0x00000008 , 0x00008070 
+ 00015322  0x00001235 store  0x00000008 , 0x0000421d 
+ 00015323  0x00001236 ifetch  0x00000008 , 0x00000006 
+ 00015324  0x00001237 istore  0x00000008 , 0x00000005 
+ 00015325  0x00001238 hfetch  0x00000003 , 0x00008080 
+ 00015326  0x00001239 store  0x00000003 , 0x0000422d 
+ 00015327  0x0000123a hfetch  0x00000001 , 0x00008086 
+ 00015328  0x0000123b store  0x00000001 , 0x00004238 
+ 00015329  0x0000123c branch  0x00003cfc 
+ 00015330  0x0000123f hfetch  0x00000001 , 0x000080b4 
+ 00015331  0x00001240 nbranch  0x00003be8 , 0x00000034 
+ 00015332  0x00001241 fetch  0x00000003 , 0x0000420f 
+ 00015333  0x00001242 nrtn  0x00000034 
+ 00015334  0x00001243 hjam  0x000000c0 , 0x000080b4 
+ 00015335  0x00001244 hjam  0x00000080 , 0x00008006 
+ 00015336  0x00001246 hfetch  0x00000001 , 0x0000812d 
+ 00015337  0x00001247 rtnbit0  0x00000001 
+ 00015338  0x00001248 hfetch  0x00000003 , 0x00008149 
+ 00015339  0x00001249 store  0x00000003 , 0x0000420f 
+ 00015340  0x0000124a rtn 
+ 00015341  0x0000124f set0  0x00000025 , 0x00000000 
+ 00015342  0x00001250 bpatch  0x000000a4 , 0x00004014 
+ 00015343  0x00001251 deposit  0x0000001a 
+ 00015344  0x00001252 call  0x00007f04 
+ 00015345  0x00001253 fetcht  0x00000004 , 0x000041ff 
+ 00015346  0x00001254 sub  0x00000002 , 0x000000ff , 0x0000003e 
+ 00015347  0x00001255 rtn  0x00000002 
+ 00015348  0x00001256 lshift8  0x0000003f , 0x0000003f 
+ 00015349  0x00001257 lshift4  0x0000003f , 0x0000003f 
+ 00015350  0x00001258 idiv  0x00000002 
+ 00015351  0x00001259 call  0x00007f53 
+ 00015352  0x0000125a quotient  0x0000003f 
+ 00015353  0x0000125b arg  0x000000c8 , 0x00000002 
+ 00015354  0x0000125c call  0x00007f5e 
+ 00015355  0x0000125d store  0x00000001 , 0x00000098 
+ 00015356  0x0000125e nbranch  0x00003bfe , 0x00000028 
+ 00015357  0x0000125f sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015358  0x00001261 fetcht  0x00000003 , 0x0000420f 
+ 00015359  0x00001262 iadd  0x00000002 , 0x0000003f 
+ 00015360  0x00001263 store  0x00000003 , 0x0000420f 
+ 00015361  0x00001265 setarg  0x00000000 
+ 00015362  0x00001266 store  0x00000004 , 0x000041ff 
+ 00015363  0x00001267 rtn 
+ 00015364  0x0000126b set0  0x00000025 , 0x00000000 
+ 00015365  0x0000126c bpatch  0x000000a5 , 0x00004014 
+ 00015366  0x0000126d call  0x00003cfc 
+ 00015367  0x0000126e hfetch  0x00000004 , 0x00008138 
+ 00015368  0x0000126f set0  0x0000000f , 0x0000003f 
+ 00015369  0x00001270 hstore  0x00000004 , 0x0000804c 
+ 00015370  0x00001271 call  0x00003cf4 
+ 00015371  0x00001273 arg  0xffffffff , 0x00000002 
+ 00015372  0x00001274 fetch  0x00000001 , 0x000041f7 
+ 00015373  0x00001275 store  0x00000001 , 0x0000421c 
+ 00015374  0x00001276 fetch  0x00000001 , 0x0000421a 
+ 00015375  0x00001277 set1  0x00000007 , 0x0000003f 
+ 00015376  0x00001278 store  0x00000001 , 0x0000421a 
+ 00015377  0x0000127c set0  0x00000025 , 0x00000000 
+ 00015378  0x0000127d bpatch  0x000000a6 , 0x00004014 
+ 00015379  0x0000127e call  0x00003a7b 
+ 00015380  0x0000127f fetch  0x00000004 , 0x000041ff 
+ 00015381  0x00001280 iadd  0x00000002 , 0x0000003f 
+ 00015382  0x00001281 store  0x00000004 , 0x000041ff 
+ 00015383  0x00001282 call  0x00003bd7 
+ 00015384  0x00001283 fetch  0x00000005 , 0x00004218 
+ 00015385  0x00001284 hstore  0x00000004 , 0x0000804c 
+ 00015386  0x00001285 rshift32  0x0000003f , 0x00000011 
+ 00015387  0x00001286 until  0x0000003e , 0x00000033 
+ 00015388  0x00001287 deposit  0x00000019 
+ 00015389  0x00001288 store  0x00000006 , 0x00004203 
+ 00015390  0x00001289 hjam  0x00000002 , 0x00008005 
+ 00015391  0x0000128a until  0x0000003e , 0x00000033 
+ 00015392  0x0000128b until  0x0000003e , 0x00000033 
+ 00015393  0x0000128c deposit  0x00000011 
+ 00015394  0x0000128d hstore  0x00000001 , 0x0000804f 
+ 00015395  0x0000128e hjam  0x00000002 , 0x00008005 
+ 00015396  0x00001290 until  0x0000003e , 0x00000033 
+ 00015397  0x00001291 until  0x0000003e , 0x00000033 
+ 00015398  0x00001292 hstoret  0x00000004 , 0x0000804c 
+ 00015399  0x00001293 hjam  0x00000010 , 0x00008005 
+ 00015400  0x00001294 until  0x0000003e , 0x0000003f 
+ 00015401  0x0000129a set0  0x00000025 , 0x00000000 
+ 00015402  0x0000129b bpatch  0x000000a7 , 0x00004014 
+ 00015403  0x0000129c setarg  0x00000000 
+ 00015404  0x0000129d copy  0x00000027 , 0x0000003e 
+ 00015405  0x0000129e branch  0x00003c35 , 0x00000005 
+ 00015406  0x0000129f hfetch  0x00000001 , 0x0000813c 
+ 00015407  0x000012a0 hfetcht  0x00000001 , 0x0000813d 
+ 00015408  0x000012a1 isub  0x00000002 , 0x0000003e 
+ 00015409  0x000012a2 branch  0x00003c33 , 0x00000002 
+ 00015410  0x000012a3 deposit  0x00000002 
+ 00015411  0x000012a5 isub  0x00000027 , 0x0000003f 
+ 00015412  0x000012a6 increase  0x00000001 , 0x0000003f 
+ 00015413  0x000012a8 increase  0x00000008 , 0x0000003f 
+ 00015414  0x000012a9 until  0x0000003e , 0x00000033 
+ 00015415  0x000012aa iadd  0x00000031 , 0x0000003f 
+ 00015416  0x000012ab fetcht  0x00000004 , 0x000041fb 
+ 00015417  0x000012ac iadd  0x00000002 , 0x0000003f 
+ 00015418  0x000012ad fetcht  0x00000003 , 0x0000420f 
+ 00015419  0x000012ae imul32  0x00000002 , 0x0000003f 
+ 00015420  0x000012af rshift8  0x0000003f , 0x0000003f 
+ 00015421  0x000012b0 rshift4  0x0000003f , 0x0000003f 
+ 00015422  0x000012b1 increase  0x0000006e , 0x0000003f 
+ 00015423  0x000012b2 arg  0x00000ea6 , 0x00000002 
+ 00015424  0x000012b3 idiv  0x00000002 
+ 00015425  0x000012b4 call  0x00007f53 
+ 00015426  0x000012b5 quotient  0x0000003f 
+ 00015427  0x000012b6 lshift16  0x0000003f , 0x0000003f 
+ 00015428  0x000012b7 remainder  0x00000002 
+ 00015429  0x000012b8 ior  0x00000002 , 0x0000003f 
+ 00015430  0x000012b9 fetcht  0x00000006 , 0x00004203 
+ 00015431  0x000012ba call  0x00007ef9 
+ 00015432  0x000012bb copy  0x00000002 , 0x00000019 
+ 00015433  0x000012bc fetch  0x00000006 , 0x00004048 
+ 00015434  0x000012bd call  0x000038e5 
+ 00015435  0x000012be deposit  0x0000001a 
+ 00015436  0x000012bf store  0x00000006 , 0x000009be 
+ 00015437  0x000012c0 deposit  0x00000027 
+ 00015438  0x000012c1 istore  0x00000001 , 0x00000005 
+ 00015439  0x000012c2 hfetch  0x00000001 , 0x0000811d 
+ 00015440  0x000012c3 or_into  0x000000f0 , 0x0000003f 
+ 00015441  0x000012c4 istore  0x00000001 , 0x00000005 
+ 00015442  0x000012c5 rtn 
+ 00015443  0x000012c8 set0  0x00000025 , 0x00000000 
+ 00015444  0x000012c9 bpatch  0x000000a8 , 0x00004015 
+ 00015445  0x000012ca call  0x00003be2 
+ 00015446  0x000012cb fetch  0x00000003 , 0x0000420f 
+ 00015447  0x000012cc rtn  0x00000034 
+ 00015448  0x000012cd fetch  0x00000001 , 0x00004131 
+ 00015449  0x000012ce rtn  0x00000034 
+ 00015450  0x000012cf fetch  0x00000001 , 0x000046e2 
+ 00015451  0x000012d0 branch  0x00003c5e , 0x00000034 
+ 00015452  0x000012d1 fetch  0x00000001 , 0x00004639 
+ 00015453  0x000012d2 rtn  0x00000034 
+ 00015454  0x000012d4 fetch  0x00000001 , 0x00004565 
+ 00015455  0x000012d5 nrtn  0x00000034 
+ 00015456  0x000012d6 call  0x00003d0e 
+ 00015457  0x000012d7 nrtn  0x00000034 
+ 00015458  0x000012d8 fetch  0x00000001 , 0x00004040 
+ 00015459  0x000012d9 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00015460  0x000012da nbranch  0x00003c8a , 0x00000001 
+ 00015461  0x000012db fetch  0x00000002 , 0x00004042 
+ 00015462  0x000012dc rtn  0x00000034 
+ 00015463  0x000012dd rtn  0x0000002b 
+ 00015464  0x000012df set0  0x00000025 , 0x00000000 
+ 00015465  0x000012e0 bpatch  0x000000a9 , 0x00004015 
+ 00015466  0x000012e1 fetcht  0x00000001 , 0x0000009f 
+ 00015467  0x000012e2 fetch  0x00000002 , 0x00004042 
+ 00015468  0x000012e3 imul32  0x00000002 , 0x0000003f 
+ 00015469  0x000012e4 rshift4  0x00000002 , 0x00000002 
+ 00015470  0x000012e5 rshift2  0x00000002 , 0x00000002 
+ 00015471  0x000012e6 isub  0x00000002 , 0x0000003f 
+ 00015472  0x000012e7 fetcht  0x00000004 , 0x00004044 
+ 00015473  0x000012e8 iadd  0x00000002 , 0x0000003f 
+ 00015474  0x000012e9 fetcht  0x00000001 , 0x000041f6 
+ 00015475  0x000012ea isub  0x00000002 , 0x0000003f 
+ 00015476  0x000012eb lshift16  0x0000003f , 0x00000030 
+ 00015477  0x000012ed set0  0x00000025 , 0x00000000 
+ 00015478  0x000012ee bpatch  0x000000aa , 0x00004015 
+ 00015479  0x000012ef fetch  0x00000002 , 0x0000404e 
+ 00015480  0x000012f0 rshift  0x0000003f , 0x0000003f 
+ 00015481  0x000012f1 call  0x00007f1d 
+ 00015482  0x000012f2 deposit  0x00000030 
+ 00015483  0x000012f3 call  0x00007f06 
+ 00015484  0x000012f4 copy  0x0000001a , 0x00000002 
+ 00015485  0x000012f5 call  0x00007f04 
+ 00015486  0x000012f6 rtn  0x00000028 
+ 00015487  0x000012f8 call  0x00007f16 
+ 00015488  0x000012fa set0  0x00000025 , 0x00000000 
+ 00015489  0x000012fb bpatch  0x000000ab , 0x00004015 
+ 00015490  0x000012fc fetch  0x00000001 , 0x00004218 
+ 00015491  0x000012fd isub  0x00000002 , 0x0000003e 
+ 00015492  0x000012fe branch  0x00003c01 , 0x00000002 
+ 00015493  0x000012ff storet  0x00000004 , 0x000041fb 
+ 00015494  0x00001300 call  0x00003d9f 
+ 00015495  0x00001301 call  0x000048a5 
+ 00015496  0x00001302 fetcht  0x00000004 , 0x000041fb 
+ 00015497  0x00001303 branch  0x00003c11 
+ 00015498  0x00001306 set0  0x00000025 , 0x00000000 
+ 00015499  0x00001307 bpatch  0x000000ac , 0x00004015 
+ 00015500  0x00001308 fetch  0x00000001 , 0x00004040 
+ 00015501  0x00001309 rtnbit1  0x00000000 
+ 00015502  0x0000130a rtnbit1  0x00000003 
+ 00015503  0x0000130b fetch  0x00000001 , 0x000046e2 
+ 00015504  0x0000130c branch  0x00003c93 , 0x00000034 
+ 00015505  0x0000130d fetch  0x00000001 , 0x00004639 
+ 00015506  0x0000130e rtn  0x00000034 
+ 00015507  0x00001310 set0  0x00000025 , 0x00000000 
+ 00015508  0x00001311 bpatch  0x000000ad , 0x00004015 
+ 00015509  0x00001312 fetch  0x00000001 , 0x000043ff 
+ 00015510  0x00001313 nbranch  0x00003c99 , 0x00000034 
+ 00015511  0x00001314 fetch  0x00000001 , 0x00004133 
+ 00015512  0x00001315 rtn  0x00000034 
+ 00015513  0x00001317 fetch  0x00000002 , 0x000041f4 
+ 00015514  0x00001318 rtn  0x00000034 
+ 00015515  0x0000131a fetcht  0x00000001 , 0x000041f6 
+ 00015516  0x0000131b isub  0x00000002 , 0x0000003f 
+ 00015517  0x0000131c arg  0x00001d4c , 0x00000002 
+ 00015518  0x0000131d imul32  0x00000002 , 0x0000003f 
+ 00015519  0x0000131e branch  0x00003c7f 
+ 00015520  0x00001321 set0  0x00000025 , 0x00000000 
+ 00015521  0x00001322 bpatch  0x000000ae , 0x00004015 
+ 00015522  0x00001323 disable  0x0000002b 
+ 00015523  0x00001324 fetch  0x00000001 , 0x00000030 
+ 00015524  0x00001325 rtnbit0  0x00000001 
+ 00015525  0x00001326 nbranch  0x00003cbc , 0x0000002d 
+ 00015526  0x00001327 call  0x00003cb7 
+ 00015527  0x00001328 fetch  0x00000002 , 0x00004161 
+ 00015528  0x00001329 store  0x00000002 , 0x0000003e 
+ 00015529  0x0000132a fetch  0x00000001 , 0x00000047 
+ 00015530  0x0000132b bbit1  0x00000003 , 0x00003ccb 
+ 00015531  0x0000132c bmark0  0x0000000d , 0x00003ccb 
+ 00015532  0x0000132d call  0x00004816 
+ 00015533  0x0000132e nbranch  0x00003ccb , 0x00000034 
+ 00015534  0x0000132f fetch  0x00000002 , 0x000042a4 
+ 00015535  0x00001330 call  0x00007f69 
+ 00015536  0x00001332 jam  0x00000000 , 0x0000009f 
+ 00015537  0x00001333 bmark0  0x0000000d , 0x00003ccb 
+ 00015538  0x00001334 fetch  0x00000001 , 0x00004214 
+ 00015539  0x00001335 branch  0x00003ccf , 0x00000034 
+ 00015540  0x00001336 increase  0xffffffff , 0x0000003f 
+ 00015541  0x00001337 store  0x00000001 , 0x00004214 
+ 00015542  0x00001338 rtn 
+ 00015543  0x0000133b jam  0x00000000 , 0x000041f9 
+ 00015544  0x0000133c fetch  0x00000003 , 0x00004209 
+ 00015545  0x0000133d increase  0x00000001 , 0x0000003f 
+ 00015546  0x0000133e store  0x00000003 , 0x00004209 
+ 00015547  0x0000133f rtn 
+ 00015548  0x00001342 set0  0x00000025 , 0x00000000 
+ 00015549  0x00001343 bpatch  0x000000af , 0x00004015 
+ 00015550  0x00001344 fetcht  0x00000002 , 0x00004161 
+ 00015551  0x00001345 rshift  0x00000002 , 0x00000002 
+ 00015552  0x00001346 fetch  0x00000002 , 0x0000003e 
+ 00015553  0x00001347 iadd  0x00000002 , 0x0000003f 
+ 00015554  0x00001348 store  0x00000002 , 0x0000003e 
+ 00015555  0x0000134a jam  0x00000000 , 0x0000009f 
+ 00015556  0x0000134b fetch  0x00000003 , 0x0000420c 
+ 00015557  0x0000134c increase  0x00000001 , 0x0000003f 
+ 00015558  0x0000134d store  0x00000003 , 0x0000420c 
+ 00015559  0x0000134e fetch  0x00000001 , 0x000041f9 
+ 00015560  0x0000134f increase  0x00000001 , 0x0000003f 
+ 00015561  0x00001350 store  0x00000001 , 0x000041f9 
+ 00015562  0x00001351 rtn 
+ 00015563  0x00001354 jam  0x00000000 , 0x0000009f 
+ 00015564  0x00001355 fetch  0x00000001 , 0x00004213 
+ 00015565  0x00001356 store  0x00000001 , 0x00004214 
+ 00015566  0x00001357 rtn 
+ 00015567  0x0000135a fetcht  0x00000001 , 0x00004212 
+ 00015568  0x0000135b storet  0x00000001 , 0x0000009f 
+ 00015569  0x0000135c rtn 
+ 00015570  0x0000135f set0  0x00000025 , 0x00000000 
+ 00015571  0x00001360 bpatch  0x000000b0 , 0x00004016 
+ 00015572  0x00001361 fetch  0x00000001 , 0x00004218 
+ 00015573  0x00001362 nrtn  0x00000034 
+ 00015574  0x00001363 hjam  0x00000006 , 0x00008042 
+ 00015575  0x00001364 setarg  0x00000f0c 
+ 00015576  0x00001365 call  0x00003ceb 
+ 00015577  0x00001366 setarg  0x00030d40 
+ 00015578  0x00001367 call  0x00003b35 
+ 00015579  0x00001368 until  0x0000003e , 0x00000033 
+ 00015580  0x00001369 copy  0x00000031 , 0x00000030 
+ 00015581  0x0000136a call  0x00003a7b 
+ 00015582  0x0000136b hjam  0x00000004 , 0x00008042 
+ 00015583  0x0000136c nop  0x0000000a 
+ 00015584  0x0000136d until  0x0000003e , 0x00000033 
+ 00015585  0x0000136e deposit  0x00000031 
+ 00015586  0x0000136f isub  0x00000030 , 0x0000003f 
+ 00015587  0x00001370 increase  0x00000030 , 0x0000003f 
+ 00015588  0x00001371 arg  0x000000ff , 0x00000002 
+ 00015589  0x00001372 call  0x00007f5e 
+ 00015590  0x00001373 store  0x00000001 , 0x00004218 
+ 00015591  0x00001374 nop  0x00007530 
+ 00015592  0x00001375 nop  0x00007530 
+ 00015593  0x00001376 nop  0x00007530 
+ 00015594  0x00001377 rtn 
+ 00015595  0x0000137d arg  0x00000fff , 0x00000005 
+ 00015596  0x0000137e iand  0x00000005 , 0x00000005 
+ 00015597  0x0000137f fetch  0x00000001 , 0x00004215 
+ 00015598  0x00001380 and_into  0x000000f0 , 0x0000003f 
+ 00015599  0x00001381 lshift8  0x0000003f , 0x0000003f 
+ 00015600  0x00001382 ior  0x00000005 , 0x0000003f 
+ 00015601  0x00001383 hstore  0x00000002 , 0x0000804c 
+ 00015602  0x00001384 ifetch  0x00000002 , 0x00000006 
+ 00015603  0x00001385 istore  0x00000002 , 0x00000005 
+ 00015604  0x00001388 setarg  0x00000001 
+ 00015605  0x00001389 branch  0x00003cf7 
+ 00015606  0x0000138c setarg  0x00000002 
+ 00015607  0x0000138e until  0x0000003e , 0x00000033 
+ 00015608  0x0000138f hstore  0x00000001 , 0x00008005 
+ 00015609  0x00001390 until  0x0000003e , 0x00000033 
+ 00015610  0x00001391 until  0x0000003e , 0x00000033 
+ 00015611  0x00001392 rtn 
+ 00015612  0x00001396 set0  0x00000025 , 0x00000000 
+ 00015613  0x00001397 bpatch  0x000000b1 , 0x00004016 
+ 00015614  0x00001398 fetch  0x00000004 , 0x000000a0 
+ 00015615  0x00001399 hstore  0x00000004 , 0x0000804c 
+ 00015616  0x0000139a setarg  0x00000004 
+ 00015617  0x0000139b call  0x00003cf7 
+ 00015618  0x0000139c fetch  0x00000004 , 0x000000a4 
+ 00015619  0x0000139d hstore  0x00000004 , 0x0000804c 
+ 00015620  0x0000139e setarg  0x00000008 
+ 00015621  0x0000139f branch  0x00003cf7 
+ 00015622  0x000013a2 fetch  0x00000002 , 0x000041f2 
+ 00015623  0x000013a3 qset1  0x0000003f 
+ 00015624  0x000013a4 store  0x00000002 , 0x000041f2 
+ 00015625  0x000013a5 rtn 
+ 00015626  0x000013a8 fetch  0x00000002 , 0x000041f2 
+ 00015627  0x000013a9 qset0  0x0000003f 
+ 00015628  0x000013aa store  0x00000002 , 0x000041f2 
+ 00015629  0x000013ab rtn 
+ 00015630  0x000013b0 set0  0x00000025 , 0x00000000 
+ 00015631  0x000013b1 bpatch  0x000000b2 , 0x00004016 
+ 00015632  0x000013b2 call  0x00003d9d 
+ 00015633  0x000013b3 fetch  0x00000002 , 0x000041f2 
+ 00015634  0x000013b4 copy  0x0000003f , 0x00000011 
+ 00015635  0x000013b5 fetch  0x00000001 , 0x0000004c 
+ 00015636  0x000013b6 isolate1  0x00000006 , 0x0000003f 
+ 00015637  0x000013b7 setflag  0x00000001 , 0x0000000b , 0x00000011 
+ 00015638  0x000013b8 fetch  0x00000001 , 0x00000078 
+ 00015639  0x000013b9 fetcht  0x00000001 , 0x0000007c 
+ 00015640  0x000013ba iadd  0x00000002 , 0x0000003f 
+ 00015641  0x000013bb fetcht  0x00000001 , 0x00000048 
+ 00015642  0x000013bc iadd  0x00000002 , 0x0000003f 
+ 00015643  0x000013bd nsetflag  0x00000034 , 0x0000000a , 0x00000011 
+ 00015644  0x000013bf set0  0x00000025 , 0x00000000 
+ 00015645  0x000013c0 bpatch  0x000000b3 , 0x00004016 
+ 00015646  0x000013c1 fetch  0x00000002 , 0x00000286 
+ 00015647  0x000013c2 fetcht  0x00000002 , 0x00000288 
+ 00015648  0x000013c3 iadd  0x00000002 , 0x0000003f 
+ 00015649  0x000013c4 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
+ 00015650  0x000013c5 fetch  0x00000005 , 0x000046f0 
+ 00015651  0x000013c6 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
+ 00015652  0x000013c7 fetch  0x00000005 , 0x000046f8 
+ 00015653  0x000013c8 nsetflag  0x00000034 , 0x0000000e , 0x00000011 
+ 00015654  0x000013c9 fetch  0x00000001 , 0x00004271 
+ 00015655  0x000013ca nsetflag  0x00000034 , 0x00000008 , 0x00000011 
+ 00015656  0x000013cb fetch  0x00000001 , 0x00004132 
+ 00015657  0x000013cc compare  0x0000000a , 0x0000003f , 0x000000ff 
+ 00015658  0x000013cd call  0x00003d2c , 0x00000001 
+ 00015659  0x000013ce branch  0x00003d31 
+ 00015660  0x000013d1 hfetch  0x00000002 , 0x00008112 
+ 00015661  0x000013d2 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
+ 00015662  0x000013d3 hfetch  0x00000002 , 0x0000810e 
+ 00015663  0x000013d4 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
+ 00015664  0x000013d5 rtn 
+ 00015665  0x000013d8 setarg  0xfffffff8 
+ 00015666  0x000013d9 iand  0x00000011 , 0x00000011 
+ 00015667  0x000013db copy  0x00000011 , 0x0000003f 
+ 00015668  0x000013dc store  0x00000002 , 0x000041f2 
+ 00015669  0x000013dd rtn  0x00000034 
+ 00015670  0x000013de rtn  0x0000002d 
+ 00015671  0x000013df enable  0x0000002b 
+ 00015672  0x000013e0 rtn 
+ 00015673  0x000013e3 hfetch  0x00000004 , 0x00008138 
+ 00015674  0x000013e4 set0  0x0000001b , 0x0000003f 
+ 00015675  0x000013e5 hstore  0x00000004 , 0x0000804c 
+ 00015676  0x000013e6 call  0x00003cf4 
+ 00015677  0x000013e7 branch  0x00003b31 
+ 00015678  0x000013ea hfetch  0x00000004 , 0x0000813c 
+ 00015679  0x000013eb set0  0x00000014 , 0x0000003f 
+ 00015680  0x000013ec hstore  0x00000004 , 0x0000804c 
+ 00015681  0x000013ed branch  0x00003cf6 
+ 00015682  0x000013f0 fetch  0x00000002 , 0x000041f0 
+ 00015683  0x000013f1 bbit1  0x00000000 , 0x00003b31 
+ 00015684  0x000013f2 rtn 
+ 00015685  0x000013f4 fetch  0x00000002 , 0x000041f0 
+ 00015686  0x000013f5 bbit1  0x00000001 , 0x00003b31 
+ 00015687  0x000013f6 rtn 
+ 00015688  0x000013f8 fetch  0x00000002 , 0x000041f0 
+ 00015689  0x000013f9 bbit1  0x00000002 , 0x00003b31 
+ 00015690  0x000013fa rtn 
+ 00015691  0x00001402 set0  0x00000025 , 0x00000000 
+ 00015692  0x00001403 bpatch  0x000000b4 , 0x00004016 
+ 00015693  0x00001404 fetch  0x00000001 , 0x00004132 
+ 00015694  0x00001405 branch  0x00003d4b , 0x00000034 
+ 00015695  0x00001409 beq  0x00000003 , 0x0000400c 
+ 00015696  0x0000140a beq  0x00000009 , 0x00007293 
+ 00015697  0x0000140b beq  0x0000000a , 0x000059dd 
+ 00015698  0x0000140d bbit1  0x00000006 , 0x00005dca 
+ 00015699  0x0000140e bbit1  0x00000007 , 0x0000400c 
+ 00015700  0x0000140f rtn 
+ 00015701  0x00001412 set0  0x00000025 , 0x00000000 
+ 00015702  0x00001413 bpatch  0x000000b5 , 0x00004016 
+ 00015703  0x00001414 jam  0x00000000 , 0x00000150 
+ 00015704  0x00001415 jam  0x00000000 , 0x0000017e 
+ 00015705  0x00001416 jam  0x00000000 , 0x0000017f 
+ 00015706  0x00001417 setarg  0x00000000 
+ 00015707  0x00001418 store  0x00000005 , 0x000008d2 
+ 00015708  0x00001419 fetch  0x00000001 , 0x00004132 
+ 00015709  0x0000141a branch  0x00003d55 , 0x00000034 
+ 00015710  0x0000141b beq  0x0000000a , 0x00005a12 
+ 00015711  0x0000141d rtn 
+ 00015712  0x00001421 call  0x00007cf4 
+ 00015713  0x00001422 call  0x00007d9e 
+ 00015714  0x00001423 call  0x00003d69 
+ 00015715  0x00001424 fetch  0x00000002 , 0x00004294 
+ 00015716  0x00001425 branch  0x00007f69 
+ 00015717  0x00001428 fetch  0x00000002 , 0x00004292 
+ 00015718  0x00001429 branch  0x00007f69 
+ 00015719  0x0000142c fetch  0x00000002 , 0x00004290 
+ 00015720  0x0000142d branch  0x00007f69 
+ 00015721  0x00001430 set0  0x00000025 , 0x00000000 
+ 00015722  0x00001431 bpatch  0x000000b6 , 0x00004016 
+ 00015723  0x00001433 arg  0x000046f0 , 0x00000011 
+ 00015724  0x00001434 call  0x00007f95 
+ 00015725  0x00001435 rtn  0x00000034 
+ 00015726  0x00001437 copy  0x0000003f , 0x00000013 
+ 00015727  0x00001438 call  0x00003d73 
+ 00015728  0x00001439 branch  0x00003d9b 
+ 00015729  0x0000143c arg  0x00000000 , 0x00000013 
+ 00015730  0x0000143d rtn 
+ 00015731  0x00001443 beq  0x00000001 , 0x00003d88 
+ 00015732  0x00001444 beq  0x00000010 , 0x00003dcf 
+ 00015733  0x00001445 beq  0x00000005 , 0x00003dac 
+ 00015734  0x00001446 beq  0x00000012 , 0x00003db3 
+ 00015735  0x00001447 beq  0x00000006 , 0x00003dcb 
+ 00015736  0x00001448 beq  0x00000004 , 0x00003df6 
+ 00015737  0x00001449 beq  0x00000002 , 0x00003dfb 
+ 00015738  0x0000144a beq  0x00000013 , 0x00003df6 
+ 00015739  0x0000144b beq  0x00000014 , 0x00003dc2 
+ 00015740  0x0000144c beq  0x00000015 , 0x00003dc6 
+ 00015741  0x0000144d beq  0x00000003 , 0x00003da5 
+ 00015742  0x0000144e beq  0x0000000b , 0x00003db7 
+ 00015743  0x0000144f beq  0x0000000c , 0x00003dbe 
+ 00015744  0x00001451 beq  0x00000016 , 0x00003dd3 
+ 00015745  0x00001452 beq  0x00000018 , 0x00003da1 
+ 00015746  0x00001453 beq  0x0000002a , 0x00003d91 
+ 00015747  0x00001454 beq  0x0000002b , 0x00003d8f 
+ 00015748  0x00001456 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00015749  0x00001457 and_into  0x000000f0 , 0x0000003f 
+ 00015750  0x00001458 beq  0x00000050 , 0x00003dd7 
+ 00015751  0x00001459 rtn 
+ 00015752  0x0000145c fetch  0x00000002 , 0x0000470b 
+ 00015753  0x0000145d set1  0x00000000 , 0x0000003f 
+ 00015754  0x0000145e store  0x00000002 , 0x0000470b 
+ 00015755  0x0000145f fetch  0x00000002 , 0x000042af 
+ 00015756  0x00001460 set0  0x00000000 , 0x0000003f 
+ 00015757  0x00001461 store  0x00000002 , 0x000042af 
+ 00015758  0x00001462 rtn 
+ 00015759  0x00001465 jam  0x00000000 , 0x0000024d 
+ 00015760  0x00001466 rtn 
+ 00015761  0x00001469 fetch  0x00000001 , 0x0000024d 
+ 00015762  0x0000146a increase  0x00000001 , 0x0000003f 
+ 00015763  0x0000146b store  0x00000001 , 0x0000024d 
+ 00015764  0x0000146c sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00015765  0x0000146d branch  0x00003e47 , 0x00000002 
+ 00015766  0x0000146e jam  0x00000000 , 0x0000024d 
+ 00015767  0x0000146f fetch  0x00000002 , 0x000042af 
+ 00015768  0x00001470 set1  0x00000009 , 0x0000003f 
+ 00015769  0x00001471 store  0x00000002 , 0x000042af 
+ 00015770  0x00001472 branch  0x00003e52 
+ 00015771  0x00001475 fetch  0x00000002 , 0x00004296 
+ 00015772  0x00001476 branch  0x00007f69 
+ 00015773  0x00001479 fetch  0x00000002 , 0x0000428a 
+ 00015774  0x0000147a branch  0x00007f69 
+ 00015775  0x0000147d fetch  0x00000002 , 0x0000428e 
+ 00015776  0x0000147e branch  0x00007f69 
+ 00015777  0x00001481 fetch  0x00000002 , 0x000042af 
+ 00015778  0x00001482 set1  0x00000001 , 0x0000003f 
+ 00015779  0x00001483 store  0x00000002 , 0x000042af 
+ 00015780  0x00001484 branch  0x00003e7d 
+ 00015781  0x00001487 fetch  0x00000002 , 0x0000470b 
+ 00015782  0x00001488 set1  0x00000007 , 0x0000003f 
+ 00015783  0x00001489 store  0x00000002 , 0x0000470b 
+ 00015784  0x0000148a fetch  0x00000002 , 0x000042af 
+ 00015785  0x0000148b set1  0x00000002 , 0x0000003f 
+ 00015786  0x0000148c store  0x00000002 , 0x000042af 
+ 00015787  0x0000148d rtn 
+ 00015788  0x00001490 fetch  0x00000002 , 0x0000470b 
+ 00015789  0x00001491 set1  0x00000001 , 0x0000003f 
+ 00015790  0x00001492 store  0x00000002 , 0x0000470b 
+ 00015791  0x00001493 fetch  0x00000002 , 0x000042af 
+ 00015792  0x00001494 set1  0x00000004 , 0x0000003f 
+ 00015793  0x00001495 store  0x00000002 , 0x000042af 
+ 00015794  0x00001496 rtn 
+ 00015795  0x00001499 fetch  0x00000002 , 0x0000470b 
+ 00015796  0x0000149a set1  0x00000003 , 0x0000003f 
+ 00015797  0x0000149b store  0x00000002 , 0x0000470b 
+ 00015798  0x0000149c rtn 
+ 00015799  0x0000149f fetch  0x00000002 , 0x0000470b 
+ 00015800  0x000014a0 set1  0x00000005 , 0x0000003f 
+ 00015801  0x000014a1 store  0x00000002 , 0x0000470b 
+ 00015802  0x000014a2 fetch  0x00000002 , 0x000042af 
+ 00015803  0x000014a3 set1  0x00000003 , 0x0000003f 
+ 00015804  0x000014a4 store  0x00000002 , 0x000042af 
+ 00015805  0x000014a5 rtn 
+ 00015806  0x000014a8 fetch  0x00000002 , 0x0000470b 
+ 00015807  0x000014a9 set0  0x00000005 , 0x0000003f 
+ 00015808  0x000014aa store  0x00000002 , 0x0000470b 
+ 00015809  0x000014ab rtn 
+ 00015810  0x000014ae fetch  0x00000002 , 0x0000470b 
+ 00015811  0x000014af set1  0x00000009 , 0x0000003f 
+ 00015812  0x000014b0 store  0x00000002 , 0x0000470b 
+ 00015813  0x000014b1 rtn 
+ 00015814  0x000014b4 fetch  0x00000002 , 0x0000470b 
+ 00015815  0x000014b5 set0  0x00000009 , 0x0000003f 
+ 00015816  0x000014b6 store  0x00000002 , 0x0000470b 
+ 00015817  0x000014b7 jam  0x00000000 , 0x00004595 
+ 00015818  0x000014b8 branch  0x00003e81 
+ 00015819  0x000014bb fetch  0x00000002 , 0x0000470b 
+ 00015820  0x000014bc set1  0x00000002 , 0x0000003f 
+ 00015821  0x000014bd store  0x00000002 , 0x0000470b 
+ 00015822  0x000014be rtn 
+ 00015823  0x000014c1 fetch  0x00000002 , 0x000042af 
+ 00015824  0x000014c2 set1  0x00000000 , 0x0000003f 
+ 00015825  0x000014c3 store  0x00000002 , 0x000042af 
+ 00015826  0x000014c4 rtn 
+ 00015827  0x000014c7 fetch  0x00000002 , 0x000042af 
+ 00015828  0x000014c8 set1  0x00000008 , 0x0000003f 
+ 00015829  0x000014c9 store  0x00000002 , 0x000042af 
+ 00015830  0x000014ca branch  0x00003e52 
+ 00015831  0x000014ce set0  0x00000025 , 0x00000000 
+ 00015832  0x000014cf bpatch  0x000000b7 , 0x00004016 
+ 00015833  0x000014d0 storet  0x00000001 , 0x0000024e 
+ 00015834  0x000014d2 fetch  0x00000001 , 0x0000024e 
+ 00015835  0x000014d3 rtn  0x00000034 
+ 00015836  0x000014d4 increase  0xffffffff , 0x0000003f 
+ 00015837  0x000014d5 store  0x00000001 , 0x0000024e 
+ 00015838  0x000014d6 call  0x00007d02 
+ 00015839  0x000014d7 call  0x00003e3b 
+ 00015840  0x000014d8 call  0x00003de5 
+ 00015841  0x000014d9 call  0x00003ded 
+ 00015842  0x000014da fetch  0x00000002 , 0x000042a0 
+ 00015843  0x000014db call  0x00007f69 
+ 00015844  0x000014dc branch  0x00003dda 
+ 00015845  0x000014df fetch  0x00000001 , 0x000042aa 
+ 00015846  0x000014e0 rtn  0x00000034 
+ 00015847  0x000014e1 increase  0xffffffff , 0x0000003f 
+ 00015848  0x000014e2 store  0x00000001 , 0x000042aa 
+ 00015849  0x000014e3 nrtn  0x00000034 
+ 00015850  0x000014e4 call  0x00003292 
+ 00015851  0x000014e5 branch  0x00003e79 , 0x00000005 
+ 00015852  0x000014e6 rtn 
+ 00015853  0x000014e8 fetch  0x00000002 , 0x00004707 
+ 00015854  0x000014e9 rtn  0x00000034 
+ 00015855  0x000014ea increase  0xffffffff , 0x0000003f 
+ 00015856  0x000014eb store  0x00000002 , 0x00004707 
+ 00015857  0x000014ec nrtn  0x00000034 
+ 00015858  0x000014ed call  0x00003e59 
+ 00015859  0x000014ee call  0x00003e73 
+ 00015860  0x000014ef fetch  0x00000002 , 0x00004298 
+ 00015861  0x000014f0 branch  0x00007f69 
+ 00015862  0x000014f3 call  0x00003e0f 
+ 00015863  0x000014f5 fetch  0x00000002 , 0x0000470b 
+ 00015864  0x000014f6 set0  0x00000007 , 0x0000003f 
+ 00015865  0x000014f7 store  0x00000002 , 0x0000470b 
+ 00015866  0x000014f8 rtn 
+ 00015867  0x000014fb jam  0x00000000 , 0x000042aa 
+ 00015868  0x000014fc fetch  0x00000002 , 0x0000470b 
+ 00015869  0x000014fd bbit1  0x00000007 , 0x00003e00 
+ 00015870  0x000014fe isolate0  0x00000001 , 0x0000003f 
+ 00015871  0x000014ff call  0x00003d71 , 0x00000001 
+ 00015872  0x00001501 set0  0x00000025 , 0x00000000 
+ 00015873  0x00001502 bpatch  0x000000b8 , 0x00004017 
+ 00015874  0x00001503 fetch  0x00000002 , 0x0000470b 
+ 00015875  0x00001504 set0  0x00000000 , 0x0000003f 
+ 00015876  0x00001505 set0  0x00000001 , 0x0000003f 
+ 00015877  0x00001506 set0  0x00000002 , 0x0000003f 
+ 00015878  0x00001507 set0  0x00000003 , 0x0000003f 
+ 00015879  0x00001508 set0  0x00000007 , 0x0000003f 
+ 00015880  0x00001509 store  0x00000002 , 0x0000470b 
+ 00015881  0x0000150a branch  0x00003e81 
+ 00015882  0x0000150d call  0x00003e0c 
+ 00015883  0x0000150e branch  0x00003e75 
+ 00015884  0x00001512 setarg  0x00000000 
+ 00015885  0x00001513 store  0x00000002 , 0x000042ad 
+ 00015886  0x00001514 rtn 
+ 00015887  0x00001516 setarg  0x00000000 
+ 00015888  0x00001517 store  0x00000002 , 0x000042af 
+ 00015889  0x00001518 rtn 
+ 00015890  0x0000151c fetch  0x00000002 , 0x000042af 
+ 00015891  0x0000151d store  0x00000002 , 0x000042ad 
+ 00015892  0x0000151e setarg  0x00000000 
+ 00015893  0x0000151f store  0x00000002 , 0x000042af 
+ 00015894  0x00001520 rtn 
+ 00015895  0x00001523 fetch  0x00000002 , 0x000042af 
+ 00015896  0x00001524 set1  0x00000007 , 0x0000003f 
+ 00015897  0x00001525 store  0x00000002 , 0x000042ad 
+ 00015898  0x00001526 setarg  0x00000000 
+ 00015899  0x00001527 store  0x00000002 , 0x000042af 
+ 00015900  0x00001528 rtn 
+ 00015901  0x00001531 fetch  0x00000001 , 0x0000470b 
+ 00015902  0x00001532 isolate1  0x00000005 , 0x0000003f 
+ 00015903  0x00001533 rtn 
+ 00015904  0x0000153c setarg  0x0000aa55 
+ 00015905  0x0000153e store  0x00000002 , 0x000009ce 
+ 00015906  0x0000153f set0  0x00000025 , 0x00000000 
+ 00015907  0x00001540 bpatch  0x000000b9 , 0x00004017 
+ 00015908  0x00001541 arg  0x00000002 , 0x00000002 
+ 00015909  0x00001542 arg  0x000009ce , 0x00000011 
+ 00015910  0x00001543 arg  0x000000c3 , 0x00000012 
+ 00015911  0x00001544 branch  0x0000626f 
+ 00015912  0x00001548 set0  0x00000025 , 0x00000000 
+ 00015913  0x00001549 bpatch  0x000000ba , 0x00004017 
+ 00015914  0x0000154a arg  0x00000002 , 0x00000002 
+ 00015915  0x0000154b arg  0x000009be , 0x00000011 
+ 00015916  0x0000154c arg  0x000000c3 , 0x00000012 
+ 00015917  0x0000154d call  0x00006245 
+ 00015918  0x0000154e fetch  0x00000002 , 0x000009be 
+ 00015919  0x0000154f arg  0x0000aa55 , 0x00000002 
+ 00015920  0x00001550 isub  0x00000002 , 0x0000003e 
+ 00015921  0x00001551 rtn 
+ 00015922  0x00001555 fetch  0x00000001 , 0x000045f3 
+ 00015923  0x00001556 store  0x00000001 , 0x000042aa 
+ 00015924  0x00001557 rtn 
+ 00015925  0x0000155a arg  0x00000009 , 0x00000007 
+ 00015926  0x0000155b branch  0x00003d06 
+ 00015927  0x0000155e arg  0x00000009 , 0x00000007 
+ 00015928  0x0000155f branch  0x00003d0a 
+ 00015929  0x00001562 jam  0x00000005 , 0x000042ab 
+ 00015930  0x00001563 branch  0x00003e35 
+ 00015931  0x00001565 fetch  0x00000001 , 0x000042ab 
+ 00015932  0x00001566 rtn  0x00000034 
+ 00015933  0x00001567 increase  0xffffffff , 0x0000003f 
+ 00015934  0x00001568 store  0x00000001 , 0x000042ab 
+ 00015935  0x00001569 nrtn  0x00000034 
+ 00015936  0x0000156a branch  0x00003e37 
+ 00015937  0x0000156d jam  0x00000001 , 0x000043f3 
+ 00015938  0x0000156e rtn 
+ 00015939  0x00001571 jam  0x00000000 , 0x000043f3 
+ 00015940  0x00001572 rtn 
+ 00015941  0x00001575 jam  0x0000000a , 0x000009bd 
+ 00015942  0x00001576 branch  0x00007d90 
+ 00015943  0x00001579 jam  0x0000001d , 0x000009bd 
+ 00015944  0x0000157a branch  0x00007d90 
+ 00015945  0x0000157d set0  0x00000025 , 0x00000000 
+ 00015946  0x0000157e bpatch  0x000000bb , 0x00004017 
+ 00015947  0x0000157f fetch  0x00000001 , 0x000042ac 
+ 00015948  0x00001580 store  0x00000001 , 0x0000016c 
+ 00015949  0x00001581 jam  0x00000001 , 0x0000024c 
+ 00015950  0x00001582 jam  0x00000003 , 0x000009bd 
+ 00015951  0x00001583 branch  0x00007d90 
+ 00015952  0x00001586 jam  0x0000001e , 0x000009bd 
+ 00015953  0x00001587 branch  0x00007d90 
+ 00015954  0x0000158a jam  0x00000004 , 0x000009bd 
+ 00015955  0x0000158b branch  0x00007d90 
+ 00015956  0x0000158e fetch  0x00000002 , 0x00004716 
+ 00015957  0x0000158f store  0x00000002 , 0x00004707 
+ 00015958  0x00001591 call  0x00003e6f 
+ 00015959  0x00001593 jam  0x00000001 , 0x000009bd 
+ 00015960  0x00001594 branch  0x00007d90 
+ 00015961  0x00001597 setarg  0x00000000 
+ 00015962  0x00001598 store  0x00000002 , 0x00004707 
+ 00015963  0x00001599 jam  0x00000002 , 0x000009bd 
+ 00015964  0x0000159a branch  0x00007d90 
+ 00015965  0x0000159d jam  0x0000000f , 0x000009bd 
+ 00015966  0x0000159e branch  0x00007d90 
+ 00015967  0x000015a1 jam  0x00000010 , 0x000009bd 
+ 00015968  0x000015a2 branch  0x00007d90 
+ 00015969  0x000015a5 jam  0x0000000e , 0x000009bd 
+ 00015970  0x000015a6 branch  0x00007d90 
+ 00015971  0x000015a9 jam  0x0000000d , 0x000009bd 
+ 00015972  0x000015aa branch  0x00007d90 
+ 00015973  0x000015ad jam  0x00000017 , 0x000009bd 
+ 00015974  0x000015ae branch  0x00007d90 
+ 00015975  0x000015b1 jam  0x00000018 , 0x000009bd 
+ 00015976  0x000015b2 branch  0x00007d90 
+ 00015977  0x000015b5 jam  0x00000016 , 0x000009bd 
+ 00015978  0x000015b6 branch  0x00007d90 
+ 00015979  0x000015b9 jam  0x00000011 , 0x000009bd 
+ 00015980  0x000015ba branch  0x00007d90 
+ 00015981  0x000015bd jam  0x0000001c , 0x000009bd 
+ 00015982  0x000015be branch  0x00007d90 
+ 00015983  0x000015c1 jam  0x00000015 , 0x000009bd 
+ 00015984  0x000015c2 branch  0x00007d90 
+ 00015985  0x000015c5 jam  0x00000014 , 0x000009bd 
+ 00015986  0x000015c6 branch  0x00007d90 
+ 00015987  0x000015ca jam  0x00000013 , 0x000009bd 
+ 00015988  0x000015cb branch  0x00007d90 
+ 00015989  0x000015ce jam  0x00000019 , 0x000009bd 
+ 00015990  0x000015cf branch  0x00007d90 
+ 00015991  0x000015d2 jam  0x00000006 , 0x000009bd 
+ 00015992  0x000015d3 branch  0x00007d90 
+ 00015993  0x000015d6 jam  0x00000005 , 0x000009bd 
+ 00015994  0x000015d7 branch  0x00007d90 
+ 00015995  0x000015da jam  0x0000001f , 0x000009bd 
+ 00015996  0x000015db branch  0x00007d90 
+ 00015997  0x000015de jam  0x00000020 , 0x000009bd 
+ 00015998  0x000015df branch  0x00007d90 
+ 00015999  0x000015e2 set1  0x0000000d , 0x00000000 
+ 00016000  0x000015e3 rtn 
+ 00016001  0x000015e6 set0  0x0000000d , 0x00000000 
+ 00016002  0x000015e7 rtn 
+ 00016003  0x000015ed set0  0x00000025 , 0x00000000 
+ 00016004  0x000015ee bpatch  0x000000bc , 0x00004017 
+ 00016005  0x000015ef fetch  0x00000001 , 0x00004271 
+ 00016006  0x000015f0 nrtn  0x00000034 
+ 00016007  0x000015f2 call  0x00003e8a 
+ 00016008  0x000015f3 ncall  0x00003ea3 , 0x00000028 
+ 00016009  0x000015f4 rtn 
+ 00016010  0x000015f7 set0  0x00000025 , 0x00000000 
+ 00016011  0x000015f8 bpatch  0x000000bd , 0x00004017 
+ 00016012  0x000015f9 copy  0x00000003 , 0x00000011 
+ 00016013  0x000015fa arg  0x00000004 , 0x00000002 
+ 00016014  0x000015fb ifetch  0x00000001 , 0x00000003 
+ 00016015  0x000015fc beq  0x00000001 , 0x00003e95 
+ 00016016  0x000015fd increase  0x00000001 , 0x00000002 
+ 00016017  0x000015fe beq  0x00000002 , 0x00003e95 
+ 00016018  0x000015ff copy  0x00000003 , 0x0000003f 
+ 00016019  0x00001600 hstore  0x00000002 , 0x00008058 
+ 00016020  0x00001601 rtn 
+ 00016021  0x00001603 hfetch  0x00000002 , 0x00008112 
+ 00016022  0x00001604 isub  0x00000002 , 0x0000003e 
+ 00016023  0x00001605 nbranch  0x00003e95 , 0x00000002 
+ 00016024  0x00001607 disable  0x00000028 
+ 00016025  0x00001608 copy  0x00000011 , 0x00000003 
+ 00016026  0x00001609 call  0x00003eac 
+ 00016027  0x0000160a iadd  0x00000002 , 0x00000002 
+ 00016028  0x0000160c hfetch  0x00000002 , 0x00008112 
+ 00016029  0x0000160d isub  0x00000002 , 0x0000003e 
+ 00016030  0x0000160e nbranch  0x00003e9c , 0x00000002 
+ 00016031  0x0000160f copy  0x00000011 , 0x00000003 
+ 00016032  0x00001610 ifetch  0x00000001 , 0x00000003 
+ 00016033  0x00001611 beq  0x00000001 , 0x00003f06 
+ 00016034  0x00001612 branch  0x00003b31 
+ 00016035  0x00001615 set0  0x00000025 , 0x00000000 
+ 00016036  0x00001616 bpatch  0x000000be , 0x00004017 
+ 00016037  0x00001617 hfetch  0x00000002 , 0x00008058 
+ 00016038  0x00001618 iforce  0x00000003 
+ 00016039  0x00001619 call  0x00003eac 
+ 00016040  0x0000161a iadd  0x00000003 , 0x00000003 
+ 00016041  0x0000161b deposit  0x00000003 
+ 00016042  0x0000161c hstore  0x00000002 , 0x00008058 
+ 00016043  0x0000161d rtn 
+ 00016044  0x00001623 ifetch  0x00000001 , 0x00000003 
+ 00016045  0x00001624 increase  0x00000002 , 0x00000003 
+ 00016046  0x00001625 beq  0x00000002 , 0x00003eb1 
+ 00016047  0x00001626 ifetch  0x00000001 , 0x00000003 
+ 00016048  0x00001627 rtn 
+ 00016049  0x00001629 ifetch  0x00000002 , 0x00000003 
+ 00016050  0x0000162a rtn 
+ 00016051  0x0000162d hfetch  0x00000002 , 0x0000805e 
+ 00016052  0x0000162e increase  0xfffffffb , 0x0000000a 
+ 00016053  0x0000162f iadd  0x0000000a , 0x0000000a 
+ 00016054  0x00001630 rtn 
+ 00016055  0x00001633 arg  0x00000004 , 0x00000002 
+ 00016056  0x00001634 branch  0x00003eba 
+ 00016057  0x00001636 arg  0x00000002 , 0x00000002 
+ 00016058  0x00001638 set0  0x00000025 , 0x00000000 
+ 00016059  0x00001639 bpatch  0x000000bf , 0x00004017 
+ 00016060  0x0000163a increase  0x00000001 , 0x00000039 
+ 00016061  0x0000163b hfetch  0x00000002 , 0x0000805e 
+ 00016062  0x0000163c copy  0x0000003f , 0x0000000a 
+ 00016063  0x0000163d copy  0x00000039 , 0x0000003f 
+ 00016064  0x0000163e istoret  0x00000001 , 0x0000000a 
+ 00016065  0x0000163f increase  0xffffffff , 0x0000003f 
+ 00016066  0x00001640 iadd  0x0000000a , 0x0000000a 
+ 00016067  0x00001641 copy  0x0000000a , 0x0000003f 
+ 00016068  0x00001642 store  0x00000002 , 0x0000027a 
+ 00016069  0x00001643 copy  0x00000002 , 0x0000003f 
+ 00016070  0x00001644 rtneq  0x00000002 
+ 00016071  0x00001645 fetch  0x00000002 , 0x0000027a 
+ 00016072  0x00001646 hstore  0x00000002 , 0x0000805e 
+ 00016073  0x00001647 branch  0x00003eca 
+ 00016074  0x0000164b setarg  0x00000000 
+ 00016075  0x0000164c store  0x00000002 , 0x0000027a 
+ 00016076  0x0000164d rtn 
+ 00016077  0x00001655 set0  0x00000025 , 0x00000000 
+ 00016078  0x00001656 bpatch  0x000000c0 , 0x00004018 
+ 00016079  0x00001657 rtn  0x0000002b 
+ 00016080  0x00001658 setarg  0x00003fbf 
+ 00016081  0x00001659 store  0x00000002 , 0x00004294 
+ 00016082  0x0000165b setarg  0x000001a0 
+ 00016083  0x0000165c store  0x00000002 , 0x000042d3 
+ 00016084  0x0000165e set0  0x00000025 , 0x00000000 
+ 00016085  0x0000165f bpatch  0x000000c1 , 0x00004018 
+ 00016086  0x00001660 setarg  0x00001800 
+ 00016087  0x00001661 hstore  0x00000002 , 0x00008054 
+ 00016088  0x00001662 setarg  0x00001bff 
+ 00016089  0x00001663 hstore  0x00000002 , 0x00008056 
+ 00016090  0x00001664 setarg  0x00001c00 
+ 00016091  0x00001665 hstore  0x00000002 , 0x0000805a 
+ 00016092  0x00001666 call  0x00003eed 
+ 00016093  0x00001668 hjam  0x00000000 , 0x00008062 
+ 00016094  0x00001669 setarg  0x00001c00 
+ 00016095  0x0000166a hstore  0x00000002 , 0x0000805e 
+ 00016096  0x0000166b hstore  0x00000002 , 0x00008060 
+ 00016097  0x0000166c setarg  0x00001800 
+ 00016098  0x0000166d hstore  0x00000002 , 0x00008058 
+ 00016099  0x0000166e store  0x00000002 , 0x00000266 
+ 00016100  0x00001670 set0  0x00000025 , 0x00000000 
+ 00016101  0x00001671 bpatch  0x000000c2 , 0x00004018 
+ 00016102  0x00001672 hfetch  0x00000002 , 0x00008050 
+ 00016103  0x00001673 set0  0x0000000f , 0x0000003f 
+ 00016104  0x00001674 hstore  0x00000002 , 0x00008050 
+ 00016105  0x00001675 call  0x00006325 
+ 00016106  0x00001676 hjam  0x00000001 , 0x00008043 
+ 00016107  0x00001677 hjam  0x00000081 , 0x00008062 
+ 00016108  0x00001678 rtn 
+ 00016109  0x0000167b setarg  0x00001fff 
+ 00016110  0x0000167c hstore  0x00000002 , 0x0000805c 
+ 00016111  0x0000167d hfetch  0x00000001 , 0x00008081 
+ 00016112  0x0000167e or_into  0x00000007 , 0x0000003f 
+ 00016113  0x0000167f hstore  0x00000001 , 0x00008081 
+ 00016114  0x00001680 jam  0x000000ff , 0x0000027c 
+ 00016115  0x00001681 rtn 
+ 00016116  0x00001685 set0  0x00000025 , 0x00000000 
+ 00016117  0x00001686 bpatch  0x000000c3 , 0x00004018 
+ 00016118  0x00001687 hfetch  0x00000001 , 0x0000810c 
+ 00016119  0x00001688 iforce  0x00000012 
+ 00016120  0x00001689 bbit0  0x00000003 , 0x00003efe 
+ 00016121  0x0000168a hfetch  0x00000002 , 0x00008112 
+ 00016122  0x0000168b iforce  0x00000013 
+ 00016123  0x0000168c arg  0x0000044f , 0x00000002 
+ 00016124  0x0000168d isub  0x00000002 , 0x0000003e 
+ 00016125  0x0000168e nrtn  0x00000005 
+ 00016126  0x00001690 hfetch  0x00000002 , 0x00008058 
+ 00016127  0x00001691 iforce  0x00000003 
+ 00016128  0x00001692 branch  0x00003e83 
+ 00016129  0x00001695 hfetcht  0x00000001 , 0x0000810c 
+ 00016130  0x00001696 isolate1  0x00000006 , 0x00000002 
+ 00016131  0x00001697 branch  0x00003f01 , 0x00000001 
+ 00016132  0x00001698 hstore  0x00000001 , 0x00008015 
+ 00016133  0x00001699 rtn 
+ 00016134  0x0000169c set0  0x00000025 , 0x00000000 
+ 00016135  0x0000169d bpatch  0x000000c4 , 0x00004018 
+ 00016136  0x0000169e fetch  0x00000001 , 0x00004271 
+ 00016137  0x0000169f branch  0x00003f0c , 0x00000034 
+ 00016138  0x000016a0 enable  0x00000028 
+ 00016139  0x000016a1 rtn 
+ 00016140  0x000016a3 ifetch  0x00000002 , 0x00000003 
+ 00016141  0x000016a4 iforce  0x00000030 
+ 00016142  0x000016a5 iforce  0x00000007 
+ 00016143  0x000016a6 ifetch  0x00000001 , 0x00000003 
+ 00016144  0x000016a7 iforce  0x00000002 
+ 00016145  0x000016a8 rshift2  0x00000030 , 0x0000003f 
+ 00016146  0x000016a9 rshift8  0x0000003f , 0x0000003f 
+ 00016147  0x000016aa beq  0x0000003f , 0x00003f15 
+ 00016148  0x000016ab rtn 
+ 00016149  0x000016af set0  0x00000025 , 0x00000000 
+ 00016150  0x000016b0 bpatch  0x000000c5 , 0x00004018 
+ 00016151  0x000016b1 deposit  0x00000007 
+ 00016152  0x000016b2 beq  0x00000000 , 0x00003f70 
+ 00016153  0x000016b3 beq  0x00000001 , 0x00003f2d 
+ 00016154  0x000016b4 beq  0x00000002 , 0x00003f32 
+ 00016155  0x000016b5 beq  0x00000003 , 0x00003f36 
+ 00016156  0x000016b6 beq  0x00000004 , 0x00003f49 
+ 00016157  0x000016b7 beq  0x00000005 , 0x00003f70 
+ 00016158  0x000016b8 beq  0x00000006 , 0x00003f5a 
+ 00016159  0x000016b9 beq  0x00000007 , 0x00003f23 
+ 00016160  0x000016bb beq  0x00000010 , 0x00003f5d 
+ 00016161  0x000016bc beq  0x00000011 , 0x00003f65 
+ 00016162  0x000016bd branch  0x00003f70 
+ 00016163  0x000016c0 call  0x00003f70 
+ 00016164  0x000016c1 call  0x00007f6b 
+ 00016165  0x000016c2 call  0x00006561 
+ 00016166  0x000016c4 call  0x00003e37 
+ 00016167  0x000016c5 call  0x00003e41 
+ 00016168  0x000016c6 branch  0x00006564 
+ 00016169  0x000016c9 jam  0x00000000 , 0x000042d5 
+ 00016170  0x000016ca call  0x00003e35 
+ 00016171  0x000016cb call  0x00003ed4 
+ 00016172  0x000016cc branch  0x00003e43 
+ 00016173  0x000016cf call  0x00003f89 
+ 00016174  0x000016d0 hfetch  0x00000002 , 0x00008000 
+ 00016175  0x000016d1 istore  0x00000002 , 0x0000000a 
+ 00016176  0x000016d2 force  0x00000006 , 0x00000039 
+ 00016177  0x000016d3 branch  0x00003f73 
+ 00016178  0x000016d6 ifetch  0x00000002 , 0x00000003 
+ 00016179  0x000016d7 store  0x00000002 , 0x000042d3 
+ 00016180  0x000016d8 hstore  0x00000002 , 0x00008052 
+ 00016181  0x000016d9 rtn 
+ 00016182  0x000016dd ifetch  0x00000001 , 0x00000003 
+ 00016183  0x000016de copy  0x0000003f , 0x00000002 
+ 00016184  0x000016df hstore  0x00000001 , 0x00008024 
+ 00016185  0x000016e0 ifetch  0x00000001 , 0x00000003 
+ 00016186  0x000016e1 iadd  0x00000002 , 0x00000002 
+ 00016187  0x000016e2 set1  0x00000007 , 0x0000003f 
+ 00016188  0x000016e3 hstore  0x00000001 , 0x00008023 
+ 00016189  0x000016e4 ifetch  0x00000001 , 0x00000003 
+ 00016190  0x000016e5 iadd  0x00000002 , 0x00000002 
+ 00016191  0x000016e6 copy  0x0000003f , 0x00000039 
+ 00016192  0x000016e8 ifetch  0x00000001 , 0x00000003 
+ 00016193  0x000016e9 hstore  0x00000001 , 0x00008025 
+ 00016194  0x000016ea iadd  0x00000002 , 0x00000002 
+ 00016195  0x000016eb loop  0x00003f40 
+ 00016196  0x000016ec and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016197  0x000016ed ifetch  0x00000001 , 0x00000003 
+ 00016198  0x000016ee isub  0x00000002 , 0x0000003e 
+ 00016199  0x000016ef nbranch  0x00003f58 , 0x00000005 
+ 00016200  0x000016f0 branch  0x00003f70 
+ 00016201  0x000016f3 arg  0x00000020 , 0x00000039 
+ 00016202  0x000016f4 arg  0x00004000 , 0x00000005 
+ 00016203  0x000016f5 arg  0x00000000 , 0x00000002 
+ 00016204  0x000016f7 ifetch  0x00000001 , 0x00000003 
+ 00016205  0x000016f8 istore  0x00000001 , 0x00000005 
+ 00016206  0x000016f9 iadd  0x00000002 , 0x00000002 
+ 00016207  0x000016fa loop  0x00003f4c 
+ 00016208  0x000016fb and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016209  0x000016fc ifetch  0x00000001 , 0x00000003 
+ 00016210  0x000016fd isub  0x00000002 , 0x0000003e 
+ 00016211  0x000016fe nbranch  0x00003f58 , 0x00000005 
+ 00016212  0x000016ff hjam  0x00000000 , 0x00008023 
+ 00016213  0x00001700 call  0x00003f70 
+ 00016214  0x00001701 call  0x00003ea3 
+ 00016215  0x00001702 branch  0x00003001 
+ 00016216  0x00001705 hjam  0x00000000 , 0x00008023 
+ 00016217  0x00001706 branch  0x00003000 
+ 00016218  0x00001709 ifetch  0x00000006 , 0x00000003 
+ 00016219  0x0000170a store  0x00000006 , 0x00004140 
+ 00016220  0x0000170b branch  0x00003f70 
+ 00016221  0x0000170f ifetch  0x00000001 , 0x00000003 
+ 00016222  0x00001710 store  0x00000001 , 0x00000283 
+ 00016223  0x00001711 copy  0x0000003f , 0x00000039 
+ 00016224  0x00001712 ifetch  0x00000002 , 0x00000003 
+ 00016225  0x00001713 store  0x00000002 , 0x00000284 
+ 00016226  0x00001714 copy  0x0000003f , 0x00000005 
+ 00016227  0x00001715 call  0x00006354 
+ 00016228  0x00001716 branch  0x00003f70 
+ 00016229  0x0000171a ifetch  0x00000001 , 0x00000003 
+ 00016230  0x0000171b store  0x00000001 , 0x00000283 
+ 00016231  0x0000171c copy  0x0000003f , 0x00000039 
+ 00016232  0x0000171d ifetch  0x00000002 , 0x00000003 
+ 00016233  0x0000171e store  0x00000002 , 0x00000284 
+ 00016234  0x0000171f arg  0x00001000 , 0x00000005 
+ 00016235  0x00001720 call  0x00006354 
+ 00016236  0x00001721 fetcht  0x00000001 , 0x00000283 
+ 00016237  0x00001722 arg  0x00001000 , 0x00000011 
+ 00016238  0x00001723 fetch  0x00000002 , 0x00000284 
+ 00016239  0x00001724 branch  0x00006271 
+ 00016240  0x0000172a set0  0x00000025 , 0x00000000 
+ 00016241  0x0000172b bpatch  0x000000c6 , 0x00004018 
+ 00016242  0x0000172c force  0x00000004 , 0x00000039 
+ 00016243  0x0000172e call  0x00003f8b 
+ 00016244  0x0000172f force  0x00000001 , 0x0000003f 
+ 00016245  0x00001730 istore  0x00000001 , 0x0000000a 
+ 00016246  0x00001731 deposit  0x00000030 
+ 00016247  0x00001732 istore  0x00000003 , 0x0000000a 
+ 00016248  0x00001733 force  0x0000000e , 0x00000007 
+ 00016249  0x00001735 set0  0x00000025 , 0x00000000 
+ 00016250  0x00001736 bpatch  0x000000c7 , 0x00004018 
+ 00016251  0x00001737 call  0x00003f8d 
+ 00016252  0x00001738 deposit  0x00000007 
+ 00016253  0x00001739 istore  0x00000001 , 0x0000000a 
+ 00016254  0x0000173a deposit  0x00000039 
+ 00016255  0x0000173b istore  0x00000001 , 0x0000000a 
+ 00016256  0x0000173d force  0x00000005 , 0x00000007 
+ 00016257  0x0000173e increase  0x00000002 , 0x00000039 
+ 00016258  0x00001740 branch  0x00003eb7 
+ 00016259  0x00001743 force  0x000000ff , 0x00000007 
+ 00016260  0x00001744 call  0x00003f8b 
+ 00016261  0x00001745 setarg  0x00000001 
+ 00016262  0x00001746 istore  0x00000001 , 0x0000000a 
+ 00016263  0x00001747 force  0x00000001 , 0x00000039 
+ 00016264  0x00001748 branch  0x00003f79 
+ 00016265  0x0000174b force  0x0000000c , 0x0000000a 
+ 00016266  0x0000174c branch  0x00003f8e 
+ 00016267  0x0000174f force  0x00000008 , 0x0000000a 
+ 00016268  0x00001750 branch  0x00003f8e 
+ 00016269  0x00001753 force  0x00000006 , 0x0000000a 
+ 00016270  0x00001755 branch  0x00003eb3 
+ 00016271  0x0000175a pulse  0x0000000f 
+ 00016272  0x0000175b enable  0x00000009 
+ 00016273  0x0000175d ifetch  0x00000001 , 0x0000000a 
+ 00016274  0x0000175e inject  0x00000000 , 0x00000008 
+ 00016275  0x0000175f loop  0x00003f91 
+ 00016276  0x00001760 enable  0x00000008 
+ 00016277  0x00001761 inject  0x00000000 , 0x00000010 
+ 00016278  0x00001762 disable  0x00000008 
+ 00016279  0x00001763 disable  0x00000009 
+ 00016280  0x00001764 disable  0x0000000f 
+ 00016281  0x00001765 byteswap  0x0000003f , 0x0000003f 
+ 00016282  0x00001766 rtn 
+ 00016283  0x0000176b jam  0x00000000 , 0x00004271 
+ 00016284  0x0000176c rtn 
+ 00016285  0x0000176e fetch  0x00000006 , 0x00004273 
+ 00016286  0x0000176f fetcht  0x00000006 , 0x00000040 
+ 00016287  0x00001770 isub  0x00000002 , 0x0000003e 
+ 00016288  0x00001771 rtn 
+ 00016289  0x00001777 fetch  0x00000001 , 0x0000004b 
+ 00016290  0x00001778 bbit1  0x00000002 , 0x00003fa6 
+ 00016291  0x00001779 call  0x000058fa 
+ 00016292  0x0000177a jam  0x00000008 , 0x0000007c 
+ 00016293  0x0000177b branch  0x00003f9b 
+ 00016294  0x0000177d set0  0x00000002 , 0x0000003f 
+ 00016295  0x0000177e store  0x00000001 , 0x0000004b 
+ 00016296  0x0000177f call  0x00005618 
+ 00016297  0x00001780 setarg  0x00000000 
+ 00016298  0x00001781 setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00016299  0x00001782 store  0x00000001 , 0x0000007f 
+ 00016300  0x00001783 branch  0x00003f9b 
+ 00016301  0x00001784 rtn 
+ 00016302  0x00001786 jam  0x00000017 , 0x0000007c 
+ 00016303  0x00001787 arg  0x000003ff , 0x00000005 
+ 00016304  0x00001788 setarg  0x00000000 
+ 00016305  0x00001789 isolate1  0x0000001b , 0x00000028 
+ 00016306  0x0000178a setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00016307  0x0000178b istore  0x00000001 , 0x00000005 
+ 00016308  0x0000178c setarg  0x00000000 
+ 00016309  0x0000178d istore  0x00000002 , 0x00000005 
+ 00016310  0x0000178e fetch  0x00000002 , 0x00004284 
+ 00016311  0x0000178f istore  0x00000002 , 0x00000005 
+ 00016312  0x00001790 fetch  0x00000001 , 0x00004286 
+ 00016313  0x00001791 istore  0x00000002 , 0x00000005 
+ 00016314  0x00001792 fetch  0x00000001 , 0x00004288 
+ 00016315  0x00001793 istore  0x00000002 , 0x00000005 
+ 00016316  0x00001794 branch  0x00003f9b 
+ 00016317  0x00001797 jam  0x00000018 , 0x0000007c 
+ 00016318  0x00001798 branch  0x00003f9b 
+ 00016319  0x0000179b call  0x0000656e 
+ 00016320  0x0000179c rtn  0x00000001 
+ 00016321  0x0000179d arg  0x00000007 , 0x00000002 
+ 00016322  0x0000179e call  0x000064f5 
+ 00016323  0x0000179f nbranch  0x00003fc6 , 0x00000001 
+ 00016324  0x000017a0 jam  0x00000001 , 0x000042d5 
+ 00016325  0x000017a1 rtn 
+ 00016326  0x000017a3 fetch  0x00000001 , 0x000042d5 
+ 00016327  0x000017a4 rtnne  0x00000001 
+ 00016328  0x000017a5 call  0x00003f29 
+ 00016329  0x000017a6 branch  0x00003f83 
+ 00016330  0x000017b5 set0  0x00000025 , 0x00000000 
+ 00016331  0x000017b6 bpatch  0x000000c8 , 0x00004019 
+ 00016332  0x000017b7 fetch  0x00000002 , 0x0000028d 
+ 00016333  0x000017b8 copy  0x0000003f , 0x00000006 
+ 00016334  0x000017b9 ifetch  0x00000001 , 0x00000006 
+ 00016335  0x000017ba and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016336  0x000017bb rshift4  0x0000003f , 0x0000003f 
+ 00016337  0x000017bc beq  0x00000009 , 0x00003feb 
+ 00016338  0x000017bd beq  0x00000007 , 0x00003feb 
+ 00016339  0x000017be beq  0x0000000a , 0x00003ff7 
+ 00016340  0x000017bf beq  0x00000005 , 0x00003fe3 
+ 00016341  0x000017c0 beq  0x00000001 , 0x00003fd7 
+ 00016342  0x000017c1 rtn 
+ 00016343  0x000017c4 copy  0x00000002 , 0x0000003f 
+ 00016344  0x000017c5 beq  0x00000005 , 0x00003fdb 
+ 00016345  0x000017c6 beq  0x00000003 , 0x00003fe2 
+ 00016346  0x000017c7 rtn 
+ 00016347  0x000017ca jam  0x00000027 , 0x000009bd 
+ 00016348  0x000017cb call  0x00007d86 
+ 00016349  0x000017cc fetch  0x00000001 , 0x00004132 
+ 00016350  0x000017cd rtnne  0x00000006 , 0x0000003f 
+ 00016351  0x000017ce copy  0x00000002 , 0x0000003f 
+ 00016352  0x000017cf beq  0x00000005 , 0x00006455 
+ 00016353  0x000017d0 rtn 
+ 00016354  0x000017d2 rtn 
+ 00016355  0x000017d5 call  0x00003ff7 
+ 00016356  0x000017d6 arg  0x00000001 , 0x00000011 
+ 00016357  0x000017d7 call  0x00004005 
+ 00016358  0x000017d8 fetch  0x00000002 , 0x000042dc 
+ 00016359  0x000017d9 istore  0x00000002 , 0x00000005 
+ 00016360  0x000017da setarg  0x00000000 
+ 00016361  0x000017db istore  0x00000001 , 0x00000005 
+ 00016362  0x000017dc rtn 
+ 00016363  0x000017df arg  0x00000001 , 0x00000011 
+ 00016364  0x000017e0 call  0x00004005 
+ 00016365  0x000017e1 fetch  0x00000002 , 0x000042dc 
+ 00016366  0x000017e2 istore  0x00000002 , 0x00000005 
+ 00016367  0x000017e3 setarg  0x00000000 
+ 00016368  0x000017e4 istore  0x00000001 , 0x00000005 
+ 00016369  0x000017e5 jam  0x00000001 , 0x000009b2 
+ 00016370  0x000017e6 fetch  0x00000001 , 0x000042e2 
+ 00016371  0x000017e7 set1  0x00000006 
+ 00016372  0x000017e8 store  0x00000001 , 0x000042e2 
+ 00016373  0x000017e9 jam  0x00000012 , 0x000009bd 
+ 00016374  0x000017ea branch  0x00007d86 
+ 00016375  0x000017ed ifetch  0x00000001 , 0x00000006 
+ 00016376  0x000017ee beq  0x00000001 , 0x00003ffa 
+ 00016377  0x000017ef rtn 
+ 00016378  0x000017f2 copy  0x00000006 , 0x00000011 
+ 00016379  0x000017f3 fetch  0x00000001 , 0x00004132 
+ 00016380  0x000017f4 rtnne  0x00000003 , 0x0000003f 
+ 00016381  0x000017f5 copy  0x00000011 , 0x00000006 
+ 00016382  0x000017f6 ifetch  0x00000001 , 0x00000006 
+ 00016383  0x000017f7 store  0x00000001 , 0x00004b0f 
+ 00016384  0x000017f8 store  0x00000001 , 0x00004b27 
+ 00016385  0x000017f9 fetch  0x00000001 , 0x00004b01 
+ 00016386  0x000017fa nrtn  0x00000034 
+ 00016387  0x000017fb jam  0x00000002 , 0x00004b24 
+ 00016388  0x000017fc rtn 
+ 00016389  0x000017ff call  0x000047dc 
+ 00016390  0x00001800 copy  0x00000011 , 0x00000002 
+ 00016391  0x00001801 storet  0x00000001 , 0x000009b2 
+ 00016392  0x00001802 copy  0x0000003f , 0x00000005 
+ 00016393  0x00001803 copy  0x00000011 , 0x0000003f 
+ 00016394  0x00001804 istore  0x00000002 , 0x00000005 
+ 00016395  0x00001805 rtn 
+ 00016396  0x00001809 call  0x00004196 
+ 00016397  0x0000180a rtn  0x0000002b 
+ 00016398  0x0000180c call  0x00004034 
+ 00016399  0x0000180d call  0x00004055 
+ 00016400  0x0000180e setarg  0x000041a1 
+ 00016401  0x0000180f store  0x00000002 , 0x00004294 
+ 00016402  0x00001810 setarg  0x00004082 
+ 00016403  0x00001811 store  0x00000002 , 0x00004292 
+ 00016404  0x00001812 setarg  0x000041e6 
+ 00016405  0x00001813 store  0x00000002 , 0x00004296 
+ 00016406  0x00001814 setarg  0x00004268 
+ 00016407  0x00001815 store  0x00000002 , 0x0000428e 
+ 00016408  0x00001816 setarg  0x00004246 
+ 00016409  0x00001817 store  0x00000002 , 0x00004298 
+ 00016410  0x00001818 setarg  0x0000424b 
+ 00016411  0x00001819 store  0x00000002 , 0x0000428c 
+ 00016412  0x0000181a jam  0x00000000 , 0x000008d4 
+ 00016413  0x0000181b jam  0x00000000 , 0x000008d5 
+ 00016414  0x0000181c call  0x00004027 
+ 00016415  0x0000181d fetch  0x00000002 , 0x0000470b 
+ 00016416  0x0000181e bbit1  0x0000000c , 0x00003e54 
+ 00016417  0x00001820 fetch  0x00000001 , 0x000042b5 
+ 00016418  0x00001821 beq  0x00000033 , 0x00004024 
+ 00016419  0x00001822 branch  0x0000423e 
+ 00016420  0x00001824 fetch  0x00000006 , 0x00004273 
+ 00016421  0x00001825 branch  0x00003e54 , 0x00000034 
+ 00016422  0x00001826 branch  0x00003e49 
+ 00016423  0x00001829 call  0x00003e28 
+ 00016424  0x0000182a branch  0x00004032 , 0x00000005 
+ 00016425  0x0000182b setarg  0x00000001 
+ 00016426  0x0000182c store  0x00000001 , 0x00004ae9 
+ 00016427  0x0000182d call  0x0000427d 
+ 00016428  0x0000182e fetch  0x00000006 , 0x00004b07 
+ 00016429  0x0000182f store  0x00000006 , 0x00000040 
+ 00016430  0x00001830 store  0x00000006 , 0x00004273 
+ 00016431  0x00001831 call  0x00006432 
+ 00016432  0x00001832 jam  0x00000033 , 0x000042b5 
+ 00016433  0x00001833 branch  0x00003e20 
+ 00016434  0x00001836 call  0x00004284 
+ 00016435  0x00001837 branch  0x00006441 
+ 00016436  0x0000183b set0  0x00000025 , 0x00000000 
+ 00016437  0x0000183c bpatch  0x000000c9 , 0x00004019 
+ 00016438  0x0000183d hjam  0x00000000 , 0x00008070 
+ 00016439  0x0000183e hjam  0x000000ff , 0x00008078 
+ 00016440  0x0000183f hjam  0x000000ff , 0x00008071 
+ 00016441  0x00001840 hjam  0x000000ff , 0x00008072 
+ 00016442  0x00001841 hfetch  0x00000001 , 0x00008073 
+ 00016443  0x00001842 or_into  0x00000007 , 0x0000003f 
+ 00016444  0x00001843 hstore  0x00000001 , 0x00008073 
+ 00016445  0x00001844 hjam  0x00000000 , 0x00008080 
+ 00016446  0x00001845 hjam  0x00000000 , 0x00008081 
+ 00016447  0x00001846 hjam  0x00000000 , 0x0000806f 
+ 00016448  0x00001847 setarg  0x00000013 
+ 00016449  0x00001848 lshift3  0x0000003f , 0x0000003f 
+ 00016450  0x00001849 add  0x0000003f , 0x00000007 , 0x0000003f 
+ 00016451  0x0000184a hstore  0x00000001 , 0x00008064 
+ 00016452  0x0000184b hjam  0x000000ff , 0x00008083 
+ 00016453  0x0000184c hjam  0x000000ff , 0x00008084 
+ 00016454  0x0000184d hfetch  0x00000001 , 0x00008085 
+ 00016455  0x0000184e or_into  0x00000001 , 0x0000003f 
+ 00016456  0x0000184f hstore  0x00000001 , 0x00008085 
+ 00016457  0x00001851 hfetch  0x00000001 , 0x00008043 
+ 00016458  0x00001852 set1  0x00000002 , 0x0000003f 
+ 00016459  0x00001853 hstore  0x00000001 , 0x00008043 
+ 00016460  0x00001854 hjam  0x0000000c , 0x00008063 
+ 00016461  0x00001855 hjam  0x00000030 , 0x00008066 
+ 00016462  0x00001856 hfetch  0x00000001 , 0x00008051 
+ 00016463  0x00001857 set0  0x00000001 , 0x0000003f 
+ 00016464  0x00001858 hstore  0x00000001 , 0x00008051 
+ 00016465  0x00001859 hfetch  0x00000001 , 0x00008063 
+ 00016466  0x0000185a set1  0x00000000 , 0x0000003f 
+ 00016467  0x0000185b hstore  0x00000001 , 0x00008063 
+ 00016468  0x0000185c rtn 
+ 00016469  0x0000185e call  0x00004058 
+ 00016470  0x0000185f call  0x0000405c 
+ 00016471  0x00001860 branch  0x00004060 
+ 00016472  0x00001862 fetch  0x00000001 , 0x00004737 
+ 00016473  0x00001863 rtneq  0x000000ff 
+ 00016474  0x00001864 fetcht  0x00000001 , 0x00004737 
+ 00016475  0x00001865 branch  0x000064e8 
+ 00016476  0x00001867 fetch  0x00000001 , 0x00004738 
+ 00016477  0x00001868 rtneq  0x000000ff 
+ 00016478  0x00001869 fetcht  0x00000001 , 0x00004738 
+ 00016479  0x0000186a branch  0x000064e8 
+ 00016480  0x0000186c fetch  0x00000001 , 0x00004739 
+ 00016481  0x0000186d rtneq  0x000000ff 
+ 00016482  0x0000186e fetcht  0x00000001 , 0x00004739 
+ 00016483  0x0000186f branch  0x000064e8 
+ 00016484  0x00001872 fetch  0x00000001 , 0x00004b24 
+ 00016485  0x00001873 rtn  0x00000034 
+ 00016486  0x00001874 increase  0xffffffff , 0x0000003f 
+ 00016487  0x00001875 store  0x00000001 , 0x00004b24 
+ 00016488  0x00001876 nrtn  0x00000034 
+ 00016489  0x00001878 set0  0x00000025 , 0x00000000 
+ 00016490  0x00001879 bpatch  0x000000ca , 0x00004019 
+ 00016491  0x0000187a fetch  0x00000001 , 0x00004b27 
+ 00016492  0x0000187b copy  0x0000003f , 0x00000011 
+ 00016493  0x0000187c fetcht  0x00000001 , 0x00004738 
+ 00016494  0x0000187d isolate1  0x00000000 , 0x00000011 
+ 00016495  0x0000187e call  0x00006500 
+ 00016496  0x0000187f fetcht  0x00000001 , 0x00004737 
+ 00016497  0x00001880 isolate1  0x00000001 , 0x00000011 
+ 00016498  0x00001881 call  0x00006500 
+ 00016499  0x00001882 fetcht  0x00000001 , 0x00004739 
+ 00016500  0x00001883 isolate1  0x00000002 , 0x00000011 
+ 00016501  0x00001884 call  0x00006500 
+ 00016502  0x00001885 branch  0x0000407d 
+ 00016503  0x00001887 fetch  0x00000001 , 0x00004aa7 
+ 00016504  0x00001888 rtn  0x00000034 
+ 00016505  0x00001889 increase  0xffffffff , 0x0000003f 
+ 00016506  0x0000188a store  0x00000001 , 0x00004aa7 
+ 00016507  0x0000188b nrtn  0x00000034 
+ 00016508  0x0000188c branch  0x00003e7f 
+ 00016509  0x0000188e fetch  0x00000001 , 0x00004aa8 
+ 00016510  0x0000188f store  0x00000001 , 0x00004aa7 
+ 00016511  0x00001890 branch  0x00003e81 
+ 00016512  0x00001893 jam  0x00000001 , 0x00004b26 
+ 00016513  0x00001894 branch  0x000040b4 
+ 00016514  0x00001898 call  0x00004812 
+ 00016515  0x00001899 nrtn  0x00000034 
+ 00016516  0x0000189a fetch  0x00000006 , 0x00004b07 
+ 00016517  0x0000189b fetcht  0x00000006 , 0x00000040 
+ 00016518  0x0000189c isub  0x00000002 , 0x0000003e 
+ 00016519  0x0000189d branch  0x00004097 , 0x00000005 
+ 00016520  0x0000189e fetch  0x00000001 , 0x000003fa 
+ 00016521  0x0000189f beq  0x00000001 , 0x00004119 
+ 00016522  0x000018a0 fetch  0x00000001 , 0x000042e3 
+ 00016523  0x000018a1 rtnne  0x0000003f 
+ 00016524  0x000018a2 fetcht  0x00000008 , 0x00004aba 
+ 00016525  0x000018a3 fetch  0x00000008 , 0x00004aaa 
+ 00016526  0x000018a4 store  0x00000008 , 0x00004aba 
+ 00016527  0x000018a5 isub  0x00000002 , 0x0000003e 
+ 00016528  0x000018a6 ncall  0x000040ac , 0x00000005 
+ 00016529  0x000018a8 fetcht  0x00000008 , 0x00004ac2 
+ 00016530  0x000018a9 fetch  0x00000008 , 0x00004ab2 
+ 00016531  0x000018aa store  0x00000008 , 0x00004ac2 
+ 00016532  0x000018ab isub  0x00000002 , 0x0000003e 
+ 00016533  0x000018ac ncall  0x000040c7 , 0x00000005 
+ 00016534  0x000018ad rtn 
+ 00016535  0x000018b0 fetch  0x00000001 , 0x00004aca 
+ 00016536  0x000018b1 beq  0x0000007f , 0x000040aa 
+ 00016537  0x000018b2 fetcht  0x00000008 , 0x00004aba 
+ 00016538  0x000018b3 fetch  0x00000008 , 0x00004aaa 
+ 00016539  0x000018b4 store  0x00000008 , 0x00004aba 
+ 00016540  0x000018b5 isub  0x00000002 , 0x0000003e 
+ 00016541  0x000018b6 rtn  0x00000005 
+ 00016542  0x000018b7 arg  0x00004aaa , 0x00000006 
+ 00016543  0x000018b8 arg  0x00004ade , 0x00000011 
+ 00016544  0x000018b9 call  0x000040bb 
+ 00016545  0x000018ba arg  0x0000000a , 0x00000011 
+ 00016546  0x000018bb call  0x00004005 
+ 00016547  0x000018bc setarg  0x00000053 
+ 00016548  0x000018bd istore  0x00000002 , 0x00000005 
+ 00016549  0x000018be setarg  0x000001a1 
+ 00016550  0x000018bf istore  0x00000002 , 0x00000005 
+ 00016551  0x000018c0 fetch  0x00000008 , 0x00004ade 
+ 00016552  0x000018c1 istore  0x00000008 , 0x00000005 
+ 00016553  0x000018c2 rtn 
+ 00016554  0x000018c4 store  0x00000008 , 0x00004aaa 
+ 00016555  0x000018c5 branch  0x00004099 
+ 00016556  0x000018c9 call  0x00004812 
+ 00016557  0x000018ca nrtn  0x00000034 
+ 00016558  0x000018cb fetch  0x00000001 , 0x00004aa9 
+ 00016559  0x000018cc rtnbit1  0x00000002 
+ 00016560  0x000018cd call  0x000040e0 
+ 00016561  0x000018ce fetch  0x00000001 , 0x00004aaa 
+ 00016562  0x000018cf beq  0x00000039 , 0x00004080 
+ 00016563  0x000018d0 jam  0x00000000 , 0x00004b26 
+ 00016564  0x000018d1 arg  0x00004aaa , 0x00000006 
+ 00016565  0x000018d2 arg  0x00004ade , 0x00000011 
+ 00016566  0x000018d3 call  0x000040bb 
+ 00016567  0x000018d4 call  0x000040f1 
+ 00016568  0x000018d5 fetch  0x00000008 , 0x00004ade 
+ 00016569  0x000018d6 istore  0x00000008 , 0x00000005 
+ 00016570  0x000018d7 rtn 
+ 00016571  0x000018da arg  0x00000000 , 0x00000002 
+ 00016572  0x000018db add  0x00000011 , 0x00000002 , 0x00000005 
+ 00016573  0x000018dc arg  0x00000008 , 0x00000039 
+ 00016574  0x000018de ifetch  0x00000001 , 0x00000006 
+ 00016575  0x000018df bbit0  0x00000007 , 0x000040c3 
+ 00016576  0x000018e0 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016577  0x000018e1 qset1  0x00000002 
+ 00016578  0x000018e2 branch  0x000040c4 
+ 00016579  0x000018e4 istore  0x00000001 , 0x00000005 
+ 00016580  0x000018e6 loop  0x000040be 
+ 00016581  0x000018e7 istoret  0x00000002 , 0x00000011 
+ 00016582  0x000018e8 rtn 
+ 00016583  0x000018eb call  0x00004812 
+ 00016584  0x000018ec nrtn  0x00000034 
+ 00016585  0x000018ed call  0x000040e0 
+ 00016586  0x000018ee fetch  0x00000001 , 0x00004ab2 
+ 00016587  0x000018ef beq  0x000000ff , 0x0000410d 
+ 00016588  0x000018f0 beq  0x000000fe , 0x00004109 
+ 00016589  0x000018f1 setarg  0x00000000 
+ 00016590  0x000018f2 store  0x00000008 , 0x00004ade 
+ 00016591  0x000018f3 call  0x000040d6 
+ 00016592  0x000018f5 fetch  0x00000001 , 0x00004aa9 
+ 00016593  0x000018f6 bbit1  0x00000002 , 0x000040ff 
+ 00016594  0x000018f7 call  0x000040f8 
+ 00016595  0x000018f8 fetch  0x00000004 , 0x00004ade 
+ 00016596  0x000018f9 istore  0x00000004 , 0x00000005 
+ 00016597  0x000018fa rtn 
+ 00016598  0x000018fd fetch  0x00000001 , 0x00004ab2 
+ 00016599  0x000018fe rtn  0x00000034 
+ 00016600  0x000018ff enable  0x00000001 
+ 00016601  0x00001900 fetch  0x00000001 , 0x00004ab2 
+ 00016602  0x00001901 copy  0x0000003f , 0x00000007 
+ 00016603  0x00001902 fetch  0x00000008 , 0x00004ade 
+ 00016604  0x00001903 qsetflag  0x00000001 , 0x0000003f 
+ 00016605  0x00001904 store  0x00000008 , 0x00004ade 
+ 00016606  0x00001905 disable  0x00000001 
+ 00016607  0x00001906 rtn 
+ 00016608  0x00001909 fetch  0x00000002 , 0x00004afa 
+ 00016609  0x0000190a store  0x00000002 , 0x00004aa1 
+ 00016610  0x0000190b rtn 
+ 00016611  0x0000190d fetch  0x00000002 , 0x00004aa1 
+ 00016612  0x0000190e rtn  0x00000034 
+ 00016613  0x0000190f fetch  0x00000002 , 0x00004aa1 
+ 00016614  0x00001910 increase  0xffffffff , 0x0000003f 
+ 00016615  0x00001911 store  0x00000002 , 0x00004aa1 
+ 00016616  0x00001912 nrtn  0x00000034 
+ 00016617  0x00001913 branch  0x000040ea 
+ 00016618  0x00001915 setarg  0x00000000 
+ 00016619  0x00001916 store  0x00000002 , 0x00004aa1 
+ 00016620  0x00001917 fetch  0x00000002 , 0x0000470b 
+ 00016621  0x00001918 bbit1  0x00000009 , 0x00003e6b 
+ 00016622  0x00001919 fetch  0x00000002 , 0x0000470b 
+ 00016623  0x0000191a bbit1  0x00000000 , 0x00003e52 
+ 00016624  0x0000191b rtn 
+ 00016625  0x0000191e arg  0x0000000a , 0x00000011 
+ 00016626  0x0000191f call  0x00004005 
+ 00016627  0x00001920 fetch  0x00000002 , 0x000042de 
+ 00016628  0x00001921 istore  0x00000002 , 0x00000005 
+ 00016629  0x00001922 setarg  0x000001a1 
+ 00016630  0x00001923 istore  0x00000002 , 0x00000005 
+ 00016631  0x00001924 rtn 
+ 00016632  0x00001926 arg  0x00000006 , 0x00000011 
+ 00016633  0x00001927 call  0x00004005 
+ 00016634  0x00001928 fetch  0x00000002 , 0x000042de 
+ 00016635  0x00001929 istore  0x00000002 , 0x00000005 
+ 00016636  0x0000192a setarg  0x000002a1 
+ 00016637  0x0000192b istore  0x00000002 , 0x00000005 
+ 00016638  0x0000192c rtn 
+ 00016639  0x0000192f call  0x000040f1 
+ 00016640  0x00001930 setarg  0x00000000 
+ 00016641  0x00001931 istore  0x00000008 , 0x00000005 
+ 00016642  0x00001932 call  0x000040f8 
+ 00016643  0x00001933 setarg  0x00000000 
+ 00016644  0x00001934 istore  0x00000004 , 0x00000005 
+ 00016645  0x00001935 fetch  0x00000001 , 0x00004aa9 
+ 00016646  0x00001936 set0  0x00000002 , 0x0000003f 
+ 00016647  0x00001937 store  0x00000001 , 0x00004aa9 
+ 00016648  0x00001938 rtn 
+ 00016649  0x0000193a call  0x000040f8 
+ 00016650  0x0000193b setarg  0x00002002 
+ 00016651  0x0000193c istore  0x00000004 , 0x00000005 
+ 00016652  0x0000193d rtn 
+ 00016653  0x00001940 call  0x000040f8 
+ 00016654  0x00001941 setarg  0x00000040 
+ 00016655  0x00001942 istore  0x00000004 , 0x00000005 
+ 00016656  0x00001943 call  0x000040f1 
+ 00016657  0x00001944 setarg  0x00000000 
+ 00016658  0x00001945 istore  0x00000002 , 0x00000005 
+ 00016659  0x00001946 setarg  0x00000010 
+ 00016660  0x00001947 istore  0x00000007 , 0x00000005 
+ 00016661  0x00001948 fetch  0x00000001 , 0x00004aa9 
+ 00016662  0x00001949 set1  0x00000002 , 0x0000003f 
+ 00016663  0x0000194a store  0x00000001 , 0x00004aa9 
+ 00016664  0x0000194b rtn 
+ 00016665  0x0000194f set0  0x00000025 , 0x00000000 
+ 00016666  0x00001950 bpatch  0x000000cb , 0x00004019 
+ 00016667  0x00001951 fetch  0x00000001 , 0x00004aa9 
+ 00016668  0x00001952 rtnbit0  0x00000001 
+ 00016669  0x00001953 set0  0x00000001 , 0x0000003f 
+ 00016670  0x00001954 store  0x00000001 , 0x00004aa9 
+ 00016671  0x00001955 fetcht  0x00000001 , 0x00004718 
+ 00016672  0x00001956 setarg  0x00004719 
+ 00016673  0x00001957 iadd  0x00000002 , 0x00000005 
+ 00016674  0x00001958 fetch  0x00000001 , 0x00004aca 
+ 00016675  0x00001959 branch  0x00004128 , 0x00000034 
+ 00016676  0x0000195a beq  0x0000002a , 0x0000412a 
+ 00016677  0x0000195b bne  0x00000028 , 0x00004134 
+ 00016678  0x0000195c storet  0x00000001 , 0x00004718 
+ 00016679  0x0000195d branch  0x00003e45 
+ 00016680  0x00001960 storet  0x00000001 , 0x00004718 
+ 00016681  0x00001961 rtn 
+ 00016682  0x00001963 fetch  0x00000001 , 0x00004718 
+ 00016683  0x00001964 rtn  0x00000034 
+ 00016684  0x00001965 increase  0xffffffff , 0x0000003f 
+ 00016685  0x00001966 store  0x00000001 , 0x00004718 
+ 00016686  0x00001967 arg  0x00004719 , 0x00000005 
+ 00016687  0x00001968 iadd  0x00000005 , 0x00000005 
+ 00016688  0x00001969 setarg  0x00000000 
+ 00016689  0x0000196a istore  0x00000001 , 0x00000005 
+ 00016690  0x0000196b enable  0x0000002c 
+ 00016691  0x0000196c branch  0x00004143 
+ 00016692  0x0000196e sub  0x0000003f , 0x0000001d , 0x0000003e 
+ 00016693  0x0000196f rtn  0x00000002 
+ 00016694  0x00001970 arg  0x00000030 , 0x00000002 
+ 00016695  0x00001971 sub  0x0000003f , 0x00000027 , 0x0000003e 
+ 00016696  0x00001972 nrtn  0x00000002 
+ 00016697  0x00001973 branch  0x0000413d , 0x00000005 
+ 00016698  0x00001974 arg  0x0000001d , 0x00000002 
+ 00016699  0x00001975 isub  0x00000002 , 0x00000002 
+ 00016700  0x00001976 or_into  0x00000030 , 0x00000002 
+ 00016701  0x00001978 istoret  0x00000001 , 0x00000005 
+ 00016702  0x00001979 fetch  0x00000001 , 0x00004718 
+ 00016703  0x0000197a increase  0x00000001 , 0x0000003f 
+ 00016704  0x0000197b store  0x00000001 , 0x00004718 
+ 00016705  0x0000197c disable  0x0000002c 
+ 00016706  0x0000197d branch  0x00004143 
+ 00016707  0x00001980 fetch  0x00000002 , 0x000042de 
+ 00016708  0x00001981 rtn  0x00000034 
+ 00016709  0x00001982 arg  0x00000003 , 0x00000011 
+ 00016710  0x00001983 call  0x00004005 
+ 00016711  0x00001984 fetch  0x00000002 , 0x000042de 
+ 00016712  0x00001985 istore  0x00000002 , 0x00000005 
+ 00016713  0x00001986 setarg  0x0000ffa1 
+ 00016714  0x00001987 istore  0x00000002 , 0x00000005 
+ 00016715  0x00001988 setarg  0x00000000 
+ 00016716  0x00001989 setflag  0x0000002c , 0x00000000 , 0x0000003f 
+ 00016717  0x0000198a istore  0x00000001 , 0x00000005 
+ 00016718  0x0000198b rtn 
+ 00016719  0x00001990 disable  0x00000028 
+ 00016720  0x00001991 disable  0x0000002c 
+ 00016721  0x00001992 hfetch  0x00000001 , 0x00008119 
+ 00016722  0x00001993 rtnbit1  0x00000000 
+ 00016723  0x00001996 hfetch  0x00000001 , 0x0000811b 
+ 00016724  0x00001997 bbit1  0x00000000 , 0x00004159 
+ 00016725  0x00001998 hfetch  0x00000001 , 0x00008119 
+ 00016726  0x00001999 bbit0  0x00000006 , 0x00004159 
+ 00016727  0x0000199a hfetch  0x00000001 , 0x0000811a 
+ 00016728  0x0000199b branch  0x0000414f 
+ 00016729  0x0000199e enable  0x00000028 
+ 00016730  0x0000199f enable  0x0000002c 
+ 00016731  0x000019a0 hfetch  0x00000001 , 0x0000811b 
+ 00016732  0x000019a1 isolate0  0x00000000 , 0x0000003f 
+ 00016733  0x000019a2 hfetch  0x00000001 , 0x0000811a 
+ 00016734  0x000019a3 arg  0x000049ff , 0x00000006 
+ 00016735  0x000019a4 iadd  0x00000006 , 0x00000006 
+ 00016736  0x000019a5 ifetch  0x00000001 , 0x00000006 
+ 00016737  0x000019a6 bbit1  0x00000007 , 0x00004191 
+ 00016738  0x000019a7 nbranch  0x00004182 , 0x00000001 
+ 00016739  0x000019a8 disable  0x0000002c 
+ 00016740  0x000019a9 iforce  0x00000002 
+ 00016741  0x000019aa fetch  0x00000001 , 0x00004731 
+ 00016742  0x000019ab sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00016743  0x000019ac nrtn  0x00000002 
+ 00016744  0x000019ad copy  0x0000003f , 0x00000011 
+ 00016745  0x000019ae arg  0x00000003 , 0x00000039 
+ 00016746  0x000019af arg  0x0000472b , 0x00000006 
+ 00016747  0x000019b1 ifetch  0x00000001 , 0x00000006 
+ 00016748  0x000019b2 isub  0x00000002 , 0x0000003e 
+ 00016749  0x000019b3 branch  0x0000414f , 0x00000005 
+ 00016750  0x000019b4 loop  0x0000416b 
+ 00016751  0x000019b6 copy  0x00000011 , 0x0000003f 
+ 00016752  0x000019b7 arg  0x0000472b , 0x00000005 
+ 00016753  0x000019b8 iadd  0x00000005 , 0x00000005 
+ 00016754  0x000019b9 istoret  0x00000001 , 0x00000005 
+ 00016755  0x000019ba increase  0x00000001 , 0x0000003f 
+ 00016756  0x000019bb store  0x00000001 , 0x00004731 
+ 00016757  0x000019bc hfetch  0x00000001 , 0x0000811b 
+ 00016758  0x000019bd rshift3  0x0000003f , 0x0000003f 
+ 00016759  0x000019be nbranch  0x00004179 , 0x00000034 
+ 00016760  0x000019bf branch  0x00004180 
+ 00016761  0x000019c2 increase  0xffffffff , 0x0000003f 
+ 00016762  0x000019c3 branch  0x00004180 , 0x00000005 
+ 00016763  0x000019c4 hfetch  0x00000001 , 0x0000811b 
+ 00016764  0x000019c5 and_into  0x00000001 , 0x0000003f 
+ 00016765  0x000019c6 beq  0x00000000 , 0x0000414f 
+ 00016766  0x000019c7 beq  0x00000001 , 0x00004180 
+ 00016767  0x000019c8 rtn 
+ 00016768  0x000019ca enable  0x0000002c 
+ 00016769  0x000019cb rtn 
+ 00016770  0x000019ce and  0x0000003f , 0x000000ff , 0x00000002 
+ 00016771  0x000019cf fetch  0x00000001 , 0x00004731 
+ 00016772  0x000019d0 rtn  0x00000034 
+ 00016773  0x000019d1 iforce  0x00000039 
+ 00016774  0x000019d2 arg  0x0000472b , 0x00000006 
+ 00016775  0x000019d4 ifetch  0x00000001 , 0x00000006 
+ 00016776  0x000019d5 isub  0x00000002 , 0x0000003e 
+ 00016777  0x000019d6 branch  0x00004291 , 0x00000005 
+ 00016778  0x000019d7 loop  0x00004187 
+ 00016779  0x000019d8 rtn 
+ 00016780  0x000019dc hfetch  0x00000001 , 0x0000811b 
+ 00016781  0x000019dd and_into  0x00000001 , 0x0000003f 
+ 00016782  0x000019de beq  0x00000000 , 0x00004180 
+ 00016783  0x000019df beq  0x00000001 , 0x0000414f 
+ 00016784  0x000019e0 rtn 
+ 00016785  0x000019e3 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016786  0x000019e4 fetch  0x00000001 , 0x00004729 
+ 00016787  0x000019e5 qsetflag  0x00000001 , 0x0000003f 
+ 00016788  0x000019e6 store  0x00000001 , 0x00004729 
+ 00016789  0x000019e7 rtn 
+ 00016790  0x000019ea setarg  0x00000000 
+ 00016791  0x000019eb store  0x00000008 , 0x00004aca 
+ 00016792  0x000019ec store  0x00000001 , 0x00004731 
+ 00016793  0x000019ed rtn 
+ 00016794  0x000019f0 hfetch  0x00000001 , 0x0000811b 
+ 00016795  0x000019f1 hfetch  0x00000001 , 0x0000811a 
+ 00016796  0x000019f2 hfetch  0x00000001 , 0x00008119 
+ 00016797  0x000019f3 bbit0  0x00000000 , 0x0000419a 
+ 00016798  0x000019f4 setarg  0x000000ff 
+ 00016799  0x000019f5 enable  0x00000028 
+ 00016800  0x000019f6 rtn 
+ 00016801  0x000019f9 call  0x000041ac 
+ 00016802  0x000019fa rtn  0x0000002b 
+ 00016803  0x000019fc fetch  0x00000001 , 0x00004b17 
+ 00016804  0x000019fd call  0x00004299 , 0x00000034 
+ 00016805  0x000019fe call  0x0000429c 
+ 00016806  0x000019ff fetch  0x00000001 , 0x00004731 
+ 00016807  0x00001a00 rtn  0x00000034 
+ 00016808  0x00001a01 call  0x000041bf 
+ 00016809  0x00001a02 fetch  0x00000004 , 0x00000b26 
+ 00016810  0x00001a03 store  0x00000004 , 0x00004afc 
+ 00016811  0x00001a04 rtn 
+ 00016812  0x00001a07 fetch  0x00000002 , 0x0000470b 
+ 00016813  0x00001a08 rtnbit0  0x00000007 
+ 00016814  0x00001a09 fetch  0x00000001 , 0x00004aa9 
+ 00016815  0x00001a0a rtnbit1  0x00000000 , 0x0000003f 
+ 00016816  0x00001a0b fetch  0x00000002 , 0x00004aca 
+ 00016817  0x00001a0c fetcht  0x00000002 , 0x00004b28 
+ 00016818  0x00001a0d isub  0x00000002 , 0x0000003e 
+ 00016819  0x00001a0e branch  0x000041bb , 0x00000005 
+ 00016820  0x00001a0f fetch  0x00000002 , 0x00004aca 
+ 00016821  0x00001a10 fetcht  0x00000002 , 0x00004b29 
+ 00016822  0x00001a11 isub  0x00000002 , 0x0000003e 
+ 00016823  0x00001a12 branch  0x000041bb , 0x00000005 
+ 00016824  0x00001a13 fetch  0x00000002 , 0x0000470b 
+ 00016825  0x00001a14 bbit1  0x0000000c , 0x000041bb 
+ 00016826  0x00001a15 rtn 
+ 00016827  0x00001a18 fetch  0x00000001 , 0x00004aa9 
+ 00016828  0x00001a19 set1  0x00000000 , 0x0000003f 
+ 00016829  0x00001a1a store  0x00000001 , 0x00004aa9 
+ 00016830  0x00001a1b branch  0x00007e3d 
+ 00016831  0x00001a1f hfetch  0x00000003 , 0x00008083 
+ 00016832  0x00001a20 iforce  0x00000012 
+ 00016833  0x00001a21 hfetch  0x00000004 , 0x00008078 
+ 00016834  0x00001a22 iforce  0x00000011 
+ 00016835  0x00001a23 hfetcht  0x00000008 , 0x00008070 
+ 00016836  0x00001a24 setarg  0x00000000 
+ 00016837  0x00001a25 hstore  0x00000003 , 0x00008083 
+ 00016838  0x00001a26 nop  0x00000064 
+ 00016839  0x00001a27 hfetch  0x00000001 , 0x0000811c 
+ 00016840  0x00001a28 store  0x00000001 , 0x00000b26 
+ 00016841  0x00001a29 hjam  0x00000000 , 0x00008078 
+ 00016842  0x00001a2a hfetch  0x00000001 , 0x00008073 
+ 00016843  0x00001a2b and_into  0x000000f0 , 0x0000003f 
+ 00016844  0x00001a2c hstore  0x00000001 , 0x00008073 
+ 00016845  0x00001a2d xor_into  0x000000ff , 0x0000003f 
+ 00016846  0x00001a2e hstore  0x00000001 , 0x0000807b 
+ 00016847  0x00001a2f setarg  0x000000ff 
+ 00016848  0x00001a30 hstore  0x00000003 , 0x00008070 
+ 00016849  0x00001a31 setarg  0x0000ffff 
+ 00016850  0x00001a32 hstore  0x00000002 , 0x00008079 
+ 00016851  0x00001a33 nop  0x00000064 
+ 00016852  0x00001a34 hfetch  0x00000003 , 0x0000811d 
+ 00016853  0x00001a35 iand  0x00000012 , 0x0000003f 
+ 00016854  0x00001a36 store  0x00000003 , 0x00000b27 
+ 00016855  0x00001a37 deposit  0x00000011 
+ 00016856  0x00001a38 hstore  0x00000004 , 0x00008078 
+ 00016857  0x00001a39 hstoret  0x00000008 , 0x00008070 
+ 00016858  0x00001a3a deposit  0x00000012 
+ 00016859  0x00001a3b hstore  0x00000003 , 0x00008083 
+ 00016860  0x00001a3c rtn 
+ 00016861  0x00001a3f fetch  0x00000001 , 0x00004133 
+ 00016862  0x00001a40 nrtn  0x00000034 
+ 00016863  0x00001a41 fetch  0x00000001 , 0x00004283 
+ 00016864  0x00001a42 nrtn  0x00000034 
+ 00016865  0x00001a43 fetch  0x00000001 , 0x00004701 
+ 00016866  0x00001a44 rtn  0x00000034 
+ 00016867  0x00001a45 fetch  0x00000001 , 0x00004702 
+ 00016868  0x00001a46 nrtn  0x00000034 
+ 00016869  0x00001a47 branch  0x00003e75 
+ 00016870  0x00001a4a copy  0x00000013 , 0x0000003f 
+ 00016871  0x00001a4b beq  0x00000006 , 0x0000426d 
+ 00016872  0x00001a4c beq  0x0000000a , 0x00004247 
+ 00016873  0x00001a4d beq  0x00000012 , 0x00004271 
+ 00016874  0x00001a4e beq  0x00000010 , 0x00004223 
+ 00016875  0x00001a4f beq  0x0000002e , 0x00003e32 
+ 00016876  0x00001a50 beq  0x00000001 , 0x0000423a 
+ 00016877  0x00001a51 beq  0x00000002 , 0x0000420c 
+ 00016878  0x00001a52 beq  0x00000004 , 0x00004201 
+ 00016879  0x00001a53 beq  0x00000013 , 0x00004201 
+ 00016880  0x00001a54 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016881  0x00001a55 and_into  0x000000f0 , 0x0000003f 
+ 00016882  0x00001a56 beq  0x00000050 , 0x000041f4 
+ 00016883  0x00001a57 rtn 
+ 00016884  0x00001a5b set0  0x00000025 , 0x00000000 
+ 00016885  0x00001a5c bpatch  0x000000cc , 0x00004019 
+ 00016886  0x00001a5d storet  0x00000001 , 0x0000024e 
+ 00016887  0x00001a5f fetch  0x00000001 , 0x0000024e 
+ 00016888  0x00001a60 rtn  0x00000034 
+ 00016889  0x00001a61 increase  0xffffffff , 0x0000003f 
+ 00016890  0x00001a62 store  0x00000001 , 0x0000024e 
+ 00016891  0x00001a63 call  0x00004064 
+ 00016892  0x00001a64 call  0x0000421d 
+ 00016893  0x00001a65 call  0x00004077 
+ 00016894  0x00001a66 call  0x000040e3 
+ 00016895  0x00001a67 call  0x000042b3 
+ 00016896  0x00001a68 branch  0x000041f7 
+ 00016897  0x00001a6b fetch  0x00000002 , 0x0000470b 
+ 00016898  0x00001a6c bbit1  0x0000000c , 0x0000423e 
+ 00016899  0x00001a6d fetch  0x00000001 , 0x00004aa9 
+ 00016900  0x00001a6e bbit0 , 0x00000000 , 0x00003e0a 
+ 00016901  0x00001a6f fetch  0x00000001 , 0x00004aa9 
+ 00016902  0x00001a70 set0  0x00000000 , 0x0000003f 
+ 00016903  0x00001a71 store  0x00000001 , 0x00004aa9 
+ 00016904  0x00001a72 fetch  0x00000002 , 0x0000470b 
+ 00016905  0x00001a73 set0  0x00000007 , 0x0000003f 
+ 00016906  0x00001a74 store  0x00000002 , 0x0000470b 
+ 00016907  0x00001a75 rtn 
+ 00016908  0x00001a78 set0  0x00000025 , 0x00000000 
+ 00016909  0x00001a79 bpatch  0x000000cd , 0x00004019 
+ 00016910  0x00001a7a call  0x0000421a 
+ 00016911  0x00001a7b fetch  0x00000002 , 0x000042ad 
+ 00016912  0x00001a7c bbit1  0x00000000 , 0x00003e0c 
+ 00016913  0x00001a7d bbit1  0x00000001 , 0x00004214 
+ 00016914  0x00001a7e bbit1  0x00000002 , 0x00004217 
+ 00016915  0x00001a7f branch  0x0000423e 
+ 00016916  0x00001a81 bbit1  0x00000005 , 0x00004217 
+ 00016917  0x00001a82 bbit1  0x00000003 , 0x00004217 
+ 00016918  0x00001a83 branch  0x0000423e 
+ 00016919  0x00001a86 fetch  0x00000002 , 0x0000470b 
+ 00016920  0x00001a87 bbit1  0x0000000c , 0x0000423e 
+ 00016921  0x00001a88 branch  0x00003e0a 
+ 00016922  0x00001a8b jam  0x00000000 , 0x00004283 
+ 00016923  0x00001a8c jam  0x00000000 , 0x00004b02 
+ 00016924  0x00001a8d rtn 
+ 00016925  0x00001a91 fetch  0x00000001 , 0x00004709 
+ 00016926  0x00001a92 rtn  0x00000034 
+ 00016927  0x00001a93 increase  0xffffffff , 0x0000003f 
+ 00016928  0x00001a94 store  0x00000001 , 0x00004709 
+ 00016929  0x00001a95 nrtn  0x00000034 
+ 00016930  0x00001a96 branch  0x00004271 
+ 00016931  0x00001a9a setarg  0x00000000 
+ 00016932  0x00001a9b store  0x00000002 , 0x00004a9f 
+ 00016933  0x00001a9c store  0x00000001 , 0x00004718 
+ 00016934  0x00001a9d call  0x0000422a 
+ 00016935  0x00001a9e call  0x0000422d 
+ 00016936  0x00001a9f call  0x00003e81 
+ 00016937  0x00001aa0 branch  0x0000423e 
+ 00016938  0x00001aa3 jam  0x00000001 , 0x00004af9 
+ 00016939  0x00001aa4 fetcht  0x00000001 , 0x00004737 
+ 00016940  0x00001aa5 branch  0x000064fd 
+ 00016941  0x00001aa8 set0  0x00000025 , 0x00000000 
+ 00016942  0x00001aa9 bpatch  0x000000ce , 0x00004019 
+ 00016943  0x00001aaa fetch  0x00000002 , 0x0000470b 
+ 00016944  0x00001aab isolate1  0x00000007 , 0x0000003f 
+ 00016945  0x00001aac call  0x00003e50 , 0x00000001 
+ 00016946  0x00001aad fetch  0x00000002 , 0x00004716 
+ 00016947  0x00001aae store  0x00000002 , 0x00004707 
+ 00016948  0x00001aaf fetch  0x00000002 , 0x000042af 
+ 00016949  0x00001ab0 set1  0x00000000 , 0x0000003f 
+ 00016950  0x00001ab1 store  0x00000002 , 0x000042af 
+ 00016951  0x00001ab2 fetch  0x00000002 , 0x0000470b 
+ 00016952  0x00001ab3 bbit1  0x00000000 , 0x00003e52 
+ 00016953  0x00001ab4 rtn 
+ 00016954  0x00001ab8 call  0x00003e73 
+ 00016955  0x00001ab9 setarg  0x00000000 
+ 00016956  0x00001aba store  0x00000002 , 0x00004a9d 
+ 00016957  0x00001abb branch  0x00003e59 
+ 00016958  0x00001abe call  0x00003e81 
+ 00016959  0x00001abf fetch  0x00000002 , 0x00004716 
+ 00016960  0x00001ac0 store  0x00000002 , 0x00004a9d 
+ 00016961  0x00001ac1 call  0x00003e57 
+ 00016962  0x00001ac2 jam  0x00000000 , 0x00004b01 
+ 00016963  0x00001ac4 call  0x00003e6f 
+ 00016964  0x00001ac5 call  0x0000419a 
+ 00016965  0x00001ac6 branch  0x00004196 
+ 00016966  0x00001ac9 branch  0x00003e75 
+ 00016967  0x00001acc jam  0x00000000 , 0x00004709 
+ 00016968  0x00001acd jam  0x00000000 , 0x00004718 
+ 00016969  0x00001ace call  0x00004196 
+ 00016970  0x00001acf branch  0x0000419a 
+ 00016971  0x00001ad3 fetch  0x00000001 , 0x00004b01 
+ 00016972  0x00001ad4 branch  0x00004254 , 0x00000034 
+ 00016973  0x00001ad5 arg  0x00000140 , 0x00000002 
+ 00016974  0x00001ad6 imul32  0x00000002 , 0x00000002 
+ 00016975  0x00001ad7 copy  0x00000022 , 0x0000003f 
+ 00016976  0x00001ad8 iadd  0x00000002 , 0x00000002 
+ 00016977  0x00001ada copy  0x00000022 , 0x0000003f 
+ 00016978  0x00001adb isub  0x00000002 , 0x0000003e 
+ 00016979  0x00001adc nbranch  0x00004251 , 0x00000002 
+ 00016980  0x00001ade fetcht  0x00000001 , 0x00004aef 
+ 00016981  0x00001adf call  0x000064fd 
+ 00016982  0x00001ae0 enable  0x00000028 
+ 00016983  0x00001ae1 hfetch  0x00000004 , 0x00008138 
+ 00016984  0x00001ae2 setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00016985  0x00001ae3 hstore  0x00000004 , 0x0000804c 
+ 00016986  0x00001ae4 call  0x00003cf4 
+ 00016987  0x00001ae6 hjam  0x00000000 , 0x00008083 
+ 00016988  0x00001ae7 hjam  0x00000000 , 0x00008084 
+ 00016989  0x00001ae8 hfetch  0x00000001 , 0x00008085 
+ 00016990  0x00001ae9 and_into  0x000000f0 , 0x0000003f 
+ 00016991  0x00001aea hstore  0x00000001 , 0x00008085 
+ 00016992  0x00001aeb setarg  0x00000000 
+ 00016993  0x00001aec store  0x00000004 , 0x000000a4 
+ 00016994  0x00001aed setarg  0x000000ff 
+ 00016995  0x00001aee fetcht  0x00000001 , 0x00004715 
+ 00016996  0x00001aef copy  0x00000002 , 0x00000007 
+ 00016997  0x00001af0 qset1  0x0000003f 
+ 00016998  0x00001af1 store  0x00000004 , 0x000000a0 
+ 00016999  0x00001af2 rtn 
+ 00017000  0x00001af4 call  0x0000425b 
+ 00017001  0x00001af5 fetch  0x00000001 , 0x0000009f 
+ 00017002  0x00001af6 nrtn  0x00000034 
+ 00017003  0x00001af7 jam  0x00000000 , 0x000000a0 
+ 00017004  0x00001af8 rtn 
+ 00017005  0x00001afb setarg  0x00000002 
+ 00017006  0x00001afc store  0x00000001 , 0x00004709 
+ 00017007  0x00001afd call  0x0000419a 
+ 00017008  0x00001afe branch  0x00004196 
+ 00017009  0x00001b02 set0  0x00000025 , 0x00000000 
+ 00017010  0x00001b03 bpatch  0x000000cf , 0x00004019 
+ 00017011  0x00001b04 call  0x00007d33 
+ 00017012  0x00001b05 jam  0x00000001 , 0x00004283 
+ 00017013  0x00001b06 call  0x0000419a 
+ 00017014  0x00001b07 call  0x00004196 
+ 00017015  0x00001b08 call  0x00003e7f 
+ 00017016  0x00001b09 call  0x00003e7d 
+ 00017017  0x00001b0a setarg  0x00000000 
+ 00017018  0x00001b0b store  0x00000002 , 0x00004707 
+ 00017019  0x00001b0c store  0x00000001 , 0x00004709 
+ 00017020  0x00001b0d branch  0x00003e79 
+ 00017021  0x00001b11 fetch  0x00000001 , 0x00004ae9 
+ 00017022  0x00001b12 and_into  0x00000007 , 0x0000003f 
+ 00017023  0x00001b13 store  0x00000001 , 0x00004b00 
+ 00017024  0x00001b14 arg  0x00000001 , 0x00000002 
+ 00017025  0x00001b15 arg  0x00004b00 , 0x00000011 
+ 00017026  0x00001b16 setarg  0x00001fec 
+ 00017027  0x00001b17 branch  0x000062a8 
+ 00017028  0x00001b1b arg  0x00000001 , 0x00000002 
+ 00017029  0x00001b1c arg  0x00004b00 , 0x00000011 
+ 00017030  0x00001b1d setarg  0x00001fec 
+ 00017031  0x00001b1e byteswap  0x0000003f , 0x0000003f 
+ 00017032  0x00001b1f store  0x00000002 , 0x0000021a 
+ 00017033  0x00001b20 call  0x0000624c 
+ 00017034  0x00001b21 fetch  0x00000001 , 0x00004b00 
+ 00017035  0x00001b22 copy  0x0000003f , 0x00000012 
+ 00017036  0x00001b23 and_into  0x0000000f , 0x0000003f 
+ 00017037  0x00001b24 beq  0x0000000f , 0x000042b9 
+ 00017038  0x00001b25 copy  0x00000012 , 0x0000003f 
+ 00017039  0x00001b26 store  0x00000001 , 0x00004ae9 
+ 00017040  0x00001b27 rtn 
+ 00017041  0x00001b2b add  0x00000006 , 0xffffffff , 0x00000005 
+ 00017042  0x00001b2c call  0x00007ecd 
+ 00017043  0x00001b2d fetch  0x00000001 , 0x00004731 
+ 00017044  0x00001b2e increase  0xffffffff , 0x0000003f 
+ 00017045  0x00001b2f store  0x00000001 , 0x00004731 
+ 00017046  0x00001b30 fetch  0x00000001 , 0x00004b23 
+ 00017047  0x00001b31 beq  0x0000007f , 0x000042bd 
+ 00017048  0x00001b32 branch  0x000042c0 
+ 00017049  0x00001b35 fetch  0x00000008 , 0x00004aca 
+ 00017050  0x00001b36 store  0x00000008 , 0x00004b19 
+ 00017051  0x00001b37 branch  0x000042c0 
+ 00017052  0x00001b3a fetch  0x00000001 , 0x00004731 
+ 00017053  0x00001b3b branch  0x000042ca , 0x00000034 
+ 00017054  0x00001b3c copy  0x0000003f , 0x00000012 
+ 00017055  0x00001b3d fetch  0x00000005 , 0x00004aca 
+ 00017056  0x00001b3e copy  0x0000003f , 0x00000002 
+ 00017057  0x00001b40 copy  0x00000002 , 0x0000003f 
+ 00017058  0x00001b41 compare  0x0000007f , 0x0000003f , 0x000000ff 
+ 00017059  0x00001b42 branch  0x000042b0 , 0x00000001 
+ 00017060  0x00001b43 increase  0xffffffff , 0x00000012 
+ 00017061  0x00001b44 setarg  0x00004b12 
+ 00017062  0x00001b45 iadd  0x00000012 , 0x00000005 
+ 00017063  0x00001b46 copy  0x00000002 , 0x0000003f 
+ 00017064  0x00001b47 istore  0x00000001 , 0x00000005 
+ 00017065  0x00001b48 copy  0x00000002 , 0x0000003f 
+ 00017066  0x00001b49 rshift8  0x0000003f , 0x0000003f 
+ 00017067  0x00001b4a copy  0x0000003f , 0x00000002 
+ 00017068  0x00001b4b nbranch  0x000042a1 , 0x00000034 
+ 00017069  0x00001b4c fetch  0x00000005 , 0x00004b12 
+ 00017070  0x00001b4d call  0x000042cc , 0x00000034 
+ 00017071  0x00001b4e branch  0x000042c0 
+ 00017072  0x00001b50 setarg  0x00000001 
+ 00017073  0x00001b51 store  0x00000001 , 0x00004b17 
+ 00017074  0x00001b52 branch  0x000042a9 
+ 00017075  0x00001b55 fetch  0x00000001 , 0x00004af8 
+ 00017076  0x00001b56 rtn  0x00000034 
+ 00017077  0x00001b57 increase  0xffffffff , 0x0000003f 
+ 00017078  0x00001b58 store  0x00000001 , 0x00004af8 
+ 00017079  0x00001b59 nrtn  0x00000034 
+ 00017080  0x00001b5a branch  0x00007d2f 
+ 00017081  0x00001b5e copy  0x00000012 , 0x0000003f 
+ 00017082  0x00001b5f and_into  0x00000001 , 0x0000003f 
+ 00017083  0x00001b60 store  0x00000001 , 0x00004ae9 
+ 00017084  0x00001b61 rtn 
+ 00017085  0x00001b63 jam  0x00000000 , 0x00004b17 
+ 00017086  0x00001b64 call  0x000042cc 
+ 00017087  0x00001b65 branch  0x000042c0 
+ 00017088  0x00001b69 set0  0x00000025 , 0x00000000 
+ 00017089  0x00001b6a bpatch  0x000000d1 , 0x0000401a 
+ 00017090  0x00001b6b hfetch  0x00000001 , 0x00008119 
+ 00017091  0x00001b6c rtnbit1  0x00000000 
+ 00017092  0x00001b6d hfetch  0x00000001 , 0x0000811b 
+ 00017093  0x00001b6e bbit1  0x00000000 , 0x000042d4 
+ 00017094  0x00001b6f hfetch  0x00000001 , 0x00008119 
+ 00017095  0x00001b70 bbit0  0x00000006 , 0x000042d4 
+ 00017096  0x00001b71 hfetch  0x00000001 , 0x0000811a 
+ 00017097  0x00001b72 branch  0x000042c0 
+ 00017098  0x00001b75 call  0x000042cf 
+ 00017099  0x00001b76 branch  0x000042c0 
+ 00017100  0x00001b79 fetch  0x00000008 , 0x00004aca 
+ 00017101  0x00001b7a store  0x00000008 , 0x00004b19 
+ 00017102  0x00001b7b rtn 
+ 00017103  0x00001b7e setarg  0x00000000 
+ 00017104  0x00001b7f store  0x00000001 , 0x00004b17 
+ 00017105  0x00001b80 store  0x00000005 , 0x00004b12 
+ 00017106  0x00001b81 store  0x00000008 , 0x00004aca 
+ 00017107  0x00001b82 rtn 
+ 00017108  0x00001b85 fetch  0x00000001 , 0x00004aa9 
+ 00017109  0x00001b86 set1  0x00000001 , 0x0000003f 
+ 00017110  0x00001b87 store  0x00000001 , 0x00004aa9 
+ 00017111  0x00001b89 hfetch  0x00000001 , 0x0000811b 
+ 00017112  0x00001b8a isolate1  0x00000000 , 0x0000003f 
+ 00017113  0x00001b8b store  0x00000001 , 0x00004aa6 
+ 00017114  0x00001b8c hfetch  0x00000001 , 0x0000811a 
+ 00017115  0x00001b8d store  0x00000001 , 0x00004aa5 
+ 00017116  0x00001b8e arg  0x000049ff , 0x00000006 
+ 00017117  0x00001b8f iadd  0x00000006 , 0x00000006 
+ 00017118  0x00001b90 ifetch  0x00000001 , 0x00000006 
+ 00017119  0x00001b91 fetcht  0x00000001 , 0x00004731 
+ 00017120  0x00001b92 sub  0x00000002 , 0x00000004 , 0x0000003e 
+ 00017121  0x00001b93 nbranch  0x000042c0 , 0x00000002 
+ 00017122  0x00001b94 iforce  0x00000006 
+ 00017123  0x00001b95 setarg  0x00004aca 
+ 00017124  0x00001b96 iadd  0x00000002 , 0x00000005 
+ 00017125  0x00001b97 deposit  0x00000006 
+ 00017126  0x00001b98 istore  0x00000001 , 0x00000005 
+ 00017127  0x00001b99 increase  0x00000001 , 0x00000002 
+ 00017128  0x00001b9a storet  0x00000001 , 0x00004731 
+ 00017129  0x00001b9b branch  0x0000429c 
+ 00017130  0x00001bac branch  0x000042ef , 0x0000002b 
+ 00017131  0x00001bae setarg  0x000043f5 
+ 00017132  0x00001baf arg  0x000042d6 , 0x00000005 
+ 00017133  0x00001bb0 isub  0x00000005 , 0x00000039 
+ 00017134  0x00001bb1 call  0x00007e9f 
+ 00017135  0x00001bb3 set0  0x00000025 , 0x00000000 
+ 00017136  0x00001bb4 bpatch  0x000000d2 , 0x0000401a 
+ 00017137  0x00001bb5 setarg  0x00000475 
+ 00017138  0x00001bb6 arg  0x00000440 , 0x00000005 
+ 00017139  0x00001bb7 isub  0x00000005 , 0x00000039 
+ 00017140  0x00001bb8 call  0x00007e9f 
+ 00017141  0x00001bb9 setarg  0x000002f2 
+ 00017142  0x00001bba arg  0x00000286 , 0x00000005 
+ 00017143  0x00001bbb isub  0x00000005 , 0x00000039 
+ 00017144  0x00001bbc call  0x00007e9f 
+ 00017145  0x00001bbd branch  0x000048c3 
+ 00017146  0x00001bc0 set0  0x00000025 , 0x00000000 
+ 00017147  0x00001bc1 bpatch  0x000000d3 , 0x0000401a 
+ 00017148  0x00001bc2 copy  0x00000006 , 0x00000002 
+ 00017149  0x00001bc5 copy  0x00000002 , 0x00000006 
+ 00017150  0x00001bc6 ifetch  0x00000002 , 0x00000006 
+ 00017151  0x00001bc7 store  0x00000002 , 0x0000028f 
+ 00017152  0x00001bc8 ifetch  0x00000002 , 0x00000006 
+ 00017153  0x00001bc9 store  0x00000002 , 0x00000291 
+ 00017154  0x00001bca deposit  0x00000006 
+ 00017155  0x00001bcb store  0x00000002 , 0x0000028d 
+ 00017156  0x00001bcc fetch  0x00000001 , 0x0000470a 
+ 00017157  0x00001bcd beq  0x00000000 , 0x00004307 
+ 00017158  0x00001bce branch  0x00004684 
+ 00017159  0x00001bd1 fetch  0x00000002 , 0x0000028f 
+ 00017160  0x00001bd2 branch  0x00004383 , 0x00000034 
+ 00017161  0x00001bd3 set0  0x00000025 , 0x00000000 
+ 00017162  0x00001bd4 bpatch  0x000000d4 , 0x0000401a 
+ 00017163  0x00001bd5 fetch  0x00000001 , 0x00000291 
+ 00017164  0x00001bd6 beq  0x00000001 , 0x00004321 
+ 00017165  0x00001bd8 beq  0x00000050 , 0x00004366 
+ 00017166  0x00001bd9 beq  0x00000051 , 0x0000437b 
+ 00017167  0x00001bda beq  0x00000052 , 0x00004379 
+ 00017168  0x00001bdb beq  0x00000053 , 0x00004379 
+ 00017169  0x00001bdc branch  0x00004383 
+ 00017170  0x00001be1 set0  0x00000025 , 0x00000000 
+ 00017171  0x00001be2 bpatch  0x000000d5 , 0x0000401a 
+ 00017172  0x00001be3 call  0x00004821 
+ 00017173  0x00001be4 fetch  0x00000001 , 0x000042e6 
+ 00017174  0x00001be5 beq  0x00000000 , 0x0000431f 
+ 00017175  0x00001be6 beq  0x00000001 , 0x0000431f 
+ 00017176  0x00001be7 beq  0x00000002 , 0x0000431f 
+ 00017177  0x00001be8 beq  0x00000003 , 0x0000431f 
+ 00017178  0x00001be9 beq  0x00000081 , 0x0000431f 
+ 00017179  0x00001bea beq  0x000000c0 , 0x0000431f 
+ 00017180  0x00001beb beq  0x00000080 , 0x0000431f 
+ 00017181  0x00001bec beq  0x00000040 , 0x0000431f 
+ 00017182  0x00001bed rtn 
+ 00017183  0x00001bf0 setarg  0x00000000 
+ 00017184  0x00001bf1 rtn 
+ 00017185  0x00001bf5 call  0x00004312 
+ 00017186  0x00001bf6 nrtn  0x00000034 
+ 00017187  0x00001bf8 call  0x0000485e 
+ 00017188  0x00001bf9 call  0x00004388 
+ 00017189  0x00001bfa fetcht  0x00000002 , 0x00000298 
+ 00017190  0x00001bfb branch  0x00004382 , 0x00000034 
+ 00017191  0x00001bfc call  0x00004868 
+ 00017192  0x00001bfd fetch  0x00000002 , 0x00000298 
+ 00017193  0x00001bfe istore  0x00000002 , 0x00000005 
+ 00017194  0x00001bff force  0x00000001 , 0x0000003f 
+ 00017195  0x00001c00 istore  0x00000002 , 0x00000005 
+ 00017196  0x00001c01 branch  0x00004383 
+ 00017197  0x00001c04 fetch  0x00000001 , 0x000043f4 
+ 00017198  0x00001c05 rtn  0x00000034 
+ 00017199  0x00001c06 copy  0x0000003f , 0x00000011 
+ 00017200  0x00001c07 set0  0x00000025 , 0x00000000 
+ 00017201  0x00001c08 bpatch  0x000000d6 , 0x0000401a 
+ 00017202  0x00001c09 fetch  0x00000004 , 0x000002fe 
+ 00017203  0x00001c0a arg  0x00000100 , 0x00000002 
+ 00017204  0x00001c0b iadd  0x00000002 , 0x00000002 
+ 00017205  0x00001c0c copy  0x00000022 , 0x0000003f 
+ 00017206  0x00001c0d isub  0x00000002 , 0x0000003e 
+ 00017207  0x00001c0e nrtn  0x00000002 
+ 00017208  0x00001c0f jam  0x00000000 , 0x000043f4 
+ 00017209  0x00001c10 copy  0x00000011 , 0x0000003f 
+ 00017210  0x00001c11 beq  0x00000050 , 0x0000433c 
+ 00017211  0x00001c12 branch  0x00003b31 
+ 00017212  0x00001c14 arg  0x00000000 , 0x00000008 
+ 00017213  0x00001c15 call  0x0000485e 
+ 00017214  0x00001c16 call  0x00004404 
+ 00017215  0x00001c17 call  0x0000486a 
+ 00017216  0x00001c18 call  0x00007e70 
+ 00017217  0x00001c19 call  0x00004437 
+ 00017218  0x00001c1a call  0x00004868 
+ 00017219  0x00001c1c setarg  0x0000000c 
+ 00017220  0x00001c1d istore  0x00000002 , 0x00000005 
+ 00017221  0x00001c1e force  0x00000001 , 0x0000003f 
+ 00017222  0x00001c1f istore  0x00000002 , 0x00000005 
+ 00017223  0x00001c20 branch  0x00004383 
+ 00017224  0x00001c25 set0  0x00000025 , 0x00000000 
+ 00017225  0x00001c26 bpatch  0x000000d7 , 0x0000401a 
+ 00017226  0x00001c27 fetch  0x00000002 , 0x0000029e 
+ 00017227  0x00001c28 increase  0x00000004 , 0x0000003f 
+ 00017228  0x00001c29 rshift4  0x0000003f , 0x0000003f 
+ 00017229  0x00001c2a rshift3  0x0000003f , 0x0000003f 
+ 00017230  0x00001c2b add  0x0000003f , 0x00000001 , 0x00000002 
+ 00017231  0x00001c2c arg  0x000042f0 , 0x00000006 
+ 00017232  0x00001c2d ifetch  0x00000003 , 0x00000006 
+ 00017233  0x00001c2e rtn  0x00000034 
+ 00017234  0x00001c2f store  0x00000003 , 0x000009e1 
+ 00017235  0x00001c30 fetch  0x00000001 , 0x000009e1 
+ 00017236  0x00001c31 copy  0x0000003f , 0x00000011 
+ 00017237  0x00001c32 call  0x00004359 
+ 00017238  0x00001c33 copy  0x00000012 , 0x0000003f 
+ 00017239  0x00001c34 store  0x00000001 , 0x000042f0 
+ 00017240  0x00001c35 rtn 
+ 00017241  0x00001c38 arg  0x00000000 , 0x00000007 
+ 00017242  0x00001c39 arg  0x00000000 , 0x00000012 
+ 00017243  0x00001c3c sub  0x00000007 , 0x00000007 , 0x0000003e 
+ 00017244  0x00001c3d nrtn  0x00000002 
+ 00017245  0x00001c3e qisolate1  0x00000011 
+ 00017246  0x00001c3f branch  0x00004360 , 0x00000001 
+ 00017247  0x00001c40 branch  0x00004364 
+ 00017248  0x00001c43 copy  0x00000002 , 0x0000003f 
+ 00017249  0x00001c44 branch  0x00004364 , 0x00000034 
+ 00017250  0x00001c45 qset1  0x00000012 
+ 00017251  0x00001c46 increase  0xffffffff , 0x00000002 
+ 00017252  0x00001c49 increase  0x00000001 , 0x00000007 
+ 00017253  0x00001c4a branch  0x0000435b 
+ 00017254  0x00001c4d call  0x00004816 
+ 00017255  0x00001c4e nrtn  0x00000034 
+ 00017256  0x00001c4f call  0x00004312 
+ 00017257  0x00001c50 nrtn  0x00000034 
+ 00017258  0x00001c51 call  0x0000486c 
+ 00017259  0x00001c52 call  0x00006a3e 
+ 00017260  0x00001c53 call  0x00004348 
+ 00017261  0x00001c54 branch  0x00004372 
+ 00017262  0x00001c58 call  0x00004816 
+ 00017263  0x00001c59 nrtn  0x00000034 
+ 00017264  0x00001c5a call  0x0000486c 
+ 00017265  0x00001c5b call  0x00006a3e 
+ 00017266  0x00001c5d call  0x00004876 
+ 00017267  0x00001c5e fetch  0x00000002 , 0x0000029e 
+ 00017268  0x00001c5f branch  0x00004382 , 0x00000034 
+ 00017269  0x00001c60 istore  0x00000002 , 0x00000005 
+ 00017270  0x00001c61 fetch  0x00000002 , 0x000042d8 
+ 00017271  0x00001c62 istore  0x00000002 , 0x00000005 
+ 00017272  0x00001c63 branch  0x00004383 
+ 00017273  0x00001c66 call  0x00003fca 
+ 00017274  0x00001c67 branch  0x00004383 
+ 00017275  0x00001c6a set0  0x00000025 , 0x00000000 
+ 00017276  0x00001c6b bpatch  0x000000d8 , 0x0000401b 
+ 00017277  0x00001c6c jam  0x00000000 , 0x000002ad 
+ 00017278  0x00001c6d call  0x0000668f 
+ 00017279  0x00001c6e fetch  0x00000001 , 0x000002ad 
+ 00017280  0x00001c6f rtneq  0x00000001 
+ 00017281  0x00001c70 branch  0x00004383 
+ 00017282  0x00001c72 call  0x00004803 
+ 00017283  0x00001c75 setarg  0x00000000 
+ 00017284  0x00001c76 store  0x00000002 , 0x0000028f 
+ 00017285  0x00001c77 store  0x00000002 , 0x00000291 
+ 00017286  0x00001c78 jam  0x00000001 , 0x00000293 
+ 00017287  0x00001c79 rtn 
+ 00017288  0x00001c7c set0  0x00000025 , 0x00000000 
+ 00017289  0x00001c7d bpatch  0x000000d9 , 0x0000401b 
+ 00017290  0x00001c7e call  0x0000486a 
+ 00017291  0x00001c7f force  0x00000000 , 0x00000012 
+ 00017292  0x00001c80 fetch  0x00000002 , 0x0000028f 
+ 00017293  0x00001c81 copy  0x0000003f , 0x00000013 
+ 00017294  0x00001c82 fetch  0x00000002 , 0x0000028d 
+ 00017295  0x00001c83 iforce  0x00000006 
+ 00017296  0x00001c85 call  0x00004398 
+ 00017297  0x00001c86 deposit  0x00000013 
+ 00017298  0x00001c87 increase  0xfffffffc , 0x00000013 
+ 00017299  0x00001c88 increase  0xfffffffc , 0x0000003f 
+ 00017300  0x00001c89 nbranch  0x00004390 , 0x00000034 
+ 00017301  0x00001c8a copy  0x00000012 , 0x0000003f 
+ 00017302  0x00001c8b store  0x00000002 , 0x00000298 
+ 00017303  0x00001c8c rtn 
+ 00017304  0x00001c8f set0  0x00000025 , 0x00000000 
+ 00017305  0x00001c90 bpatch  0x000000da , 0x0000401b 
+ 00017306  0x00001c91 ifetch  0x00000001 , 0x00000006 
+ 00017307  0x00001c92 beq  0x00000001 , 0x000043d2 
+ 00017308  0x00001c93 beq  0x00000002 , 0x000043da 
+ 00017309  0x00001c94 beq  0x00000003 , 0x00004460 
+ 00017310  0x00001c95 beq  0x00000004 , 0x00004491 
+ 00017311  0x00001c96 beq  0x00000005 , 0x00004531 
+ 00017312  0x00001c97 beq  0x00000006 , 0x0000455b 
+ 00017313  0x00001c98 beq  0x00000007 , 0x000045ac 
+ 00017314  0x00001c99 beq  0x00000008 , 0x000045e2 
+ 00017315  0x00001c9a beq  0x00000009 , 0x000045f2 
+ 00017316  0x00001c9b beq  0x0000000a , 0x000043a8 
+ 00017317  0x00001c9c beq  0x0000000b , 0x000045f3 
+ 00017318  0x00001c9d call  0x000045f4 
+ 00017319  0x00001c9f rtn 
+ 00017320  0x00001ca2 ifetch  0x00000001 , 0x00000006 
+ 00017321  0x00001ca3 copy  0x0000003f , 0x00000007 
+ 00017322  0x00001ca4 ifetch  0x00000002 , 0x00000006 
+ 00017323  0x00001ca5 copy  0x0000003f , 0x00000011 
+ 00017324  0x00001ca6 copy  0x00000013 , 0x0000003f 
+ 00017325  0x00001ca7 isub  0x00000011 , 0x00000013 
+ 00017326  0x00001ca8 setarg  0x0000000b 
+ 00017327  0x00001ca9 istore  0x00000001 , 0x00000005 
+ 00017328  0x00001caa copy  0x00000007 , 0x0000003f 
+ 00017329  0x00001cab istore  0x00000001 , 0x00000005 
+ 00017330  0x00001cac ifetch  0x00000002 , 0x00000006 
+ 00017331  0x00001cae beq  0x00000002 , 0x000043b6 
+ 00017332  0x00001caf beq  0x00000003 , 0x000043bc 
+ 00017333  0x00001cb0 rtn 
+ 00017334  0x00001cb2 setarg  0x00020008 
+ 00017335  0x00001cb3 istore  0x00000006 , 0x00000005 
+ 00017336  0x00001cb4 setarg  0x00000280 
+ 00017337  0x00001cb5 istore  0x00000004 , 0x00000005 
+ 00017338  0x00001cb6 force  0x0000000c , 0x0000003f 
+ 00017339  0x00001cb7 branch  0x000043c1 
+ 00017340  0x00001cb9 setarg  0x0003000c 
+ 00017341  0x00001cba istore  0x00000006 , 0x00000005 
+ 00017342  0x00001cbb setarg  0x00000006 
+ 00017343  0x00001cbc istore  0x00000008 , 0x00000005 
+ 00017344  0x00001cbd force  0x00000010 , 0x0000003f 
+ 00017345  0x00001cbf iadd  0x00000012 , 0x00000012 
+ 00017346  0x00001cc0 branch  0x000043a7 
+ 00017347  0x00001cc3 ifetch  0x00000001 , 0x00000006 
+ 00017348  0x00001cc4 copy  0x0000003f , 0x00000007 
+ 00017349  0x00001cc5 ifetch  0x00000002 , 0x00000006 
+ 00017350  0x00001cc6 copy  0x0000003f , 0x00000011 
+ 00017351  0x00001cc7 ifetch  0x00000002 , 0x00000006 
+ 00017352  0x00001cc8 store  0x00000002 , 0x000009c6 
+ 00017353  0x00001cc9 copy  0x00000013 , 0x0000003f 
+ 00017354  0x00001cca isub  0x00000011 , 0x00000013 
+ 00017355  0x00001ccb call  0x0000486a 
+ 00017356  0x00001ccc setarg  0x0000000b 
+ 00017357  0x00001ccd istore  0x00000001 , 0x00000005 
+ 00017358  0x00001cce copy  0x00000007 , 0x0000003f 
+ 00017359  0x00001ccf istore  0x00000001 , 0x00000005 
+ 00017360  0x00001cd0 fetch  0x00000002 , 0x000009c6 
+ 00017361  0x00001cd1 branch  0x000043b3 
+ 00017362  0x00001cd6 ifetch  0x00000001 , 0x00000006 
+ 00017363  0x00001cd7 copy  0x0000003f , 0x00000007 
+ 00017364  0x00001cd8 ifetch  0x00000002 , 0x00000006 
+ 00017365  0x00001cd9 copy  0x0000003f , 0x00000011 
+ 00017366  0x00001cda iadd  0x00000006 , 0x00000006 
+ 00017367  0x00001cdb copy  0x00000013 , 0x0000003f 
+ 00017368  0x00001cdc isub  0x00000011 , 0x00000013 
+ 00017369  0x00001cde branch  0x000043a7 
+ 00017370  0x00001ce1 call  0x00007e70 
+ 00017371  0x00001ce4 call  0x00007e75 
+ 00017372  0x00001ce5 arg  0x00000000 , 0x00000008 
+ 00017373  0x00001ce6 ifetch  0x00000001 , 0x00000006 
+ 00017374  0x00001ce7 copy  0x0000003f , 0x00000007 
+ 00017375  0x00001ce8 ifetch  0x00000002 , 0x00000006 
+ 00017376  0x00001ce9 copy  0x0000003f , 0x00000011 
+ 00017377  0x00001cea ifetch  0x00000002 , 0x00000006 
+ 00017378  0x00001ceb copy  0x0000003f , 0x00000002 
+ 00017379  0x00001cec ifetch  0x00000002 , 0x00000006 
+ 00017380  0x00001ced copy  0x0000003f , 0x0000000b 
+ 00017381  0x00001cee set0  0x00000025 , 0x00000000 
+ 00017382  0x00001cef bpatch  0x000000db , 0x0000401b 
+ 00017383  0x00001cf0 copy  0x00000002 , 0x0000003f 
+ 00017384  0x00001cf1 beq  0x00000001 , 0x000043ee 
+ 00017385  0x00001cf2 beq  0x00000003 , 0x00004410 
+ 00017386  0x00001cf3 beq  0x00000011 , 0x0000441c 
+ 00017387  0x00001cf4 beq  0x00000013 , 0x00004427 
+ 00017388  0x00001cf5 call  0x000045f4 
+ 00017389  0x00001cf6 branch  0x0000445f 
+ 00017390  0x00001cf9 call  0x00007e70 
+ 00017391  0x00001cfa arg  0x00000050 , 0x00000002 
+ 00017392  0x00001cfb fetch  0x00000002 , 0x000042d8 
+ 00017393  0x00001cfc nbranch  0x00004459 , 0x00000034 
+ 00017394  0x00001cfd copy  0x0000000b , 0x0000003f 
+ 00017395  0x00001cfe store  0x00000002 , 0x000042d8 
+ 00017396  0x00001cff copy  0x00000022 , 0x0000003f 
+ 00017397  0x00001d00 store  0x00000004 , 0x000002fe 
+ 00017398  0x00001d01 call  0x000043f8 
+ 00017399  0x00001d02 branch  0x00004433 
+ 00017400  0x00001d05 storet  0x00000002 , 0x000002fc 
+ 00017401  0x00001d06 deposit  0x0000000b 
+ 00017402  0x00001d07 store  0x00000002 , 0x000002f2 
+ 00017403  0x00001d08 deposit  0x00000011 
+ 00017404  0x00001d09 store  0x00000002 , 0x000002f4 
+ 00017405  0x00001d0a deposit  0x00000012 
+ 00017406  0x00001d0b store  0x00000002 , 0x000002f6 
+ 00017407  0x00001d0c deposit  0x00000013 
+ 00017408  0x00001d0d store  0x00000002 , 0x000002f8 
+ 00017409  0x00001d0e deposit  0x00000007 
+ 00017410  0x00001d0f store  0x00000002 , 0x000002fa 
+ 00017411  0x00001d10 rtn 
+ 00017412  0x00001d13 fetcht  0x00000002 , 0x000002fc 
+ 00017413  0x00001d14 fetch  0x00000002 , 0x000002f2 
+ 00017414  0x00001d15 copy  0x0000003f , 0x0000000b 
+ 00017415  0x00001d16 fetch  0x00000002 , 0x000002f4 
+ 00017416  0x00001d17 copy  0x0000003f , 0x00000011 
+ 00017417  0x00001d18 fetch  0x00000002 , 0x000002f6 
+ 00017418  0x00001d19 copy  0x0000003f , 0x00000012 
+ 00017419  0x00001d1a fetch  0x00000002 , 0x000002f8 
+ 00017420  0x00001d1b copy  0x0000003f , 0x00000013 
+ 00017421  0x00001d1c fetch  0x00000002 , 0x000002fa 
+ 00017422  0x00001d1d copy  0x0000003f , 0x00000007 
+ 00017423  0x00001d1e rtn 
+ 00017424  0x00001d21 call  0x00007e70 
+ 00017425  0x00001d22 setarg  0x00000051 
+ 00017426  0x00001d23 arg  0x00000051 , 0x00000002 
+ 00017427  0x00001d24 fetch  0x00000002 , 0x000042da 
+ 00017428  0x00001d25 nbranch  0x00004459 , 0x00000034 
+ 00017429  0x00001d26 copy  0x0000000b , 0x0000003f 
+ 00017430  0x00001d27 store  0x00000002 , 0x000042da 
+ 00017431  0x00001d28 fetch  0x00000001 , 0x000042e1 
+ 00017432  0x00001d29 set1  0x00000000 , 0x0000003f 
+ 00017433  0x00001d2a set1  0x00000001 , 0x0000003f 
+ 00017434  0x00001d2b store  0x00000001 , 0x000042e1 
+ 00017435  0x00001d2c branch  0x0000443b 
+ 00017436  0x00001d2e call  0x00007e70 
+ 00017437  0x00001d2f arg  0x00000052 , 0x00000002 
+ 00017438  0x00001d30 fetch  0x00000002 , 0x000042dc 
+ 00017439  0x00001d31 nbranch  0x00004459 , 0x00000034 
+ 00017440  0x00001d32 copy  0x0000000b , 0x0000003f 
+ 00017441  0x00001d33 store  0x00000002 , 0x000042dc 
+ 00017442  0x00001d34 fetch  0x00000001 , 0x000042e2 
+ 00017443  0x00001d35 set1  0x00000000 , 0x0000003f 
+ 00017444  0x00001d36 set1  0x00000001 , 0x0000003f 
+ 00017445  0x00001d37 store  0x00000001 , 0x000042e2 
+ 00017446  0x00001d38 branch  0x0000443b 
+ 00017447  0x00001d3a call  0x00007e70 
+ 00017448  0x00001d3b deposit  0x0000001a 
+ 00017449  0x00001d3c arg  0x00000053 , 0x00000002 
+ 00017450  0x00001d3d fetch  0x00000002 , 0x000042de 
+ 00017451  0x00001d3e nbranch  0x00004459 , 0x00000034 
+ 00017452  0x00001d3f copy  0x0000000b , 0x0000003f 
+ 00017453  0x00001d40 store  0x00000002 , 0x000042de 
+ 00017454  0x00001d41 fetch  0x00000001 , 0x000042e3 
+ 00017455  0x00001d42 set1  0x00000000 , 0x0000003f 
+ 00017456  0x00001d43 set1  0x00000001 , 0x0000003f 
+ 00017457  0x00001d44 store  0x00000001 , 0x000042e3 
+ 00017458  0x00001d45 branch  0x0000443b 
+ 00017459  0x00001d48 setarg  0x00000001 
+ 00017460  0x00001d49 store  0x00000002 , 0x000002a6 
+ 00017461  0x00001d4a jam  0x00000050 , 0x000043f4 
+ 00017462  0x00001d4b branch  0x0000443d 
+ 00017463  0x00001d4d fetch  0x00000001 , 0x000042e0 
+ 00017464  0x00001d4e set1  0x00000000 , 0x0000003f 
+ 00017465  0x00001d4f set1  0x00000001 , 0x0000003f 
+ 00017466  0x00001d50 store  0x00000001 , 0x000042e0 
+ 00017467  0x00001d52 setarg  0x00000000 
+ 00017468  0x00001d53 store  0x00000002 , 0x000002a6 
+ 00017469  0x00001d55 set0  0x00000025 , 0x00000000 
+ 00017470  0x00001d56 bpatch  0x000000dc , 0x0000401b 
+ 00017471  0x00001d57 call  0x00007e75 
+ 00017472  0x00001d58 setarg  0x00000003 
+ 00017473  0x00001d59 istore  0x00000001 , 0x00000005 
+ 00017474  0x00001d5a copy  0x00000007 , 0x0000003f 
+ 00017475  0x00001d5b istore  0x00000001 , 0x00000005 
+ 00017476  0x00001d5c setarg  0x00000008 
+ 00017477  0x00001d5d istore  0x00000002 , 0x00000005 
+ 00017478  0x00001d5e copy  0x00000002 , 0x0000003f 
+ 00017479  0x00001d5f istore  0x00000002 , 0x00000005 
+ 00017480  0x00001d60 copy  0x0000000b , 0x0000003f 
+ 00017481  0x00001d61 istore  0x00000002 , 0x00000005 
+ 00017482  0x00001d62 fetch  0x00000002 , 0x000002a6 
+ 00017483  0x00001d63 beq  0x00000001 , 0x00004454 
+ 00017484  0x00001d64 isolate0  0x00000000 , 0x00000008 
+ 00017485  0x00001d65 branch  0x0000444f , 0x00000001 
+ 00017486  0x00001d66 setarg  0x00000004 
+ 00017487  0x00001d68 istore  0x00000002 , 0x00000005 
+ 00017488  0x00001d69 force  0x00000000 , 0x0000003f 
+ 00017489  0x00001d6a istore  0x00000002 , 0x00000005 
+ 00017490  0x00001d6b setarg  0x0000000c 
+ 00017491  0x00001d6c branch  0x0000445b 
+ 00017492  0x00001d6e istore  0x00000002 , 0x00000005 
+ 00017493  0x00001d6f force  0x00000002 , 0x0000003f 
+ 00017494  0x00001d70 istore  0x00000002 , 0x00000005 
+ 00017495  0x00001d71 setarg  0x0000000c 
+ 00017496  0x00001d72 branch  0x0000445b 
+ 00017497  0x00001d75 set1  0x00000000 , 0x00000008 
+ 00017498  0x00001d76 branch  0x0000443b 
+ 00017499  0x00001d78 iadd  0x00000012 , 0x00000012 
+ 00017500  0x00001d79 copy  0x00000013 , 0x0000003f 
+ 00017501  0x00001d7a isub  0x00000011 , 0x00000013 
+ 00017502  0x00001d7b branch  0x0000445f 
+ 00017503  0x00001d7d branch  0x000043a7 
+ 00017504  0x00001d80 ifetch  0x00000001 , 0x00000006 
+ 00017505  0x00001d81 copy  0x0000003f , 0x00000007 
+ 00017506  0x00001d82 ifetch  0x00000002 , 0x00000006 
+ 00017507  0x00001d83 copy  0x0000003f , 0x00000011 
+ 00017508  0x00001d84 copy  0x00000013 , 0x0000003f 
+ 00017509  0x00001d85 isub  0x00000011 , 0x00000013 
+ 00017510  0x00001d86 ifetch  0x00000002 , 0x00000006 
+ 00017511  0x00001d87 copy  0x0000003f , 0x0000000b 
+ 00017512  0x00001d88 ifetch  0x00000002 , 0x00000006 
+ 00017513  0x00001d89 copy  0x0000003f , 0x00000002 
+ 00017514  0x00001d8a set0  0x00000025 , 0x00000000 
+ 00017515  0x00001d8b bpatch  0x000000dd , 0x0000401b 
+ 00017516  0x00001d8c setarg  0x00000050 
+ 00017517  0x00001d8d isub  0x00000002 , 0x0000003e 
+ 00017518  0x00001d8e branch  0x00004479 , 0x00000005 
+ 00017519  0x00001d8f setarg  0x00000051 
+ 00017520  0x00001d90 isub  0x00000002 , 0x0000003e 
+ 00017521  0x00001d91 branch  0x0000447f , 0x00000005 
+ 00017522  0x00001d92 setarg  0x00000052 
+ 00017523  0x00001d93 isub  0x00000002 , 0x0000003e 
+ 00017524  0x00001d94 branch  0x0000448b , 0x00000005 
+ 00017525  0x00001d95 setarg  0x00000053 
+ 00017526  0x00001d96 isub  0x00000002 , 0x0000003e 
+ 00017527  0x00001d97 branch  0x00004485 , 0x00000005 
+ 00017528  0x00001d98 rtn 
+ 00017529  0x00001d9b copy  0x0000000b , 0x0000003f 
+ 00017530  0x00001d9c store  0x00000002 , 0x000042d8 
+ 00017531  0x00001d9d fetch  0x00000001 , 0x000042e0 
+ 00017532  0x00001d9e set1  0x00000001 , 0x0000003f 
+ 00017533  0x00001d9f store  0x00000001 , 0x000042e0 
+ 00017534  0x00001da0 branch  0x000043a7 
+ 00017535  0x00001da2 copy  0x0000000b , 0x0000003f 
+ 00017536  0x00001da3 store  0x00000002 , 0x000042da 
+ 00017537  0x00001da4 fetch  0x00000001 , 0x000042e1 
+ 00017538  0x00001da5 set1  0x00000001 , 0x0000003f 
+ 00017539  0x00001da6 store  0x00000001 , 0x000042e1 
+ 00017540  0x00001da7 rtn 
+ 00017541  0x00001da9 copy  0x0000000b , 0x0000003f 
+ 00017542  0x00001daa store  0x00000002 , 0x000042dc 
+ 00017543  0x00001dab fetch  0x00000001 , 0x000042e3 
+ 00017544  0x00001dac set1  0x00000001 , 0x0000003f 
+ 00017545  0x00001dad store  0x00000001 , 0x000042e3 
+ 00017546  0x00001dae rtn 
+ 00017547  0x00001db0 copy  0x0000000b , 0x0000003f 
+ 00017548  0x00001db1 store  0x00000002 , 0x000042de 
+ 00017549  0x00001db2 fetch  0x00000001 , 0x000042e2 
+ 00017550  0x00001db3 set1  0x00000001 , 0x0000003f 
+ 00017551  0x00001db4 store  0x00000001 , 0x000042e2 
+ 00017552  0x00001db5 rtn 
+ 00017553  0x00001db8 ifetch  0x00000001 , 0x00000006 
+ 00017554  0x00001db9 copy  0x0000003f , 0x00000007 
+ 00017555  0x00001dba ifetch  0x00000002 , 0x00000006 
+ 00017556  0x00001dbb copy  0x0000003f , 0x00000011 
+ 00017557  0x00001dbc copy  0x00000013 , 0x0000003f 
+ 00017558  0x00001dbd isub  0x00000011 , 0x00000013 
+ 00017559  0x00001dbe ifetch  0x00000002 , 0x00000006 
+ 00017560  0x00001dbf copy  0x0000003f , 0x00000002 
+ 00017561  0x00001dc0 copy  0x00000002 , 0x00000011 
+ 00017562  0x00001dc1 set0  0x00000025 , 0x00000000 
+ 00017563  0x00001dc2 bpatch  0x000000de , 0x0000401b 
+ 00017564  0x00001dc3 setarg  0x00000050 
+ 00017565  0x00001dc4 isub  0x00000002 , 0x0000003e 
+ 00017566  0x00001dc5 branch  0x000044a9 , 0x00000005 
+ 00017567  0x00001dc6 setarg  0x00000051 
+ 00017568  0x00001dc7 isub  0x00000002 , 0x0000003e 
+ 00017569  0x00001dc8 branch  0x000044c7 , 0x00000005 
+ 00017570  0x00001dc9 setarg  0x00000052 
+ 00017571  0x00001dca isub  0x00000002 , 0x0000003e 
+ 00017572  0x00001dcb branch  0x000044b3 , 0x00000005 
+ 00017573  0x00001dcc setarg  0x00000053 
+ 00017574  0x00001dcd isub  0x00000002 , 0x0000003e 
+ 00017575  0x00001dce branch  0x000044bd , 0x00000005 
+ 00017576  0x00001dcf branch  0x000045f4 
+ 00017577  0x00001dd2 copy  0x00000005 , 0x0000000b 
+ 00017578  0x00001dd3 fetch  0x00000001 , 0x000042e0 
+ 00017579  0x00001dd4 set1  0x00000004 , 0x0000003f 
+ 00017580  0x00001dd5 set1  0x00000003 , 0x0000003f 
+ 00017581  0x00001dd7 store  0x00000001 , 0x000042e0 
+ 00017582  0x00001dd8 copy  0x0000000b , 0x00000005 
+ 00017583  0x00001dd9 arg  0x00000050 , 0x0000000b 
+ 00017584  0x00001dda fetch  0x00000002 , 0x000042d8 
+ 00017585  0x00001ddb copy  0x0000003f , 0x00000002 
+ 00017586  0x00001ddc branch  0x000044d0 
+ 00017587  0x00001dde copy  0x00000005 , 0x0000000b 
+ 00017588  0x00001ddf fetch  0x00000001 , 0x000042e2 
+ 00017589  0x00001de0 set1  0x00000004 , 0x0000003f 
+ 00017590  0x00001de1 set1  0x00000003 , 0x0000003f 
+ 00017591  0x00001de3 store  0x00000001 , 0x000042e2 
+ 00017592  0x00001de4 copy  0x0000000b , 0x00000005 
+ 00017593  0x00001de5 arg  0x00000052 , 0x0000000b 
+ 00017594  0x00001de6 fetch  0x00000002 , 0x000042dc 
+ 00017595  0x00001de7 copy  0x0000003f , 0x00000002 
+ 00017596  0x00001de8 branch  0x000044d0 
+ 00017597  0x00001dea copy  0x00000005 , 0x0000000b 
+ 00017598  0x00001deb fetch  0x00000001 , 0x000042e3 
+ 00017599  0x00001dec set1  0x00000004 , 0x0000003f 
+ 00017600  0x00001ded set1  0x00000003 , 0x0000003f 
+ 00017601  0x00001def store  0x00000001 , 0x000042e3 
+ 00017602  0x00001df0 copy  0x0000000b , 0x00000005 
+ 00017603  0x00001df1 arg  0x00000053 , 0x0000000b 
+ 00017604  0x00001df2 fetch  0x00000002 , 0x000042de 
+ 00017605  0x00001df3 copy  0x0000003f , 0x00000002 
+ 00017606  0x00001df4 branch  0x000044d0 
+ 00017607  0x00001df6 copy  0x00000005 , 0x0000000b 
+ 00017608  0x00001df7 fetch  0x00000001 , 0x000042e1 
+ 00017609  0x00001df8 set1  0x00000004 , 0x0000003f 
+ 00017610  0x00001df9 set1  0x00000003 , 0x0000003f 
+ 00017611  0x00001dfb store  0x00000001 , 0x000042e1 
+ 00017612  0x00001dfd copy  0x0000000b , 0x00000005 
+ 00017613  0x00001dfe arg  0x00000051 , 0x0000000b 
+ 00017614  0x00001dff fetch  0x00000002 , 0x000042da 
+ 00017615  0x00001e00 copy  0x0000003f , 0x00000002 
+ 00017616  0x00001e02 set0  0x00000025 , 0x00000000 
+ 00017617  0x00001e03 bpatch  0x000000df , 0x0000401b 
+ 00017618  0x00001e04 setarg  0x00000005 
+ 00017619  0x00001e05 istore  0x00000001 , 0x00000005 
+ 00017620  0x00001e06 copy  0x00000007 , 0x0000003f 
+ 00017621  0x00001e07 istore  0x00000001 , 0x00000005 
+ 00017622  0x00001e08 setarg  0x00000006 
+ 00017623  0x00001e09 istore  0x00000002 , 0x00000005 
+ 00017624  0x00001e0a copy  0x00000002 , 0x0000003f 
+ 00017625  0x00001e0b istore  0x00000002 , 0x00000005 
+ 00017626  0x00001e0c force  0x00000000 , 0x0000003f 
+ 00017627  0x00001e0d istore  0x00000002 , 0x00000005 
+ 00017628  0x00001e0e force  0x00000000 , 0x0000003f 
+ 00017629  0x00001e0f istore  0x00000002 , 0x00000005 
+ 00017630  0x00001e10 force  0x0000000a , 0x0000003f 
+ 00017631  0x00001e11 iadd  0x00000012 , 0x00000012 
+ 00017632  0x00001e13 storet  0x00000002 , 0x000002ab 
+ 00017633  0x00001e14 copy  0x00000007 , 0x0000003f 
+ 00017634  0x00001e15 store  0x00000001 , 0x000002aa 
+ 00017635  0x00001e16 force  0x00000050 , 0x0000003f 
+ 00017636  0x00001e17 icompare  0x000000ff , 0x0000000b 
+ 00017637  0x00001e18 branch  0x000044e7 , 0x00000001 
+ 00017638  0x00001e19 increase  0x00000001 , 0x0000003f 
+ 00017639  0x00001e1c rtn 
+ 00017640  0x00001e1e disable  0x00000028 
+ 00017641  0x00001e1f rtnbit1  0x00000002 , 0x0000003f 
+ 00017642  0x00001e20 rtnbit0  0x00000000 , 0x0000003f 
+ 00017643  0x00001e21 rtnbit0  0x00000001 , 0x0000003f 
+ 00017644  0x00001e22 set1  0x00000002 , 0x0000003f 
+ 00017645  0x00001e23 copy  0x00000006 , 0x00000005 
+ 00017646  0x00001e24 increase  0xffffffff , 0x00000005 
+ 00017647  0x00001e25 istore  0x00000001 , 0x00000005 
+ 00017648  0x00001e26 enable  0x00000028 
+ 00017649  0x00001e27 rtn 
+ 00017650  0x00001e2a fetch  0x00000001 , 0x000042e0 
+ 00017651  0x00001e2b call  0x000044e8 
+ 00017652  0x00001e2c nbranch  0x000044f9 , 0x00000028 
+ 00017653  0x00001e2d jam  0x00000050 , 0x000002a9 
+ 00017654  0x00001e2e fetch  0x00000002 , 0x000042d8 
+ 00017655  0x00001e2f store  0x00000002 , 0x000002ab 
+ 00017656  0x00001e30 branch  0x0000450d 
+ 00017657  0x00001e32 fetch  0x00000001 , 0x000042e1 
+ 00017658  0x00001e33 call  0x000044e8 
+ 00017659  0x00001e34 nbranch  0x00004500 , 0x00000028 
+ 00017660  0x00001e35 jam  0x00000051 , 0x000002a9 
+ 00017661  0x00001e36 fetch  0x00000002 , 0x000042da 
+ 00017662  0x00001e37 store  0x00000002 , 0x000002ab 
+ 00017663  0x00001e38 branch  0x0000450d 
+ 00017664  0x00001e3a fetch  0x00000001 , 0x000042e2 
+ 00017665  0x00001e3b call  0x000044e8 
+ 00017666  0x00001e3c nbranch  0x00004507 , 0x00000028 
+ 00017667  0x00001e3d jam  0x00000052 , 0x000002a9 
+ 00017668  0x00001e3e fetch  0x00000002 , 0x000042dc 
+ 00017669  0x00001e3f store  0x00000002 , 0x000002ab 
+ 00017670  0x00001e40 branch  0x0000450d 
+ 00017671  0x00001e42 fetch  0x00000001 , 0x000042e3 
+ 00017672  0x00001e43 call  0x000044e8 
+ 00017673  0x00001e44 nrtn  0x00000028 
+ 00017674  0x00001e45 jam  0x00000053 , 0x000002a9 
+ 00017675  0x00001e46 fetch  0x00000002 , 0x000042de 
+ 00017676  0x00001e47 store  0x00000002 , 0x000002ab 
+ 00017677  0x00001e4b set0  0x00000025 , 0x00000000 
+ 00017678  0x00001e4c bpatch  0x000000e0 , 0x0000401c 
+ 00017679  0x00001e4d call  0x000047d6 
+ 00017680  0x00001e4e call  0x0000485e 
+ 00017681  0x00001e4f force  0x00000000 , 0x00000012 
+ 00017682  0x00001e50 call  0x0000486a 
+ 00017683  0x00001e51 force  0x00000004 , 0x0000003f 
+ 00017684  0x00001e52 istore  0x00000001 , 0x00000005 
+ 00017685  0x00001e53 fetch  0x00000001 , 0x000042e5 
+ 00017686  0x00001e54 istore  0x00000001 , 0x00000005 
+ 00017687  0x00001e55 setarg  0x00000008 
+ 00017688  0x00001e56 istore  0x00000002 , 0x00000005 
+ 00017689  0x00001e57 fetch  0x00000002 , 0x000002ab 
+ 00017690  0x00001e58 istore  0x00000002 , 0x00000005 
+ 00017691  0x00001e59 setarg  0x00000000 
+ 00017692  0x00001e5a istore  0x00000002 , 0x00000005 
+ 00017693  0x00001e5b force  0x00000001 , 0x0000003f 
+ 00017694  0x00001e5c istore  0x00000001 , 0x00000005 
+ 00017695  0x00001e5d force  0x00000002 , 0x0000003f 
+ 00017696  0x00001e5e istore  0x00000001 , 0x00000005 
+ 00017697  0x00001e5f fetch  0x00000001 , 0x000002a9 
+ 00017698  0x00001e60 beq  0x00000051 , 0x00004526 
+ 00017699  0x00001e61 setarg  0x00000030 
+ 00017700  0x00001e62 istore  0x00000002 , 0x00000005 
+ 00017701  0x00001e63 branch  0x00004528 
+ 00017702  0x00001e65 setarg  0x000003e3 
+ 00017703  0x00001e66 istore  0x00000002 , 0x00000005 
+ 00017704  0x00001e68 arg  0x0000000c , 0x00000002 
+ 00017705  0x00001e69 storet  0x00000002 , 0x00000298 
+ 00017706  0x00001e6a call  0x00004868 
+ 00017707  0x00001e6b fetch  0x00000002 , 0x00000298 
+ 00017708  0x00001e6c istore  0x00000002 , 0x00000005 
+ 00017709  0x00001e6d force  0x00000001 , 0x0000003f 
+ 00017710  0x00001e6e istore  0x00000002 , 0x00000005 
+ 00017711  0x00001e6f jam  0x00000000 , 0x000002a9 
+ 00017712  0x00001e71 branch  0x000043a7 
+ 00017713  0x00001e74 increase  0x00000001 , 0x00000006 
+ 00017714  0x00001e75 ifetch  0x00000002 , 0x00000006 
+ 00017715  0x00001e76 copy  0x0000003f , 0x00000011 
+ 00017716  0x00001e77 copy  0x00000013 , 0x0000003f 
+ 00017717  0x00001e78 isub  0x00000011 , 0x00000013 
+ 00017718  0x00001e79 ifetch  0x00000002 , 0x00000006 
+ 00017719  0x00001e7a copy  0x0000003f , 0x00000011 
+ 00017720  0x00001e7b set0  0x00000025 , 0x00000000 
+ 00017721  0x00001e7c bpatch  0x000000e1 , 0x0000401c 
+ 00017722  0x00001e7d setarg  0x00000050 
+ 00017723  0x00001e7e isub  0x00000011 , 0x0000003e 
+ 00017724  0x00001e7f branch  0x0000454a , 0x00000005 
+ 00017725  0x00001e80 setarg  0x00000051 
+ 00017726  0x00001e81 isub  0x00000011 , 0x0000003e 
+ 00017727  0x00001e82 branch  0x0000454e , 0x00000005 
+ 00017728  0x00001e83 setarg  0x00000052 
+ 00017729  0x00001e84 isub  0x00000011 , 0x0000003e 
+ 00017730  0x00001e85 branch  0x00004552 , 0x00000005 
+ 00017731  0x00001e86 setarg  0x00000053 
+ 00017732  0x00001e87 isub  0x00000011 , 0x0000003e 
+ 00017733  0x00001e88 branch  0x00004556 , 0x00000005 
+ 00017734  0x00001e89 increase  0x00000002 , 0x00000006 
+ 00017735  0x00001e8a ifetch  0x00000002 , 0x00000006 
+ 00017736  0x00001e8b iforce  0x0000003e 
+ 00017737  0x00001e8c branch  0x000043a7 
+ 00017738  0x00001e8e fetch  0x00000001 , 0x000042e0 
+ 00017739  0x00001e8f set1  0x00000005 , 0x0000003f 
+ 00017740  0x00001e90 store  0x00000001 , 0x000042e0 
+ 00017741  0x00001e91 branch  0x000043a7 
+ 00017742  0x00001e93 fetch  0x00000001 , 0x000042e1 
+ 00017743  0x00001e94 set1  0x00000005 , 0x0000003f 
+ 00017744  0x00001e95 store  0x00000001 , 0x000042e1 
+ 00017745  0x00001e96 branch  0x000043a7 
+ 00017746  0x00001e98 fetch  0x00000001 , 0x000042e2 
+ 00017747  0x00001e99 set1  0x00000005 , 0x0000003f 
+ 00017748  0x00001e9a store  0x00000001 , 0x000042e2 
+ 00017749  0x00001e9b branch  0x000043a7 
+ 00017750  0x00001e9d fetch  0x00000001 , 0x000042e3 
+ 00017751  0x00001e9e set1  0x00000005 , 0x0000003f 
+ 00017752  0x00001e9f store  0x00000001 , 0x000042e3 
+ 00017753  0x00001ea0 jam  0x00000006 , 0x000009bd 
+ 00017754  0x00001ea1 branch  0x00007d86 
+ 00017755  0x00001ea6 ifetch  0x00000001 , 0x00000006 
+ 00017756  0x00001ea7 copy  0x0000003f , 0x00000007 
+ 00017757  0x00001ea8 ifetch  0x00000002 , 0x00000006 
+ 00017758  0x00001ea9 copy  0x0000003f , 0x00000011 
+ 00017759  0x00001eaa copy  0x00000013 , 0x0000003f 
+ 00017760  0x00001eab isub  0x00000011 , 0x00000013 
+ 00017761  0x00001eac ifetch  0x00000002 , 0x00000006 
+ 00017762  0x00001ead copy  0x0000003f , 0x00000011 
+ 00017763  0x00001eae ifetch  0x00000002 , 0x00000006 
+ 00017764  0x00001eaf copy  0x0000003f , 0x0000000b 
+ 00017765  0x00001eb0 copy  0x00000011 , 0x00000002 
+ 00017766  0x00001eb1 call  0x00007e70 
+ 00017767  0x00001eb2 set0  0x00000025 , 0x00000000 
+ 00017768  0x00001eb3 bpatch  0x000000e2 , 0x0000401c 
+ 00017769  0x00001eb4 setarg  0x00000050 
+ 00017770  0x00001eb5 isub  0x00000002 , 0x0000003e 
+ 00017771  0x00001eb6 branch  0x00004583 , 0x00000005 
+ 00017772  0x00001eb7 setarg  0x00000051 
+ 00017773  0x00001eb8 isub  0x00000002 , 0x0000003e 
+ 00017774  0x00001eb9 branch  0x00004593 , 0x00000005 
+ 00017775  0x00001eba setarg  0x00000052 
+ 00017776  0x00001ebb isub  0x00000002 , 0x0000003e 
+ 00017777  0x00001ebc branch  0x00004577 , 0x00000005 
+ 00017778  0x00001ebd setarg  0x00000053 
+ 00017779  0x00001ebe isub  0x00000002 , 0x0000003e 
+ 00017780  0x00001ebf branch  0x0000457d , 0x00000005 
+ 00017781  0x00001ec0 call  0x000045f4 
+ 00017782  0x00001ec1 branch  0x000045a8 
+ 00017783  0x00001ec3 copy  0x0000000b , 0x00000002 
+ 00017784  0x00001ec4 fetch  0x00000002 , 0x000042dc 
+ 00017785  0x00001ec5 isub  0x00000002 , 0x0000003e 
+ 00017786  0x00001ec6 branch  0x00004589 , 0x00000005 
+ 00017787  0x00001ec7 call  0x000045f4 
+ 00017788  0x00001ec8 branch  0x000045a8 
+ 00017789  0x00001eca copy  0x0000000b , 0x00000002 
+ 00017790  0x00001ecb fetch  0x00000002 , 0x000042de 
+ 00017791  0x00001ecc isub  0x00000002 , 0x0000003e 
+ 00017792  0x00001ecd branch  0x0000458b , 0x00000005 
+ 00017793  0x00001ece call  0x000045f4 
+ 00017794  0x00001ecf branch  0x000045a8 
+ 00017795  0x00001ed2 copy  0x0000000b , 0x00000002 
+ 00017796  0x00001ed3 fetch  0x00000002 , 0x000042d8 
+ 00017797  0x00001ed4 isub  0x00000002 , 0x0000003e 
+ 00017798  0x00001ed5 branch  0x0000458f , 0x00000005 
+ 00017799  0x00001ed6 call  0x000045f4 
+ 00017800  0x00001ed7 branch  0x000045a8 
+ 00017801  0x00001ed9 call  0x0000460b 
+ 00017802  0x00001eda branch  0x0000459b 
+ 00017803  0x00001edc call  0x00004611 
+ 00017804  0x00001edd fetch  0x00000002 , 0x000042dc 
+ 00017805  0x00001ede branch  0x0000459b , 0x00000034 
+ 00017806  0x00001ee6 branch  0x0000459b 
+ 00017807  0x00001ee9 call  0x00004606 
+ 00017808  0x00001eea fetch  0x00000001 , 0x000002b1 
+ 00017809  0x00001eeb nbranch  0x0000459b , 0x00000034 
+ 00017810  0x00001eee branch  0x0000459b 
+ 00017811  0x00001ef0 copy  0x0000000b , 0x00000002 
+ 00017812  0x00001ef1 fetch  0x00000002 , 0x000042da 
+ 00017813  0x00001ef2 isub  0x00000002 , 0x0000003e 
+ 00017814  0x00001ef3 branch  0x00004599 , 0x00000005 
+ 00017815  0x00001ef4 call  0x000045f4 
+ 00017816  0x00001ef5 branch  0x000045a8 
+ 00017817  0x00001ef7 call  0x00004601 
+ 00017818  0x00001ef8 branch  0x0000459b 
+ 00017819  0x00001efa call  0x00007e75 
+ 00017820  0x00001efb setarg  0x00000007 
+ 00017821  0x00001efc istore  0x00000001 , 0x00000005 
+ 00017822  0x00001efd copy  0x00000007 , 0x0000003f 
+ 00017823  0x00001efe istore  0x00000001 , 0x00000005 
+ 00017824  0x00001eff setarg  0x00000004 
+ 00017825  0x00001f00 istore  0x00000002 , 0x00000005 
+ 00017826  0x00001f01 copy  0x00000011 , 0x0000003f 
+ 00017827  0x00001f02 istore  0x00000002 , 0x00000005 
+ 00017828  0x00001f03 copy  0x0000000b , 0x0000003f 
+ 00017829  0x00001f04 istore  0x00000002 , 0x00000005 
+ 00017830  0x00001f05 force  0x00000008 , 0x0000003f 
+ 00017831  0x00001f06 branch  0x000045aa 
+ 00017832  0x00001f08 call  0x00007e75 
+ 00017833  0x00001f09 branch  0x000045aa 
+ 00017834  0x00001f0b iadd  0x00000012 , 0x00000012 
+ 00017835  0x00001f0c branch  0x000043a7 
+ 00017836  0x00001f0e ifetch  0x00000001 , 0x00000006 
+ 00017837  0x00001f0f copy  0x0000003f , 0x00000007 
+ 00017838  0x00001f10 ifetch  0x00000002 , 0x00000006 
+ 00017839  0x00001f11 copy  0x0000003f , 0x00000011 
+ 00017840  0x00001f12 copy  0x00000013 , 0x0000003f 
+ 00017841  0x00001f13 isub  0x00000011 , 0x00000013 
+ 00017842  0x00001f14 ifetch  0x00000002 , 0x00000006 
+ 00017843  0x00001f15 copy  0x0000003f , 0x0000000b 
+ 00017844  0x00001f16 ifetch  0x00000002 , 0x00000006 
+ 00017845  0x00001f17 copy  0x0000003f , 0x00000002 
+ 00017846  0x00001f18 call  0x00007e70 
+ 00017847  0x00001f19 set0  0x00000025 , 0x00000000 
+ 00017848  0x00001f1a bpatch  0x000000e3 , 0x0000401c 
+ 00017849  0x00001f1b setarg  0x00000050 
+ 00017850  0x00001f1c isub  0x00000002 , 0x0000003e 
+ 00017851  0x00001f1d branch  0x000045c7 , 0x00000005 
+ 00017852  0x00001f1e setarg  0x00000051 
+ 00017853  0x00001f1f isub  0x00000002 , 0x0000003e 
+ 00017854  0x00001f20 branch  0x000045cd , 0x00000005 
+ 00017855  0x00001f21 setarg  0x00000052 
+ 00017856  0x00001f22 isub  0x00000002 , 0x0000003e 
+ 00017857  0x00001f23 branch  0x000045d3 , 0x00000005 
+ 00017858  0x00001f24 setarg  0x00000053 
+ 00017859  0x00001f25 isub  0x00000002 , 0x0000003e 
+ 00017860  0x00001f26 branch  0x000045d9 , 0x00000005 
+ 00017861  0x00001f27 call  0x000045f4 
+ 00017862  0x00001f28 branch  0x000045e1 
+ 00017863  0x00001f2a copy  0x00000002 , 0x00000011 
+ 00017864  0x00001f2b copy  0x0000000b , 0x00000002 
+ 00017865  0x00001f2c fetch  0x00000002 , 0x000042d8 
+ 00017866  0x00001f2d isub  0x00000002 , 0x0000003e 
+ 00017867  0x00001f2e call  0x00004606 , 0x00000005 
+ 00017868  0x00001f2f branch  0x000045df 
+ 00017869  0x00001f31 copy  0x00000002 , 0x00000011 
+ 00017870  0x00001f32 copy  0x0000000b , 0x00000002 
+ 00017871  0x00001f33 fetch  0x00000002 , 0x000042da 
+ 00017872  0x00001f34 isub  0x00000002 , 0x0000003e 
+ 00017873  0x00001f35 call  0x00004601 , 0x00000005 
+ 00017874  0x00001f36 branch  0x000045df 
+ 00017875  0x00001f38 copy  0x00000002 , 0x00000011 
+ 00017876  0x00001f39 copy  0x0000000b , 0x00000002 
+ 00017877  0x00001f3a fetch  0x00000002 , 0x000042dc 
+ 00017878  0x00001f3b isub  0x00000002 , 0x0000003e 
+ 00017879  0x00001f3c call  0x0000460b , 0x00000005 
+ 00017880  0x00001f3d branch  0x000045df 
+ 00017881  0x00001f3f copy  0x00000002 , 0x00000011 
+ 00017882  0x00001f40 copy  0x0000000b , 0x00000002 
+ 00017883  0x00001f41 fetch  0x00000002 , 0x000042de 
+ 00017884  0x00001f42 isub  0x00000002 , 0x0000003e 
+ 00017885  0x00001f43 call  0x00004611 , 0x00000005 
+ 00017886  0x00001f44 branch  0x000045df 
+ 00017887  0x00001f46 call  0x00007e75 
+ 00017888  0x00001f47 branch  0x000043a7 
+ 00017889  0x00001f49 branch  0x000043a7 
+ 00017890  0x00001f4d ifetch  0x00000001 , 0x00000006 
+ 00017891  0x00001f4e copy  0x0000003f , 0x00000007 
+ 00017892  0x00001f4f ifetch  0x00000002 , 0x00000006 
+ 00017893  0x00001f50 copy  0x0000003f , 0x00000011 
+ 00017894  0x00001f51 iadd  0x00000006 , 0x00000006 
+ 00017895  0x00001f52 setarg  0x00000009 
+ 00017896  0x00001f53 istore  0x00000001 , 0x00000005 
+ 00017897  0x00001f54 copy  0x00000007 , 0x0000003f 
+ 00017898  0x00001f55 istore  0x00000001 , 0x00000005 
+ 00017899  0x00001f56 force  0x00000000 , 0x0000003f 
+ 00017900  0x00001f57 istore  0x00000002 , 0x00000005 
+ 00017901  0x00001f58 force  0x00000004 , 0x0000003f 
+ 00017902  0x00001f59 iadd  0x00000012 , 0x00000012 
+ 00017903  0x00001f5a copy  0x00000013 , 0x0000003f 
+ 00017904  0x00001f5b isub  0x00000011 , 0x00000013 
+ 00017905  0x00001f5c branch  0x000043a7 
+ 00017906  0x00001f5e branch  0x000043a7 
+ 00017907  0x00001f61 branch  0x000043a7 
+ 00017908  0x00001f63 force  0x00000000 , 0x00000012 
+ 00017909  0x00001f64 call  0x0000486a 
+ 00017910  0x00001f65 setarg  0x00000001 
+ 00017911  0x00001f66 istore  0x00000001 , 0x00000005 
+ 00017912  0x00001f67 copy  0x00000007 , 0x0000003f 
+ 00017913  0x00001f68 istore  0x00000001 , 0x00000005 
+ 00017914  0x00001f69 setarg  0x00000002 
+ 00017915  0x00001f6a istore  0x00000002 , 0x00000005 
+ 00017916  0x00001f6b setarg  0x00000000 
+ 00017917  0x00001f6c istore  0x00000002 , 0x00000005 
+ 00017918  0x00001f6d increase  0x00000006 , 0x00000012 
+ 00017919  0x00001f6e arg  0x00000004 , 0x00000013 
+ 00017920  0x00001f6f branch  0x000043a7 
+ 00017921  0x00001f74 setarg  0x00000000 
+ 00017922  0x00001f75 store  0x00000002 , 0x000002a4 
+ 00017923  0x00001f76 store  0x00000002 , 0x000042da 
+ 00017924  0x00001f77 jam  0x00000000 , 0x000042e1 
+ 00017925  0x00001f78 rtn 
+ 00017926  0x00001f7a setarg  0x00000000 
+ 00017927  0x00001f7b store  0x00000002 , 0x0000029e 
+ 00017928  0x00001f7c store  0x00000002 , 0x000042d8 
+ 00017929  0x00001f7d jam  0x00000000 , 0x000042e0 
+ 00017930  0x00001f7e rtn 
+ 00017931  0x00001f80 setarg  0x00000000 
+ 00017932  0x00001f81 store  0x00000002 , 0x000042dc 
+ 00017933  0x00001f82 jam  0x00000000 , 0x000042e2 
+ 00017934  0x00001f83 fetch  0x00000001 , 0x000042e3 
+ 00017935  0x00001f84 beq  0x00000000 , 0x00004617 
+ 00017936  0x00001f85 rtn 
+ 00017937  0x00001f88 setarg  0x00000000 
+ 00017938  0x00001f89 store  0x00000002 , 0x000042de 
+ 00017939  0x00001f8a jam  0x00000000 , 0x000042e3 
+ 00017940  0x00001f8b fetch  0x00000001 , 0x000042e2 
+ 00017941  0x00001f8c beq  0x00000000 , 0x00004617 
+ 00017942  0x00001f8d rtn 
+ 00017943  0x00001f90 jam  0x00000007 , 0x000009bd 
+ 00017944  0x00001f91 branch  0x00007d86 
+ 00017945  0x00001f94 fetch  0x00000001 , 0x000002a8 
+ 00017946  0x00001f95 set0  0x00000000 , 0x0000003f 
+ 00017947  0x00001f96 store  0x00000001 , 0x000002a8 
+ 00017948  0x00001f97 fetch  0x00000002 , 0x000042de 
+ 00017949  0x00001f98 rtn  0x00000034 
+ 00017950  0x00001f99 call  0x0000485e 
+ 00017951  0x00001f9a fetch  0x00000002 , 0x000042de 
+ 00017952  0x00001f9b copy  0x0000003f , 0x00000011 
+ 00017953  0x00001f9c force  0x00000053 , 0x00000012 
+ 00017954  0x00001f9d branch  0x0000462c 
+ 00017955  0x00001f9f fetch  0x00000001 , 0x000002a8 
+ 00017956  0x00001fa0 set0  0x00000007 , 0x0000003f 
+ 00017957  0x00001fa1 store  0x00000001 , 0x000002a8 
+ 00017958  0x00001fa2 fetch  0x00000002 , 0x000042dc 
+ 00017959  0x00001fa3 rtn  0x00000034 
+ 00017960  0x00001fa4 call  0x0000485e 
+ 00017961  0x00001fa5 fetch  0x00000002 , 0x000042dc 
+ 00017962  0x00001fa6 copy  0x0000003f , 0x00000011 
+ 00017963  0x00001fa7 force  0x00000052 , 0x00000012 
+ 00017964  0x00001fa9 call  0x000047d6 
+ 00017965  0x00001faa call  0x0000486a 
+ 00017966  0x00001fab force  0x00000006 , 0x0000003f 
+ 00017967  0x00001fac istore  0x00000001 , 0x00000005 
+ 00017968  0x00001fad fetch  0x00000001 , 0x000042e5 
+ 00017969  0x00001fae istore  0x00000001 , 0x00000005 
+ 00017970  0x00001faf setarg  0x00000004 
+ 00017971  0x00001fb0 istore  0x00000002 , 0x00000005 
+ 00017972  0x00001fb1 copy  0x00000011 , 0x0000003f 
+ 00017973  0x00001fb2 istore  0x00000002 , 0x00000005 
+ 00017974  0x00001fb3 copy  0x00000012 , 0x0000003f 
+ 00017975  0x00001fb4 istore  0x00000002 , 0x00000005 
+ 00017976  0x00001fb5 force  0x00000008 , 0x00000002 
+ 00017977  0x00001fb6 branch  0x00004673 
+ 00017978  0x00001fb9 set0  0x00000025 , 0x00000000 
+ 00017979  0x00001fba bpatch  0x000000e4 , 0x0000401c 
+ 00017980  0x00001fbb call  0x000047d6 
+ 00017981  0x00001fbc call  0x0000486a 
+ 00017982  0x00001fbd setarg  0x00000002 
+ 00017983  0x00001fbe istore  0x00000001 , 0x00000005 
+ 00017984  0x00001fbf fetch  0x00000001 , 0x000042e5 
+ 00017985  0x00001fc0 istore  0x00000001 , 0x00000005 
+ 00017986  0x00001fc1 setarg  0x00000004 
+ 00017987  0x00001fc2 istore  0x00000002 , 0x00000005 
+ 00017988  0x00001fc3 copy  0x00000002 , 0x0000003f 
+ 00017989  0x00001fc4 istore  0x00000002 , 0x00000005 
+ 00017990  0x00001fc5 copy  0x0000000b , 0x0000003f 
+ 00017991  0x00001fc6 istore  0x00000002 , 0x00000005 
+ 00017992  0x00001fc7 arg  0x00000008 , 0x00000002 
+ 00017993  0x00001fc8 branch  0x00004673 
+ 00017994  0x00001fca set0  0x00000025 , 0x00000000 
+ 00017995  0x00001fcb bpatch  0x000000e5 , 0x0000401c 
+ 00017996  0x00001fcc call  0x000047d6 
+ 00017997  0x00001fcd call  0x0000486a 
+ 00017998  0x00001fce setarg  0x00000004 
+ 00017999  0x00001fcf istore  0x00000001 , 0x00000005 
+ 00018000  0x00001fd0 fetch  0x00000001 , 0x000042e5 
+ 00018001  0x00001fd1 istore  0x00000001 , 0x00000005 
+ 00018002  0x00001fd2 setarg  0x00000008 
+ 00018003  0x00001fd3 istore  0x00000002 , 0x00000005 
+ 00018004  0x00001fd5 copy  0x00000002 , 0x0000003f 
+ 00018005  0x00001fd7 istore  0x00000002 , 0x00000005 
+ 00018006  0x00001fd8 setarg  0x00000000 
+ 00018007  0x00001fd9 istore  0x00000002 , 0x00000005 
+ 00018008  0x00001fda setarg  0x00000001 
+ 00018009  0x00001fdb istore  0x00000001 , 0x00000005 
+ 00018010  0x00001fdc setarg  0x00000002 
+ 00018011  0x00001fdd istore  0x00000001 , 0x00000005 
+ 00018012  0x00001fde setarg  0x000003e3 
+ 00018013  0x00001fdf istore  0x00000002 , 0x00000005 
+ 00018014  0x00001fe0 arg  0x0000000c , 0x00000002 
+ 00018015  0x00001fe1 branch  0x00004673 
+ 00018016  0x00001fe3 set0  0x00000025 , 0x00000000 
+ 00018017  0x00001fe4 bpatch  0x000000e6 , 0x0000401c 
+ 00018018  0x00001fe5 call  0x000047d6 
+ 00018019  0x00001fe6 call  0x0000486a 
+ 00018020  0x00001fe7 setarg  0x00000006 
+ 00018021  0x00001fe8 istore  0x00000001 , 0x00000005 
+ 00018022  0x00001fe9 fetch  0x00000001 , 0x000042e5 
+ 00018023  0x00001fea increase  0x00000001 , 0x0000003f 
+ 00018024  0x00001feb copy  0x00000005 , 0x00000011 
+ 00018025  0x00001fec store  0x00000001 , 0x000042e5 
+ 00018026  0x00001fed copy  0x00000011 , 0x00000005 
+ 00018027  0x00001fee istore  0x00000001 , 0x00000005 
+ 00018028  0x00001fef setarg  0x00000004 
+ 00018029  0x00001ff0 istore  0x00000002 , 0x00000005 
+ 00018030  0x00001ff1 copy  0x00000002 , 0x0000003f 
+ 00018031  0x00001ff2 istore  0x00000002 , 0x00000005 
+ 00018032  0x00001ff3 copy  0x0000000b , 0x0000003f 
+ 00018033  0x00001ff4 istore  0x00000002 , 0x00000005 
+ 00018034  0x00001ff5 arg  0x00000008 , 0x00000002 
+ 00018035  0x00001ff9 storet  0x00000002 , 0x00000298 
+ 00018036  0x00001ffa copy  0x00000002 , 0x0000003f 
+ 00018037  0x00001ffb branch  0x00004803 , 0x00000034 
+ 00018038  0x00001ffc call  0x00004868 
+ 00018039  0x00001ffd fetch  0x00000002 , 0x00000298 
+ 00018040  0x00001ffe istore  0x00000002 , 0x00000005 
+ 00018041  0x00001fff force  0x00000001 , 0x0000003f 
+ 00018042  0x00002000 istore  0x00000002 , 0x00000005 
+ 00018043  0x00002001 rtn 
+ 00018044  0x00002004 fetch  0x00000002 , 0x0000029e 
+ 00018045  0x00002005 branch  0x00003b31 , 0x00000034 
+ 00018046  0x00002006 call  0x00004876 
+ 00018047  0x00002007 fetch  0x00000002 , 0x0000029e 
+ 00018048  0x00002008 istore  0x00000002 , 0x00000005 
+ 00018049  0x00002009 fetch  0x00000002 , 0x000042d8 
+ 00018050  0x0000200a istore  0x00000002 , 0x00000005 
+ 00018051  0x0000200b rtn 
+ 00018052  0x0000200d fetch  0x00000002 , 0x0000028f 
+ 00018053  0x0000200e branch  0x00004383 , 0x00000034 
+ 00018054  0x0000200f set0  0x00000025 , 0x00000000 
+ 00018055  0x00002010 bpatch  0x000000e7 , 0x0000401c 
+ 00018056  0x00002011 fetch  0x00000001 , 0x00000291 
+ 00018057  0x00002012 beq  0x00000001 , 0x0000468f 
+ 00018058  0x00002013 beq  0x00000050 , 0x0000436e 
+ 00018059  0x00002014 beq  0x00000051 , 0x0000437b 
+ 00018060  0x00002015 beq  0x00000052 , 0x00004379 
+ 00018061  0x00002016 beq  0x00000053 , 0x00004379 
+ 00018062  0x00002017 branch  0x00004383 
+ 00018063  0x0000201a set0  0x00000025 , 0x00000000 
+ 00018064  0x0000201b bpatch  0x000000e8 , 0x0000401d 
+ 00018065  0x0000201c call  0x0000485e 
+ 00018066  0x0000201d force  0x00000000 , 0x00000012 
+ 00018067  0x0000201e call  0x0000486a 
+ 00018068  0x0000201f copy  0x0000003f , 0x00000005 
+ 00018069  0x00002020 fetch  0x00000002 , 0x0000028f 
+ 00018070  0x00002021 copy  0x0000003f , 0x00000013 
+ 00018071  0x00002022 fetch  0x00000002 , 0x0000028d 
+ 00018072  0x00002023 iforce  0x00000006 
+ 00018073  0x00002025 call  0x0000469f 
+ 00018074  0x00002026 increase  0xfffffffc , 0x00000013 
+ 00018075  0x00002027 nbranch  0x00004699 , 0x00000005 
+ 00018076  0x00002028 copy  0x00000012 , 0x00000002 
+ 00018077  0x00002029 call  0x00004673 
+ 00018078  0x0000202a branch  0x00004383 
+ 00018079  0x0000202d ifetch  0x00000001 , 0x00000006 
+ 00018080  0x0000202e beq  0x00000002 , 0x000046aa 
+ 00018081  0x0000202f beq  0x00000001 , 0x000046ad 
+ 00018082  0x00002030 beq  0x00000003 , 0x000046b7 
+ 00018083  0x00002031 beq  0x00000005 , 0x000046f4 
+ 00018084  0x00002032 beq  0x00000004 , 0x00004727 
+ 00018085  0x00002033 beq  0x00000007 , 0x000047ae 
+ 00018086  0x00002034 beq  0x00000006 , 0x0000477b 
+ 00018087  0x00002035 beq  0x00000008 , 0x000045e2 
+ 00018088  0x00002036 beq  0x0000000a , 0x000043c3 
+ 00018089  0x00002037 branch  0x000047ca 
+ 00018090  0x0000203a call  0x00007e70 
+ 00018091  0x0000203c call  0x00007e75 
+ 00018092  0x0000203d branch  0x000043da 
+ 00018093  0x0000203f ifetch  0x00000001 , 0x00000006 
+ 00018094  0x00002040 copy  0x0000003f , 0x00000007 
+ 00018095  0x00002041 ifetch  0x00000002 , 0x00000006 
+ 00018096  0x00002042 copy  0x0000003f , 0x00000011 
+ 00018097  0x00002043 copy  0x00000013 , 0x0000003f 
+ 00018098  0x00002044 isub  0x00000011 , 0x00000013 
+ 00018099  0x00002046 ifetch  0x00000001 , 0x00000006 
+ 00018100  0x00002047 increase  0xffffffff , 0x00000011 
+ 00018101  0x00002048 nbranch  0x000046b3 , 0x00000005 
+ 00018102  0x00002049 rtn 
+ 00018103  0x0000204b ifetch  0x00000001 , 0x00000006 
+ 00018104  0x0000204c copy  0x0000003f , 0x00000007 
+ 00018105  0x0000204d ifetch  0x00000002 , 0x00000006 
+ 00018106  0x0000204e copy  0x0000003f , 0x00000011 
+ 00018107  0x0000204f ifetch  0x00000002 , 0x00000006 
+ 00018108  0x00002050 copy  0x0000003f , 0x0000000b 
+ 00018109  0x00002051 ifetch  0x00000002 , 0x00000006 
+ 00018110  0x00002052 copy  0x0000003f , 0x00000002 
+ 00018111  0x00002053 ifetch  0x00000002 , 0x00000006 
+ 00018112  0x00002054 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00018113  0x00002055 branch  0x000046c9 , 0x00000005 
+ 00018114  0x00002056 beq  0x00000002 , 0x000046c5 
+ 00018115  0x00002057 beq  0x00000004 , 0x000046c5 
+ 00018116  0x00002058 branch  0x000046c7 
+ 00018117  0x0000205a jam  0x00000016 , 0x000009bd 
+ 00018118  0x0000205b call  0x00007d86 
+ 00018119  0x0000205d ifetch  0x00000002 , 0x00000006 
+ 00018120  0x0000205e branch  0x000046f1 
+ 00018121  0x00002060 call  0x00007e70 
+ 00018122  0x00002064 set0  0x00000025 , 0x00000000 
+ 00018123  0x00002065 bpatch  0x000000e9 , 0x0000401d 
+ 00018124  0x00002066 setarg  0x00000050 
+ 00018125  0x00002067 isub  0x00000002 , 0x0000003e 
+ 00018126  0x00002068 branch  0x000046d9 , 0x00000005 
+ 00018127  0x00002069 setarg  0x00000051 
+ 00018128  0x0000206a isub  0x00000002 , 0x0000003e 
+ 00018129  0x0000206b branch  0x000046df , 0x00000005 
+ 00018130  0x0000206c setarg  0x00000053 
+ 00018131  0x0000206d isub  0x00000002 , 0x0000003e 
+ 00018132  0x0000206e branch  0x000046eb , 0x00000005 
+ 00018133  0x0000206f setarg  0x00000052 
+ 00018134  0x00002070 isub  0x00000002 , 0x0000003e 
+ 00018135  0x00002071 branch  0x000046e5 , 0x00000005 
+ 00018136  0x00002072 branch  0x000046f1 
+ 00018137  0x00002074 copy  0x0000000b , 0x0000003f 
+ 00018138  0x00002075 store  0x00000002 , 0x000042d8 
+ 00018139  0x00002076 fetch  0x00000001 , 0x000042e0 
+ 00018140  0x00002077 set1  0x00000001 
+ 00018141  0x00002078 store  0x00000001 , 0x000042e0 
+ 00018142  0x00002079 branch  0x000046f0 
+ 00018143  0x0000207b copy  0x0000000b , 0x0000003f 
+ 00018144  0x0000207c store  0x00000002 , 0x000042da 
+ 00018145  0x0000207d fetch  0x00000001 , 0x000042e1 
+ 00018146  0x0000207e set1  0x00000001 
+ 00018147  0x0000207f store  0x00000001 , 0x000042e1 
+ 00018148  0x00002080 branch  0x000046f0 
+ 00018149  0x00002082 copy  0x0000000b , 0x0000003f 
+ 00018150  0x00002083 store  0x00000002 , 0x000042dc 
+ 00018151  0x00002084 fetch  0x00000001 , 0x000042e2 
+ 00018152  0x00002085 set1  0x00000001 
+ 00018153  0x00002086 store  0x00000001 , 0x000042e2 
+ 00018154  0x00002087 branch  0x000046f0 
+ 00018155  0x00002089 copy  0x0000000b , 0x0000003f 
+ 00018156  0x0000208a store  0x00000002 , 0x000042de 
+ 00018157  0x0000208b fetch  0x00000001 , 0x000042e3 
+ 00018158  0x0000208c set1  0x00000001 
+ 00018159  0x0000208d store  0x00000001 , 0x000042e3 
+ 00018160  0x00002091 call  0x00007e75 
+ 00018161  0x00002093 copy  0x00000013 , 0x0000003f 
+ 00018162  0x00002094 isub  0x00000011 , 0x00000013 
+ 00018163  0x00002095 rtn 
+ 00018164  0x00002098 ifetch  0x00000001 , 0x00000006 
+ 00018165  0x00002099 copy  0x0000003f , 0x00000007 
+ 00018166  0x0000209a ifetch  0x00000002 , 0x00000006 
+ 00018167  0x0000209b copy  0x0000003f , 0x00000011 
+ 00018168  0x0000209c copy  0x00000013 , 0x0000003f 
+ 00018169  0x0000209d isub  0x00000011 , 0x00000013 
+ 00018170  0x0000209e ifetch  0x00000002 , 0x00000006 
+ 00018171  0x0000209f copy  0x0000003f , 0x0000000b 
+ 00018172  0x000020a0 ifetch  0x00000002 , 0x00000006 
+ 00018173  0x000020a1 ifetch  0x00000002 , 0x00000006 
+ 00018174  0x000020a2 nbranch  0x00004721 , 0x00000034 
+ 00018175  0x000020a3 call  0x00007e70 
+ 00018176  0x000020a7 copy  0x0000000b , 0x00000002 
+ 00018177  0x000020a8 set0  0x00000025 , 0x00000000 
+ 00018178  0x000020a9 bpatch  0x000000ea , 0x0000401d 
+ 00018179  0x000020aa setarg  0x00000050 
+ 00018180  0x000020ab isub  0x00000002 , 0x0000003e 
+ 00018181  0x000020ac branch  0x0000470f , 0x00000005 
+ 00018182  0x000020ad setarg  0x00000051 
+ 00018183  0x000020ae isub  0x00000002 , 0x0000003e 
+ 00018184  0x000020af branch  0x00004713 , 0x00000005 
+ 00018185  0x000020b0 setarg  0x00000052 
+ 00018186  0x000020b1 isub  0x00000002 , 0x0000003e 
+ 00018187  0x000020b2 branch  0x00004717 , 0x00000005 
+ 00018188  0x000020b3 setarg  0x00000053 
+ 00018189  0x000020b4 isub  0x00000002 , 0x0000003e 
+ 00018190  0x000020b5 branch  0x0000471b , 0x00000005 
+ 00018191  0x000020b7 fetch  0x00000001 , 0x000042e0 
+ 00018192  0x000020b8 set1  0x00000005 
+ 00018193  0x000020b9 store  0x00000001 , 0x000042e0 
+ 00018194  0x000020ba rtn 
+ 00018195  0x000020bc fetch  0x00000001 , 0x000042e1 
+ 00018196  0x000020bd set1  0x00000005 
+ 00018197  0x000020be store  0x00000001 , 0x000042e1 
+ 00018198  0x000020bf rtn 
+ 00018199  0x000020c1 fetch  0x00000001 , 0x000042e2 
+ 00018200  0x000020c2 set1  0x00000005 
+ 00018201  0x000020c3 store  0x00000001 , 0x000042e2 
+ 00018202  0x000020c4 rtn 
+ 00018203  0x000020c6 fetch  0x00000001 , 0x000042e3 
+ 00018204  0x000020c7 set1  0x00000005 
+ 00018205  0x000020c8 store  0x00000001 , 0x000042e3 
+ 00018206  0x000020c9 jam  0x00000006 , 0x000009bd 
+ 00018207  0x000020ca branch  0x00007d86 
+ 00018208  0x000020ce call  0x00007e75 
+ 00018209  0x000020d0 increase  0xfffffffa , 0x00000011 
+ 00018210  0x000020d2 branch  0x00004726 , 0x00000005 
+ 00018211  0x000020d3 increase  0x00000001 , 0x00000006 
+ 00018212  0x000020d4 increase  0xffffffff , 0x00000011 
+ 00018213  0x000020d5 branch  0x00004722 
+ 00018214  0x000020d7 rtn 
+ 00018215  0x000020d9 ifetch  0x00000001 , 0x00000006 
+ 00018216  0x000020da copy  0x0000003f , 0x00000007 
+ 00018217  0x000020db ifetch  0x00000002 , 0x00000006 
+ 00018218  0x000020dc copy  0x0000003f , 0x00000011 
+ 00018219  0x000020dd copy  0x00000013 , 0x0000003f 
+ 00018220  0x000020de isub  0x00000011 , 0x00000013 
+ 00018221  0x000020df ifetch  0x00000002 , 0x00000006 
+ 00018222  0x000020e0 increase  0x00000002 , 0x00000006 
+ 00018223  0x000020e1 copy  0x0000003f , 0x00000002 
+ 00018224  0x000020e2 setarg  0x00000005 
+ 00018225  0x000020e3 istore  0x00000001 , 0x00000005 
+ 00018226  0x000020e4 copy  0x00000007 , 0x0000003f 
+ 00018227  0x000020e5 istore  0x00000001 , 0x00000005 
+ 00018228  0x000020e6 increase  0x00000002 , 0x00000011 
+ 00018229  0x000020e7 copy  0x00000011 , 0x0000003f 
+ 00018230  0x000020e8 istore  0x00000002 , 0x00000005 
+ 00018231  0x000020e9 call  0x00007e70 
+ 00018232  0x000020ea set0  0x00000025 , 0x00000000 
+ 00018233  0x000020eb bpatch  0x000000eb , 0x0000401d 
+ 00018234  0x000020ec setarg  0x00000050 
+ 00018235  0x000020ed isub  0x00000002 , 0x0000003e 
+ 00018236  0x000020ee branch  0x00004747 , 0x00000005 
+ 00018237  0x000020ef setarg  0x00000051 
+ 00018238  0x000020f0 isub  0x00000002 , 0x0000003e 
+ 00018239  0x000020f1 branch  0x00004758 , 0x00000005 
+ 00018240  0x000020f2 setarg  0x00000052 
+ 00018241  0x000020f3 isub  0x00000002 , 0x0000003e 
+ 00018242  0x000020f4 branch  0x0000475e , 0x00000005 
+ 00018243  0x000020f5 setarg  0x00000053 
+ 00018244  0x000020f6 isub  0x00000002 , 0x0000003e 
+ 00018245  0x000020f7 branch  0x00004764 , 0x00000005 
+ 00018246  0x000020f8 branch  0x00004769 
+ 00018247  0x000020fa fetch  0x00000001 , 0x000042e0 
+ 00018248  0x000020fb set1  0x00000004 , 0x0000003f 
+ 00018249  0x000020fc set1  0x00000003 , 0x0000003f 
+ 00018250  0x000020fd store  0x00000001 , 0x000042e0 
+ 00018251  0x000020fe bbit1  0x00000002 , 0x00004755 
+ 00018252  0x000020ff fetcht  0x00000001 , 0x000002a8 
+ 00018253  0x00002100 set1  0x00000006 , 0x00000002 
+ 00018254  0x00002101 storet  0x00000001 , 0x000002a8 
+ 00018255  0x00002102 copy  0x00000007 , 0x0000003f 
+ 00018256  0x00002103 increase  0x00000001 , 0x0000003f 
+ 00018257  0x00002104 store  0x00000001 , 0x000002aa 
+ 00018258  0x00002105 fetch  0x00000001 , 0x000042e0 
+ 00018259  0x00002106 set1  0x00000002 , 0x0000003f 
+ 00018260  0x00002107 store  0x00000001 , 0x000042e0 
+ 00018261  0x00002109 fetch  0x00000002 , 0x000042d8 
+ 00018262  0x0000210a store  0x00000002 , 0x000002ab 
+ 00018263  0x0000210b branch  0x00004769 
+ 00018264  0x0000210d fetch  0x00000001 , 0x000042e1 
+ 00018265  0x0000210e set1  0x00000004 , 0x0000003f 
+ 00018266  0x0000210f set1  0x00000003 , 0x0000003f 
+ 00018267  0x00002110 store  0x00000001 , 0x000042e1 
+ 00018268  0x00002111 fetch  0x00000002 , 0x000042da 
+ 00018269  0x00002112 branch  0x00004769 
+ 00018270  0x00002114 fetch  0x00000001 , 0x000042e2 
+ 00018271  0x00002115 set1  0x00000004 , 0x0000003f 
+ 00018272  0x00002116 set1  0x00000003 , 0x0000003f 
+ 00018273  0x00002117 store  0x00000001 , 0x000042e2 
+ 00018274  0x00002118 fetch  0x00000002 , 0x000042dc 
+ 00018275  0x00002119 branch  0x00004769 
+ 00018276  0x0000211b fetch  0x00000001 , 0x000042e3 
+ 00018277  0x0000211c set1  0x00000004 , 0x0000003f 
+ 00018278  0x0000211d set1  0x00000003 , 0x0000003f 
+ 00018279  0x0000211e store  0x00000001 , 0x000042e3 
+ 00018280  0x0000211f fetch  0x00000002 , 0x000042de 
+ 00018281  0x00002123 copy  0x0000003f , 0x0000000b 
+ 00018282  0x00002124 call  0x00007e75 
+ 00018283  0x00002126 copy  0x0000000b , 0x0000003f 
+ 00018284  0x00002128 istore  0x00000002 , 0x00000005 
+ 00018285  0x00002129 force  0x00000000 , 0x0000003f 
+ 00018286  0x0000212a istore  0x00000002 , 0x00000005 
+ 00018287  0x0000212b force  0x00000000 , 0x0000003f 
+ 00018288  0x0000212c istore  0x00000002 , 0x00000005 
+ 00018289  0x0000212d force  0x0000000a , 0x0000003f 
+ 00018290  0x0000212e iadd  0x00000012 , 0x00000012 
+ 00018291  0x0000212f increase  0xfffffffa , 0x00000011 
+ 00018292  0x00002131 branch  0x0000477a , 0x00000005 
+ 00018293  0x00002132 ifetch  0x00000001 , 0x00000006 
+ 00018294  0x00002133 istore  0x00000001 , 0x00000005 
+ 00018295  0x00002134 increase  0x00000001 , 0x00000012 
+ 00018296  0x00002135 increase  0xffffffff , 0x00000011 
+ 00018297  0x00002136 branch  0x00004774 
+ 00018298  0x00002138 rtn 
+ 00018299  0x0000213a ifetch  0x00000001 , 0x00000006 
+ 00018300  0x0000213b copy  0x0000003f , 0x00000007 
+ 00018301  0x0000213c ifetch  0x00000002 , 0x00000006 
+ 00018302  0x0000213d copy  0x0000003f , 0x00000011 
+ 00018303  0x0000213e copy  0x00000013 , 0x0000003f 
+ 00018304  0x0000213f isub  0x00000011 , 0x00000013 
+ 00018305  0x00002141 ifetch  0x00000002 , 0x00000006 
+ 00018306  0x00002142 copy  0x0000003f , 0x00000011 
+ 00018307  0x00002143 ifetch  0x00000002 , 0x00000006 
+ 00018308  0x00002144 copy  0x0000003f , 0x0000000b 
+ 00018309  0x00002145 call  0x00007e70 
+ 00018310  0x00002146 set0  0x00000025 , 0x00000000 
+ 00018311  0x00002147 bpatch  0x000000ec , 0x0000401d 
+ 00018312  0x00002148 setarg  0x00000050 
+ 00018313  0x00002149 copy  0x00000011 , 0x00000002 
+ 00018314  0x0000214a isub  0x00000002 , 0x0000003e 
+ 00018315  0x0000214b branch  0x00004795 , 0x00000005 
+ 00018316  0x0000214c setarg  0x00000052 
+ 00018317  0x0000214d copy  0x00000011 , 0x00000002 
+ 00018318  0x0000214e isub  0x00000002 , 0x0000003e 
+ 00018319  0x0000214f branch  0x0000479a , 0x00000005 
+ 00018320  0x00002150 setarg  0x00000053 
+ 00018321  0x00002151 copy  0x00000011 , 0x00000002 
+ 00018322  0x00002152 isub  0x00000002 , 0x0000003e 
+ 00018323  0x00002153 branch  0x0000479c , 0x00000005 
+ 00018324  0x00002154 branch  0x0000479e 
+ 00018325  0x00002156 setarg  0x00000000 
+ 00018326  0x00002157 store  0x00000002 , 0x0000029e 
+ 00018327  0x00002158 store  0x00000002 , 0x000042d8 
+ 00018328  0x00002159 store  0x00000001 , 0x000042e0 
+ 00018329  0x0000215a branch  0x000047a0 
+ 00018330  0x0000215c call  0x0000460b 
+ 00018331  0x0000215d branch  0x000047a0 
+ 00018332  0x0000215f call  0x00004611 
+ 00018333  0x00002165 branch  0x000047a0 
+ 00018334  0x00002167 setarg  0x00000000 
+ 00018335  0x00002168 store  0x00000002 , 0x000002a4 
+ 00018336  0x0000216a call  0x00007e75 
+ 00018337  0x0000216b setarg  0x00000007 
+ 00018338  0x0000216c istore  0x00000001 , 0x00000005 
+ 00018339  0x0000216d copy  0x00000007 , 0x0000003f 
+ 00018340  0x0000216e istore  0x00000001 , 0x00000005 
+ 00018341  0x0000216f setarg  0x00000004 
+ 00018342  0x00002170 istore  0x00000002 , 0x00000005 
+ 00018343  0x00002171 copy  0x00000011 , 0x0000003f 
+ 00018344  0x00002172 istore  0x00000002 , 0x00000005 
+ 00018345  0x00002173 copy  0x0000000b , 0x0000003f 
+ 00018346  0x00002174 istore  0x00000002 , 0x00000005 
+ 00018347  0x00002175 force  0x00000008 , 0x0000003f 
+ 00018348  0x00002176 iadd  0x00000012 , 0x00000012 
+ 00018349  0x00002177 rtn 
+ 00018350  0x0000217a ifetch  0x00000001 , 0x00000006 
+ 00018351  0x0000217b copy  0x0000003f , 0x00000007 
+ 00018352  0x0000217c ifetch  0x00000002 , 0x00000006 
+ 00018353  0x0000217d copy  0x0000003f , 0x00000011 
+ 00018354  0x0000217e ifetch  0x00000002 , 0x00000006 
+ 00018355  0x0000217f copy  0x0000003f , 0x0000000b 
+ 00018356  0x00002180 ifetch  0x00000002 , 0x00000006 
+ 00018357  0x00002181 copy  0x0000003f , 0x00000002 
+ 00018358  0x00002182 call  0x00007e70 
+ 00018359  0x00002183 set0  0x00000025 , 0x00000000 
+ 00018360  0x00002184 bpatch  0x000000ed , 0x0000401d 
+ 00018361  0x00002185 fetch  0x00000001 , 0x000042e5 
+ 00018362  0x00002186 icompare  0x000000ff , 0x00000007 
+ 00018363  0x00002187 nbranch  0x000047c6 , 0x00000001 
+ 00018364  0x00002188 setarg  0x00000050 
+ 00018365  0x00002189 isub  0x00000002 , 0x0000003e 
+ 00018366  0x0000218a branch  0x000047c3 , 0x00000005 
+ 00018367  0x0000218b setarg  0x00000051 
+ 00018368  0x0000218c isub  0x00000002 , 0x0000003e 
+ 00018369  0x0000218d branch  0x000047c6 , 0x00000005 
+ 00018370  0x0000218e branch  0x000047c6 
+ 00018371  0x00002190 jam  0x00000000 , 0x000042d8 
+ 00018372  0x00002191 jam  0x00000000 , 0x000042e0 
+ 00018373  0x00002192 branch  0x000047c6 
+ 00018374  0x00002197 call  0x00007e75 
+ 00018375  0x00002198 copy  0x00000013 , 0x0000003f 
+ 00018376  0x00002199 isub  0x00000011 , 0x00000013 
+ 00018377  0x0000219a rtn 
+ 00018378  0x0000219d setarg  0x00000001 
+ 00018379  0x0000219e istore  0x00000001 , 0x00000005 
+ 00018380  0x0000219f ifetch  0x00000001 , 0x00000006 
+ 00018381  0x000021a0 istore  0x00000001 , 0x00000005 
+ 00018382  0x000021a1 setarg  0x00000002 
+ 00018383  0x000021a2 istore  0x00000002 , 0x00000005 
+ 00018384  0x000021a3 setarg  0x00000000 
+ 00018385  0x000021a4 istore  0x00000002 , 0x00000005 
+ 00018386  0x000021a5 setarg  0x00000006 
+ 00018387  0x000021a6 iadd  0x00000012 , 0x00000012 
+ 00018388  0x000021a7 force  0x00000004 , 0x00000013 
+ 00018389  0x000021a8 rtn 
+ 00018390  0x000021ac fetch  0x00000001 , 0x000042e5 
+ 00018391  0x000021ad increase  0x00000001 , 0x0000003f 
+ 00018392  0x000021ae bne  0x00000000 , 0x000047da 
+ 00018393  0x000021af increase  0x00000001 , 0x0000003f 
+ 00018394  0x000021b1 store  0x00000001 , 0x000042e5 
+ 00018395  0x000021b2 rtn 
+ 00018396  0x000021bd set0  0x00000025 , 0x00000000 
+ 00018397  0x000021be bpatch  0x000000ee , 0x0000401d 
+ 00018398  0x000021bf arg  0x00000000 , 0x00000012 
+ 00018399  0x000021c0 call  0x0000480e 
+ 00018400  0x000021c1 nbranch  0x00003b31 , 0x00000034 
+ 00018401  0x000021c2 call  0x00004821 
+ 00018402  0x000021c3 arg  0x00001800 , 0x00000012 
+ 00018403  0x000021c4 arg  0x00000000 , 0x00000007 
+ 00018404  0x000021c6 fetcht  0x00000001 , 0x000042e6 
+ 00018405  0x000021c7 qisolate1  0x00000002 
+ 00018406  0x000021c8 branch  0x000047ec , 0x00000001 
+ 00018407  0x000021c9 call  0x00004845 
+ 00018408  0x000021ca sub  0x0000000b , 0x00000000 , 0x0000003e 
+ 00018409  0x000021cb branch  0x000047ec , 0x00000002 
+ 00018410  0x000021cc call  0x0000482c 
+ 00018411  0x000021cd branch  0x000047f2 
+ 00018412  0x000021cf increase  0x00000080 , 0x00000012 
+ 00018413  0x000021d0 increase  0x00000001 , 0x00000007 
+ 00018414  0x000021d1 setarg  0x00000008 
+ 00018415  0x000021d2 isub  0x00000007 , 0x0000003e 
+ 00018416  0x000021d3 branch  0x000047e4 , 0x00000002 
+ 00018417  0x000021d4 arg  0x00000000 , 0x00000012 
+ 00018418  0x000021d6 copy  0x00000012 , 0x0000003f 
+ 00018419  0x000021d7 branch  0x00003b31 , 0x00000034 
+ 00018420  0x000021d8 rtn 
+ 00018421  0x000021e1 set0  0x00000025 , 0x00000000 
+ 00018422  0x000021e2 bpatch  0x000000ef , 0x0000401d 
+ 00018423  0x000021e3 call  0x0000481a 
+ 00018424  0x000021e4 increase  0x00000001 , 0x00000006 
+ 00018425  0x000021e5 ifetch  0x00000002 , 0x00000006 
+ 00018426  0x000021e6 rtn 
+ 00018427  0x000021ed set0  0x00000025 , 0x00000000 
+ 00018428  0x000021ee bpatch  0x000000f0 , 0x0000401e 
+ 00018429  0x000021ef call  0x0000481a 
+ 00018430  0x000021f0 copy  0x00000006 , 0x00000005 
+ 00018431  0x000021f1 copy  0x00000006 , 0x00000002 
+ 00018432  0x000021f2 setarg  0x00000000 
+ 00018433  0x000021f3 istore  0x00000003 , 0x00000005 
+ 00018434  0x000021f4 rtn 
+ 00018435  0x000021fa set0  0x00000025 , 0x00000000 
+ 00018436  0x000021fb bpatch  0x000000f1 , 0x0000401e 
+ 00018437  0x000021fc call  0x00004816 
+ 00018438  0x000021fd branch  0x00003b31 , 0x00000034 
+ 00018439  0x000021fe fetch  0x00000003 , 0x000042ed 
+ 00018440  0x000021ff store  0x00000003 , 0x000042f0 
+ 00018441  0x00002200 fetch  0x00000003 , 0x000042ea 
+ 00018442  0x00002201 store  0x00000003 , 0x000042ed 
+ 00018443  0x00002202 fetch  0x00000003 , 0x000042e7 
+ 00018444  0x00002203 store  0x00000003 , 0x000042ea 
+ 00018445  0x00002204 rtn 
+ 00018446  0x0000220b set0  0x00000025 , 0x00000000 
+ 00018447  0x0000220c bpatch  0x000000f2 , 0x0000401e 
+ 00018448  0x0000220d fetch  0x00000003 , 0x000042e7 
+ 00018449  0x0000220e rtn 
+ 00018450  0x00002215 set0  0x00000025 , 0x00000000 
+ 00018451  0x00002216 bpatch  0x000000f3 , 0x0000401e 
+ 00018452  0x00002217 fetch  0x00000003 , 0x000042ea 
+ 00018453  0x00002218 rtn 
+ 00018454  0x0000221f set0  0x00000025 , 0x00000000 
+ 00018455  0x00002220 bpatch  0x000000f4 , 0x0000401e 
+ 00018456  0x00002221 fetch  0x00000003 , 0x000042f0 
+ 00018457  0x00002222 rtn 
+ 00018458  0x00002228 call  0x00004816 
+ 00018459  0x00002229 branch  0x00003b31 , 0x00000034 
+ 00018460  0x0000222a arg  0x000042e7 , 0x00000006 
+ 00018461  0x0000222c ifetch  0x00000003 , 0x00000006 
+ 00018462  0x0000222d branch  0x0000481d , 0x00000034 
+ 00018463  0x0000222e increase  0xfffffffd , 0x00000006 
+ 00018464  0x0000222f rtn 
+ 00018465  0x00002237 set0  0x00000025 , 0x00000000 
+ 00018466  0x00002238 bpatch  0x000000f5 , 0x0000401e 
+ 00018467  0x00002239 arg  0x00000004 , 0x00000039 
+ 00018468  0x0000223a arg  0x000042e7 , 0x00000006 
+ 00018469  0x0000223b arg  0x00000000 , 0x00000002 
+ 00018470  0x0000223d ifetch  0x00000003 , 0x00000006 
+ 00018471  0x0000223e and  0x0000003f , 0x000000ff , 0x0000003f 
+ 00018472  0x0000223f ior  0x00000002 , 0x00000002 
+ 00018473  0x00002240 loop  0x00004826 
+ 00018474  0x00002241 storet  0x00000001 , 0x000042e6 
+ 00018475  0x00002242 rtn 
+ 00018476  0x0000224b set0  0x00000025 , 0x00000000 
+ 00018477  0x0000224c bpatch  0x000000f6 , 0x0000401e 
+ 00018478  0x0000224d call  0x0000480e 
+ 00018479  0x0000224e nbranch  0x00003b31 , 0x00000034 
+ 00018480  0x0000224f call  0x00004816 
+ 00018481  0x00002250 branch  0x0000483a , 0x00000034 
+ 00018482  0x00002251 fetch  0x00000003 , 0x000042ea 
+ 00018483  0x00002252 store  0x00000003 , 0x000042e7 
+ 00018484  0x00002253 ifetch  0x00000003 , 0x00000006 
+ 00018485  0x00002254 istore  0x00000003 , 0x00000005 
+ 00018486  0x00002255 ifetch  0x00000003 , 0x00000006 
+ 00018487  0x00002256 istore  0x00000003 , 0x00000005 
+ 00018488  0x00002257 setarg  0x00000000 
+ 00018489  0x00002258 istore  0x00000003 , 0x00000005 
+ 00018490  0x0000225a arg  0x00000000 , 0x00000002 
+ 00018491  0x0000225b copy  0x0000000b , 0x0000003f 
+ 00018492  0x0000225c iadd  0x00000007 , 0x0000003f 
+ 00018493  0x0000225e qset1  0x00000002 
+ 00018494  0x0000225f increase  0x00000001 , 0x00000007 
+ 00018495  0x00002260 isub  0x00000007 , 0x0000003e 
+ 00018496  0x00002261 nbranch  0x0000483d , 0x00000005 
+ 00018497  0x00002263 lshift8  0x00000012 , 0x0000003f 
+ 00018498  0x00002264 ior  0x00000002 , 0x0000003f 
+ 00018499  0x00002265 store  0x00000003 , 0x000042f0 
+ 00018500  0x00002266 rtn 
+ 00018501  0x00002271 set0  0x00000025 , 0x00000000 
+ 00018502  0x00002272 bpatch  0x000000f7 , 0x0000401e 
+ 00018503  0x00002273 call  0x00004821 
+ 00018504  0x00002274 copy  0x00000007 , 0x00000013 
+ 00018505  0x00002275 arg  0x00000000 , 0x00000002 
+ 00018506  0x00002276 arg  0x00000000 , 0x0000000b 
+ 00018507  0x00002279 copy  0x00000007 , 0x0000003f 
+ 00018508  0x0000227a beq  0x00000008 , 0x00004856 
+ 00018509  0x0000227b fetch  0x00000001 , 0x000042e6 
+ 00018510  0x0000227c qisolate1  0x0000003f 
+ 00018511  0x0000227d branch  0x00004856 , 0x00000001 
+ 00018512  0x0000227e increase  0x00000080 , 0x00000002 
+ 00018513  0x0000227f increase  0x00000001 , 0x00000007 
+ 00018514  0x00002280 copy  0x00000011 , 0x0000003f 
+ 00018515  0x00002281 isub  0x00000002 , 0x0000003e 
+ 00018516  0x00002282 branch  0x00004856 , 0x00000005 
+ 00018517  0x00002283 branch  0x0000484b , 0x00000002 
+ 00018518  0x00002285 copy  0x00000002 , 0x0000003f 
+ 00018519  0x00002286 isub  0x00000011 , 0x0000003e 
+ 00018520  0x00002287 nbranch  0x0000485c , 0x00000002 
+ 00018521  0x00002288 copy  0x00000007 , 0x0000003f 
+ 00018522  0x00002289 copy  0x00000013 , 0x00000002 
+ 00018523  0x0000228a isub  0x00000002 , 0x0000000b 
+ 00018524  0x0000228c copy  0x00000013 , 0x00000007 
+ 00018525  0x0000228d rtn 
+ 00018526  0x00002291 set0  0x00000025 , 0x00000000 
+ 00018527  0x00002292 bpatch  0x000000f8 , 0x0000401f 
+ 00018528  0x00002293 arg  0x0000007f , 0x00000011 
+ 00018529  0x00002294 call  0x000047dc 
+ 00018530  0x00002295 store  0x00000002 , 0x00000294 
+ 00018531  0x00002296 increase  0x00000004 , 0x0000003f 
+ 00018532  0x00002297 store  0x00000002 , 0x00000296 
+ 00018533  0x00002298 setarg  0x00000000 
+ 00018534  0x00002299 store  0x00000002 , 0x00000298 
+ 00018535  0x0000229a rtn 
+ 00018536  0x0000229d fetch  0x00000002 , 0x00000294 
+ 00018537  0x0000229e branch  0x0000488b 
+ 00018538  0x000022a1 fetch  0x00000002 , 0x00000296 
+ 00018539  0x000022a2 branch  0x0000488b 
+ 00018540  0x000022a6 set0  0x00000025 , 0x00000000 
+ 00018541  0x000022a7 bpatch  0x000000f9 , 0x0000401f 
+ 00018542  0x000022a8 arg  0x000002ff , 0x00000011 
+ 00018543  0x000022a9 call  0x000047dc 
+ 00018544  0x000022aa store  0x00000002 , 0x0000029a 
+ 00018545  0x000022ab increase  0x00000004 , 0x0000003f 
+ 00018546  0x000022ac store  0x00000002 , 0x0000029c 
+ 00018547  0x000022ad setarg  0x00000000 
+ 00018548  0x000022ae store  0x00000002 , 0x0000029e 
+ 00018549  0x000022af rtn 
+ 00018550  0x000022b2 fetch  0x00000002 , 0x0000029a 
+ 00018551  0x000022b3 branch  0x0000488b 
+ 00018552  0x000022b6 fetch  0x00000002 , 0x0000029c 
+ 00018553  0x000022b7 branch  0x0000488b 
+ 00018554  0x000022bb set0  0x00000025 , 0x00000000 
+ 00018555  0x000022bc bpatch  0x000000fa , 0x0000401f 
+ 00018556  0x000022bd call  0x00007e48 
+ 00018557  0x000022be jam  0x00000001 , 0x000002ad 
+ 00018558  0x000022bf call  0x0000480e 
+ 00018559  0x000022c0 nrtn  0x00000034 
+ 00018560  0x000022c1 arg  0x0000007f , 0x00000011 
+ 00018561  0x000022c2 call  0x000047dc 
+ 00018562  0x000022c3 store  0x00000002 , 0x000002a0 
+ 00018563  0x000022c4 increase  0x00000004 , 0x0000003f 
+ 00018564  0x000022c5 store  0x00000002 , 0x000002a2 
+ 00018565  0x000022c6 setarg  0x00000000 
+ 00018566  0x000022c7 store  0x00000002 , 0x000002a4 
+ 00018567  0x000022c8 jam  0x00000000 , 0x000002ad 
+ 00018568  0x000022c9 branch  0x00007e56 
+ 00018569  0x000022cc fetch  0x00000002 , 0x000002a0 
+ 00018570  0x000022cd branch  0x0000488b 
+ 00018571  0x000022d0 branch  0x00003b31 , 0x00000034 
+ 00018572  0x000022d1 copy  0x0000003f , 0x00000005 
+ 00018573  0x000022d2 rtn 
+ 00018574  0x000022d6 set0  0x00000025 , 0x00000000 
+ 00018575  0x000022d7 bpatch  0x000000fb , 0x0000401f 
+ 00018576  0x000022d8 arg  0x00000000 , 0x00000012 
+ 00018577  0x000022d9 arg  0x000042e7 , 0x00000011 
+ 00018578  0x000022da increase  0xfffffffe , 0x00000011 
+ 00018579  0x000022dc increase  0x00000002 , 0x00000011 
+ 00018580  0x000022dd setarg  0x000042f3 
+ 00018581  0x000022de isub  0x00000011 , 0x0000003e 
+ 00018582  0x000022df branch  0x0000489f , 0x00000005 
+ 00018583  0x000022e0 ifetch  0x00000001 , 0x00000011 
+ 00018584  0x000022e1 increase  0x00000001 , 0x00000011 
+ 00018585  0x000022e2 branch  0x00004893 , 0x00000034 
+ 00018586  0x000022e3 ifetcht  0x00000002 , 0x00000011 
+ 00018587  0x000022e4 ifetch  0x00000002 , 0x00000002 
+ 00018588  0x000022e5 iadd  0x00000012 , 0x00000012 
+ 00018589  0x000022e6 increase  0x00000004 , 0x00000012 
+ 00018590  0x000022e7 branch  0x00004893 
+ 00018591  0x000022e9 copy  0x00000012 , 0x0000003f 
+ 00018592  0x000022ea rtn 
+ 00018593  0x000022ee arg  0x0000000c , 0x00000007 
+ 00018594  0x000022ef branch  0x00003d06 
+ 00018595  0x000022f2 arg  0x0000000c , 0x00000007 
+ 00018596  0x000022f3 branch  0x00003d0a 
+ 00018597  0x000022f6 set0  0x00000025 , 0x00000000 
+ 00018598  0x000022f7 bpatch  0x000000fc , 0x0000401f 
+ 00018599  0x000022f8 call  0x00004821 
+ 00018600  0x000022f9 fetch  0x00000001 , 0x000042e6 
+ 00018601  0x000022fa rtn  0x00000034 
+ 00018602  0x000022fb call  0x0000488e 
+ 00018603  0x000022fc arg  0x00000100 , 0x00000002 
+ 00018604  0x000022fd isub  0x00000002 , 0x0000003e 
+ 00018605  0x000022fe branch  0x000048a1 , 0x00000002 
+ 00018606  0x000022ff call  0x000048a3 
+ 00018607  0x00002300 arg  0x000042f3 , 0x00000005 
+ 00018608  0x00002301 arg  0x000042e7 , 0x00000011 
+ 00018609  0x00002303 setarg  0x000042f3 
+ 00018610  0x00002304 isub  0x00000011 , 0x0000003e 
+ 00018611  0x00002305 rtn  0x00000005 
+ 00018612  0x00002306 ifetch  0x00000001 , 0x00000011 
+ 00018613  0x00002307 increase  0x00000001 , 0x00000011 
+ 00018614  0x00002308 nbranch  0x000048ba , 0x00000034 
+ 00018615  0x00002309 istore  0x00000002 , 0x00000005 
+ 00018616  0x0000230a increase  0x00000002 , 0x00000011 
+ 00018617  0x0000230b branch  0x000048b1 
+ 00018618  0x0000230d ifetch  0x00000002 , 0x00000011 
+ 00018619  0x0000230e increase  0x00000002 , 0x00000011 
+ 00018620  0x0000230f copy  0x0000003f , 0x00000006 
+ 00018621  0x00002310 ifetch  0x00000002 , 0x00000006 
+ 00018622  0x00002311 istore  0x00000002 , 0x00000005 
+ 00018623  0x00002312 copy  0x0000003f , 0x00000039 
+ 00018624  0x00002313 increase  0x00000002 , 0x00000039 
+ 00018625  0x00002314 call  0x00007ecd 
+ 00018626  0x00002315 branch  0x000048b1 
+ 00018627  0x00002318 set0  0x00000025 , 0x00000000 
+ 00018628  0x00002319 bpatch  0x000000fd , 0x0000401f 
+ 00018629  0x0000231a call  0x00004821 
+ 00018630  0x0000231b fetch  0x00000001 , 0x000042e6 
+ 00018631  0x0000231c rtn  0x00000034 
+ 00018632  0x0000231d arg  0x000042e8 , 0x00000011 
+ 00018633  0x0000231e increase  0xfffffffd , 0x00000011 
+ 00018634  0x0000231f arg  0x000042f3 , 0x00000006 
+ 00018635  0x00002321 increase  0x00000003 , 0x00000011 
+ 00018636  0x00002322 setarg  0x000042f4 
+ 00018637  0x00002323 isub  0x00000011 , 0x0000003e 
+ 00018638  0x00002324 rtn  0x00000005 
+ 00018639  0x00002325 ifetch  0x00000002 , 0x00000006 
+ 00018640  0x00002326 branch  0x000048cb , 0x00000034 
+ 00018641  0x00002327 increase  0x00000004 , 0x0000003f 
+ 00018642  0x00002328 copy  0x0000003f , 0x00000039 
+ 00018643  0x00002329 copy  0x00000006 , 0x00000012 
+ 00018644  0x0000232a ifetch  0x00000002 , 0x00000011 
+ 00018645  0x0000232b copy  0x0000003f , 0x00000005 
+ 00018646  0x0000232c copy  0x00000012 , 0x00000006 
+ 00018647  0x0000232d increase  0xfffffffe , 0x00000006 
+ 00018648  0x0000232e call  0x00007ecd 
+ 00018649  0x0000232f branch  0x000048cb 
+ 00018650  0x0000233a fetch  0x00000001 , 0x000044df 
+ 00018651  0x0000233b set1  0x00000003 , 0x0000003f 
+ 00018652  0x0000233c store  0x00000001 , 0x000044df 
+ 00018653  0x0000233d rtn 
+ 00018654  0x0000233f fetch  0x00000001 , 0x000044df 
+ 00018655  0x00002340 set0  0x00000003 , 0x0000003f 
+ 00018656  0x00002341 store  0x00000001 , 0x000044df 
+ 00018657  0x00002342 rtn 
+ 00018658  0x00002346 set0  0x00000025 , 0x00000000 
+ 00018659  0x00002347 bpatch  0x000000fe , 0x0000401f 
+ 00018660  0x00002348 disable  0x0000002b 
+ 00018661  0x00002349 jam  0x00000001 , 0x00000378 
+ 00018662  0x0000234a jam  0x00000003 , 0x00000362 
+ 00018663  0x0000234b jam  0x00000001 , 0x00000379 
+ 00018664  0x0000234c setarg  0xffffffff 
+ 00018665  0x0000234d store  0x00000002 , 0x0000037c 
+ 00018666  0x0000234e force  0x00000000 , 0x0000003f 
+ 00018667  0x0000234f store  0x00000001 , 0x0000037a 
+ 00018668  0x00002350 store  0x00000001 , 0x00000385 
+ 00018669  0x00002351 store  0x00000003 , 0x00004209 
+ 00018670  0x00002352 store  0x00000003 , 0x0000420c 
+ 00018671  0x00002353 store  0x00000005 , 0x0000448c 
+ 00018672  0x00002354 set1  0x00000027 , 0x0000003f 
+ 00018673  0x00002355 store  0x00000005 , 0x00004491 
+ 00018674  0x00002356 jam  0x00000001 , 0x00004465 
+ 00018675  0x00002357 jam  0x00000000 , 0x00004466 
+ 00018676  0x00002358 branch  0x00005179 
+ 00018677  0x0000235b set0  0x00000025 , 0x00000000 
+ 00018678  0x0000235c bpatch  0x000000ff , 0x0000401f 
+ 00018679  0x0000235d enable  0x00000029 
+ 00018680  0x0000235e jam  0x00000003 , 0x00000363 
+ 00018681  0x0000235f jam  0x00000001 , 0x0000039b 
+ 00018682  0x00002360 jam  0x00000001 , 0x000044e3 
+ 00018683  0x00002361 setarg  0x0000ffff 
+ 00018684  0x00002362 store  0x00000002 , 0x000044e5 
+ 00018685  0x00002363 force  0x00000000 , 0x0000003f 
+ 00018686  0x00002364 store  0x00000005 , 0x00004491 
+ 00018687  0x00002365 set1  0x00000027 , 0x0000003f 
+ 00018688  0x00002366 store  0x00000005 , 0x0000448c 
+ 00018689  0x00002367 branch  0x000048e2 
+ 00018690  0x0000236b set1  0x00000025 , 0x00000000 
+ 00018691  0x0000236c bpatch  0x00000000 , 0x00004020 
+ 00018692  0x0000236d disable  0x00000029 
+ 00018693  0x0000236e jam  0x00000001 , 0x00000363 
+ 00018694  0x0000236f jam  0x00000000 , 0x000043ff 
+ 00018695  0x00002370 jam  0x00000000 , 0x0000009f 
+ 00018696  0x00002371 jam  0x00000000 , 0x0000456a 
+ 00018697  0x00002372 jam  0x00000000 , 0x0000456b 
+ 00018698  0x00002373 fetch  0x00000002 , 0x00000390 
+ 00018699  0x00002374 store  0x00000002 , 0x00004561 
+ 00018700  0x00002375 fetch  0x00000002 , 0x00000364 
+ 00018701  0x00002376 mul32  0x0000003f , 0x00000005 , 0x0000003f 
+ 00018702  0x00002377 rshift4  0x0000003f , 0x0000003f 
+ 00018703  0x00002378 store  0x00000002 , 0x00000390 
+ 00018704  0x00002379 branch  0x000048e2 
+ 00018705  0x00002380 call  0x00004976 
+ 00018706  0x00002381 call  0x00004b91 
+ 00018707  0x00002382 call  0x0000517c 
+ 00018708  0x00002383 branch  0x0000497d 
+ 00018709  0x00002386 set1  0x00000025 , 0x00000000 
+ 00018710  0x00002387 bpatch  0x00000001 , 0x00004020 
+ 00018711  0x00002388 call  0x00004976 
+ 00018712  0x00002389 call  0x00003d67 
+ 00018713  0x0000238a fetch  0x00000001 , 0x00000363 
+ 00018714  0x0000238b beq  0x00000003 , 0x0000491c 
+ 00018715  0x0000238c branch  0x00004932 
+ 00018716  0x00002393 set1  0x00000025 , 0x00000000 
+ 00018717  0x00002394 bpatch  0x00000002 , 0x00004020 
+ 00018718  0x00002395 enable  0x00000029 
+ 00018719  0x00002396 call  0x00005170 
+ 00018720  0x00002397 branch  0x0000492f , 0x00000002 
+ 00018721  0x00002398 call  0x00003d45 
+ 00018722  0x00002399 call  0x000049c4 
+ 00018723  0x0000239a call  0x00004bd8 
+ 00018724  0x0000239b disable  0x0000002d 
+ 00018725  0x0000239c call  0x00004a5a 
+ 00018726  0x0000239d nrtn  0x0000002d 
+ 00018727  0x0000239e set1  0x00000025 , 0x00000000 
+ 00018728  0x0000239f bpatch  0x00000003 , 0x00004020 
+ 00018729  0x000023a0 fetch  0x00000001 , 0x00000005 
+ 00018730  0x000023a1 increase  0x00000001 , 0x0000003f 
+ 00018731  0x000023a2 store  0x00000001 , 0x00000005 
+ 00018732  0x000023a3 call  0x00004b51 
+ 00018733  0x000023a4 disable  0x00000029 
+ 00018734  0x000023a5 rtn 
+ 00018735  0x000023a8 call  0x0000495b 
+ 00018736  0x000023a9 disable  0x00000029 
+ 00018737  0x000023aa rtn 
+ 00018738  0x000023b0 set1  0x00000025 , 0x00000000 
+ 00018739  0x000023b1 bpatch  0x00000004 , 0x00004020 
+ 00018740  0x000023b2 call  0x00007acf 
+ 00018741  0x000023b3 call  0x000052a9 
+ 00018742  0x000023b4 disable  0x0000002e 
+ 00018743  0x000023b5 call  0x00005170 
+ 00018744  0x000023b6 branch  0x0000495b , 0x00000002 
+ 00018745  0x000023b7 call  0x00003d45 
+ 00018746  0x000023b8 call  0x000049c4 
+ 00018747  0x000023b9 call  0x00004a20 
+ 00018748  0x000023ba nbranch  0x0000494f , 0x00000018 
+ 00018749  0x000023bb call  0x00004968 
+ 00018750  0x000023bc branch  0x00004940 , 0x0000002d 
+ 00018751  0x000023bd branch  0x00004949 
+ 00018752  0x000023c1 set1  0x00000025 , 0x00000000 
+ 00018753  0x000023c2 bpatch  0x00000005 , 0x00004020 
+ 00018754  0x000023c3 call  0x00004968 
+ 00018755  0x000023c4 call  0x00004b51 
+ 00018756  0x000023c5 call  0x00004bd8 
+ 00018757  0x000023c6 fetch  0x00000001 , 0x00000302 
+ 00018758  0x000023c7 bbit1  0x00000004 , 0x00004955 
+ 00018759  0x000023c8 call  0x00004bd0 
+ 00018760  0x000023c9 nbranch  0x00004955 , 0x00000034 
+ 00018761  0x000023cb set1  0x00000025 , 0x00000000 
+ 00018762  0x000023cc bpatch  0x00000006 , 0x00004020 
+ 00018763  0x000023cd call  0x00004a63 
+ 00018764  0x000023cf call  0x00007d9e 
+ 00018765  0x000023d0 fetch  0x00000001 , 0x00000385 
+ 00018766  0x000023d1 bbit1  0x00000003 , 0x0000495b 
+ 00018767  0x000023d3 set1  0x00000025 , 0x00000000 
+ 00018768  0x000023d4 bpatch  0x00000007 , 0x00004020 
+ 00018769  0x000023d5 call  0x00005287 
+ 00018770  0x000023d6 call  0x00004b43 
+ 00018771  0x000023d7 call  0x00004b22 
+ 00018772  0x000023d8 branch  0x000038d1 
+ 00018773  0x000023db set1  0x00000025 , 0x00000000 
+ 00018774  0x000023dc bpatch  0x00000008 , 0x00004021 
+ 00018775  0x000023dd enable  0x0000002e 
+ 00018776  0x000023de call  0x00004a5a 
+ 00018777  0x000023df branch  0x00004940 , 0x0000002d 
+ 00018778  0x000023e0 branch  0x0000494c 
+ 00018779  0x000023e6 set1  0x00000025 , 0x00000000 
+ 00018780  0x000023e7 bpatch  0x00000009 , 0x00004021 
+ 00018781  0x000023e9 call  0x00004962 
+ 00018782  0x000023ea call  0x00003e17 
+ 00018783  0x000023eb call  0x00007a96 
+ 00018784  0x000023ec jam  0x00000015 , 0x000009bd 
+ 00018785  0x000023ed branch  0x00007d86 
+ 00018786  0x000023f0 jam  0x00000000 , 0x00000378 
+ 00018787  0x000023f1 jam  0x00000000 , 0x00000363 
+ 00018788  0x000023f2 jam  0x00000000 , 0x00000362 
+ 00018789  0x000023f3 jam  0x00000000 , 0x0000456b 
+ 00018790  0x000023f4 jam  0x00000000 , 0x0000456a 
+ 00018791  0x000023f5 rtn 
+ 00018792  0x000023f8 set1  0x00000025 , 0x00000000 
+ 00018793  0x000023f9 bpatch  0x0000000a , 0x00004021 
+ 00018794  0x000023fa fetch  0x00000001 , 0x00000005 
+ 00018795  0x000023fb increase  0x00000001 , 0x0000003f 
+ 00018796  0x000023fc store  0x00000001 , 0x00000005 
+ 00018797  0x000023fd fetch  0x00000001 , 0x00000362 
+ 00018798  0x000023fe rtnbit1  0x00000003 
+ 00018799  0x000023ff set1  0x00000003 
+ 00018800  0x00002400 store  0x00000001 , 0x00000362 
+ 00018801  0x00002401 fetch  0x00000002 , 0x00004561 
+ 00018802  0x00002402 store  0x00000002 , 0x00000390 
+ 00018803  0x00002403 setarg  0x00000000 
+ 00018804  0x00002404 store  0x00000004 , 0x00004596 
+ 00018805  0x00002405 rtn 
+ 00018806  0x0000240b set1  0x00000025 , 0x00000000 
+ 00018807  0x0000240c bpatch  0x0000000b , 0x00004021 
+ 00018808  0x0000240d hjam  0x00000036 , 0x0000090f 
+ 00018809  0x0000240e hjam  0x0000005f , 0x0000090b 
+ 00018810  0x0000240f enable  0x00000036 
+ 00018811  0x00002410 hjam  0x00000007 , 0x00008914 
+ 00018812  0x00002411 branch  0x00003d45 
+ 00018813  0x00002414 set1  0x00000025 , 0x00000000 
+ 00018814  0x00002415 bpatch  0x0000000c , 0x00004021 
+ 00018815  0x00002416 hjam  0x0000002e , 0x0000090f 
+ 00018816  0x00002417 hjam  0x000000ff , 0x0000090b 
+ 00018817  0x00002418 disable  0x00000036 
+ 00018818  0x00002419 hjam  0x00000003 , 0x00008914 
+ 00018819  0x0000241a arg  0x00000000 , 0x0000001b 
+ 00018820  0x0000241b rtn 
+ 00018821  0x0000241e disable  0x00000009 
+ 00018822  0x0000241f disable  0x00000007 
+ 00018823  0x00002420 fetch  0x00000003 , 0x0000038a 
+ 00018824  0x00002421 iforce  0x0000000f 
+ 00018825  0x00002422 fetch  0x00000001 , 0x00000016 
+ 00018826  0x00002423 reverse  0x0000003f , 0x00000002 
+ 00018827  0x00002424 set1  0x00000001 , 0x00000002 
+ 00018828  0x00002425 rshift  0x00000002 , 0x0000000e 
+ 00018829  0x00002426 rtn 
+ 00018830  0x0000242a call  0x00004996 
+ 00018831  0x0000242b call  0x000039b9 
+ 00018832  0x0000242c setarg  0x00000500 
+ 00018833  0x0000242d call  0x00003b35 
+ 00018834  0x0000242e branch  0x000039bf 
+ 00018835  0x00002431 branch  0x000039d0 , 0x0000002d 
+ 00018836  0x00002433 call  0x00004996 
+ 00018837  0x00002434 branch  0x000039c9 
+ 00018838  0x00002436 set1  0x00000025 , 0x00000000 
+ 00018839  0x00002437 bpatch  0x0000000d , 0x00004021 
+ 00018840  0x00002438 call  0x000039b1 
+ 00018841  0x00002439 fetch  0x00000001 , 0x000003b0 
+ 00018842  0x0000243a nbranch  0x000049aa , 0x00000034 
+ 00018843  0x0000243b fetch  0x00000001 , 0x00000016 
+ 00018844  0x0000243c sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018845  0x0000243d branch  0x000049a4 , 0x00000002 
+ 00018846  0x0000243e force  0x00000000 , 0x00000002 
+ 00018847  0x0000243f rtneq  0x00000025 
+ 00018848  0x00002440 force  0x00000018 , 0x00000002 
+ 00018849  0x00002441 rtneq  0x00000026 
+ 00018850  0x00002442 force  0x0000004e , 0x00000002 
+ 00018851  0x00002443 rtn 
+ 00018852  0x00002446 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00018853  0x00002447 branch  0x000049a7 , 0x00000002 
+ 00018854  0x00002448 increase  0x00000001 , 0x0000003f 
+ 00018855  0x0000244b lshift  0x0000003f , 0x0000003f 
+ 00018856  0x0000244c add  0x0000003f , 0x00000002 , 0x00000002 
+ 00018857  0x0000244d rtn 
+ 00018858  0x00002450 fetch  0x00000001 , 0x00000016 
+ 00018859  0x00002451 lshift  0x0000003f , 0x00000002 
+ 00018860  0x00002452 rtn 
+ 00018861  0x00002455 arg  0x000001f4 , 0x00000002 
+ 00018862  0x00002456 rtn  0x00000034 
+ 00018863  0x00002457 arg  0x000000fa , 0x00000002 
+ 00018864  0x00002458 rtneq  0x00000001 
+ 00018865  0x00002459 arg  0x00000096 , 0x00000002 
+ 00018866  0x0000245a rtneq  0x00000002 
+ 00018867  0x0000245b arg  0x00000064 , 0x00000002 
+ 00018868  0x0000245c rtneq  0x00000003 
+ 00018869  0x0000245d arg  0x0000004b , 0x00000002 
+ 00018870  0x0000245e rtneq  0x00000004 
+ 00018871  0x0000245f arg  0x00000032 , 0x00000002 
+ 00018872  0x00002460 rtneq  0x00000005 
+ 00018873  0x00002461 arg  0x00000028 , 0x00000002 
+ 00018874  0x00002462 rtneq  0x00000006 
+ 00018875  0x00002463 arg  0x00000014 , 0x00000002 
+ 00018876  0x00002464 rtn 
+ 00018877  0x00002469 setarg  0x008e89be 
+ 00018878  0x0000246a lshift8  0x0000003f , 0x0000003f 
+ 00018879  0x0000246b or_into  0x000000d6 , 0x0000003f 
+ 00018880  0x0000246c iforce  0x00000009 
+ 00018881  0x0000246d setarg  0x00555555 
+ 00018882  0x0000246e store  0x00000003 , 0x0000038a 
+ 00018883  0x0000246f rtn 
+ 00018884  0x00002472 set1  0x00000025 , 0x00000000 
+ 00018885  0x00002473 bpatch  0x0000000e , 0x00004021 
+ 00018886  0x00002474 enable  0x00000010 
+ 00018887  0x00002475 fetch  0x00000004 , 0x00000386 
+ 00018888  0x00002476 iforce  0x00000009 
+ 00018889  0x00002477 call  0x000049fb 
+ 00018890  0x00002478 setarg  0x00000200 
+ 00018891  0x00002479 branch  0x000049ce , 0x00000029 
+ 00018892  0x0000247a fetch  0x00000002 , 0x00000370 
+ 00018893  0x0000247b rshift  0x0000003f , 0x0000003f 
+ 00018894  0x0000247d arg  0x00000500 , 0x00000002 
+ 00018895  0x0000247e iadd  0x00000002 , 0x0000003f 
+ 00018896  0x0000247f call  0x00003abd 
+ 00018897  0x00002480 deposit  0x0000001a 
+ 00018898  0x00002481 store  0x00000006 , 0x000003b5 
+ 00018899  0x00002482 rtn 
+ 00018900  0x00002485 set1  0x00000025 , 0x00000000 
+ 00018901  0x00002486 bpatch  0x0000000f , 0x00004021 
+ 00018902  0x00002487 fetch  0x00000001 , 0x00000016 
+ 00018903  0x00002488 increase  0x00000001 , 0x0000003f 
+ 00018904  0x00002489 store  0x00000001 , 0x00000016 
+ 00018905  0x0000248a rtnne  0x00000028 
+ 00018906  0x0000248b jam  0x00000025 , 0x00000016 
+ 00018907  0x0000248c rtn 
+ 00018908  0x0000248f set1  0x00000025 , 0x00000000 
+ 00018909  0x00002490 bpatch  0x00000010 , 0x00004022 
+ 00018910  0x00002491 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00018911  0x00002492 ifetch  0x00000001 , 0x00000006 
+ 00018912  0x00002493 rtnbit0  0x00000000 
+ 00018913  0x00002494 add  0x00000011 , 0x0000001a , 0x00000005 
+ 00018914  0x00002495 ifetch  0x00000002 , 0x00000005 
+ 00018915  0x00002496 increase  0x00000001 , 0x0000003f 
+ 00018916  0x00002497 istore  0x00000002 , 0x00000005 
+ 00018917  0x00002498 add  0x00000011 , 0x00000019 , 0x00000006 
+ 00018918  0x00002499 ifetch  0x00000001 , 0x00000006 
+ 00018919  0x0000249a add  0x00000011 , 0x00000018 , 0x00000005 
+ 00018920  0x0000249b ifetcht  0x00000001 , 0x00000005 
+ 00018921  0x0000249c iadd  0x00000002 , 0x0000003f 
+ 00018922  0x0000249d sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018923  0x0000249e branch  0x000049ed , 0x00000002 
+ 00018924  0x0000249f increase  0xffffffdb , 0x0000003f 
+ 00018925  0x000024a1 istore  0x00000001 , 0x00000005 
+ 00018926  0x000024a2 rtn 
+ 00018927  0x000024a6 set1  0x00000025 , 0x00000000 
+ 00018928  0x000024a7 bpatch  0x00000011 , 0x00004022 
+ 00018929  0x000024a8 fetch  0x00000005 , 0x00000392 
+ 00018930  0x000024a9 force  0x00000000 , 0x00000002 
+ 00018931  0x000024aa force  0x00000025 , 0x00000039 
+ 00018932  0x000024ac bbit0  0x00000000 , 0x000049f6 
+ 00018933  0x000024ad increase  0x00000001 , 0x00000002 
+ 00018934  0x000024af rshift  0x0000003f , 0x0000003f 
+ 00018935  0x000024b0 loop  0x000049f4 
+ 00018936  0x000024b1 add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00018937  0x000024b2 store  0x00000001 , 0x00000384 
+ 00018938  0x000024b3 rtn 
+ 00018939  0x000024b6 set1  0x00000025 , 0x00000000 
+ 00018940  0x000024b7 bpatch  0x00000012 , 0x00004022 
+ 00018941  0x000024b8 fetch  0x00000001 , 0x0000037a 
+ 00018942  0x000024b9 iforce  0x00000007 
+ 00018943  0x000024ba fetcht  0x00000005 , 0x00000392 
+ 00018944  0x000024bb qisolate1  0x00000002 
+ 00018945  0x000024bc branch  0x00004a13 , 0x00000001 
+ 00018946  0x000024be set1  0x00000025 , 0x00000000 
+ 00018947  0x000024bf bpatch  0x00000013 , 0x00004022 
+ 00018948  0x000024c0 fetch  0x00000001 , 0x00000384 
+ 00018949  0x000024c1 isub  0x00000007 , 0x0000003f 
+ 00018950  0x000024c2 branch  0x00004a09 , 0x00000002 
+ 00018951  0x000024c3 sub  0x0000003f , 0xffffffff , 0x00000007 
+ 00018952  0x000024c4 branch  0x00004a02 
+ 00018953  0x000024c6 copy  0x00000007 , 0x00000039 
+ 00018954  0x000024c7 force  0x00000000 , 0x00000007 
+ 00018955  0x000024c9 qisolate1  0x00000002 
+ 00018956  0x000024ca branch  0x00004a0e , 0x00000001 
+ 00018957  0x000024cb increase  0x00000001 , 0x00000039 
+ 00018958  0x000024cd deposit  0x00000039 
+ 00018959  0x000024ce branch  0x00004a13 , 0x00000034 
+ 00018960  0x000024cf increase  0x00000001 , 0x00000007 
+ 00018961  0x000024d0 increase  0xffffffff , 0x00000039 
+ 00018962  0x000024d1 branch  0x00004a0b 
+ 00018963  0x000024d3 deposit  0x00000007 
+ 00018964  0x000024d4 store  0x00000001 , 0x00000016 
+ 00018965  0x000024d5 rtn 
+ 00018966  0x000024d9 branch  0x00004a19 , 0x00000029 
+ 00018967  0x000024da until  0x0000003e , 0x00000003 
+ 00018968  0x000024db rtn 
+ 00018969  0x000024de arg  0x00000ea0 , 0x0000000b 
+ 00018970  0x000024df until  0x00000023 , 0x00000026 
+ 00018971  0x000024e0 rtn 
+ 00018972  0x000024e3 disable  0x00000010 
+ 00018973  0x000024e4 fetch  0x00000002 , 0x000043fc 
+ 00018974  0x000024e5 copy  0x0000003f , 0x0000000b 
+ 00018975  0x000024e6 branch  0x00004a26 
+ 00018976  0x000024ea set1  0x00000025 , 0x00000000 
+ 00018977  0x000024eb bpatch  0x00000014 , 0x00004022 
+ 00018978  0x000024ec enable  0x00000010 
+ 00018979  0x000024ed fetch  0x00000002 , 0x00000370 
+ 00018980  0x000024ee fetcht  0x00000004 , 0x00004596 
+ 00018981  0x000024ef iadd  0x00000002 , 0x0000000b 
+ 00018982  0x000024f1 call  0x0000498e 
+ 00018983  0x000024f3 set1  0x00000025 , 0x00000000 
+ 00018984  0x000024f4 bpatch  0x00000015 , 0x00004022 
+ 00018985  0x000024f5 call  0x00004985 
+ 00018986  0x000024f6 disable  0x0000002d 
+ 00018987  0x000024f7 enable  0x0000000d 
+ 00018988  0x000024f8 enable  0x00000021 
+ 00018989  0x000024f9 disable  0x00000020 
+ 00018990  0x000024fa copy  0x0000000b , 0x0000001b 
+ 00018991  0x000024fb correlate  0x0000003e , 0x00000003 
+ 00018992  0x000024fc branch  0x00004a33 , 0x0000002e 
+ 00018993  0x000024fd copy  0x0000001a , 0x00000002 
+ 00018994  0x000024fe storet  0x00000006 , 0x00000099 
+ 00018995  0x00002500 nbranch  0x000036c6 , 0x00000018 
+ 00018996  0x00002501 branch  0x00004a3a , 0x0000002e 
+ 00018997  0x00002502 arg  0x000001e0 , 0x00000029 
+ 00018998  0x00002503 copy  0x00000021 , 0x00000028 
+ 00018999  0x00002504 fetch  0x00000001 , 0x00000362 
+ 00019000  0x00002505 bbit0  0x00000003 , 0x00004a3a 
+ 00019001  0x00002506 call  0x00003bed , 0x0000002b 
+ 00019002  0x00002508 set1  0x00000025 , 0x00000000 
+ 00019003  0x00002509 bpatch  0x00000016 , 0x00004022 
+ 00019004  0x0000250a call  0x00003a50 
+ 00019005  0x0000250b enable  0x00000007 
+ 00019006  0x0000250c enable  0x00000009 
+ 00019007  0x0000250d parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019008  0x0000250e rshift3  0x0000000c , 0x0000003f 
+ 00019009  0x0000250f store  0x00000001 , 0x00000302 
+ 00019010  0x00002510 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019011  0x00002511 rshift3  0x0000000c , 0x0000003f 
+ 00019012  0x00002512 istore  0x00000001 , 0x00000005 
+ 00019013  0x00002513 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019014  0x00002514 branch  0x00004a4b , 0x00000005 
+ 00019015  0x00002517 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019016  0x00002518 rshift3  0x0000000c , 0x0000003f 
+ 00019017  0x00002519 istore  0x00000001 , 0x00000005 
+ 00019018  0x0000251a loop  0x00004a47 
+ 00019019  0x0000251d set1  0x00000025 , 0x00000000 
+ 00019020  0x0000251e bpatch  0x00000017 , 0x00004022 
+ 00019021  0x0000251f parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00019022  0x00002520 enable  0x00000010 
+ 00019023  0x00002521 arg  0x00000664 , 0x0000001b 
+ 00019024  0x00002522 rshift32  0x0000003f , 0x0000003f 
+ 00019025  0x00002523 rshift16  0x0000003f , 0x0000003f 
+ 00019026  0x00002524 istore  0x00000003 , 0x00000005 
+ 00019027  0x00002525 branch  0x000036c6 , 0x00000006 
+ 00019028  0x00002526 enable  0x0000002d 
+ 00019029  0x00002527 fetch  0x00000001 , 0x00000017 
+ 00019030  0x00002528 add  0x0000003f , 0x00000000 , 0x00000011 
+ 00019031  0x00002529 call  0x00003a13 
+ 00019032  0x0000252a disable  0x0000000d 
+ 00019033  0x0000252b branch  0x000039b1 
+ 00019034  0x0000252e set1  0x00000025 , 0x00000000 
+ 00019035  0x0000252f bpatch  0x00000018 , 0x00004023 
+ 00019036  0x00002530 call  0x00004a65 
+ 00019037  0x00002531 fetcht  0x00000001 , 0x00000017 
+ 00019038  0x00002532 call  0x000039b9 
+ 00019039  0x00002533 call  0x000039bf 
+ 00019040  0x00002534 enable  0x00000010 
+ 00019041  0x00002535 arg  0x0000157c , 0x0000000b 
+ 00019042  0x00002536 branch  0x00004a27 
+ 00019043  0x00002539 call  0x00004a65 
+ 00019044  0x0000253a branch  0x000036c6 
+ 00019045  0x0000253d set1  0x00000025 , 0x00000000 
+ 00019046  0x0000253e bpatch  0x00000019 , 0x00004023 
+ 00019047  0x0000253f call  0x00004985 
+ 00019048  0x00002540 call  0x00004993 
+ 00019049  0x00002541 call  0x00004a6d 
+ 00019050  0x00002542 fetch  0x00000001 , 0x00004132 
+ 00019051  0x00002543 beq  0x0000000a , 0x00005d8e 
+ 00019052  0x00002544 rtn 
+ 00019053  0x00002546 set1  0x00000000 , 0x00000015 
+ 00019054  0x00002547 enable  0x0000001d 
+ 00019055  0x00002548 enable  0x00000020 
+ 00019056  0x00002549 disable  0x00000021 
+ 00019057  0x0000254a call  0x00004a16 
+ 00019058  0x0000254b rshift16  0x00000009 , 0x0000003f 
+ 00019059  0x0000254c rshift8  0x0000003f , 0x0000003f 
+ 00019060  0x0000254d rshift4  0x0000003f , 0x0000003f 
+ 00019061  0x0000254e inject  0x00000003 , 0x00000028 
+ 00019062  0x0000254f enable  0x00000007 
+ 00019063  0x00002550 enable  0x00000009 
+ 00019064  0x00002551 set1  0x00000025 , 0x00000000 
+ 00019065  0x00002552 bpatch  0x0000001a , 0x00004023 
+ 00019066  0x00002553 fetch  0x00000001 , 0x00004465 
+ 00019067  0x00002554 inject  0x00000003 , 0x00000008 
+ 00019068  0x00002555 ifetch  0x00000001 , 0x00000006 
+ 00019069  0x00002556 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019070  0x00002557 inject  0x00000003 , 0x00000008 
+ 00019071  0x00002558 branch  0x00004a83 , 0x00000005 
+ 00019072  0x0000255a ifetch  0x00000001 , 0x00000006 
+ 00019073  0x0000255b inject  0x00000003 , 0x00000008 
+ 00019074  0x0000255c loop  0x00004a80 
+ 00019075  0x0000255f enable  0x00000008 
+ 00019076  0x00002560 inject  0x00000003 , 0x00000018 
+ 00019077  0x00002561 disable  0x00000008 
+ 00019078  0x00002562 until  0x0000003e , 0x00000027 
+ 00019079  0x00002563 nop  0x00000064 
+ 00019080  0x00002564 disable  0x0000001d 
+ 00019081  0x00002565 rtn 
+ 00019082  0x00002568 set1  0x00000025 , 0x00000000 
+ 00019083  0x00002569 bpatch  0x0000001b , 0x00004023 
+ 00019084  0x0000256a fetch  0x00000001 , 0x00004520 
+ 00019085  0x0000256b beq  0x00000001 , 0x00004a9b 
+ 00019086  0x0000256c fetch  0x00000001 , 0x00004521 
+ 00019087  0x0000256d lshift4  0x0000003f , 0x0000003f 
+ 00019088  0x0000256e lshift2  0x0000003f , 0x0000003f 
+ 00019089  0x0000256f store  0x00000001 , 0x00004465 
+ 00019090  0x00002570 fetcht  0x00000001 , 0x00004400 
+ 00019091  0x00002571 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019092  0x00002572 store  0x00000001 , 0x00004466 
+ 00019093  0x00002573 fetch  0x00000006 , 0x0000453e 
+ 00019094  0x00002574 store  0x00000006 , 0x00004467 
+ 00019095  0x00002575 copy  0x00000002 , 0x00000039 
+ 00019096  0x00002576 arg  0x00004401 , 0x00000006 
+ 00019097  0x00002577 call  0x00007ec0 
+ 00019098  0x00002578 branch  0x00004aab 
+ 00019099  0x0000257a fetcht  0x00000002 , 0x000044f8 
+ 00019100  0x0000257b call  0x00004f6a 
+ 00019101  0x0000257c copy  0x00000011 , 0x00000005 
+ 00019102  0x0000257d setarg  0x00000001 
+ 00019103  0x0000257e istore  0x00000001 , 0x00000005 
+ 00019104  0x0000257f fetch  0x00000001 , 0x00004522 
+ 00019105  0x00002580 lshift4  0x0000003f , 0x0000003f 
+ 00019106  0x00002581 lshift2  0x0000003f , 0x0000003f 
+ 00019107  0x00002582 increase  0x00000001 , 0x0000003f 
+ 00019108  0x00002583 store  0x00000001 , 0x00004465 
+ 00019109  0x00002584 setarg  0x0000000c 
+ 00019110  0x00002585 store  0x00000001 , 0x00004466 
+ 00019111  0x00002586 fetch  0x00000006 , 0x0000453e 
+ 00019112  0x00002587 store  0x00000006 , 0x00004467 
+ 00019113  0x00002588 fetch  0x00000006 , 0x00004273 
+ 00019114  0x00002589 istore  0x00000006 , 0x00000005 
+ 00019115  0x0000258b set1  0x00000025 , 0x00000000 
+ 00019116  0x0000258c bpatch  0x0000001c , 0x00004023 
+ 00019117  0x0000258d fetch  0x00000001 , 0x00000000 
+ 00019118  0x0000258e increase  0x00000001 , 0x0000003f 
+ 00019119  0x0000258f store  0x00000001 , 0x00000000 
+ 00019120  0x00002590 arg  0x00000708 , 0x0000001b 
+ 00019121  0x00002591 disable  0x0000002d 
+ 00019122  0x00002592 branch  0x00004a5a 
+ 00019123  0x00002595 set1  0x00000025 , 0x00000000 
+ 00019124  0x00002596 bpatch  0x0000001d , 0x00004023 
+ 00019125  0x00002597 fetch  0x00000001 , 0x0000453b 
+ 00019126  0x00002598 rtnne  0x00000001 , 0x0000003f 
+ 00019127  0x00002599 fetch  0x00000001 , 0x00000000 
+ 00019128  0x0000259a increase  0x00000001 , 0x0000003f 
+ 00019129  0x0000259b store  0x00000001 , 0x00000000 
+ 00019130  0x0000259c arg  0x00000c03 , 0x00000002 
+ 00019131  0x0000259d fetch  0x00000001 , 0x0000453c 
+ 00019132  0x0000259e nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019133  0x0000259f copy  0x00000011 , 0x0000003f 
+ 00019134  0x000025a0 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00019135  0x000025a1 storet  0x00000002 , 0x00004465 
+ 00019136  0x000025a2 fetch  0x00000006 , 0x0000453e 
+ 00019137  0x000025a3 istore  0x00000006 , 0x00000005 
+ 00019138  0x000025a4 fetch  0x00000006 , 0x00000372 
+ 00019139  0x000025a5 istore  0x00000006 , 0x00000005 
+ 00019140  0x000025a6 branch  0x00004a5a 
+ 00019141  0x000025aa set1  0x00000025 , 0x00000000 
+ 00019142  0x000025ab bpatch  0x0000001e , 0x00004023 
+ 00019143  0x000025ac arg  0x00000004 , 0x00000002 
+ 00019144  0x000025ad fetch  0x00000001 , 0x00004521 
+ 00019145  0x000025ae nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019146  0x000025af storet  0x00000001 , 0x00004465 
+ 00019147  0x000025b0 fetcht  0x00000001 , 0x00004420 
+ 00019148  0x000025b1 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019149  0x000025b2 store  0x00000001 , 0x00004466 
+ 00019150  0x000025b3 fetch  0x00000006 , 0x0000453e 
+ 00019151  0x000025b4 store  0x00000006 , 0x00004467 
+ 00019152  0x000025b5 arg  0x00004421 , 0x00000006 
+ 00019153  0x000025b6 copy  0x00000002 , 0x00000039 
+ 00019154  0x000025b7 call  0x00007ec0 
+ 00019155  0x000025b8 branch  0x00004a63 
+ 00019156  0x000025bc set1  0x00000025 , 0x00000000 
+ 00019157  0x000025bd bpatch  0x0000001f , 0x00004023 
+ 00019158  0x000025be force  0xffffffff , 0x0000003f 
+ 00019159  0x000025bf setsect  0x00000002 , 0x00000001 
+ 00019160  0x000025c0 store  0x00000005 , 0x00000392 
+ 00019161  0x000025c1 call  0x000049ef 
+ 00019162  0x000025c2 force  0x00000004 , 0x00000039 
+ 00019163  0x000025c3 arg  0x00000386 , 0x00000005 
+ 00019164  0x000025c4 call  0x00005918 
+ 00019165  0x000025c5 fetch  0x00000002 , 0x00004539 
+ 00019166  0x000025c6 store  0x00000002 , 0x00000390 
+ 00019167  0x000025c8 random  0x0000003f 
+ 00019168  0x000025c9 and_into  0x0000000f , 0x0000003f 
+ 00019169  0x000025ca sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00019170  0x000025cb branch  0x00004adf , 0x00000002 
+ 00019171  0x000025cc store  0x00000001 , 0x0000037b 
+ 00019172  0x000025cd store  0x00000001 , 0x0000060a 
+ 00019173  0x000025ce set1  0x00000025 , 0x00000000 
+ 00019174  0x000025cf bpatch  0x00000020 , 0x00004024 
+ 00019175  0x000025d0 fetcht  0x00000002 , 0x000043f7 
+ 00019176  0x000025d1 storet  0x00000002 , 0x00000364 
+ 00019177  0x000025d2 copy  0x00000002 , 0x00000013 
+ 00019178  0x000025d3 add  0x00000022 , 0x00000007 , 0x0000003f 
+ 00019179  0x000025d4 idiv  0x00000013 
+ 00019180  0x000025d5 call  0x00007f53 
+ 00019181  0x000025d6 remainder  0x00000011 
+ 00019182  0x000025d7 isub  0x00000011 , 0x0000003f 
+ 00019183  0x000025d8 iadd  0x00000013 , 0x0000003f 
+ 00019184  0x000025d9 fetcht  0x00000002 , 0x000043f5 
+ 00019185  0x000025da iadd  0x00000002 , 0x0000003f 
+ 00019186  0x000025db store  0x00000004 , 0x00000366 
+ 00019187  0x000025dc isub  0x00000022 , 0x00000011 
+ 00019188  0x000025dd increase  0xfffffffa , 0x00000011 
+ 00019189  0x000025de arg  0x00002205 , 0x00000012 
+ 00019190  0x000025df fetch  0x00000001 , 0x00004532 
+ 00019191  0x000025e0 nsetflag  0x00000034 , 0x00000006 , 0x00000012 
+ 00019192  0x000025e1 fetch  0x00000001 , 0x0000452b 
+ 00019193  0x000025e2 nsetflag  0x00000034 , 0x00000007 , 0x00000012 
+ 00019194  0x000025e3 copy  0x00000012 , 0x0000003f 
+ 00019195  0x000025e4 store  0x00000002 , 0x00004465 
+ 00019196  0x000025e5 fetch  0x00000006 , 0x0000453e 
+ 00019197  0x000025e6 istore  0x00000006 , 0x00000005 
+ 00019198  0x000025e7 fetch  0x00000006 , 0x00000372 
+ 00019199  0x000025e8 istore  0x00000006 , 0x00000005 
+ 00019200  0x000025e9 fetch  0x00000004 , 0x00000386 
+ 00019201  0x000025ea istore  0x00000004 , 0x00000005 
+ 00019202  0x000025eb random  0x0000003f 
+ 00019203  0x000025ec istore  0x00000002 , 0x00000005 
+ 00019204  0x000025ed random  0x0000003f 
+ 00019205  0x000025ee istore  0x00000001 , 0x00000005 
+ 00019206  0x000025ef force  0x00000002 , 0x0000003f 
+ 00019207  0x000025f0 istore  0x00000001 , 0x00000005 
+ 00019208  0x000025f1 rshift2  0x00000011 , 0x0000003f 
+ 00019209  0x000025f2 istore  0x00000002 , 0x00000005 
+ 00019210  0x000025f3 rshift2  0x00000013 , 0x0000003f 
+ 00019211  0x000025f4 istore  0x00000002 , 0x00000005 
+ 00019212  0x000025f5 set1  0x00000025 , 0x00000000 
+ 00019213  0x000025f6 bpatch  0x00000021 , 0x00004024 
+ 00019214  0x000025f7 fetch  0x00000002 , 0x00004537 
+ 00019215  0x000025f8 istore  0x00000002 , 0x00000005 
+ 00019216  0x000025f9 fetch  0x00000002 , 0x00004539 
+ 00019217  0x000025fa istore  0x00000002 , 0x00000005 
+ 00019218  0x000025fb fetch  0x00000005 , 0x00000392 
+ 00019219  0x000025fc istore  0x00000005 , 0x00000005 
+ 00019220  0x000025fd fetch  0x00000001 , 0x0000037b 
+ 00019221  0x000025fe arg  0x000000a0 , 0x00000002 
+ 00019222  0x000025ff ior  0x00000002 , 0x0000003f 
+ 00019223  0x00002600 istore  0x00000001 , 0x00000005 
+ 00019224  0x00002601 call  0x00004a63 
+ 00019225  0x00002602 setarg  0x00004465 
+ 00019226  0x00002603 add  0x0000003f , 0x00000012 , 0x00000006 
+ 00019227  0x00002604 ifetch  0x00000003 , 0x00000006 
+ 00019228  0x00002605 store  0x00000003 , 0x0000038a 
+ 00019229  0x00002606 rtn 
+ 00019230  0x00002609 set1  0x00000025 , 0x00000000 
+ 00019231  0x0000260a bpatch  0x00000022 , 0x00004024 
+ 00019232  0x0000260b disable  0x00000029 
+ 00019233  0x0000260c branch  0x000049bd 
+ 00019234  0x00002611 fetch  0x00000001 , 0x00000362 
+ 00019235  0x00002612 rtnbit0  0x00000005 
+ 00019236  0x00002613 fetch  0x00000002 , 0x0000037c 
+ 00019237  0x00002614 fetcht  0x00000002 , 0x00000382 
+ 00019238  0x00002615 isub  0x00000002 , 0x0000003f 
+ 00019239  0x00002616 nrtn  0x00000002 
+ 00019240  0x00002617 set1  0x00000025 , 0x00000000 
+ 00019241  0x00002618 bpatch  0x00000023 , 0x00004024 
+ 00019242  0x00002619 fetch  0x00000001 , 0x00004132 
+ 00019243  0x0000261a bne  0x00000009 , 0x00004b2d 
+ 00019244  0x0000261b jam  0x00000001 , 0x00004131 
+ 00019245  0x0000261d fetch  0x00000001 , 0x00000362 
+ 00019246  0x0000261e set0  0x00000005 , 0x0000003f 
+ 00019247  0x0000261f set0  0x00000003 , 0x0000003f 
+ 00019248  0x00002620 store  0x00000001 , 0x00000362 
+ 00019249  0x00002621 fetch  0x00000004 , 0x00000366 
+ 00019250  0x00002622 fetcht  0x00000002 , 0x00000364 
+ 00019251  0x00002623 isub  0x00000002 , 0x00000011 
+ 00019252  0x00002624 set1  0x00000025 , 0x00000000 
+ 00019253  0x00002625 bpatch  0x00000024 , 0x00004024 
+ 00019254  0x00002626 fetch  0x00000001 , 0x0000445b 
+ 00019255  0x00002627 store  0x00000001 , 0x0000038d 
+ 00019256  0x00002628 ifetcht  0x00000002 , 0x00000006 
+ 00019257  0x00002629 ifetch  0x00000002 , 0x00000006 
+ 00019258  0x0000262a lshift2  0x0000003f , 0x0000003f 
+ 00019259  0x0000262b store  0x00000002 , 0x00000364 
+ 00019260  0x0000262c lshift2  0x00000002 , 0x00000002 
+ 00019261  0x0000262d iadd  0x00000002 , 0x0000003f 
+ 00019262  0x0000262e ifetcht  0x00000004 , 0x00000006 
+ 00019263  0x0000262f storet  0x00000004 , 0x0000038e 
+ 00019264  0x00002630 iadd  0x00000011 , 0x0000003f 
+ 00019265  0x00002631 store  0x00000004 , 0x00000366 
+ 00019266  0x00002632 branch  0x00005199 
+ 00019267  0x00002635 set1  0x00000025 , 0x00000000 
+ 00019268  0x00002636 bpatch  0x00000025 , 0x00004024 
+ 00019269  0x00002637 fetch  0x00000001 , 0x00000362 
+ 00019270  0x00002638 rtnbit0  0x00000006 
+ 00019271  0x00002639 fetch  0x00000002 , 0x0000037c 
+ 00019272  0x0000263a fetcht  0x00000002 , 0x00000382 
+ 00019273  0x0000263b isub  0x00000002 , 0x0000003f 
+ 00019274  0x0000263c nrtn  0x00000002 
+ 00019275  0x0000263d fetch  0x00000001 , 0x00000362 
+ 00019276  0x0000263e set0  0x00000006 , 0x0000003f 
+ 00019277  0x0000263f store  0x00000001 , 0x00000362 
+ 00019278  0x00002640 fetch  0x00000005 , 0x00004456 
+ 00019279  0x00002641 store  0x00000005 , 0x00000392 
+ 00019280  0x00002642 branch  0x000049ef 
+ 00019281  0x00002646 set1  0x00000025 , 0x00000000 
+ 00019282  0x00002647 bpatch  0x00000026 , 0x00004024 
+ 00019283  0x00002648 call  0x00005179 
+ 00019284  0x00002649 call  0x00004b66 
+ 00019285  0x0000264a fetch  0x00000001 , 0x00000302 
+ 00019286  0x0000264b rshift  0x0000003f , 0x0000003f 
+ 00019287  0x0000264c ixor  0x00000002 , 0x0000003f 
+ 00019288  0x0000264d isolate1  0x00000002 , 0x0000003f 
+ 00019289  0x0000264e setflag  0x00000001 , 0x0000000f , 0x00000000 
+ 00019290  0x0000264f fetch  0x00000001 , 0x00000303 
+ 00019291  0x00002650 branch  0x00004b61 , 0x00000034 
+ 00019292  0x00002651 fetch  0x00000001 , 0x00000362 
+ 00019293  0x00002652 bbit0  0x00000004 , 0x00004b61 
+ 00019294  0x00002653 call  0x000071b6 
+ 00019295  0x00002654 call  0x00007122 
+ 00019296  0x00002655 nrtn  0x00000034 
+ 00019297  0x00002657 rtnmark1  0x0000000f 
+ 00019298  0x00002658 fetcht  0x00000001 , 0x00000379 
+ 00019299  0x00002659 setflip  0x00000002 , 0x00000002 
+ 00019300  0x0000265a storet  0x00000001 , 0x00000379 
+ 00019301  0x0000265b branch  0x00004fa5 
+ 00019302  0x0000265e set1  0x00000025 , 0x00000000 
+ 00019303  0x0000265f bpatch  0x00000027 , 0x00004024 
+ 00019304  0x00002660 fetcht  0x00000001 , 0x00000379 
+ 00019305  0x00002661 isolate0  0x00000005 , 0x00000002 
+ 00019306  0x00002662 rtn  0x00000001 
+ 00019307  0x00002663 fetch  0x00000001 , 0x00000302 
+ 00019308  0x00002664 lshift  0x0000003f , 0x0000003f 
+ 00019309  0x00002665 ixor  0x00000002 , 0x0000003f 
+ 00019310  0x00002666 rtnbit0  0x00000003 
+ 00019311  0x00002667 set0  0x00000005 , 0x00000002 
+ 00019312  0x00002668 setflip  0x00000003 , 0x00000002 
+ 00019313  0x00002669 storet  0x00000001 , 0x00000379 
+ 00019314  0x0000266a compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00019315  0x0000266b nrtn  0x00000001 
+ 00019316  0x0000266c fetch  0x00000001 , 0x00004467 
+ 00019317  0x0000266d beq  0x00000005 , 0x00004b79 
+ 00019318  0x0000266e fetch  0x00000001 , 0x0000456b 
+ 00019319  0x0000266f beq  0x00000002 , 0x00004b7d 
+ 00019320  0x00002670 rtn 
+ 00019321  0x00002674 fetch  0x00000001 , 0x00000362 
+ 00019322  0x00002675 set1  0x00000004 , 0x0000003f 
+ 00019323  0x00002676 store  0x00000001 , 0x00000362 
+ 00019324  0x00002677 rtn 
+ 00019325  0x0000267a set1  0x00000025 , 0x00000000 
+ 00019326  0x0000267b bpatch  0x00000028 , 0x00004025 
+ 00019327  0x0000267c jam  0x00000000 , 0x0000456b 
+ 00019328  0x0000267d arg  0x00000000 , 0x0000003f 
+ 00019329  0x0000267e store  0x00000004 , 0x00004496 
+ 00019330  0x0000267f store  0x00000005 , 0x0000448c 
+ 00019331  0x00002680 set1  0x00000027 , 0x0000003f 
+ 00019332  0x00002681 store  0x00000005 , 0x00004491 
+ 00019333  0x00002682 fetch  0x00000001 , 0x00000362 
+ 00019334  0x00002683 set0  0x00000004 , 0x0000003f 
+ 00019335  0x00002684 store  0x00000001 , 0x00000362 
+ 00019336  0x00002685 rtn 
+ 00019337  0x0000268a set1  0x00000025 , 0x00000000 
+ 00019338  0x0000268b bpatch  0x00000029 , 0x00004025 
+ 00019339  0x0000268c call  0x000049d4 
+ 00019340  0x0000268d call  0x00004a1c 
+ 00019341  0x0000268e fetch  0x00000001 , 0x00000001 
+ 00019342  0x0000268f increase  0x00000001 , 0x0000003f 
+ 00019343  0x00002690 store  0x00000001 , 0x00000001 
+ 00019344  0x00002691 rtn 
+ 00019345  0x00002694 set1  0x00000025 , 0x00000000 
+ 00019346  0x00002695 bpatch  0x0000002a , 0x00004025 
+ 00019347  0x00002696 fetch  0x00000001 , 0x000043f9 
+ 00019348  0x00002697 rtnne  0x00000001 
+ 00019349  0x00002698 arg  0x00000003 , 0x00000007 
+ 00019350  0x00002699 call  0x00007ee2 
+ 00019351  0x0000269a nrtn  0x00000034 
+ 00019352  0x0000269b fetch  0x00000002 , 0x000043fa 
+ 00019353  0x0000269c fetcht  0x00000002 , 0x000043fc 
+ 00019354  0x0000269d isub  0x00000002 , 0x0000003f 
+ 00019355  0x0000269e arg  0x00000003 , 0x00000007 
+ 00019356  0x0000269f call  0x00007ed4 
+ 00019357  0x000026a0 disable  0x00000029 
+ 00019358  0x000026a1 call  0x00004b1e 
+ 00019359  0x000026a2 call  0x00004b89 
+ 00019360  0x000026a3 nrtn  0x0000002d 
+ 00019361  0x000026a4 set1  0x00000025 , 0x00000000 
+ 00019362  0x000026a5 bpatch  0x0000002b , 0x00004025 
+ 00019363  0x000026a6 fetch  0x00000006 , 0x00000304 
+ 00019364  0x000026a7 store  0x00000006 , 0x00000372 
+ 00019365  0x000026aa fetch  0x00000001 , 0x00000002 
+ 00019366  0x000026ab increase  0x00000001 , 0x0000003f 
+ 00019367  0x000026ac store  0x00000001 , 0x00000002 
+ 00019368  0x000026ad call  0x00004bb4 
+ 00019369  0x000026ae rtn  0x00000029 
+ 00019370  0x000026af call  0x00004ab3 
+ 00019371  0x000026b0 nrtn  0x0000002d 
+ 00019372  0x000026b1 set1  0x00000025 , 0x00000000 
+ 00019373  0x000026b2 bpatch  0x0000002c , 0x00004025 
+ 00019374  0x000026b3 fetch  0x00000001 , 0x00000004 
+ 00019375  0x000026b4 increase  0x00000001 , 0x0000003f 
+ 00019376  0x000026b5 store  0x00000001 , 0x00000004 
+ 00019377  0x000026b6 fetch  0x00000009 , 0x0000030a 
+ 00019378  0x000026b7 store  0x00000009 , 0x00000100 
+ 00019379  0x000026b8 rtn 
+ 00019380  0x000026bb set1  0x00000025 , 0x00000000 
+ 00019381  0x000026bc bpatch  0x0000002d , 0x00004025 
+ 00019382  0x000026bd fetch  0x00000001 , 0x000003bf 
+ 00019383  0x000026be rtnne  0x0000001b , 0x0000003f 
+ 00019384  0x000026bf fetch  0x00000006 , 0x00000372 
+ 00019385  0x000026c0 fetcht  0x00000006 , 0x0000452c 
+ 00019386  0x000026c1 isub  0x00000002 , 0x0000003e 
+ 00019387  0x000026c2 nrtn  0x00000005 
+ 00019388  0x000026c3 call  0x0000327a 
+ 00019389  0x000026c4 nrtn  0x00000005 
+ 00019390  0x000026c5 call  0x00004ad4 
+ 00019391  0x000026c6 call  0x000048f5 
+ 00019392  0x000026c7 set1  0x00000025 , 0x00000000 
+ 00019393  0x000026c8 bpatch  0x0000002e , 0x00004025 
+ 00019394  0x000026c9 jam  0x00000000 , 0x00004271 
+ 00019395  0x000026ca jam  0x00000000 , 0x00000399 
+ 00019396  0x000026cb jam  0x00000000 , 0x000043f9 
+ 00019397  0x000026cc jam  0x00000000 , 0x000003bf 
+ 00019398  0x000026cd jam  0x0000002c , 0x000009bd 
+ 00019399  0x000026ce call  0x00004bd6 
+ 00019400  0x000026cf branch  0x00003260 
+ 00019401  0x000026d2 arg  0x00000001 , 0x00000011 
+ 00019402  0x000026d3 fetch  0x00000001 , 0x00000302 
+ 00019403  0x000026d4 rtnbit1  0x00000006 
+ 00019404  0x000026d5 arg  0x00000000 , 0x00000011 
+ 00019405  0x000026d6 rtn 
+ 00019406  0x000026d9 arg  0x00004544 , 0x00000006 
+ 00019407  0x000026da branch  0x00007fa8 
+ 00019408  0x000026dd arg  0x00004544 , 0x00000011 
+ 00019409  0x000026de branch  0x00007fa2 
+ 00019410  0x000026e1 arg  0x00004544 , 0x00000011 
+ 00019411  0x000026e2 branch  0x00007fa4 
+ 00019412  0x000026e5 arg  0x00004544 , 0x00000011 
+ 00019413  0x000026e6 branch  0x00007fa6 
+ 00019414  0x000026e9 arg  0x00004544 , 0x00000011 
+ 00019415  0x000026ea branch  0x00007f88 
+ 00019416  0x000026ed set1  0x00000025 , 0x00000000 
+ 00019417  0x000026ee bpatch  0x0000002f , 0x00004025 
+ 00019418  0x000026ef fetch  0x00000001 , 0x00000379 
+ 00019419  0x000026f0 rtnbit1  0x00000005 
+ 00019420  0x000026f1 fetch  0x00000001 , 0x00004132 
+ 00019421  0x000026f2 beq  0x00000009 , 0x00004be2 
+ 00019422  0x000026f4 arg  0x00004544 , 0x00000011 
+ 00019423  0x000026f5 call  0x00007f95 
+ 00019424  0x000026f6 nbranch  0x00004bf1 , 0x00000034 
+ 00019425  0x000026f7 branch  0x00004f87 
+ 00019426  0x000026fa fetch  0x00000001 , 0x000048c8 
+ 00019427  0x000026fb nbranch  0x00004be9 , 0x00000034 
+ 00019428  0x000026fc fetch  0x00000001 , 0x00000362 
+ 00019429  0x000026fd bbit0  0x00000004 , 0x00004bed 
+ 00019430  0x000026fe fetch  0x00000001 , 0x00000303 
+ 00019431  0x000026ff branch  0x00004bed , 0x00000034 
+ 00019432  0x00002700 branch  0x00004f87 
+ 00019433  0x00002702 fetch  0x00000001 , 0x000048c8 
+ 00019434  0x00002703 increase  0xffffffff , 0x0000003f 
+ 00019435  0x00002704 store  0x00000001 , 0x000048c8 
+ 00019436  0x00002705 branch  0x00004f87 
+ 00019437  0x00002707 fetch  0x00000001 , 0x0000456a 
+ 00019438  0x00002708 bne  0x00000002 , 0x00004bf0 
+ 00019439  0x00002709 jam  0x00000003 , 0x000048c8 
+ 00019440  0x0000270b branch  0x00004bde 
+ 00019441  0x0000270e copy  0x0000003f , 0x00000002 
+ 00019442  0x0000270f set1  0x00000025 , 0x00000000 
+ 00019443  0x00002710 bpatch  0x00000030 , 0x00004026 
+ 00019444  0x00002711 copy  0x00000002 , 0x0000003f 
+ 00019445  0x00002712 bbit0  0x00000005 , 0x00004c0d 
+ 00019446  0x00002713 force  0x00000003 , 0x00000001 
+ 00019447  0x00002714 set0  0x00000005 , 0x0000003f 
+ 00019448  0x00002715 store  0x00000001 , 0x00004467 
+ 00019449  0x00002716 set1  0x00000025 , 0x00000000 
+ 00019450  0x00002717 bpatch  0x00000031 , 0x00004026 
+ 00019451  0x00002719 fetch  0x00000001 , 0x00004467 
+ 00019452  0x0000271a beq  0x00000000 , 0x00004c54 
+ 00019453  0x0000271b beq  0x00000001 , 0x00004c56 
+ 00019454  0x0000271c beq  0x00000002 , 0x00004c58 
+ 00019455  0x0000271d beq  0x00000003 , 0x00004c5a 
+ 00019456  0x0000271e beq  0x00000004 , 0x00004c6b 
+ 00019457  0x0000271f beq  0x00000005 , 0x00004c84 
+ 00019458  0x00002720 beq  0x00000006 , 0x00004c86 
+ 00019459  0x00002721 beq  0x00000007 , 0x00004c9c 
+ 00019460  0x00002722 beq  0x00000008 , 0x00004ca0 
+ 00019461  0x00002723 beq  0x00000009 , 0x00004ca0 
+ 00019462  0x00002724 beq  0x0000000a , 0x00004ca4 
+ 00019463  0x00002725 beq  0x0000000b , 0x00004ca4 
+ 00019464  0x00002726 beq  0x0000000c , 0x00004ca6 
+ 00019465  0x00002727 beq  0x0000000d , 0x00004caa 
+ 00019466  0x00002728 beq  0x0000000f , 0x00004cae 
+ 00019467  0x00002729 beq  0x00000013 , 0x00004ca4 
+ 00019468  0x0000272a branch  0x00003b31 
+ 00019469  0x0000272d jam  0x00000000 , 0x0000446a 
+ 00019470  0x0000272e force  0x00000002 , 0x00000001 
+ 00019471  0x0000272f bbit0  0x00000006 , 0x00004c26 
+ 00019472  0x00002730 beq  0x00000052 , 0x00004c26 
+ 00019473  0x00002731 beq  0x000000d2 , 0x00004c26 
+ 00019474  0x00002732 jam  0x00000006 , 0x00004469 
+ 00019475  0x00002733 set0  0x00000006 , 0x0000003f 
+ 00019476  0x00002734 store  0x00000001 , 0x0000446b 
+ 00019477  0x00002735 set1  0x00000025 , 0x00000000 
+ 00019478  0x00002736 bpatch  0x00000032 , 0x00004026 
+ 00019479  0x00002737 fetch  0x00000001 , 0x0000446b 
+ 00019480  0x00002739 beq  0x00000001 , 0x00004cbb 
+ 00019481  0x0000273a beq  0x00000002 , 0x00004cc3 
+ 00019482  0x0000273b beq  0x00000003 , 0x00004cda 
+ 00019483  0x0000273c beq  0x00000004 , 0x00004ce8 
+ 00019484  0x0000273d beq  0x00000005 , 0x00004ced 
+ 00019485  0x0000273e beq  0x00000006 , 0x00004cf2 
+ 00019486  0x0000273f beq  0x00000007 , 0x00004d10 
+ 00019487  0x00002740 beq  0x00000008 , 0x00004d27 
+ 00019488  0x00002741 beq  0x00000009 , 0x00004d2d 
+ 00019489  0x00002742 beq  0x0000000a , 0x00004d32 
+ 00019490  0x00002743 beq  0x0000000b , 0x00004d35 
+ 00019491  0x00002744 beq  0x0000000c , 0x00004d39 
+ 00019492  0x00002745 beq  0x0000000d , 0x00004d64 
+ 00019493  0x00002746 branch  0x00003b31 
+ 00019494  0x00002749 jam  0x00000004 , 0x00004469 
+ 00019495  0x0000274a store  0x00000001 , 0x0000446b 
+ 00019496  0x0000274b set1  0x00000025 , 0x00000000 
+ 00019497  0x0000274c bpatch  0x00000033 , 0x00004026 
+ 00019498  0x0000274d fetch  0x00000001 , 0x0000446b 
+ 00019499  0x0000274e beq  0x00000001 , 0x00004d6f 
+ 00019500  0x0000274f beq  0x00000002 , 0x00004d75 
+ 00019501  0x00002750 beq  0x00000003 , 0x00004d75 
+ 00019502  0x00002751 beq  0x00000004 , 0x00004d78 
+ 00019503  0x00002752 beq  0x00000005 , 0x00004d7d 
+ 00019504  0x00002753 beq  0x00000006 , 0x00004d93 
+ 00019505  0x00002754 beq  0x00000007 , 0x00004da7 
+ 00019506  0x00002755 beq  0x00000008 , 0x00004dec 
+ 00019507  0x00002756 beq  0x00000009 , 0x00004df4 
+ 00019508  0x00002757 beq  0x0000000a , 0x00004e58 
+ 00019509  0x00002758 beq  0x0000000b , 0x00004e60 
+ 00019510  0x00002759 beq  0x0000000c , 0x00004e77 
+ 00019511  0x0000275a beq  0x0000000d , 0x00004e7c 
+ 00019512  0x0000275b beq  0x0000000e , 0x00004e8b 
+ 00019513  0x0000275c beq  0x0000000f , 0x00004e92 
+ 00019514  0x0000275d beq  0x00000010 , 0x00004eb8 
+ 00019515  0x0000275e beq  0x00000011 , 0x00004ec0 
+ 00019516  0x0000275f beq  0x00000012 , 0x00004f1e 
+ 00019517  0x00002760 beq  0x00000013 , 0x00004f25 
+ 00019518  0x00002761 beq  0x00000016 , 0x00004f27 
+ 00019519  0x00002762 beq  0x00000017 , 0x00004f46 
+ 00019520  0x00002763 beq  0x00000018 , 0x00004f66 
+ 00019521  0x00002764 beq  0x00000019 , 0x00004f68 
+ 00019522  0x00002765 beq  0x0000001b , 0x00004f77 
+ 00019523  0x00002766 beq  0x0000001d , 0x00004f79 
+ 00019524  0x00002767 beq  0x0000001e , 0x00004f7b 
+ 00019525  0x00002768 beq  0x00000052 , 0x00004f7d 
+ 00019526  0x00002769 beq  0x000000d2 , 0x00004f7f 
+ 00019527  0x0000276a beq  0x0000009e , 0x00004c4b 
+ 00019528  0x0000276b beq  0x0000009f , 0x00004c4d 
+ 00019529  0x0000276c beq  0x0000001f , 0x00004f29 
+ 00019530  0x0000276d branch  0x00003b31 
+ 00019531  0x00002770 jam  0x00000010 , 0x000009bd 
+ 00019532  0x00002771 call  0x00004bd6 
+ 00019533  0x00002774 setarg  0x00000011 
+ 00019534  0x00002775 store  0x00000002 , 0x00004465 
+ 00019535  0x00002776 fetch  0x00000001 , 0x00000379 
+ 00019536  0x00002777 set1  0x00000005 , 0x0000003f 
+ 00019537  0x00002778 store  0x00000001 , 0x00000379 
+ 00019538  0x00002779 jam  0x00000012 , 0x000009bd 
+ 00019539  0x0000277a branch  0x00004bd6 
+ 00019540  0x0000277d force  0x0000000c , 0x00000002 
+ 00019541  0x0000277e branch  0x00004f89 
+ 00019542  0x00002781 force  0x00000008 , 0x00000002 
+ 00019543  0x00002782 branch  0x00004f89 
+ 00019544  0x00002785 force  0x00000002 , 0x00000002 
+ 00019545  0x00002786 branch  0x00004f89 
+ 00019546  0x00002789 force  0x00000000 , 0x0000003f 
+ 00019547  0x0000278a istore  0x00000008 , 0x00000005 
+ 00019548  0x0000278b istore  0x00000002 , 0x00000005 
+ 00019549  0x0000278c copy  0x00000005 , 0x00000002 
+ 00019550  0x0000278d arg  0x00004551 , 0x00000005 
+ 00019551  0x0000278e force  0x00000008 , 0x00000039 
+ 00019552  0x0000278f call  0x00005918 
+ 00019553  0x00002790 fetch  0x00000008 , 0x00004551 
+ 00019554  0x00002791 istore  0x00000008 , 0x00000002 
+ 00019555  0x00002792 copy  0x00000005 , 0x00000002 
+ 00019556  0x00002793 arg  0x0000449a , 0x00000005 
+ 00019557  0x00002794 force  0x00000004 , 0x00000039 
+ 00019558  0x00002795 call  0x00005918 
+ 00019559  0x00002796 fetch  0x00000004 , 0x0000449a 
+ 00019560  0x00002797 istore  0x00000004 , 0x00000002 
+ 00019561  0x00002798 force  0x00000017 , 0x00000002 
+ 00019562  0x00002799 branch  0x00004f89 
+ 00019563  0x0000279c copy  0x00000005 , 0x00000002 
+ 00019564  0x0000279d arg  0x00004559 , 0x00000005 
+ 00019565  0x0000279e force  0x00000008 , 0x00000039 
+ 00019566  0x0000279f call  0x00005918 
+ 00019567  0x000027a0 fetch  0x00000008 , 0x00004559 
+ 00019568  0x000027a1 istore  0x00000008 , 0x00000002 
+ 00019569  0x000027a2 copy  0x00000005 , 0x00000002 
+ 00019570  0x000027a3 arg  0x0000449e , 0x00000005 
+ 00019571  0x000027a4 force  0x00000004 , 0x00000039 
+ 00019572  0x000027a5 call  0x00005918 
+ 00019573  0x000027a6 fetch  0x00000004 , 0x0000449e 
+ 00019574  0x000027a7 istore  0x00000004 , 0x00000002 
+ 00019575  0x000027a8 call  0x000070c8 
+ 00019576  0x000027a9 fetch  0x00000001 , 0x000044b2 
+ 00019577  0x000027aa beq  0x00000000 , 0x00004c7e 
+ 00019578  0x000027ab jam  0x00000025 , 0x000009bd 
+ 00019579  0x000027ac call  0x00004bd6 
+ 00019580  0x000027ad force  0x0000000d , 0x00000002 
+ 00019581  0x000027ae branch  0x00004f89 
+ 00019582  0x000027b1 jam  0x00000000 , 0x0000456b 
+ 00019583  0x000027b2 jam  0x0000002d , 0x000009bd 
+ 00019584  0x000027b3 call  0x00004bd6 
+ 00019585  0x000027b4 call  0x00007e29 
+ 00019586  0x000027b5 force  0x0000000d , 0x00000002 
+ 00019587  0x000027b6 branch  0x00004f89 
+ 00019588  0x000027ba force  0x00000001 , 0x00000002 
+ 00019589  0x000027bb branch  0x00004f89 
+ 00019590  0x000027be force  0x00000001 , 0x00000002 
+ 00019591  0x000027bf branch  0x00004f89 , 0x00000029 
+ 00019592  0x000027c0 fetch  0x00000001 , 0x00004132 
+ 00019593  0x000027c1 beq  0x00000009 , 0x00004c92 
+ 00019594  0x000027c2 fetch  0x00000001 , 0x0000456a 
+ 00019595  0x000027c3 bne  0x00000002 , 0x00004c8f 
+ 00019596  0x000027c4 jam  0x00000046 , 0x000009bd 
+ 00019597  0x000027c5 call  0x00004bd6 
+ 00019598  0x000027c6 branch  0x00004c90 
+ 00019599  0x000027c8 jam  0x00000003 , 0x0000456b 
+ 00019600  0x000027ca force  0x00000001 , 0x00000002 
+ 00019601  0x000027cb branch  0x00004f89 
+ 00019602  0x000027cd jam  0x00000001 , 0x00004131 
+ 00019603  0x000027ce fetch  0x00000001 , 0x0000456a 
+ 00019604  0x000027cf bne  0x00000002 , 0x00004c97 
+ 00019605  0x000027d0 jam  0x00000046 , 0x000009bd 
+ 00019606  0x000027d1 call  0x00004bd6 
+ 00019607  0x000027d3 jam  0x00000003 , 0x0000456b 
+ 00019608  0x000027d4 force  0x00000001 , 0x00000002 
+ 00019609  0x000027d5 call  0x00004f89 
+ 00019610  0x000027d6 jam  0x00000001 , 0x000048c2 
+ 00019611  0x000027d7 rtn 
+ 00019612  0x000027d9 fetch  0x00000001 , 0x00004550 
+ 00019613  0x000027da istore  0x00000001 , 0x00000005 
+ 00019614  0x000027db force  0x00000002 , 0x00000002 
+ 00019615  0x000027dc branch  0x00004f89 
+ 00019616  0x000027df setarg  0x00000001 
+ 00019617  0x000027e0 istore  0x00000008 , 0x00000005 
+ 00019618  0x000027e1 force  0x00000009 , 0x00000002 
+ 00019619  0x000027e2 branch  0x00004f89 
+ 00019620  0x000027e9 force  0x00000001 , 0x00000002 
+ 00019621  0x000027ea branch  0x00004f89 
+ 00019622  0x000027ed fetch  0x00000005 , 0x000045a9 
+ 00019623  0x000027ee istore  0x00000005 , 0x00000005 
+ 00019624  0x000027f3 force  0x00000006 , 0x00000002 
+ 00019625  0x000027f4 branch  0x00004f89 
+ 00019626  0x000027f7 setarg  0x00000006 
+ 00019627  0x000027f8 istore  0x00000001 , 0x00000005 
+ 00019628  0x000027f9 force  0x00000002 , 0x00000002 
+ 00019629  0x000027fa branch  0x00004f89 
+ 00019630  0x000027fd increase  0xffffffff , 0x00000005 
+ 00019631  0x000027fe setarg  0x0000000c 
+ 00019632  0x000027ff istore  0x00000002 , 0x00000005 
+ 00019633  0x00002800 setarg  0x00000005 
+ 00019634  0x00002801 istore  0x00000002 , 0x00000005 
+ 00019635  0x00002802 setarg  0x0000b412 
+ 00019636  0x00002803 istore  0x00000002 , 0x00000005 
+ 00019637  0x00002804 setarg  0x00000008 
+ 00019638  0x00002805 istore  0x00000002 , 0x00000005 
+ 00019639  0x00002806 fetch  0x00000008 , 0x0000458d 
+ 00019640  0x00002807 istore  0x00000008 , 0x00000005 
+ 00019641  0x00002808 force  0x00000002 , 0x00000001 
+ 00019642  0x00002809 branch  0x00004f81 
+ 00019643  0x0000280c setarg  0x01000401 
+ 00019644  0x0000280d store  0x00000004 , 0x000044d5 
+ 00019645  0x0000280e setarg  0x00070710 
+ 00019646  0x0000280f istore  0x00000003 , 0x00000005 
+ 00019647  0x00002810 fetch  0x00000006 , 0x000044d6 
+ 00019648  0x00002811 store  0x00000006 , 0x0000446c 
+ 00019649  0x00002812 force  0x0000000b , 0x00000002 
+ 00019650  0x00002813 branch  0x00004f89 
+ 00019651  0x00002816 fetch  0x00000001 , 0x00004132 
+ 00019652  0x00002817 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00019653  0x00002818 call  0x00004cd1 , 0x00000005 
+ 00019654  0x0000281a fetch  0x00000001 , 0x00004132 
+ 00019655  0x0000281b bne  0x00000009 , 0x00004ccd 
+ 00019656  0x0000281c jam  0x00000001 , 0x00004746 
+ 00019657  0x0000281d fetch  0x00000001 , 0x000044da 
+ 00019658  0x0000281e bbit1  0x00000001 , 0x00004ccd 
+ 00019659  0x0000281f setarg  0x00010010 
+ 00019660  0x00002820 istore  0x00000003 , 0x00000005 
+ 00019661  0x00002822 fetch  0x00000006 , 0x000044dd 
+ 00019662  0x00002823 store  0x00000006 , 0x0000446c 
+ 00019663  0x00002824 force  0x0000000b , 0x00000002 
+ 00019664  0x00002825 branch  0x00004f89 
+ 00019665  0x00002828 fetcht  0x00000001 , 0x000044e1 
+ 00019666  0x00002829 fetch  0x00000001 , 0x000044da 
+ 00019667  0x0000282a isolate1  0x00000001 , 0x0000003f 
+ 00019668  0x0000282b setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019669  0x0000282c storet  0x00000001 , 0x000044e1 
+ 00019670  0x0000282d fetcht  0x00000001 , 0x000044e2 
+ 00019671  0x0000282e setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019672  0x0000282f storet  0x00000001 , 0x000044e2 
+ 00019673  0x00002830 rtn 
+ 00019674  0x00002834 fetch  0x00000001 , 0x00004563 
+ 00019675  0x00002835 beq  0x00000001 , 0x00004ce1 
+ 00019676  0x00002836 call  0x000070c2 
+ 00019677  0x00002837 arg  0x0000446c , 0x00000005 
+ 00019678  0x00002838 call  0x000071c0 
+ 00019679  0x00002839 force  0x00000015 , 0x00000002 
+ 00019680  0x0000283a branch  0x00004f89 
+ 00019681  0x0000283c arg  0x000044c3 , 0x00000005 
+ 00019682  0x0000283d call  0x00005917 
+ 00019683  0x0000283e call  0x00006ee7 
+ 00019684  0x0000283f arg  0x0000446c , 0x00000005 
+ 00019685  0x00002840 call  0x00006f24 
+ 00019686  0x00002841 force  0x00000015 , 0x00000002 
+ 00019687  0x00002842 branch  0x00004f89 
+ 00019688  0x00002845 fetch  0x00000008 , 0x00000352 
+ 00019689  0x00002846 branch  0x00004ceb , 0x00000029 
+ 00019690  0x00002847 fetch  0x00000008 , 0x000044c3 
+ 00019691  0x0000284a call  0x00004d69 
+ 00019692  0x0000284b branch  0x00004f89 
+ 00019693  0x0000284e jam  0x00000000 , 0x0000456a 
+ 00019694  0x0000284f arg  0x00000008 , 0x0000003f 
+ 00019695  0x00002850 istore  0x00000001 , 0x00000005 
+ 00019696  0x00002851 force  0x00000006 , 0x00000002 
+ 00019697  0x00002852 branch  0x00004f89 
+ 00019698  0x00002855 jam  0x00000029 , 0x000009bd 
+ 00019699  0x00002856 call  0x00007d86 
+ 00019700  0x00002857 jam  0x00000047 , 0x000009bd 
+ 00019701  0x00002858 call  0x00004bd6 
+ 00019702  0x00002859 fetch  0x00000001 , 0x00004132 
+ 00019703  0x0000285a beq  0x00000009 , 0x00004d01 
+ 00019704  0x0000285b fetch  0x00000008 , 0x000044a2 
+ 00019705  0x0000285c call  0x00004d69 
+ 00019706  0x0000285d call  0x00004f89 
+ 00019707  0x0000285e fetch  0x00000001 , 0x0000452b 
+ 00019708  0x0000285f beq  0x00000000 , 0x00003e7b 
+ 00019709  0x00002860 fetch  0x00000001 , 0x00000377 
+ 00019710  0x00002861 compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00019711  0x00002862 branch  0x00003e7b , 0x00000001 
+ 00019712  0x00002863 rtn 
+ 00019713  0x00002866 setarg  0x00112233 
+ 00019714  0x00002867 store  0x00000003 , 0x000044a2 
+ 00019715  0x00002868 setarg  0x00445566 
+ 00019716  0x00002869 istore  0x00000003 , 0x00000005 
+ 00019717  0x0000286a setarg  0x00778899 
+ 00019718  0x0000286b istore  0x00000003 , 0x00000005 
+ 00019719  0x0000286c setarg  0x00001122 
+ 00019720  0x0000286d istore  0x00000003 , 0x00000005 
+ 00019721  0x0000286e setarg  0x00334455 
+ 00019722  0x0000286f istore  0x00000003 , 0x00000005 
+ 00019723  0x00002870 setarg  0x00000066 
+ 00019724  0x00002871 istore  0x00000001 , 0x00000005 
+ 00019725  0x00002873 fetch  0x00000008 , 0x000044a2 
+ 00019726  0x00002874 call  0x00004d69 
+ 00019727  0x00002875 branch  0x00004f89 
+ 00019728  0x00002879 fetch  0x00000001 , 0x00004132 
+ 00019729  0x0000287a beq  0x00000009 , 0x00004d22 
+ 00019730  0x0000287c fetch  0x00000001 , 0x000044da 
+ 00019731  0x0000287d bbit0  0x00000001 , 0x00004d17 
+ 00019732  0x0000287e jam  0x00000048 , 0x000009bd 
+ 00019733  0x0000287f call  0x00004bd6 
+ 00019734  0x00002880 branch  0x00004d19 
+ 00019735  0x00002883 jam  0x00000003 , 0x0000456b 
+ 00019736  0x00002884 jam  0x00000003 , 0x0000456a 
+ 00019737  0x00002886 arg  0x00004571 , 0x00000005 
+ 00019738  0x00002887 force  0x0000000a , 0x00000039 
+ 00019739  0x00002888 call  0x00005918 
+ 00019740  0x00002889 fetch  0x00000002 , 0x00004571 
+ 00019741  0x0000288a store  0x00000002 , 0x0000446c 
+ 00019742  0x0000288b fetch  0x00000008 , 0x00004573 
+ 00019743  0x0000288c istore  0x00000008 , 0x00000005 
+ 00019744  0x0000288d force  0x0000000f , 0x00000002 
+ 00019745  0x0000288e branch  0x00004f89 
+ 00019746  0x00002891 arg  0x0000446c , 0x00000005 
+ 00019747  0x00002892 force  0x00000008 , 0x00000039 
+ 00019748  0x00002893 call  0x00005918 
+ 00019749  0x00002894 force  0x0000000f , 0x00000002 
+ 00019750  0x00002895 branch  0x00004f89 
+ 00019751  0x00002898 jam  0x00000049 , 0x000009bd 
+ 00019752  0x00002899 call  0x00004bd6 
+ 00019753  0x0000289a setarg  0x00000000 
+ 00019754  0x0000289b store  0x00000008 , 0x0000446c 
+ 00019755  0x0000289c istore  0x00000008 , 0x00000005 
+ 00019756  0x0000289d branch  0x00004f81 
+ 00019757  0x000028a2 fetch  0x00000001 , 0x00004532 
+ 00019758  0x000028a3 store  0x00000001 , 0x0000446c 
+ 00019759  0x000028a4 fetch  0x00000006 , 0x0000453e 
+ 00019760  0x000028a5 istore  0x00000006 , 0x00000005 
+ 00019761  0x000028a6 branch  0x00004f81 
+ 00019762  0x000028a9 arg  0x0000446c , 0x00000005 
+ 00019763  0x000028aa call  0x00005917 
+ 00019764  0x000028ab branch  0x00004f81 
+ 00019765  0x000028ae fetch  0x00000001 , 0x000044df 
+ 00019766  0x000028af store  0x00000001 , 0x0000446c 
+ 00019767  0x000028b0 force  0x00000006 , 0x00000002 
+ 00019768  0x000028b1 branch  0x00004f89 
+ 00019769  0x000028b5 fetch  0x00000001 , 0x000003da 
+ 00019770  0x000028b6 beq  0x00000003 , 0x00004d4e 
+ 00019771  0x000028b9 arg  0x00000041 , 0x00000002 
+ 00019772  0x000028ba storet  0x00000002 , 0x00004467 
+ 00019773  0x000028bb set1  0x00000025 , 0x00000000 
+ 00019774  0x000028bc bpatch  0x00000034 , 0x00004026 
+ 00019775  0x000028bd arg  0x00000002 , 0x00000001 
+ 00019776  0x000028be setarg  0x00000006 
+ 00019777  0x000028bf store  0x00000002 , 0x00004469 
+ 00019778  0x000028c1 arg  0x0000446c , 0x00000005 
+ 00019779  0x000028c2 arg  0x00000016 , 0x00000039 
+ 00019780  0x000028c3 arg  0x0000465a , 0x00000006 
+ 00019781  0x000028c4 call  0x00007ec0 
+ 00019782  0x000028c5 jam  0x00000016 , 0x000003db 
+ 00019783  0x000028c7 jam  0x0000001b , 0x00004466 
+ 00019784  0x000028c9 fetcht  0x00000001 , 0x00000379 
+ 00019785  0x000028ca set1  0x00000004 , 0x00000002 
+ 00019786  0x000028cb storet  0x00000001 , 0x00000379 
+ 00019787  0x000028d0 jam  0x00000003 , 0x000003da 
+ 00019788  0x000028d1 fetcht  0x00000001 , 0x00000379 
+ 00019789  0x000028d2 branch  0x00004f93 
+ 00019790  0x000028d6 jam  0x00000000 , 0x000003da 
+ 00019791  0x000028d8 fetch  0x00000001 , 0x000003db 
+ 00019792  0x000028d9 beq  0x00000016 , 0x00004d5e 
+ 00019793  0x000028db arg  0x0000000f , 0x00000039 
+ 00019794  0x000028dc jam  0x0000000f , 0x00004466 
+ 00019795  0x000028dd call  0x00004d58 
+ 00019796  0x000028de jam  0x00000002 , 0x00004564 
+ 00019797  0x000028df jam  0x00000003 , 0x00004566 
+ 00019798  0x000028e0 jam  0x00000000 , 0x000003db 
+ 00019799  0x000028e1 rtn 
+ 00019800  0x000028e3 arg  0x0000465a , 0x00000006 
+ 00019801  0x000028e4 iadd  0x00000006 , 0x00000006 
+ 00019802  0x000028e5 arg  0x00004467 , 0x00000005 
+ 00019803  0x000028e6 call  0x00007ec0 
+ 00019804  0x000028e7 arg  0x00000001 , 0x00000001 
+ 00019805  0x000028e8 branch  0x00004f90 
+ 00019806  0x000028ec jam  0x00000031 , 0x000003db 
+ 00019807  0x000028ed arg  0x0000001b , 0x00000039 
+ 00019808  0x000028ee jam  0x0000001b , 0x00004466 
+ 00019809  0x000028ef call  0x00004d58 
+ 00019810  0x000028f1 jam  0x00000003 , 0x000003da 
+ 00019811  0x000028f5 rtn 
+ 00019812  0x000028f8 call  0x00006e86 
+ 00019813  0x000028f9 arg  0x0000446c , 0x00000005 
+ 00019814  0x000028fa call  0x00006f24 
+ 00019815  0x000028fb force  0x00000015 , 0x00000002 
+ 00019816  0x000028fc branch  0x00004f89 
+ 00019817  0x000028ff store  0x00000008 , 0x0000446c 
+ 00019818  0x00002900 ifetch  0x00000008 , 0x00000006 
+ 00019819  0x00002901 istore  0x00000008 , 0x00000005 
+ 00019820  0x00002902 force  0x00000015 , 0x00000002 
+ 00019821  0x00002903 rtn 
+ 00019822  0x00002906 jam  0x0000000a , 0x0000039d 
+ 00019823  0x00002908 jam  0x00000001 , 0x0000446b 
+ 00019824  0x00002909 fetch  0x00000003 , 0x0000039a 
+ 00019825  0x0000290a store  0x00000003 , 0x0000446c 
+ 00019826  0x0000290b fetch  0x00000001 , 0x0000039d 
+ 00019827  0x0000290c istore  0x00000001 , 0x00000005 
+ 00019828  0x0000290d branch  0x00004f81 
+ 00019829  0x00002911 fetch  0x00000002 , 0x0000454c 
+ 00019830  0x00002912 istore  0x00000002 , 0x00000005 
+ 00019831  0x00002913 branch  0x00004f81 
+ 00019832  0x00002916 fetch  0x00000002 , 0x000044e3 
+ 00019833  0x00002917 store  0x00000002 , 0x0000446c 
+ 00019834  0x00002918 fetch  0x00000002 , 0x000044e5 
+ 00019835  0x00002919 istore  0x00000002 , 0x00000005 
+ 00019836  0x0000291a branch  0x00004f81 
+ 00019837  0x0000291f arg  0x00000002 , 0x0000000b 
+ 00019838  0x00002920 force  0x00000001 , 0x0000003f 
+ 00019839  0x00002921 store  0x00000001 , 0x0000446c 
+ 00019840  0x00002922 call  0x000051e0 
+ 00019841  0x00002924 call  0x000051ea 
+ 00019842  0x00002925 branch  0x00004d91 , 0x00000034 
+ 00019843  0x00002926 nbranch  0x00004d8e , 0x00000002 
+ 00019844  0x00002927 disable  0x00000028 
+ 00019845  0x00002928 istore  0x00000002 , 0x00000005 
+ 00019846  0x00002929 ifetch  0x00000001 , 0x00000006 
+ 00019847  0x0000292a copy  0x0000003f , 0x00000039 
+ 00019848  0x0000292b call  0x00007ec0 
+ 00019849  0x0000292c increase  0xffffffff , 0x0000000b 
+ 00019850  0x0000292d branch  0x00004d91 , 0x00000005 
+ 00019851  0x0000292f ifetch  0x00000001 , 0x00000006 
+ 00019852  0x00002930 iadd  0x00000006 , 0x00000006 
+ 00019853  0x00002931 branch  0x00004d81 
+ 00019854  0x00002933 ifetch  0x00000001 , 0x00000006 
+ 00019855  0x00002934 iadd  0x00000006 , 0x00000006 
+ 00019856  0x00002935 branch  0x00004d8b 
+ 00019857  0x00002937 branch  0x00004d6e , 0x00000028 
+ 00019858  0x00002938 branch  0x00004f81 
+ 00019859  0x0000293c fetch  0x00000002 , 0x000044e3 
+ 00019860  0x0000293d branch  0x00004c4d , 0x00000034 
+ 00019861  0x0000293e store  0x00000002 , 0x0000446c 
+ 00019862  0x0000293f fetch  0x00000002 , 0x000044e5 
+ 00019863  0x00002941 istore  0x00000002 , 0x00000005 
+ 00019864  0x00002942 fetch  0x00000002 , 0x000044fb 
+ 00019865  0x00002944 istore  0x00000002 , 0x00000005 
+ 00019866  0x00002945 fetch  0x00000002 , 0x000044e8 
+ 00019867  0x00002947 istore  0x00000002 , 0x00000005 
+ 00019868  0x00002948 branch  0x00004f81 
+ 00019869  0x0000294c disable  0x00000028 
+ 00019870  0x0000294d fetcht  0x00000002 , 0x000044e3 
+ 00019871  0x0000294e fetch  0x00000002 , 0x000044e5 
+ 00019872  0x0000294f isub  0x00000002 , 0x0000003e 
+ 00019873  0x00002950 nbranch  0x00004da4 , 0x00000002 
+ 00019874  0x00002951 deposit  0x00000002 
+ 00019875  0x00002952 rtnne  0x00000000 
+ 00019876  0x00002954 enable  0x00000028 
+ 00019877  0x00002955 jam  0x00000001 , 0x0000039d 
+ 00019878  0x00002956 branch  0x00004d6f 
+ 00019879  0x00002959 call  0x00004d9d 
+ 00019880  0x0000295a rtn  0x00000028 
+ 00019881  0x0000295b fetcht  0x00000002 , 0x000044fb 
+ 00019882  0x0000295c setarg  0x00002800 
+ 00019883  0x0000295d isub  0x00000002 , 0x0000003e 
+ 00019884  0x0000295e branch  0x00004db7 , 0x00000005 
+ 00019885  0x0000295f setarg  0x00002801 
+ 00019886  0x00002960 isub  0x00000002 , 0x0000003e 
+ 00019887  0x00002961 branch  0x00004d6e , 0x00000005 
+ 00019888  0x00002962 setarg  0x00002802 
+ 00019889  0x00002963 isub  0x00000002 , 0x0000003e 
+ 00019890  0x00002964 branch  0x00004d6e , 0x00000005 
+ 00019891  0x00002965 setarg  0x00002803 
+ 00019892  0x00002966 isub  0x00000002 , 0x0000003e 
+ 00019893  0x00002967 branch  0x00004d6e , 0x00000005 
+ 00019894  0x00002968 branch  0x00004d6e 
+ 00019895  0x0000296b jam  0x00000000 , 0x000003d9 
+ 00019896  0x0000296c fetcht  0x00000002 , 0x000044e3 
+ 00019897  0x0000296d storet  0x00000002 , 0x000009c6 
+ 00019898  0x0000296e call  0x0000521a 
+ 00019899  0x0000296f nbranch  0x00004d6e , 0x00000034 
+ 00019900  0x00002971 fetcht  0x00000002 , 0x000009c6 
+ 00019901  0x00002972 call  0x0000521a 
+ 00019902  0x00002973 nbranch  0x00004dd0 , 0x00000034 
+ 00019903  0x00002974 copy  0x00000006 , 0x00000011 
+ 00019904  0x00002975 fetch  0x00000001 , 0x000003d8 
+ 00019905  0x00002976 copy  0x0000003f , 0x00000039 
+ 00019906  0x00002977 fetcht  0x00000001 , 0x000044e7 
+ 00019907  0x00002978 isub  0x00000002 , 0x0000003e 
+ 00019908  0x00002979 nbranch  0x00004dcc , 0x00000005 
+ 00019909  0x0000297a arg  0x000044e8 , 0x00000012 
+ 00019910  0x0000297b call  0x00007f55 
+ 00019911  0x0000297d branch  0x00004dd3 , 0x00000005 
+ 00019912  0x0000297f fetch  0x00000002 , 0x000003c8 
+ 00019913  0x00002980 fetcht  0x00000002 , 0x000044fb 
+ 00019914  0x00002981 isub  0x00000002 , 0x0000003e 
+ 00019915  0x00002982 branch  0x00004ddb , 0x00000005 
+ 00019916  0x00002984 fetch  0x00000002 , 0x000009c6 
+ 00019917  0x00002985 increase  0x00000001 , 0x0000003f 
+ 00019918  0x00002986 store  0x00000002 , 0x000009c6 
+ 00019919  0x00002987 branch  0x00004dbc 
+ 00019920  0x0000298a fetch  0x00000001 , 0x000003d9 
+ 00019921  0x0000298b beq  0x00000001 , 0x00004ddb 
+ 00019922  0x0000298c branch  0x00004d6e 
+ 00019923  0x00002990 fetch  0x00000002 , 0x000003c8 
+ 00019924  0x00002991 fetcht  0x00000002 , 0x000044fb 
+ 00019925  0x00002992 isub  0x00000002 , 0x0000003e 
+ 00019926  0x00002993 nbranch  0x00004dcc , 0x00000005 
+ 00019927  0x00002994 jam  0x00000001 , 0x000003d9 
+ 00019928  0x00002996 fetcht  0x00000002 , 0x000009c6 
+ 00019929  0x00002997 storet  0x00000002 , 0x000003c3 
+ 00019930  0x00002998 branch  0x00004dcc 
+ 00019931  0x0000299b fetch  0x00000001 , 0x000003d9 
+ 00019932  0x0000299c beq  0x00000000 , 0x00004dcc 
+ 00019933  0x0000299d jam  0x00000002 , 0x000003d9 
+ 00019934  0x0000299e fetcht  0x00000002 , 0x000009c6 
+ 00019935  0x0000299f increase  0xffffffff , 0x00000002 
+ 00019936  0x000029a0 storet  0x00000002 , 0x000003c5 
+ 00019937  0x000029a2 fetch  0x00000002 , 0x000003c3 
+ 00019938  0x000029a3 icopy  0x00000011 
+ 00019939  0x000029a4 fetch  0x00000002 , 0x000003c5 
+ 00019940  0x000029a5 icopy  0x00000012 
+ 00019941  0x000029a6 jam  0x00000007 , 0x0000446b 
+ 00019942  0x000029a7 deposit  0x00000011 
+ 00019943  0x000029a8 store  0x00000002 , 0x0000446c 
+ 00019944  0x000029a9 deposit  0x00000012 
+ 00019945  0x000029aa istore  0x00000002 , 0x00000005 
+ 00019946  0x000029ab force  0x00000009 , 0x00000002 
+ 00019947  0x000029ac branch  0x00004f89 
+ 00019948  0x000029b0 fetch  0x00000002 , 0x000044e3 
+ 00019949  0x000029b2 istore  0x00000002 , 0x00000005 
+ 00019950  0x000029b3 fetch  0x00000002 , 0x000044e5 
+ 00019951  0x000029b5 istore  0x00000002 , 0x00000005 
+ 00019952  0x000029b6 fetch  0x00000002 , 0x000044e8 
+ 00019953  0x000029b7 istore  0x00000002 , 0x00000005 
+ 00019954  0x000029b8 force  0x0000000b , 0x00000002 
+ 00019955  0x000029b9 branch  0x00004f89 
+ 00019956  0x000029be fetcht  0x00000002 , 0x000044e3 
+ 00019957  0x000029bf storet  0x00000002 , 0x000009c6 
+ 00019958  0x000029c0 call  0x000051e0 
+ 00019959  0x000029c1 call  0x000051f8 
+ 00019960  0x000029c2 increase  0xfffffffe , 0x00000006 
+ 00019961  0x000029c3 copy  0x00000006 , 0x0000003f 
+ 00019962  0x000029c4 store  0x00000002 , 0x000003c1 
+ 00019963  0x000029c6 fetcht  0x00000002 , 0x000044fb 
+ 00019964  0x000029c7 setarg  0x00002803 
+ 00019965  0x000029c8 isub  0x00000002 , 0x0000003e 
+ 00019966  0x000029c9 nbranch  0x00004e3d , 0x00000005 
+ 00019967  0x000029ca arg  0x00000002 , 0x0000000b 
+ 00019968  0x000029cb set1  0x00000025 , 0x00000000 
+ 00019969  0x000029cc bpatch  0x00000035 , 0x00004026 
+ 00019970  0x000029ce call  0x00004eff 
+ 00019971  0x000029cf nbranch  0x00004e13 , 0x00000002 
+ 00019972  0x000029d0 fetcht  0x00000002 , 0x000009c6 
+ 00019973  0x000029d1 call  0x00005217 
+ 00019974  0x000029d2 beq  0x00000001 , 0x00004e13 
+ 00019975  0x000029d3 call  0x00004f0b 
+ 00019976  0x000029d4 nbranch  0x00004e11 , 0x00000005 
+ 00019977  0x000029d5 nbranch  0x00004e15 , 0x00000028 
+ 00019978  0x000029d6 disable  0x00000028 
+ 00019979  0x000029d8 call  0x00004e28 
+ 00019980  0x000029d9 call  0x00004efb 
+ 00019981  0x000029da call  0x00005217 
+ 00019982  0x000029db call  0x00004e2f 
+ 00019983  0x000029dc increase  0xffffffff , 0x0000000b 
+ 00019984  0x000029dd branch  0x00004e13 , 0x00000005 
+ 00019985  0x000029df call  0x00004efb 
+ 00019986  0x000029e0 branch  0x00004e02 
+ 00019987  0x000029e2 branch  0x00004d6e , 0x00000028 
+ 00019988  0x000029e3 branch  0x00004f13 
+ 00019989  0x000029e6 call  0x00004f0e 
+ 00019990  0x000029e7 call  0x00004efb 
+ 00019991  0x000029e8 call  0x00005217 
+ 00019992  0x000029e9 fetch  0x00000001 , 0x0000446c 
+ 00019993  0x000029ea beq  0x00000015 , 0x00004e13 
+ 00019994  0x000029eb fetch  0x00000001 , 0x000003c7 
+ 00019995  0x000029ec increase  0x00000005 , 0x0000003f 
+ 00019996  0x000029ed fetcht  0x00000001 , 0x0000446c 
+ 00019997  0x000029ee isub  0x00000002 , 0x0000003e 
+ 00019998  0x000029ef nbranch  0x00004e13 , 0x00000005 
+ 00019999  0x000029f1 call  0x00007e64 
+ 00020000  0x000029f2 fetch  0x00000002 , 0x000009c6 
+ 00020001  0x000029f3 increase  0xffffffff , 0x0000003f 
+ 00020002  0x000029f4 istore  0x00000002 , 0x00000005 
+ 00020003  0x000029f5 call  0x00004f1a 
+ 00020004  0x000029f6 call  0x00004e2f 
+ 00020005  0x000029f7 increase  0xffffffff , 0x0000000b 
+ 00020006  0x000029f8 branch  0x00004e13 , 0x00000005 
+ 00020007  0x000029f9 branch  0x00004e11 
+ 00020008  0x000029fb fetch  0x00000002 , 0x000009c6 
+ 00020009  0x000029fc store  0x00000002 , 0x0000446d 
+ 00020010  0x000029fe fetch  0x00000001 , 0x000003d8 
+ 00020011  0x000029ff copy  0x0000003f , 0x00000039 
+ 00020012  0x00002a00 call  0x00007e67 
+ 00020013  0x00002a01 call  0x00007ec0 
+ 00020014  0x00002a02 branch  0x00007e6a 
+ 00020015  0x00002a04 call  0x00007e64 
+ 00020016  0x00002a05 fetch  0x00000002 , 0x000009c6 
+ 00020017  0x00002a06 istore  0x00000002 , 0x00000005 
+ 00020018  0x00002a07 call  0x00007e6a 
+ 00020019  0x00002a08 fetch  0x00000001 , 0x000003c7 
+ 00020020  0x00002a09 copy  0x0000003f , 0x00000039 
+ 00020021  0x00002a0a increase  0x00000005 , 0x0000003f 
+ 00020022  0x00002a0b store  0x00000001 , 0x0000446c 
+ 00020023  0x00002a0c call  0x00007e64 
+ 00020024  0x00002a0d call  0x00007e67 
+ 00020025  0x00002a0e isub  0x00000039 , 0x00000006 
+ 00020026  0x00002a0f increase  0xffffffff , 0x00000006 
+ 00020027  0x00002a10 call  0x00007ec0 
+ 00020028  0x00002a11 branch  0x00007e6a 
+ 00020029  0x00002a16 fetcht  0x00000002 , 0x000044e3 
+ 00020030  0x00002a17 storet  0x00000002 , 0x000009c6 
+ 00020031  0x00002a19 call  0x00004eff 
+ 00020032  0x00002a1a nbranch  0x00004d6e , 0x00000002 
+ 00020033  0x00002a1b call  0x00005217 
+ 00020034  0x00002a1c beq  0x00000001 , 0x00004d6e 
+ 00020035  0x00002a1d call  0x00004f0b 
+ 00020036  0x00002a1e nbranch  0x00004e56 , 0x00000005 
+ 00020037  0x00002a20 fetch  0x00000001 , 0x000044fa 
+ 00020038  0x00002a21 bne  0x00000002 , 0x00004e4d 
+ 00020039  0x00002a22 fetch  0x00000002 , 0x000044fb 
+ 00020040  0x00002a23 arg  0x00002a00 , 0x00000002 
+ 00020041  0x00002a24 isub  0x00000002 , 0x0000003e 
+ 00020042  0x00002a25 nbranch  0x00004e4d , 0x00000005 
+ 00020043  0x00002a26 fetch  0x00000001 , 0x00004440 
+ 00020044  0x00002a27 branch  0x00004e4e 
+ 00020045  0x00002a29 fetch  0x00000001 , 0x000003d8 
+ 00020046  0x00002a2b copy  0x0000003f , 0x00000039 
+ 00020047  0x00002a2c increase  0x00000002 , 0x0000003f 
+ 00020048  0x00002a2d store  0x00000001 , 0x0000446c 
+ 00020049  0x00002a2e fetch  0x00000002 , 0x000009c6 
+ 00020050  0x00002a2f istore  0x00000002 , 0x00000005 
+ 00020051  0x00002a30 call  0x00007e67 
+ 00020052  0x00002a31 call  0x00007ec0 
+ 00020053  0x00002a32 branch  0x00004f81 
+ 00020054  0x00002a34 call  0x00004efb 
+ 00020055  0x00002a35 branch  0x00004e3f 
+ 00020056  0x00002a39 fetch  0x00000001 , 0x00004464 
+ 00020057  0x00002a3b increase  0xffffffff , 0x0000003f 
+ 00020058  0x00002a3c store  0x00000001 , 0x00004464 
+ 00020059  0x00002a3d lshift  0x0000003f , 0x0000003f 
+ 00020060  0x00002a3f iadd  0x00000006 , 0x00000006 
+ 00020061  0x00002a40 ifetcht  0x00000002 , 0x00000006 
+ 00020062  0x00002a41 storet  0x00000002 , 0x0000446c 
+ 00020063  0x00002a42 branch  0x00004f81 
+ 00020064  0x00002a45 fetch  0x00000001 , 0x000045a8 
+ 00020065  0x00002a46 bbit0  0x00000000 , 0x00004e66 
+ 00020066  0x00002a47 fetch  0x00000002 , 0x0000039b 
+ 00020067  0x00002a48 fetcht  0x00000002 , 0x0000458b 
+ 00020068  0x00002a49 isub  0x00000002 , 0x0000003e 
+ 00020069  0x00002a4a branch  0x00004e71 , 0x00000005 
+ 00020070  0x00002a4c fetcht  0x00000002 , 0x0000039b 
+ 00020071  0x00002a4d call  0x000051f5 
+ 00020072  0x00002a4e branch  0x00004d6e , 0x00000034 
+ 00020073  0x00002a4f ifetch  0x00000001 , 0x00000006 
+ 00020074  0x00002a50 branch  0x00004f81 , 0x00000034 
+ 00020075  0x00002a51 sub  0x0000003f , 0x00000016 , 0x0000003e 
+ 00020076  0x00002a52 branch  0x00004e6e , 0x00000002 
+ 00020077  0x00002a53 force  0x00000016 , 0x0000003f 
+ 00020078  0x00002a55 icopy  0x00000039 
+ 00020079  0x00002a56 call  0x00007ec0 
+ 00020080  0x00002a57 branch  0x00004f81 
+ 00020081  0x00002a5a fetch  0x00000001 , 0x0000456c 
+ 00020082  0x00002a5b branch  0x00004e66 , 0x00000034 
+ 00020083  0x00002a5c fetch  0x00000001 , 0x00000362 
+ 00020084  0x00002a5d bbit1  0x00000004 , 0x00004e66 
+ 00020085  0x00002a5e jam  0x00000005 , 0x0000039d 
+ 00020086  0x00002a5f branch  0x00004d6f 
+ 00020087  0x00002a62 setarg  0x00000003 
+ 00020088  0x00002a63 store  0x00000002 , 0x0000446c 
+ 00020089  0x00002a64 setarg  0x00000008 
+ 00020090  0x00002a65 istore  0x00000002 , 0x00000005 
+ 00020091  0x00002a66 branch  0x00004f81 
+ 00020092  0x00002a69 fetch  0x00000002 , 0x000044e7 
+ 00020093  0x00002a6a iforce  0x00000011 
+ 00020094  0x00002a6b fetcht  0x00000002 , 0x0000039b 
+ 00020095  0x00002a6c call  0x000051f5 
+ 00020096  0x00002a6d branch  0x00004d6e , 0x00000034 
+ 00020097  0x00002a6e ifetch  0x00000001 , 0x00000006 
+ 00020098  0x00002a6f isub  0x00000011 , 0x00000039 
+ 00020099  0x00002a70 nbranch  0x00004d6e , 0x00000002 
+ 00020100  0x00002a71 sub  0x00000039 , 0x00000016 , 0x0000003e 
+ 00020101  0x00002a72 branch  0x00004e87 , 0x00000002 
+ 00020102  0x00002a73 force  0x00000016 , 0x00000039 
+ 00020103  0x00002a75 deposit  0x00000011 
+ 00020104  0x00002a76 iadd  0x00000006 , 0x00000006 
+ 00020105  0x00002a77 call  0x00007ec0 
+ 00020106  0x00002a78 branch  0x00004f81 
+ 00020107  0x00002a7b setarg  0x00000003 
+ 00020108  0x00002a7c istore  0x00000002 , 0x00000005 
+ 00020109  0x00002a7d setarg  0x00000007 
+ 00020110  0x00002a7e istore  0x00000002 , 0x00000005 
+ 00020111  0x00002a7f setarg  0x00000009 
+ 00020112  0x00002a80 istore  0x00000002 , 0x00000005 
+ 00020113  0x00002a81 branch  0x00004f81 
+ 00020114  0x00002a84 fetch  0x00000001 , 0x00004464 
+ 00020115  0x00002a85 icopy  0x00000013 
+ 00020116  0x00002a87 arg  0x00000309 , 0x00000011 
+ 00020117  0x00002a88 arg  0x0000446c , 0x00000012 
+ 00020118  0x00002a89 arg  0x00000000 , 0x0000000b 
+ 00020119  0x00002a8a disable  0x00000031 
+ 00020120  0x00002a8d copy  0x00000011 , 0x00000006 
+ 00020121  0x00002a8e ifetcht  0x00000002 , 0x00000006 
+ 00020122  0x00002a8f copy  0x00000006 , 0x00000011 
+ 00020123  0x00002a90 call  0x000051f5 
+ 00020124  0x00002a91 branch  0x00004eab , 0x00000034 
+ 00020125  0x00002a92 ifetch  0x00000001 , 0x00000006 
+ 00020126  0x00002a93 icopy  0x00000039 
+ 00020127  0x00002a94 iadd  0x0000000b , 0x0000000b 
+ 00020128  0x00002a98 sub  0x0000000b , 0x00000018 , 0x0000003e 
+ 00020129  0x00002a99 nbranch  0x00004eb0 , 0x00000002 
+ 00020130  0x00002a9a copy  0x00000012 , 0x00000005 
+ 00020131  0x00002a9d ifetch  0x00000001 , 0x00000006 
+ 00020132  0x00002a9e istore  0x00000001 , 0x00000005 
+ 00020133  0x00002a9f loop  0x00004ea3 
+ 00020134  0x00002aa0 copy  0x00000005 , 0x00000012 
+ 00020135  0x00002aa1 enable  0x00000031 
+ 00020136  0x00002aa2 increase  0xffffffff , 0x00000013 
+ 00020137  0x00002aa3 branch  0x00004eab , 0x00000005 
+ 00020138  0x00002aa4 branch  0x00004e98 
+ 00020139  0x00002aa7 nbranch  0x00004eb6 , 0x00000031 
+ 00020140  0x00002aa8 disable  0x00000031 
+ 00020141  0x00002aa9 copy  0x0000000b , 0x00000002 
+ 00020142  0x00002aaa increase  0x00000005 , 0x00000002 
+ 00020143  0x00002aab branch  0x00004f89 
+ 00020144  0x00002aae nbranch  0x00004eb6 , 0x00000031 
+ 00020145  0x00002aaf disable  0x00000031 
+ 00020146  0x00002ab0 deposit  0x0000000b 
+ 00020147  0x00002ab1 isub  0x00000039 , 0x00000002 
+ 00020148  0x00002ab2 increase  0x00000005 , 0x00000002 
+ 00020149  0x00002ab3 branch  0x00004f89 
+ 00020150  0x00002ab6 jam  0x00000010 , 0x0000039d 
+ 00020151  0x00002ab7 branch  0x00004d6f 
+ 00020152  0x00002abb fetch  0x00000002 , 0x0000039b 
+ 00020153  0x00002abc branch  0x00004c4d , 0x00000034 
+ 00020154  0x00002abd istore  0x00000002 , 0x00000005 
+ 00020155  0x00002abe setarg  0x0000ffff 
+ 00020156  0x00002abf istore  0x00000002 , 0x00000005 
+ 00020157  0x00002ac0 setarg  0x00002800 
+ 00020158  0x00002ac1 istore  0x00000002 , 0x00000005 
+ 00020159  0x00002ac2 branch  0x00004f81 
+ 00020160  0x00002ac9 arg  0x00000002 , 0x0000000b 
+ 00020161  0x00002aca fetch  0x00000002 , 0x000044e3 
+ 00020162  0x00002acb store  0x00000002 , 0x000009c6 
+ 00020163  0x00002acc jam  0x00000000 , 0x000003d9 
+ 00020164  0x00002ace fetcht  0x00000002 , 0x000044e3 
+ 00020165  0x00002acf storet  0x00000002 , 0x000009c6 
+ 00020166  0x00002ad0 call  0x000051e0 
+ 00020167  0x00002ad1 call  0x000051f8 
+ 00020168  0x00002ad2 increase  0xfffffffe , 0x00000006 
+ 00020169  0x00002ad3 copy  0x00000006 , 0x0000003f 
+ 00020170  0x00002ad4 store  0x00000002 , 0x000003c1 
+ 00020171  0x00002ad5 set1  0x00000025 , 0x00000000 
+ 00020172  0x00002ad6 bpatch  0x00000036 , 0x00004026 
+ 00020173  0x00002ad8 call  0x00004eff 
+ 00020174  0x00002ad9 nbranch  0x00004ef1 , 0x00000002 
+ 00020175  0x00002ada fetcht  0x00000002 , 0x000009c6 
+ 00020176  0x00002adb call  0x00005217 
+ 00020177  0x00002adc beq  0x00000001 , 0x00004ef4 
+ 00020178  0x00002ade call  0x00004f03 
+ 00020179  0x00002adf nbranch  0x00004eed , 0x00000005 
+ 00020180  0x00002ae0 fetch  0x00000001 , 0x000003d9 
+ 00020181  0x00002ae1 beq  0x00000001 , 0x00004ef4 
+ 00020182  0x00002ae2 nbranch  0x00004edd , 0x00000028 
+ 00020183  0x00002ae3 disable  0x00000028 
+ 00020184  0x00002ae4 fetch  0x00000001 , 0x000003d8 
+ 00020185  0x00002ae5 increase  0x00000004 , 0x0000003f 
+ 00020186  0x00002ae6 store  0x00000001 , 0x0000446c 
+ 00020187  0x00002ae7 call  0x00007e6a 
+ 00020188  0x00002ae8 branch  0x00004ee8 
+ 00020189  0x00002aea fetch  0x00000001 , 0x0000446c 
+ 00020190  0x00002aeb beq  0x00000014 , 0x00004ef4 
+ 00020191  0x00002aec fetch  0x00000001 , 0x000003d8 
+ 00020192  0x00002aed increase  0x00000004 , 0x0000003f 
+ 00020193  0x00002aee fetcht  0x00000001 , 0x0000446c 
+ 00020194  0x00002aef isub  0x00000002 , 0x0000003e 
+ 00020195  0x00002af0 nbranch  0x00004ef4 , 0x00000005 
+ 00020196  0x00002af4 fetch  0x00000002 , 0x000009c6 
+ 00020197  0x00002af5 increase  0xffffffff , 0x0000003f 
+ 00020198  0x00002af6 store  0x00000002 , 0x000003c5 
+ 00020199  0x00002af7 call  0x00004f15 
+ 00020200  0x00002af9 fetch  0x00000002 , 0x000009c6 
+ 00020201  0x00002afa store  0x00000002 , 0x000003c3 
+ 00020202  0x00002afb call  0x00004f0e 
+ 00020203  0x00002afc increase  0xffffffff , 0x0000000b 
+ 00020204  0x00002afd branch  0x00004eef , 0x00000005 
+ 00020205  0x00002aff call  0x00004efb 
+ 00020206  0x00002b00 branch  0x00004ecd 
+ 00020207  0x00002b02 jam  0x00000001 , 0x000003d9 
+ 00020208  0x00002b03 branch  0x00004eed 
+ 00020209  0x00002b05 fetch  0x00000002 , 0x000009c6 
+ 00020210  0x00002b06 store  0x00000002 , 0x000003c5 
+ 00020211  0x00002b07 branch  0x00004ef8 
+ 00020212  0x00002b09 fetch  0x00000002 , 0x000009c6 
+ 00020213  0x00002b0a increase  0xffffffff , 0x0000003f 
+ 00020214  0x00002b0b store  0x00000002 , 0x000003c5 
+ 00020215  0x00002b0c branch  0x00004ef8 
+ 00020216  0x00002b0e branch  0x00004d6e , 0x00000028 
+ 00020217  0x00002b0f call  0x00004f15 
+ 00020218  0x00002b10 branch  0x00004f13 
+ 00020219  0x00002b14 fetcht  0x00000002 , 0x000009c6 
+ 00020220  0x00002b15 increase  0x00000001 , 0x00000002 
+ 00020221  0x00002b16 storet  0x00000002 , 0x000009c6 
+ 00020222  0x00002b17 rtn 
+ 00020223  0x00002b1a fetcht  0x00000002 , 0x000009c6 
+ 00020224  0x00002b1b fetch  0x00000002 , 0x000044e5 
+ 00020225  0x00002b1c isub  0x00000002 , 0x0000003e 
+ 00020226  0x00002b1d rtn 
+ 00020227  0x00002b20 fetcht  0x00000001 , 0x000044e7 
+ 00020228  0x00002b21 arg  0x000044e8 , 0x00000011 
+ 00020229  0x00002b23 fetch  0x00000001 , 0x000003c7 
+ 00020230  0x00002b24 copy  0x0000003f , 0x00000039 
+ 00020231  0x00002b25 isub  0x00000002 , 0x0000003e 
+ 00020232  0x00002b26 nrtn  0x00000005 
+ 00020233  0x00002b27 arg  0x000003c8 , 0x00000012 
+ 00020234  0x00002b28 branch  0x00007f55 
+ 00020235  0x00002b2b fetcht  0x00000001 , 0x000044fa 
+ 00020236  0x00002b2c arg  0x000044fb , 0x00000011 
+ 00020237  0x00002b2d branch  0x00004f05 
+ 00020238  0x00002b31 fetch  0x00000001 , 0x000003d8 
+ 00020239  0x00002b32 store  0x00000001 , 0x00000100 
+ 00020240  0x00002b33 copy  0x0000003f , 0x00000039 
+ 00020241  0x00002b34 call  0x00007e67 
+ 00020242  0x00002b35 branch  0x00007ec0 
+ 00020243  0x00002b38 call  0x00007e64 
+ 00020244  0x00002b39 branch  0x00004f81 
+ 00020245  0x00002b3c call  0x00007e64 
+ 00020246  0x00002b3d fetch  0x00000002 , 0x000003c3 
+ 00020247  0x00002b3e istore  0x00000002 , 0x00000005 
+ 00020248  0x00002b3f fetch  0x00000002 , 0x000003c5 
+ 00020249  0x00002b40 istore  0x00000002 , 0x00000005 
+ 00020250  0x00002b42 fetch  0x00000001 , 0x00000100 
+ 00020251  0x00002b43 copy  0x0000003f , 0x00000039 
+ 00020252  0x00002b44 call  0x00007ec0 
+ 00020253  0x00002b45 branch  0x00007e6a 
+ 00020254  0x00002b48 fetch  0x00000002 , 0x000044f8 
+ 00020255  0x00002b49 store  0x00000002 , 0x0000446c 
+ 00020256  0x00002b4a fetch  0x00000001 , 0x0000450b 
+ 00020257  0x00002b4b copy  0x0000003f , 0x00000039 
+ 00020258  0x00002b4c arg  0x0000450c , 0x00000006 
+ 00020259  0x00002b4d call  0x00007ec0 
+ 00020260  0x00002b4e branch  0x00004f81 
+ 00020261  0x00002b52 force  0x00000005 , 0x00000002 
+ 00020262  0x00002b53 branch  0x00004f89 
+ 00020263  0x00002b56 force  0x00000006 , 0x00000002 
+ 00020264  0x00002b57 branch  0x00004f89 
+ 00020265  0x00002b5a fetch  0x00000001 , 0x000003da 
+ 00020266  0x00002b5b beq  0x00000001 , 0x00004f2e 
+ 00020267  0x00002b5c beq  0x00000002 , 0x00004f30 
+ 00020268  0x00002b5d jam  0x00000000 , 0x000003da 
+ 00020269  0x00002b5e rtn 
+ 00020270  0x00002b61 fetch  0x00000002 , 0x0000429e 
+ 00020271  0x00002b62 branch  0x00007f69 
+ 00020272  0x00002b65 fetch  0x00000002 , 0x000045a0 
+ 00020273  0x00002b66 branch  0x00003b31 , 0x00000034 
+ 00020274  0x00002b67 fetcht  0x00000002 , 0x000045a6 
+ 00020275  0x00002b68 branch  0x00003b31 , 0x00000034 
+ 00020276  0x00002b69 isub  0x00000002 , 0x0000003f 
+ 00020277  0x00002b6a arg  0x0000001b , 0x00000002 
+ 00020278  0x00002b6b call  0x00007faf 
+ 00020279  0x00002b6c copy  0x0000003f , 0x00000039 
+ 00020280  0x00002b71 arg  0x00000a41 , 0x00000011 
+ 00020281  0x00002b72 fetch  0x00000002 , 0x000045a6 
+ 00020282  0x00002b73 iadd  0x00000011 , 0x00000011 
+ 00020283  0x00002b74 iadd  0x00000039 , 0x0000003f 
+ 00020284  0x00002b75 store  0x00000002 , 0x000045a6 
+ 00020285  0x00002b76 fetcht  0x00000002 , 0x000045a0 
+ 00020286  0x00002b77 isub  0x00000002 , 0x00000002 
+ 00020287  0x00002b78 ncall  0x00004f5e , 0x00000005 
+ 00020288  0x00002b79 jam  0x00000002 , 0x000003da 
+ 00020289  0x00002b7a arg  0x00004467 , 0x00000005 
+ 00020290  0x00002b7b copy  0x00000011 , 0x00000006 
+ 00020291  0x00002b7c call  0x00007ec0 
+ 00020292  0x00002b7d arg  0x00000001 , 0x00000001 
+ 00020293  0x00002b7e branch  0x00004f59 
+ 00020294  0x00002b82 fetch  0x00000002 , 0x000045a0 
+ 00020295  0x00002b83 branch  0x00003b31 , 0x00000034 
+ 00020296  0x00002b84 add  0x0000003f , 0x00000005 , 0x00000002 
+ 00020297  0x00002b85 storet  0x00000002 , 0x00004467 
+ 00020298  0x00002b86 arg  0x00000012 , 0x00000002 
+ 00020299  0x00002b87 call  0x00007faf 
+ 00020300  0x00002b88 copy  0x0000003f , 0x00000039 
+ 00020301  0x00002b89 store  0x00000002 , 0x000045a6 
+ 00020302  0x00002b8c fetcht  0x00000002 , 0x000045a0 
+ 00020303  0x00002b8d isub  0x00000002 , 0x00000002 
+ 00020304  0x00002b8e ncall  0x00004f5e , 0x00000005 
+ 00020305  0x00002b8f jam  0x00000002 , 0x000003da 
+ 00020306  0x00002b90 arg  0x00000002 , 0x00000001 
+ 00020307  0x00002b94 fetch  0x00000002 , 0x000045a4 
+ 00020308  0x00002b95 store  0x00000002 , 0x0000446c 
+ 00020309  0x00002b96 fetch  0x00000002 , 0x000045a2 
+ 00020310  0x00002b97 istore  0x00000002 , 0x00000005 
+ 00020311  0x00002b9c arg  0x00000a41 , 0x00000006 
+ 00020312  0x00002b9d call  0x00007ec0 
+ 00020313  0x00002b9f setarg  0x00004467 
+ 00020314  0x00002ba0 isub  0x00000005 , 0x0000003f 
+ 00020315  0x00002ba1 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020316  0x00002ba2 storet  0x00000001 , 0x00004466 
+ 00020317  0x00002ba3 branch  0x00004f90 
+ 00020318  0x00002ba7 fetch  0x00000003 , 0x00004544 
+ 00020319  0x00002ba8 nbranch  0x00004f62 , 0x00000034 
+ 00020320  0x00002ba9 jam  0x0000001f , 0x00004546 
+ 00020321  0x00002baa rtn 
+ 00020322  0x00002bac call  0x00004bd4 
+ 00020323  0x00002bad nbranch  0x00003b31 , 0x00000034 
+ 00020324  0x00002bae jam  0x0000001f , 0x00004545 
+ 00020325  0x00002baf rtn 
+ 00020326  0x00002bb4 force  0x00000006 , 0x00000002 
+ 00020327  0x00002bb5 branch  0x00004f89 
+ 00020328  0x00002bb8 force  0x00000005 , 0x00000002 
+ 00020329  0x00002bb9 branch  0x00004f89 
+ 00020330  0x00002bbc set1  0x00000025 , 0x00000000 
+ 00020331  0x00002bbd bpatch  0x00000037 , 0x00004026 
+ 00020332  0x00002bbe increase  0x00000001 , 0x00000002 
+ 00020333  0x00002bbf call  0x000051f5 
+ 00020334  0x00002bc0 increase  0xfffffffe , 0x00000006 
+ 00020335  0x00002bc1 ifetch  0x00000002 , 0x00000006 
+ 00020336  0x00002bc2 arg  0x00002902 , 0x00000002 
+ 00020337  0x00002bc3 isub  0x00000002 , 0x0000003e 
+ 00020338  0x00002bc4 nrtn  0x00000005 
+ 00020339  0x00002bc5 increase  0x00000001 , 0x00000006 
+ 00020340  0x00002bc6 copy  0x00000006 , 0x00000011 
+ 00020341  0x00002bc7 ifetch  0x00000001 , 0x00000006 
+ 00020342  0x00002bc8 rtn 
+ 00020343  0x00002bcb fetch  0x00000002 , 0x0000429c 
+ 00020344  0x00002bcc branch  0x00007f69 
+ 00020345  0x00002bcf force  0x00000006 , 0x00000002 
+ 00020346  0x00002bd0 branch  0x00004f89 
+ 00020347  0x00002bd3 force  0x00000006 , 0x00000002 
+ 00020348  0x00002bd4 branch  0x00004f89 
+ 00020349  0x00002bd7 force  0x00000006 , 0x00000002 
+ 00020350  0x00002bd8 branch  0x00004f89 
+ 00020351  0x00002bdb force  0x00000006 , 0x00000002 
+ 00020352  0x00002bdc branch  0x00004f89 
+ 00020353  0x00002be0 set1  0x00000025 , 0x00000000 
+ 00020354  0x00002be1 bpatch  0x00000038 , 0x00004027 
+ 00020355  0x00002be2 setarg  0x00004467 
+ 00020356  0x00002be3 isub  0x00000005 , 0x0000003f 
+ 00020357  0x00002be4 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020358  0x00002be5 branch  0x00004f89 
+ 00020359  0x00002be9 force  0x00000000 , 0x00000002 
+ 00020360  0x00002bea force  0x00000001 , 0x00000001 
+ 00020361  0x00002bed set1  0x00000025 , 0x00000000 
+ 00020362  0x00002bee bpatch  0x00000039 , 0x00004027 
+ 00020363  0x00002bef storet  0x00000001 , 0x00004466 
+ 00020364  0x00002bf0 compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00020365  0x00002bf1 nbranch  0x00004f90 , 0x00000001 
+ 00020366  0x00002bf2 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00020367  0x00002bf3 store  0x00000002 , 0x00004467 
+ 00020368  0x00002bf6 fetcht  0x00000001 , 0x00000379 
+ 00020369  0x00002bf7 call  0x00004bd0 
+ 00020370  0x00002bf9 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00020371  0x00002bfb set1  0x00000005 , 0x00000002 
+ 00020372  0x00002bfc and  0x00000002 , 0x000000fc , 0x0000003f 
+ 00020373  0x00002bfd ior  0x00000001 , 0x0000003f 
+ 00020374  0x00002bfe store  0x00000001 , 0x00000379 
+ 00020375  0x00002bff and_into  0x0000001f , 0x0000003f 
+ 00020376  0x00002c00 store  0x00000001 , 0x00004465 
+ 00020377  0x00002c01 set1  0x00000025 , 0x00000000 
+ 00020378  0x00002c02 bpatch  0x0000003a , 0x00004027 
+ 00020379  0x00002c03 fetch  0x00000001 , 0x00004465 
+ 00020380  0x00002c04 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00020381  0x00002c05 nbranch  0x00004fa0 , 0x00000001 
+ 00020382  0x00002c06 fetch  0x00000001 , 0x00004466 
+ 00020383  0x00002c07 rtn  0x00000034 
+ 00020384  0x00002c09 fetch  0x00000007 , 0x00004466 
+ 00020385  0x00002c0a fetch  0x00000001 , 0x00000362 
+ 00020386  0x00002c0b rtnbit0  0x00000004 
+ 00020387  0x00002c0c call  0x000071b6 
+ 00020388  0x00002c0d branch  0x00007109 
+ 00020389  0x00002c10 set1  0x00000025 , 0x00000000 
+ 00020390  0x00002c11 bpatch  0x0000003b , 0x00004027 
+ 00020391  0x00002c12 call  0x00004bd2 
+ 00020392  0x00002c13 nbranch  0x00003b31 , 0x00000034 
+ 00020393  0x00002c14 nrtn  0x00000034 
+ 00020394  0x00002c15 fetch  0x00000001 , 0x00000303 
+ 00020395  0x00002c16 rtn  0x00000034 
+ 00020396  0x00002c17 fetch  0x00000001 , 0x00000302 
+ 00020397  0x00002c18 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00020398  0x00002c19 branch  0x00005307 , 0x00000001 
+ 00020399  0x00002c1a fetch  0x00000007 , 0x00000303 
+ 00020400  0x00002c1b fetch  0x00000001 , 0x00000302 
+ 00020401  0x00002c1c compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00020402  0x00002c1d branch  0x00004fcb , 0x00000001 
+ 00020403  0x00002c1f fetch  0x00000001 , 0x00000304 
+ 00020404  0x00002c20 store  0x00000001 , 0x000003bb 
+ 00020405  0x00002c21 copy  0x0000003f , 0x00000013 
+ 00020406  0x00002c22 set1  0x00000025 , 0x00000000 
+ 00020407  0x00002c23 bpatch  0x0000003c , 0x00004027 
+ 00020408  0x00002c24 copy  0x00000013 , 0x0000003f 
+ 00020409  0x00002c25 beq  0x00000000 , 0x0000501f 
+ 00020410  0x00002c26 beq  0x00000001 , 0x0000502b 
+ 00020411  0x00002c27 beq  0x00000002 , 0x00005033 
+ 00020412  0x00002c28 beq  0x00000003 , 0x00005039 
+ 00020413  0x00002c29 beq  0x00000004 , 0x0000504a 
+ 00020414  0x00002c2a beq  0x00000005 , 0x0000504f 
+ 00020415  0x00002c2b beq  0x00000006 , 0x00005054 
+ 00020416  0x00002c2c beq  0x00000007 , 0x00005059 
+ 00020417  0x00002c2d beq  0x00000008 , 0x0000505a 
+ 00020418  0x00002c2e beq  0x00000009 , 0x0000505c 
+ 00020419  0x00002c2f beq  0x0000000a , 0x0000505d 
+ 00020420  0x00002c30 beq  0x0000000b , 0x00005062 
+ 00020421  0x00002c31 beq  0x0000000c , 0x00005065 
+ 00020422  0x00002c32 beq  0x0000000d , 0x00005068 
+ 00020423  0x00002c33 beq  0x00000012 , 0x00005063 
+ 00020424  0x00002c34 store  0x00000001 , 0x00004550 
+ 00020425  0x00002c35 jam  0x00000027 , 0x000009bd 
+ 00020426  0x00002c36 branch  0x00004bd6 
+ 00020427  0x00002c39 fetch  0x00000001 , 0x00000303 
+ 00020428  0x00002c3a and  0x0000003f , 0x0000001f , 0x0000003f 
+ 00020429  0x00002c3b rtn  0x00000034 
+ 00020430  0x00002c3c fetch  0x00000002 , 0x00000304 
+ 00020431  0x00002c3d store  0x00000002 , 0x0000039e 
+ 00020432  0x00002c3e fetch  0x00000002 , 0x00000306 
+ 00020433  0x00002c3f beq  0x00000004 , 0x0000500d 
+ 00020434  0x00002c40 beq  0x00000006 , 0x00004ffb 
+ 00020435  0x00002c41 rtn 
+ 00020436  0x00002c44 jam  0x00000001 , 0x00004569 
+ 00020437  0x00002c45 fetch  0x00000001 , 0x0000039a 
+ 00020438  0x00002c46 beq  0x00000012 , 0x00004fea 
+ 00020439  0x00002c47 beq  0x00000016 , 0x00004fee 
+ 00020440  0x00002c48 beq  0x00000052 , 0x00004fe6 
+ 00020441  0x00002c49 jam  0x00000000 , 0x00004569 
+ 00020442  0x00002c4a rtn 
+ 00020443  0x00002c4e fetch  0x00000001 , 0x00000303 
+ 00020444  0x00002c4f icopy  0x00000012 
+ 00020445  0x00002c50 arg  0x00000304 , 0x00000011 
+ 00020446  0x00002c51 call  0x0000516d 
+ 00020447  0x00002c53 fetch  0x00000001 , 0x00000303 
+ 00020448  0x00002c54 fetcht  0x00000002 , 0x0000459a 
+ 00020449  0x00002c55 iadd  0x00000002 , 0x0000003f 
+ 00020450  0x00002c57 store  0x00000002 , 0x0000459a 
+ 00020451  0x00002c58 fetcht  0x00000002 , 0x0000459c 
+ 00020452  0x00002c59 isub  0x00000002 , 0x0000003e 
+ 00020453  0x00002c5a rtn 
+ 00020454  0x00002c5d call  0x00004fdb 
+ 00020455  0x00002c5e nrtn  0x00000005 
+ 00020456  0x00002c5f jam  0x00000000 , 0x00004569 
+ 00020457  0x00002c60 rtn 
+ 00020458  0x00002c63 call  0x00004fdb 
+ 00020459  0x00002c64 nrtn  0x00000005 
+ 00020460  0x00002c65 jam  0x00000000 , 0x00004569 
+ 00020461  0x00002c66 branch  0x00005123 
+ 00020462  0x00002c69 fetcht  0x00000002 , 0x000045a0 
+ 00020463  0x00002c6a fetch  0x00000001 , 0x00000303 
+ 00020464  0x00002c6b icopy  0x00000039 
+ 00020465  0x00002c6c iadd  0x00000002 , 0x0000003f 
+ 00020466  0x00002c6d store  0x00000002 , 0x000045a0 
+ 00020467  0x00002c6f arg  0x00000a41 , 0x0000003f 
+ 00020468  0x00002c70 iadd  0x00000002 , 0x00000005 
+ 00020469  0x00002c71 arg  0x00000304 , 0x00000006 
+ 00020470  0x00002c72 call  0x00007ec0 
+ 00020471  0x00002c74 call  0x00004fdb 
+ 00020472  0x00002c75 nrtn  0x00000005 
+ 00020473  0x00002c76 jam  0x00000000 , 0x00004569 
+ 00020474  0x00002c77 branch  0x00005169 
+ 00020475  0x00002c7e set1  0x00000025 , 0x00000000 
+ 00020476  0x00002c7f bpatch  0x0000003d , 0x00004027 
+ 00020477  0x00002c80 ifetch  0x00000001 , 0x00000006 
+ 00020478  0x00002c81 beq  0x00000001 , 0x00005069 
+ 00020479  0x00002c82 beq  0x00000002 , 0x0000508b 
+ 00020480  0x00002c83 beq  0x00000003 , 0x00005090 
+ 00020481  0x00002c84 beq  0x00000004 , 0x000050a0 
+ 00020482  0x00002c85 beq  0x00000005 , 0x000050a8 
+ 00020483  0x00002c86 beq  0x00000006 , 0x000050d5 
+ 00020484  0x00002c87 beq  0x00000007 , 0x000050d7 
+ 00020485  0x00002c88 beq  0x00000008 , 0x000050d8 
+ 00020486  0x00002c89 beq  0x00000009 , 0x000050e0 
+ 00020487  0x00002c8a beq  0x0000000a , 0x000050e3 
+ 00020488  0x00002c8b beq  0x0000000b , 0x000050e4 
+ 00020489  0x00002c8c beq  0x0000000c , 0x000050c9 
+ 00020490  0x00002c8d beq  0x0000000d , 0x000050d0 
+ 00020491  0x00002c8e jam  0x00000045 , 0x000009bd 
+ 00020492  0x00002c8f branch  0x00004bd6 
+ 00020493  0x00002c92 set1  0x00000025 , 0x00000000 
+ 00020494  0x00002c93 bpatch  0x0000003e , 0x00004027 
+ 00020495  0x00002c94 ifetch  0x00000003 , 0x00000006 
+ 00020496  0x00002c95 store  0x00000003 , 0x0000039a 
+ 00020497  0x00002c97 beq  0x00000002 , 0x000050e8 
+ 00020498  0x00002c98 beq  0x00000003 , 0x000050e5 
+ 00020499  0x00002c99 beq  0x00000004 , 0x000050eb 
+ 00020500  0x00002c9b beq  0x00000006 , 0x000050ee 
+ 00020501  0x00002c9d beq  0x00000008 , 0x000050f8 
+ 00020502  0x00002c9f beq  0x0000000a , 0x0000510c 
+ 00020503  0x00002ca1 beq  0x0000000c , 0x00005110 
+ 00020504  0x00002ca3 beq  0x0000000e , 0x00005114 
+ 00020505  0x00002ca5 beq  0x00000010 , 0x0000511a 
+ 00020506  0x00002ca7 beq  0x00000012 , 0x00005120 
+ 00020507  0x00002ca9 beq  0x00000016 , 0x00005142 
+ 00020508  0x00002cab beq  0x00000018 , 0x0000516b 
+ 00020509  0x00002cb0 beq  0x00000052 , 0x0000511e 
+ 00020510  0x00002cb2 rtn 
+ 00020511  0x00002cb6 ifetch  0x00000009 , 0x00000006 
+ 00020512  0x00002cb7 store  0x00000009 , 0x0000445b 
+ 00020513  0x00002cb8 ifetch  0x00000002 , 0x00000006 
+ 00020514  0x00002cb9 store  0x00000002 , 0x00000382 
+ 00020515  0x00002cba fetch  0x00000001 , 0x00000362 
+ 00020516  0x00002cbb set1  0x00000005 , 0x0000003f 
+ 00020517  0x00002cbc store  0x00000001 , 0x00000362 
+ 00020518  0x00002cbd fetch  0x00000001 , 0x00004132 
+ 00020519  0x00002cbe rtnne  0x00000009 
+ 00020520  0x00002cbf jam  0x00000000 , 0x00004131 
+ 00020521  0x00002cc0 jam  0x0000001e , 0x000048c7 
+ 00020522  0x00002cc1 rtn 
+ 00020523  0x00002cc4 ifetch  0x00000005 , 0x00000006 
+ 00020524  0x00002cc5 store  0x00000005 , 0x00004456 
+ 00020525  0x00002cc6 ifetch  0x00000002 , 0x00000006 
+ 00020526  0x00002cc7 store  0x00000002 , 0x00000382 
+ 00020527  0x00002cc8 fetch  0x00000001 , 0x00000362 
+ 00020528  0x00002cc9 set1  0x00000006 , 0x0000003f 
+ 00020529  0x00002cca store  0x00000001 , 0x00000362 
+ 00020530  0x00002ccb rtn 
+ 00020531  0x00002cce fetch  0x00000001 , 0x00004132 
+ 00020532  0x00002ccf bne  0x00000009 , 0x00005036 
+ 00020533  0x00002cd0 jam  0x00000001 , 0x000048bb 
+ 00020534  0x00002cd2 setarg  0x00000014 
+ 00020535  0x00002cd3 store  0x00000002 , 0x00000390 
+ 00020536  0x00002cd4 rtn 
+ 00020537  0x00002cd7 ifetch  0x00000008 , 0x00000006 
+ 00020538  0x00002cd8 store  0x00000008 , 0x00004573 
+ 00020539  0x00002cd9 ifetch  0x00000002 , 0x00000006 
+ 00020540  0x00002cda store  0x00000002 , 0x00004571 
+ 00020541  0x00002cdb ifetch  0x00000008 , 0x00000006 
+ 00020542  0x00002cdc store  0x00000008 , 0x00004551 
+ 00020543  0x00002cdd ifetch  0x00000004 , 0x00000006 
+ 00020544  0x00002cde store  0x00000004 , 0x0000449a 
+ 00020545  0x00002cdf jam  0x00000024 , 0x000009bd 
+ 00020546  0x00002ce0 call  0x00004bd6 
+ 00020547  0x00002ce1 jam  0x00000001 , 0x0000456b 
+ 00020548  0x00002ce2 fetch  0x00000001 , 0x0000456a 
+ 00020549  0x00002ce3 rtneq  0x00000002 
+ 00020550  0x00002ce4 fetch  0x00000001 , 0x00004132 
+ 00020551  0x00002ce5 beq  0x00000009 , 0x00006418 
+ 00020552  0x00002ce6 rtnne  0x0000000a 
+ 00020553  0x00002ce7 branch  0x0000640c 
+ 00020554  0x00002cea ifetch  0x00000008 , 0x00000006 
+ 00020555  0x00002ceb store  0x00000008 , 0x00004559 
+ 00020556  0x00002cec ifetch  0x00000004 , 0x00000006 
+ 00020557  0x00002ced store  0x00000004 , 0x0000449e 
+ 00020558  0x00002cee branch  0x000070c8 
+ 00020559  0x00002cf1 fetch  0x00000001 , 0x00000362 
+ 00020560  0x00002cf2 set1  0x00000004 , 0x0000003f 
+ 00020561  0x00002cf3 store  0x00000001 , 0x00000362 
+ 00020562  0x00002cf4 jam  0x00000026 , 0x000009bd 
+ 00020563  0x00002cf5 branch  0x00004bd6 
+ 00020564  0x00002cf8 rtn  0x00000029 
+ 00020565  0x00002cf9 jam  0x00000026 , 0x000009bd 
+ 00020566  0x00002cfa call  0x00004bd6 
+ 00020567  0x00002cfb jam  0x00000032 , 0x000009bd 
+ 00020568  0x00002cfc branch  0x00007d86 
+ 00020569  0x00002cff rtn 
+ 00020570  0x00002d02 jam  0x00000029 , 0x000009bd 
+ 00020571  0x00002d03 branch  0x00004bd6 
+ 00020572  0x00002d06 rtn 
+ 00020573  0x00002d09 jam  0x00000002 , 0x0000456b 
+ 00020574  0x00002d0a jam  0x0000002b , 0x000009bd 
+ 00020575  0x00002d0b call  0x00004bd6 
+ 00020576  0x00002d0c jam  0x00000033 , 0x000009bd 
+ 00020577  0x00002d0d branch  0x00007d86 
+ 00020578  0x00002d11 rtn 
+ 00020579  0x00002d14 jam  0x00000033 , 0x000009bd 
+ 00020580  0x00002d15 branch  0x00004bd6 
+ 00020581  0x00002d18 rtn  0x00000029 
+ 00020582  0x00002d19 jam  0x0000002c , 0x000009bd 
+ 00020583  0x00002d1a branch  0x00004bd6 
+ 00020584  0x00002d1d rtn 
+ 00020585  0x00002d21 store  0x00000001 , 0x000044d5 
+ 00020586  0x00002d22 ifetch  0x00000006 , 0x00000006 
+ 00020587  0x00002d23 istore  0x00000006 , 0x00000005 
+ 00020588  0x00002d24 jam  0x00000042 , 0x000009bd 
+ 00020589  0x00002d25 call  0x00004bd6 
+ 00020590  0x00002d26 fetch  0x00000001 , 0x00004132 
+ 00020591  0x00002d27 beq  0x00000009 , 0x0000507b 
+ 00020592  0x00002d28 call  0x00005086 
+ 00020593  0x00002d29 jam  0x00000001 , 0x0000456a 
+ 00020594  0x00002d2a fetch  0x00000001 , 0x000044d6 
+ 00020595  0x00002d2b beq  0x00000000 , 0x00005078 
+ 00020596  0x00002d2c beq  0x00000001 , 0x00005078 
+ 00020597  0x00002d2d beq  0x00000003 , 0x00005078 
+ 00020598  0x00002d2e fetch  0x00000001 , 0x0000456c 
+ 00020599  0x00002d2f beq  0x00000002 , 0x0000507d 
+ 00020600  0x00002d31 arg  0x00000000 , 0x0000003f 
+ 00020601  0x00002d32 store  0x00000004 , 0x0000456d 
+ 00020602  0x00002d33 rtn 
+ 00020603  0x00002d35 jam  0x00000001 , 0x000048ba 
+ 00020604  0x00002d36 rtn 
+ 00020605  0x00002d39 arg  0x0000456d , 0x00000011 
+ 00020606  0x00002d3a copy  0x00000011 , 0x00000005 
+ 00020607  0x00002d3b arg  0x00000003 , 0x00000039 
+ 00020608  0x00002d3c call  0x00005918 
+ 00020609  0x00002d3d fetch  0x00000002 , 0x0000456f 
+ 00020610  0x00002d3e and_into  0x00000007 , 0x0000003f 
+ 00020611  0x00002d3f store  0x00000002 , 0x0000456f 
+ 00020612  0x00002d40 jam  0x00000034 , 0x000009bd 
+ 00020613  0x00002d41 branch  0x00007d86 
+ 00020614  0x00002d44 fetch  0x00000001 , 0x000044d8 
+ 00020615  0x00002d45 rtnbit1  0x00000003 
+ 00020616  0x00002d46 fetch  0x00000001 , 0x0000456c 
+ 00020617  0x00002d47 rtnbit0  0x00000007 
+ 00020618  0x00002d48 branch  0x00003e6b 
+ 00020619  0x00002d4c store  0x00000001 , 0x000044dc 
+ 00020620  0x00002d4d ifetch  0x00000006 , 0x00000006 
+ 00020621  0x00002d4e istore  0x00000006 , 0x00000005 
+ 00020622  0x00002d4f jam  0x00000043 , 0x000009bd 
+ 00020623  0x00002d50 branch  0x00004bd6 
+ 00020624  0x00002d53 copy  0x00000006 , 0x00000011 
+ 00020625  0x00002d54 fetch  0x00000001 , 0x0000456c 
+ 00020626  0x00002d55 beq  0x00000083 , 0x0000509a 
+ 00020627  0x00002d56 copy  0x00000011 , 0x00000006 
+ 00020628  0x00002d57 arg  0x000044b3 , 0x00000005 
+ 00020629  0x00002d58 call  0x00007e87 
+ 00020630  0x00002d59 jam  0x00000044 , 0x000009bd 
+ 00020631  0x00002d5a branch  0x00004bd6 , 0x00000029 
+ 00020632  0x00002d5b jam  0x00000043 , 0x000009bd 
+ 00020633  0x00002d5c branch  0x00004bd6 
+ 00020634  0x00002d5e copy  0x00000011 , 0x00000006 
+ 00020635  0x00002d5f arg  0x000044b3 , 0x00000005 
+ 00020636  0x00002d60 call  0x00007e87 
+ 00020637  0x00002d61 jam  0x00000002 , 0x00004564 
+ 00020638  0x00002d62 jam  0x00000008 , 0x00004566 
+ 00020639  0x00002d63 rtn 
+ 00020640  0x00002d66 copy  0x00000006 , 0x00000011 
+ 00020641  0x00002d67 fetch  0x00000001 , 0x00004563 
+ 00020642  0x00002d68 beq  0x00000001 , 0x000050ab 
+ 00020643  0x00002d69 copy  0x00000011 , 0x00000006 
+ 00020644  0x00002d6a call  0x000070ba 
+ 00020645  0x00002d6b branch  0x000050c0 , 0x00000005 
+ 00020646  0x00002d6d jam  0x00000045 , 0x000009bd 
+ 00020647  0x00002d6e call  0x00004bd6 
+ 00020648  0x00002d70 jam  0x00000000 , 0x0000456a 
+ 00020649  0x00002d71 jam  0x00000030 , 0x000009bd 
+ 00020650  0x00002d72 branch  0x00007d86 
+ 00020651  0x00002d75 arg  0x00000352 , 0x00000005 
+ 00020652  0x00002d76 copy  0x00000011 , 0x00000006 
+ 00020653  0x00002d77 call  0x00007e87 
+ 00020654  0x00002d78 fetch  0x00000001 , 0x0000456c 
+ 00020655  0x00002d79 beq  0x00000083 , 0x000050b6 
+ 00020656  0x00002d7a call  0x00006e6e 
+ 00020657  0x00002d7d jam  0x00000044 , 0x000009bd 
+ 00020658  0x00002d7e call  0x00004bd6 
+ 00020659  0x00002d7f fetch  0x00000001 , 0x0000456c 
+ 00020660  0x00002d80 beq  0x00000082 , 0x00005d60 
+ 00020661  0x00002d81 rtn 
+ 00020662  0x00002d84 call  0x00006edc 
+ 00020663  0x00002d85 arg  0x00000a11 , 0x00000005 
+ 00020664  0x00002d86 call  0x00006f24 
+ 00020665  0x00002d87 arg  0x00000a11 , 0x00000011 
+ 00020666  0x00002d88 arg  0x000044b3 , 0x00000012 
+ 00020667  0x00002d89 arg  0x00000010 , 0x00000039 
+ 00020668  0x00002d8a call  0x00007f55 
+ 00020669  0x00002d8b nbranch  0x000052d8 , 0x00000005 
+ 00020670  0x00002d8c jam  0x00000044 , 0x000009bd 
+ 00020671  0x00002d8d branch  0x00004bd6 
+ 00020672  0x00002d90 call  0x000070b5 
+ 00020673  0x00002d91 jam  0x00000031 , 0x000009bd 
+ 00020674  0x00002d92 call  0x00007d86 
+ 00020675  0x00002d93 jam  0x00000001 , 0x000044b2 
+ 00020676  0x00002d94 jam  0x00000002 , 0x0000456a 
+ 00020677  0x00002d95 jam  0x00000023 , 0x000009bd 
+ 00020678  0x00002d96 branch  0x00004bd6 , 0x00000029 
+ 00020679  0x00002d97 jam  0x00000044 , 0x000009bd 
+ 00020680  0x00002d98 branch  0x00004bd6 
+ 00020681  0x00002d9d fetch  0x00000001 , 0x00000303 
+ 00020682  0x00002d9e increase  0xfffffffb , 0x0000003f 
+ 00020683  0x00002d9f store  0x00000001 , 0x000003db 
+ 00020684  0x00002da0 copy  0x0000003f , 0x00000039 
+ 00020685  0x00002da1 arg  0x000008e2 , 0x00000005 
+ 00020686  0x00002da2 increase  0x00000005 , 0x00000006 
+ 00020687  0x00002da3 branch  0x00007ec0 
+ 00020688  0x00002da6 arg  0x00000992 , 0x00000005 
+ 00020689  0x00002da7 call  0x00007e87 
+ 00020690  0x00002da8 jam  0x00000006 , 0x00004566 
+ 00020691  0x00002da9 jam  0x00000002 , 0x00004564 
+ 00020692  0x00002daa rtn 
+ 00020693  0x00002dac arg  0x00000342 , 0x00000005 
+ 00020694  0x00002dad branch  0x00007e87 
+ 00020695  0x00002db0 rtn 
+ 00020696  0x00002db3 arg  0x0000457b , 0x00000005 
+ 00020697  0x00002db4 call  0x00007e87 
+ 00020698  0x00002db5 fetch  0x00000001 , 0x0000452b 
+ 00020699  0x00002db6 rtneq  0x00000000 
+ 00020700  0x00002db7 fetch  0x00000001 , 0x00000377 
+ 00020701  0x00002db8 compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00020702  0x00002db9 rtn  0x00000001 
+ 00020703  0x00002dba branch  0x00003e7b 
+ 00020704  0x00002dbd jam  0x00000003 , 0x0000456b 
+ 00020705  0x00002dbe jam  0x00000003 , 0x0000456a 
+ 00020706  0x00002dbf rtn 
+ 00020707  0x00002dc2 rtn 
+ 00020708  0x00002dc5 rtn 
+ 00020709  0x00002dc9 fetch  0x00000002 , 0x00000309 
+ 00020710  0x00002dca store  0x00000002 , 0x0000454e 
+ 00020711  0x00002dcb rtn 
+ 00020712  0x00002dce call  0x000050e5 
+ 00020713  0x00002dcf jam  0x00000003 , 0x000009bd 
+ 00020714  0x00002dd0 branch  0x00004bd6 
+ 00020715  0x00002dd3 call  0x000050fc 
+ 00020716  0x00002dd4 jam  0x00000005 , 0x000009bd 
+ 00020717  0x00002dd5 branch  0x00004bd6 
+ 00020718  0x00002dda call  0x000050fc 
+ 00020719  0x00002ddb ifetch  0x00000002 , 0x00000006 
+ 00020720  0x00002ddc store  0x00000002 , 0x000044fb 
+ 00020721  0x00002ddd call  0x00007e6d 
+ 00020722  0x00002dde arg  0x000044e7 , 0x00000005 
+ 00020723  0x00002ddf fetch  0x00000002 , 0x0000039e 
+ 00020724  0x00002de0 increase  0xfffffff9 , 0x0000003f 
+ 00020725  0x00002de1 call  0x00005105 
+ 00020726  0x00002de2 jam  0x00000007 , 0x000009bd 
+ 00020727  0x00002de3 branch  0x00004bd6 
+ 00020728  0x00002de8 call  0x000050fc 
+ 00020729  0x00002de9 call  0x00005109 
+ 00020730  0x00002dea jam  0x00000009 , 0x000009bd 
+ 00020731  0x00002deb branch  0x00004bd6 
+ 00020732  0x00002def rshift8  0x0000003f , 0x0000003f 
+ 00020733  0x00002df0 store  0x00000002 , 0x000044e3 
+ 00020734  0x00002df1 ifetch  0x00000002 , 0x00000006 
+ 00020735  0x00002df2 store  0x00000002 , 0x000044e5 
+ 00020736  0x00002df3 rtn 
+ 00020737  0x00002df6 call  0x00007e6d 
+ 00020738  0x00002df7 arg  0x000044e7 , 0x00000005 
+ 00020739  0x00002df9 fetch  0x00000002 , 0x0000039e 
+ 00020740  0x00002dfa increase  0xfffffffb , 0x0000003f 
+ 00020741  0x00002dfc istore  0x00000001 , 0x00000005 
+ 00020742  0x00002dfd copy  0x0000003f , 0x00000039 
+ 00020743  0x00002dfe call  0x00007e67 
+ 00020744  0x00002dff branch  0x00007ec0 
+ 00020745  0x00002e02 call  0x00007e6d 
+ 00020746  0x00002e03 arg  0x000044fa , 0x00000005 
+ 00020747  0x00002e04 branch  0x00005103 
+ 00020748  0x00002e0a fetch  0x00000002 , 0x00000309 
+ 00020749  0x00002e0b store  0x00000002 , 0x0000039b 
+ 00020750  0x00002e0c jam  0x0000000b , 0x000009bd 
+ 00020751  0x00002e0d branch  0x00004bd6 
+ 00020752  0x00002e12 ifetch  0x00000002 , 0x00000006 
+ 00020753  0x00002e13 store  0x00000002 , 0x000044e7 
+ 00020754  0x00002e14 jam  0x0000000d , 0x000009bd 
+ 00020755  0x00002e15 branch  0x00004bd6 
+ 00020756  0x00002e19 fetch  0x00000001 , 0x00000303 
+ 00020757  0x00002e1a increase  0xfffffffb , 0x0000003f 
+ 00020758  0x00002e1b rshift  0x0000003f , 0x0000003f 
+ 00020759  0x00002e1c store  0x00000001 , 0x00004464 
+ 00020760  0x00002e1d jam  0x0000000f , 0x000009bd 
+ 00020761  0x00002e1e branch  0x00004bd6 
+ 00020762  0x00002e22 call  0x000050fc 
+ 00020763  0x00002e23 call  0x00005101 
+ 00020764  0x00002e25 jam  0x00000011 , 0x000009bd 
+ 00020765  0x00002e26 branch  0x00004bd6 
+ 00020766  0x00002e29 call  0x0000512f 
+ 00020767  0x00002e2a branch  0x00005125 
+ 00020768  0x00002e2d call  0x0000512f 
+ 00020769  0x00002e2e call  0x00005125 
+ 00020770  0x00002e2f nrtn  0x00000005 
+ 00020771  0x00002e31 jam  0x00000013 , 0x000009bd 
+ 00020772  0x00002e32 branch  0x00004bd6 
+ 00020773  0x00002e35 fetch  0x00000001 , 0x00000303 
+ 00020774  0x00002e36 increase  0xfffffffc , 0x0000003f 
+ 00020775  0x00002e37 store  0x00000002 , 0x0000459a 
+ 00020776  0x00002e38 increase  0xfffffffd , 0x0000003f 
+ 00020777  0x00002e3a ifetcht  0x00000002 , 0x00000006 
+ 00020778  0x00002e3b storet  0x00000002 , 0x0000459c 
+ 00020779  0x00002e3c storet  0x00000002 , 0x0000459e 
+ 00020780  0x00002e3d increase  0xfffffffd , 0x00000002 
+ 00020781  0x00002e3e isub  0x00000002 , 0x0000003e 
+ 00020782  0x00002e3f rtn 
+ 00020783  0x00002e42 fetch  0x00000001 , 0x00000303 
+ 00020784  0x00002e43 increase  0xfffffff9 , 0x0000003f 
+ 00020785  0x00002e44 icopy  0x00000039 
+ 00020786  0x00002e45 copy  0x00000039 , 0x00000012 
+ 00020787  0x00002e46 fetch  0x00000001 , 0x000045a8 
+ 00020788  0x00002e47 bbit0  0x00000001 , 0x00005140 
+ 00020789  0x00002e48 fetcht  0x00000002 , 0x0000039b 
+ 00020790  0x00002e49 call  0x000051f5 
+ 00020791  0x00002e4a rtn  0x00000034 
+ 00020792  0x00002e4b ifetch  0x00000001 , 0x00000006 
+ 00020793  0x00002e4c isub  0x00000039 , 0x0000003e 
+ 00020794  0x00002e4d branch  0x0000513c , 0x00000002 
+ 00020795  0x00002e4e copy  0x0000003f , 0x00000039 
+ 00020796  0x00002e50 copy  0x00000006 , 0x00000005 
+ 00020797  0x00002e51 copy  0x00000039 , 0x00000012 
+ 00020798  0x00002e52 arg  0x0000030b , 0x00000006 
+ 00020799  0x00002e53 call  0x00007ec0 
+ 00020800  0x00002e55 arg  0x0000030b , 0x00000011 
+ 00020801  0x00002e56 branch  0x0000516d 
+ 00020802  0x00002e5a fetch  0x00000001 , 0x00000303 
+ 00020803  0x00002e5b increase  0xfffffffc , 0x0000003f 
+ 00020804  0x00002e5c store  0x00000002 , 0x0000459a 
+ 00020805  0x00002e5d ifetcht  0x00000002 , 0x00000006 
+ 00020806  0x00002e5e storet  0x00000002 , 0x0000459c 
+ 00020807  0x00002e5f increase  0xfffffffe , 0x00000002 
+ 00020808  0x00002e60 storet  0x00000002 , 0x0000459e 
+ 00020809  0x00002e62 fetch  0x00000001 , 0x00000303 
+ 00020810  0x00002e63 increase  0xfffffff7 , 0x0000003f 
+ 00020811  0x00002e64 store  0x00000002 , 0x000045a0 
+ 00020812  0x00002e66 icopy  0x00000039 
+ 00020813  0x00002e67 copy  0x00000039 , 0x00000012 
+ 00020814  0x00002e68 fetch  0x00000001 , 0x000045a8 
+ 00020815  0x00002e69 bbit0  0x00000001 , 0x0000515b 
+ 00020816  0x00002e6a fetcht  0x00000002 , 0x0000039b 
+ 00020817  0x00002e6b call  0x000051f5 
+ 00020818  0x00002e6c branch  0x00005169 , 0x00000034 
+ 00020819  0x00002e6d ifetch  0x00000001 , 0x00000006 
+ 00020820  0x00002e6e isub  0x00000039 , 0x0000003e 
+ 00020821  0x00002e6f branch  0x00005157 , 0x00000002 
+ 00020822  0x00002e70 copy  0x0000003f , 0x00000039 
+ 00020823  0x00002e72 copy  0x00000006 , 0x00000005 
+ 00020824  0x00002e73 copy  0x00000039 , 0x00000012 
+ 00020825  0x00002e74 arg  0x0000030d , 0x00000006 
+ 00020826  0x00002e75 call  0x00007ec0 
+ 00020827  0x00002e78 copy  0x00000012 , 0x00000039 
+ 00020828  0x00002e79 arg  0x00000a41 , 0x00000005 
+ 00020829  0x00002e7a arg  0x0000030d , 0x00000006 
+ 00020830  0x00002e7b call  0x00007ec0 
+ 00020831  0x00002e7d arg  0x0000030d , 0x00000011 
+ 00020832  0x00002e7e fetch  0x00000002 , 0x0000030b 
+ 00020833  0x00002e7f store  0x00000002 , 0x000045a2 
+ 00020834  0x00002e80 fetcht  0x00000002 , 0x0000039b 
+ 00020835  0x00002e81 storet  0x00000002 , 0x000045a4 
+ 00020836  0x00002e83 call  0x0000516d 
+ 00020837  0x00002e85 fetch  0x00000002 , 0x0000459a 
+ 00020838  0x00002e86 fetcht  0x00000002 , 0x0000459c 
+ 00020839  0x00002e87 isub  0x00000002 , 0x0000003e 
+ 00020840  0x00002e88 nrtn  0x00000005 
+ 00020841  0x00002e8a jam  0x00000017 , 0x000009bd 
+ 00020842  0x00002e8b branch  0x00004bd6 
+ 00020843  0x00002e90 jam  0x00000019 , 0x000009bd 
+ 00020844  0x00002e91 branch  0x00004bd6 
+ 00020845  0x00002e95 fetch  0x00000002 , 0x0000429a 
+ 00020846  0x00002e96 rtn  0x00000034 
+ 00020847  0x00002e97 iforce  0x0000003d 
+ 00020848  0x00002e9a fetcht  0x00000004 , 0x0000037e 
+ 00020849  0x00002e9b call  0x00003b1e 
+ 00020850  0x00002e9c isub  0x00000002 , 0x0000000b 
+ 00020851  0x00002e9d deposit  0x0000000b 
+ 00020852  0x00002e9e fetcht  0x00000002 , 0x00000390 
+ 00020853  0x00002e9f lshift4  0x00000002 , 0x00000002 
+ 00020854  0x00002ea0 lshift  0x00000002 , 0x00000002 
+ 00020855  0x00002ea1 isub  0x00000002 , 0x0000003f 
+ 00020856  0x00002ea2 rtn 
+ 00020857  0x00002ea5 call  0x00003b1e 
+ 00020858  0x00002ea6 store  0x00000004 , 0x0000037e 
+ 00020859  0x00002ea7 rtn 
+ 00020860  0x00002eac jam  0x00000024 , 0x00000016 
+ 00020861  0x00002eae set1  0x00000025 , 0x00000000 
+ 00020862  0x00002eaf bpatch  0x0000003f , 0x00004027 
+ 00020863  0x00002eb0 fetch  0x00000001 , 0x000043ff 
+ 00020864  0x00002eb1 rtn  0x00000034 
+ 00020865  0x00002eb2 arg  0x00000001 , 0x00000007 
+ 00020866  0x00002eb3 call  0x00007ee2 
+ 00020867  0x00002eb4 nrtn  0x00000034 
+ 00020868  0x00002eb5 disable  0x00000029 
+ 00020869  0x00002eb6 enable  0x00000010 
+ 00020870  0x00002eb7 call  0x00004b1e 
+ 00020871  0x00002eb8 call  0x000049d4 
+ 00020872  0x00002eb9 call  0x00004a8a 
+ 00020873  0x00002eba nbranch  0x00005193 , 0x0000002d 
+ 00020874  0x00002ebb fetch  0x00000001 , 0x00000003 
+ 00020875  0x00002ebc increase  0x00000001 , 0x0000003f 
+ 00020876  0x00002ebd store  0x00000001 , 0x00000003 
+ 00020877  0x00002ebe set1  0x00000025 , 0x00000000 
+ 00020878  0x00002ebf bpatch  0x00000040 , 0x00004028 
+ 00020879  0x00002ec0 fetch  0x00000001 , 0x00000302 
+ 00020880  0x00002ec1 and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00020881  0x00002ec2 beq  0x00000003 , 0x00004ac5 
+ 00020882  0x00002ec3 beq  0x00000005 , 0x000051af 
+ 00020883  0x00002ec5 nop  0x00002710 
+ 00020884  0x00002ec6 fetch  0x00000001 , 0x00000016 
+ 00020885  0x00002ec7 bne  0x00000027 , 0x0000517d 
+ 00020886  0x00002ec8 arg  0x00000001 , 0x00000007 
+ 00020887  0x00002ec9 fetch  0x00000002 , 0x0000451e 
+ 00020888  0x00002eca branch  0x00007ed4 
+ 00020889  0x00002ece set1  0x00000025 , 0x00000000 
+ 00020890  0x00002ecf bpatch  0x00000041 , 0x00004028 
+ 00020891  0x00002ed0 fetch  0x00000001 , 0x00000399 
+ 00020892  0x00002ed1 call  0x000049ad 
+ 00020893  0x00002ed2 fetch  0x00000002 , 0x00000364 
+ 00020894  0x00002ed3 imul32  0x00000002 , 0x0000003f 
+ 00020895  0x00002ed4 arg  0x00000177 , 0x00000002 
+ 00020896  0x00002ed5 imul32  0x00000002 , 0x0000003f 
+ 00020897  0x00002ed6 arg  0x000186a0 , 0x00000002 
+ 00020898  0x00002ed7 idiv  0x00000002 
+ 00020899  0x00002ed8 fetch  0x00000001 , 0x0000038d 
+ 00020900  0x00002ed9 arg  0x00004e20 , 0x00000002 
+ 00020901  0x00002eda imul32  0x00000002 , 0x0000003f 
+ 00020902  0x00002edb store  0x00000004 , 0x00004596 
+ 00020903  0x00002edc set1  0x00000025 , 0x00000000 
+ 00020904  0x00002edd bpatch  0x00000042 , 0x00004028 
+ 00020905  0x00002ede fetch  0x00000002 , 0x00004161 
+ 00020906  0x00002edf call  0x00007f53 
+ 00020907  0x00002ee0 quotient  0x00000002 
+ 00020908  0x00002ee1 iadd  0x00000002 , 0x0000003f 
+ 00020909  0x00002ee2 store  0x00000002 , 0x00000370 
+ 00020910  0x00002ee3 rtn 
+ 00020911  0x00002ee6 set1  0x00000025 , 0x00000000 
+ 00020912  0x00002ee7 bpatch  0x00000043 , 0x00004028 
+ 00020913  0x00002ee8 fetch  0x00000006 , 0x0000030a 
+ 00020914  0x00002ee9 fetcht  0x00000006 , 0x0000453e 
+ 00020915  0x00002eea isub  0x00000002 , 0x0000003e 
+ 00020916  0x00002eeb nrtn  0x00000005 
+ 00020917  0x00002eec call  0x00004bc9 
+ 00020918  0x00002eed copy  0x00000011 , 0x0000003f 
+ 00020919  0x00002eee store  0x00000001 , 0x0000452b 
+ 00020920  0x00002eef fetch  0x00000007 , 0x00000317 
+ 00020921  0x00002ef0 store  0x00000007 , 0x00000100 
+ 00020922  0x00002ef1 ifetch  0x00000008 , 0x00000006 
+ 00020923  0x00002ef2 istore  0x00000008 , 0x00000005 
+ 00020924  0x00002ef3 fetch  0x00000006 , 0x00000304 
+ 00020925  0x00002ef4 store  0x00000006 , 0x00000372 
+ 00020926  0x00002ef5 set1  0x00000025 , 0x00000000 
+ 00020927  0x00002ef6 bpatch  0x00000044 , 0x00004028 
+ 00020928  0x00002ef7 increase  0x00000006 , 0x00000006 
+ 00020929  0x00002ef8 ifetch  0x00000008 , 0x00000006 
+ 00020930  0x00002ef9 store  0x00000008 , 0x00000386 
+ 00020931  0x00002efa ifetcht  0x00000002 , 0x00000006 
+ 00020932  0x00002efb lshift2  0x00000002 , 0x00000002 
+ 00020933  0x00002efc ifetch  0x00000002 , 0x00000006 
+ 00020934  0x00002efd lshift2  0x0000003f , 0x0000003f 
+ 00020935  0x00002efe store  0x00000002 , 0x00000364 
+ 00020936  0x00002eff store  0x00000004 , 0x00000366 
+ 00020937  0x00002f00 isub  0x00000002 , 0x0000003f 
+ 00020938  0x00002f01 add  0x0000003f , 0xfffffffe , 0x00000028 
+ 00020939  0x00002f02 ifetch  0x00000009 , 0x00000006 
+ 00020940  0x00002f03 store  0x00000009 , 0x0000038e 
+ 00020941  0x00002f04 set1  0x00000025 , 0x00000000 
+ 00020942  0x00002f05 bpatch  0x00000045 , 0x00004028 
+ 00020943  0x00002f06 ifetch  0x00000001 , 0x00000006 
+ 00020944  0x00002f07 rshift4  0x0000003f , 0x00000002 
+ 00020945  0x00002f08 rshift  0x00000002 , 0x00000002 
+ 00020946  0x00002f09 storet  0x00000001 , 0x00000399 
+ 00020947  0x00002f0a and_into  0x0000001f , 0x0000003f 
+ 00020948  0x00002f0b store  0x00000001 , 0x0000037b 
+ 00020949  0x00002f0c call  0x00005199 
+ 00020950  0x00002f0d call  0x000049ef 
+ 00020951  0x00002f0e call  0x00004902 
+ 00020952  0x00002f0f call  0x0000327a 
+ 00020953  0x00002f10 nrtn  0x00000005 
+ 00020954  0x00002f11 set1  0x00000025 , 0x00000000 
+ 00020955  0x00002f12 bpatch  0x00000046 , 0x00004028 
+ 00020956  0x00002f13 call  0x000038d1 
+ 00020957  0x00002f14 jam  0x00000014 , 0x000009bd 
+ 00020958  0x00002f15 call  0x00007d86 
+ 00020959  0x00002f17 branch  0x00003260 
+ 00020960  0x00002f1b set1  0x00000025 , 0x00000000 
+ 00020961  0x00002f1c bpatch  0x00000047 , 0x00004028 
+ 00020962  0x00002f1d fetch  0x00000002 , 0x000044e3 
+ 00020963  0x00002f1e iforce  0x00000012 
+ 00020964  0x00002f1f fetch  0x00000002 , 0x000044e5 
+ 00020965  0x00002f20 iforce  0x00000013 
+ 00020966  0x00002f21 fetch  0x00000002 , 0x00004637 
+ 00020967  0x00002f22 iforce  0x00000006 
+ 00020968  0x00002f23 enable  0x00000028 
+ 00020969  0x00002f24 rtn 
+ 00020970  0x00002f28 ifetch  0x00000002 , 0x00000006 
+ 00020971  0x00002f29 rtn  0x00000034 
+ 00020972  0x00002f2a isub  0x00000012 , 0x0000003e 
+ 00020973  0x00002f2b nrtn  0x00000002 
+ 00020974  0x00002f2c isub  0x00000013 , 0x0000003e 
+ 00020975  0x00002f2d rtn  0x00000005 
+ 00020976  0x00002f2e branch  0x000051f3 , 0x00000002 
+ 00020977  0x00002f2f force  0x00000001 , 0x0000003e 
+ 00020978  0x00002f30 rtn 
+ 00020979  0x00002f32 force  0x00000000 , 0x0000003f 
+ 00020980  0x00002f33 rtn 
+ 00020981  0x00002f38 call  0x000051f8 
+ 00020982  0x00002f39 branch  0x00005205 , 0x00000005 
+ 00020983  0x00002f3a rtn 
+ 00020984  0x00002f3d set1  0x00000025 , 0x00000000 
+ 00020985  0x00002f3e bpatch  0x00000048 , 0x00004029 
+ 00020986  0x00002f3f fetch  0x00000002 , 0x00004637 
+ 00020987  0x00002f40 iforce  0x00000006 
+ 00020988  0x00002f42 ifetch  0x00000002 , 0x00000006 
+ 00020989  0x00002f43 rtn  0x00000034 
+ 00020990  0x00002f44 isub  0x00000002 , 0x0000003e 
+ 00020991  0x00002f45 rtn  0x00000005 
+ 00020992  0x00002f46 ifetch  0x00000001 , 0x00000006 
+ 00020993  0x00002f47 iadd  0x00000006 , 0x00000006 
+ 00020994  0x00002f48 ifetch  0x00000001 , 0x00000006 
+ 00020995  0x00002f49 iadd  0x00000006 , 0x00000006 
+ 00020996  0x00002f4a branch  0x000051fc 
+ 00020997  0x00002f4c ifetch  0x00000001 , 0x00000006 
+ 00020998  0x00002f4d iadd  0x00000006 , 0x00000006 
+ 00020999  0x00002f4e rtn 
+ 00021000  0x00002f53 set1  0x00000025 , 0x00000000 
+ 00021001  0x00002f54 bpatch  0x00000049 , 0x00004029 
+ 00021002  0x00002f55 fetch  0x00000002 , 0x00004637 
+ 00021003  0x00002f56 iforce  0x00000006 
+ 00021004  0x00002f58 ifetch  0x00000002 , 0x00000006 
+ 00021005  0x00002f59 rtn  0x00000034 
+ 00021006  0x00002f5a ifetch  0x00000001 , 0x00000006 
+ 00021007  0x00002f5b iadd  0x00000006 , 0x00000006 
+ 00021008  0x00002f5c increase  0xfffffffe , 0x00000006 
+ 00021009  0x00002f5d ifetch  0x00000002 , 0x00000006 
+ 00021010  0x00002f5e isub  0x00000002 , 0x0000003e 
+ 00021011  0x00002f5f rtn  0x00000005 
+ 00021012  0x00002f60 ifetch  0x00000001 , 0x00000006 
+ 00021013  0x00002f61 iadd  0x00000006 , 0x00000006 
+ 00021014  0x00002f62 branch  0x0000520c 
+ 00021015  0x00002f67 fetch  0x00000002 , 0x000003c1 
+ 00021016  0x00002f68 copy  0x0000003f , 0x00000006 
+ 00021017  0x00002f69 branch  0x0000521b 
+ 00021018  0x00002f6c set1  0x00000025 , 0x00000000 
+ 00021019  0x00002f6d bpatch  0x0000004a , 0x00004029 
+ 00021020  0x00002f6e fetch  0x00000002 , 0x00004637 
+ 00021021  0x00002f6f iforce  0x00000006 
+ 00021022  0x00002f70 copy  0x00000002 , 0x00000011 
+ 00021023  0x00002f72 ifetch  0x00000002 , 0x00000006 
+ 00021024  0x00002f73 branch  0x00005228 , 0x00000034 
+ 00021025  0x00002f74 isub  0x00000011 , 0x0000003e 
+ 00021026  0x00002f75 branch  0x0000522a , 0x00000005 
+ 00021027  0x00002f76 ifetch  0x00000001 , 0x00000006 
+ 00021028  0x00002f77 iadd  0x00000006 , 0x00000006 
+ 00021029  0x00002f78 ifetch  0x00000001 , 0x00000006 
+ 00021030  0x00002f79 iadd  0x00000006 , 0x00000006 
+ 00021031  0x00002f7a branch  0x0000521f 
+ 00021032  0x00002f7c setarg  0x00000001 
+ 00021033  0x00002f7d rtn 
+ 00021034  0x00002f7f ifetch  0x00000001 , 0x00000006 
+ 00021035  0x00002f80 store  0x00000001 , 0x000003c7 
+ 00021036  0x00002f81 copy  0x0000003f , 0x00000039 
+ 00021037  0x00002f82 arg  0x000003c8 , 0x00000005 
+ 00021038  0x00002f83 call  0x00007ec0 
+ 00021039  0x00002f84 ifetch  0x00000001 , 0x00000006 
+ 00021040  0x00002f85 store  0x00000001 , 0x000003d8 
+ 00021041  0x00002f86 call  0x00007e6d 
+ 00021042  0x00002f87 setarg  0x00000000 
+ 00021043  0x00002f88 rtn 
+ 00021044  0x00002f8d set1  0x00000025 , 0x00000000 
+ 00021045  0x00002f8e bpatch  0x0000004b , 0x00004029 
+ 00021046  0x00002f8f call  0x00005238 
+ 00021047  0x00002f90 branch  0x0000524a 
+ 00021048  0x00002f93 arg  0x00002a00 , 0x00000002 
+ 00021049  0x00002f94 call  0x00005208 
+ 00021050  0x00002f95 rtn  0x00000034 
+ 00021051  0x00002f96 ifetch  0x00000001 , 0x00000006 
+ 00021052  0x00002f97 copy  0x00000006 , 0x00000005 
+ 00021053  0x00002f98 fetcht  0x00000001 , 0x00004440 
+ 00021054  0x00002f99 copy  0x00000002 , 0x00000039 
+ 00021055  0x00002f9a isub  0x00000002 , 0x0000003e 
+ 00021056  0x00002f9b nbranch  0x00005247 , 0x00000002 
+ 00021057  0x00002f9c isub  0x00000002 , 0x00000002 
+ 00021058  0x00002f9d arg  0x00004441 , 0x00000006 
+ 00021059  0x00002f9e call  0x00007ecd 
+ 00021060  0x00002f9f copy  0x00000002 , 0x00000039 
+ 00021061  0x00002fa0 ncall  0x00005283 , 0x00000005 
+ 00021062  0x00002fa1 rtn 
+ 00021063  0x00002fa3 copy  0x0000003f , 0x00000039 
+ 00021064  0x00002fa4 arg  0x00004441 , 0x00000006 
+ 00021065  0x00002fa5 branch  0x00007ec0 
+ 00021066  0x00002fa9 arg  0x00004420 , 0x00000013 
+ 00021067  0x00002faa arg  0x00004401 , 0x00000011 
+ 00021068  0x00002fab call  0x00005257 
+ 00021069  0x00002fac setarg  0x00000000 
+ 00021070  0x00002fad setflag  0x00000028 , 0x00000000 , 0x0000003f 
+ 00021071  0x00002fae store  0x00000001 , 0x000009be 
+ 00021072  0x00002faf arg  0x00004440 , 0x00000013 
+ 00021073  0x00002fb0 arg  0x00004421 , 0x00000011 
+ 00021074  0x00002fb1 call  0x00005257 
+ 00021075  0x00002fb2 rtn  0x00000028 
+ 00021076  0x00002fb3 fetch  0x00000001 , 0x000009be 
+ 00021077  0x00002fb4 branch  0x00003b31 , 0x00000034 
+ 00021078  0x00002fb5 rtn 
+ 00021079  0x00002fb9 set1  0x00000025 , 0x00000000 
+ 00021080  0x00002fba bpatch  0x0000004c , 0x00004029 
+ 00021081  0x00002fbb call  0x000064c0 
+ 00021082  0x00002fbc call  0x00007ea5 
+ 00021083  0x00002fbd arg  0x00000000 , 0x00000012 
+ 00021084  0x00002fbe arg  0x000009e2 , 0x00000005 
+ 00021085  0x00002fbf call  0x00005272 
+ 00021086  0x00002fc0 fetch  0x00000001 , 0x00004440 
+ 00021087  0x00002fc1 add  0x0000003f , 0x00000001 , 0x00000002 
+ 00021088  0x00002fc2 iadd  0x00000012 , 0x00000011 
+ 00021089  0x00002fc3 increase  0x00000002 , 0x00000011 
+ 00021090  0x00002fc4 sub  0x00000011 , 0x0000001f , 0x0000003e 
+ 00021091  0x00002fc5 nbranch  0x00005270 , 0x00000002 
+ 00021092  0x00002fc6 istoret  0x00000001 , 0x00000005 
+ 00021093  0x00002fc7 arg  0x00000009 , 0x00000002 
+ 00021094  0x00002fc8 istoret  0x00000001 , 0x00000005 
+ 00021095  0x00002fc9 iforce  0x00000039 
+ 00021096  0x00002fca call  0x00007ec0 
+ 00021097  0x00002fcb copy  0x00000011 , 0x00000012 
+ 00021098  0x00002fcd deposit  0x00000012 
+ 00021099  0x00002fce store  0x00000001 , 0x000009e1 
+ 00021100  0x00002fcf arg  0x000009e1 , 0x00000006 
+ 00021101  0x00002fd0 setarg  0xffffffe0 
+ 00021102  0x00002fd1 iadd  0x00000013 , 0x00000005 
+ 00021103  0x00002fd2 branch  0x00007e85 
+ 00021104  0x00002fd5 call  0x000031d4 
+ 00021105  0x00002fd6 branch  0x0000526a 
+ 00021106  0x00002fd9 ifetch  0x00000001 , 0x00000011 
+ 00021107  0x00002fda rtn  0x00000034 
+ 00021108  0x00002fdb pincrease  0x00000001 
+ 00021109  0x00002fdc ifetcht  0x00000001 , 0x00000006 
+ 00021110  0x00002fdd sub  0x00000002 , 0x00000009 , 0x0000003e 
+ 00021111  0x00002fde branch  0x00005281 , 0x00000005 
+ 00021112  0x00002fdf iadd  0x00000012 , 0x00000012 
+ 00021113  0x00002fe0 copy  0x00000011 , 0x00000006 
+ 00021114  0x00002fe1 iforce  0x00000039 
+ 00021115  0x00002fe2 call  0x00007ec0 
+ 00021116  0x00002fe3 copy  0x00000006 , 0x00000011 
+ 00021117  0x00002fe5 deposit  0x00000011 
+ 00021118  0x00002fe6 isub  0x00000013 , 0x0000003e 
+ 00021119  0x00002fe7 rtn  0x00000002 
+ 00021120  0x00002fe8 branch  0x00005272 
+ 00021121  0x00002feb iadd  0x00000011 , 0x00000011 
+ 00021122  0x00002fec branch  0x0000527d 
+ 00021123  0x00002ff0 setarg  0x00000020 
+ 00021124  0x00002ff1 istore  0x00000001 , 0x00000005 
+ 00021125  0x00002ff2 loop  0x00005283 
+ 00021126  0x00002ff3 rtn 
+ 00021127  0x00002ff7 set1  0x00000025 , 0x00000000 
+ 00021128  0x00002ff8 bpatch  0x0000004d , 0x00004029 
+ 00021129  0x00002ff9 disable  0x0000002b 
+ 00021130  0x00002ffa branch  0x0000528c , 0x0000002e 
+ 00021131  0x00002ffb nbranch  0x0000529a , 0x0000002d 
+ 00021132  0x00002ffd call  0x00003cb7 
+ 00021133  0x00002ffe fetch  0x00000002 , 0x00004161 
+ 00021134  0x00002fff store  0x00000002 , 0x00000370 
+ 00021135  0x00003000 fetch  0x00000001 , 0x00000302 
+ 00021136  0x00003001 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021137  0x00003002 nbranch  0x00003ccb , 0x00000001 
+ 00021138  0x00003003 fetch  0x00000001 , 0x00004465 
+ 00021139  0x00003004 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021140  0x00003005 nbranch  0x00003ccb , 0x00000001 
+ 00021141  0x00003006 fetch  0x00000002 , 0x000042a2 
+ 00021142  0x00003007 call  0x00007f69 
+ 00021143  0x00003008 fetch  0x00000001 , 0x00000362 
+ 00021144  0x00003009 bbit1  0x00000005 , 0x00003ccb 
+ 00021145  0x0000300a branch  0x00003cb0 
+ 00021146  0x0000300d fetcht  0x00000002 , 0x00004161 
+ 00021147  0x0000300e rshift  0x00000002 , 0x00000002 
+ 00021148  0x0000300f fetch  0x00000002 , 0x00000370 
+ 00021149  0x00003010 iadd  0x00000002 , 0x0000003f 
+ 00021150  0x00003011 store  0x00000002 , 0x00000370 
+ 00021151  0x00003012 branch  0x00003cc3 
+ 00021152  0x00003015 set1  0x00000025 , 0x00000000 
+ 00021153  0x00003016 bpatch  0x0000004e , 0x00004029 
+ 00021154  0x00003017 jam  0x00000000 , 0x00004595 
+ 00021155  0x00003018 fetcht  0x00000002 , 0x000044f8 
+ 00021156  0x00003019 call  0x00004f6a 
+ 00021157  0x0000301a copy  0x00000011 , 0x00000005 
+ 00021158  0x0000301b setarg  0x00000000 
+ 00021159  0x0000301c istore  0x00000001 , 0x00000005 
+ 00021160  0x0000301d rtn 
+ 00021161  0x00003023 fetch  0x00000001 , 0x00004563 
+ 00021162  0x00003024 rtneq  0x00000000 
+ 00021163  0x00003025 fetch  0x00000001 , 0x00004564 
+ 00021164  0x00003026 rtnne  0x00000002 
+ 00021165  0x00003027 set1  0x00000025 , 0x00000000 
+ 00021166  0x00003028 bpatch  0x00000050 , 0x0000402a 
+ 00021167  0x00003029 jam  0x00000000 , 0x00004564 
+ 00021168  0x0000302a fetch  0x00000001 , 0x00004566 
+ 00021169  0x0000302b beq  0x00000001 , 0x000052e8 
+ 00021170  0x0000302c beq  0x00000002 , 0x000052f0 
+ 00021171  0x0000302d beq  0x00000003 , 0x000052e1 
+ 00021172  0x0000302e beq  0x00000006 , 0x000052ca 
+ 00021173  0x0000302f beq  0x00000007 , 0x000052c2 
+ 00021174  0x00003030 beq  0x00000008 , 0x000052b8 
+ 00021175  0x00003031 rtn 
+ 00021176  0x00003035 fetch  0x00000001 , 0x000046eb 
+ 00021177  0x00003036 copy  0x0000003f , 0x00000007 
+ 00021178  0x00003037 increase  0x00000001 , 0x0000003f 
+ 00021179  0x00003038 store  0x00000001 , 0x000046eb 
+ 00021180  0x00003039 fetch  0x00000004 , 0x0000456d 
+ 00021181  0x0000303a qisolate1  0x0000003f 
+ 00021182  0x0000303b setarg  0x00000080 
+ 00021183  0x0000303c setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021184  0x0000303d store  0x00000001 , 0x000046ec 
+ 00021185  0x0000303e branch  0x000052e4 
+ 00021186  0x00003041 fetch  0x00000001 , 0x00004567 
+ 00021187  0x00003042 jam  0x00000000 , 0x00004567 
+ 00021188  0x00003043 beq  0x00000001 , 0x000052c7 
+ 00021189  0x00003044 jam  0x00000002 , 0x00004564 
+ 00021190  0x00003045 rtn 
+ 00021191  0x00003048 jam  0x00000002 , 0x0000456a 
+ 00021192  0x00003049 jam  0x0000004d , 0x000009bd 
+ 00021193  0x0000304a branch  0x00004bd6 
+ 00021194  0x0000304d fetch  0x00000001 , 0x000008dd 
+ 00021195  0x0000304e beq  0x00000003 , 0x000052ce 
+ 00021196  0x0000304f jam  0x00000002 , 0x00004564 
+ 00021197  0x00003050 rtn 
+ 00021198  0x00003053 call  0x00006eae 
+ 00021199  0x00003057 fetch  0x00000001 , 0x0000456c 
+ 00021200  0x00003058 beq  0x00000083 , 0x000052d9 
+ 00021201  0x00003059 call  0x00005078 
+ 00021202  0x0000305b call  0x00006e9a 
+ 00021203  0x0000305c arg  0x00000a11 , 0x00000011 
+ 00021204  0x0000305d arg  0x00000992 , 0x00000012 
+ 00021205  0x0000305e arg  0x00000010 , 0x00000039 
+ 00021206  0x0000305f call  0x00007f55 
+ 00021207  0x00003060 branch  0x000052da , 0x00000005 
+ 00021208  0x00003062 branch  0x000050a6 
+ 00021209  0x00003066 branch  0x000052d2 
+ 00021210  0x00003069 jam  0x00000001 , 0x000044b2 
+ 00021211  0x0000306a fetch  0x00000001 , 0x0000456c 
+ 00021212  0x0000306b beq  0x00000081 , 0x000052c7 
+ 00021213  0x0000306c beq  0x00000083 , 0x000052c7 
+ 00021214  0x0000306d jam  0x00000002 , 0x00004564 
+ 00021215  0x0000306e jam  0x00000007 , 0x00004566 
+ 00021216  0x0000306f rtn 
+ 00021217  0x00003072 fetch  0x00000001 , 0x0000456c 
+ 00021218  0x00003073 beq  0x00000083 , 0x000052e6 
+ 00021219  0x00003074 jam  0x00000000 , 0x000046ec 
+ 00021220  0x00003076 jam  0x00000043 , 0x000009bd 
+ 00021221  0x00003077 branch  0x00004bd6 
+ 00021222  0x0000307d jam  0x00000000 , 0x000046eb 
+ 00021223  0x0000307f branch  0x0000507d 
+ 00021224  0x00003083 jam  0x00000002 , 0x00004564 
+ 00021225  0x00003084 fetch  0x00000001 , 0x00004568 
+ 00021226  0x00003085 beq  0x00000003 , 0x000052ec 
+ 00021227  0x00003087 rtn 
+ 00021228  0x0000308a jam  0x00000000 , 0x000008dd 
+ 00021229  0x0000308b call  0x00007ab9 
+ 00021230  0x0000308c jam  0x00000002 , 0x00004566 
+ 00021231  0x0000308d rtn 
+ 00021232  0x00003092 call  0x00004bd0 
+ 00021233  0x00003093 branch  0x000052f4 , 0x00000034 
+ 00021234  0x00003094 jam  0x00000002 , 0x00004564 
+ 00021235  0x00003095 rtn 
+ 00021236  0x00003097 jam  0x0000004c , 0x000009bd 
+ 00021237  0x00003098 call  0x00004bd6 
+ 00021238  0x00003099 jam  0x0000004c , 0x000009bd 
+ 00021239  0x0000309a call  0x00004bd6 
+ 00021240  0x0000309b jam  0x0000004c , 0x000009bd 
+ 00021241  0x0000309c branch  0x00004bd6 
+ 00021242  0x000030a3 arg  0x000008e2 , 0x0000003f 
+ 00021243  0x000030a4 fetcht  0x00000001 , 0x000003db 
+ 00021244  0x000030a5 iadd  0x00000002 , 0x00000005 
+ 00021245  0x000030a7 fetch  0x00000001 , 0x00000303 
+ 00021246  0x000030a8 copy  0x0000003f , 0x00000039 
+ 00021247  0x000030a9 iadd  0x00000002 , 0x00000002 
+ 00021248  0x000030aa call  0x00007ec0 
+ 00021249  0x000030ab storet  0x00000001 , 0x000003db 
+ 00021250  0x000030ac copy  0x00000002 , 0x0000003f 
+ 00021251  0x000030ae rtnne  0x00000040 
+ 00021252  0x000030af jam  0x00000002 , 0x00004564 
+ 00021253  0x000030b0 jam  0x00000001 , 0x00004566 
+ 00021254  0x000030b1 rtn 
+ 00021255  0x000030b3 set1  0x00000025 , 0x00000000 
+ 00021256  0x000030b4 bpatch  0x00000051 , 0x0000402a 
+ 00021257  0x000030b5 fetch  0x00000001 , 0x000003db 
+ 00021258  0x000030b6 bne  0x00000000 , 0x000052fa 
+ 00021259  0x000030b7 branch  0x00004fd4 
+ 00021260  0x000030be rtn  0x0000002b 
+ 00021261  0x000030c0 set1  0x00000025 , 0x00000000 
+ 00021262  0x000030c1 bpatch  0x00000052 , 0x0000402a 
+ 00021263  0x000030c2 setarg  0x00000000 
+ 00021264  0x000030c3 store  0x00000001 , 0x00000048 
+ 00021265  0x000030c4 store  0x00000001 , 0x00000055 
+ 00021266  0x000030c5 store  0x00000001 , 0x00000078 
+ 00021267  0x000030c6 store  0x00000001 , 0x0000007c 
+ 00021268  0x000030c7 store  0x00000001 , 0x000041f8 
+ 00021269  0x000030c8 store  0x00000001 , 0x000003fd 
+ 00021270  0x000030c9 store  0x00000001 , 0x0000016c 
+ 00021271  0x000030ca store  0x00000001 , 0x000008d9 
+ 00021272  0x000030cb jam  0x00000000 , 0x000045f4 
+ 00021273  0x000030cc jam  0x00000000 , 0x0000024d 
+ 00021274  0x000030cd jam  0x00000000 , 0x000003fe 
+ 00021275  0x000030cf jam  0x00000000 , 0x000008d9 
+ 00021276  0x000030d0 jam  0x00000000 , 0x000008d8 
+ 00021277  0x000030d1 jam  0x00000000 , 0x000003f7 
+ 00021278  0x000030d4 rtn 
+ 00021279  0x000030d7 set1  0x00000025 , 0x00000000 
+ 00021280  0x000030d8 bpatch  0x00000053 , 0x0000402a 
+ 00021281  0x000030d9 call  0x0000590a , 0x00000029 
+ 00021282  0x000030da ncall  0x0000590e , 0x00000029 
+ 00021283  0x000030db call  0x000058c5 
+ 00021284  0x000030dc nrtn  0x00000034 
+ 00021285  0x000030dd fetch  0x00000001 , 0x0000004c 
+ 00021286  0x000030de rtnbit0  0x00000006 
+ 00021287  0x000030df set0  0x00000006 , 0x0000003f 
+ 00021288  0x000030e0 set0  0x00000001 , 0x00000000 
+ 00021289  0x000030e1 store  0x00000001 , 0x0000004c 
+ 00021290  0x000030e2 fetch  0x00000001 , 0x00000475 
+ 00021291  0x000030e3 fetcht  0x00000001 , 0x0000004c 
+ 00021292  0x000030e4 isolate1  0x00000000 , 0x0000003f 
+ 00021293  0x000030e5 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00021294  0x000030e6 storet  0x00000001 , 0x0000004c 
+ 00021295  0x000030e7 and_into  0x00000002 , 0x00000002 
+ 00021296  0x000030e8 storet  0x00000001 , 0x0000007f 
+ 00021297  0x000030e9 fetcht  0x00000001 , 0x0000004c 
+ 00021298  0x000030ea rshift  0x0000003f , 0x0000003f 
+ 00021299  0x000030eb store  0x00000001 , 0x0000007d 
+ 00021300  0x000030ec set1  0x00000025 , 0x00000000 
+ 00021301  0x000030ed bpatch  0x00000054 , 0x0000402a 
+ 00021302  0x000030ee fetch  0x00000001 , 0x0000007d 
+ 00021303  0x000030ef beq  0x0000007f , 0x0000537f 
+ 00021304  0x000030f0 beq  0x00000003 , 0x000053cb 
+ 00021305  0x000030f1 beq  0x00000004 , 0x000053dd 
+ 00021306  0x000030f2 beq  0x0000003c , 0x00005372 
+ 00021307  0x000030f3 beq  0x00000005 , 0x0000536e 
+ 00021308  0x000030f4 beq  0x0000000f , 0x000055bf 
+ 00021309  0x000030f5 beq  0x00000010 , 0x00005440 
+ 00021310  0x000030f6 beq  0x00000023 , 0x0000545e 
+ 00021311  0x000030f7 beq  0x00000039 , 0x000055d8 
+ 00021312  0x000030f8 beq  0x00000038 , 0x000055d3 
+ 00021313  0x000030f9 beq  0x00000031 , 0x00005443 
+ 00021314  0x000030fa beq  0x00000037 , 0x000054cc 
+ 00021315  0x000030fb beq  0x00000027 , 0x000054c8 
+ 00021316  0x000030fc beq  0x00000033 , 0x000054c5 
+ 00021317  0x000030fd beq  0x00000025 , 0x000054ca 
+ 00021318  0x000030fe beq  0x00000026 , 0x0000545a 
+ 00021319  0x000030ff beq  0x00000007 , 0x00005452 
+ 00021320  0x00003100 beq  0x0000002d , 0x00005449 
+ 00021321  0x00003101 beq  0x0000002e , 0x0000544a 
+ 00021322  0x00003102 beq  0x00000001 , 0x000054c1 
+ 00021323  0x00003103 beq  0x00000002 , 0x000054ac 
+ 00021324  0x00003104 beq  0x00000028 , 0x000055ca 
+ 00021325  0x00003105 beq  0x00000009 , 0x000054a2 
+ 00021326  0x00003106 beq  0x0000000b , 0x0000547b 
+ 00021327  0x00003107 beq  0x00000008 , 0x0000545f 
+ 00021328  0x00003108 beq  0x0000000c , 0x00005486 
+ 00021329  0x00003109 beq  0x0000001f , 0x00005456 
+ 00021330  0x0000310a beq  0x00000020 , 0x00005458 
+ 00021331  0x0000310b beq  0x00000021 , 0x000054e6 
+ 00021332  0x0000310c beq  0x00000022 , 0x000054e6 
+ 00021333  0x0000310d beq  0x00000035 , 0x000054e7 
+ 00021334  0x0000310e beq  0x00000036 , 0x000054e8 
+ 00021335  0x0000310f beq  0x00000024 , 0x000054e6 
+ 00021336  0x00003110 beq  0x00000034 , 0x000054e9 
+ 00021337  0x00003111 beq  0x00000017 , 0x000054f2 
+ 00021338  0x00003112 beq  0x00000011 , 0x00005509 
+ 00021339  0x00003113 beq  0x00000012 , 0x0000550d 
+ 00021340  0x00003114 beq  0x00000013 , 0x0000550f 
+ 00021341  0x00003115 beq  0x0000000d , 0x00005521 
+ 00021342  0x00003116 beq  0x0000000e , 0x00005521 
+ 00021343  0x00003117 beq  0x0000002f , 0x000054c6 
+ 00021344  0x00003118 beq  0x00000030 , 0x00005521 
+ 00021345  0x00003119 beq  0x0000000a , 0x00005521 
+ 00021346  0x0000311a beq  0x00000018 , 0x00005522 
+ 00021347  0x0000311b beq  0x00000032 , 0x00005521 
+ 00021348  0x0000311c beq  0x0000003d , 0x00005527 
+ 00021349  0x0000311d beq  0x0000003e , 0x00005568 
+ 00021350  0x0000311e beq  0x0000003f , 0x00005562 
+ 00021351  0x0000311f beq  0x00000040 , 0x0000558f 
+ 00021352  0x00003120 beq  0x00000041 , 0x000055a1 
+ 00021353  0x00003121 beq  0x00000006 , 0x000055be 
+ 00021354  0x00003122 beq  0x0000003a , 0x00005370 
+ 00021355  0x00003126 jam  0x00000019 , 0x0000007e 
+ 00021356  0x00003128 jam  0x00000004 , 0x0000007c 
+ 00021357  0x00003129 rtn 
+ 00021358  0x0000312c jam  0x00000006 , 0x0000007c 
+ 00021359  0x0000312d rtn 
+ 00021360  0x00003130 jam  0x0000003b , 0x0000007c 
+ 00021361  0x00003131 rtn 
+ 00021362  0x00003134 fetch  0x00000004 , 0x00000476 
+ 00021363  0x00003135 lshift  0x0000003f , 0x0000003f 
+ 00021364  0x00003136 store  0x00000004 , 0x00004172 
+ 00021365  0x00003137 fetch  0x00000001 , 0x0000047a 
+ 00021366  0x00003138 store  0x00000001 , 0x00004179 
+ 00021367  0x00003139 fetch  0x00000005 , 0x0000047b 
+ 00021368  0x0000313a store  0x00000005 , 0x00004187 
+ 00021369  0x0000313b fetch  0x00000005 , 0x00000480 
+ 00021370  0x0000313c istore  0x00000005 , 0x00000005 
+ 00021371  0x0000313d fetch  0x00000001 , 0x00000031 
+ 00021372  0x0000313e set1  0x00000003 , 0x0000003f 
+ 00021373  0x0000313f store  0x00000001 , 0x00000031 
+ 00021374  0x00003140 rtn 
+ 00021375  0x00003142 set1  0x00000025 , 0x00000000 
+ 00021376  0x00003143 bpatch  0x00000055 , 0x0000402a 
+ 00021377  0x00003144 fetch  0x00000001 , 0x00000476 
+ 00021378  0x00003145 set1  0x00000007 , 0x0000003f 
+ 00021379  0x00003146 store  0x00000001 , 0x0000007d 
+ 00021380  0x00003147 beq  0x00000081 , 0x000053a2 
+ 00021381  0x00003148 beq  0x00000082 , 0x000053a7 
+ 00021382  0x00003149 beq  0x00000095 , 0x000054cd 
+ 00021383  0x0000314a beq  0x00000096 , 0x000054e6 
+ 00021384  0x0000314b beq  0x0000008b , 0x000054db 
+ 00021385  0x0000314c beq  0x00000083 , 0x000053bf 
+ 00021386  0x0000314d beq  0x00000084 , 0x000053c1 
+ 00021387  0x0000314e beq  0x00000090 , 0x00005394 
+ 00021388  0x0000314f beq  0x00000097 , 0x000053b8 
+ 00021389  0x00003150 beq  0x00000098 , 0x000053bd 
+ 00021390  0x00003151 beq  0x00000099 , 0x00005397 
+ 00021391  0x00003152 beq  0x0000009a , 0x0000539a 
+ 00021392  0x00003153 rtneq  0x00000084 
+ 00021393  0x00003157 jam  0x00000082 , 0x0000007c 
+ 00021394  0x00003158 jam  0x00000019 , 0x0000007e 
+ 00021395  0x0000315a rtn 
+ 00021396  0x0000315c jam  0x00000082 , 0x0000007c 
+ 00021397  0x0000315d jam  0x0000002e , 0x0000007e 
+ 00021398  0x0000315e rtn 
+ 00021399  0x00003161 call  0x0000539c 
+ 00021400  0x00003162 jam  0x0000009a , 0x0000007c 
+ 00021401  0x00003163 rtn 
+ 00021402  0x00003166 call  0x0000539c 
+ 00021403  0x00003167 branch  0x000053a0 
+ 00021404  0x0000316a arg  0x000046e6 , 0x00000005 
+ 00021405  0x0000316b fetch  0x00000003 , 0x00000477 
+ 00021406  0x0000316c istore  0x00000003 , 0x00000005 
+ 00021407  0x0000316d rtn 
+ 00021408  0x00003170 branch  0x000076f3 , 0x00000001 
+ 00021409  0x00003171 rtn 
+ 00021410  0x00003173 fetch  0x00000001 , 0x00000478 
+ 00021411  0x00003174 set1  0x00000007 , 0x0000003f 
+ 00021412  0x00003175 store  0x00000001 , 0x000003ef 
+ 00021413  0x00003176 beq  0x0000008b , 0x000053ac 
+ 00021414  0x00003177 rtn 
+ 00021415  0x0000317b fetch  0x00000001 , 0x00000478 
+ 00021416  0x0000317c set1  0x00000007 , 0x0000003f 
+ 00021417  0x0000317d store  0x00000001 , 0x000003ef 
+ 00021418  0x0000317e beq  0x0000008b , 0x000053b0 
+ 00021419  0x0000317f rtn 
+ 00021420  0x00003182 fetch  0x00000001 , 0x000041fa 
+ 00021421  0x00003183 fetcht  0x00000001 , 0x0000004c 
+ 00021422  0x00003184 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021423  0x00003185 storet  0x00000001 , 0x0000004c 
+ 00021424  0x00003187 fetch  0x00000001 , 0x00000030 
+ 00021425  0x00003188 rtnbit0  0x00000005 
+ 00021426  0x00003189 set0  0x00000005 , 0x0000003f 
+ 00021427  0x0000318a store  0x00000001 , 0x00000030 
+ 00021428  0x0000318b fetch  0x00000001 , 0x000003fd 
+ 00021429  0x0000318c nrtn  0x00000034 
+ 00021430  0x0000318d jam  0x00000031 , 0x0000007c 
+ 00021431  0x0000318e rtn 
+ 00021432  0x00003191 nbranch  0x000053bb , 0x00000029 
+ 00021433  0x00003192 jam  0x00000012 , 0x0000007c 
+ 00021434  0x00003193 branch  0x000058f6 
+ 00021435  0x00003196 jam  0x00000097 , 0x0000007c 
+ 00021436  0x00003197 rtn 
+ 00021437  0x0000319c call  0x000058f6 
+ 00021438  0x0000319d branch  0x00005615 
+ 00021439  0x000031a0 jam  0x00000084 , 0x0000007c 
+ 00021440  0x000031a1 rtn 
+ 00021441  0x000031a4 fetcht  0x00000001 , 0x00000479 
+ 00021442  0x000031a5 and  0x00000002 , 0x00000001 , 0x00000002 
+ 00021443  0x000031a6 storet  0x00000001 , 0x000003f6 
+ 00021444  0x000031a7 fetch  0x00000001 , 0x00004271 
+ 00021445  0x000031a8 bne  0x00000051 , 0x000053c7 
+ 00021446  0x000031a9 jam  0x00000000 , 0x00004271 
+ 00021447  0x000031ab fetch  0x00000001 , 0x00000055 
+ 00021448  0x000031ac rtnne  0x00000015 
+ 00021449  0x000031ad jam  0x00000004 , 0x00000055 
+ 00021450  0x000031ae branch  0x00005926 
+ 00021451  0x000031b1 set1  0x00000025 , 0x00000000 
+ 00021452  0x000031b2 bpatch  0x00000056 , 0x0000402a 
+ 00021453  0x000031b3 fetch  0x00000001 , 0x00000476 
+ 00021454  0x000031b4 store  0x00000001 , 0x000003ef 
+ 00021455  0x000031b5 beq  0x00000033 , 0x000053f4 
+ 00021456  0x000031b6 beq  0x00000008 , 0x00005403 
+ 00021457  0x000031b7 beq  0x0000000f , 0x0000540a 
+ 00021458  0x000031b8 beq  0x00000010 , 0x00005410 
+ 00021459  0x000031b9 beq  0x00000011 , 0x00005411 
+ 00021460  0x000031ba beq  0x00000012 , 0x00005419 
+ 00021461  0x000031bb beq  0x00000018 , 0x0000542f 
+ 00021462  0x000031bc beq  0x00000017 , 0x00005432 
+ 00021463  0x000031bd beq  0x00000013 , 0x000053eb 
+ 00021464  0x000031bf beq  0x0000003d , 0x00005535 
+ 00021465  0x000031c0 beq  0x0000003e , 0x00005581 
+ 00021466  0x000031c1 beq  0x00000040 , 0x00005537 
+ 00021467  0x000031c2 beq  0x00000041 , 0x00005554 
+ 00021468  0x000031c3 rtn 
+ 00021469  0x000031c6 set1  0x00000025 , 0x00000000 
+ 00021470  0x000031c7 bpatch  0x00000057 , 0x0000402a 
+ 00021471  0x000031c8 fetch  0x00000001 , 0x00000476 
+ 00021472  0x000031c9 store  0x00000001 , 0x000003ef 
+ 00021473  0x000031ca beq  0x00000001 , 0x00005426 
+ 00021474  0x000031cb beq  0x00000033 , 0x000053fe 
+ 00021475  0x000031cc beq  0x0000000b , 0x0000541a 
+ 00021476  0x000031cd beq  0x00000008 , 0x0000541d 
+ 00021477  0x000031ce beq  0x00000013 , 0x000053ee 
+ 00021478  0x000031d0 beq  0x00000040 , 0x00005427 
+ 00021479  0x000031d1 beq  0x00000041 , 0x0000542a 
+ 00021480  0x000031d2 beq  0x00000018 , 0x0000542d 
+ 00021481  0x000031d3 beq  0x00000017 , 0x0000543e 
+ 00021482  0x000031d4 rtn 
+ 00021483  0x000031d7 jam  0x00000020 , 0x000009bd 
+ 00021484  0x000031d8 call  0x00007d86 
+ 00021485  0x000031d9 branch  0x0000320a 
+ 00021486  0x000031db jam  0x00000019 , 0x000009bd 
+ 00021487  0x000031dc call  0x00007d86 
+ 00021488  0x000031dd jam  0x00000002 , 0x000045f4 
+ 00021489  0x000031de setarg  0x00000050 
+ 00021490  0x000031df arg  0x0000000a , 0x00000007 
+ 00021491  0x000031e0 branch  0x00007ed4 
+ 00021492  0x000031e6 fetch  0x00000001 , 0x000003f7 
+ 00021493  0x000031e7 set1  0x00000000 , 0x0000003f 
+ 00021494  0x000031e8 store  0x00000001 , 0x000003f7 
+ 00021495  0x000031e9 jam  0x00000001 , 0x000009bd 
+ 00021496  0x000031ea call  0x00007d86 
+ 00021497  0x000031eb jam  0x0000008b , 0x0000007c 
+ 00021498  0x000031ef fetch  0x00000001 , 0x00000055 
+ 00021499  0x000031f0 bne  0x00000005 , 0x0000531e 
+ 00021500  0x000031f3 jam  0x00000006 , 0x00000055 
+ 00021501  0x000031f4 rtn 
+ 00021502  0x000031fd jam  0x0000000b , 0x000003f0 
+ 00021503  0x000031fe jam  0x00000007 , 0x0000007c 
+ 00021504  0x00003200 jam  0x00000000 , 0x00000055 
+ 00021505  0x00003202 branch  0x0000531e , 0x00000001 
+ 00021506  0x00003203 rtn 
+ 00021507  0x00003206 fetch  0x00000001 , 0x0000425d 
+ 00021508  0x00003207 nrtn  0x00000034 
+ 00021509  0x00003208 call  0x000034a9 
+ 00021510  0x00003209 call  0x00005613 
+ 00021511  0x0000320a rtn  0x00000029 
+ 00021512  0x0000320b set1  0x00000021 , 0x00000000 
+ 00021513  0x0000320c rtn 
+ 00021514  0x0000320f nrtn  0x00000029 
+ 00021515  0x00003210 jam  0x00000010 , 0x0000007c 
+ 00021516  0x00003211 fetch  0x00000001 , 0x0000004c 
+ 00021517  0x00003212 rtnbit0  0x00000002 
+ 00021518  0x00003213 jam  0x00000012 , 0x0000007c 
+ 00021519  0x00003214 rtn 
+ 00021520  0x00003217 branch  0x00005615 
+ 00021521  0x0000321a call  0x00005672 
+ 00021522  0x0000321b fetch  0x00000001 , 0x00000030 
+ 00021523  0x0000321c rtnbit1  0x00000004 
+ 00021524  0x0000321d jam  0x00000031 , 0x0000007c 
+ 00021525  0x0000321e fetch  0x00000001 , 0x00000055 
+ 00021526  0x0000321f rtnne  0x0000000a 
+ 00021527  0x00003220 jam  0x0000000b , 0x00000055 
+ 00021528  0x00003221 rtn 
+ 00021529  0x0000322b rtn 
+ 00021530  0x0000322f jam  0x00000007 , 0x0000007c 
+ 00021531  0x00003230 jam  0x00000013 , 0x000003f0 
+ 00021532  0x00003231 rtn 
+ 00021533  0x00003234 fetch  0x00000001 , 0x00000477 
+ 00021534  0x00003235 beq  0x00000006 , 0x00005423 
+ 00021535  0x00003236 rtnne  0x00000018 
+ 00021536  0x00003237 jam  0x00000018 , 0x000003f0 
+ 00021537  0x00003238 jam  0x00000007 , 0x0000007c 
+ 00021538  0x00003239 rtn 
+ 00021539  0x0000323b jam  0x00000006 , 0x000003f0 
+ 00021540  0x0000323c jam  0x00000007 , 0x0000007c 
+ 00021541  0x0000323d rtn 
+ 00021542  0x00003240 rtn 
+ 00021543  0x00003243 jam  0x00000000 , 0x000008d2 
+ 00021544  0x00003244 jam  0x00000007 , 0x0000007c 
+ 00021545  0x00003245 branch  0x0000531e 
+ 00021546  0x00003248 jam  0x00000000 , 0x000008d2 
+ 00021547  0x00003249 jam  0x00000007 , 0x0000007c 
+ 00021548  0x0000324a branch  0x0000531e 
+ 00021549  0x0000324c jam  0x00000024 , 0x000009bd 
+ 00021550  0x0000324d branch  0x00007d86 
+ 00021551  0x00003250 jam  0x00000023 , 0x000009bd 
+ 00021552  0x00003251 call  0x00007d86 
+ 00021553  0x00003252 branch  0x0000376a 
+ 00021554  0x00003255 jam  0x00000022 , 0x000009bd 
+ 00021555  0x00003256 call  0x00007d86 
+ 00021556  0x00003257 setarg  0x00000000 
+ 00021557  0x00003258 store  0x00000002 , 0x00000075 
+ 00021558  0x00003259 fetch  0x00000002 , 0x00004284 
+ 00021559  0x0000325a lshift  0x0000003f , 0x0000003f 
+ 00021560  0x0000325b store  0x00000002 , 0x00000032 
+ 00021561  0x0000325c fetch  0x00000001 , 0x00004286 
+ 00021562  0x0000325d store  0x00000001 , 0x00000073 
+ 00021563  0x0000325e fetch  0x00000001 , 0x00004288 
+ 00021564  0x0000325f store  0x00000001 , 0x00000074 
+ 00021565  0x00003260 branch  0x00003746 
+ 00021566  0x00003263 jam  0x00000021 , 0x000009bd 
+ 00021567  0x00003264 branch  0x00007d86 
+ 00021568  0x00003267 fetcht  0x00000001 , 0x00000476 
+ 00021569  0x00003268 storet  0x00000001 , 0x00000054 
+ 00021570  0x00003269 branch  0x00005454 
+ 00021571  0x0000326c fetch  0x00000001 , 0x000003f7 
+ 00021572  0x0000326d set1  0x00000002 , 0x0000003f 
+ 00021573  0x0000326e store  0x00000001 , 0x000003f7 
+ 00021574  0x0000326f rtnbit1  0x00000003 
+ 00021575  0x00003270 jam  0x00000031 , 0x0000007c 
+ 00021576  0x00003271 branch  0x0000531e 
+ 00021577  0x00003276 rtn 
+ 00021578  0x00003279 fetch  0x00000001 , 0x00004170 
+ 00021579  0x0000327a fetcht  0x00000001 , 0x00000476 
+ 00021580  0x0000327b isub  0x00000002 , 0x0000003e 
+ 00021581  0x0000327d branch  0x00005454 , 0x00000002 
+ 00021582  0x0000327e jam  0x00000004 , 0x0000007c 
+ 00021583  0x0000327f jam  0x0000001f , 0x0000007e 
+ 00021584  0x00003280 jam  0x0000002e , 0x0000007d 
+ 00021585  0x00003281 rtn 
+ 00021586  0x00003284 call  0x00005764 
+ 00021587  0x00003285 branch  0x00005454 
+ 00021588  0x00003288 jam  0x00000003 , 0x0000007c 
+ 00021589  0x00003289 rtn 
+ 00021590  0x0000328c jam  0x00000021 , 0x0000007c 
+ 00021591  0x0000328d rtn 
+ 00021592  0x00003290 jam  0x00000022 , 0x0000007c 
+ 00021593  0x00003291 rtn 
+ 00021594  0x00003294 fetch  0x00000001 , 0x00000055 
+ 00021595  0x00003295 rtneq  0x00000013 
+ 00021596  0x00003297 jam  0x00000002 , 0x00000055 
+ 00021597  0x00003299 rtn 
+ 00021598  0x0000329d rtn 
+ 00021599  0x000032a0 call  0x00005610 
+ 00021600  0x000032a1 jam  0x00000001 , 0x000003fa 
+ 00021601  0x000032a2 jam  0x0000000a , 0x000009bd 
+ 00021602  0x000032a3 call  0x00007d86 
+ 00021603  0x000032a5 call  0x000058fe 
+ 00021604  0x000032a6 nbranch  0x00005618 , 0x00000001 
+ 00021605  0x000032a8 nbranch  0x0000546a , 0x00000029 
+ 00021606  0x000032a9 jam  0x00000004 , 0x0000007c 
+ 00021607  0x000032aa jam  0x00000008 , 0x0000007d 
+ 00021608  0x000032ab jam  0x00000023 , 0x0000007e 
+ 00021609  0x000032ac rtn 
+ 00021610  0x000032ae fetch  0x00000001 , 0x0000004b 
+ 00021611  0x000032af set1  0x00000002 , 0x0000003f 
+ 00021612  0x000032b0 store  0x00000001 , 0x0000004b 
+ 00021613  0x000032b1 rtn 
+ 00021614  0x000032b5 fetcht  0x00000001 , 0x0000004c 
+ 00021615  0x000032b6 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00021616  0x000032b7 storet  0x00000001 , 0x0000004c 
+ 00021617  0x000032b8 rtn 
+ 00021618  0x000032bc fetch  0x00000001 , 0x0000007f 
+ 00021619  0x000032bd rshift  0x0000003f , 0x0000003f 
+ 00021620  0x000032be and_into  0x00000001 , 0x0000003f 
+ 00021621  0x000032bf rtn 
+ 00021622  0x000032c2 fetch  0x00000001 , 0x00004132 
+ 00021623  0x000032c3 rtnne  0x0000000a 
+ 00021624  0x000032c4 fetch  0x00000001 , 0x000008d9 
+ 00021625  0x000032c5 call  0x00006402 , 0x00000034 
+ 00021626  0x000032c6 rtn 
+ 00021627  0x000032c9 call  0x00005476 
+ 00021628  0x000032ca call  0x00005472 
+ 00021629  0x000032cb store  0x00000001 , 0x000003fb 
+ 00021630  0x000032cc call  0x00005610 
+ 00021631  0x000032cd jam  0x0000000c , 0x0000007c 
+ 00021632  0x000032ce fetch  0x00000001 , 0x0000425d 
+ 00021633  0x000032cf nrtn  0x00000034 
+ 00021634  0x000032d0 fetch  0x00000001 , 0x00000030 
+ 00021635  0x000032d1 rtnbit1  0x00000006 
+ 00021636  0x000032d2 jam  0x00000006 , 0x0000007e 
+ 00021637  0x000032d3 branch  0x0000536c 
+ 00021638  0x000032d6 arg  0x00000040 , 0x00000011 
+ 00021639  0x000032d7 call  0x00006fad 
+ 00021640  0x000032d8 fetch  0x00000004 , 0x00000476 
+ 00021641  0x000032d9 fetcht  0x00000004 , 0x000004b6 
+ 00021642  0x000032da isub  0x00000002 , 0x0000003e 
+ 00021643  0x000032db branch  0x0000548f , 0x00000005 
+ 00021644  0x000032dc jam  0x00000007 , 0x0000007c 
+ 00021645  0x000032dd jam  0x00000005 , 0x000003f0 
+ 00021646  0x000032de rtn 
+ 00021647  0x000032e0 call  0x00005493 
+ 00021648  0x000032e1 fetch  0x00000001 , 0x000046e2 
+ 00021649  0x000032e2 branch  0x00005555 , 0x00000034 
+ 00021650  0x000032e3 rtn 
+ 00021651  0x000032e7 call  0x000070ab 
+ 00021652  0x000032e8 call  0x000031da 
+ 00021653  0x000032e9 fetch  0x00000001 , 0x0000004b 
+ 00021654  0x000032ea isolate1  0x00000001 , 0x0000003f 
+ 00021655  0x000032eb set0  0x00000001 , 0x0000003f 
+ 00021656  0x000032ec store  0x00000001 , 0x0000004b 
+ 00021657  0x000032ed fetch  0x00000001 , 0x00000055 
+ 00021658  0x000032ee beq  0x00000019 , 0x0000549d 
+ 00021659  0x000032ef beq  0x00000018 , 0x0000549d 
+ 00021660  0x000032f0 rtn 
+ 00021661  0x000032f2 fetch  0x00000001 , 0x000008d9 
+ 00021662  0x000032f3 rtnne  0x00000000 
+ 00021663  0x000032f4 fetch  0x00000001 , 0x0000004c 
+ 00021664  0x000032f5 rtnbit1  0x00000002 
+ 00021665  0x000032f6 branch  0x000059bd 
+ 00021666  0x000032f9 arg  0x00000476 , 0x00000011 
+ 00021667  0x000032fa arg  0x000004a6 , 0x00000012 
+ 00021668  0x000032fb arg  0x00000486 , 0x00000005 
+ 00021669  0x000032fc call  0x00007077 
+ 00021670  0x000032fd arg  0x00000040 , 0x00000011 
+ 00021671  0x000032fe call  0x0000591c 
+ 00021672  0x000032ff jam  0x0000000b , 0x0000007c 
+ 00021673  0x00003300 fetch  0x00000001 , 0x00000030 
+ 00021674  0x00003301 bbit0  0x00000006 , 0x00005613 
+ 00021675  0x00003302 rtn 
+ 00021676  0x00003305 fetch  0x00000002 , 0x0000015e 
+ 00021677  0x00003306 add  0x0000003f , 0xfffffffd , 0x00000039 
+ 00021678  0x00003307 fetcht  0x00000001 , 0x00000476 
+ 00021679  0x00003308 setarg  0x00000100 
+ 00021680  0x00003309 iadd  0x00000002 , 0x00000005 
+ 00021681  0x0000330a arg  0x00000478 , 0x00000006 
+ 00021682  0x0000330b call  0x00007ecd 
+ 00021683  0x0000330c fetcht  0x00000001 , 0x00000053 
+ 00021684  0x0000330d fetch  0x00000001 , 0x00000477 
+ 00021685  0x0000330e isub  0x00000002 , 0x0000003f 
+ 00021686  0x0000330f sub  0x0000003f , 0x0000000e , 0x0000003e 
+ 00021687  0x00003310 branch  0x000054bc , 0x00000002 
+ 00021688  0x00003311 add  0x00000002 , 0x0000000e , 0x0000003f 
+ 00021689  0x00003312 store  0x00000001 , 0x00000053 
+ 00021690  0x00003313 jam  0x00000001 , 0x0000007c 
+ 00021691  0x00003314 rtn 
+ 00021692  0x00003316 fetch  0x00000001 , 0x0000004c 
+ 00021693  0x00003317 set1  0x00000003 , 0x0000003f 
+ 00021694  0x00003318 store  0x00000001 , 0x0000004c 
+ 00021695  0x00003319 bbit1  0x00000004 , 0x0000561d 
+ 00021696  0x0000331a rtn 
+ 00021697  0x0000331c fetch  0x00000001 , 0x00000476 
+ 00021698  0x0000331d store  0x00000001 , 0x0000007d 
+ 00021699  0x0000331e jam  0x00000002 , 0x0000007c 
+ 00021700  0x0000331f rtn 
+ 00021701  0x00003322 branch  0x00005454 
+ 00021702  0x00003325 jam  0x00000030 , 0x0000007c 
+ 00021703  0x00003326 rtn 
+ 00021704  0x00003329 jam  0x00000028 , 0x0000007c 
+ 00021705  0x0000332a rtn 
+ 00021706  0x0000332d jam  0x00000026 , 0x0000007c 
+ 00021707  0x0000332e rtn 
+ 00021708  0x00003333 rtn 
+ 00021709  0x00003338 fetch  0x00000002 , 0x00000032 
+ 00021710  0x00003339 iforce  0x00000002 
+ 00021711  0x0000333a fetch  0x00000001 , 0x00000477 
+ 00021712  0x0000333b store  0x00000001 , 0x00000094 
+ 00021713  0x0000333c imul32  0x00000002 , 0x00000002 
+ 00021714  0x0000333d fetch  0x00000002 , 0x00000478 
+ 00021715  0x0000333e lshift  0x0000003f , 0x0000003f 
+ 00021716  0x0000333f store  0x00000002 , 0x00000095 
+ 00021717  0x00003340 fetch  0x00000004 , 0x0000047a 
+ 00021718  0x00003341 lshift  0x0000003f , 0x0000003f 
+ 00021719  0x00003342 store  0x00000004 , 0x00000090 
+ 00021720  0x00003344 deposit  0x00000002 
+ 00021721  0x00003345 store  0x00000002 , 0x00000097 
+ 00021722  0x00003346 rtn 
+ 00021723  0x00003348 fetcht  0x00000001 , 0x000041fa 
+ 00021724  0x00003349 fetch  0x00000001 , 0x00000477 
+ 00021725  0x0000334a ixor  0x00000002 , 0x0000003e 
+ 00021726  0x0000334b nbranch  0x00005391 , 0x00000005 
+ 00021727  0x0000334c isolate1  0x00000000 , 0x0000003f 
+ 00021728  0x0000334d fetch  0x00000001 , 0x0000004c 
+ 00021729  0x0000334e setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00021730  0x0000334f store  0x00000001 , 0x0000004c 
+ 00021731  0x00003350 jam  0x00000081 , 0x0000007c 
+ 00021732  0x00003351 jam  0x0000008b , 0x0000007d 
+ 00021733  0x00003352 rtn 
+ 00021734  0x00003359 rtn 
+ 00021735  0x0000335c branch  0x00005454 
+ 00021736  0x00003360 branch  0x00005454 
+ 00021737  0x00003365 fetch  0x00000002 , 0x00000476 
+ 00021738  0x00003366 store  0x00000002 , 0x00000170 
+ 00021739  0x00003367 rtn 
+ 00021740  0x0000336a fetch  0x00000002 , 0x00000479 
+ 00021741  0x0000336b fetcht  0x00000001 , 0x00004212 
+ 00021742  0x0000336c imul32  0x00000002 , 0x0000003f 
+ 00021743  0x0000336d arg  0x00000640 , 0x00000002 
+ 00021744  0x0000336e isub  0x00000002 , 0x0000003e 
+ 00021745  0x00003370 rtn 
+ 00021746  0x00003373 call  0x000054ec 
+ 00021747  0x00003374 branch  0x00005507 , 0x00000002 
+ 00021748  0x00003375 fetch  0x00000001 , 0x00000030 
+ 00021749  0x00003376 bbit1  0x00000001 , 0x00005507 
+ 00021750  0x00003377 fetch  0x00000002 , 0x00000477 
+ 00021751  0x00003378 lshift  0x0000003f , 0x0000003f 
+ 00021752  0x00003379 store  0x00000002 , 0x00000075 
+ 00021753  0x0000337a fetch  0x00000002 , 0x00000479 
+ 00021754  0x0000337b lshift  0x0000003f , 0x0000003f 
+ 00021755  0x0000337c store  0x00000002 , 0x00000032 
+ 00021756  0x0000337d fetch  0x00000002 , 0x0000047b 
+ 00021757  0x0000337e store  0x00000001 , 0x00000073 
+ 00021758  0x0000337f iforce  0x00000002 
+ 00021759  0x00003380 fetch  0x00000002 , 0x0000047d 
+ 00021760  0x00003381 store  0x00000001 , 0x00000074 
+ 00021761  0x00003382 isub  0x00000002 , 0x0000003e 
+ 00021762  0x00003383 nbranch  0x00005504 , 0x00000002 
+ 00021763  0x00003384 store  0x00000001 , 0x00000073 
+ 00021764  0x00003387 jam  0x00000003 , 0x0000007c 
+ 00021765  0x00003388 jam  0x00000017 , 0x0000007d 
+ 00021766  0x00003389 rtn 
+ 00021767  0x0000338c jam  0x00000024 , 0x0000007e 
+ 00021768  0x0000338d branch  0x0000536c 
+ 00021769  0x00003390 call  0x00005454 
+ 00021770  0x00003391 call  0x00005610 
+ 00021771  0x00003392 call  0x00006fb0 
+ 00021772  0x00003393 branch  0x00003736 
+ 00021773  0x00003396 call  0x00005454 
+ 00021774  0x00003397 branch  0x0000373f 
+ 00021775  0x0000339b fetch  0x00000004 , 0x00000476 
+ 00021776  0x0000339c lshift  0x0000003f , 0x0000003f 
+ 00021777  0x0000339e branch  0x0000551b , 0x00000029 
+ 00021778  0x0000339f fetcht  0x00000001 , 0x0000425d 
+ 00021779  0x000033a0 nbranch  0x00005518 , 0x00000034 
+ 00021780  0x000033a2 jam  0x00000004 , 0x0000007c 
+ 00021781  0x000033a3 jam  0x00000013 , 0x0000007d 
+ 00021782  0x000033a4 jam  0x00000024 , 0x0000007e 
+ 00021783  0x000033a5 rtn 
+ 00021784  0x000033a7 jam  0x00000034 , 0x0000007c 
+ 00021785  0x000033a8 jam  0x00000000 , 0x00000055 
+ 00021786  0x000033a9 branch  0x00003206 
+ 00021787  0x000033ac call  0x00003206 
+ 00021788  0x000033ad set1  0x00000022 , 0x00000000 
+ 00021789  0x000033ae fetch  0x00000001 , 0x0000016c 
+ 00021790  0x000033af set0  0x00000002 , 0x0000003f 
+ 00021791  0x000033b0 store  0x00000001 , 0x0000016c 
+ 00021792  0x000033b1 branch  0x00005454 
+ 00021793  0x000033ba rtn 
+ 00021794  0x000033be jam  0x00000003 , 0x0000007c 
+ 00021795  0x000033bf jam  0x00000018 , 0x0000007d 
+ 00021796  0x000033c0 jam  0x0000002e , 0x000009bd 
+ 00021797  0x000033c1 call  0x00007d86 
+ 00021798  0x000033c2 branch  0x0000376a 
+ 00021799  0x000033c5 fetch  0x00000001 , 0x00000476 
+ 00021800  0x000033c6 bne  0x00000001 , 0x00005533 
+ 00021801  0x000033c7 fetch  0x00000001 , 0x00000477 
+ 00021802  0x000033c8 bne  0x00000001 , 0x00005533 
+ 00021803  0x000033c9 fetch  0x00000001 , 0x00000478 
+ 00021804  0x000033ca bne  0x00000030 , 0x00005533 
+ 00021805  0x000033cb call  0x00005907 
+ 00021806  0x000033cc branch  0x00005530 , 0x00000001 
+ 00021807  0x000033cd jam  0x00000001 , 0x000008d2 
+ 00021808  0x000033cf jam  0x00000003 , 0x0000007c 
+ 00021809  0x000033d0 jam  0x0000003d , 0x0000007d 
+ 00021810  0x000033d1 branch  0x0000531e 
+ 00021811  0x000033d4 jam  0x00000024 , 0x0000007e 
+ 00021812  0x000033d5 branch  0x0000536c 
+ 00021813  0x000033da jam  0x0000003e , 0x0000007c 
+ 00021814  0x000033dc rtn 
+ 00021815  0x000033de fetch  0x00000001 , 0x000046ea 
+ 00021816  0x000033df beq  0x00000001 , 0x0000553e 
+ 00021817  0x000033e0 beq  0x00000002 , 0x00005542 
+ 00021818  0x000033e2 call  0x00005907 
+ 00021819  0x000033e3 rtn  0x00000001 
+ 00021820  0x000033e4 jam  0x00000008 , 0x000008d2 
+ 00021821  0x000033e5 rtn 
+ 00021822  0x000033e8 call  0x0000797f 
+ 00021823  0x000033e9 jam  0x00000035 , 0x000009bd 
+ 00021824  0x000033ea call  0x00007d86 
+ 00021825  0x000033eb branch  0x0000553a 
+ 00021826  0x000033ef call  0x00005907 
+ 00021827  0x000033f0 rtn  0x00000001 
+ 00021828  0x000033f1 fetch  0x00000001 , 0x000046eb 
+ 00021829  0x000033f2 beq  0x00000013 , 0x00005552 
+ 00021830  0x000033f3 increase  0x00000001 , 0x0000003f 
+ 00021831  0x000033f4 store  0x00000001 , 0x000046eb 
+ 00021832  0x000033f8 jam  0x00000001 , 0x000008d4 
+ 00021833  0x000033f9 jam  0x00000004 , 0x000008d2 
+ 00021834  0x000033fa fetch  0x00000001 , 0x000046eb 
+ 00021835  0x000033fb copy  0x0000003f , 0x00000007 
+ 00021836  0x000033fc fetch  0x00000006 , 0x00004719 
+ 00021837  0x000033fd qisolate1  0x0000003f 
+ 00021838  0x000033fe setarg  0x00000080 
+ 00021839  0x000033ff setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021840  0x00003400 store  0x00000001 , 0x000046ec 
+ 00021841  0x00003401 rtn 
+ 00021842  0x00003404 jam  0x00000008 , 0x000008d2 
+ 00021843  0x00003405 rtn 
+ 00021844  0x00003408 call  0x0000555a 
+ 00021845  0x0000340a fetch  0x00000001 , 0x000046ed 
+ 00021846  0x0000340b rtn  0x00000034 
+ 00021847  0x0000340c jam  0x00000000 , 0x000046ed 
+ 00021848  0x0000340d jam  0x00000038 , 0x000009bd 
+ 00021849  0x0000340e branch  0x00007d86 
+ 00021850  0x00003413 call  0x00005907 
+ 00021851  0x00003414 ncall  0x00007982 , 0x00000001 
+ 00021852  0x00003415 call  0x00007992 , 0x00000001 
+ 00021853  0x00003416 call  0x00005907 
+ 00021854  0x00003417 rtn  0x00000001 
+ 00021855  0x00003418 jam  0x0000000c , 0x000008d2 
+ 00021856  0x00003419 jam  0x00000001 , 0x000008d4 
+ 00021857  0x0000341a rtn 
+ 00021858  0x0000341d arg  0x00000992 , 0x00000005 
+ 00021859  0x0000341e arg  0x00000476 , 0x00000006 
+ 00021860  0x0000341f call  0x00007e87 
+ 00021861  0x00003420 fetch  0x00000001 , 0x000046ea 
+ 00021862  0x00003421 rtneq  0x00000002 
+ 00021863  0x00003422 branch  0x000076f3 
+ 00021864  0x00003425 fetch  0x00000001 , 0x000008d3 
+ 00021865  0x00003426 beq  0x00000007 , 0x0000556c 
+ 00021866  0x00003427 fetch  0x00000001 , 0x000008d2 
+ 00021867  0x00003428 bne  0x00000001 , 0x0000557f 
+ 00021868  0x0000342a fetch  0x00000001 , 0x000008db 
+ 00021869  0x0000342b sub  0x0000003f , 0x00000020 , 0x00000005 
+ 00021870  0x0000342c nbranch  0x0000557f , 0x00000002 
+ 00021871  0x0000342d arg  0x000008ea , 0x00000005 
+ 00021872  0x0000342e iadd  0x00000005 , 0x00000005 
+ 00021873  0x0000342f fetch  0x00000008 , 0x00000476 
+ 00021874  0x00003430 istore  0x00000008 , 0x00000005 
+ 00021875  0x00003431 fetch  0x00000008 , 0x0000047e 
+ 00021876  0x00003432 istore  0x00000008 , 0x00000005 
+ 00021877  0x00003433 fetch  0x00000001 , 0x000008db 
+ 00021878  0x00003434 increase  0x00000010 , 0x0000003f 
+ 00021879  0x00003435 store  0x00000001 , 0x000008db 
+ 00021880  0x00003436 bne  0x00000030 , 0x00005454 
+ 00021881  0x00003438 call  0x00005907 
+ 00021882  0x00003439 branch  0x00005454 , 0x00000001 
+ 00021883  0x0000343a jam  0x00000001 , 0x000008dc 
+ 00021884  0x0000343b jam  0x00000002 , 0x000008d2 
+ 00021885  0x0000343c jam  0x00000001 , 0x000008d4 
+ 00021886  0x0000343d branch  0x00005454 
+ 00021887  0x0000343f jam  0x00000024 , 0x0000007e 
+ 00021888  0x00003440 branch  0x0000536c 
+ 00021889  0x00003442 fetch  0x00000001 , 0x000008da 
+ 00021890  0x00003443 beq  0x00000030 , 0x00005585 
+ 00021891  0x00003444 jam  0x0000003e , 0x0000007c 
+ 00021892  0x00003445 branch  0x0000531e 
+ 00021893  0x00003448 call  0x00005907 
+ 00021894  0x00003449 branch  0x0000558e , 0x00000001 
+ 00021895  0x0000344a fetch  0x00000001 , 0x000046ea 
+ 00021896  0x0000344b beq  0x00000002 , 0x0000558c 
+ 00021897  0x0000344c jam  0x00000001 , 0x000008d4 
+ 00021898  0x0000344d jam  0x00000004 , 0x000008d2 
+ 00021899  0x0000344e branch  0x0000531e 
+ 00021900  0x00003451 jam  0x00000036 , 0x000009bd 
+ 00021901  0x00003452 branch  0x00007d86 
+ 00021902  0x00003457 branch  0x0000531e 
+ 00021903  0x0000345a fetch  0x00000001 , 0x000008d3 
+ 00021904  0x0000345b beq  0x00000007 , 0x00005593 
+ 00021905  0x0000345c fetch  0x00000001 , 0x000008d2 
+ 00021906  0x0000345d bne  0x00000006 , 0x0000559f 
+ 00021907  0x0000345f arg  0x00000952 , 0x00000005 
+ 00021908  0x00003460 fetch  0x00000008 , 0x00000476 
+ 00021909  0x00003461 istore  0x00000008 , 0x00000005 
+ 00021910  0x00003462 fetch  0x00000008 , 0x0000047e 
+ 00021911  0x00003463 istore  0x00000008 , 0x00000005 
+ 00021912  0x00003464 call  0x00005907 
+ 00021913  0x00003465 branch  0x0000559d , 0x00000001 
+ 00021914  0x00003466 jam  0x00000007 , 0x000008d2 
+ 00021915  0x00003467 jam  0x00000001 , 0x000008d4 
+ 00021916  0x00003468 branch  0x00005454 
+ 00021917  0x0000346a jam  0x00000004 , 0x000008d3 
+ 00021918  0x0000346b branch  0x000076f3 
+ 00021919  0x0000346f jam  0x00000024 , 0x0000007e 
+ 00021920  0x00003470 branch  0x0000536c 
+ 00021921  0x00003473 fetch  0x00000001 , 0x000008d3 
+ 00021922  0x00003474 beq  0x0000000b , 0x000055a5 
+ 00021923  0x00003475 fetch  0x00000001 , 0x000008d2 
+ 00021924  0x00003476 bne  0x00000008 , 0x000055b4 
+ 00021925  0x00003478 arg  0x00000982 , 0x00000005 
+ 00021926  0x00003479 arg  0x00000476 , 0x00000006 
+ 00021927  0x0000347a call  0x00007e87 
+ 00021928  0x0000347b call  0x00005907 
+ 00021929  0x0000347c branch  0x000055b1 , 0x00000001 
+ 00021930  0x0000347d fetch  0x00000001 , 0x000046ea 
+ 00021931  0x0000347e beq  0x00000001 , 0x000055b6 
+ 00021932  0x00003480 jam  0x00000000 , 0x000046e9 
+ 00021933  0x00003481 jam  0x00000009 , 0x000008d2 
+ 00021934  0x00003482 jam  0x00000001 , 0x000008d4 
+ 00021935  0x00003483 jam  0x00000041 , 0x0000007d 
+ 00021936  0x00003484 branch  0x0000531e 
+ 00021937  0x00003487 jam  0x00000009 , 0x000008d3 
+ 00021938  0x00003488 jam  0x00000001 , 0x000008d5 
+ 00021939  0x00003489 branch  0x0000531e 
+ 00021940  0x0000348b jam  0x00000024 , 0x0000007e 
+ 00021941  0x0000348c branch  0x0000536c 
+ 00021942  0x0000348f fetch  0x00000001 , 0x000046e9 
+ 00021943  0x00003490 bbit1  0x00000007 , 0x000055bb 
+ 00021944  0x00003491 set1  0x00000006 , 0x0000003f 
+ 00021945  0x00003492 store  0x00000001 , 0x000046e9 
+ 00021946  0x00003493 rtn 
+ 00021947  0x00003496 bbit1  0x00000000 , 0x000055ac 
+ 00021948  0x00003497 jam  0x00000000 , 0x000046e9 
+ 00021949  0x00003498 branch  0x000055b4 
+ 00021950  0x0000349c branch  0x0000531e 
+ 00021951  0x0000349f fetch  0x00000001 , 0x0000016c 
+ 00021952  0x000034a0 set0  0x00000001 
+ 00021953  0x000034a1 store  0x00000001 , 0x0000016c 
+ 00021954  0x000034a2 call  0x00005454 
+ 00021955  0x000034a3 nrtn  0x00000029 
+ 00021956  0x000034a4 fetch  0x00000001 , 0x00000476 
+ 00021957  0x000034a5 fetcht  0x00000001 , 0x0000004b 
+ 00021958  0x000034a6 setflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00021959  0x000034a7 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021960  0x000034a8 storet  0x00000001 , 0x0000004b 
+ 00021961  0x000034a9 rtn 
+ 00021962  0x000034ac fetcht  0x00000008 , 0x00000476 
+ 00021963  0x000034ae fetch  0x00000001 , 0x00000055 
+ 00021964  0x000034af rtnne  0x00000003 
+ 00021965  0x000034b1 fetch  0x00000001 , 0x0000016c 
+ 00021966  0x000034b2 bbit0  0x00000004 , 0x000055d1 
+ 00021967  0x000034b4 jam  0x00000014 , 0x00000055 
+ 00021968  0x000034b5 rtn 
+ 00021969  0x000034b7 jam  0x00000004 , 0x00000055 
+ 00021970  0x000034b8 rtn 
+ 00021971  0x000034ba fetch  0x00000001 , 0x0000017e 
+ 00021972  0x000034bb store  0x00000001 , 0x0000015a 
+ 00021973  0x000034bc jam  0x00000003 , 0x0000007c 
+ 00021974  0x000034bd jam  0x00000038 , 0x0000007d 
+ 00021975  0x000034be rtn 
+ 00021976  0x000034c2 jam  0x00000003 , 0x0000007c 
+ 00021977  0x000034c3 jam  0x00000039 , 0x0000007d 
+ 00021978  0x000034c4 force  0x00000009 , 0x00000039 
+ 00021979  0x000034c5 arg  0x00000476 , 0x00000006 
+ 00021980  0x000034c6 arg  0x00000151 , 0x00000005 
+ 00021981  0x000034c8 ifetch  0x00000001 , 0x00000006 
+ 00021982  0x000034c9 xor_into  0x00000055 , 0x0000003f 
+ 00021983  0x000034ca istore  0x00000001 , 0x00000005 
+ 00021984  0x000034cb loop  0x000055dd 
+ 00021985  0x000034cc fetch  0x00000001 , 0x00000151 
+ 00021986  0x000034cd fetcht  0x00000001 , 0x00000150 
+ 00021987  0x000034ce set0  0x00000007 , 0x00000002 
+ 00021988  0x000034cf set0  0x00000004 , 0x00000002 
+ 00021989  0x000034d0 beq  0x000000ff , 0x000055f1 
+ 00021990  0x000034d1 beq  0x00000000 , 0x0000560a 
+ 00021991  0x000034d2 beq  0x00000005 , 0x000055fe 
+ 00021992  0x000034d3 beq  0x00000007 , 0x000055fd 
+ 00021993  0x000034d4 beq  0x00000006 , 0x000055fe 
+ 00021994  0x000034d5 beq  0x00000008 , 0x000055fd 
+ 00021995  0x000034d6 beq  0x00000001 , 0x000055f6 
+ 00021996  0x000034d7 beq  0x00000002 , 0x000055f6 
+ 00021997  0x000034d8 beq  0x00000003 , 0x000055f6 
+ 00021998  0x000034d9 beq  0x00000009 , 0x000055f6 
+ 00021999  0x000034da beq  0x00000004 , 0x000055f6 
+ 00022000  0x000034db rtn 
+ 00022001  0x000034de fetch  0x00000001 , 0x00000150 
+ 00022002  0x000034df set1  0x00000003 , 0x0000003f 
+ 00022003  0x000034e0 set1  0x00000002 , 0x0000003f 
+ 00022004  0x000034e1 store  0x00000001 , 0x00000150 
+ 00022005  0x000034e2 rtn 
+ 00022006  0x000034e4 set1  0x00000004 , 0x00000002 
+ 00022007  0x000034e5 jam  0x00000005 , 0x0000017f 
+ 00022008  0x000034e6 fetch  0x00000002 , 0x00000158 
+ 00022009  0x000034e7 iforce  0x00000039 
+ 00022010  0x000034e8 store  0x00000002 , 0x0000015e 
+ 00022011  0x000034e9 arg  0x00000475 , 0x00000005 
+ 00022012  0x000034ea call  0x00007f40 
+ 00022013  0x000034ec set1  0x00000007 , 0x00000002 
+ 00022014  0x000034ee set1  0x00000002 , 0x00000002 
+ 00022015  0x000034ef force  0x00000000 , 0x0000003f 
+ 00022016  0x000034f0 store  0x00000001 , 0x0000000b 
+ 00022017  0x000034f1 store  0x00000002 , 0x000000f9 
+ 00022018  0x000034f2 store  0x00000002 , 0x000000fb 
+ 00022019  0x000034f3 store  0x00000002 , 0x000000f7 
+ 00022020  0x000034f4 store  0x00000002 , 0x000000f5 
+ 00022021  0x000034f5 fetch  0x00000001 , 0x00000152 
+ 00022022  0x000034f6 compare  0x00000000 , 0x0000003f , 0x000000ff 
+ 00022023  0x000034f7 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00022024  0x000034f8 storet  0x00000001 , 0x00000150 
+ 00022025  0x000034f9 rtn 
+ 00022026  0x000034fc set0  0x00000011 , 0x00000000 
+ 00022027  0x000034fd jam  0x00000000 , 0x00000150 
+ 00022028  0x000034fe fetch  0x00000001 , 0x0000017e 
+ 00022029  0x000034ff set0  0x00000006 , 0x0000003f 
+ 00022030  0x00003500 store  0x00000001 , 0x0000017e 
+ 00022031  0x00003501 rtn 
+ 00022032  0x00003508 arg  0x00000476 , 0x00000006 
+ 00022033  0x00003509 arg  0x00000486 , 0x00000005 
+ 00022034  0x0000350a branch  0x00007e87 
+ 00022035  0x0000350d jam  0x00000009 , 0x0000007c 
+ 00022036  0x0000350e rtn 
+ 00022037  0x00003511 nrtn  0x00000029 
+ 00022038  0x00003512 jam  0x00000011 , 0x0000007c 
+ 00022039  0x00003513 rtn 
+ 00022040  0x00003516 arg  0x00004140 , 0x00000011 
+ 00022041  0x00003517 call  0x00006f7a 
+ 00022042  0x00003518 jam  0x00000003 , 0x0000007c 
+ 00022043  0x00003519 jam  0x00000008 , 0x0000007d 
+ 00022044  0x0000351a rtn 
+ 00022045  0x0000351d jam  0x0000000a , 0x00000072 
+ 00022046  0x0000351e jam  0x00000007 , 0x0000007c 
+ 00022047  0x0000351f jam  0x00000016 , 0x000003f0 
+ 00022048  0x00003520 rtn 
+ 00022049  0x00003527 set1  0x00000025 , 0x00000000 
+ 00022050  0x00003528 bpatch  0x00000058 , 0x0000402b 
+ 00022051  0x00003529 disable  0x00000028 
+ 00022052  0x0000352a call  0x000058ca 
+ 00022053  0x0000352b fetch  0x00000001 , 0x00000048 
+ 00022054  0x0000352c rtn  0x00000034 
+ 00022055  0x00003531 bbit1  0x00000007 , 0x00005657 
+ 00022056  0x00003533 beq  0x00000001 , 0x0000577c 
+ 00022057  0x00003534 beq  0x00000002 , 0x000056ef 
+ 00022058  0x00003535 beq  0x00000003 , 0x00005662 
+ 00022059  0x00003536 beq  0x00000004 , 0x00005679 
+ 00022060  0x00003537 beq  0x00000027 , 0x000057e4 
+ 00022061  0x00003538 beq  0x00000028 , 0x00005713 
+ 00022062  0x00003539 beq  0x00000030 , 0x000056ff 
+ 00022063  0x0000353a beq  0x00000025 , 0x000057df 
+ 00022064  0x0000353b beq  0x00000026 , 0x0000570e 
+ 00022065  0x0000353c beq  0x00000031 , 0x000057ce 
+ 00022066  0x0000353d beq  0x00000037 , 0x00005777 
+ 00022067  0x0000353e beq  0x00000033 , 0x00005769 
+ 00022068  0x0000353f beq  0x00000008 , 0x00005862 
+ 00022069  0x00003540 beq  0x00000009 , 0x00005858 
+ 00022070  0x00003541 beq  0x0000000b , 0x0000586d 
+ 00022071  0x00003542 beq  0x0000000c , 0x00005876 
+ 00022072  0x00003543 beq  0x0000000f , 0x0000576f 
+ 00022073  0x00003544 beq  0x00000010 , 0x0000589b 
+ 00022074  0x00003545 beq  0x00000011 , 0x00005891 
+ 00022075  0x00003546 beq  0x00000007 , 0x0000575f 
+ 00022076  0x00003547 beq  0x0000002a , 0x0000578b 
+ 00022077  0x00003548 beq  0x0000000a , 0x0000578c 
+ 00022078  0x0000354a beq  0x0000001f , 0x000057c9 
+ 00022079  0x0000354b beq  0x00000006 , 0x00005704 
+ 00022080  0x0000354c beq  0x00000021 , 0x0000576c 
+ 00022081  0x0000354d beq  0x0000002d , 0x000057bf 
+ 00022082  0x0000354e beq  0x0000002e , 0x000057c4 
+ 00022083  0x0000354f beq  0x00000022 , 0x0000576c 
+ 00022084  0x00003550 beq  0x00000034 , 0x0000578d 
+ 00022085  0x00003551 beq  0x00000013 , 0x000057a2 
+ 00022086  0x00003552 beq  0x00000017 , 0x000057b1 
+ 00022087  0x00003553 beq  0x00000012 , 0x00005898 
+ 00022088  0x00003554 beq  0x0000002f , 0x000057b7 
+ 00022089  0x00003555 beq  0x00000018 , 0x000057bc 
+ 00022090  0x00003556 beq  0x0000003d , 0x00005808 
+ 00022091  0x00003557 beq  0x0000003e , 0x00005814 
+ 00022092  0x00003558 beq  0x0000003f , 0x00005826 
+ 00022093  0x00003559 beq  0x00000040 , 0x00005830 
+ 00022094  0x0000355a beq  0x00000041 , 0x00005845 
+ 00022095  0x0000355b beq  0x00000023 , 0x00005854 
+ 00022096  0x0000355c beq  0x0000003b , 0x0000584f 
+ 00022097  0x0000355e beq  0x00000005 , 0x00005855 
+ 00022098  0x0000355f beq  0x00000029 , 0x00005856 
+ 00022099  0x00003560 beq  0x00000038 , 0x00005857 
+ 00022100  0x00003561 beq  0x00000039 , 0x00005782 
+ 00022101  0x00003563 branch  0x00003b31 
+ 00022102  0x00003564 rtn 
+ 00022103  0x00003566 beq  0x00000081 , 0x00005686 
+ 00022104  0x00003567 beq  0x00000084 , 0x000056b2 
+ 00022105  0x00003568 beq  0x00000082 , 0x0000568f 
+ 00022106  0x00003569 beq  0x00000083 , 0x00005718 
+ 00022107  0x0000356a beq  0x0000008b , 0x00005723 
+ 00022108  0x0000356b beq  0x00000097 , 0x0000575b 
+ 00022109  0x0000356c beq  0x00000099 , 0x000056e0 
+ 00022110  0x0000356d beq  0x0000009a , 0x000056bd 
+ 00022111  0x0000356e beq  0x00000095 , 0x000056e5 
+ 00022112  0x0000356f beq  0x00000096 , 0x000056e6 
+ 00022113  0x00003570 branch  0x00003b31 
+ 00022114  0x00003577 force  0x00000002 , 0x0000003f 
+ 00022115  0x00003578 call  0x000058a1 
+ 00022116  0x00003579 fetch  0x00000001 , 0x00000049 
+ 00022117  0x0000357a istore  0x00000001 , 0x00000005 
+ 00022118  0x0000357b call  0x000058b0 
+ 00022119  0x0000357c set1  0x00000025 , 0x00000000 
+ 00022120  0x0000357d bpatch  0x00000059 , 0x0000402b 
+ 00022121  0x0000357e fetch  0x00000001 , 0x00000049 
+ 00022122  0x0000357f beq  0x00000008 , 0x00005699 
+ 00022123  0x00003580 beq  0x0000000f , 0x0000569d 
+ 00022124  0x00003581 beq  0x00000010 , 0x000056a8 
+ 00022125  0x00003582 beq  0x00000017 , 0x00005678 
+ 00022126  0x00003583 beq  0x00000033 , 0x000056ab 
+ 00022127  0x00003584 beq  0x00000041 , 0x000056b1 
+ 00022128  0x00003585 beq  0x00000011 , 0x00005672 
+ 00022129  0x00003586 rtn 
+ 00022130  0x00003589 fetch  0x00000001 , 0x00000055 
+ 00022131  0x0000358a rtn  0x00000034 
+ 00022132  0x0000358b jam  0x0000001b , 0x00000055 
+ 00022133  0x0000358c setarg  0x0000000c 
+ 00022134  0x0000358d arg  0x0000000b , 0x00000007 
+ 00022135  0x0000358e branch  0x00007ed4 
+ 00022136  0x00003591 branch  0x00003746 
+ 00022137  0x00003593 force  0x00000003 , 0x0000003f 
+ 00022138  0x00003594 call  0x000058a1 
+ 00022139  0x00003595 fetch  0x00000001 , 0x00000049 
+ 00022140  0x00003596 beq  0x0000000b , 0x00005681 
+ 00022141  0x00003597 istore  0x00000001 , 0x00000005 
+ 00022142  0x00003598 fetch  0x00000001 , 0x0000004a 
+ 00022143  0x00003599 istore  0x00000001 , 0x00000005 
+ 00022144  0x0000359a branch  0x000058b0 
+ 00022145  0x0000359d istore  0x00000001 , 0x00000005 
+ 00022146  0x0000359e fetch  0x00000001 , 0x0000004a 
+ 00022147  0x0000359f istore  0x00000001 , 0x00000005 
+ 00022148  0x000035a0 arg  0x000003fb , 0x00000002 
+ 00022149  0x000035a1 branch  0x000058ec 
+ 00022150  0x000035a4 force  0x00000004 , 0x00000007 
+ 00022151  0x000035a5 call  0x000058a9 
+ 00022152  0x000035a6 setarg  0x0000007f 
+ 00022153  0x000035a7 istore  0x00000001 , 0x00000005 
+ 00022154  0x000035a8 fetch  0x00000001 , 0x00000049 
+ 00022155  0x000035a9 set0  0x00000007 , 0x0000003f 
+ 00022156  0x000035aa istore  0x00000001 , 0x00000005 
+ 00022157  0x000035ab fetch  0x00000001 , 0x00000049 
+ 00022158  0x000035ac branch  0x000058b0 
+ 00022159  0x000035af force  0x00000005 , 0x00000007 
+ 00022160  0x000035b0 call  0x000058a9 
+ 00022161  0x000035b1 setarg  0x0000007f 
+ 00022162  0x000035b2 istore  0x00000001 , 0x00000005 
+ 00022163  0x000035b3 fetch  0x00000001 , 0x00000049 
+ 00022164  0x000035b4 set0  0x00000007 , 0x0000003f 
+ 00022165  0x000035b5 istore  0x00000001 , 0x00000005 
+ 00022166  0x000035b6 fetch  0x00000001 , 0x0000004a 
+ 00022167  0x000035b7 istore  0x00000001 , 0x00000005 
+ 00022168  0x000035b8 branch  0x000058b0 
+ 00022169  0x000035bc call  0x000034a9 
+ 00022170  0x000035bd call  0x000058fe 
+ 00022171  0x000035be rtn  0x00000001 
+ 00022172  0x000035bf branch  0x00005613 
+ 00022173  0x000035c2 fetch  0x00000001 , 0x0000004b 
+ 00022174  0x000035c3 bbit1  0x00000005 , 0x000056a4 
+ 00022175  0x000035c4 rtnbit0  0x00000004 
+ 00022176  0x000035c5 jam  0x00000012 , 0x0000007c 
+ 00022177  0x000035c6 set0  0x00000004 , 0x0000003f 
+ 00022178  0x000035c7 call  0x000058f6 
+ 00022179  0x000035c8 branch  0x000056a6 
+ 00022180  0x000035ca jam  0x00000010 , 0x0000007c 
+ 00022181  0x000035cb set0  0x00000005 , 0x0000003f 
+ 00022182  0x000035cd store  0x00000001 , 0x0000004b 
+ 00022183  0x000035ce rtn 
+ 00022184  0x000035d1 call  0x00005907 
+ 00022185  0x000035d2 branch  0x00005615 , 0x00000001 
+ 00022186  0x000035d3 rtn 
+ 00022187  0x000035d6 jam  0x0000008b , 0x0000007c 
+ 00022188  0x000035d8 fetch  0x00000001 , 0x000003f7 
+ 00022189  0x000035d9 set1  0x00000000 , 0x0000003f 
+ 00022190  0x000035da store  0x00000001 , 0x000003f7 
+ 00022191  0x000035db jam  0x00000001 , 0x000009bd 
+ 00022192  0x000035dc branch  0x00007d86 
+ 00022193  0x000035e0 rtn 
+ 00022194  0x000035e5 force  0x0000000c , 0x00000007 
+ 00022195  0x000035e6 call  0x000058a9 
+ 00022196  0x000035e7 setarg  0x00000001 
+ 00022197  0x000035e8 istore  0x00000001 , 0x00000005 
+ 00022198  0x000035e9 fetch  0x00000002 , 0x000003f4 
+ 00022199  0x000035ea istore  0x00000002 , 0x00000005 
+ 00022200  0x000035eb setarg  0x00000000 
+ 00022201  0x000035ec istore  0x00000003 , 0x00000005 
+ 00022202  0x000035ed setarg  0x00000000 
+ 00022203  0x000035ee istore  0x00000004 , 0x00000005 
+ 00022204  0x000035ef branch  0x000058b9 
+ 00022205  0x000035f1 force  0x00000005 , 0x00000007 
+ 00022206  0x000035f2 call  0x000058a9 
+ 00022207  0x000035f3 fetch  0x00000003 , 0x000046e3 
+ 00022208  0x000035f4 istore  0x00000003 , 0x00000005 
+ 00022209  0x000035f5 call  0x000058b9 
+ 00022210  0x000035f6 jam  0x00000001 , 0x000046ed 
+ 00022211  0x000035f7 fetch  0x00000001 , 0x000046e3 
+ 00022212  0x000035f8 beq  0x00000001 , 0x000056ce 
+ 00022213  0x000035f9 beq  0x00000002 , 0x000056c8 
+ 00022214  0x000035fa beq  0x00000003 , 0x000056d4 
+ 00022215  0x000035fb rtn 
+ 00022216  0x000035fe fetch  0x00000001 , 0x000046e6 
+ 00022217  0x000035ff beq  0x00000000 , 0x000056de 
+ 00022218  0x00003600 beq  0x00000001 , 0x000056de 
+ 00022219  0x00003601 beq  0x00000002 , 0x000056de 
+ 00022220  0x00003602 beq  0x00000003 , 0x000056da 
+ 00022221  0x00003603 rtn 
+ 00022222  0x00003607 fetch  0x00000001 , 0x000046e6 
+ 00022223  0x00003608 beq  0x00000000 , 0x000056da 
+ 00022224  0x00003609 beq  0x00000001 , 0x000056dc 
+ 00022225  0x0000360a beq  0x00000002 , 0x000056de 
+ 00022226  0x0000360b beq  0x00000003 , 0x000056da 
+ 00022227  0x0000360c rtn 
+ 00022228  0x00003610 fetch  0x00000001 , 0x000046e6 
+ 00022229  0x00003611 beq  0x00000000 , 0x000056da 
+ 00022230  0x00003612 beq  0x00000001 , 0x000056da 
+ 00022231  0x00003613 beq  0x00000002 , 0x000056da 
+ 00022232  0x00003614 beq  0x00000003 , 0x000056da 
+ 00022233  0x00003615 rtn 
+ 00022234  0x0000361f jam  0x00000003 , 0x000046ea 
+ 00022235  0x00003620 rtn 
+ 00022236  0x00003624 jam  0x00000001 , 0x000046ea 
+ 00022237  0x00003625 rtn 
+ 00022238  0x0000362c jam  0x00000002 , 0x000046ea 
+ 00022239  0x0000362d rtn 
+ 00022240  0x00003633 force  0x00000005 , 0x00000007 
+ 00022241  0x00003634 call  0x000058a9 
+ 00022242  0x00003635 fetch  0x00000003 , 0x000046e3 
+ 00022243  0x00003636 istore  0x00000003 , 0x00000005 
+ 00022244  0x00003637 branch  0x000058bb 
+ 00022245  0x0000363c rtn 
+ 00022246  0x0000363e force  0x00000009 , 0x00000007 
+ 00022247  0x0000363f call  0x000058a9 
+ 00022248  0x00003640 fetch  0x00000001 , 0x00000094 
+ 00022249  0x00003641 istore  0x00000001 , 0x00000005 
+ 00022250  0x00003642 fetch  0x00000002 , 0x00000095 
+ 00022251  0x00003643 istore  0x00000002 , 0x00000005 
+ 00022252  0x00003644 fetch  0x00000004 , 0x00000090 
+ 00022253  0x00003645 istore  0x00000004 , 0x00000005 
+ 00022254  0x00003646 branch  0x000058b9 
+ 00022255  0x00003649 force  0x00000011 , 0x0000003f 
+ 00022256  0x0000364a call  0x000058a1 
+ 00022257  0x0000364b fetch  0x00000001 , 0x00000049 
+ 00022258  0x0000364c copy  0x0000003f , 0x00000002 
+ 00022259  0x0000364d beq  0x00000000 , 0x000056f7 
+ 00022260  0x0000364e beq  0x0000000e , 0x000056f7 
+ 00022261  0x0000364f beq  0x0000001c , 0x000056f7 
+ 00022262  0x00003650 rtn 
+ 00022263  0x00003652 istore  0x00000001 , 0x00000005 
+ 00022264  0x00003653 fetch  0x00000001 , 0x000045ae 
+ 00022265  0x00003654 istore  0x00000001 , 0x00000005 
+ 00022266  0x00003655 arg  0x0000000e , 0x00000039 
+ 00022267  0x00003656 setarg  0x000045af 
+ 00022268  0x00003657 iadd  0x00000002 , 0x00000006 
+ 00022269  0x00003658 call  0x00007ecd 
+ 00022270  0x00003659 branch  0x000058b9 
+ 00022271  0x0000365d force  0x00000003 , 0x0000003f 
+ 00022272  0x0000365e call  0x000058a1 
+ 00022273  0x0000365f setarg  0x00000114 
+ 00022274  0x00003660 istore  0x00000002 , 0x00000005 
+ 00022275  0x00003661 branch  0x000058b9 
+ 00022276  0x00003665 force  0x00000003 , 0x0000003f 
+ 00022277  0x00003666 call  0x000058a1 
+ 00022278  0x00003667 fetch  0x00000004 , 0x00000164 
+ 00022279  0x00003668 isub  0x00000022 , 0x0000003f 
+ 00022280  0x00003669 branch  0x0000570a , 0x00000029 
+ 00022281  0x0000366a sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00022282  0x0000366d rshift2  0x0000003f , 0x0000003f 
+ 00022283  0x0000366e set0  0x0000000f , 0x0000003f 
+ 00022284  0x0000366f istore  0x00000002 , 0x00000005 
+ 00022285  0x00003670 branch  0x000058b9 
+ 00022286  0x00003673 force  0x00000006 , 0x0000003f 
+ 00022287  0x00003674 call  0x000058a1 
+ 00022288  0x00003675 fetch  0x00000005 , 0x000045a9 
+ 00022289  0x00003676 istore  0x00000005 , 0x00000005 
+ 00022290  0x00003677 branch  0x000058b9 
+ 00022291  0x0000367a force  0x00000009 , 0x0000003f 
+ 00022292  0x0000367b call  0x000058a1 
+ 00022293  0x0000367c fetch  0x00000008 , 0x00004138 
+ 00022294  0x0000367d istore  0x00000008 , 0x00000005 
+ 00022295  0x0000367e branch  0x000058b9 
+ 00022296  0x00003686 force  0x0000000c , 0x00000007 
+ 00022297  0x00003687 call  0x000058a9 
+ 00022298  0x00003688 setarg  0x00000001 
+ 00022299  0x00003689 istore  0x00000001 , 0x00000005 
+ 00022300  0x0000368a fetch  0x00000002 , 0x000003f4 
+ 00022301  0x0000368b istore  0x00000002 , 0x00000005 
+ 00022302  0x0000368c setarg  0x00000000 
+ 00022303  0x0000368d istore  0x00000003 , 0x00000005 
+ 00022304  0x0000368e setarg  0x00000000 
+ 00022305  0x0000368f istore  0x00000004 , 0x00000005 
+ 00022306  0x00003690 branch  0x000058bb 
+ 00022307  0x00003693 force  0x00000003 , 0x00000007 
+ 00022308  0x00003694 call  0x000058a9 
+ 00022309  0x00003695 fetch  0x00000001 , 0x000041fa 
+ 00022310  0x00003696 istore  0x00000001 , 0x00000005 
+ 00022311  0x00003697 disable  0x00000028 
+ 00022312  0x00003698 call  0x000058bb 
+ 00022313  0x00003699 nrtn  0x00000028 
+ 00022314  0x0000369a nrtn  0x00000029 
+ 00022315  0x0000369b fetch  0x00000001 , 0x00004178 
+ 00022316  0x0000369c rtnbit0  0x00000000 
+ 00022317  0x0000369d call  0x0000573f 
+ 00022318  0x0000369e branch  0x00005749 
+ 00022319  0x000036a2 set1  0x00000025 , 0x00000000 
+ 00022320  0x000036a3 bpatch  0x0000005a , 0x0000402b 
+ 00022321  0x000036a4 fetch  0x00000001 , 0x0000413e 
+ 00022322  0x000036a5 set1  0x00000003 , 0x0000003f 
+ 00022323  0x000036a6 store  0x00000001 , 0x0000413e 
+ 00022324  0x000036a7 setarg  0x00000101 
+ 00022325  0x000036a8 store  0x00000002 , 0x000003f4 
+ 00022326  0x000036a9 rtn 
+ 00022327  0x000036ac set1  0x00000025 , 0x00000000 
+ 00022328  0x000036ad bpatch  0x0000005b , 0x0000402b 
+ 00022329  0x000036ae fetch  0x00000001 , 0x0000413e 
+ 00022330  0x000036af set0  0x00000003 , 0x0000003f 
+ 00022331  0x000036b0 store  0x00000001 , 0x0000413e 
+ 00022332  0x000036b1 setarg  0x00000000 
+ 00022333  0x000036b2 store  0x00000002 , 0x000003f4 
+ 00022334  0x000036b3 rtn 
+ 00022335  0x000036b6 jam  0x00000003 , 0x00004178 
+ 00022336  0x000036b7 setarg  0x00000000 
+ 00022337  0x000036b8 store  0x00000004 , 0x000041e2 
+ 00022338  0x000036b9 arg  0x0000417a , 0x00000005 
+ 00022339  0x000036ba call  0x0000574d 
+ 00022340  0x000036bb arg  0x00004187 , 0x00000005 
+ 00022341  0x000036bc call  0x0000574d 
+ 00022342  0x000036bd arg  0x000041e6 , 0x00000005 
+ 00022343  0x000036be call  0x0000574d 
+ 00022344  0x000036bf branch  0x00005754 
+ 00022345  0x000036c1 arg  0x00004187 , 0x00000005 
+ 00022346  0x000036c2 call  0x0000574d 
+ 00022347  0x000036c3 call  0x00005754 
+ 00022348  0x000036c4 branch  0x00005757 
+ 00022349  0x000036c8 setarg  0x00ffffff 
+ 00022350  0x000036c9 istore  0x00000003 , 0x00000005 
+ 00022351  0x000036ca istore  0x00000003 , 0x00000005 
+ 00022352  0x000036cb istore  0x00000003 , 0x00000005 
+ 00022353  0x000036cc setarg  0x0000007f 
+ 00022354  0x000036cd istore  0x00000001 , 0x00000005 
+ 00022355  0x000036ce rtn 
+ 00022356  0x000036d0 setarg  0x00000000 
+ 00022357  0x000036d1 store  0x00000002 , 0x00004176 
+ 00022358  0x000036d2 rtn 
+ 00022359  0x000036d4 fetch  0x00000001 , 0x00004178 
+ 00022360  0x000036d5 set1  0x00000002 , 0x0000003f 
+ 00022361  0x000036d6 store  0x00000001 , 0x00004178 
+ 00022362  0x000036d7 rtn 
+ 00022363  0x000036db force  0x00000002 , 0x00000007 
+ 00022364  0x000036dc call  0x000058a9 
+ 00022365  0x000036dd nbranch  0x000058b9 , 0x00000029 
+ 00022366  0x000036df branch  0x000058bb 
+ 00022367  0x000036e4 force  0x00000002 , 0x0000003f 
+ 00022368  0x000036e5 call  0x000058a1 
+ 00022369  0x000036e6 fetch  0x00000001 , 0x000003f0 
+ 00022370  0x000036e7 istore  0x00000001 , 0x00000005 
+ 00022371  0x000036e8 call  0x000058bb 
+ 00022372  0x000036ea fetch  0x00000001 , 0x0000004b 
+ 00022373  0x000036eb set1  0x00000003 , 0x0000003f 
+ 00022374  0x000036ec store  0x00000001 , 0x0000004b 
+ 00022375  0x000036ed jam  0x00000032 , 0x00000072 
+ 00022376  0x000036ee rtn 
+ 00022377  0x000036f2 force  0x00000001 , 0x0000003f 
+ 00022378  0x000036f3 call  0x000058a1 
+ 00022379  0x000036f4 branch  0x000058bb 
+ 00022380  0x000036f6 force  0x00000001 , 0x0000003f 
+ 00022381  0x000036f7 call  0x000058a1 
+ 00022382  0x000036f8 branch  0x000058b9 
+ 00022383  0x000036fc force  0x00000002 , 0x0000003f 
+ 00022384  0x000036fd call  0x000058a1 
+ 00022385  0x000036fe fetch  0x00000001 , 0x0000004c 
+ 00022386  0x000036ff isolate0  0x00000002 , 0x0000003f 
+ 00022387  0x00003700 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022388  0x00003701 and_into  0x00000001 , 0x0000003f 
+ 00022389  0x00003702 istore  0x00000001 , 0x00000005 
+ 00022390  0x00003703 branch  0x000058bb 
+ 00022391  0x00003707 force  0x00000003 , 0x0000003f 
+ 00022392  0x00003708 call  0x000058a1 
+ 00022393  0x00003709 fetch  0x00000002 , 0x00000051 
+ 00022394  0x0000370a istore  0x00000002 , 0x00000005 
+ 00022395  0x0000370b branch  0x000058bb 
+ 00022396  0x0000370e jam  0x000000fa , 0x00000072 
+ 00022397  0x0000370f force  0x00000002 , 0x0000003f 
+ 00022398  0x00003710 call  0x000058a1 
+ 00022399  0x00003711 fetch  0x00000001 , 0x00000053 
+ 00022400  0x00003712 istore  0x00000001 , 0x00000005 
+ 00022401  0x00003713 branch  0x000058bb 
+ 00022402  0x00003716 force  0x0000000a , 0x0000003f 
+ 00022403  0x00003717 call  0x000058a1 
+ 00022404  0x00003718 arg  0x00000151 , 0x00000006 
+ 00022405  0x00003719 force  0x00000009 , 0x00000039 
+ 00022406  0x0000371b ifetch  0x00000001 , 0x00000006 
+ 00022407  0x0000371c xor_into  0x00000055 , 0x0000003f 
+ 00022408  0x0000371d istore  0x00000001 , 0x00000005 
+ 00022409  0x0000371e loop  0x00005786 
+ 00022410  0x0000371f branch  0x000058bb 
+ 00022411  0x00003722 branch  0x000058bb 
+ 00022412  0x00003724 branch  0x000058bb 
+ 00022413  0x00003727 rtn  0x00000029 
+ 00022414  0x00003728 call  0x000038bc 
+ 00022415  0x00003729 force  0x00000009 , 0x0000003f 
+ 00022416  0x0000372a call  0x000058a1 
+ 00022417  0x0000372b fetch  0x00000002 , 0x00000170 
+ 00022418  0x0000372c istore  0x00000002 , 0x00000005 
+ 00022419  0x0000372d fetch  0x00000003 , 0x00004140 
+ 00022420  0x0000372e istore  0x00000003 , 0x00000005 
+ 00022421  0x0000372f fetch  0x00000001 , 0x00004143 
+ 00022422  0x00003730 istore  0x00000001 , 0x00000005 
+ 00022423  0x00003731 fetch  0x00000002 , 0x00004144 
+ 00022424  0x00003732 istore  0x00000002 , 0x00000005 
+ 00022425  0x00003733 bmark0  0x00000003 , 0x0000579e 
+ 00022426  0x00003734 set0  0x00000003 , 0x00000000 
+ 00022427  0x00003735 call  0x000058bb 
+ 00022428  0x00003736 jam  0x00000013 , 0x0000007c 
+ 00022429  0x00003737 rtn 
+ 00022430  0x00003739 call  0x000058b9 
+ 00022431  0x0000373a jam  0x00000003 , 0x0000007c 
+ 00022432  0x0000373b jam  0x00000013 , 0x0000007d 
+ 00022433  0x0000373c rtn 
+ 00022434  0x0000373f arg  0x00000200 , 0x00000002 
+ 00022435  0x00003740 branch  0x000057a6 , 0x00000029 
+ 00022436  0x00003741 deposit  0x00000028 
+ 00022437  0x00003742 branch  0x000057a7 
+ 00022438  0x00003744 deposit  0x00000022 
+ 00022439  0x00003746 deposit  0x00000021 
+ 00022440  0x00003747 iadd  0x00000002 , 0x0000003f 
+ 00022441  0x00003748 and_into  0x000001fc , 0x0000003f 
+ 00022442  0x00003749 store  0x00000004 , 0x00000034 
+ 00022443  0x0000374a force  0x00000005 , 0x0000003f 
+ 00022444  0x0000374b call  0x000058a1 
+ 00022445  0x0000374c fetch  0x00000004 , 0x00000034 
+ 00022446  0x0000374d rshift  0x0000003f , 0x0000003f 
+ 00022447  0x0000374e istore  0x00000004 , 0x00000005 
+ 00022448  0x0000374f branch  0x000058bb 
+ 00022449  0x00003752 force  0x0000000a , 0x0000003f 
+ 00022450  0x00003753 call  0x000058a1 
+ 00022451  0x00003754 arg  0x000003ff , 0x00000006 
+ 00022452  0x00003755 ifetch  0x00000009 , 0x00000006 
+ 00022453  0x00003756 istore  0x00000009 , 0x00000005 
+ 00022454  0x00003757 branch  0x000058bb 
+ 00022455  0x0000375c force  0x00000003 , 0x0000003f 
+ 00022456  0x0000375d call  0x000058a1 
+ 00022457  0x0000375e setarg  0x00000114 
+ 00022458  0x0000375f istore  0x00000002 , 0x00000005 
+ 00022459  0x00003760 branch  0x000058bb 
+ 00022460  0x00003764 force  0x00000001 , 0x0000003f 
+ 00022461  0x00003765 call  0x000058a1 
+ 00022462  0x0000376e branch  0x000058bb 
+ 00022463  0x00003772 force  0x00000002 , 0x0000003f 
+ 00022464  0x00003773 call  0x000058a1 
+ 00022465  0x00003774 fetch  0x00000001 , 0x00004170 
+ 00022466  0x00003775 istore  0x00000001 , 0x00000005 
+ 00022467  0x00003776 branch  0x000058bb 
+ 00022468  0x0000377a force  0x00000002 , 0x0000003f 
+ 00022469  0x0000377b call  0x000058a1 
+ 00022470  0x0000377c setarg  0x00000005 
+ 00022471  0x0000377d istore  0x00000001 , 0x00000005 
+ 00022472  0x0000377e branch  0x000058bb 
+ 00022473  0x00003782 force  0x00000002 , 0x0000003f 
+ 00022474  0x00003783 call  0x000058a1 
+ 00022475  0x00003784 setarg  0x00000000 
+ 00022476  0x00003785 istore  0x00000001 , 0x00000005 
+ 00022477  0x00003786 branch  0x000058bb 
+ 00022478  0x0000378b jam  0x0000002e , 0x0000007c 
+ 00022479  0x0000378c fetch  0x00000001 , 0x00000030 
+ 00022480  0x0000378d set1  0x00000004 , 0x0000003f 
+ 00022481  0x0000378e store  0x00000001 , 0x00000030 
+ 00022482  0x0000378f copy  0x00000022 , 0x0000003f 
+ 00022483  0x00003790 store  0x00000004 , 0x0000040f 
+ 00022484  0x00003791 fetch  0x00000001 , 0x000003f7 
+ 00022485  0x00003792 bbit1  0x00000003 , 0x000057dd 
+ 00022486  0x00003793 set1  0x00000003 , 0x0000003f 
+ 00022487  0x00003794 store  0x00000001 , 0x000003f7 
+ 00022488  0x00003795 jam  0x00000005 , 0x000009bd 
+ 00022489  0x00003796 call  0x00007d86 
+ 00022490  0x00003797 force  0x00000001 , 0x0000003f 
+ 00022491  0x00003798 call  0x000058a1 
+ 00022492  0x00003799 branch  0x000058bb 
+ 00022493  0x0000379b jam  0x00000000 , 0x00000048 
+ 00022494  0x0000379c rtn 
+ 00022495  0x0000379f force  0x00000006 , 0x0000003f 
+ 00022496  0x000037a0 call  0x000058a1 
+ 00022497  0x000037a1 fetch  0x00000005 , 0x000045a9 
+ 00022498  0x000037a2 istore  0x00000005 , 0x00000005 
+ 00022499  0x000037a3 branch  0x000058bb 
+ 00022500  0x000037a6 force  0x00000009 , 0x0000003f 
+ 00022501  0x000037a7 call  0x000058a1 
+ 00022502  0x000037a8 fetch  0x00000008 , 0x00004138 
+ 00022503  0x000037a9 istore  0x00000008 , 0x00000005 
+ 00022504  0x000037aa branch  0x000058bb 
+ 00022505  0x000037ad jam  0x00000001 , 0x000008d5 
+ 00022506  0x000037ae fetch  0x00000001 , 0x00004639 
+ 00022507  0x000037af rtnne  0x00000001 
+ 00022508  0x000037b0 jam  0x00000013 , 0x000008d3 
+ 00022509  0x000037b1 rtn 
+ 00022510  0x000037b4 call  0x000058fa 
+ 00022511  0x000037b5 jam  0x00000099 , 0x0000007c 
+ 00022512  0x000037b6 jam  0x00000003 , 0x000008d3 
+ 00022513  0x000037b7 rtn 
+ 00022514  0x000037bb call  0x000058fa 
+ 00022515  0x000037bc jam  0x0000003d , 0x0000007c 
+ 00022516  0x000037bd jam  0x00000007 , 0x000008d3 
+ 00022517  0x000037be rtn 
+ 00022518  0x000037c1 arg  0x00000972 , 0x00000011 
+ 00022519  0x000037c2 arg  0x00000992 , 0x00000012 
+ 00022520  0x000037c3 arg  0x00000010 , 0x00000039 
+ 00022521  0x000037c4 call  0x00007f55 
+ 00022522  0x000037c5 branch  0x00005800 , 0x00000005 
+ 00022523  0x000037c6 jam  0x00000000 , 0x000008d3 
+ 00022524  0x000037c7 call  0x000076f5 
+ 00022525  0x000037c8 jam  0x00000024 , 0x0000007e 
+ 00022526  0x000037c9 jam  0x00000040 , 0x0000007d 
+ 00022527  0x000037ca branch  0x0000536c 
+ 00022528  0x000037cc jam  0x0000000a , 0x000008d3 
+ 00022529  0x000037cd call  0x000076f3 
+ 00022530  0x000037ce jam  0x00000040 , 0x0000007d 
+ 00022531  0x000037cf branch  0x00005454 
+ 00022532  0x000037d4 jam  0x00000040 , 0x0000007c 
+ 00022533  0x000037d5 rtn 
+ 00022534  0x000037dc jam  0x0000003d , 0x0000007c 
+ 00022535  0x000037de rtn 
+ 00022536  0x000037e5 jam  0x00000000 , 0x000008da 
+ 00022537  0x000037e6 force  0x00000004 , 0x0000003f 
+ 00022538  0x000037e7 call  0x000058a1 
+ 00022539  0x000037e8 force  0x00000001 , 0x0000003f 
+ 00022540  0x000037e9 istore  0x00000001 , 0x00000005 
+ 00022541  0x000037ea force  0x00000001 , 0x0000003f 
+ 00022542  0x000037eb istore  0x00000001 , 0x00000005 
+ 00022543  0x000037ec force  0x00000030 , 0x0000003f 
+ 00022544  0x000037ed istore  0x00000001 , 0x00000005 
+ 00022545  0x000037ee call  0x00005907 
+ 00022546  0x000037ef branch  0x000058bb , 0x00000001 
+ 00022547  0x000037f0 branch  0x000058b9 
+ 00022548  0x000037f4 force  0x00000011 , 0x0000003f 
+ 00022549  0x000037f5 call  0x000058a1 
+ 00022550  0x000037f6 fetch  0x00000001 , 0x000008da 
+ 00022551  0x000037f7 arg  0x000046b2 , 0x00000006 
+ 00022552  0x000037f8 iadd  0x00000006 , 0x00000006 
+ 00022553  0x000037f9 ifetch  0x00000008 , 0x00000006 
+ 00022554  0x000037fa istore  0x00000008 , 0x00000005 
+ 00022555  0x000037fb ifetch  0x00000008 , 0x00000006 
+ 00022556  0x000037fc istore  0x00000008 , 0x00000005 
+ 00022557  0x000037fd fetch  0x00000001 , 0x000008da 
+ 00022558  0x000037fe increase  0x00000010 , 0x0000003f 
+ 00022559  0x000037ff store  0x00000001 , 0x000008da 
+ 00022560  0x00003800 call  0x00005907 
+ 00022561  0x00003801 branch  0x000058bb , 0x00000001 
+ 00022562  0x00003802 branch  0x000058b9 
+ 00022563  0x00003806 jam  0x00000006 , 0x000008d2 
+ 00022564  0x00003807 jam  0x0000003f , 0x0000007c 
+ 00022565  0x00003808 rtn 
+ 00022566  0x0000380c force  0x00000011 , 0x0000003f 
+ 00022567  0x0000380d call  0x000058a1 
+ 00022568  0x0000380e arg  0x00000972 , 0x00000006 
+ 00022569  0x0000380f ifetch  0x00000008 , 0x00000006 
+ 00022570  0x00003810 istore  0x00000008 , 0x00000005 
+ 00022571  0x00003811 ifetch  0x00000008 , 0x00000006 
+ 00022572  0x00003812 istore  0x00000008 , 0x00000005 
+ 00022573  0x00003813 branch  0x000058b9 
+ 00022574  0x00003816 jam  0x00000040 , 0x0000007c 
+ 00022575  0x00003817 rtn 
+ 00022576  0x0000381b call  0x00005907 
+ 00022577  0x0000381c call  0x00007628 , 0x00000001 
+ 00022578  0x0000381d force  0x00000011 , 0x0000003f 
+ 00022579  0x0000381e call  0x000058a1 
+ 00022580  0x0000381f arg  0x00000942 , 0x00000006 
+ 00022581  0x00003820 ifetch  0x00000008 , 0x00000006 
+ 00022582  0x00003821 istore  0x00000008 , 0x00000005 
+ 00022583  0x00003822 ifetch  0x00000008 , 0x00000006 
+ 00022584  0x00003823 istore  0x00000008 , 0x00000005 
+ 00022585  0x00003824 call  0x00005907 
+ 00022586  0x00003825 nbranch  0x000058b9 , 0x00000001 
+ 00022587  0x00003826 branch  0x000058bb , 0x00000001 
+ 00022588  0x0000382a jam  0x0000000f , 0x000008d3 
+ 00022589  0x0000382c call  0x000058fa 
+ 00022590  0x0000382d jam  0x0000000b , 0x0000007c 
+ 00022591  0x0000382e call  0x00005912 
+ 00022592  0x0000382f branch  0x00007665 , 0x00000001 
+ 00022593  0x00003830 branch  0x0000766f 
+ 00022594  0x00003832 call  0x000058f6 
+ 00022595  0x00003834 jam  0x00000041 , 0x0000007c 
+ 00022596  0x00003835 rtn 
+ 00022597  0x00003838 force  0x00000011 , 0x0000003f 
+ 00022598  0x00003839 call  0x000058a1 
+ 00022599  0x0000383a arg  0x00000972 , 0x00000006 
+ 00022600  0x0000383b ifetch  0x00000008 , 0x00000006 
+ 00022601  0x0000383c istore  0x00000008 , 0x00000005 
+ 00022602  0x0000383d ifetch  0x00000008 , 0x00000006 
+ 00022603  0x0000383e istore  0x00000008 , 0x00000005 
+ 00022604  0x0000383f call  0x00005907 
+ 00022605  0x00003840 nbranch  0x000058b9 , 0x00000001 
+ 00022606  0x00003841 branch  0x000058bb , 0x00000001 
+ 00022607  0x00003844 force  0x00000003 , 0x0000003f 
+ 00022608  0x00003845 call  0x000058a1 
+ 00022609  0x00003846 setarg  0x0000fffe 
+ 00022610  0x00003847 istore  0x00000002 , 0x00000005 
+ 00022611  0x00003848 branch  0x000058b9 
+ 00022612  0x0000384b branch  0x000058bb 
+ 00022613  0x0000384d branch  0x000058bb 
+ 00022614  0x0000384f branch  0x000058bb 
+ 00022615  0x00003851 branch  0x000058bb 
+ 00022616  0x00003857 call  0x00005916 
+ 00022617  0x00003858 arg  0x00004140 , 0x00000011 
+ 00022618  0x00003859 call  0x0000591c 
+ 00022619  0x0000385a force  0x00000011 , 0x0000003f 
+ 00022620  0x0000385b call  0x000058a1 
+ 00022621  0x0000385c arg  0x000004a6 , 0x00000011 
+ 00022622  0x0000385d arg  0x00000486 , 0x00000012 
+ 00022623  0x0000385e call  0x00007077 
+ 00022624  0x0000385f nbranch  0x000058b0 , 0x00000029 
+ 00022625  0x00003860 branch  0x000058b6 
+ 00022626  0x00003863 call  0x00005916 
+ 00022627  0x00003864 arg  0x00000040 , 0x00000011 
+ 00022628  0x00003865 call  0x00006f7a 
+ 00022629  0x00003867 force  0x00000011 , 0x0000003f 
+ 00022630  0x00003868 call  0x000058a1 
+ 00022631  0x00003869 arg  0x00000486 , 0x00000006 
+ 00022632  0x0000386a call  0x00007e87 
+ 00022633  0x0000386b fetch  0x00000001 , 0x00000055 
+ 00022634  0x0000386c beq  0x00000019 , 0x000058bb 
+ 00022635  0x0000386d beq  0x00000018 , 0x000058bb 
+ 00022636  0x0000386e branch  0x000058b6 
+ 00022637  0x00003871 fetch  0x00000001 , 0x000008d9 
+ 00022638  0x00003872 branch  0x00005873 , 0x00000034 
+ 00022639  0x00003873 call  0x00005907 
+ 00022640  0x00003874 call  0x000058fa , 0x00000001 
+ 00022641  0x00003875 ncall  0x000058f6 , 0x00000001 
+ 00022642  0x00003876 branch  0x00005874 
+ 00022643  0x00003878 call  0x000058fa 
+ 00022644  0x0000387a call  0x00005916 
+ 00022645  0x0000387b branch  0x00005865 
+ 00022646  0x0000387e arg  0x00004140 , 0x00000011 
+ 00022647  0x0000387f call  0x00006fad 
+ 00022648  0x00003880 force  0x00000005 , 0x0000003f 
+ 00022649  0x00003881 call  0x000058a1 
+ 00022650  0x00003882 fetch  0x00000004 , 0x000004b6 
+ 00022651  0x00003883 istore  0x00000004 , 0x00000005 
+ 00022652  0x00003884 arg  0x000003fb , 0x00000002 
+ 00022653  0x00003885 call  0x000058ec 
+ 00022654  0x00003886 call  0x000070ab 
+ 00022655  0x00003887 call  0x00005907 
+ 00022656  0x00003888 branch  0x00005885 , 0x00000001 
+ 00022657  0x00003889 jam  0x00000001 , 0x000003fe 
+ 00022658  0x0000388a fetch  0x00000001 , 0x000008d9 
+ 00022659  0x0000388b rtn  0x00000034 
+ 00022660  0x0000388c jam  0x0000000b , 0x0000007c 
+ 00022661  0x0000388e fetch  0x00000001 , 0x0000425d 
+ 00022662  0x0000388f rtn  0x00000034 
+ 00022663  0x00003891 call  0x00005907 
+ 00022664  0x00003892 nbranch  0x0000588d , 0x00000001 
+ 00022665  0x00003893 fetch  0x00000001 , 0x000003fd 
+ 00022666  0x00003894 rtn  0x00000034 
+ 00022667  0x00003895 jam  0x0000000f , 0x0000007c 
+ 00022668  0x00003896 rtn 
+ 00022669  0x00003898 rtnmark0  0x00000021 
+ 00022670  0x00003899 set0  0x00000021 , 0x00000000 
+ 00022671  0x0000389a jam  0x0000000f , 0x0000007c 
+ 00022672  0x0000389b rtn 
+ 00022673  0x000038a0 call  0x00005916 
+ 00022674  0x000038a1 call  0x00006fb0 
+ 00022675  0x000038a2 force  0x00000011 , 0x0000003f 
+ 00022676  0x000038a3 call  0x000058a1 
+ 00022677  0x000038a4 arg  0x00000486 , 0x00000006 
+ 00022678  0x000038a5 call  0x00007e87 
+ 00022679  0x000038a6 branch  0x000058b6 
+ 00022680  0x000038a9 force  0x00000001 , 0x0000003f 
+ 00022681  0x000038aa call  0x000058a1 
+ 00022682  0x000038ab branch  0x000058b6 
+ 00022683  0x000038ae force  0x00000002 , 0x0000003f 
+ 00022684  0x000038af call  0x000058a1 
+ 00022685  0x000038b0 force  0x00000010 , 0x0000003f 
+ 00022686  0x000038b1 istore  0x00000001 , 0x00000005 
+ 00022687  0x000038b2 store  0x00000001 , 0x00000054 
+ 00022688  0x000038b3 branch  0x000058b6 
+ 00022689  0x000038b7 lshift3  0x0000003f , 0x0000003f 
+ 00022690  0x000038b8 or_into  0x00000007 , 0x0000003f 
+ 00022691  0x000038b9 store  0x00000001 , 0x000003dc 
+ 00022692  0x000038ba arg  0x00000011 , 0x00000039 
+ 00022693  0x000038bb arg  0x000003de , 0x00000005 
+ 00022694  0x000038bc call  0x00007e9f 
+ 00022695  0x000038bd arg  0x000003de , 0x00000005 
+ 00022696  0x000038be rtn 
+ 00022697  0x000038c1 and  0x0000003f , 0x0000007f , 0x00000011 
+ 00022698  0x000038c2 jam  0x0000007f , 0x00000048 
+ 00022699  0x000038c3 deposit  0x00000007 
+ 00022700  0x000038c4 call  0x000058a1 
+ 00022701  0x000038c5 deposit  0x00000011 
+ 00022702  0x000038c6 istore  0x00000001 , 0x00000005 
+ 00022703  0x000038c7 rtn 
+ 00022704  0x000038ca fetch  0x00000001 , 0x00000048 
+ 00022705  0x000038cb lshift  0x0000003f , 0x0000003f 
+ 00022706  0x000038cc fetcht  0x00000001 , 0x0000004c 
+ 00022707  0x000038cd isolate1  0x00000001 , 0x00000002 
+ 00022708  0x000038ce setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022709  0x000038cf branch  0x000058c0 
+ 00022710  0x000038d3 fetcht  0x00000001 , 0x0000004c 
+ 00022711  0x000038d4 and_into  0x00000001 , 0x00000002 
+ 00022712  0x000038d5 branch  0x000058bc 
+ 00022713  0x000038d8 force  0x00000000 , 0x00000002 
+ 00022714  0x000038d9 branch  0x000058bc 
+ 00022715  0x000038dc force  0x00000001 , 0x00000002 
+ 00022716  0x000038de fetch  0x00000001 , 0x00000048 
+ 00022717  0x000038df lshift  0x0000003f , 0x0000003f 
+ 00022718  0x000038e0 setflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00022719  0x000038e1 ixor  0x00000002 , 0x0000003f 
+ 00022720  0x000038e3 store  0x00000001 , 0x000003dd 
+ 00022721  0x000038e4 jam  0x00000000 , 0x00000048 
+ 00022722  0x000038e5 call  0x000058d1 
+ 00022723  0x000038e6 enable  0x00000028 
+ 00022724  0x000038e7 rtn 
+ 00022725  0x000038eb fetch  0x00000001 , 0x0000007c 
+ 00022726  0x000038ec rtn  0x00000034 
+ 00022727  0x000038ed call  0x000058ca 
+ 00022728  0x000038ee fetch  0x00000001 , 0x0000007c 
+ 00022729  0x000038ef rtn 
+ 00022730  0x000038f2 set1  0x00000025 , 0x00000000 
+ 00022731  0x000038f3 bpatch  0x0000005c , 0x0000402b 
+ 00022732  0x000038f4 fetch  0x00000001 , 0x00000048 
+ 00022733  0x000038f5 branch  0x000058d1 , 0x00000034 
+ 00022734  0x000038f6 fetch  0x00000001 , 0x00000078 
+ 00022735  0x000038f7 nrtn  0x00000034 
+ 00022736  0x000038f8 branch  0x000058db 
+ 00022737  0x000038fa fetch  0x00000001 , 0x00000078 
+ 00022738  0x000038fb branch  0x000058e1 , 0x00000034 
+ 00022739  0x000038fc fetch  0x00000003 , 0x00000078 
+ 00022740  0x000038fd store  0x00000003 , 0x00000048 
+ 00022741  0x000038fe fetcht  0x00000001 , 0x0000007b 
+ 00022742  0x000038ff fetch  0x00000001 , 0x0000004c 
+ 00022743  0x00003900 set0  0x00000001 , 0x0000003f 
+ 00022744  0x00003901 ior  0x00000002 , 0x0000003f 
+ 00022745  0x00003902 store  0x00000001 , 0x0000004c 
+ 00022746  0x00003903 jam  0x00000000 , 0x00000078 
+ 00022747  0x00003905 fetch  0x00000001 , 0x0000007c 
+ 00022748  0x00003906 rtn  0x00000034 
+ 00022749  0x00003907 fetch  0x00000004 , 0x0000007c 
+ 00022750  0x00003908 store  0x00000004 , 0x00000078 
+ 00022751  0x00003909 jam  0x00000000 , 0x0000007c 
+ 00022752  0x0000390a rtn 
+ 00022753  0x0000390c fetch  0x00000001 , 0x0000007c 
+ 00022754  0x0000390d rtn  0x00000034 
+ 00022755  0x0000390e fetch  0x00000003 , 0x0000007c 
+ 00022756  0x0000390f store  0x00000003 , 0x00000048 
+ 00022757  0x00003910 fetcht  0x00000001 , 0x0000007f 
+ 00022758  0x00003911 fetch  0x00000001 , 0x0000004c 
+ 00022759  0x00003912 set0  0x00000001 , 0x0000003f 
+ 00022760  0x00003913 ior  0x00000002 , 0x0000003f 
+ 00022761  0x00003914 store  0x00000001 , 0x0000004c 
+ 00022762  0x00003915 jam  0x00000000 , 0x0000007c 
+ 00022763  0x00003916 rtn 
+ 00022764  0x0000391a set1  0x00000025 , 0x00000000 
+ 00022765  0x0000391b bpatch  0x0000005d , 0x0000402b 
+ 00022766  0x0000391c fetch  0x00000001 , 0x0000004c 
+ 00022767  0x0000391d copy  0x0000003f , 0x00000013 
+ 00022768  0x0000391e ifetch  0x00000001 , 0x00000002 
+ 00022769  0x0000391f call  0x0000546e 
+ 00022770  0x00003920 call  0x000058b0 
+ 00022771  0x00003921 copy  0x00000013 , 0x0000003f 
+ 00022772  0x00003922 store  0x00000001 , 0x0000004c 
+ 00022773  0x00003923 rtn 
+ 00022774  0x00003926 fetcht  0x00000001 , 0x0000004c 
+ 00022775  0x00003927 set0  0x00000000 , 0x00000002 
+ 00022776  0x00003928 storet  0x00000001 , 0x0000004c 
+ 00022777  0x00003929 rtn 
+ 00022778  0x0000392c fetcht  0x00000001 , 0x0000004c 
+ 00022779  0x0000392d set1  0x00000000 , 0x00000002 
+ 00022780  0x0000392e storet  0x00000001 , 0x0000004c 
+ 00022781  0x0000392f rtn 
+ 00022782  0x00003933 nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022783  0x00003934 fetcht  0x00000001 , 0x0000004c 
+ 00022784  0x00003935 ixor  0x00000002 , 0x0000003f 
+ 00022785  0x00003936 isolate1  0x00000001 , 0x0000003f 
+ 00022786  0x00003937 rtn 
+ 00022787  0x0000393b fetch  0x00000001 , 0x0000004c 
+ 00022788  0x0000393c setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022789  0x0000393d store  0x00000001 , 0x0000004c 
+ 00022790  0x0000393e rtn 
+ 00022791  0x00003942 fetch  0x00000001 , 0x000008d8 
+ 00022792  0x00003943 compare  0x00000001 , 0x0000003f , 0x0000007f 
+ 00022793  0x00003944 rtn 
+ 00022794  0x00003946 fetch  0x00000001 , 0x000008d8 
+ 00022795  0x00003947 set1  0x00000007 , 0x0000003f 
+ 00022796  0x00003948 store  0x00000001 , 0x000008d8 
+ 00022797  0x00003949 rtn 
+ 00022798  0x0000394b fetch  0x00000001 , 0x000008d8 
+ 00022799  0x0000394c set0  0x00000007 , 0x0000003f 
+ 00022800  0x0000394d store  0x00000001 , 0x000008d8 
+ 00022801  0x0000394e rtn 
+ 00022802  0x00003950 fetch  0x00000001 , 0x000008d8 
+ 00022803  0x00003951 isolate1  0x00000007 , 0x0000003f 
+ 00022804  0x00003952 store  0x00000001 , 0x000008d8 
+ 00022805  0x00003953 rtn 
+ 00022806  0x00003957 arg  0x00000486 , 0x00000005 
+ 00022807  0x00003959 force  0x00000010 , 0x00000039 
+ 00022808  0x0000395c random  0x0000003f 
+ 00022809  0x0000395d istore  0x00000001 , 0x00000005 
+ 00022810  0x0000395e loop  0x00005918 
+ 00022811  0x0000395f rtn 
+ 00022812  0x00003962 call  0x00006f7e 
+ 00022813  0x00003963 arg  0x00004261 , 0x00000011 
+ 00022814  0x00003964 arg  0x000004b6 , 0x00000012 
+ 00022815  0x00003965 ifetch  0x00000008 , 0x00000011 
+ 00022816  0x00003966 fetcht  0x00000001 , 0x00000030 
+ 00022817  0x00003967 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00022818  0x00003968 storet  0x00000001 , 0x00000030 
+ 00022819  0x00003969 copy  0x00000011 , 0x00000005 
+ 00022820  0x0000396a call  0x00007077 
+ 00022821  0x0000396b branch  0x000031ee 
+ 00022822  0x00003973 set1  0x00000025 , 0x00000000 
+ 00022823  0x00003974 bpatch  0x0000005e , 0x0000402b 
+ 00022824  0x00003976 call  0x000058c5 
+ 00022825  0x00003977 nrtn  0x00000034 
+ 00022826  0x00003979 fetch  0x00000001 , 0x00000055 
+ 00022827  0x0000397a rtn  0x00000034 
+ 00022828  0x0000397e beq  0x00000004 , 0x0000597b 
+ 00022829  0x0000397f beq  0x00000005 , 0x00005980 
+ 00022830  0x00003980 beq  0x00000002 , 0x00005972 
+ 00022831  0x00003981 beq  0x00000003 , 0x00005988 
+ 00022832  0x00003982 beq  0x0000000e , 0x00005975 
+ 00022833  0x00003983 beq  0x00000006 , 0x000059a4 
+ 00022834  0x00003984 beq  0x00000007 , 0x000059bc 
+ 00022835  0x00003985 beq  0x00000009 , 0x000059bd 
+ 00022836  0x00003986 beq  0x0000000a , 0x000059c6 
+ 00022837  0x00003987 beq  0x0000000b , 0x000059ca 
+ 00022838  0x00003988 beq  0x0000000c , 0x00005992 
+ 00022839  0x00003989 beq  0x0000000d , 0x00005995 
+ 00022840  0x0000398a beq  0x0000000f , 0x0000599b 
+ 00022841  0x0000398b beq  0x00000012 , 0x00005965 
+ 00022842  0x0000398c beq  0x00000013 , 0x00005988 
+ 00022843  0x0000398d beq  0x00000010 , 0x00005968 
+ 00022844  0x0000398e beq  0x00000014 , 0x00005962 
+ 00022845  0x0000398f beq  0x00000015 , 0x00005988 
+ 00022846  0x00003990 beq  0x00000016 , 0x0000595c 
+ 00022847  0x00003991 beq  0x00000018 , 0x00005961 
+ 00022848  0x00003992 beq  0x00000017 , 0x00005955 
+ 00022849  0x00003993 beq  0x00000019 , 0x0000595b 
+ 00022850  0x00003994 beq  0x0000001a , 0x00005946 
+ 00022851  0x00003995 beq  0x0000001b , 0x00005950 
+ 00022852  0x00003996 jam  0x00000000 , 0x00000055 
+ 00022853  0x00003998 rtn 
+ 00022854  0x0000399a fetch  0x00000001 , 0x000003f7 
+ 00022855  0x0000399b rtnbit0  0x00000002 
+ 00022856  0x0000399c rtnbit0  0x00000003 
+ 00022857  0x0000399d jam  0x00000000 , 0x00000055 
+ 00022858  0x0000399e call  0x0000594c 
+ 00022859  0x0000399f branch  0x0000690d 
+ 00022860  0x000039a2 fetch  0x00000001 , 0x0000016c 
+ 00022861  0x000039a3 rtnbit0  0x00000001 
+ 00022862  0x000039a4 jam  0x0000000a , 0x00000055 
+ 00022863  0x000039a5 rtn 
+ 00022864  0x000039a8 arg  0x0000000b , 0x00000007 
+ 00022865  0x000039a9 call  0x00007ee2 
+ 00022866  0x000039aa nrtn  0x00000034 
+ 00022867  0x000039ab jam  0x0000001a , 0x00000055 
+ 00022868  0x000039ac rtn 
+ 00022869  0x000039af fetch  0x00000001 , 0x0000016c 
+ 00022870  0x000039b0 set0  0x00000000 , 0x0000003f 
+ 00022871  0x000039b1 store  0x00000001 , 0x0000016c 
+ 00022872  0x000039b2 jam  0x00000019 , 0x00000055 
+ 00022873  0x000039b3 jam  0x0000000b , 0x0000007c 
+ 00022874  0x000039b4 rtn 
+ 00022875  0x000039b6 rtn 
+ 00022876  0x000039b8 fetch  0x00000001 , 0x000003fa 
+ 00022877  0x000039b9 rtnne  0x00000002 
+ 00022878  0x000039ba call  0x000059cc 
+ 00022879  0x000039bb jam  0x00000018 , 0x00000055 
+ 00022880  0x000039bc rtn 
+ 00022881  0x000039bf rtn 
+ 00022882  0x000039c1 jam  0x00000015 , 0x00000055 
+ 00022883  0x000039c2 jam  0x00000083 , 0x0000007c 
+ 00022884  0x000039c3 rtn 
+ 00022885  0x000039c5 jam  0x00000013 , 0x00000055 
+ 00022886  0x000039c6 jam  0x00000025 , 0x0000007c 
+ 00022887  0x000039c7 rtn 
+ 00022888  0x000039ca fetch  0x00000001 , 0x000045f4 
+ 00022889  0x000039cb rtneq  0x00000000 
+ 00022890  0x000039cc beq  0x00000001 , 0x00005970 
+ 00022891  0x000039cd arg  0x0000000a , 0x00000007 
+ 00022892  0x000039ce call  0x00007ee2 
+ 00022893  0x000039cf nrtn  0x00000034 
+ 00022894  0x000039d0 jam  0x00000000 , 0x000045f4 
+ 00022895  0x000039d1 branch  0x00005989 
+ 00022896  0x000039d3 rtn  0x00000029 
+ 00022897  0x000039d4 branch  0x000059a4 
+ 00022898  0x000039d7 jam  0x00000003 , 0x00000055 
+ 00022899  0x000039d8 jam  0x00000027 , 0x0000007c 
+ 00022900  0x000039d9 rtn 
+ 00022901  0x000039db jam  0x00000013 , 0x0000007c 
+ 00022902  0x000039dc set1  0x00000003 , 0x00000000 
+ 00022903  0x000039dd jam  0x00000005 , 0x00000055 
+ 00022904  0x000039de setarg  0x000001ff 
+ 00022905  0x000039df store  0x00000002 , 0x000003f8 
+ 00022906  0x000039e0 rtn 
+ 00022907  0x000039e2 jam  0x00000005 , 0x00000055 
+ 00022908  0x000039e3 jam  0x000000ff , 0x000003f8 
+ 00022909  0x000039e4 set0  0x00000022 , 0x00000000 
+ 00022910  0x000039e5 jam  0x00000033 , 0x0000007c 
+ 00022911  0x000039e6 branch  0x0000531b 
+ 00022912  0x000039e8 rtnmark1  0x00000022 
+ 00022913  0x000039e9 fetch  0x00000002 , 0x000003f8 
+ 00022914  0x000039ea sub  0x0000003f , 0x00000001 , 0x0000003f 
+ 00022915  0x000039eb branch  0x00005986 , 0x00000005 
+ 00022916  0x000039ec store  0x00000002 , 0x000003f8 
+ 00022917  0x000039ed rtn 
+ 00022918  0x000039ef jam  0x0000000e , 0x00000055 
+ 00022919  0x000039f0 rtn 
+ 00022920  0x000039f3 rtn 
+ 00022921  0x000039f6 fetch  0x00000001 , 0x000003f7 
+ 00022922  0x000039f7 rtnbit0  0x00000003 
+ 00022923  0x000039f8 rtnbit0  0x00000002 
+ 00022924  0x000039f9 fetch  0x00000001 , 0x0000016c 
+ 00022925  0x000039fa set0  0x00000002 , 0x0000003f 
+ 00022926  0x000039fb store  0x00000001 , 0x0000016c 
+ 00022927  0x000039fc jam  0x00000013 , 0x0000007c 
+ 00022928  0x000039fd jam  0x00000010 , 0x00000055 
+ 00022929  0x000039fe rtn 
+ 00022930  0x00003a01 jam  0x0000000d , 0x00000055 
+ 00022931  0x00003a02 jam  0x00000031 , 0x0000007c 
+ 00022932  0x00003a03 rtn 
+ 00022933  0x00003a06 fetch  0x00000001 , 0x000003f7 
+ 00022934  0x00003a07 rtnbit0  0x00000002 
+ 00022935  0x00003a08 jam  0x00000000 , 0x00000055 
+ 00022936  0x00003a0a rtn 
+ 00022937  0x00003a0c jam  0x00000006 , 0x00000055 
+ 00022938  0x00003a0d rtn 
+ 00022939  0x00003a10 fetch  0x00000001 , 0x000003f8 
+ 00022940  0x00003a11 increase  0xffffffff , 0x0000003f 
+ 00022941  0x00003a12 branch  0x000059a0 , 0x00000034 
+ 00022942  0x00003a13 store  0x00000001 , 0x000003f8 
+ 00022943  0x00003a14 rtn 
+ 00022944  0x00003a16 jam  0x00000007 , 0x0000007c 
+ 00022945  0x00003a17 jam  0x00000016 , 0x000003f0 
+ 00022946  0x00003a18 jam  0x00000000 , 0x00000055 
+ 00022947  0x00003a19 rtn 
+ 00022948  0x00003a1c fetch  0x00000001 , 0x0000016c 
+ 00022949  0x00003a1d bbit1  0x00000002 , 0x00005989 
+ 00022950  0x00003a1e bbit1  0x00000000 , 0x000059a9 
+ 00022951  0x00003a20 jam  0x0000001a , 0x00000055 
+ 00022952  0x00003a21 rtn 
+ 00022953  0x00003a23 fetch  0x00000001 , 0x0000425d 
+ 00022954  0x00003a24 branch  0x000059b5 , 0x00000034 
+ 00022955  0x00003a25 fetch  0x00000001 , 0x000003f7 
+ 00022956  0x00003a26 rtnbit0  0x00000003 
+ 00022957  0x00003a27 rtnbit0  0x00000002 
+ 00022958  0x00003a28 fetch  0x00000004 , 0x0000040f 
+ 00022959  0x00003a29 arg  0x00000064 , 0x00000002 
+ 00022960  0x00003a2a iadd  0x00000002 , 0x00000002 
+ 00022961  0x00003a2b copy  0x00000022 , 0x0000003f 
+ 00022962  0x00003a2c isub  0x00000002 , 0x0000003e 
+ 00022963  0x00003a2d nrtn  0x00000002 
+ 00022964  0x00003a2e branch  0x00005955 
+ 00022965  0x00003a33 jam  0x00000016 , 0x00000055 
+ 00022966  0x00003a34 jam  0x00000004 , 0x00004718 
+ 00022967  0x00003a35 setarg  0x00003030 
+ 00022968  0x00003a36 store  0x00000002 , 0x00004719 
+ 00022969  0x00003a37 istore  0x00000002 , 0x00000005 
+ 00022970  0x00003a38 jam  0x00000002 , 0x000003fa 
+ 00022971  0x00003a39 branch  0x0000595c 
+ 00022972  0x00003a3c rtn 
+ 00022973  0x00003a3e fetch  0x00000001 , 0x0000016c 
+ 00022974  0x00003a3f bbit1  0x00000001 , 0x000059c1 
+ 00022975  0x00003a40 jam  0x0000001a , 0x00000055 
+ 00022976  0x00003a41 rtn 
+ 00022977  0x00003a44 fetch  0x00000001 , 0x0000016c 
+ 00022978  0x00003a45 set0  0x00000001 , 0x0000003f 
+ 00022979  0x00003a46 store  0x00000001 , 0x0000016c 
+ 00022980  0x00003a47 jam  0x0000000f , 0x0000007c 
+ 00022981  0x00003a48 rtn 
+ 00022982  0x00003a4b fetch  0x00000001 , 0x000003fe 
+ 00022983  0x00003a4c rtn  0x00000034 
+ 00022984  0x00003a4d jam  0x00000000 , 0x00000055 
+ 00022985  0x00003a4e branch  0x000059c1 
+ 00022986  0x00003a51 jam  0x0000000c , 0x00000055 
+ 00022987  0x00003a52 rtn 
+ 00022988  0x00003a55 fetch  0x00000001 , 0x0000004b 
+ 00022989  0x00003a56 bbit1  0x00000002 , 0x000059d1 
+ 00022990  0x00003a57 call  0x000058fa 
+ 00022991  0x00003a58 jam  0x00000008 , 0x0000007c 
+ 00022992  0x00003a59 branch  0x00003f9b 
+ 00022993  0x00003a5b fetch  0x00000001 , 0x0000004b 
+ 00022994  0x00003a5c set0  0x00000002 , 0x0000003f 
+ 00022995  0x00003a5d store  0x00000001 , 0x0000004b 
+ 00022996  0x00003a5e call  0x00005618 
+ 00022997  0x00003a5f call  0x00005903 
+ 00022998  0x00003a60 branch  0x00003f9b 
+ 00022999  0x00003a63 setarg  0x00000004 
+ 00023000  0x00003a64 store  0x00000001 , 0x00004718 
+ 00023001  0x00003a65 setarg  0x00003030 
+ 00023002  0x00003a66 istore  0x00000002 , 0x00000005 
+ 00023003  0x00003a67 istore  0x00000002 , 0x00000005 
+ 00023004  0x00003a68 rtn 
+ 00023005  0x00003a71 rtn  0x0000002b 
+ 00023006  0x00003a72 jam  0x00000000 , 0x0000472f 
+ 00023007  0x00003a73 call  0x00005234 
+ 00023008  0x00003a74 call  0x00006577 
+ 00023009  0x00003a75 setarg  0x00005a1c 
+ 00023010  0x00003a76 store  0x00000002 , 0x00004294 
+ 00023011  0x00003a77 setarg  0x00005a1c 
+ 00023012  0x00003a78 store  0x00000002 , 0x00004292 
+ 00023013  0x00003a79 setarg  0x00005a22 
+ 00023014  0x00003a7a store  0x00000002 , 0x00004296 
+ 00023015  0x00003a7b setarg  0x00005a1c 
+ 00023016  0x00003a7c store  0x00000002 , 0x00004290 
+ 00023017  0x00003a7d setarg  0x00005a18 
+ 00023018  0x00003a7e store  0x00000002 , 0x0000428a 
+ 00023019  0x00003a7f setarg  0x00005b60 
+ 00023020  0x00003a80 store  0x00000002 , 0x0000429c 
+ 00023021  0x00003a81 setarg  0x00005ba2 
+ 00023022  0x00003a82 store  0x00000002 , 0x0000429e 
+ 00023023  0x00003a83 setarg  0x00005cf9 
+ 00023024  0x00003a84 store  0x00000002 , 0x00004607 
+ 00023025  0x00003a85 setarg  0x00005d81 
+ 00023026  0x00003a86 store  0x00000002 , 0x0000429a 
+ 00023027  0x00003a87 set1  0x00000025 , 0x00000000 
+ 00023028  0x00003a88 bpatch  0x0000005f , 0x0000402b 
+ 00023029  0x00003a89 call  0x000059fa 
+ 00023030  0x00003a8a call  0x00005a13 
+ 00023031  0x00003a8b call  0x00003d48 
+ 00023032  0x00003a8c call  0x00006441 
+ 00023033  0x00003a8d branch  0x00005d0e 
+ 00023034  0x00003a91 fetch  0x00000004 , 0x0000473e 
+ 00023035  0x00003a92 hstore  0x00000004 , 0x00008054 
+ 00023036  0x00003a94 fetch  0x00000004 , 0x00004742 
+ 00023037  0x00003a95 hstore  0x00000004 , 0x0000805a 
+ 00023038  0x00003a97 hfetch  0x00000001 , 0x00008081 
+ 00023039  0x00003a98 or_into  0x00000004 , 0x0000003f 
+ 00023040  0x00003a99 hstore  0x00000001 , 0x00008081 
+ 00023041  0x00003a9a jam  0x000000ff , 0x0000027c 
+ 00023042  0x00003a9b hjam  0x00000000 , 0x00008062 
+ 00023043  0x00003a9d fetch  0x00000002 , 0x0000473e 
+ 00023044  0x00003a9e hstore  0x00000002 , 0x00008058 
+ 00023045  0x00003a9f fetch  0x00000002 , 0x00004742 
+ 00023046  0x00003aa0 hstore  0x00000002 , 0x0000805e 
+ 00023047  0x00003aa1 hstore  0x00000002 , 0x00008060 
+ 00023048  0x00003aa3 hfetch  0x00000004 , 0x00008078 
+ 00023049  0x00003aa4 set1  0x00000007 , 0x0000003f 
+ 00023050  0x00003aa5 hstore  0x00000004 , 0x00008078 
+ 00023051  0x00003aa7 call  0x00003ee4 
+ 00023052  0x00003aa8 fetch  0x00000001 , 0x0000475a 
+ 00023053  0x00003aa9 isolate1  0x00000000 , 0x0000003f 
+ 00023054  0x00003aaa hfetcht  0x00000001 , 0x00008062 
+ 00023055  0x00003aab setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023056  0x00003aac hstoret  0x00000001 , 0x00008062 
+ 00023057  0x00003aad rtn 
+ 00023058  0x00003ab2 call  0x000059fa 
+ 00023059  0x00003aba fetcht  0x00000001 , 0x0000472b 
+ 00023060  0x00003abb call  0x000064e8 
+ 00023061  0x00003abc call  0x00005a76 
+ 00023062  0x00003abe fetcht  0x00000001 , 0x00004729 
+ 00023063  0x00003abf branch  0x000064df 
+ 00023064  0x00003ac2 fetcht  0x00000001 , 0x00004729 
+ 00023065  0x00003ac3 call  0x000064f5 
+ 00023066  0x00003ac4 nbranch  0x00003e37 , 0x00000001 
+ 00023067  0x00003ac5 branch  0x00003e35 
+ 00023068  0x00003acc set1  0x00000025 , 0x00000000 
+ 00023069  0x00003acd bpatch  0x00000060 , 0x0000402c 
+ 00023070  0x00003ace call  0x00005dc5 
+ 00023071  0x00003acf call  0x0000480e 
+ 00023072  0x00003ad0 nrtn  0x00000034 
+ 00023073  0x00003ad1 branch  0x00005a7b 
+ 00023074  0x00003ad3 copy  0x00000013 , 0x0000003f 
+ 00023075  0x00003ad4 beq  0x00000001 , 0x00005a67 
+ 00023076  0x00003ad5 beq  0x00000002 , 0x00005a3e 
+ 00023077  0x00003ad6 beq  0x00000004 , 0x00005a69 
+ 00023078  0x00003ad7 beq  0x00000005 , 0x00005a5b 
+ 00023079  0x00003ad8 beq  0x00000008 , 0x00005a44 
+ 00023080  0x00003ad9 beq  0x00000009 , 0x00005a4b 
+ 00023081  0x00003ada beq  0x0000000a , 0x00005a5e 
+ 00023082  0x00003adb beq  0x0000000b , 0x00005a4f 
+ 00023083  0x00003adc beq  0x0000000c , 0x00005a5a 
+ 00023084  0x00003add beq  0x00000013 , 0x00005a69 
+ 00023085  0x00003ade beq  0x00000014 , 0x00005a63 
+ 00023086  0x00003adf beq  0x00000015 , 0x00005a5c 
+ 00023087  0x00003ae0 beq  0x00000023 , 0x00005a5f 
+ 00023088  0x00003ae1 beq  0x00000024 , 0x00005a62 
+ 00023089  0x00003ae2 beq  0x00000030 , 0x00005d49 
+ 00023090  0x00003ae3 beq  0x00000031 , 0x00005d4b 
+ 00023091  0x00003ae4 beq  0x00000032 , 0x00005d59 
+ 00023092  0x00003ae5 beq  0x00000033 , 0x00005d57 
+ 00023093  0x00003ae6 beq  0x00000034 , 0x00005d43 
+ 00023094  0x00003ae7 beq  0x00000035 , 0x00005d39 
+ 00023095  0x00003ae8 beq  0x00000036 , 0x00005d41 
+ 00023096  0x00003ae9 beq  0x00000037 , 0x00005d4d 
+ 00023097  0x00003aea beq  0x00000038 , 0x00005d4f 
+ 00023098  0x00003aeb and  0x0000003f , 0x0000000f , 0x00000002 
+ 00023099  0x00003aec and_into  0x000000f0 , 0x0000003f 
+ 00023100  0x00003aed beq  0x00000050 , 0x00005da3 
+ 00023101  0x00003aee rtn 
+ 00023102  0x00003af2 fetch  0x00000001 , 0x000046ed 
+ 00023103  0x00003af3 ncall  0x00005d4d , 0x00000034 
+ 00023104  0x00003af4 call  0x00005a69 
+ 00023105  0x00003af5 fetch  0x00000002 , 0x0000470b 
+ 00023106  0x00003af6 rtnbit0  0x00000004 
+ 00023107  0x00003af7 branch  0x00005a4b 
+ 00023108  0x00003afa fetch  0x00000002 , 0x0000470b 
+ 00023109  0x00003afb set1  0x00000004 , 0x0000003f 
+ 00023110  0x00003afd store  0x00000002 , 0x0000470b 
+ 00023111  0x00003afe fetch  0x00000001 , 0x0000473b 
+ 00023112  0x00003aff store  0x00000001 , 0x00004212 
+ 00023113  0x00003b00 call  0x00005a76 
+ 00023114  0x00003b01 branch  0x00005ce4 
+ 00023115  0x00003b06 fetch  0x00000002 , 0x0000470b 
+ 00023116  0x00003b07 set0  0x00000004 , 0x0000003f 
+ 00023117  0x00003b08 store  0x00000002 , 0x0000470b 
+ 00023118  0x00003b09 branch  0x00005ce8 
+ 00023119  0x00003b11 fetch  0x00000002 , 0x00004042 
+ 00023120  0x00003b12 rshift  0x0000003f , 0x0000003f 
+ 00023121  0x00003b13 fetcht  0x00000002 , 0x00004284 
+ 00023122  0x00003b14 isub  0x00000002 , 0x0000003e 
+ 00023123  0x00003b15 nbranch  0x00005a55 , 0x00000005 
+ 00023124  0x00003b16 branch  0x00003e7f 
+ 00023125  0x00003b18 fetch  0x00000001 , 0x0000472f 
+ 00023126  0x00003b19 rtnbit1  0x00000000 
+ 00023127  0x00003b1a hfetch  0x00000002 , 0x00008112 
+ 00023128  0x00003b1b ncall  0x00005dbd , 0x00000034 
+ 00023129  0x00003b1c branch  0x00003e77 
+ 00023130  0x00003b1f branch  0x00003e81 
+ 00023131  0x00003b22 branch  0x00005a6d 
+ 00023132  0x00003b25 call  0x00005a69 
+ 00023133  0x00003b26 branch  0x00005cea 
+ 00023134  0x00003b29 branch  0x00003e45 
+ 00023135  0x00003b2e fetch  0x00000001 , 0x0000472f 
+ 00023136  0x00003b2f bbit0  0x00000000 , 0x00003e79 
+ 00023137  0x00003b30 branch  0x00005dc1 
+ 00023138  0x00003b33 branch  0x00005dc1 
+ 00023139  0x00003b37 call  0x00005a6d 
+ 00023140  0x00003b38 fetch  0x00000001 , 0x0000473c 
+ 00023141  0x00003b39 store  0x00000001 , 0x00004212 
+ 00023142  0x00003b3a branch  0x00005ce6 
+ 00023143  0x00003b3e jam  0x00000000 , 0x000046e9 
+ 00023144  0x00003b3f rtn 
+ 00023145  0x00003b44 call  0x00005adf 
+ 00023146  0x00003b45 branch  0x00005a6b 
+ 00023147  0x00003b49 fetcht  0x00000001 , 0x0000472b 
+ 00023148  0x00003b4a branch  0x000064ff 
+ 00023149  0x00003b4d call  0x00005a6f 
+ 00023150  0x00003b4e branch  0x00005a76 
+ 00023151  0x00003b51 fetch  0x00000001 , 0x0000472e 
+ 00023152  0x00003b52 isolate1  0x00000000 , 0x0000003f 
+ 00023153  0x00003b53 call  0x00003e59 , 0x00000001 
+ 00023154  0x00003b54 fetch  0x00000001 , 0x0000472e 
+ 00023155  0x00003b55 isolate1  0x00000001 , 0x0000003f 
+ 00023156  0x00003b56 call  0x00003e61 , 0x00000001 
+ 00023157  0x00003b57 rtn 
+ 00023158  0x00003b59 fetcht  0x00000001 , 0x0000472b 
+ 00023159  0x00003b5a branch  0x000064fd 
+ 00023160  0x00003b5d fetch  0x00000001 , 0x00004603 
+ 00023161  0x00003b5e rtneq  0x00000000 
+ 00023162  0x00003b5f branch  0x00006838 
+ 00023163  0x00003b62 set1  0x00000025 , 0x00000000 
+ 00023164  0x00003b63 bpatch  0x00000061 , 0x0000402c 
+ 00023165  0x00003b64 hfetch  0x00000001 , 0x0000810c 
+ 00023166  0x00003b65 bbit1  0x00000003 , 0x00005a78 
+ 00023167  0x00003b66 call  0x00007f6e 
+ 00023168  0x00003b67 ifetch  0x00000001 , 0x00000003 
+ 00023169  0x00003b68 bne  0x00000001 , 0x00005a93 
+ 00023170  0x00003b69 hfetch  0x00000002 , 0x00008112 
+ 00023171  0x00003b6a sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00023172  0x00003b6b rtn  0x00000002 
+ 00023173  0x00003b6c ifetch  0x00000001 , 0x00000003 
+ 00023174  0x00003b6d store  0x00000001 , 0x00000416 
+ 00023175  0x00003b6e ifetcht  0x00000001 , 0x00000003 
+ 00023176  0x00003b6f copy  0x00000003 , 0x00000011 
+ 00023177  0x00003b70 storet  0x00000001 , 0x00000417 
+ 00023178  0x00003b71 add  0x00000002 , 0x00000003 , 0x00000002 
+ 00023179  0x00003b72 hfetch  0x00000002 , 0x00008112 
+ 00023180  0x00003b73 isub  0x00000002 , 0x00000002 
+ 00023181  0x00003b74 nrtn  0x00000002 
+ 00023182  0x00003b75 jam  0x00000001 , 0x00000418 
+ 00023183  0x00003b76 call  0x00005aaa 
+ 00023184  0x00003b77 fetch  0x00000001 , 0x00000418 
+ 00023185  0x00003b78 rtneq  0x00000000 
+ 00023186  0x00003b79 branch  0x00005aa5 
+ 00023187  0x00003b7c call  0x00005d3f 
+ 00023188  0x00003b7d call  0x00007f6b 
+ 00023189  0x00003b7e branch  0x00005a96 
+ 00023190  0x00003b82 set1  0x00000025 , 0x00000000 
+ 00023191  0x00003b83 bpatch  0x00000062 , 0x0000402c 
+ 00023192  0x00003b84 hfetch  0x00000002 , 0x00008112 
+ 00023193  0x00003b85 rtn  0x00000034 
+ 00023194  0x00003b86 call  0x00007f6e 
+ 00023195  0x00003b87 ifetch  0x00000001 , 0x00000003 
+ 00023196  0x00003b88 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00023197  0x00003b89 ncall  0x00005aa9 , 0x00000005 
+ 00023198  0x00003b8a nbranch  0x00005a96 , 0x00000005 
+ 00023199  0x00003b8b ifetch  0x00000001 , 0x00000003 
+ 00023200  0x00003b8c rtneq  0x00000005 
+ 00023201  0x00003b8d rtneq  0x00000029 
+ 00023202  0x00003b8e increase  0xffffffff , 0x00000003 
+ 00023203  0x00003b8f call  0x00005aa9 
+ 00023204  0x00003b90 branch  0x00005a96 
+ 00023205  0x00003b93 call  0x00007f6e 
+ 00023206  0x00003b94 increase  0x00000002 , 0x00000003 
+ 00023207  0x00003b95 ifetch  0x00000001 , 0x00000003 
+ 00023208  0x00003b96 iadd  0x00000003 , 0x00000003 
+ 00023209  0x00003b98 branch  0x00006322 
+ 00023210  0x00003b9d set1  0x00000025 , 0x00000000 
+ 00023211  0x00003b9e bpatch  0x00000063 , 0x0000402c 
+ 00023212  0x00003b9f fetch  0x00000001 , 0x00000416 
+ 00023213  0x00003ba0 beq  0x00000000 , 0x00005acc 
+ 00023214  0x00003ba1 beq  0x00000001 , 0x00005ad1 
+ 00023215  0x00003ba2 beq  0x00000002 , 0x00005ad6 
+ 00023216  0x00003ba3 beq  0x00000003 , 0x00005aec 
+ 00023217  0x00003ba4 beq  0x00000004 , 0x00005af5 
+ 00023218  0x00003ba5 beq  0x00000005 , 0x00005aff 
+ 00023219  0x00003ba6 beq  0x00000009 , 0x00005b23 
+ 00023220  0x00003ba7 beq  0x0000000b , 0x00005bd3 
+ 00023221  0x00003ba8 beq  0x0000000c , 0x00005bd4 
+ 00023222  0x00003ba9 beq  0x0000000d , 0x00005be8 
+ 00023223  0x00003baa beq  0x0000000e , 0x00005bf0 
+ 00023224  0x00003bab beq  0x0000000f , 0x00005bf6 
+ 00023225  0x00003bac beq  0x00000010 , 0x00005c02 
+ 00023226  0x00003bad beq  0x00000011 , 0x00005c0a 
+ 00023227  0x00003bae beq  0x00000012 , 0x00005c0e 
+ 00023228  0x00003baf beq  0x00000026 , 0x00005c12 
+ 00023229  0x00003bb0 beq  0x00000028 , 0x00005c19 
+ 00023230  0x00003bb1 beq  0x00000029 , 0x00005c29 
+ 00023231  0x00003bb2 beq  0x0000002a , 0x00005c32 
+ 00023232  0x00003bb3 beq  0x0000002b , 0x00005c67 
+ 00023233  0x00003bb4 beq  0x0000002c , 0x00005c6d 
+ 00023234  0x00003bb5 beq  0x00000030 , 0x00005c74 
+ 00023235  0x00003bb6 beq  0x00000031 , 0x00005c7a 
+ 00023236  0x00003bb7 beq  0x00000032 , 0x00005c8b 
+ 00023237  0x00003bb8 beq  0x00000033 , 0x00005c93 
+ 00023238  0x00003bb9 beq  0x00000034 , 0x00005cb1 
+ 00023239  0x00003bba beq  0x00000035 , 0x00005cb9 
+ 00023240  0x00003bbb beq  0x00000036 , 0x00005cc1 
+ 00023241  0x00003bbc beq  0x00000038 , 0x00005ccb 
+ 00023242  0x00003bbd beq  0x00000048 , 0x00005cd3 
+ 00023243  0x00003bbe branch  0x00005cde 
+ 00023244  0x00003bc4 fetch  0x00000001 , 0x00000417 
+ 00023245  0x00003bc5 bne  0x00000006 , 0x00005cde 
+ 00023246  0x00003bc6 ifetch  0x00000006 , 0x00000003 
+ 00023247  0x00003bc7 store  0x00000006 , 0x00004140 
+ 00023248  0x00003bc8 branch  0x00005ce1 
+ 00023249  0x00003bcc fetch  0x00000001 , 0x00000417 
+ 00023250  0x00003bcd bne  0x00000006 , 0x00005cde 
+ 00023251  0x00003bce ifetch  0x00000006 , 0x00000003 
+ 00023252  0x00003bcf store  0x00000006 , 0x0000453e 
+ 00023253  0x00003bd0 branch  0x00005ce1 
+ 00023254  0x00003bd5 fetch  0x00000001 , 0x00000417 
+ 00023255  0x00003bd6 bne  0x00000001 , 0x00005cde 
+ 00023256  0x00003bd7 copy  0x00000011 , 0x00000003 
+ 00023257  0x00003bd8 call  0x00005ce1 
+ 00023258  0x00003bd9 ifetcht  0x00000001 , 0x00000003 
+ 00023259  0x00003bda storet  0x00000001 , 0x0000473d 
+ 00023260  0x00003bdb fetch  0x00000002 , 0x0000470b 
+ 00023261  0x00003bdc rtnbit1  0x00000009 
+ 00023262  0x00003bdd rtnbit1  0x00000000 
+ 00023263  0x00003bdf fetch  0x00000001 , 0x0000472e 
+ 00023264  0x00003be0 isolate1  0x00000000 , 0x0000003f 
+ 00023265  0x00003be1 nbranch  0x00005ae5 , 0x00000001 
+ 00023266  0x00003be2 fetcht  0x00000001 , 0x0000473d 
+ 00023267  0x00003be3 and  0x00000002 , 0x00000003 , 0x0000003f 
+ 00023268  0x00003be4 store  0x00000001 , 0x00004133 
+ 00023269  0x00003be6 fetch  0x00000001 , 0x0000472e 
+ 00023270  0x00003be7 isolate1  0x00000001 , 0x0000003f 
+ 00023271  0x00003be8 nrtn  0x00000001 
+ 00023272  0x00003be9 fetcht  0x00000001 , 0x0000473d 
+ 00023273  0x00003bea isolate1  0x00000002 , 0x00000002 
+ 00023274  0x00003beb branch  0x00003e63 , 0x00000001 
+ 00023275  0x00003bec branch  0x00003e61 
+ 00023276  0x00003bf0 fetch  0x00000001 , 0x00000417 
+ 00023277  0x00003bf1 sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023278  0x00003bf2 nbranch  0x00005cde , 0x00000002 
+ 00023279  0x00003bf3 store  0x00000001 , 0x000045ae 
+ 00023280  0x00003bf4 copy  0x0000003f , 0x00000039 
+ 00023281  0x00003bf5 copy  0x00000011 , 0x00000003 
+ 00023282  0x00003bf6 arg  0x000045af , 0x00000005 
+ 00023283  0x00003bf7 call  0x00006341 
+ 00023284  0x00003bf8 branch  0x00005ce1 
+ 00023285  0x00003bfd fetch  0x00000001 , 0x00000417 
+ 00023286  0x00003bfe sub  0x0000003f , 0x00000013 , 0x0000003e 
+ 00023287  0x00003bff nbranch  0x00005cde , 0x00000002 
+ 00023288  0x00003c00 store  0x00000001 , 0x00004440 
+ 00023289  0x00003c01 copy  0x0000003f , 0x00000039 
+ 00023290  0x00003c02 copy  0x00000011 , 0x00000003 
+ 00023291  0x00003c03 arg  0x00004441 , 0x00000005 
+ 00023292  0x00003c04 call  0x00006341 
+ 00023293  0x00003c05 call  0x00005234 
+ 00023294  0x00003c06 branch  0x00005ce1 
+ 00023295  0x00003c0b fetch  0x00000001 , 0x0000470b 
+ 00023296  0x00003c0c bbit0  0x00000004 , 0x00005cde 
+ 00023297  0x00003c0d call  0x00003e1d 
+ 00023298  0x00003c0e branch  0x00005b0f , 0x00000001 
+ 00023299  0x00003c0f jam  0x00000000 , 0x00000418 
+ 00023300  0x00003c11 fetch  0x00000001 , 0x00004600 
+ 00023301  0x00003c12 rtn  0x00000034 
+ 00023302  0x00003c13 fetch  0x00000002 , 0x0000460b 
+ 00023303  0x00003c14 bne  0x00000000 , 0x00005b0d 
+ 00023304  0x00003c15 fetch  0x00000001 , 0x00000417 
+ 00023305  0x00003c16 store  0x00000002 , 0x0000460b 
+ 00023306  0x00003c18 copy  0x00000011 , 0x00000003 
+ 00023307  0x00003c1b copy  0x00000003 , 0x0000003f 
+ 00023308  0x00003c1c store  0x00000002 , 0x00004609 
+ 00023309  0x00003c1e call  0x00005b11 
+ 00023310  0x00003c1f branch  0x0000685f 
+ 00023311  0x00003c21 jam  0x00000000 , 0x00000418 
+ 00023312  0x00003c22 branch  0x00005d9f 
+ 00023313  0x00003c25 call  0x00005b17 
+ 00023314  0x00003c26 fetch  0x00000002 , 0x0000460b 
+ 00023315  0x00003c27 fetcht  0x00000002 , 0x0000472c 
+ 00023316  0x00003c28 isub  0x00000002 , 0x0000003f 
+ 00023317  0x00003c29 store  0x00000002 , 0x0000460b 
+ 00023318  0x00003c2a rtn 
+ 00023319  0x00003c2d fetch  0x00000002 , 0x0000460b 
+ 00023320  0x00003c2e arg  0x0000006e , 0x00000002 
+ 00023321  0x00003c2f call  0x00007faf 
+ 00023322  0x00003c30 fetcht  0x00000002 , 0x00004604 
+ 00023323  0x00003c31 call  0x00007faf 
+ 00023324  0x00003c32 fetcht  0x00000002 , 0x000045f6 
+ 00023325  0x00003c33 call  0x00007faf 
+ 00023326  0x00003c34 store  0x00000002 , 0x0000472c 
+ 00023327  0x00003c35 rtn 
+ 00023328  0x00003c39 jam  0x00000001 , 0x00000418 
+ 00023329  0x00003c3a jam  0x00000005 , 0x00000416 
+ 00023330  0x00003c3b branch  0x00005ce1 
+ 00023331  0x00003c3f fetch  0x00000002 , 0x0000470b 
+ 00023332  0x00003c40 rtnbit0  0x00000009 
+ 00023333  0x00003c42 jam  0x00000000 , 0x00000418 
+ 00023334  0x00003c43 fetch  0x00000001 , 0x00004569 
+ 00023335  0x00003c44 nrtn  0x00000034 
+ 00023336  0x00003c45 fetch  0x00000002 , 0x00004760 
+ 00023337  0x00003c46 branch  0x00005b4a , 0x00000034 
+ 00023338  0x00003c47 fetcht  0x00000002 , 0x0000475e 
+ 00023339  0x00003c48 isub  0x00000002 , 0x0000003e 
+ 00023340  0x00003c49 nrtn  0x00000005 
+ 00023341  0x00003c4a set1  0x00000025 , 0x00000000 
+ 00023342  0x00003c4b bpatch  0x00000064 , 0x0000402c 
+ 00023343  0x00003c4c jam  0x00000000 , 0x00000418 
+ 00023344  0x00003c4d fetch  0x00000002 , 0x00004764 
+ 00023345  0x00003c4e fetcht  0x00000002 , 0x00004760 
+ 00023346  0x00003c4f isub  0x00000002 , 0x00000012 
+ 00023347  0x00003c50 nbranch  0x00003b31 , 0x00000002 
+ 00023348  0x00003c51 nbranch  0x00005b38 , 0x00000005 
+ 00023349  0x00003c52 call  0x00005b47 
+ 00023350  0x00003c53 jam  0x00000001 , 0x00000418 
+ 00023351  0x00003c54 branch  0x00005b8e 
+ 00023352  0x00003c59 fetch  0x00000001 , 0x0000475a 
+ 00023353  0x00003c5a rtnbit1  0x00000002 
+ 00023354  0x00003c5b hfetch  0x00000002 , 0x00008058 
+ 00023355  0x00003c5c iforce  0x00000003 
+ 00023356  0x00003c5d fetch  0x00000002 , 0x00004760 
+ 00023357  0x00003c5e iadd  0x00000003 , 0x00000003 
+ 00023358  0x00003c5f copy  0x00000003 , 0x00000011 
+ 00023359  0x00003c60 setarg  0x00000901 
+ 00023360  0x00003c61 istore  0x00000002 , 0x00000003 
+ 00023361  0x00003c62 add  0x00000012 , 0x00000002 , 0x0000003f 
+ 00023362  0x00003c63 istore  0x00000001 , 0x00000003 
+ 00023363  0x00003c64 fetch  0x00000002 , 0x00004762 
+ 00023364  0x00003c65 istore  0x00000002 , 0x00000003 
+ 00023365  0x00003c66 copy  0x00000011 , 0x0000003f 
+ 00023366  0x00003c67 hstore  0x00000002 , 0x00008058 
+ 00023367  0x00003c69 setarg  0x00000000 
+ 00023368  0x00003c6a store  0x00000002 , 0x00004760 
+ 00023369  0x00003c6b rtn 
+ 00023370  0x00003c6e copy  0x00000011 , 0x00000003 
+ 00023371  0x00003c6f ifetch  0x00000002 , 0x00000003 
+ 00023372  0x00003c70 store  0x00000002 , 0x00004762 
+ 00023373  0x00003c71 fetch  0x00000001 , 0x00000417 
+ 00023374  0x00003c72 increase  0xfffffffe , 0x0000003f 
+ 00023375  0x00003c74 nbranch  0x00005cde , 0x00000002 
+ 00023376  0x00003c75 branch  0x00005cde , 0x00000034 
+ 00023377  0x00003c76 store  0x00000002 , 0x00004764 
+ 00023378  0x00003c78 fetch  0x00000001 , 0x0000475a 
+ 00023379  0x00003c79 bbit1  0x00000002 , 0x00005b5e 
+ 00023380  0x00003c7b fetcht  0x00000002 , 0x0000454e 
+ 00023381  0x00003c7d fetch  0x00000002 , 0x00004764 
+ 00023382  0x00003c7e call  0x00007faf 
+ 00023383  0x00003c80 store  0x00000002 , 0x00004760 
+ 00023384  0x00003c81 copy  0x00000003 , 0x0000003f 
+ 00023385  0x00003c82 store  0x00000002 , 0x0000475c 
+ 00023386  0x00003c83 setarg  0x00000000 
+ 00023387  0x00003c84 store  0x00000002 , 0x0000475e 
+ 00023388  0x00003c85 jam  0x0000001b , 0x000009bd 
+ 00023389  0x00003c86 branch  0x00004bd6 
+ 00023390  0x00003c89 arg  0x00000014 , 0x00000002 
+ 00023391  0x00003c8a branch  0x00005b55 
+ 00023392  0x00003c8e fetch  0x00000001 , 0x0000475b 
+ 00023393  0x00003c8f jam  0x00000000 , 0x0000475b 
+ 00023394  0x00003c90 nbranch  0x00005bbe , 0x00000034 
+ 00023395  0x00003c92 fetch  0x00000002 , 0x00004760 
+ 00023396  0x00003c93 branch  0x00003b31 , 0x00000034 
+ 00023397  0x00003c94 add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023398  0x00003c95 storet  0x00000002 , 0x00004467 
+ 00023399  0x00003c96 arg  0x00000014 , 0x00000002 
+ 00023400  0x00003c97 call  0x00007faf 
+ 00023401  0x00003c98 copy  0x0000003f , 0x00000039 
+ 00023402  0x00003c99 store  0x00000002 , 0x0000475e 
+ 00023403  0x00003c9c fetcht  0x00000002 , 0x00004760 
+ 00023404  0x00003c9d isub  0x00000002 , 0x00000002 
+ 00023405  0x00003c9e fetch  0x00000001 , 0x0000475a 
+ 00023406  0x00003c9f bbit1  0x00000002 , 0x00005b71 
+ 00023407  0x00003ca0 ncall  0x00005b9a , 0x00000005 
+ 00023408  0x00003ca1 jam  0x00000001 , 0x000003da 
+ 00023409  0x00003ca3 set1  0x00000025 , 0x00000000 
+ 00023410  0x00003ca4 bpatch  0x00000065 , 0x0000402c 
+ 00023411  0x00003ca5 arg  0x00000002 , 0x00000001 
+ 00023412  0x00003ca6 fetch  0x00000002 , 0x00004762 
+ 00023413  0x00003ca7 store  0x00000002 , 0x0000446c 
+ 00023414  0x00003ca8 fetch  0x00000002 , 0x0000475c 
+ 00023415  0x00003ca9 copy  0x0000003f , 0x00000003 
+ 00023416  0x00003cad call  0x00006341 
+ 00023417  0x00003cae fetch  0x00000001 , 0x0000475a 
+ 00023418  0x00003caf bbit0  0x00000002 , 0x00005bb9 
+ 00023419  0x00003cb0 setarg  0x00004467 
+ 00023420  0x00003cb1 isub  0x00000005 , 0x0000003f 
+ 00023421  0x00003cb2 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023422  0x00003cb3 storet  0x00000001 , 0x00004466 
+ 00023423  0x00003cb4 fetch  0x00000002 , 0x00004764 
+ 00023424  0x00003cb5 fetcht  0x00000002 , 0x00004760 
+ 00023425  0x00003cb6 call  0x00005b94 
+ 00023426  0x00003cb7 fetcht  0x00000001 , 0x00000379 
+ 00023427  0x00003cb8 fetch  0x00000001 , 0x00000419 
+ 00023428  0x00003cb9 branch  0x00005b8c , 0x00000034 
+ 00023429  0x00003cba nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023430  0x00003cbb storet  0x00000001 , 0x00000379 
+ 00023431  0x00003cbc jam  0x0000001b , 0x000009bd 
+ 00023432  0x00003cbd call  0x00004bd6 
+ 00023433  0x00003cbe jam  0x00000001 , 0x0000475b 
+ 00023434  0x00003cbf fetcht  0x00000001 , 0x00000379 
+ 00023435  0x00003cc0 branch  0x00004f92 
+ 00023436  0x00003cc3 call  0x00005b8e 
+ 00023437  0x00003cc4 branch  0x00004f90 
+ 00023438  0x00003cc7 fetch  0x00000001 , 0x0000475a 
+ 00023439  0x00003cc8 set1  0x00000003 , 0x0000003f 
+ 00023440  0x00003cc9 branch  0x00005d9a 
+ 00023441  0x00003ccc fetch  0x00000001 , 0x0000475a 
+ 00023442  0x00003ccd set0  0x00000003 , 0x0000003f 
+ 00023443  0x00003cce branch  0x00005d9a 
+ 00023444  0x00003cd1 jam  0x00000000 , 0x00000419 
+ 00023445  0x00003cd2 isub  0x00000002 , 0x0000003e 
+ 00023446  0x00003cd3 rtn  0x00000005 
+ 00023447  0x00003cd4 nrtn  0x00000002 
+ 00023448  0x00003cd5 jam  0x00000001 , 0x00000419 
+ 00023449  0x00003cd6 rtn 
+ 00023450  0x00003cd9 fetch  0x00000003 , 0x00004544 
+ 00023451  0x00003cda nbranch  0x00005b9e , 0x00000034 
+ 00023452  0x00003cdb jam  0x0000001f , 0x00004546 
+ 00023453  0x00003cdc rtn 
+ 00023454  0x00003cde call  0x00004bd4 
+ 00023455  0x00003cdf nbranch  0x00003b31 , 0x00000034 
+ 00023456  0x00003ce0 jam  0x0000001f , 0x00004545 
+ 00023457  0x00003ce1 rtn 
+ 00023458  0x00003ce5 set1  0x00000025 , 0x00000000 
+ 00023459  0x00003ce6 bpatch  0x00000066 , 0x0000402c 
+ 00023460  0x00003ce7 fetch  0x00000002 , 0x00004760 
+ 00023461  0x00003ce8 branch  0x00003b31 , 0x00000034 
+ 00023462  0x00003ce9 fetcht  0x00000002 , 0x0000475e 
+ 00023463  0x00003cea branch  0x00003b31 , 0x00000034 
+ 00023464  0x00003ceb isub  0x00000002 , 0x0000003f 
+ 00023465  0x00003cec arg  0x0000001b , 0x00000002 
+ 00023466  0x00003ced call  0x00007faf 
+ 00023467  0x00003cee copy  0x0000003f , 0x00000039 
+ 00023468  0x00003cef fetch  0x00000002 , 0x0000475c 
+ 00023469  0x00003cf0 copy  0x0000003f , 0x00000003 
+ 00023470  0x00003cf1 fetch  0x00000002 , 0x0000475e 
+ 00023471  0x00003cf2 iadd  0x00000003 , 0x00000003 
+ 00023472  0x00003cf3 iadd  0x00000039 , 0x0000003f 
+ 00023473  0x00003cf4 store  0x00000002 , 0x0000475e 
+ 00023474  0x00003cf5 fetcht  0x00000002 , 0x00004760 
+ 00023475  0x00003cf6 isub  0x00000002 , 0x00000002 
+ 00023476  0x00003cf7 ncall  0x00005b9a , 0x00000005 
+ 00023477  0x00003cf8 jam  0x00000001 , 0x000003da 
+ 00023478  0x00003cf9 arg  0x00004467 , 0x00000005 
+ 00023479  0x00003cfa call  0x00006341 
+ 00023480  0x00003cfb arg  0x00000001 , 0x00000001 
+ 00023481  0x00003cfd setarg  0x00004467 
+ 00023482  0x00003cfe isub  0x00000005 , 0x0000003f 
+ 00023483  0x00003cff sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023484  0x00003d00 storet  0x00000001 , 0x00004466 
+ 00023485  0x00003d01 branch  0x00004f90 
+ 00023486  0x00003d05 fetch  0x00000002 , 0x00004764 
+ 00023487  0x00003d06 fetcht  0x00000002 , 0x00004760 
+ 00023488  0x00003d07 isub  0x00000002 , 0x0000003f 
+ 00023489  0x00003d08 arg  0x00000014 , 0x00000002 
+ 00023490  0x00003d09 call  0x00007faf 
+ 00023491  0x00003d0a copy  0x0000003f , 0x00000039 
+ 00023492  0x00003d0b add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023493  0x00003d0c storet  0x00000002 , 0x00004467 
+ 00023494  0x00003d0e fetcht  0x00000002 , 0x00004760 
+ 00023495  0x00003d0f iadd  0x00000002 , 0x0000003f 
+ 00023496  0x00003d10 store  0x00000002 , 0x00004760 
+ 00023497  0x00003d12 fetch  0x00000002 , 0x0000475c 
+ 00023498  0x00003d13 copy  0x0000003f , 0x00000003 
+ 00023499  0x00003d14 fetch  0x00000002 , 0x0000475e 
+ 00023500  0x00003d15 iadd  0x00000003 , 0x00000003 
+ 00023501  0x00003d16 iadd  0x00000039 , 0x0000003f 
+ 00023502  0x00003d17 store  0x00000002 , 0x0000475e 
+ 00023503  0x00003d18 arg  0x00000002 , 0x00000001 
+ 00023504  0x00003d19 fetch  0x00000002 , 0x00004762 
+ 00023505  0x00003d1a store  0x00000002 , 0x0000446c 
+ 00023506  0x00003d1b branch  0x00005b78 
+ 00023507  0x00003d1f branch  0x00005d12 
+ 00023508  0x00003d24 copy  0x00000011 , 0x00000003 
+ 00023509  0x00003d25 ifetch  0x00000001 , 0x00000003 
+ 00023510  0x00003d26 beq  0x00000000 , 0x00005bdb 
+ 00023511  0x00003d27 beq  0x00000001 , 0x00005bde 
+ 00023512  0x00003d28 beq  0x00000002 , 0x00005be4 
+ 00023513  0x00003d29 beq  0x00000003 , 0x00005be6 
+ 00023514  0x00003d2a branch  0x00005cde 
+ 00023515  0x00003d2c call  0x00005737 
+ 00023516  0x00003d2d jam  0x00000000 , 0x000046e2 
+ 00023517  0x00003d2e branch  0x00005ce1 
+ 00023518  0x00003d30 setarg  0x00040003 
+ 00023519  0x00003d32 store  0x00000003 , 0x000046e3 
+ 00023520  0x00003d33 store  0x00000001 , 0x000046ea 
+ 00023521  0x00003d34 call  0x0000572f 
+ 00023522  0x00003d35 jam  0x00000001 , 0x000046e2 
+ 00023523  0x00003d36 branch  0x00005ce1 
+ 00023524  0x00003d38 setarg  0x00040002 
+ 00023525  0x00003d39 branch  0x00005bdf 
+ 00023526  0x00003d3c setarg  0x00040001 
+ 00023527  0x00003d3d branch  0x00005bdf 
+ 00023528  0x00003d41 fetch  0x00000001 , 0x00000417 
+ 00023529  0x00003d42 sub  0x0000003f , 0x00000010 , 0x0000003e 
+ 00023530  0x00003d43 nbranch  0x00005cde , 0x00000002 
+ 00023531  0x00003d44 store  0x00000001 , 0x00004718 
+ 00023532  0x00003d45 copy  0x0000003f , 0x00000039 
+ 00023533  0x00003d46 arg  0x00004719 , 0x00000005 
+ 00023534  0x00003d47 call  0x00006354 
+ 00023535  0x00003d48 branch  0x00005ce1 
+ 00023536  0x00003d4d copy  0x00000011 , 0x00000003 
+ 00023537  0x00003d4e ifetch  0x00000001 , 0x00000003 
+ 00023538  0x00003d4f hfetcht  0x00000001 , 0x00008062 
+ 00023539  0x00003d50 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023540  0x00003d51 hstoret  0x00000001 , 0x00008062 
+ 00023541  0x00003d52 branch  0x00005ce1 
+ 00023542  0x00003d57 fetch  0x00000001 , 0x00000417 
+ 00023543  0x00003d58 copy  0x0000003f , 0x00000039 
+ 00023544  0x00003d59 copy  0x00000011 , 0x00000003 
+ 00023545  0x00003d5a call  0x00007f25 
+ 00023546  0x00003d5b setarg  0x02dc6c00 
+ 00023547  0x00003d5c idiv  0x00000002 
+ 00023548  0x00003d5d call  0x00007f53 
+ 00023549  0x00003d5e quotient  0x0000003f 
+ 00023550  0x00003d60 store  0x00000002 , 0x000042d3 
+ 00023551  0x00003d61 call  0x00005ce1 
+ 00023552  0x00003d62 call  0x00007f6b 
+ 00023553  0x00003d63 branch  0x00006325 
+ 00023554  0x00003d68 arg  0x00000002 , 0x00000011 
+ 00023555  0x00003d69 arg  0x000042a6 , 0x00000012 
+ 00023556  0x00003d6a arg  0x00000000 , 0x00000002 
+ 00023557  0x00003d6b branch  0x00005cec 
+ 00023558  0x00003d6d store  0x00000002 , 0x000009e1 
+ 00023559  0x00003d6e arg  0x000009e1 , 0x00000012 
+ 00023560  0x00003d6f arg  0x00000000 , 0x00000002 
+ 00023561  0x00003d70 branch  0x00005cec 
+ 00023562  0x00003d75 fetch  0x00000002 , 0x0000470b 
+ 00023563  0x00003d76 bbit0  0x00000000 , 0x00005cde 
+ 00023564  0x00003d78 call  0x00005ce1 
+ 00023565  0x00003d79 branch  0x00003e52 
+ 00023566  0x00003d7e fetch  0x00000002 , 0x0000470b 
+ 00023567  0x00003d7f bbit0  0x00000009 , 0x00005cde 
+ 00023568  0x00003d81 call  0x00005ce1 
+ 00023569  0x00003d82 branch  0x00003e6b 
+ 00023570  0x00003d89 fetch  0x00000001 , 0x00000417 
+ 00023571  0x00003d8a copy  0x0000003f , 0x00000039 
+ 00023572  0x00003d8b copy  0x00000011 , 0x00000003 
+ 00023573  0x00003d8c fetch  0x00000002 , 0x000042bc 
+ 00023574  0x00003d8d icopy  0x00000005 
+ 00023575  0x00003d8e call  0x00006341 
+ 00023576  0x00003d8f branch  0x00005ce1 
+ 00023577  0x00003d94 fetch  0x00000001 , 0x0000470b 
+ 00023578  0x00003d95 bbit0  0x00000000 , 0x00005cde 
+ 00023579  0x00003d96 ifetch  0x00000001 , 0x00000003 
+ 00023580  0x00003d97 fetcht  0x00000001 , 0x000046e9 
+ 00023581  0x00003d98 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00023582  0x00003d99 set1  0x00000007 , 0x00000002 
+ 00023583  0x00003d9a storet  0x00000001 , 0x000046e9 
+ 00023584  0x00003d9c call  0x00005ce1 
+ 00023585  0x00003d9e fetch  0x00000001 , 0x000046e9 
+ 00023586  0x00003d9f bbit1  0x00000006 , 0x00005c27 
+ 00023587  0x00003da0 rtn 
+ 00023588  0x00003da3 jam  0x00000000 , 0x000046e9 
+ 00023589  0x00003da4 jam  0x00000021 , 0x000009bd 
+ 00023590  0x00003da5 branch  0x00007d90 
+ 00023591  0x00003da9 bbit1  0x00000000 , 0x000055ac 
+ 00023592  0x00003daa branch  0x00005c24 
+ 00023593  0x00003daf fetch  0x00000001 , 0x0000470b 
+ 00023594  0x00003db0 rtnbit0  0x00000004 
+ 00023595  0x00003db1 fetch  0x00000001 , 0x00004603 
+ 00023596  0x00003db2 rtneq  0x00000000 
+ 00023597  0x00003db3 ifetch  0x00000001 , 0x00000003 
+ 00023598  0x00003db4 fetcht  0x00000001 , 0x00004601 
+ 00023599  0x00003db5 iadd  0x00000002 , 0x00000002 
+ 00023600  0x00003db6 storet  0x00000001 , 0x00004601 
+ 00023601  0x00003db7 rtn 
+ 00023602  0x00003dbc arg  0x00000040 , 0x00000039 
+ 00023603  0x00003dbd arg  0x00004400 , 0x00000005 
+ 00023604  0x00003dbe call  0x00007e9f 
+ 00023605  0x00003dbf setarg  0x00000000 
+ 00023606  0x00003dc0 store  0x00000001 , 0x000009d6 
+ 00023607  0x00003dc1 copy  0x00000011 , 0x00000003 
+ 00023608  0x00003dc3 copy  0x00000003 , 0x0000003f 
+ 00023609  0x00003dc4 store  0x00000002 , 0x000009da 
+ 00023610  0x00003dc5 call  0x00005c62 
+ 00023611  0x00003dc7 fetch  0x00000001 , 0x000009d6 
+ 00023612  0x00003dc8 fetcht  0x00000001 , 0x000009c6 
+ 00023613  0x00003dc9 increase  0x00000001 , 0x00000002 
+ 00023614  0x00003dca iadd  0x00000002 , 0x0000003f 
+ 00023615  0x00003dcb store  0x00000001 , 0x000009d6 
+ 00023616  0x00003dcd sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023617  0x00003dce nbranch  0x00005c4c , 0x00000002 
+ 00023618  0x00003dd0 fetcht  0x00000001 , 0x00004400 
+ 00023619  0x00003dd1 setarg  0x00004401 
+ 00023620  0x00003dd2 iadd  0x00000002 , 0x0000003f 
+ 00023621  0x00003dd3 store  0x00000002 , 0x000009df 
+ 00023622  0x00003dd4 fetcht  0x00000001 , 0x000009c6 
+ 00023623  0x00003dd5 increase  0x00000001 , 0x00000002 
+ 00023624  0x00003dd6 fetch  0x00000001 , 0x00004400 
+ 00023625  0x00003dd7 iadd  0x00000002 , 0x0000003f 
+ 00023626  0x00003dd8 store  0x00000001 , 0x00004400 
+ 00023627  0x00003dd9 branch  0x00005c55 
+ 00023628  0x00003ddb fetcht  0x00000001 , 0x00004420 
+ 00023629  0x00003ddc setarg  0x00004421 
+ 00023630  0x00003ddd iadd  0x00000002 , 0x0000003f 
+ 00023631  0x00003dde store  0x00000002 , 0x000009df 
+ 00023632  0x00003ddf fetcht  0x00000001 , 0x000009c6 
+ 00023633  0x00003de0 increase  0x00000001 , 0x00000002 
+ 00023634  0x00003de1 fetch  0x00000001 , 0x00004420 
+ 00023635  0x00003de2 iadd  0x00000002 , 0x0000003f 
+ 00023636  0x00003de3 store  0x00000001 , 0x00004420 
+ 00023637  0x00003de5 fetch  0x00000002 , 0x000009df 
+ 00023638  0x00003de6 copy  0x0000003f , 0x00000005 
+ 00023639  0x00003de7 fetch  0x00000002 , 0x000009da 
+ 00023640  0x00003de8 copy  0x0000003f , 0x00000003 
+ 00023641  0x00003dea copy  0x00000002 , 0x00000039 
+ 00023642  0x00003deb call  0x00006341 
+ 00023643  0x00003ded fetch  0x00000001 , 0x00000417 
+ 00023644  0x00003dee fetcht  0x00000001 , 0x000009d6 
+ 00023645  0x00003def isub  0x00000002 , 0x0000003e 
+ 00023646  0x00003df0 nbranch  0x00005c38 , 0x00000005 
+ 00023647  0x00003df1 jam  0x0000001f , 0x00004400 
+ 00023648  0x00003df2 jam  0x0000001f , 0x00004420 
+ 00023649  0x00003df3 branch  0x00005ce1 
+ 00023650  0x00003df7 ifetch  0x00000001 , 0x00000003 
+ 00023651  0x00003df8 store  0x00000001 , 0x000009c6 
+ 00023652  0x00003df9 ifetch  0x00000001 , 0x00000003 
+ 00023653  0x00003dfa store  0x00000001 , 0x000009d2 
+ 00023654  0x00003dfb rtn 
+ 00023655  0x00003e00 arg  0x00000000 , 0x00000002 
+ 00023656  0x00003e01 arg  0x00000002 , 0x00000011 
+ 00023657  0x00003e02 fetch  0x00000002 , 0x00004748 
+ 00023658  0x00003e03 store  0x00000002 , 0x000009e1 
+ 00023659  0x00003e04 arg  0x000009e1 , 0x00000012 
+ 00023660  0x00003e05 branch  0x00005cec 
+ 00023661  0x00003e0a fetch  0x00000001 , 0x00000417 
+ 00023662  0x00003e0b bne  0x00000001 , 0x00005cde 
+ 00023663  0x00003e0c ifetch  0x00000001 , 0x00000003 
+ 00023664  0x00003e0d store  0x00000001 , 0x00004746 
+ 00023665  0x00003e0e setarg  0x00000000 
+ 00023666  0x00003e0f store  0x00000002 , 0x00004748 
+ 00023667  0x00003e10 branch  0x00005ce1 
+ 00023668  0x00003e15 ifetch  0x00000004 , 0x00000003 
+ 00023669  0x00003e16 store  0x00000004 , 0x00004719 
+ 00023670  0x00003e17 jam  0x00000004 , 0x00004718 
+ 00023671  0x00003e18 jam  0x00000000 , 0x000046eb 
+ 00023672  0x00003e19 call  0x00005ce1 
+ 00023673  0x00003e1a branch  0x00005548 
+ 00023674  0x00003e1f fetch  0x00000001 , 0x00000417 
+ 00023675  0x00003e20 bne  0x00000003 , 0x00005cde 
+ 00023676  0x00003e21 ifetch  0x00000001 , 0x00000003 
+ 00023677  0x00003e22 beq  0x00000000 , 0x00005c80 
+ 00023678  0x00003e23 beq  0x00000001 , 0x00005c85 
+ 00023679  0x00003e24 branch  0x00005cde 
+ 00023680  0x00003e26 ifetcht  0x00000001 , 0x00000003 
+ 00023681  0x00003e27 ifetch  0x00000001 , 0x00000003 
+ 00023682  0x00003e28 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00023683  0x00003e29 call  0x000064df 
+ 00023684  0x00003e2a branch  0x00005ce1 
+ 00023685  0x00003e2d ifetcht  0x00000001 , 0x00000003 
+ 00023686  0x00003e2e call  0x000064ea 
+ 00023687  0x00003e2f ifetch  0x00000001 , 0x00000003 
+ 00023688  0x00003e30 isolate1  0x00000000 , 0x0000003f 
+ 00023689  0x00003e31 call  0x00006500 
+ 00023690  0x00003e32 branch  0x00005ce1 
+ 00023691  0x00003e37 fetch  0x00000001 , 0x00000417 
+ 00023692  0x00003e38 bne  0x00000001 , 0x00005cde 
+ 00023693  0x00003e39 ifetcht  0x00000001 , 0x00000003 
+ 00023694  0x00003e3a call  0x000064f5 
+ 00023695  0x00003e3b setarg  0x00000000 
+ 00023696  0x00003e3c nsetflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00023697  0x00003e3d arg  0x00000001 , 0x00000011 
+ 00023698  0x00003e3e branch  0x00005c06 
+ 00023699  0x00003e43 copy  0x00000011 , 0x00000003 
+ 00023700  0x00003e44 ifetch  0x00000001 , 0x00000003 
+ 00023701  0x00003e45 store  0x00000001 , 0x0000456c 
+ 00023702  0x00003e46 arg  0x00000000 , 0x00000002 
+ 00023703  0x00003e47 isolate1  0x00000007 , 0x0000003f 
+ 00023704  0x00003e48 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023705  0x00003e49 storet  0x00000001 , 0x00004563 
+ 00023706  0x00003e4a beq  0x00000000 , 0x00005ca9 
+ 00023707  0x00003e4b beq  0x00000001 , 0x00005cac 
+ 00023708  0x00003e4c beq  0x00000002 , 0x00005cae 
+ 00023709  0x00003e4d beq  0x00000081 , 0x00005ca2 
+ 00023710  0x00003e4e beq  0x00000082 , 0x00005ca4 
+ 00023711  0x00003e4f beq  0x00000083 , 0x00005ca7 
+ 00023712  0x00003e50 jam  0x00000000 , 0x00004563 
+ 00023713  0x00003e51 branch  0x00005cde 
+ 00023714  0x00003e54 jam  0x0000000d , 0x000044df 
+ 00023715  0x00003e55 branch  0x00005caa 
+ 00023716  0x00003e57 jam  0x0000000d , 0x000044df 
+ 00023717  0x00003e58 jam  0x00000001 , 0x000044dd 
+ 00023718  0x00003e59 branch  0x00005ce1 
+ 00023719  0x00003e5b jam  0x0000000d , 0x000044df 
+ 00023720  0x00003e5c branch  0x00005caf 
+ 00023721  0x00003e5e jam  0x00000000 , 0x000044df 
+ 00023722  0x00003e60 jam  0x00000003 , 0x000044dd 
+ 00023723  0x00003e61 branch  0x00005ce1 
+ 00023724  0x00003e63 jam  0x00000005 , 0x000044df 
+ 00023725  0x00003e64 branch  0x00005caa 
+ 00023726  0x00003e66 jam  0x00000005 , 0x000044df 
+ 00023727  0x00003e68 jam  0x00000000 , 0x000044dd 
+ 00023728  0x00003e69 branch  0x00005ce1 
+ 00023729  0x00003e6e fetch  0x00000001 , 0x00000417 
+ 00023730  0x00003e6f sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023731  0x00003e70 nbranch  0x00005cde , 0x00000002 
+ 00023732  0x00003e71 copy  0x0000003f , 0x00000039 
+ 00023733  0x00003e72 copy  0x00000011 , 0x00000003 
+ 00023734  0x00003e73 arg  0x00004401 , 0x00000005 
+ 00023735  0x00003e74 call  0x00006341 
+ 00023736  0x00003e75 branch  0x00005ce1 
+ 00023737  0x00003e7a fetch  0x00000001 , 0x00000417 
+ 00023738  0x00003e7b sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023739  0x00003e7c nbranch  0x00005cde , 0x00000002 
+ 00023740  0x00003e7d copy  0x0000003f , 0x00000039 
+ 00023741  0x00003e7e copy  0x00000011 , 0x00000003 
+ 00023742  0x00003e7f arg  0x00004421 , 0x00000005 
+ 00023743  0x00003e80 call  0x00006341 
+ 00023744  0x00003e81 branch  0x00005ce1 
+ 00023745  0x00003e86 fetch  0x00000002 , 0x0000470b 
+ 00023746  0x00003e87 bbit0  0x00000009 , 0x00005cde 
+ 00023747  0x00003e88 fetch  0x00000001 , 0x00000417 
+ 00023748  0x00003e89 bne  0x00000008 , 0x00005cde 
+ 00023749  0x00003e8a copy  0x00000011 , 0x00000003 
+ 00023750  0x00003e8b ifetch  0x00000008 , 0x00000003 
+ 00023751  0x00003e8c store  0x00000008 , 0x0000458d 
+ 00023752  0x00003e8d jam  0x00000012 , 0x000009bd 
+ 00023753  0x00003e8e call  0x00007d90 
+ 00023754  0x00003e8f branch  0x00005ce1 
+ 00023755  0x00003e94 fetch  0x00000001 , 0x0000456c 
+ 00023756  0x00003e95 branch  0x00005cde , 0x00000034 
+ 00023757  0x00003e96 fetch  0x00000001 , 0x0000456a 
+ 00023758  0x00003e97 bne  0x00000000 , 0x00005cde 
+ 00023759  0x00003e98 fetch  0x00000001 , 0x0000456b 
+ 00023760  0x00003e99 bne  0x00000000 , 0x00005cde 
+ 00023761  0x00003e9a call  0x00007e29 
+ 00023762  0x00003e9b branch  0x00005ce1 
+ 00023763  0x00003ea0 ifetch  0x00000001 , 0x00000003 
+ 00023764  0x00003ea1 beq  0x00000001 , 0x00005cdc 
+ 00023765  0x00003ea2 fetch  0x00000001 , 0x00004566 
+ 00023766  0x00003ea3 beq  0x00000003 , 0x00005cda 
+ 00023767  0x00003ea4 beq  0x00000006 , 0x00005cda 
+ 00023768  0x00003ea5 beq  0x00000007 , 0x00005cda 
+ 00023769  0x00003ea6 branch  0x00005cde 
+ 00023770  0x00003ea8 jam  0x00000001 , 0x00004567 
+ 00023771  0x00003ea9 branch  0x00005ce1 
+ 00023772  0x00003eac call  0x000050a6 
+ 00023773  0x00003ead branch  0x00005ce1 
+ 00023774  0x00003eb1 arg  0x00000001 , 0x00000002 
+ 00023775  0x00003eb2 arg  0x00000000 , 0x00000011 
+ 00023776  0x00003eb3 branch  0x00005cec 
+ 00023777  0x00003eb6 arg  0x00000000 , 0x00000002 
+ 00023778  0x00003eb7 arg  0x00000000 , 0x00000011 
+ 00023779  0x00003eb8 branch  0x00005cec 
+ 00023780  0x00003ebd jam  0x00000000 , 0x00000416 
+ 00023781  0x00003ebe branch  0x00005d0f 
+ 00023782  0x00003ec2 jam  0x00000002 , 0x00000416 
+ 00023783  0x00003ec3 branch  0x00005d0f 
+ 00023784  0x00003ec7 jam  0x00000003 , 0x00000416 
+ 00023785  0x00003ec8 branch  0x00005d0f 
+ 00023786  0x00003ecb jam  0x00000005 , 0x00000416 
+ 00023787  0x00003ecc branch  0x00005d0f 
+ 00023788  0x00003ed7 fetch  0x00000001 , 0x00000416 
+ 00023789  0x00003ed8 copy  0x0000003f , 0x00000013 
+ 00023790  0x00003ed9 jam  0x00000006 , 0x00000416 
+ 00023791  0x00003eda setarg  0x00000002 
+ 00023792  0x00003edb iadd  0x00000011 , 0x0000003f 
+ 00023793  0x00003edc call  0x00005d66 
+ 00023794  0x00003edd copy  0x00000013 , 0x0000003f 
+ 00023795  0x00003ede istore  0x00000001 , 0x0000000a 
+ 00023796  0x00003edf istoret  0x00000001 , 0x0000000a 
+ 00023797  0x00003ee0 copy  0x00000011 , 0x00000039 
+ 00023798  0x00003ee1 copy  0x00000012 , 0x00000006 
+ 00023799  0x00003ee2 call  0x0000633b 
+ 00023800  0x00003ee3 branch  0x0000631f 
+ 00023801  0x00003ee8 jam  0x00000007 , 0x00000416 
+ 00023802  0x00003ee9 fetch  0x00000001 , 0x0000042e 
+ 00023803  0x00003eea rtn  0x00000034 
+ 00023804  0x00003eeb call  0x00005d66 
+ 00023805  0x00003eec fetch  0x00000001 , 0x0000042e 
+ 00023806  0x00003eed copy  0x0000003f , 0x00000039 
+ 00023807  0x00003eee fetch  0x00000002 , 0x00000430 
+ 00023808  0x00003eef copy  0x0000003f , 0x00000006 
+ 00023809  0x00003ef0 call  0x00006328 
+ 00023810  0x00003ef1 branch  0x0000631f 
+ 00023811  0x00003ef6 jam  0x00000008 , 0x00000416 
+ 00023812  0x00003ef7 fetch  0x00000001 , 0x00004751 
+ 00023813  0x00003ef8 icopy  0x00000039 
+ 00023814  0x00003ef9 increase  0x00000002 , 0x0000003f 
+ 00023815  0x00003efa call  0x00005d66 
+ 00023816  0x00003efb fetch  0x00000002 , 0x00004754 
+ 00023817  0x00003efc istore  0x00000002 , 0x0000000a 
+ 00023818  0x00003efd fetch  0x00000002 , 0x00004752 
+ 00023819  0x00003efe icopy  0x00000006 
+ 00023820  0x00003eff call  0x00006328 
+ 00023821  0x00003f00 branch  0x0000631f 
+ 00023822  0x00003f05 jam  0x00000009 , 0x00000416 
+ 00023823  0x00003f07 setarg  0x00000000 
+ 00023824  0x00003f08 call  0x00005d66 
+ 00023825  0x00003f09 branch  0x0000631f 
+ 00023826  0x00003f0e jam  0x0000000a , 0x00000416 
+ 00023827  0x00003f0f setarg  0x00000001 
+ 00023828  0x00003f10 call  0x00005d66 
+ 00023829  0x00003f12 call  0x00005d23 
+ 00023830  0x00003f14 fetch  0x00000002 , 0x0000470b 
+ 00023831  0x00003f15 arg  0x00000002 , 0x00000007 
+ 00023832  0x00003f16 qisolate1  0x0000003f 
+ 00023833  0x00003f17 setflag  0x00000001 , 0x00000003 , 0x00000002 
+ 00023834  0x00003f19 arg  0x00000009 , 0x00000007 
+ 00023835  0x00003f1a qisolate1  0x0000003f 
+ 00023836  0x00003f1b setflag  0x00000001 , 0x00000005 , 0x00000002 
+ 00023837  0x00003f1d fetch  0x00000001 , 0x0000470b 
+ 00023838  0x00003f1e arg  0x00000004 , 0x00000007 
+ 00023839  0x00003f1f qisolate1  0x0000003f 
+ 00023840  0x00003f20 setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023841  0x00003f22 istoret  0x00000001 , 0x0000000a 
+ 00023842  0x00003f23 branch  0x0000631f 
+ 00023843  0x00003f28 arg  0x00000000 , 0x00000002 
+ 00023844  0x00003f29 fetch  0x00000001 , 0x00004133 
+ 00023845  0x00003f2a arg  0x00000000 , 0x00000007 
+ 00023846  0x00003f2b qisolate1  0x0000003f 
+ 00023847  0x00003f2c setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023848  0x00003f2d arg  0x00000001 , 0x00000007 
+ 00023849  0x00003f2e qisolate1  0x0000003f 
+ 00023850  0x00003f2f setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00023851  0x00003f31 fetch  0x00000001 , 0x000043ff 
+ 00023852  0x00003f32 arg  0x00000000 , 0x00000007 
+ 00023853  0x00003f33 qisolate1  0x0000003f 
+ 00023854  0x00003f34 setflag  0x00000001 , 0x00000002 , 0x00000002 
+ 00023855  0x00003f35 rtn 
+ 00023856  0x00003f3b jam  0x0000000d , 0x00000416 
+ 00023857  0x00003f3c fetch  0x00000001 , 0x000042be 
+ 00023858  0x00003f3d mul32  0x0000003f , 0x00000022 , 0x0000003f 
+ 00023859  0x00003f3e icopy  0x00000039 
+ 00023860  0x00003f3f call  0x00005d66 
+ 00023861  0x00003f40 fetch  0x00000002 , 0x000042bc 
+ 00023862  0x00003f41 icopy  0x00000006 
+ 00023863  0x00003f42 call  0x00006328 
+ 00023864  0x00003f43 branch  0x0000631f 
+ 00023865  0x00003f49 jam  0x0000000e , 0x00000416 
+ 00023866  0x00003f4a setarg  0x00000004 
+ 00023867  0x00003f4b call  0x00005d66 
+ 00023868  0x00003f4c fetch  0x00000004 , 0x000008de 
+ 00023869  0x00003f4d istore  0x00000004 , 0x0000000a 
+ 00023870  0x00003f4e branch  0x0000631f 
+ 00023871  0x00003f52 jam  0x0000000f , 0x00000416 
+ 00023872  0x00003f53 branch  0x00005d0f 
+ 00023873  0x00003f58 jam  0x00000010 , 0x00000416 
+ 00023874  0x00003f59 branch  0x00005d0f 
+ 00023875  0x00003f5d jam  0x00000011 , 0x00000416 
+ 00023876  0x00003f5e setarg  0x00000004 
+ 00023877  0x00003f5f call  0x00005d66 
+ 00023878  0x00003f60 fetch  0x00000004 , 0x0000456d 
+ 00023879  0x00003f61 istore  0x00000004 , 0x0000000a 
+ 00023880  0x00003f62 branch  0x0000631f 
+ 00023881  0x00003f66 arg  0x00000180 , 0x00000011 
+ 00023882  0x00003f67 branch  0x00005d50 
+ 00023883  0x00003f69 arg  0x00000080 , 0x00000011 
+ 00023884  0x00003f6a branch  0x00005d50 
+ 00023885  0x00003f6c arg  0x00000101 , 0x00000011 
+ 00023886  0x00003f6d branch  0x00005d50 
+ 00023887  0x00003f6f arg  0x00000001 , 0x00000011 
+ 00023888  0x00003f71 jam  0x00000000 , 0x000046e9 
+ 00023889  0x00003f72 jam  0x00000014 , 0x00000416 
+ 00023890  0x00003f73 setarg  0x00000002 
+ 00023891  0x00003f74 call  0x00005d66 
+ 00023892  0x00003f75 copy  0x00000011 , 0x0000003f 
+ 00023893  0x00003f76 istore  0x00000002 , 0x0000000a 
+ 00023894  0x00003f77 branch  0x0000631f 
+ 00023895  0x00003f7b arg  0x00000000 , 0x00000013 
+ 00023896  0x00003f7c branch  0x00005d5a 
+ 00023897  0x00003f7e arg  0x00000001 , 0x00000013 
+ 00023898  0x00003f80 jam  0x00000015 , 0x00000416 
+ 00023899  0x00003f81 setarg  0x00000001 
+ 00023900  0x00003f82 call  0x00005d66 
+ 00023901  0x00003f83 copy  0x00000013 , 0x0000003f 
+ 00023902  0x00003f84 istore  0x00000001 , 0x0000000a 
+ 00023903  0x00003f85 branch  0x0000631f 
+ 00023904  0x00003f89 jam  0x0000001d , 0x00000416 
+ 00023905  0x00003f8a setarg  0x00000004 
+ 00023906  0x00003f8b call  0x00005d66 
+ 00023907  0x00003f8c fetch  0x00000004 , 0x000008de 
+ 00023908  0x00003f8d istore  0x00000004 , 0x0000000a 
+ 00023909  0x00003f8e branch  0x0000631f 
+ 00023910  0x00003f9a jam  0x00000002 , 0x00000415 
+ 00023911  0x00003f9b store  0x00000001 , 0x00000417 
+ 00023912  0x00003f9c storet  0x00000008 , 0x000009c6 
+ 00023913  0x00003f9d set1  0x00000025 , 0x00000000 
+ 00023914  0x00003f9e bpatch  0x00000067 , 0x0000402c 
+ 00023915  0x00003f9f call  0x00005d71 
+ 00023916  0x00003fa0 fetcht  0x00000008 , 0x000009c6 
+ 00023917  0x00003fa1 call  0x0000631c 
+ 00023918  0x00003fa2 fetch  0x00000003 , 0x00000415 
+ 00023919  0x00003fa3 istore  0x00000003 , 0x0000000a 
+ 00023920  0x00003fa4 rtn 
+ 00023921  0x00003fa9 call  0x00005d7a 
+ 00023922  0x00003faa rtn  0x00000001 
+ 00023923  0x00003fac call  0x00005d78 
+ 00023924  0x00003fad fetch  0x00000004 , 0x00004737 
+ 00023925  0x00003fae rshift2  0x0000003f , 0x0000003f 
+ 00023926  0x00003faf rtn  0x00000034 
+ 00023927  0x00003fb0 branch  0x00005d7e 
+ 00023928  0x00003fb3 fetcht  0x00000001 , 0x00004736 
+ 00023929  0x00003fb4 branch  0x000064ff 
+ 00023930  0x00003fb6 fetcht  0x00000001 , 0x00004736 
+ 00023931  0x00003fb7 branch  0x000064f3 
+ 00023932  0x00003fb9 fetcht  0x00000001 , 0x00004736 
+ 00023933  0x00003fba branch  0x000064fd 
+ 00023934  0x00003fbe increase  0xffffffff , 0x0000003f 
+ 00023935  0x00003fbf nbranch  0x00005d7e , 0x00000034 
+ 00023936  0x00003fc0 rtn 
+ 00023937  0x00003fcb copy  0x00000011 , 0x0000003f 
+ 00023938  0x00003fcc store  0x00000002 , 0x00004752 
+ 00023939  0x00003fcd copy  0x00000012 , 0x0000003f 
+ 00023940  0x00003fce store  0x00000001 , 0x00004751 
+ 00023941  0x00003fcf fetch  0x00000002 , 0x0000039b 
+ 00023942  0x00003fd0 fetcht  0x00000002 , 0x00004756 
+ 00023943  0x00003fd1 isub  0x00000002 , 0x0000003e 
+ 00023944  0x00003fd2 branch  0x00005d8c , 0x00000005 
+ 00023945  0x00003fd3 fetcht  0x00000002 , 0x00004758 
+ 00023946  0x00003fd4 isub  0x00000002 , 0x0000003e 
+ 00023947  0x00003fd5 nrtn  0x00000005 
+ 00023948  0x00003fd7 store  0x00000002 , 0x00004754 
+ 00023949  0x00003fd8 branch  0x00005d98 
+ 00023950  0x00003fdc fetch  0x00000001 , 0x0000475a 
+ 00023951  0x00003fdd bbit1  0x00000003 , 0x00005d94 
+ 00023952  0x00003fdf fetch  0x00000001 , 0x0000475a 
+ 00023953  0x00003fe0 rtnbit0  0x00000001 
+ 00023954  0x00003fe1 call  0x00005d03 
+ 00023955  0x00003fe2 branch  0x00005d9c 
+ 00023956  0x00003fe5 jam  0x00000009 , 0x00000416 
+ 00023957  0x00003fe6 call  0x00005ce1 
+ 00023958  0x00003fe7 call  0x00005b91 
+ 00023959  0x00003fe8 branch  0x00005d90 
+ 00023960  0x00003fec fetch  0x00000001 , 0x0000475a 
+ 00023961  0x00003fed set1  0x00000001 , 0x0000003f 
+ 00023962  0x00003fef store  0x00000001 , 0x0000475a 
+ 00023963  0x00003ff0 rtn 
+ 00023964  0x00003ff3 fetch  0x00000001 , 0x0000475a 
+ 00023965  0x00003ff4 set0  0x00000001 , 0x0000003f 
+ 00023966  0x00003ff5 branch  0x00005d9a 
+ 00023967  0x00003ffb fetch  0x00000001 , 0x0000472f 
+ 00023968  0x00003ffc rtnbit1  0x00000000 
+ 00023969  0x00003ffd call  0x00005dbd 
+ 00023970  0x00003ffe branch  0x00003e77 
+ 00023971  0x00004004 storet  0x00000001 , 0x0000024e 
+ 00023972  0x00004006 fetch  0x00000001 , 0x0000024e 
+ 00023973  0x00004007 rtn  0x00000034 
+ 00023974  0x00004008 increase  0xffffffff , 0x0000003f 
+ 00023975  0x00004009 store  0x00000001 , 0x0000024e 
+ 00023976  0x0000400a set1  0x00000025 , 0x00000000 
+ 00023977  0x0000400b bpatch  0x00000068 , 0x0000402d 
+ 00023978  0x0000400c call  0x00005dac 
+ 00023979  0x0000400d branch  0x00005da4 
+ 00023980  0x00004010 fetch  0x00000001 , 0x00004746 
+ 00023981  0x00004011 rtn  0x00000034 
+ 00023982  0x00004012 fetch  0x00000001 , 0x00004747 
+ 00023983  0x00004013 rtn  0x00000034 
+ 00023984  0x00004014 increase  0xffffffff , 0x0000003f 
+ 00023985  0x00004015 store  0x00000001 , 0x00004747 
+ 00023986  0x00004016 nrtn  0x00000034 
+ 00023987  0x00004017 jam  0x0000000a , 0x00004747 
+ 00023988  0x00004018 call  0x000065c0 
+ 00023989  0x00004019 call  0x000065de 
+ 00023990  0x0000401a div  0x0000003f , 0x00000064 
+ 00023991  0x0000401b call  0x00007f53 
+ 00023992  0x0000401c quotient  0x0000003f 
+ 00023993  0x0000401d remainder  0x00000002 
+ 00023994  0x0000401e store  0x00000001 , 0x00004748 
+ 00023995  0x0000401f storet  0x00000001 , 0x00004749 
+ 00023996  0x00004020 rtn 
+ 00023997  0x00004025 fetch  0x00000001 , 0x0000472f 
+ 00023998  0x00004026 set1  0x00000000 , 0x0000003f 
+ 00023999  0x00004027 store  0x00000001 , 0x0000472f 
+ 00024000  0x00004028 rtn 
+ 00024001  0x0000402b fetch  0x00000001 , 0x0000472f 
+ 00024002  0x0000402c set0  0x00000000 , 0x0000003f 
+ 00024003  0x0000402d store  0x00000001 , 0x0000472f 
+ 00024004  0x0000402e rtn 
+ 00024005  0x00004031 set1  0x00000025 , 0x00000000 
+ 00024006  0x00004032 bpatch  0x00000069 , 0x0000402d 
+ 00024007  0x00004033 call  0x00007f84 
+ 00024008  0x00004034 branch  0x00003e41 , 0x00000002 
+ 00024009  0x00004035 branch  0x00003e43 
+ 00024010  0x0000403d set1  0x00000025 , 0x00000000 
+ 00024011  0x0000403e bpatch  0x0000006a , 0x0000402d 
+ 00024012  0x0000403f setarg  0x00005fc3 
+ 00024013  0x00004040 store  0x00000002 , 0x00004290 
+ 00024014  0x00004041 setarg  0x00005ee2 
+ 00024015  0x00004042 store  0x00000002 , 0x00004292 
+ 00024016  0x00004043 setarg  0x00005e27 
+ 00024017  0x00004044 store  0x00000002 , 0x0000428e 
+ 00024018  0x00004045 setarg  0x00005fd4 
+ 00024019  0x00004046 store  0x00000002 , 0x00004296 
+ 00024020  0x00004047 setarg  0x00005def 
+ 00024021  0x00004048 store  0x00000002 , 0x00004294 
+ 00024022  0x00004049 setarg  0x00005efd 
+ 00024023  0x0000404a store  0x00000002 , 0x0000429c 
+ 00024024  0x0000404b jam  0x00000000 , 0x000008d4 
+ 00024025  0x0000404c jam  0x00000000 , 0x000008d5 
+ 00024026  0x0000404d set1  0x00000025 , 0x00000000 
+ 00024027  0x0000404e bpatch  0x0000006b , 0x0000402d 
+ 00024028  0x0000404f call  0x00005e0a 
+ 00024029  0x00004050 rtn  0x0000002b 
+ 00024030  0x00004051 call  0x00005de5 
+ 00024031  0x00004052 call  0x00005ded 
+ 00024032  0x00004053 setarg  0x00005e24 
+ 00024033  0x00004054 store  0x00000002 , 0x0000428c 
+ 00024034  0x00004055 fetch  0x00000002 , 0x0000470b 
+ 00024035  0x00004056 bbit1  0x0000000c , 0x00006074 
+ 00024036  0x00004057 branch  0x00006070 
+ 00024037  0x0000405a call  0x00003e28 
+ 00024038  0x0000405b branch  0x00005dea , 0x00000005 
+ 00024039  0x0000405c call  0x00006472 
+ 00024040  0x0000405d call  0x00006098 
+ 00024041  0x0000405e branch  0x00003e20 
+ 00024042  0x00004060 call  0x00006441 
+ 00024043  0x00004061 call  0x00006476 
+ 00024044  0x00004062 branch  0x0000609e 
+ 00024045  0x00004065 jam  0x00000001 , 0x00004747 
+ 00024046  0x00004066 branch  0x00005e01 
+ 00024047  0x00004069 call  0x00007e3f 
+ 00024048  0x0000406a call  0x00005df2 
+ 00024049  0x0000406b branch  0x00005e3e 
+ 00024050  0x0000406e fetcht  0x00000001 , 0x00004752 
+ 00024051  0x0000406f call  0x000064f5 
+ 00024052  0x00004070 nbranch  0x00005df9 , 0x00000001 
+ 00024053  0x00004072 fetch  0x00000001 , 0x00004747 
+ 00024054  0x00004073 rtneq  0x00000000 
+ 00024055  0x00004074 jam  0x00000000 , 0x00004747 
+ 00024056  0x00004075 rtn 
+ 00024057  0x00004077 fetch  0x00000001 , 0x00004747 
+ 00024058  0x00004078 rtneq  0x00000001 
+ 00024059  0x00004079 jam  0x00000001 , 0x00004747 
+ 00024060  0x0000407a fetch  0x00000001 , 0x00004746 
+ 00024061  0x0000407b increase  0x00000001 , 0x0000003f 
+ 00024062  0x0000407c and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00024063  0x0000407d store  0x00000001 , 0x00004746 
+ 00024064  0x0000407e branch  0x00005e01 
+ 00024065  0x00004080 setarg  0x00000006 
+ 00024066  0x00004081 call  0x000060ec 
+ 00024067  0x00004082 and  0x0000003f , 0x000000fc , 0x00000002 
+ 00024068  0x00004083 fetch  0x00000001 , 0x00004746 
+ 00024069  0x00004084 iadd  0x00000002 , 0x0000003f 
+ 00024070  0x00004085 lshift8  0x0000003f , 0x0000003f 
+ 00024071  0x00004086 add  0x0000003f , 0x00000006 , 0x0000003f 
+ 00024072  0x00004087 call  0x000060eb 
+ 00024073  0x00004088 branch  0x00006098 
+ 00024074  0x0000408b call  0x00005f8e 
+ 00024075  0x0000408c call  0x00005e10 
+ 00024076  0x0000408d hfetch  0x00000002 , 0x00008050 
+ 00024077  0x0000408e set0  0x0000000b , 0x0000003f 
+ 00024078  0x0000408f hstore  0x00000002 , 0x00008050 
+ 00024079  0x00004090 rtn 
+ 00024080  0x00004093 rtn  0x0000002b 
+ 00024081  0x00004094 call  0x00003d3e 
+ 00024082  0x00004095 fetcht  0x00000001 , 0x00004763 
+ 00024083  0x00004096 call  0x000064df 
+ 00024084  0x00004097 fetcht  0x00000001 , 0x00004764 
+ 00024085  0x00004098 call  0x000064df 
+ 00024086  0x00004099 fetcht  0x00000001 , 0x0000474d 
+ 00024087  0x0000409a call  0x000064df 
+ 00024088  0x0000409b fetcht  0x00000001 , 0x0000474e 
+ 00024089  0x0000409c call  0x000064df 
+ 00024090  0x0000409d fetcht  0x00000001 , 0x0000474f 
+ 00024091  0x0000409e call  0x000064df 
+ 00024092  0x0000409f fetcht  0x00000001 , 0x00004750 
+ 00024093  0x000040a0 call  0x000064df 
+ 00024094  0x000040a1 fetcht  0x00000001 , 0x00004751 
+ 00024095  0x000040a2 call  0x000064df 
+ 00024096  0x000040a3 fetcht  0x00000001 , 0x00004753 
+ 00024097  0x000040a4 call  0x000064df 
+ 00024098  0x000040a5 fetcht  0x00000001 , 0x00004752 
+ 00024099  0x000040a6 branch  0x000064df 
+ 00024100  0x000040aa setarg  0x0000bc05 
+ 00024101  0x000040ab call  0x000060eb 
+ 00024102  0x000040ac jam  0x00000001 , 0x0000009f 
+ 00024103  0x000040af call  0x00005e3e 
+ 00024104  0x000040b0 arg  0x00000019 , 0x00000002 
+ 00024105  0x000040b1 call  0x000064e8 
+ 00024106  0x000040b2 hjam  0x00000000 , 0x00008081 
+ 00024107  0x000040b3 fetcht  0x00000001 , 0x00004763 
+ 00024108  0x000040b4 call  0x000064c2 
+ 00024109  0x000040b5 fetcht  0x00000001 , 0x00004764 
+ 00024110  0x000040b6 call  0x000064c2 
+ 00024111  0x000040b7 fetcht  0x00000001 , 0x0000474d 
+ 00024112  0x000040b8 call  0x000064c2 
+ 00024113  0x000040b9 fetcht  0x00000001 , 0x0000474e 
+ 00024114  0x000040ba call  0x000064c2 
+ 00024115  0x000040bb fetcht  0x00000001 , 0x0000474f 
+ 00024116  0x000040bc call  0x000064c2 
+ 00024117  0x000040bd fetcht  0x00000001 , 0x00004750 
+ 00024118  0x000040be call  0x000064c2 
+ 00024119  0x000040bf fetcht  0x00000001 , 0x00004751 
+ 00024120  0x000040c0 call  0x000064c2 
+ 00024121  0x000040c1 fetcht  0x00000001 , 0x00004753 
+ 00024122  0x000040c2 call  0x000064c7 
+ 00024123  0x000040c3 fetch  0x00000001 , 0x0000009f 
+ 00024124  0x000040c4 nrtn  0x00000034 
+ 00024125  0x000040c5 branch  0x000064d2 
+ 00024126  0x000040c8 set1  0x00000025 , 0x00000000 
+ 00024127  0x000040c9 bpatch  0x0000006c , 0x0000402d 
+ 00024128  0x000040ca call  0x00005e4d 
+ 00024129  0x000040cb call  0x00005e94 
+ 00024130  0x000040cc fetch  0x00000001 , 0x0000475e 
+ 00024131  0x000040cd fetcht  0x00000001 , 0x0000475d 
+ 00024132  0x000040ce store  0x00000001 , 0x0000475d 
+ 00024133  0x000040cf isub  0x00000002 , 0x0000003e 
+ 00024134  0x000040d0 nbranch  0x00003e39 , 0x00000005 
+ 00024135  0x000040d1 fetch  0x00000001 , 0x00004766 
+ 00024136  0x000040d2 fetcht  0x00000001 , 0x00004765 
+ 00024137  0x000040d3 store  0x00000001 , 0x00004765 
+ 00024138  0x000040d4 isub  0x00000002 , 0x0000003e 
+ 00024139  0x000040d5 nbranch  0x00003e39 , 0x00000005 
+ 00024140  0x000040d6 rtn 
+ 00024141  0x000040d8 arg  0x00000000 , 0x00000011 
+ 00024142  0x000040d9 fetcht  0x00000001 , 0x0000475b 
+ 00024143  0x000040da call  0x000064f5 
+ 00024144  0x000040db setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024145  0x000040dc fetcht  0x00000001 , 0x0000475c 
+ 00024146  0x000040dd call  0x000064f5 
+ 00024147  0x000040de setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024148  0x000040df copy  0x00000011 , 0x0000003f 
+ 00024149  0x000040e0 store  0x00000001 , 0x0000475e 
+ 00024150  0x000040e1 beq  0x00000001 , 0x00005e5b 
+ 00024151  0x000040e2 beq  0x00000002 , 0x00005e5f 
+ 00024152  0x000040e3 fetch  0x00000001 , 0x0000475f 
+ 00024153  0x000040e4 bbit1  0x00000007 , 0x00005e6b 
+ 00024154  0x000040e5 rtn 
+ 00024155  0x000040e8 fetch  0x00000001 , 0x0000475d 
+ 00024156  0x000040e9 beq  0x00000000 , 0x00005e63 
+ 00024157  0x000040ea beq  0x00000003 , 0x00005e65 
+ 00024158  0x000040eb rtn 
+ 00024159  0x000040ed fetch  0x00000001 , 0x0000475d 
+ 00024160  0x000040ee beq  0x00000000 , 0x00005e67 
+ 00024161  0x000040ef beq  0x00000003 , 0x00005e69 
+ 00024162  0x000040f0 rtn 
+ 00024163  0x000040f2 jam  0x00000082 , 0x0000475f 
+ 00024164  0x000040f3 rtn 
+ 00024165  0x000040f5 jam  0x00000081 , 0x0000475f 
+ 00024166  0x000040f6 rtn 
+ 00024167  0x000040f8 jam  0x00000080 , 0x0000475f 
+ 00024168  0x000040f9 rtn 
+ 00024169  0x000040fb jam  0x00000083 , 0x0000475f 
+ 00024170  0x000040fc rtn 
+ 00024171  0x000040fe fetch  0x00000001 , 0x0000475f 
+ 00024172  0x000040ff set0  0x00000007 , 0x0000003f 
+ 00024173  0x00004100 store  0x00000001 , 0x0000475f 
+ 00024174  0x00004101 fetch  0x00000001 , 0x0000475f 
+ 00024175  0x00004102 beq  0x00000000 , 0x00005e74 
+ 00024176  0x00004103 beq  0x00000001 , 0x00005e77 
+ 00024177  0x00004104 beq  0x00000002 , 0x00005e7a 
+ 00024178  0x00004105 beq  0x00000003 , 0x00005e7d 
+ 00024179  0x00004106 rtn 
+ 00024180  0x00004108 fetch  0x00000001 , 0x0000475e 
+ 00024181  0x00004109 beq  0x00000003 , 0x00005e80 
+ 00024182  0x0000410a rtn 
+ 00024183  0x0000410c fetch  0x00000001 , 0x0000475e 
+ 00024184  0x0000410d beq  0x00000000 , 0x00005e80 
+ 00024185  0x0000410e rtn 
+ 00024186  0x00004110 fetch  0x00000001 , 0x0000475e 
+ 00024187  0x00004111 beq  0x00000003 , 0x00005e8a 
+ 00024188  0x00004112 rtn 
+ 00024189  0x00004114 fetch  0x00000001 , 0x0000475e 
+ 00024190  0x00004115 beq  0x00000000 , 0x00005e8a 
+ 00024191  0x00004116 rtn 
+ 00024192  0x00004118 fetch  0x00000001 , 0x00004762 
+ 00024193  0x00004119 increase  0x00000001 , 0x0000003f 
+ 00024194  0x0000411a store  0x00000001 , 0x00004762 
+ 00024195  0x0000411b sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024196  0x0000411c rtn  0x00000002 
+ 00024197  0x0000411d jam  0x00000000 , 0x00004762 
+ 00024198  0x0000411e fetch  0x00000001 , 0x00004760 
+ 00024199  0x0000411f increase  0x00000001 , 0x0000003f 
+ 00024200  0x00004120 store  0x00000001 , 0x00004760 
+ 00024201  0x00004121 rtn 
+ 00024202  0x00004123 fetch  0x00000001 , 0x00004761 
+ 00024203  0x00004124 increase  0x00000001 , 0x0000003f 
+ 00024204  0x00004125 store  0x00000001 , 0x00004761 
+ 00024205  0x00004126 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024206  0x00004127 rtn  0x00000002 
+ 00024207  0x00004128 jam  0x00000000 , 0x00004761 
+ 00024208  0x00004129 fetch  0x00000001 , 0x00004760 
+ 00024209  0x0000412a increase  0xffffffff , 0x0000003f 
+ 00024210  0x0000412b store  0x00000001 , 0x00004760 
+ 00024211  0x0000412c rtn 
+ 00024212  0x00004130 arg  0x00000000 , 0x00000011 
+ 00024213  0x00004131 fetcht  0x00000001 , 0x00004763 
+ 00024214  0x00004132 call  0x000064f5 
+ 00024215  0x00004133 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024216  0x00004134 fetcht  0x00000001 , 0x00004764 
+ 00024217  0x00004135 call  0x000064f5 
+ 00024218  0x00004136 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024219  0x00004137 copy  0x00000011 , 0x0000003f 
+ 00024220  0x00004138 store  0x00000001 , 0x00004766 
+ 00024221  0x00004139 beq  0x00000001 , 0x00005ea2 
+ 00024222  0x0000413a beq  0x00000002 , 0x00005ea6 
+ 00024223  0x0000413b fetch  0x00000001 , 0x00004767 
+ 00024224  0x0000413c bbit1  0x00000007 , 0x00005eb2 
+ 00024225  0x0000413d rtn 
+ 00024226  0x00004140 fetch  0x00000001 , 0x00004765 
+ 00024227  0x00004141 beq  0x00000000 , 0x00005eaa 
+ 00024228  0x00004142 beq  0x00000003 , 0x00005eac 
+ 00024229  0x00004143 rtn 
+ 00024230  0x00004145 fetch  0x00000001 , 0x00004765 
+ 00024231  0x00004146 beq  0x00000000 , 0x00005eae 
+ 00024232  0x00004147 beq  0x00000003 , 0x00005eb0 
+ 00024233  0x00004148 rtn 
+ 00024234  0x0000414a jam  0x00000082 , 0x00004767 
+ 00024235  0x0000414b rtn 
+ 00024236  0x0000414d jam  0x00000081 , 0x00004767 
+ 00024237  0x0000414e rtn 
+ 00024238  0x00004150 jam  0x00000080 , 0x00004767 
+ 00024239  0x00004151 rtn 
+ 00024240  0x00004153 jam  0x00000083 , 0x00004767 
+ 00024241  0x00004154 rtn 
+ 00024242  0x00004156 fetch  0x00000001 , 0x00004767 
+ 00024243  0x00004157 set0  0x00000007 , 0x0000003f 
+ 00024244  0x00004158 store  0x00000001 , 0x00004767 
+ 00024245  0x00004159 fetch  0x00000001 , 0x00004767 
+ 00024246  0x0000415a beq  0x00000000 , 0x00005ebb 
+ 00024247  0x0000415b beq  0x00000001 , 0x00005ebe 
+ 00024248  0x0000415c beq  0x00000002 , 0x00005ec1 
+ 00024249  0x0000415d beq  0x00000003 , 0x00005ec4 
+ 00024250  0x0000415e rtn 
+ 00024251  0x00004160 fetch  0x00000001 , 0x00004766 
+ 00024252  0x00004161 beq  0x00000003 , 0x00005ec7 
+ 00024253  0x00004162 rtn 
+ 00024254  0x00004164 fetch  0x00000001 , 0x00004766 
+ 00024255  0x00004165 beq  0x00000000 , 0x00005ec7 
+ 00024256  0x00004166 rtn 
+ 00024257  0x00004168 fetch  0x00000001 , 0x00004766 
+ 00024258  0x00004169 beq  0x00000003 , 0x00005ed1 
+ 00024259  0x0000416a rtn 
+ 00024260  0x0000416c fetch  0x00000001 , 0x00004766 
+ 00024261  0x0000416d beq  0x00000000 , 0x00005ed1 
+ 00024262  0x0000416e rtn 
+ 00024263  0x00004170 fetch  0x00000001 , 0x0000476a 
+ 00024264  0x00004171 increase  0x00000001 , 0x0000003f 
+ 00024265  0x00004172 store  0x00000001 , 0x0000476a 
+ 00024266  0x00004173 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024267  0x00004174 rtn  0x00000002 
+ 00024268  0x00004175 jam  0x00000000 , 0x0000476a 
+ 00024269  0x00004176 fetch  0x00000001 , 0x00004768 
+ 00024270  0x00004177 increase  0x00000001 , 0x0000003f 
+ 00024271  0x00004178 store  0x00000001 , 0x00004768 
+ 00024272  0x00004179 rtn 
+ 00024273  0x0000417b fetch  0x00000001 , 0x00004769 
+ 00024274  0x0000417c increase  0x00000001 , 0x0000003f 
+ 00024275  0x0000417d store  0x00000001 , 0x00004769 
+ 00024276  0x0000417e sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024277  0x0000417f rtn  0x00000002 
+ 00024278  0x00004180 jam  0x00000000 , 0x00004769 
+ 00024279  0x00004181 fetch  0x00000001 , 0x00004768 
+ 00024280  0x00004182 increase  0xffffffff , 0x0000003f 
+ 00024281  0x00004183 store  0x00000001 , 0x00004768 
+ 00024282  0x00004184 rtn 
+ 00024283  0x00004188 call  0x00003e7b 
+ 00024284  0x00004189 jam  0x00000002 , 0x0000474b 
+ 00024285  0x0000418a call  0x00003e7f 
+ 00024286  0x0000418c branch  0x00003e6d 
+ 00024287  0x00004190 setarg  0x00000002 
+ 00024288  0x00004191 store  0x00000001 , 0x00004709 
+ 00024289  0x00004192 rtn 
+ 00024290  0x00004195 fetch  0x00000001 , 0x00004283 
+ 00024291  0x00004196 rtn  0x00000034 
+ 00024292  0x00004197 call  0x00004812 
+ 00024293  0x00004198 nrtn  0x00000034 
+ 00024294  0x00004199 call  0x00005f14 
+ 00024295  0x0000419a nrtn  0x00000028 
+ 00024296  0x0000419b call  0x00005efa 
+ 00024297  0x0000419d arg  0x00000009 , 0x00000011 
+ 00024298  0x0000419e call  0x00004005 
+ 00024299  0x0000419f fetch  0x00000002 , 0x000042de 
+ 00024300  0x000041a0 istore  0x00000002 , 0x00000005 
+ 00024301  0x000041a1 setarg  0x000002a1 
+ 00024302  0x000041a2 istore  0x00000002 , 0x00000005 
+ 00024303  0x000041a3 fetch  0x00000007 , 0x00004729 
+ 00024304  0x000041a4 istore  0x00000007 , 0x00000005 
+ 00024305  0x000041a5 rtn 
+ 00024306  0x000041a7 setarg  0x00000000 
+ 00024307  0x000041a8 store  0x00000006 , 0x0000472a 
+ 00024308  0x000041a9 store  0x00000001 , 0x0000472f 
+ 00024309  0x000041aa branch  0x00005ee9 
+ 00024310  0x000041ac setarg  0x00000000 
+ 00024311  0x000041ad store  0x00000006 , 0x0000472a 
+ 00024312  0x000041ae store  0x00000001 , 0x0000472f 
+ 00024313  0x000041af branch  0x00005f0c 
+ 00024314  0x000041b2 fetch  0x00000002 , 0x00004739 
+ 00024315  0x000041b3 store  0x00000002 , 0x00004741 
+ 00024316  0x000041b4 rtn 
+ 00024317  0x000041b8 fetcht  0x00000002 , 0x000044f8 
+ 00024318  0x000041b9 call  0x000051f5 
+ 00024319  0x000041ba ifetch  0x00000001 , 0x00000006 
+ 00024320  0x000041bb store  0x00000001 , 0x000003be 
+ 00024321  0x000041bc arg  0x0000446b , 0x00000005 
+ 00024322  0x000041bd increase  0x00000001 , 0x00000005 
+ 00024323  0x000041be fetcht  0x00000002 , 0x000044f8 
+ 00024324  0x000041bf istoret  0x00000002 , 0x00000005 
+ 00024325  0x000041c0 call  0x000051f5 
+ 00024326  0x000041c1 ifetch  0x00000001 , 0x00000006 
+ 00024327  0x000041c2 icopy  0x00000039 
+ 00024328  0x000041c3 call  0x00007ecd 
+ 00024329  0x000041c4 fetcht  0x00000001 , 0x000003be 
+ 00024330  0x000041c5 increase  0x00000007 , 0x00000002 
+ 00024331  0x000041c6 branch  0x00004f89 
+ 00024332  0x000041ca set1  0x00000025 , 0x00000000 
+ 00024333  0x000041cb bpatch  0x0000006d , 0x0000402d 
+ 00024334  0x000041cc fetcht  0x00000002 , 0x000044f8 
+ 00024335  0x000041cd call  0x000051f5 
+ 00024336  0x000041ce add  0x00000006 , 0x00000001 , 0x00000005 
+ 00024337  0x000041d0 fetch  0x00000007 , 0x00004729 
+ 00024338  0x000041d1 istore  0x00000007 , 0x00000005 
+ 00024339  0x000041d2 rtn 
+ 00024340  0x000041d5 set1  0x00000025 , 0x00000000 
+ 00024341  0x000041d6 bpatch  0x0000006e , 0x0000402d 
+ 00024342  0x000041d7 disable  0x00000028 
+ 00024343  0x000041d8 setarg  0x00000000 
+ 00024344  0x000041d9 store  0x00000006 , 0x0000472a 
+ 00024345  0x000041da call  0x00005f1e 
+ 00024346  0x000041db call  0x00005f87 
+ 00024347  0x000041dc call  0x00005f61 
+ 00024348  0x000041dd call  0x00005f67 
+ 00024349  0x000041de branch  0x00005f7f 
+ 00024350  0x000041e1 fetch  0x00000001 , 0x00004735 
+ 00024351  0x000041e2 call  0x00005f5a , 0x00000034 
+ 00024352  0x000041e3 jam  0x00000001 , 0x00004735 
+ 00024353  0x000041e4 disable  0x00000028 
+ 00024354  0x000041e5 fetcht  0x00000001 , 0x00004753 
+ 00024355  0x000041e6 call  0x000064f5 
+ 00024356  0x000041e7 nrtn  0x00000001 
+ 00024357  0x000041e8 setarg  0x00000000 
+ 00024358  0x000041e9 call  0x000060ec 
+ 00024359  0x000041eb setarg  0x00000002 
+ 00024360  0x000041ec call  0x000060ec 
+ 00024361  0x000041ed rtnbit0  0x00000007 
+ 00024362  0x000041ee setarg  0x00000003 
+ 00024363  0x000041ef call  0x000060ec 
+ 00024364  0x000041f0 call  0x00005fbb 
+ 00024365  0x000041f1 store  0x00000002 , 0x0000472a 
+ 00024366  0x000041f2 setarg  0x00000004 
+ 00024367  0x000041f3 call  0x000060ec 
+ 00024368  0x000041f4 call  0x00005fbb 
+ 00024369  0x000041f5 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00024370  0x000041f6 store  0x00000002 , 0x0000472c 
+ 00024371  0x000041f7 fetch  0x00000004 , 0x0000472a 
+ 00024372  0x000041f8 enable  0x00000028 
+ 00024373  0x000041f9 rtn 
+ 00024374  0x000041fc call  0x000060e7 
+ 00024375  0x000041fd call  0x00005f5a 
+ 00024376  0x000041fe arg  0x00000005 , 0x0000003f 
+ 00024377  0x000041ff call  0x000060ec 
+ 00024378  0x00004200 store  0x00000001 , 0x00004730 
+ 00024379  0x00004201 arg  0x00000007 , 0x0000003f 
+ 00024380  0x00004202 call  0x000060ec 
+ 00024381  0x00004203 store  0x00000001 , 0x00004731 
+ 00024382  0x00004204 arg  0x00000008 , 0x0000003f 
+ 00024383  0x00004205 call  0x000060ec 
+ 00024384  0x00004206 store  0x00000001 , 0x00004732 
+ 00024385  0x00004207 branch  0x000060e9 
+ 00024386  0x0000420b fetch  0x00000001 , 0x00004731 
+ 00024387  0x0000420c rtnne  0x00000000 
+ 00024388  0x0000420d fetch  0x00000001 , 0x00004732 
+ 00024389  0x0000420e sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024390  0x0000420f rtn  0x00000002 
+ 00024391  0x00004210 jam  0x00000000 , 0x00004733 
+ 00024392  0x00004211 setarg  0x0000ba41 
+ 00024393  0x00004212 call  0x000060db 
+ 00024394  0x00004213 setarg  0x00000032 
+ 00024395  0x00004214 call  0x000060db 
+ 00024396  0x00004215 setarg  0x0000b541 
+ 00024397  0x00004216 branch  0x000060db 
+ 00024398  0x00004218 fetch  0x00000001 , 0x00004731 
+ 00024399  0x00004219 rtnne  0x00000000 
+ 00024400  0x0000421a fetch  0x00000001 , 0x00004732 
+ 00024401  0x0000421b sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024402  0x0000421c nrtn  0x00000002 
+ 00024403  0x0000421d jam  0x00000001 , 0x00004733 
+ 00024404  0x0000421e setarg  0x0000ba41 
+ 00024405  0x0000421f call  0x000060db 
+ 00024406  0x00004220 setarg  0x00008032 
+ 00024407  0x00004221 call  0x000060db 
+ 00024408  0x00004222 setarg  0x0000b541 
+ 00024409  0x00004223 branch  0x000060db 
+ 00024410  0x00004228 arg  0x00000003 , 0x0000003f 
+ 00024411  0x00004229 call  0x000060ec 
+ 00024412  0x0000422a store  0x00000002 , 0x0000472a 
+ 00024413  0x0000422b arg  0x00000004 , 0x0000003f 
+ 00024414  0x0000422c call  0x000060ec 
+ 00024415  0x0000422d store  0x00000002 , 0x0000472c 
+ 00024416  0x0000422e rtn 
+ 00024417  0x00004231 fetch  0x00000001 , 0x00004768 
+ 00024418  0x00004232 rtn  0x00000034 
+ 00024419  0x00004233 store  0x00000001 , 0x0000472e 
+ 00024420  0x00004234 jam  0x00000000 , 0x00004768 
+ 00024421  0x00004235 enable  0x00000028 
+ 00024422  0x00004236 rtn 
+ 00024423  0x00004238 fetch  0x00000001 , 0x00004760 
+ 00024424  0x00004239 rtn  0x00000034 
+ 00024425  0x0000423a store  0x00000001 , 0x0000472f 
+ 00024426  0x0000423b jam  0x00000000 , 0x00004760 
+ 00024427  0x0000423c enable  0x00000028 
+ 00024428  0x0000423d rtn 
+ 00024429  0x0000423f arg  0x00000000 , 0x00000011 
+ 00024430  0x00004240 fetcht  0x00000001 , 0x0000474d 
+ 00024431  0x00004241 call  0x000064f5 
+ 00024432  0x00004242 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024433  0x00004243 fetcht  0x00000001 , 0x0000474e 
+ 00024434  0x00004244 call  0x000064f5 
+ 00024435  0x00004245 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024436  0x00004246 fetcht  0x00000001 , 0x0000474f 
+ 00024437  0x00004247 call  0x000064f5 
+ 00024438  0x00004248 setflag  0x00000001 , 0x00000002 , 0x00000011 
+ 00024439  0x00004249 fetcht  0x00000001 , 0x00004750 
+ 00024440  0x0000424a call  0x000064f5 
+ 00024441  0x0000424b setflag  0x00000001 , 0x00000003 , 0x00000011 
+ 00024442  0x0000424c fetcht  0x00000001 , 0x00004751 
+ 00024443  0x0000424d call  0x000064f5 
+ 00024444  0x0000424e setflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00024445  0x0000424f copy  0x00000011 , 0x0000003f 
+ 00024446  0x00004250 rtn 
+ 00024447  0x00004252 call  0x00005f6d 
+ 00024448  0x00004253 fetcht  0x00000001 , 0x00004729 
+ 00024449  0x00004254 store  0x00000001 , 0x00004729 
+ 00024450  0x00004255 ixor  0x00000002 , 0x0000003f 
+ 00024451  0x00004256 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00024452  0x00004257 rtn  0x00000005 
+ 00024453  0x00004258 enable  0x00000028 
+ 00024454  0x00004259 rtn 
+ 00024455  0x0000425f arg  0x0000001a , 0x00000002 
+ 00024456  0x00004260 call  0x000064f5 
+ 00024457  0x00004261 rtn  0x00000001 
+ 00024458  0x00004262 setarg  0x0000000a 
+ 00024459  0x00004263 call  0x000060ec 
+ 00024460  0x00004264 nop  0x000003e8 
+ 00024461  0x00004265 branch  0x00005f87 
+ 00024462  0x00004268 call  0x000061ac 
+ 00024463  0x00004269 rtn  0x0000002b 
+ 00024464  0x0000426b setarg  0x00000000 
+ 00024465  0x0000426c call  0x000060ec 
+ 00024466  0x0000426d store  0x00000001 , 0x0000024b 
+ 00024467  0x0000426e beq  0x00000030 , 0x00005f98 
+ 00024468  0x00004270 beq  0x00000031 , 0x00005f98 
+ 00024469  0x00004271 call  0x000060c0 
+ 00024470  0x00004272 nop  0x000003e8 
+ 00024471  0x00004273 branch  0x00005f90 
+ 00024472  0x00004275 setarg  0x00008006 
+ 00024473  0x00004276 call  0x000060eb 
+ 00024474  0x00004277 nop  0x000003e8 
+ 00024475  0x00004278 rtn 
+ 00024476  0x0000427b fetcht  0x00000001 , 0x00004756 
+ 00024477  0x0000427c call  0x000064ff 
+ 00024478  0x0000427d call  0x00007e89 
+ 00024479  0x0000427e fetcht  0x00000001 , 0x00004756 
+ 00024480  0x0000427f call  0x000064fd 
+ 00024481  0x00004280 branch  0x00007e89 
+ 00024482  0x00004283 setarg  0x0000ba41 
+ 00024483  0x00004284 call  0x000060db 
+ 00024484  0x00004285 setarg  0x00000d11 
+ 00024485  0x00004286 call  0x000060db 
+ 00024486  0x00004287 setarg  0x0000041b 
+ 00024487  0x00004288 call  0x000060db 
+ 00024488  0x00004289 setarg  0x0000041c 
+ 00024489  0x0000428a call  0x000060db 
+ 00024490  0x0000428b setarg  0x00000f1d 
+ 00024491  0x0000428c call  0x000060db 
+ 00024492  0x0000428d setarg  0x00000032 
+ 00024493  0x0000428e call  0x000060db 
+ 00024494  0x0000428f setarg  0x0000b541 
+ 00024495  0x00004290 branch  0x000060db 
+ 00024496  0x00004295 setarg  0x0000ba41 
+ 00024497  0x00004296 call  0x000060db 
+ 00024498  0x00004297 nop  0x00000fa0 
+ 00024499  0x00004298 setarg  0x0000ff7f 
+ 00024500  0x00004299 call  0x000060db 
+ 00024501  0x0000429a copy  0x00000011 , 0x0000003f 
+ 00024502  0x0000429b call  0x000060db 
+ 00024503  0x0000429c setarg  0x0000007f 
+ 00024504  0x0000429d call  0x000060db 
+ 00024505  0x0000429e setarg  0x0000b541 
+ 00024506  0x0000429f branch  0x000060db 
+ 00024507  0x000042a2 rtnbit0  0x00000007 
+ 00024508  0x000042a3 arg  0x0000ff00 , 0x00000002 
+ 00024509  0x000042a4 ior  0x00000002 , 0x0000003f 
+ 00024510  0x000042a5 rtn 
+ 00024511  0x000042a8 rtnbit0  0x00000003 
+ 00024512  0x000042a9 arg  0x000000f0 , 0x00000002 
+ 00024513  0x000042aa ior  0x00000002 , 0x0000003f 
+ 00024514  0x000042ab rtn 
+ 00024515  0x000042ae call  0x00004bd4 
+ 00024516  0x000042af nrtn  0x00000034 
+ 00024517  0x000042b0 fetch  0x00000001 , 0x0000474c 
+ 00024518  0x000042b1 store  0x00000001 , 0x000044f8 
+ 00024519  0x000042b2 fetcht  0x00000002 , 0x000044f8 
+ 00024520  0x000042b3 call  0x00004f6a 
+ 00024521  0x000042b4 rtnbit0  0x00000000 
+ 00024522  0x000042b5 fetch  0x00000001 , 0x00004595 
+ 00024523  0x000042b6 rtnbit0  0x00000000 
+ 00024524  0x000042b7 call  0x00005f14 
+ 00024525  0x000042b8 nrtn  0x00000028 
+ 00024526  0x000042b9 call  0x00005efa 
+ 00024527  0x000042ba fetch  0x00000001 , 0x0000474c 
+ 00024528  0x000042bb store  0x00000001 , 0x000044f8 
+ 00024529  0x000042bc jam  0x0000001b , 0x000009bd 
+ 00024530  0x000042bd call  0x00004bd6 
+ 00024531  0x000042be branch  0x00005f0c 
+ 00024532  0x000042c1 copy  0x00000013 , 0x0000003f 
+ 00024533  0x000042c2 beq  0x00000014 , 0x00005fe7 
+ 00024534  0x000042c3 beq  0x00000001 , 0x00006084 
+ 00024535  0x000042c4 beq  0x00000015 , 0x00005ff6 
+ 00024536  0x000042c5 beq  0x00000002 , 0x00005ff6 
+ 00024537  0x000042c6 beq  0x00000005 , 0x00005ff5 
+ 00024538  0x000042c7 beq  0x00000010 , 0x00006048 
+ 00024539  0x000042c8 beq  0x00000012 , 0x00006068 
+ 00024540  0x000042c9 beq  0x00000006 , 0x00005ff3 
+ 00024541  0x000042ca beq  0x00000028 , 0x00005edb 
+ 00024542  0x000042cb beq  0x00000029 , 0x00005ede 
+ 00024543  0x000042cc beq  0x00000004 , 0x00005ff0 
+ 00024544  0x000042cd beq  0x00000013 , 0x00005ff0 
+ 00024545  0x000042ce beq  0x0000000a , 0x00005fee 
+ 00024546  0x000042cf beq  0x0000002e , 0x00003e32 
+ 00024547  0x000042d0 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00024548  0x000042d1 and_into  0x000000f0 , 0x0000003f 
+ 00024549  0x000042d2 beq  0x00000050 , 0x00006014 
+ 00024550  0x000042d3 rtn 
+ 00024551  0x000042d6 fetch  0x00000002 , 0x000042af 
+ 00024552  0x000042d7 set0  0x00000000 , 0x0000003f 
+ 00024553  0x000042d8 store  0x00000002 , 0x000042af 
+ 00024554  0x000042d9 setarg  0x00000000 
+ 00024555  0x000042da store  0x00000002 , 0x0000473f 
+ 00024556  0x000042db call  0x00005efa 
+ 00024557  0x000042dc branch  0x00006084 
+ 00024558  0x000042df call  0x000059d7 
+ 00024559  0x000042e0 branch  0x00003e45 
+ 00024560  0x000042e3 fetch  0x00000002 , 0x0000470b 
+ 00024561  0x000042e4 bbit1  0x0000000c , 0x00006074 
+ 00024562  0x000042e5 branch  0x00003e0a 
+ 00024563  0x000042e9 call  0x00005edf 
+ 00024564  0x000042ea rtn 
+ 00024565  0x000042ec rtn 
+ 00024566  0x000042ef set1  0x00000025 , 0x00000000 
+ 00024567  0x000042f0 bpatch  0x0000006f , 0x0000402d 
+ 00024568  0x000042f1 call  0x00006000 
+ 00024569  0x000042f2 fetch  0x00000002 , 0x000042ad 
+ 00024570  0x000042f3 bbit1  0x00000007 , 0x00006010 
+ 00024571  0x000042f4 bbit1  0x00000000 , 0x00003e0c 
+ 00024572  0x000042f5 bbit1  0x00000001 , 0x0000600a 
+ 00024573  0x000042f6 bbit1  0x00000002 , 0x0000600d 
+ 00024574  0x000042f7 bbit1  0x00000003 , 0x0000600d 
+ 00024575  0x000042f8 branch  0x00006074 
+ 00024576  0x000042fa setarg  0x00000000 
+ 00024577  0x000042fb store  0x00000008 , 0x0000475b 
+ 00024578  0x000042fc istore  0x00000008 , 0x00000005 
+ 00024579  0x000042fd jam  0x00000000 , 0x00004745 
+ 00024580  0x000042fe jam  0x00000000 , 0x00004735 
+ 00024581  0x000042ff jam  0x00000000 , 0x00004283 
+ 00024582  0x00004300 jam  0x00000000 , 0x000044b2 
+ 00024583  0x00004301 jam  0x00000000 , 0x0000474b 
+ 00024584  0x00004302 jam  0x00000000 , 0x00004736 
+ 00024585  0x00004303 rtn 
+ 00024586  0x00004306 bbit1  0x00000005 , 0x0000600d 
+ 00024587  0x00004307 bbit1  0x00000003 , 0x0000600d 
+ 00024588  0x00004308 branch  0x00006074 
+ 00024589  0x0000430a fetch  0x00000002 , 0x0000470b 
+ 00024590  0x0000430b bbit1  0x0000000c , 0x00006074 
+ 00024591  0x0000430c branch  0x00003e0a 
+ 00024592  0x0000430f call  0x000052a0 
+ 00024593  0x00004310 fetch  0x00000002 , 0x000042ad 
+ 00024594  0x00004311 bbit1  0x00000000 , 0x00003e0c 
+ 00024595  0x00004312 branch  0x00003e0a 
+ 00024596  0x00004315 set1  0x00000025 , 0x00000000 
+ 00024597  0x00004316 bpatch  0x00000070 , 0x0000402e 
+ 00024598  0x00004317 storet  0x00000001 , 0x0000024e 
+ 00024599  0x00004319 fetch  0x00000001 , 0x0000024e 
+ 00024600  0x0000431a rtn  0x00000034 
+ 00024601  0x0000431b increase  0xffffffff , 0x0000003f 
+ 00024602  0x0000431c store  0x00000001 , 0x0000024e 
+ 00024603  0x0000431d call  0x00006027 
+ 00024604  0x0000431e call  0x0000602d 
+ 00024605  0x0000431f call  0x00006034 
+ 00024606  0x00004320 call  0x00006042 
+ 00024607  0x00004321 call  0x00006021 
+ 00024608  0x00004322 branch  0x00006017 
+ 00024609  0x00004325 fetch  0x00000001 , 0x0000476c 
+ 00024610  0x00004326 rtn  0x00000034 
+ 00024611  0x00004327 pincrease  0xffffffff 
+ 00024612  0x00004328 store  0x00000001 , 0x0000476c 
+ 00024613  0x00004329 nrtn  0x00000034 
+ 00024614  0x0000432a branch  0x000060aa 
+ 00024615  0x0000432e fetch  0x00000001 , 0x00004709 
+ 00024616  0x0000432f rtn  0x00000034 
+ 00024617  0x00004330 increase  0xffffffff , 0x0000003f 
+ 00024618  0x00004331 store  0x00000001 , 0x00004709 
+ 00024619  0x00004332 nrtn  0x00000034 
+ 00024620  0x00004333 branch  0x00006068 
+ 00024621  0x00004336 fetch  0x00000002 , 0x0000473d 
+ 00024622  0x00004337 rtn  0x00000034 
+ 00024623  0x00004338 increase  0xffffffff , 0x0000003f 
+ 00024624  0x00004339 store  0x00000002 , 0x0000473d 
+ 00024625  0x0000433a nrtn  0x00000034 
+ 00024626  0x0000433b call  0x00006084 
+ 00024627  0x0000433c branch  0x00003e75 
+ 00024628  0x0000433f fetch  0x00000002 , 0x0000473f 
+ 00024629  0x00004340 rtn  0x00000034 
+ 00024630  0x00004341 increase  0xffffffff , 0x0000003f 
+ 00024631  0x00004342 store  0x00000002 , 0x0000473f 
+ 00024632  0x00004343 nrtn  0x00000034 
+ 00024633  0x00004344 call  0x00003e5f 
+ 00024634  0x00004345 branch  0x00003e75 
+ 00024635  0x00004348 fetch  0x00000002 , 0x00004743 
+ 00024636  0x00004349 rtn  0x00000034 
+ 00024637  0x0000434a increase  0xffffffff , 0x0000003f 
+ 00024638  0x0000434b store  0x00000002 , 0x00004743 
+ 00024639  0x0000434c nrtn  0x00000034 
+ 00024640  0x0000434d jam  0x00000000 , 0x00004745 
+ 00024641  0x0000434e rtn 
+ 00024642  0x00004351 fetch  0x00000002 , 0x00004741 
+ 00024643  0x00004352 rtn  0x00000034 
+ 00024644  0x00004353 increase  0xffffffff , 0x0000003f 
+ 00024645  0x00004354 store  0x00000002 , 0x00004741 
+ 00024646  0x00004355 nrtn  0x00000034 
+ 00024647  0x00004356 branch  0x0000608f 
+ 00024648  0x00004359 set1  0x00000025 , 0x00000000 
+ 00024649  0x0000435a bpatch  0x00000071 , 0x0000402e 
+ 00024650  0x0000435b jam  0x00000000 , 0x00004745 
+ 00024651  0x0000435c jam  0x00000001 , 0x00004736 
+ 00024652  0x0000435d setarg  0x00000000 
+ 00024653  0x0000435e store  0x00000002 , 0x0000473f 
+ 00024654  0x0000435f call  0x0000608f 
+ 00024655  0x00004360 fetch  0x00000001 , 0x00004132 
+ 00024656  0x00004361 isolate1  0x00000001 , 0x0000003f 
+ 00024657  0x00004362 call  0x00006066 , 0x00000001 
+ 00024658  0x00004363 fetch  0x00000001 , 0x00004132 
+ 00024659  0x00004364 isolate1  0x00000000 , 0x0000003f 
+ 00024660  0x00004365 call  0x00006062 , 0x00000001 
+ 00024661  0x00004366 call  0x00003e81 
+ 00024662  0x00004367 branch  0x00006074 
+ 00024663  0x0000436c fetch  0x00000006 , 0x00004273 
+ 00024664  0x0000436d branch  0x00003e54 , 0x00000034 
+ 00024665  0x0000436e branch  0x00003e49 
+ 00024666  0x00004371 fetch  0x00000006 , 0x00004273 
+ 00024667  0x00004372 branch  0x00006060 , 0x00000034 
+ 00024668  0x00004373 fetch  0x00000002 , 0x00004737 
+ 00024669  0x00004374 store  0x00000002 , 0x0000473f 
+ 00024670  0x00004375 call  0x00003e7f 
+ 00024671  0x00004376 branch  0x00003e5d 
+ 00024672  0x00004378 call  0x00003e6f 
+ 00024673  0x00004379 branch  0x00003e63 
+ 00024674  0x0000437c fetch  0x00000002 , 0x0000470b 
+ 00024675  0x0000437d isolate1  0x00000007 , 0x0000003f 
+ 00024676  0x0000437e call  0x00003e50 , 0x00000001 
+ 00024677  0x0000437f rtn 
+ 00024678  0x00004381 call  0x000052a0 
+ 00024679  0x00004382 rtn 
+ 00024680  0x00004385 jam  0x00000001 , 0x00004283 
+ 00024681  0x00004386 call  0x00003e7f 
+ 00024682  0x00004387 call  0x00003e7d 
+ 00024683  0x00004388 jam  0x00000001 , 0x0000474b 
+ 00024684  0x00004389 setarg  0x00000000 
+ 00024685  0x0000438a store  0x00000002 , 0x00004707 
+ 00024686  0x0000438b store  0x00000001 , 0x00004709 
+ 00024687  0x0000438c branch  0x00003e79 
+ 00024688  0x0000438f fetch  0x00000001 , 0x000042b5 
+ 00024689  0x00004390 beq  0x00000033 , 0x00006057 
+ 00024690  0x00004391 beq  0x00000034 , 0x0000605a 
+ 00024691  0x00004392 branch  0x00006074 
+ 00024692  0x00004395 set1  0x00000025 , 0x00000000 
+ 00024693  0x00004396 bpatch  0x00000072 , 0x0000402e 
+ 00024694  0x00004397 fetch  0x00000002 , 0x0000470b 
+ 00024695  0x00004398 bbit1  0x0000000b , 0x0000607a 
+ 00024696  0x00004399 random  0x0000003f 
+ 00024697  0x0000439a store  0x00000001 , 0x0000453f 
+ 00024698  0x0000439c call  0x00003e81 
+ 00024699  0x0000439d fetch  0x00000002 , 0x00004716 
+ 00024700  0x0000439e store  0x00000002 , 0x0000473d 
+ 00024701  0x0000439f fetch  0x00000001 , 0x00004132 
+ 00024702  0x000043a0 isolate1  0x00000001 , 0x0000003f 
+ 00024703  0x000043a1 call  0x00003e63 , 0x00000001 
+ 00024704  0x000043a2 fetch  0x00000001 , 0x00004132 
+ 00024705  0x000043a3 isolate1  0x00000000 , 0x0000003f 
+ 00024706  0x000043a4 call  0x00003e57 , 0x00000001 
+ 00024707  0x000043a5 branch  0x00003e6f 
+ 00024708  0x000043a8 set1  0x00000025 , 0x00000000 
+ 00024709  0x000043a9 bpatch  0x00000073 , 0x0000402e 
+ 00024710  0x000043aa setarg  0x00000000 
+ 00024711  0x000043ab store  0x00000002 , 0x0000473d 
+ 00024712  0x000043ac fetch  0x00000001 , 0x00004132 
+ 00024713  0x000043ad isolate1  0x00000001 , 0x0000003f 
+ 00024714  0x000043ae call  0x00003e61 , 0x00000001 
+ 00024715  0x000043af fetch  0x00000001 , 0x00004132 
+ 00024716  0x000043b0 isolate1  0x00000000 , 0x0000003f 
+ 00024717  0x000043b1 call  0x00003e59 , 0x00000001 
+ 00024718  0x000043b2 branch  0x00003e73 
+ 00024719  0x000043b5 set1  0x00000025 , 0x00000000 
+ 00024720  0x000043b6 bpatch  0x00000074 , 0x0000402e 
+ 00024721  0x000043b7 setarg  0x00000000 
+ 00024722  0x000043b8 store  0x00000002 , 0x00004741 
+ 00024723  0x000043b9 fetch  0x00000002 , 0x0000470b 
+ 00024724  0x000043ba bbit1  0x00000009 , 0x00003e6b 
+ 00024725  0x000043bb fetch  0x00000002 , 0x0000470b 
+ 00024726  0x000043bc bbit1  0x00000000 , 0x00003e52 
+ 00024727  0x000043bd rtn 
+ 00024728  0x000043c0 set1  0x00000025 , 0x00000000 
+ 00024729  0x000043c1 bpatch  0x00000075 , 0x0000402e 
+ 00024730  0x000043c2 arg  0x00000001 , 0x00000002 
+ 00024731  0x000043c3 arg  0x00004746 , 0x00000011 
+ 00024732  0x000043c4 arg  0x000000c6 , 0x00000012 
+ 00024733  0x000043c5 branch  0x0000626f 
+ 00024734  0x000043c8 set1  0x00000025 , 0x00000000 
+ 00024735  0x000043c9 bpatch  0x00000076 , 0x0000402e 
+ 00024736  0x000043ca arg  0x00000001 , 0x00000002 
+ 00024737  0x000043cb arg  0x00004746 , 0x00000011 
+ 00024738  0x000043cc arg  0x000000c6 , 0x00000012 
+ 00024739  0x000043cd branch  0x00006245 
+ 00024740  0x000043d2 set1  0x00000025 , 0x00000000 
+ 00024741  0x000043d3 bpatch  0x00000077 , 0x0000402e 
+ 00024742  0x000043d4 fetch  0x00000001 , 0x00004734 
+ 00024743  0x000043d5 call  0x000060d1 
+ 00024744  0x000043d6 beq  0x00000000 , 0x000060b0 
+ 00024745  0x000043d7 rtn 
+ 00024746  0x000043da fetcht  0x00000001 , 0x00004757 
+ 00024747  0x000043db call  0x000064fd 
+ 00024748  0x000043dc fetcht  0x00000001 , 0x00004758 
+ 00024749  0x000043dd call  0x000064fd 
+ 00024750  0x000043de fetcht  0x00000001 , 0x00004759 
+ 00024751  0x000043df branch  0x000064fd 
+ 00024752  0x000043e1 fetch  0x00000001 , 0x0000476b 
+ 00024753  0x000043e2 rtn  0x00000034 
+ 00024754  0x000043e3 jam  0x00000000 , 0x0000476b 
+ 00024755  0x000043e4 jam  0x0000003c , 0x0000476c 
+ 00024756  0x000043e5 call  0x000060aa 
+ 00024757  0x000043e6 fetch  0x00000001 , 0x0000476d 
+ 00024758  0x000043e7 beq  0x00000001 , 0x000060ba 
+ 00024759  0x000043e8 beq  0x00000002 , 0x000060bc 
+ 00024760  0x000043e9 beq  0x00000003 , 0x000060be 
+ 00024761  0x000043ea rtn 
+ 00024762  0x000043ec fetcht  0x00000001 , 0x00004757 
+ 00024763  0x000043ed branch  0x000064ff 
+ 00024764  0x000043ef fetcht  0x00000001 , 0x00004758 
+ 00024765  0x000043f0 branch  0x000064ff 
+ 00024766  0x000043f2 fetcht  0x00000001 , 0x00004759 
+ 00024767  0x000043f3 branch  0x000064ff 
+ 00024768  0x000043fe set1  0x00000025 , 0x00000000 
+ 00024769  0x000043ff bpatch  0x00000078 , 0x0000402f 
+ 00024770  0x00004400 hfetch  0x00000001 , 0x00008073 
+ 00024771  0x00004401 arg  0x00000006 , 0x00000002 
+ 00024772  0x00004402 ior  0x00000002 , 0x0000003f 
+ 00024773  0x00004403 hstore  0x00000001 , 0x00008073 
+ 00024774  0x00004404 hfetch  0x00000001 , 0x00008077 
+ 00024775  0x00004405 ior  0x00000002 , 0x0000003f 
+ 00024776  0x00004406 hstore  0x00000001 , 0x00008077 
+ 00024777  0x00004407 hjam  0x00000000 , 0x00008081 
+ 00024778  0x00004408 hfetch  0x00000001 , 0x00008077 
+ 00024779  0x00004409 set0  0x00000001 , 0x0000003f 
+ 00024780  0x0000440a set0  0x00000002 , 0x0000003f 
+ 00024781  0x0000440b hstore  0x00000001 , 0x00008077 
+ 00024782  0x0000440c nop  0x0000001e 
+ 00024783  0x0000440d hjam  0x00000001 , 0x00008081 
+ 00024784  0x0000440e rtn 
+ 00024785  0x00004413 copy  0x0000003f , 0x00000012 
+ 00024786  0x00004414 call  0x000060e7 
+ 00024787  0x00004415 nop  0x00000064 
+ 00024788  0x00004416 copy  0x00000012 , 0x0000003f 
+ 00024789  0x00004417 call  0x000060ec 
+ 00024790  0x00004418 copy  0x0000003f , 0x00000012 
+ 00024791  0x00004419 call  0x000060e9 
+ 00024792  0x0000441a nop  0x00000064 
+ 00024793  0x0000441b copy  0x00000012 , 0x0000003f 
+ 00024794  0x0000441c rtn 
+ 00024795  0x0000441f copy  0x0000003f , 0x00000012 
+ 00024796  0x00004420 call  0x000060e7 
+ 00024797  0x00004421 nop  0x00000064 
+ 00024798  0x00004422 copy  0x00000012 , 0x0000003f 
+ 00024799  0x00004423 call  0x000060eb 
+ 00024800  0x00004424 call  0x000060e9 
+ 00024801  0x00004425 nop  0x00000064 
+ 00024802  0x00004426 rtn 
+ 00024803  0x0000442a fetch  0x00000001 , 0x000042bb 
+ 00024804  0x0000442b rtneq  0x000000ff 
+ 00024805  0x0000442c fetcht  0x00000001 , 0x000042bb 
+ 00024806  0x0000442d branch  0x000064e8 
+ 00024807  0x00004431 fetcht  0x00000001 , 0x000042bb 
+ 00024808  0x00004432 branch  0x000064ff 
+ 00024809  0x00004436 fetcht  0x00000001 , 0x000042bb 
+ 00024810  0x00004437 branch  0x000064fd 
+ 00024811  0x0000443b branch  0x000061c1 
+ 00024812  0x00004440 branch  0x000061c9 
+ 00024813  0x00004448 nbranch  0x000060f1 , 0x00000028 
+ 00024814  0x00004449 hfetch  0x00000001 , 0x00008085 
+ 00024815  0x0000444a or_into  0x00000020 , 0x0000003f 
+ 00024816  0x0000444b hstore  0x00000001 , 0x00008085 
+ 00024817  0x0000444d copy  0x00000002 , 0x0000003e 
+ 00024818  0x0000444e branch  0x000060f4 , 0x00000005 
+ 00024819  0x0000444f copy  0x00000013 , 0x0000003d 
+ 00024820  0x00004451 isolate0  0x00000000 , 0x0000003e 
+ 00024821  0x00004452 branch  0x0000618e 
+ 00024822  0x00004456 force  0x00000004 , 0x00000002 
+ 00024823  0x00004458 arg  0x00000221 , 0x00000011 
+ 00024824  0x00004459 hfetch  0x00000001 , 0x00008085 
+ 00024825  0x0000445a and_into  0x000000df , 0x0000003f 
+ 00024826  0x0000445b hstore  0x00000001 , 0x00008085 
+ 00024827  0x0000445c call  0x000060f1 
+ 00024828  0x0000445d arg  0x000055aa , 0x00000011 
+ 00024829  0x0000445e fetch  0x00000002 , 0x00000221 
+ 00024830  0x0000445f ifetcht  0x00000002 , 0x00000006 
+ 00024831  0x00004460 isub  0x00000011 , 0x0000003e 
+ 00024832  0x00004461 rtn 
+ 00024833  0x00004464 arg  0x00000002 , 0x00000002 
+ 00024834  0x00004465 arg  0x00000227 , 0x00000011 
+ 00024835  0x00004466 call  0x000060f1 
+ 00024836  0x00004467 fetch  0x00000002 , 0x00000227 
+ 00024837  0x00004468 store  0x00000002 , 0x0000021a 
+ 00024838  0x00004469 call  0x00006108 , 0x00000028 
+ 00024839  0x0000446a rtn 
+ 00024840  0x0000446d arg  0x00000010 , 0x00000002 
+ 00024841  0x0000446e arg  0x00000229 , 0x00000011 
+ 00024842  0x0000446f hfetch  0x00000001 , 0x00008085 
+ 00024843  0x00004470 and_into  0x000000df , 0x0000003f 
+ 00024844  0x00004471 hstore  0x00000001 , 0x00008085 
+ 00024845  0x00004472 call  0x000060f1 
+ 00024846  0x00004473 arg  0x00000229 , 0x00000006 
+ 00024847  0x00004474 arg  0x00000010 , 0x00000039 
+ 00024848  0x00004475 call  0x000071a1 
+ 00024849  0x00004476 call  0x00007150 
+ 00024850  0x00004477 call  0x000071ba 
+ 00024851  0x00004478 branch  0x0000714a 
+ 00024852  0x0000447b disable  0x0000002d 
+ 00024853  0x0000447c call  0x000060f6 
+ 00024854  0x0000447d nrtn  0x00000005 
+ 00024855  0x0000447e enable  0x0000002d 
+ 00024856  0x0000447f hjam  0x00000080 , 0x00008023 
+ 00024857  0x00004480 hjam  0x00000000 , 0x00008022 
+ 00024858  0x00004481 hjam  0x00000000 , 0x00008024 
+ 00024859  0x00004482 arg  0x00008025 , 0x00000011 
+ 00024860  0x00004483 call  0x000060ed 
+ 00024861  0x00004484 hjam  0x00000000 , 0x00008023 
+ 00024862  0x00004485 call  0x000060f6 
+ 00024863  0x00004486 nrtn  0x00000005 
+ 00024864  0x00004487 force  0x00000000 , 0x0000003f 
+ 00024865  0x00004488 hstore  0x00000002 , 0x00008288 
+ 00024866  0x00004489 arg  0x0000828a , 0x00000011 
+ 00024867  0x0000448a call  0x000060ed 
+ 00024868  0x0000448c arg  0x00000006 , 0x00000002 
+ 00024869  0x0000448d call  0x000060f7 
+ 00024870  0x0000448e nrtn  0x00000005 
+ 00024871  0x0000448f ifetch  0x00000002 , 0x00000006 
+ 00024872  0x00004490 iforce  0x00000011 
+ 00024873  0x00004491 call  0x000060f1 
+ 00024874  0x00004492 branch  0x00006124 
+ 00024875  0x00004499 set1  0x00000025 , 0x00000000 
+ 00024876  0x0000449a bpatch  0x00000079 , 0x0000402f 
+ 00024877  0x0000449b call  0x00007f66 
+ 00024878  0x0000449c setarg  0x00001000 
+ 00024879  0x0000449d store  0x00000002 , 0x0000021a 
+ 00024880  0x0000449e arg  0x0000624c , 0x00000013 
+ 00024881  0x0000449f arg  0x00000002 , 0x00000039 
+ 00024882  0x000044a1 call  0x000060f6 
+ 00024883  0x000044a2 nrtn  0x00000005 
+ 00024884  0x000044a3 fetch  0x00000002 , 0x0000021a 
+ 00024885  0x000044a4 byteswap  0x0000003f , 0x0000003f 
+ 00024886  0x000044a5 iadd  0x00000002 , 0x0000003f 
+ 00024887  0x000044a6 byteswap  0x0000003f , 0x0000003f 
+ 00024888  0x000044a7 store  0x00000002 , 0x0000021a 
+ 00024889  0x000044a8 loop  0x00006132 
+ 00024890  0x000044a9 branch  0x00006124 
+ 00024891  0x000044ac hjam  0x00000025 , 0x00008050 
+ 00024892  0x000044ad hjam  0x00000005 , 0x00008280 
+ 00024893  0x000044ae call  0x00007f66 
+ 00024894  0x000044af set1  0x00000025 , 0x00000000 
+ 00024895  0x000044b0 bpatch  0x0000007a , 0x0000402f 
+ 00024896  0x000044b2 disable  0x00000028 
+ 00024897  0x000044b3 call  0x000062c4 
+ 00024898  0x000044b4 setarg  0x00000000 
+ 00024899  0x000044b5 arg  0x00000216 , 0x00000011 
+ 00024900  0x000044b6 arg  0x00000002 , 0x00000002 
+ 00024901  0x000044b7 call  0x0000630d 
+ 00024902  0x000044b8 fetch  0x00000002 , 0x00000216 
+ 00024903  0x000044b9 bbit0  0x00000007 , 0x00006150 
+ 00024904  0x000044ba setarg  0x000007f0 
+ 00024905  0x000044bb arg  0x00000229 , 0x00000011 
+ 00024906  0x000044bc arg  0x00000010 , 0x00000002 
+ 00024907  0x000044bd call  0x0000630d 
+ 00024908  0x000044be hjam  0x00000008 , 0x00008006 
+ 00024909  0x000044bf arg  0x00000229 , 0x00000006 
+ 00024910  0x000044c0 call  0x000071ad 
+ 00024911  0x000044c1 enable  0x00000028 
+ 00024912  0x000044c3 set1  0x00000025 , 0x00000000 
+ 00024913  0x000044c4 bpatch  0x0000007b , 0x0000402f 
+ 00024914  0x000044c5 fetch  0x00000002 , 0x00000216 
+ 00024915  0x000044c6 byteswap  0x0000003f , 0x0000003f 
+ 00024916  0x000044c7 arg  0x000007ff , 0x00000002 
+ 00024917  0x000044c8 iand  0x00000002 , 0x0000003f 
+ 00024918  0x000044c9 branch  0x0000615e , 0x00000005 
+ 00024919  0x000044ca call  0x000062c9 
+ 00024920  0x000044cb arg  0x00006312 , 0x00000013 
+ 00024921  0x000044cc call  0x00006108 , 0x00000028 
+ 00024922  0x000044cd call  0x00006114 
+ 00024923  0x000044ce fetch  0x00000001 , 0x00000215 
+ 00024924  0x000044cf compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024925  0x000044d0 nbranch  0x00006150 , 0x00000001 
+ 00024926  0x000044d2 set1  0x00000025 , 0x00000000 
+ 00024927  0x000044d3 bpatch  0x0000007c , 0x0000402f 
+ 00024928  0x000044d4 call  0x000062c7 
+ 00024929  0x000044d5 fetch  0x00000001 , 0x00000216 
+ 00024930  0x000044d6 bbit1  0x00000005 , 0x0000616d 
+ 00024931  0x000044d7 setarg  0x00000000 
+ 00024932  0x000044d8 store  0x00000003 , 0x00000219 
+ 00024933  0x000044d9 call  0x000061d9 
+ 00024934  0x000044da arg  0x000061fb , 0x00000013 
+ 00024935  0x000044db call  0x00006101 
+ 00024936  0x000044dc call  0x00006114 
+ 00024937  0x000044dd nbranch  0x0000616d , 0x0000002d 
+ 00024938  0x000044de fetch  0x00000001 , 0x00000215 
+ 00024939  0x000044df compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024940  0x000044e0 nbranch  0x0000615e , 0x00000001 
+ 00024941  0x000044e2 set1  0x00000025 , 0x00000000 
+ 00024942  0x000044e3 bpatch  0x0000007d , 0x0000402f 
+ 00024943  0x000044e4 call  0x00006236 
+ 00024944  0x000044e5 fetch  0x00000001 , 0x00000216 
+ 00024945  0x000044e6 bbit1  0x00000006 , 0x00006180 
+ 00024946  0x000044e7 call  0x00006188 
+ 00024947  0x000044e8 nbranch  0x00006178 , 0x0000002d 
+ 00024948  0x000044e9 fetch  0x00000001 , 0x00000215 
+ 00024949  0x000044ea compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024950  0x000044eb nbranch  0x0000616d , 0x00000001 
+ 00024951  0x000044ec branch  0x00006180 
+ 00024952  0x000044ee call  0x00006233 
+ 00024953  0x000044ef fetch  0x00000001 , 0x00000216 
+ 00024954  0x000044f0 bbit1  0x00000006 , 0x00006180 
+ 00024955  0x000044f1 call  0x00006188 
+ 00024956  0x000044f2 nbranch  0x00006180 , 0x0000002d 
+ 00024957  0x000044f3 fetch  0x00000001 , 0x00000215 
+ 00024958  0x000044f4 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024959  0x000044f5 nbranch  0x00006178 , 0x00000001 
+ 00024960  0x000044f7 force  0x00000004 , 0x00000038 
+ 00024961  0x000044f8 call  0x000071bb 
+ 00024962  0x000044f9 hjam  0x00000021 , 0x00008050 
+ 00024963  0x000044fa fetch  0x00000001 , 0x00000216 
+ 00024964  0x000044fb rtnbit0  0x00000004 
+ 00024965  0x000044fc call  0x00003ecd 
+ 00024966  0x000044fe call  0x00003ef4 
+ 00024967  0x000044ff branch  0x00006186 
+ 00024968  0x00004503 setarg  0x00000000 
+ 00024969  0x00004504 store  0x00000002 , 0x0000021a 
+ 00024970  0x00004505 arg  0x0000624c , 0x00000013 
+ 00024971  0x00004506 call  0x0000621d 
+ 00024972  0x00004507 call  0x00006101 
+ 00024973  0x00004508 branch  0x00006114 
+ 00024974  0x0000450e fetch  0x00000001 , 0x00000215 
+ 00024975  0x0000450f lshift  0x0000003f , 0x0000003f 
+ 00024976  0x00004510 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00024977  0x00004511 isolate0  0x0000000f , 0x00000011 
+ 00024978  0x00004512 rtn  0x00000001 
+ 00024979  0x00004513 store  0x00000001 , 0x00000215 
+ 00024980  0x00004514 rtn 
+ 00024981  0x00004518 hfetch  0x00000001 , 0x00008085 
+ 00024982  0x00004519 rtnbit0  0x00000005 
+ 00024983  0x0000451a branch  0x0000619b 
+ 00024984  0x0000451c hfetch  0x00000001 , 0x0000812c 
+ 00024985  0x0000451d qisolate1  0x0000003f 
+ 00024986  0x0000451e rtn  0x00000001 
+ 00024987  0x00004520 hfetch  0x00000001 , 0x00008108 
+ 00024988  0x00004521 bbit0  0x00000001 , 0x00006198 
+ 00024989  0x00004522 call  0x0000714a 
+ 00024990  0x00004523 branch  0x00006198 
+ 00024991  0x00004528 fetch  0x00000002 , 0x00004239 
+ 00024992  0x00004529 rtn  0x00000034 
+ 00024993  0x0000452a hjam  0x00000080 , 0x00008023 
+ 00024994  0x0000452b hjam  0x00000000 , 0x00008022 
+ 00024995  0x0000452c hjam  0x00000000 , 0x00008024 
+ 00024996  0x0000452d fetcht  0x00000002 , 0x0000423b 
+ 00024997  0x0000452e lshift2  0x00000002 , 0x00000039 
+ 00024998  0x0000452f iforce  0x00000006 
+ 00024999  0x00004531 ifetch  0x00000001 , 0x00000006 
+ 00025000  0x00004532 hstore  0x00000001 , 0x00008025 
+ 00025001  0x00004533 loop  0x000061a7 
+ 00025002  0x00004534 hjam  0x00000000 , 0x00008023 
+ 00025003  0x00004535 rtn 
+ 00025004  0x0000453b set1  0x00000025 , 0x00000000 
+ 00025005  0x0000453c bpatch  0x0000007e , 0x0000402f 
+ 00025006  0x0000453d fetch  0x00000001 , 0x000042b9 
+ 00025007  0x0000453e hstore  0x00000001 , 0x00008086 
+ 00025008  0x0000453f fetch  0x00000001 , 0x000042ba 
+ 00025009  0x00004540 hstore  0x00000001 , 0x00008087 
+ 00025010  0x00004541 setarg  0x00000218 
+ 00025011  0x00004542 hstore  0x00000002 , 0x0000808a 
+ 00025012  0x00004543 setarg  0x0000021d 
+ 00025013  0x00004544 hstore  0x00000002 , 0x0000808c 
+ 00025014  0x00004545 hfetch  0x00000001 , 0x00008081 
+ 00025015  0x00004546 set1  0x00000000 , 0x0000003f 
+ 00025016  0x00004547 set0  0x00000001 , 0x0000003f 
+ 00025017  0x00004548 hstore  0x00000001 , 0x00008081 
+ 00025018  0x00004549 rtn 
+ 00025019  0x0000454c hfetch  0x00000001 , 0x00008086 
+ 00025020  0x0000454d set1  0x00000007 , 0x0000003f 
+ 00025021  0x0000454e hstore  0x00000001 , 0x00008086 
+ 00025022  0x0000454f set0  0x00000007 , 0x0000003f 
+ 00025023  0x00004550 hstore  0x00000001 , 0x00008086 
+ 00025024  0x00004551 rtn 
+ 00025025  0x00004556 set1  0x00000007 , 0x0000003f 
+ 00025026  0x00004557 store  0x00000002 , 0x00000218 
+ 00025027  0x00004558 set1  0x00000025 , 0x00000000 
+ 00025028  0x00004559 bpatch  0x0000007f , 0x0000402f 
+ 00025029  0x0000455a hjam  0x00000002 , 0x00008088 
+ 00025030  0x0000455b hjam  0x00000000 , 0x0000808e 
+ 00025031  0x0000455c hjam  0x00000002 , 0x00008006 
+ 00025032  0x0000455d branch  0x000061d3 
+ 00025033  0x00004561 force  0x00000001 , 0x00000002 
+ 00025034  0x00004565 store  0x00000001 , 0x00000218 
+ 00025035  0x00004566 set1  0x00000025 , 0x00000000 
+ 00025036  0x00004567 bpatch  0x00000080 , 0x00004030 
+ 00025037  0x00004568 hjam  0x00000001 , 0x00008088 
+ 00025038  0x00004569 hstoret  0x00000002 , 0x0000808e 
+ 00025039  0x0000456a hjam  0x00000002 , 0x00008006 
+ 00025040  0x0000456b call  0x000061d3 
+ 00025041  0x0000456c fetch  0x00000001 , 0x0000021d 
+ 00025042  0x0000456d rtn 
+ 00025043  0x00004570 fetch  0x00000002 , 0x00004176 
+ 00025044  0x00004571 increase  0x00000001 , 0x0000003f 
+ 00025045  0x00004572 store  0x00000002 , 0x00004176 
+ 00025046  0x00004573 hfetch  0x00000001 , 0x0000812c 
+ 00025047  0x00004574 bbit0  0x00000003 , 0x000061d3 
+ 00025048  0x00004575 rtn 
+ 00025049  0x00004578 hjam  0x00000040 , 0x00008086 
+ 00025050  0x00004579 hjam  0x00000000 , 0x00008087 
+ 00025051  0x0000457a hfetch  0x00000001 , 0x00008081 
+ 00025052  0x0000457b set0  0x00000000 , 0x0000003f 
+ 00025053  0x0000457c set1  0x00000001 , 0x0000003f 
+ 00025054  0x0000457d hstore  0x00000001 , 0x00008081 
+ 00025055  0x0000457e setarg  0x00000000 
+ 00025056  0x0000457f store  0x00000004 , 0x00000218 
+ 00025057  0x00004580 rtn 
+ 00025058  0x00004583 setarg  0x00000000 
+ 00025059  0x00004584 hstore  0x00000002 , 0x0000808e 
+ 00025060  0x00004585 setarg  0x00000001 
+ 00025061  0x00004586 hstore  0x00000001 , 0x00008088 
+ 00025062  0x00004587 setarg  0x00000218 
+ 00025063  0x00004588 hstore  0x00000002 , 0x0000808a 
+ 00025064  0x00004589 jam  0x00000006 , 0x00000218 
+ 00025065  0x0000458a hjam  0x00000002 , 0x00008006 
+ 00025066  0x0000458b branch  0x000061d3 
+ 00025067  0x00004590 increase  0x00000004 , 0x00000002 
+ 00025068  0x00004591 hstoret  0x00000002 , 0x00008088 
+ 00025069  0x00004592 increase  0xfffffffc , 0x00000011 
+ 00025070  0x00004593 arg  0x00000002 , 0x00000002 
+ 00025071  0x00004594 istoret  0x00000001 , 0x00000011 
+ 00025072  0x00004595 rshift16  0x0000003f , 0x00000002 
+ 00025073  0x00004596 istoret  0x00000001 , 0x00000005 
+ 00025074  0x00004597 rshift8  0x0000003f , 0x00000002 
+ 00025075  0x00004598 istoret  0x00000001 , 0x00000005 
+ 00025076  0x00004599 istore  0x00000001 , 0x00000005 
+ 00025077  0x0000459a deposit  0x00000011 
+ 00025078  0x0000459b hstore  0x00000002 , 0x0000808a 
+ 00025079  0x0000459c setarg  0x00000000 
+ 00025080  0x0000459d hstore  0x00000002 , 0x0000808e 
+ 00025081  0x0000459e hjam  0x00000002 , 0x00008006 
+ 00025082  0x0000459f branch  0x000061d3 
+ 00025083  0x000045a4 hstoret  0x00000002 , 0x0000808e 
+ 00025084  0x000045a5 setarg  0x00000004 
+ 00025085  0x000045a6 hstore  0x00000002 , 0x00008088 
+ 00025086  0x000045a7 jam  0x00000003 , 0x00000218 
+ 00025087  0x000045a8 setarg  0x00000218 
+ 00025088  0x000045a9 hstore  0x00000002 , 0x0000808a 
+ 00025089  0x000045aa deposit  0x00000011 
+ 00025090  0x000045ab hstore  0x00000002 , 0x0000808c 
+ 00025091  0x000045ac hfetch  0x00000001 , 0x00008086 
+ 00025092  0x000045ad isolate0  0x0000000f , 0x00000011 
+ 00025093  0x000045ae setflag  0x00000001 , 0x00000006 , 0x0000003f 
+ 00025094  0x000045af hstore  0x00000001 , 0x00008086 
+ 00025095  0x000045b0 hjam  0x00000002 , 0x00008006 
+ 00025096  0x000045b2 hfetch  0x00000001 , 0x0000812c 
+ 00025097  0x000045b3 bbit1  0x00000007 , 0x00006208 
+ 00025098  0x000045b4 arg  0x00000003 , 0x00000007 
+ 00025099  0x000045b5 call  0x00006195 
+ 00025100  0x000045b6 call  0x000061d3 
+ 00025101  0x000045b7 isolate1  0x00000002 , 0x0000003f 
+ 00025102  0x000045b8 call  0x0000618e 
+ 00025103  0x000045b9 fetch  0x00000001 , 0x00000219 
+ 00025104  0x000045ba lshift16  0x0000003f , 0x00000012 
+ 00025105  0x000045bb fetch  0x00000001 , 0x0000021a 
+ 00025106  0x000045bc lshift8  0x0000003f , 0x0000003f 
+ 00025107  0x000045bd ior  0x00000012 , 0x00000012 
+ 00025108  0x000045be fetch  0x00000001 , 0x0000021b 
+ 00025109  0x000045bf ior  0x00000012 , 0x0000003f 
+ 00025110  0x000045c0 iadd  0x00000002 , 0x0000003f 
+ 00025111  0x000045c1 store  0x00000001 , 0x0000021b 
+ 00025112  0x000045c2 rshift8  0x0000003f , 0x0000003f 
+ 00025113  0x000045c3 store  0x00000001 , 0x0000021a 
+ 00025114  0x000045c4 rshift8  0x0000003f , 0x0000003f 
+ 00025115  0x000045c5 store  0x00000001 , 0x00000219 
+ 00025116  0x000045c6 rtn 
+ 00025117  0x000045d6 hjam  0x00000005 , 0x00008091 
+ 00025118  0x000045d7 hjam  0x00000007 , 0x00008092 
+ 00025119  0x000045d8 hjam  0x00000007 , 0x00008093 
+ 00025120  0x000045d9 hjam  0x00000007 , 0x00008094 
+ 00025121  0x000045da hjam  0x00000007 , 0x00008095 
+ 00025122  0x000045db hjam  0x00000005 , 0x00008096 
+ 00025123  0x000045dc rtn 
+ 00025124  0x000045e1 hfetch  0x00000001 , 0x0000812c 
+ 00025125  0x000045e2 bbit0  0x00000005 , 0x00006224 
+ 00025126  0x000045e3 rtn 
+ 00025127  0x000045ec hstore  0x00000002 , 0x00008098 
+ 00025128  0x000045ed deposit  0x00000011 
+ 00025129  0x000045ee hstore  0x00000002 , 0x0000809a 
+ 00025130  0x000045ef deposit  0x00000012 
+ 00025131  0x000045f0 hstore  0x00000002 , 0x0000809c 
+ 00025132  0x000045f1 deposit  0x00000002 
+ 00025133  0x000045f2 hstore  0x00000002 , 0x0000809e 
+ 00025134  0x000045f3 arg  0x00000001 , 0x00000002 
+ 00025135  0x000045f4 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00025136  0x000045f5 hstore  0x00000001 , 0x00008090 
+ 00025137  0x000045f6 hjam  0x00000004 , 0x00008006 
+ 00025138  0x000045f7 branch  0x00006224 
+ 00025139  0x000045fb set1  0x0000002a , 0x00000000 
+ 00025140  0x000045fc jam  0x00000008 , 0x000042b6 
+ 00025141  0x000045fd rtn 
+ 00025142  0x00004600 set0  0x0000002a , 0x00000000 
+ 00025143  0x00004601 jam  0x00000020 , 0x000042b6 
+ 00025144  0x00004602 rtn 
+ 00025145  0x00004606 fetch  0x00000001 , 0x000042a8 
+ 00025146  0x00004607 iadd  0x00000012 , 0x0000003f 
+ 00025147  0x00004608 store  0x00000001 , 0x0000021a 
+ 00025148  0x00004609 branch  0x00006240 
+ 00025149  0x0000460c fetch  0x00000002 , 0x0000021a 
+ 00025150  0x0000460d byteswap  0x0000003f , 0x0000003f 
+ 00025151  0x0000460e store  0x00000001 , 0x0000021a 
+ 00025152  0x00004614 setarg  0x00000003 
+ 00025153  0x00004615 hstore  0x00000002 , 0x00008098 
+ 00025154  0x00004616 jam  0x000000a0 , 0x00000219 
+ 00025155  0x00004617 jam  0x000000a1 , 0x0000021b 
+ 00025156  0x00004618 branch  0x00006254 
+ 00025157  0x0000461e set1  0x00000025 , 0x00000000 
+ 00025158  0x0000461f bpatch  0x00000081 , 0x00004030 
+ 00025159  0x00004620 bmark1  0x0000002a , 0x00006239 
+ 00025160  0x00004621 fetch  0x00000002 , 0x000042a8 
+ 00025161  0x00004622 iadd  0x00000012 , 0x0000003f 
+ 00025162  0x00004623 byteswap  0x0000003f , 0x0000003f 
+ 00025163  0x00004624 store  0x00000002 , 0x0000021a 
+ 00025164  0x00004628 set1  0x00000025 , 0x00000000 
+ 00025165  0x00004629 bpatch  0x00000082 , 0x00004030 
+ 00025166  0x0000462a bmark1  0x0000002a , 0x0000623d 
+ 00025167  0x0000462b nop  0x00007530 
+ 00025168  0x0000462c setarg  0x00000004 
+ 00025169  0x0000462d hstore  0x00000002 , 0x00008098 
+ 00025170  0x0000462e jam  0x000000a0 , 0x00000219 
+ 00025171  0x0000462f jam  0x000000a1 , 0x0000021c 
+ 00025172  0x00004631 setarg  0x00000219 
+ 00025173  0x00004632 hstore  0x00000002 , 0x0000809a 
+ 00025174  0x00004633 hstoret  0x00000002 , 0x0000809e 
+ 00025175  0x00004634 deposit  0x00000011 
+ 00025176  0x00004635 hstore  0x00000002 , 0x0000809c 
+ 00025177  0x00004636 setarg  0x00000002 
+ 00025178  0x00004637 isolate0  0x0000000f , 0x00000011 
+ 00025179  0x00004638 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00025180  0x00004639 hstore  0x00000001 , 0x00008090 
+ 00025181  0x0000463a hjam  0x00000004 , 0x00008006 
+ 00025182  0x0000463b arg  0x00000005 , 0x00000007 
+ 00025183  0x0000463c call  0x00006195 
+ 00025184  0x0000463d call  0x00006224 
+ 00025185  0x0000463e isolate1  0x00000004 , 0x0000003f 
+ 00025186  0x0000463f call  0x0000618e 
+ 00025187  0x00004640 bmark1  0x0000002a , 0x0000626a 
+ 00025188  0x00004641 fetch  0x00000002 , 0x0000021a 
+ 00025189  0x00004642 byteswap  0x0000003f , 0x0000003f 
+ 00025190  0x00004643 iadd  0x00000002 , 0x0000003f 
+ 00025191  0x00004644 byteswap  0x0000003f , 0x0000003f 
+ 00025192  0x00004645 store  0x00000002 , 0x0000021a 
+ 00025193  0x00004646 rtn 
+ 00025194  0x00004649 fetch  0x00000001 , 0x0000021a 
+ 00025195  0x0000464a iadd  0x00000002 , 0x0000003f 
+ 00025196  0x0000464b byteswap  0x0000003f , 0x0000003f 
+ 00025197  0x0000464c store  0x00000002 , 0x0000021a 
+ 00025198  0x0000464d rtn 
+ 00025199  0x00004655 fetch  0x00000002 , 0x000042a8 
+ 00025200  0x00004656 iadd  0x00000012 , 0x0000003f 
+ 00025201  0x0000465a store  0x00000002 , 0x000009be 
+ 00025202  0x0000465b set1  0x00000025 , 0x00000000 
+ 00025203  0x0000465c bpatch  0x00000083 , 0x00004030 
+ 00025204  0x0000465d storet  0x00000002 , 0x000009c6 
+ 00025205  0x0000465e copy  0x00000011 , 0x0000003f 
+ 00025206  0x0000465f store  0x00000002 , 0x000009dd 
+ 00025207  0x00004661 call  0x00006287 
+ 00025208  0x00004663 fetcht  0x00000002 , 0x000009d6 
+ 00025209  0x00004664 fetch  0x00000002 , 0x000009dd 
+ 00025210  0x00004665 copy  0x0000003f , 0x00000011 
+ 00025211  0x00004666 fetch  0x00000002 , 0x000009be 
+ 00025212  0x00004668 call  0x000062a8 
+ 00025213  0x0000466c fetch  0x00000002 , 0x000009d6 
+ 00025214  0x0000466d fetcht  0x00000002 , 0x000009dd 
+ 00025215  0x0000466e iadd  0x00000002 , 0x00000002 
+ 00025216  0x0000466f storet  0x00000002 , 0x000009dd 
+ 00025217  0x00004670 fetcht  0x00000002 , 0x000009be 
+ 00025218  0x00004671 iadd  0x00000002 , 0x00000002 
+ 00025219  0x00004672 storet  0x00000002 , 0x000009be 
+ 00025220  0x00004673 fetch  0x00000002 , 0x000009c6 
+ 00025221  0x00004674 nbranch  0x00006277 , 0x00000034 
+ 00025222  0x00004675 rtn 
+ 00025223  0x0000467e set1  0x00000025 , 0x00000000 
+ 00025224  0x0000467f bpatch  0x00000084 , 0x00004030 
+ 00025225  0x00004680 fetch  0x00000002 , 0x000042b6 
+ 00025226  0x00004681 increase  0xffffffff , 0x0000003f 
+ 00025227  0x00004682 fetcht  0x00000002 , 0x000009be 
+ 00025228  0x00004683 ior  0x00000002 , 0x0000003f 
+ 00025229  0x00004684 increase  0x00000001 , 0x0000003f 
+ 00025230  0x00004685 store  0x00000003 , 0x000009da 
+ 00025231  0x00004687 fetch  0x00000002 , 0x000009c6 
+ 00025232  0x00004688 iadd  0x00000002 , 0x0000003f 
+ 00025233  0x0000468a fetcht  0x00000003 , 0x000009da 
+ 00025234  0x0000468b isub  0x00000002 , 0x0000003f 
+ 00025235  0x0000468c nbranch  0x0000629a , 0x00000002 
+ 00025236  0x0000468d store  0x00000002 , 0x000009c6 
+ 00025237  0x0000468e fetch  0x00000003 , 0x000009da 
+ 00025238  0x0000468f fetcht  0x00000002 , 0x000009be 
+ 00025239  0x00004690 isub  0x00000002 , 0x0000003f 
+ 00025240  0x00004691 store  0x00000002 , 0x000009d6 
+ 00025241  0x00004692 rtn 
+ 00025242  0x00004694 fetch  0x00000002 , 0x000009c6 
+ 00025243  0x00004695 store  0x00000002 , 0x000009d6 
+ 00025244  0x00004696 setarg  0x00000000 
+ 00025245  0x00004697 store  0x00000002 , 0x000009c6 
+ 00025246  0x00004698 rtn 
+ 00025247  0x0000469b increase  0x00000002 , 0x00000002 
+ 00025248  0x0000469c hstoret  0x00000002 , 0x00008098 
+ 00025249  0x0000469d increase  0xfffffffe , 0x00000011 
+ 00025250  0x0000469e ifetcht  0x00000003 , 0x00000011 
+ 00025251  0x0000469f copy  0x00000002 , 0x00000012 
+ 00025252  0x000046a0 arg  0x000000a0 , 0x00000002 
+ 00025253  0x000046a1 istoret  0x00000001 , 0x00000011 
+ 00025254  0x000046a3 istore  0x00000001 , 0x00000005 
+ 00025255  0x000046a4 branch  0x000062b7 
+ 00025256  0x000046a8 copy  0x0000003f , 0x00000012 
+ 00025257  0x000046a9 set1  0x00000025 , 0x00000000 
+ 00025258  0x000046aa bpatch  0x00000085 , 0x00004030 
+ 00025259  0x000046ab nop  0x00007530 
+ 00025260  0x000046ac bmark1  0x0000002a , 0x0000629f 
+ 00025261  0x000046ad copy  0x00000012 , 0x0000003f 
+ 00025262  0x000046ae increase  0x00000003 , 0x00000002 
+ 00025263  0x000046af hstoret  0x00000002 , 0x00008098 
+ 00025264  0x000046b0 increase  0xfffffffd , 0x00000011 
+ 00025265  0x000046b1 ifetcht  0x00000003 , 0x00000011 
+ 00025266  0x000046b2 copy  0x00000002 , 0x00000012 
+ 00025267  0x000046b3 arg  0x000000a0 , 0x00000002 
+ 00025268  0x000046b4 istoret  0x00000001 , 0x00000011 
+ 00025269  0x000046b5 byteswap  0x0000003f , 0x0000003f 
+ 00025270  0x000046b6 istore  0x00000002 , 0x00000005 
+ 00025271  0x000046b8 deposit  0x00000011 
+ 00025272  0x000046b9 hstore  0x00000002 , 0x0000809a 
+ 00025273  0x000046ba setarg  0x00000000 
+ 00025274  0x000046bb hstore  0x00000002 , 0x0000809e 
+ 00025275  0x000046bc hjam  0x00000001 , 0x00008090 
+ 00025276  0x000046bd hjam  0x00000004 , 0x00008006 
+ 00025277  0x000046be call  0x00006224 
+ 00025278  0x000046bf copy  0x00000012 , 0x0000003f 
+ 00025279  0x000046c0 istore  0x00000003 , 0x00000011 
+ 00025280  0x000046c1 nop  0x00002710 
+ 00025281  0x000046c2 nop  0x00002710 
+ 00025282  0x000046c3 nop  0x00002710 
+ 00025283  0x000046c4 rtn 
+ 00025284  0x000046c9 hjam  0x00000070 , 0x00008973 
+ 00025285  0x000046ca nop  0x00000bb8 
+ 00025286  0x000046cb rtn 
+ 00025287  0x000046ce hjam  0x00000030 , 0x00008973 
+ 00025288  0x000046cf rtn 
+ 00025289  0x000046d2 lshift3  0x0000003f , 0x0000003f 
+ 00025290  0x000046d3 hstore  0x00000002 , 0x00008045 
+ 00025291  0x000046d4 hjam  0x00000000 , 0x0000804b 
+ 00025292  0x000046d5 rtn 
+ 00025293  0x000046d9 call  0x000062c9 
+ 00025294  0x000046da call  0x000062fa 
+ 00025295  0x000046dc ifetcht  0x00000001 , 0x00000011 
+ 00025296  0x000046dd increase  0x00000001 , 0x00000011 
+ 00025297  0x000046de force  0x00000000 , 0x00000007 
+ 00025298  0x000046e0 qisolate0  0x00000002 
+ 00025299  0x000046e1 branch  0x000062f1 , 0x00000001 
+ 00025300  0x000046e2 hfetch  0x00000001 , 0x00008046 
+ 00025301  0x000046e3 set1  0x00000006 , 0x0000003f 
+ 00025302  0x000046e4 set1  0x00000007 , 0x0000003f 
+ 00025303  0x000046e5 hstore  0x00000001 , 0x00008046 
+ 00025304  0x000046e6 hjam  0x00000002 , 0x00008047 
+ 00025305  0x000046e7 hjam  0x00000082 , 0x00008047 
+ 00025306  0x000046e8 set0  0x00000007 , 0x0000003f 
+ 00025307  0x000046e9 hstore  0x00000001 , 0x00008046 
+ 00025308  0x000046ea hjam  0x0000008a , 0x00008047 
+ 00025309  0x000046eb nop  0x0000000b 
+ 00025310  0x000046ec hjam  0x000000ca , 0x00008047 
+ 00025311  0x000046ed nop  0x00000021 
+ 00025312  0x000046ee hjam  0x0000004a , 0x00008047 
+ 00025313  0x000046ef nop  0x0000002c 
+ 00025314  0x000046f0 hjam  0x000000ca , 0x00008047 
+ 00025315  0x000046f1 nop  0x00000016 
+ 00025316  0x000046f2 hjam  0x0000008a , 0x00008047 
+ 00025317  0x000046f3 nop  0x00000021 
+ 00025318  0x000046f4 hjam  0x00000082 , 0x00008047 
+ 00025319  0x000046f5 nop  0x00000001 
+ 00025320  0x000046f6 hjam  0x00000092 , 0x00008047 
+ 00025321  0x000046f7 nop  0x0000000a 
+ 00025322  0x000046f8 hjam  0x000000b2 , 0x00008047 
+ 00025323  0x000046f9 hfetch  0x00000001 , 0x00008007 
+ 00025324  0x000046fa hjam  0x00000092 , 0x00008047 
+ 00025325  0x000046fb nop  0x00000001 
+ 00025326  0x000046fc hjam  0x00000082 , 0x00008047 
+ 00025327  0x000046fd qisolate0  0x0000003f 
+ 00025328  0x000046fe branch  0x000062d2 , 0x00000001 
+ 00025329  0x00004700 hfetch  0x00000002 , 0x00008045 
+ 00025330  0x00004701 increase  0x00000001 , 0x0000003f 
+ 00025331  0x00004702 hstore  0x00000002 , 0x00008045 
+ 00025332  0x00004703 increase  0x00000001 , 0x00000007 
+ 00025333  0x00004704 compare  0x00000008 , 0x00000007 , 0x0000000f 
+ 00025334  0x00004705 nbranch  0x000062d2 , 0x00000001 
+ 00025335  0x00004706 loop  0x000062cf 
+ 00025336  0x00004707 hjam  0x00000083 , 0x00008047 
+ 00025337  0x00004708 rtn 
+ 00025338  0x0000470b hjam  0x00000082 , 0x00008047 
+ 00025339  0x0000470c nop  0x0000000c 
+ 00025340  0x0000470d hjam  0x00000080 , 0x00008047 
+ 00025341  0x0000470e hjam  0x00000082 , 0x00008047 
+ 00025342  0x0000470f nop  0x00000096 
+ 00025343  0x00004710 rtn 
+ 00025344  0x00004714 call  0x000062fa 
+ 00025345  0x00004715 hjam  0x000000a2 , 0x00008047 
+ 00025346  0x00004716 deposit  0x00000011 
+ 00025347  0x00004717 hstore  0x00000002 , 0x00008048 
+ 00025348  0x00004718 set1  0x0000000b , 0x00000002 
+ 00025349  0x00004719 isolate0  0x0000000f , 0x0000003f 
+ 00025350  0x0000471a setflag  0x00000001 , 0x0000000f , 0x00000002 
+ 00025351  0x0000471b hstoret  0x00000002 , 0x0000804a 
+ 00025352  0x0000471c hjam  0x00000001 , 0x00008006 
+ 00025353  0x0000471d rtn 
+ 00025354  0x00004720 hfetch  0x00000001 , 0x0000812c 
+ 00025355  0x00004721 bbit0  0x00000001 , 0x0000630a 
+ 00025356  0x00004722 rtn 
+ 00025357  0x00004726 call  0x000062c9 
+ 00025358  0x00004727 call  0x00006300 
+ 00025359  0x00004728 call  0x0000630a 
+ 00025360  0x00004729 hjam  0x00000083 , 0x00008047 
+ 00025361  0x0000472a rtn 
+ 00025362  0x00004730 hfetch  0x00000002 , 0x00008124 
+ 00025363  0x00004731 hstore  0x00000002 , 0x00008045 
+ 00025364  0x00004732 call  0x00006300 
+ 00025365  0x00004733 arg  0x00000001 , 0x00000007 
+ 00025366  0x00004734 call  0x00006195 
+ 00025367  0x00004735 call  0x0000630a 
+ 00025368  0x00004736 isolate1  0x00000000 , 0x0000003f 
+ 00025369  0x00004737 call  0x0000618e 
+ 00025370  0x00004738 hjam  0x00000083 , 0x00008047 
+ 00025371  0x00004739 rtn 
+ 00025372  0x0000473d hfetch  0x00000002 , 0x0000805e 
+ 00025373  0x0000473e iforce  0x0000000a 
+ 00025374  0x0000473f rtn 
+ 00025375  0x00004742 deposit  0x0000000a 
+ 00025376  0x00004743 hstore  0x00000002 , 0x0000805e 
+ 00025377  0x00004744 rtn 
+ 00025378  0x00004747 deposit  0x00000003 
+ 00025379  0x00004748 hstore  0x00000002 , 0x00008058 
+ 00025380  0x00004749 rtn 
+ 00025381  0x0000474c fetch  0x00000002 , 0x000042d3 
+ 00025382  0x0000474d hstore  0x00000002 , 0x00008052 
+ 00025383  0x0000474e rtn 
+ 00025384  0x00004751 deposit  0x00000039 
+ 00025385  0x00004752 rtn  0x00000034 
+ 00025386  0x00004754 increase  0xfffffff8 , 0x00000039 
+ 00025387  0x00004755 call  0x00006335 , 0x00000002 
+ 00025388  0x00004756 rtn  0x00000005 
+ 00025389  0x00004757 branch  0x0000632a , 0x00000002 
+ 00025390  0x00004758 increase  0x00000008 , 0x00000039 
+ 00025391  0x0000475a increase  0xfffffffc , 0x00000039 
+ 00025392  0x0000475b call  0x00006338 , 0x00000002 
+ 00025393  0x0000475c rtn  0x00000005 
+ 00025394  0x0000475d branch  0x0000632f , 0x00000002 
+ 00025395  0x0000475e increase  0x00000004 , 0x00000039 
+ 00025396  0x0000475f branch  0x0000633b 
+ 00025397  0x00004762 ifetch  0x00000008 , 0x00000006 
+ 00025398  0x00004763 istore  0x00000008 , 0x0000000a 
+ 00025399  0x00004764 rtn 
+ 00025400  0x00004767 ifetch  0x00000004 , 0x00000006 
+ 00025401  0x00004768 istore  0x00000004 , 0x0000000a 
+ 00025402  0x00004769 rtn 
+ 00025403  0x0000476c deposit  0x00000039 
+ 00025404  0x0000476d rtn  0x00000034 
+ 00025405  0x0000476f ifetch  0x00000001 , 0x00000006 
+ 00025406  0x00004770 istore  0x00000001 , 0x0000000a 
+ 00025407  0x00004771 loop  0x0000633d 
+ 00025408  0x00004772 rtn 
+ 00025409  0x00004775 deposit  0x00000039 
+ 00025410  0x00004776 rtn  0x00000034 
+ 00025411  0x00004778 increase  0xfffffff8 , 0x00000039 
+ 00025412  0x00004779 call  0x0000634e , 0x00000002 
+ 00025413  0x0000477a rtn  0x00000005 
+ 00025414  0x0000477b branch  0x00006343 , 0x00000002 
+ 00025415  0x0000477c increase  0x00000008 , 0x00000039 
+ 00025416  0x0000477e increase  0xfffffffc , 0x00000039 
+ 00025417  0x0000477f call  0x00006351 , 0x00000002 
+ 00025418  0x00004780 rtn  0x00000005 
+ 00025419  0x00004781 branch  0x00006348 , 0x00000002 
+ 00025420  0x00004782 increase  0x00000004 , 0x00000039 
+ 00025421  0x00004783 branch  0x00006354 
+ 00025422  0x00004786 ifetch  0x00000008 , 0x00000003 
+ 00025423  0x00004787 istore  0x00000008 , 0x00000005 
+ 00025424  0x00004788 rtn 
+ 00025425  0x0000478b ifetch  0x00000004 , 0x00000003 
+ 00025426  0x0000478c istore  0x00000004 , 0x00000005 
+ 00025427  0x0000478d rtn 
+ 00025428  0x00004791 deposit  0x00000039 
+ 00025429  0x00004792 rtn  0x00000034 
+ 00025430  0x00004794 ifetch  0x00000001 , 0x00000003 
+ 00025431  0x00004795 istore  0x00000001 , 0x00000005 
+ 00025432  0x00004796 loop  0x00006356 
+ 00025433  0x00004797 rtn 
+ 00025434  0x0000479d set1  0x00000025 , 0x00000000 
+ 00025435  0x0000479e bpatch  0x00000086 , 0x00004030 
+ 00025436  0x0000479f fetch  0x00000001 , 0x000042be 
+ 00025437  0x000047a0 rtn  0x00000034 
+ 00025438  0x000047a1 call  0x000063f3 
+ 00025439  0x000047a2 call  0x000063f9 , 0x00000005 
+ 00025440  0x000047a3 call  0x0000638e 
+ 00025441  0x000047a5 fetch  0x00000001 , 0x000042be 
+ 00025442  0x000047a6 icopy  0x00000013 
+ 00025443  0x000047a7 fetcht  0x00000002 , 0x000042bc 
+ 00025444  0x000047a8 storet  0x00000002 , 0x000001af 
+ 00025445  0x000047aa copy  0x00000013 , 0x0000003f 
+ 00025446  0x000047ab branch  0x00005d30 , 0x00000034 
+ 00025447  0x000047ac increase  0xffffffff , 0x00000013 
+ 00025448  0x000047ad copy  0x00000002 , 0x00000011 
+ 00025449  0x000047ae ifetch  0x00000001 , 0x00000011 
+ 00025450  0x000047af fetcht  0x00000001 , 0x000001a7 
+ 00025451  0x000047b0 isub  0x00000002 , 0x0000003e 
+ 00025452  0x000047b1 call  0x00006375 , 0x00000005 
+ 00025453  0x000047b2 branch  0x00006371 , 0x00000002 
+ 00025454  0x000047b3 ifetch  0x00000001 , 0x00000011 
+ 00025455  0x000047b4 increase  0x00000001 , 0x0000003f 
+ 00025456  0x000047b5 istore  0x00000001 , 0x00000011 
+ 00025457  0x000047b7 fetcht  0x00000002 , 0x000001af 
+ 00025458  0x000047b8 increase  0x00000022 , 0x00000002 
+ 00025459  0x000047b9 storet  0x00000002 , 0x000001af 
+ 00025460  0x000047ba branch  0x00006365 
+ 00025461  0x000047bd setarg  0x00000000 
+ 00025462  0x000047be istore  0x00000001 , 0x00000011 
+ 00025463  0x000047bf fetch  0x00000001 , 0x000001a8 
+ 00025464  0x000047c0 istore  0x00000001 , 0x00000005 
+ 00025465  0x000047c1 bne  0x00000033 , 0x00006383 
+ 00025466  0x000047c2 arg  0x00004261 , 0x00000012 
+ 00025467  0x000047c4 ifetch  0x00000006 , 0x00000006 
+ 00025468  0x000047c5 istore  0x00000008 , 0x00000005 
+ 00025469  0x000047c6 setarg  0x00000000 
+ 00025470  0x000047c7 istore  0x00000008 , 0x00000005 
+ 00025471  0x000047c8 copy  0x00000012 , 0x00000006 
+ 00025472  0x000047ca call  0x00007e87 
+ 00025473  0x000047cb force  0x00000001 , 0x0000003e 
+ 00025474  0x000047cc rtn 
+ 00025475  0x000047cf beq  0x00000036 , 0x00006387 
+ 00025476  0x000047d0 beq  0x00000037 , 0x0000638b 
+ 00025477  0x000047d1 arg  0x000044a2 , 0x00000012 
+ 00025478  0x000047d2 branch  0x0000637b 
+ 00025479  0x000047d5 arg  0x0000457b , 0x00000006 
+ 00025480  0x000047d6 call  0x00007e87 
+ 00025481  0x000047d8 arg  0x000044a2 , 0x00000006 
+ 00025482  0x000047d9 branch  0x00006380 
+ 00025483  0x000047dc arg  0x00004573 , 0x00000006 
+ 00025484  0x000047dd call  0x00007e87 
+ 00025485  0x000047de branch  0x00006389 
+ 00025486  0x000047e2 call  0x000031d4 
+ 00025487  0x000047e3 fetch  0x00000001 , 0x000042be 
+ 00025488  0x000047e4 rtn  0x00000034 
+ 00025489  0x000047e5 fetch  0x00000002 , 0x0000470b 
+ 00025490  0x000047e6 bbit1  0x00000000 , 0x000063a3 
+ 00025491  0x000047e9 fetch  0x00000001 , 0x0000452b 
+ 00025492  0x000047ea beq  0x00000000 , 0x0000639c 
+ 00025493  0x000047eb fetch  0x00000001 , 0x00000377 
+ 00025494  0x000047ec compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00025495  0x000047ed branch  0x0000639c , 0x00000001 
+ 00025496  0x000047ee compare  0x00000040 , 0x0000003f , 0x000000c0 
+ 00025497  0x000047ef branch  0x000063a1 , 0x00000001 
+ 00025498  0x000047f0 compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00025499  0x000047f1 branch  0x0000639f , 0x00000001 
+ 00025500  0x000047f3 jam  0x00000035 , 0x000001a8 
+ 00025501  0x000047f4 fetch  0x00000006 , 0x00000372 
+ 00025502  0x000047f5 branch  0x000063a7 
+ 00025503  0x000047f8 jam  0x00000037 , 0x000001a8 
+ 00025504  0x000047f9 branch  0x000063a7 
+ 00025505  0x000047fd jam  0x00000036 , 0x000001a8 
+ 00025506  0x000047fe branch  0x000063a7 
+ 00025507  0x00004802 set1  0x00000025 , 0x00000000 
+ 00025508  0x00004803 bpatch  0x00000087 , 0x00004030 
+ 00025509  0x00004804 jam  0x00000033 , 0x000001a8 
+ 00025510  0x00004805 fetch  0x00000006 , 0x00000040 
+ 00025511  0x00004807 store  0x00000006 , 0x000001a9 
+ 00025512  0x00004808 fetch  0x00000002 , 0x000042bc 
+ 00025513  0x00004809 ifetcht  0x00000001 , 0x0000003f 
+ 00025514  0x0000480a pincrease  0x00000001 
+ 00025515  0x0000480b store  0x00000002 , 0x000001af 
+ 00025516  0x0000480c storet  0x00000001 , 0x000001a7 
+ 00025517  0x0000480d fetch  0x00000001 , 0x000042be 
+ 00025518  0x0000480e icopy  0x00000013 
+ 00025519  0x00004810 fetch  0x00000002 , 0x000001af 
+ 00025520  0x00004811 copy  0x0000003f , 0x00000011 
+ 00025521  0x00004812 call  0x000063bf 
+ 00025522  0x00004813 rtn  0x00000028 
+ 00025523  0x00004814 fetcht  0x00000002 , 0x000001af 
+ 00025524  0x00004815 increase  0x00000022 , 0x00000002 
+ 00025525  0x00004816 storet  0x00000002 , 0x000001af 
+ 00025526  0x00004817 increase  0xffffffff , 0x00000002 
+ 00025527  0x00004818 ifetch  0x00000001 , 0x00000002 
+ 00025528  0x00004819 store  0x00000001 , 0x000001a7 
+ 00025529  0x0000481a increase  0xffffffff , 0x00000013 
+ 00025530  0x0000481b nbranch  0x000063af , 0x00000005 
+ 00025531  0x0000481c fetch  0x00000001 , 0x000042be 
+ 00025532  0x0000481d pincrease  0xffffffff 
+ 00025533  0x0000481e store  0x00000001 , 0x000001a7 
+ 00025534  0x0000481f rtn 
+ 00025535  0x00004821 fetch  0x00000001 , 0x000001a8 
+ 00025536  0x00004822 bne  0x00000033 , 0x000063c6 
+ 00025537  0x00004824 arg  0x000001a8 , 0x00000012 
+ 00025538  0x00004825 arg  0x00000007 , 0x00000039 
+ 00025539  0x00004826 call  0x00007f55 
+ 00025540  0x00004827 branch  0x000064c0 , 0x00000005 
+ 00025541  0x00004828 rtn 
+ 00025542  0x0000482b beq  0x00000036 , 0x000063c9 
+ 00025543  0x0000482c beq  0x00000037 , 0x000063e4 
+ 00025544  0x0000482d branch  0x000063c1 
+ 00025545  0x00004830 ifetcht  0x00000001 , 0x00000011 
+ 00025546  0x00004831 isub  0x00000002 , 0x0000003e 
+ 00025547  0x00004832 nrtn  0x00000005 
+ 00025548  0x00004833 arg  0x000009e1 , 0x00000005 
+ 00025549  0x00004834 arg  0x00000010 , 0x00000039 
+ 00025550  0x00004835 call  0x00007e9f 
+ 00025551  0x00004836 fetch  0x00000003 , 0x00000375 
+ 00025552  0x00004837 store  0x00000003 , 0x000009e1 
+ 00025553  0x00004838 call  0x000063db 
+ 00025554  0x00004839 fetch  0x00000002 , 0x000009fe 
+ 00025555  0x0000483a byteswap  0x0000003f , 0x0000003f 
+ 00025556  0x0000483b lshift8  0x0000003f , 0x00000002 
+ 00025557  0x0000483c ifetch  0x00000001 , 0x00000006 
+ 00025558  0x0000483d iadd  0x00000002 , 0x0000003f 
+ 00025559  0x0000483e fetcht  0x00000003 , 0x00000372 
+ 00025560  0x0000483f isub  0x00000002 , 0x0000003e 
+ 00025561  0x00004840 branch  0x000064c0 , 0x00000005 
+ 00025562  0x00004841 rtn 
+ 00025563  0x00004845 arg  0x000009e1 , 0x00000006 
+ 00025564  0x00004846 call  0x000071af 
+ 00025565  0x00004848 ifetch  0x00000001 , 0x00000011 
+ 00025566  0x00004849 call  0x000071b0 
+ 00025567  0x0000484a force  0x00000038 , 0x00000036 
+ 00025568  0x0000484b force  0x00000000 , 0x00000036 
+ 00025569  0x0000484c call  0x00007145 
+ 00025570  0x0000484d arg  0x000009f1 , 0x00000005 
+ 00025571  0x0000484e branch  0x000071c0 
+ 00025572  0x00004851 ifetcht  0x00000001 , 0x00000011 
+ 00025573  0x00004852 isub  0x00000002 , 0x0000003e 
+ 00025574  0x00004853 nrtn  0x00000005 
+ 00025575  0x00004854 copy  0x00000006 , 0x00000011 
+ 00025576  0x00004855 add  0x00000006 , 0x00000008 , 0x00000013 
+ 00025577  0x00004856 arg  0x00004573 , 0x00000012 
+ 00025578  0x00004857 arg  0x00000008 , 0x00000039 
+ 00025579  0x00004858 call  0x00007f55 
+ 00025580  0x00004859 branch  0x000064c0 , 0x00000005 
+ 00025581  0x0000485a copy  0x00000013 , 0x00000011 
+ 00025582  0x0000485b arg  0x0000457b , 0x00000012 
+ 00025583  0x0000485c arg  0x00000008 , 0x00000039 
+ 00025584  0x0000485d call  0x00007f55 
+ 00025585  0x0000485e branch  0x000064c0 , 0x00000005 
+ 00025586  0x0000485f rtn 
+ 00025587  0x00004862 fetch  0x00000002 , 0x000042bc 
+ 00025588  0x00004863 ifetcht  0x00000001 , 0x0000003f 
+ 00025589  0x00004864 pincrease  0x00000022 
+ 00025590  0x00004865 ifetch  0x00000001 , 0x0000003f 
+ 00025591  0x00004866 isub  0x00000002 , 0x0000003e 
+ 00025592  0x00004867 rtn 
+ 00025593  0x0000486a fetch  0x00000001 , 0x000042be 
+ 00025594  0x0000486b icopy  0x00000039 
+ 00025595  0x0000486c fetcht  0x00000002 , 0x000042bc 
+ 00025596  0x0000486d setarg  0x00000000 
+ 00025597  0x0000486f istore  0x00000001 , 0x00000002 
+ 00025598  0x00004870 increase  0x00000022 , 0x00000002 
+ 00025599  0x00004871 pincrease  0x00000001 
+ 00025600  0x00004872 loop  0x000063fd 
+ 00025601  0x00004873 rtn 
+ 00025602  0x00004876 set1  0x00000025 , 0x00000000 
+ 00025603  0x00004877 bpatch  0x00000088 , 0x00004031 
+ 00025604  0x00004878 call  0x0000638e 
+ 00025605  0x00004879 nbranch  0x0000640a , 0x00000028 
+ 00025606  0x0000487a add  0x00000011 , 0x0000000a , 0x00000006 
+ 00025607  0x0000487c arg  0x00004261 , 0x00000005 
+ 00025608  0x0000487d call  0x00007e87 
+ 00025609  0x0000487e branch  0x000064b1 
+ 00025610  0x00004880 jam  0x00000000 , 0x0000425d 
+ 00025611  0x00004881 rtn 
+ 00025612  0x00004884 fetch  0x00000009 , 0x00004571 
+ 00025613  0x00004885 branch  0x0000642c , 0x00000034 
+ 00025614  0x00004886 call  0x0000638e 
+ 00025615  0x00004887 nbranch  0x0000642c , 0x00000028 
+ 00025616  0x00004888 fetch  0x00000002 , 0x000001af 
+ 00025617  0x00004889 add  0x0000003f , 0x00000001 , 0x00000006 
+ 00025618  0x0000488a arg  0x0000457b , 0x00000005 
+ 00025619  0x0000488b call  0x00007e87 
+ 00025620  0x0000488c arg  0x000044a2 , 0x00000005 
+ 00025621  0x0000488d call  0x00007e87 
+ 00025622  0x0000488e jam  0x00000001 , 0x000044b2 
+ 00025623  0x0000488f rtn 
+ 00025624  0x00004892 fetch  0x00000002 , 0x00004571 
+ 00025625  0x00004893 nbranch  0x0000641c , 0x00000034 
+ 00025626  0x00004894 fetch  0x00000006 , 0x00004573 
+ 00025627  0x00004895 branch  0x0000642b , 0x00000034 
+ 00025628  0x00004897 jam  0x00000003 , 0x000048c6 
+ 00025629  0x00004898 setarg  0x00112233 
+ 00025630  0x00004899 store  0x00000003 , 0x000044a2 
+ 00025631  0x0000489a setarg  0x00445566 
+ 00025632  0x0000489b istore  0x00000003 , 0x00000005 
+ 00025633  0x0000489c setarg  0x00778899 
+ 00025634  0x0000489d istore  0x00000003 , 0x00000005 
+ 00025635  0x0000489e setarg  0x00001122 
+ 00025636  0x0000489f istore  0x00000003 , 0x00000005 
+ 00025637  0x000048a0 setarg  0x00334455 
+ 00025638  0x000048a1 istore  0x00000003 , 0x00000005 
+ 00025639  0x000048a2 setarg  0x00000066 
+ 00025640  0x000048a3 istore  0x00000001 , 0x00000005 
+ 00025641  0x000048a4 jam  0x00000001 , 0x000044b2 
+ 00025642  0x000048a5 rtn 
+ 00025643  0x000048a8 jam  0x00000001 , 0x000048c6 
+ 00025644  0x000048aa jam  0x00000000 , 0x000044b2 
+ 00025645  0x000048ab rtn 
+ 00025646  0x000048af fetch  0x00000006 , 0x00000372 
+ 00025647  0x000048b0 store  0x00000006 , 0x000001a9 
+ 00025648  0x000048b1 jam  0x00000034 , 0x000001a8 
+ 00025649  0x000048b2 branch  0x00006435 
+ 00025650  0x000048b4 fetch  0x00000006 , 0x00000040 
+ 00025651  0x000048b5 store  0x00000006 , 0x000001a9 
+ 00025652  0x000048b6 jam  0x00000033 , 0x000001a8 
+ 00025653  0x000048b8 set1  0x00000025 , 0x00000000 
+ 00025654  0x000048b9 bpatch  0x00000089 , 0x00004031 
+ 00025655  0x000048ba fetch  0x00000001 , 0x00004132 
+ 00025656  0x000048bb beq  0x0000000a , 0x0000635a 
+ 00025657  0x000048bc call  0x00006463 
+ 00025658  0x000048bd call  0x0000645f 
+ 00025659  0x000048be fetch  0x00000001 , 0x000001a8 
+ 00025660  0x000048bf beq  0x00000034 , 0x0000643f 
+ 00025661  0x000048c0 beq  0x00000033 , 0x0000648b 
+ 00025662  0x000048c1 rtn 
+ 00025663  0x000048c3 call  0x00006489 
+ 00025664  0x000048c4 branch  0x00006472 
+ 00025665  0x000048c8 set1  0x00000025 , 0x00000000 
+ 00025666  0x000048c9 bpatch  0x0000008a , 0x00004031 
+ 00025667  0x000048ca call  0x0000644d 
+ 00025668  0x000048cb fetch  0x00000001 , 0x000001a7 
+ 00025669  0x000048cc rtneq  0x000000ff 
+ 00025670  0x000048cd fetch  0x00000006 , 0x000001a9 
+ 00025671  0x000048ce store  0x00000006 , 0x00004273 
+ 00025672  0x000048cf fetch  0x00000001 , 0x000001a8 
+ 00025673  0x000048d0 store  0x00000001 , 0x000042b5 
+ 00025674  0x000048d1 beq  0x00000033 , 0x00006451 
+ 00025675  0x000048d2 beq  0x00000034 , 0x00006453 
+ 00025676  0x000048d3 rtn 
+ 00025677  0x000048d5 call  0x0000645b 
+ 00025678  0x000048d6 fetch  0x00000001 , 0x000001a7 
+ 00025679  0x000048d7 rtneq  0x000000ff 
+ 00025680  0x000048d8 branch  0x0000647a 
+ 00025681  0x000048da call  0x00006492 
+ 00025682  0x000048db branch  0x000064b1 
+ 00025683  0x000048dd call  0x00006490 
+ 00025684  0x000048de branch  0x000064b7 
+ 00025685  0x000048e3 set1  0x00000025 , 0x00000000 
+ 00025686  0x000048e4 bpatch  0x0000008c , 0x00004031 
+ 00025687  0x000048e5 setarg  0x00000000 
+ 00025688  0x000048e6 store  0x00000003 , 0x00000040 
+ 00025689  0x000048e7 istore  0x00000003 , 0x00000005 
+ 00025690  0x000048e8 branch  0x00006463 
+ 00025691  0x000048eb arg  0x00000001 , 0x00000002 
+ 00025692  0x000048ec arg  0x000001a7 , 0x00000011 
+ 00025693  0x000048ed arg  0x0000001c , 0x00000012 
+ 00025694  0x000048ee branch  0x00006245 
+ 00025695  0x000048f1 arg  0x00000001 , 0x00000002 
+ 00025696  0x000048f2 arg  0x000001a7 , 0x00000011 
+ 00025697  0x000048f3 arg  0x0000001c , 0x00000012 
+ 00025698  0x000048f4 branch  0x0000626f 
+ 00025699  0x000048f8 set1  0x00000025 , 0x00000000 
+ 00025700  0x000048f9 bpatch  0x0000008d , 0x00004031 
+ 00025701  0x000048fa call  0x00006497 
+ 00025702  0x000048fb disable  0x00000028 
+ 00025703  0x000048fc call  0x0000649b 
+ 00025704  0x000048fd rtn  0x00000028 
+ 00025705  0x000048ff jam  0x00000000 , 0x000001a7 
+ 00025706  0x00004900 fetch  0x00000006 , 0x000001a9 
+ 00025707  0x00004901 store  0x00000006 , 0x00000184 
+ 00025708  0x00004902 fetch  0x00000001 , 0x000001a8 
+ 00025709  0x00004903 store  0x00000001 , 0x00000183 
+ 00025710  0x00004904 arg  0x0000001c , 0x00000002 
+ 00025711  0x00004905 arg  0x00000183 , 0x00000011 
+ 00025712  0x00004906 arg  0x00000000 , 0x00000012 
+ 00025713  0x00004907 branch  0x0000626f 
+ 00025714  0x0000490b arg  0x00000006 , 0x00000002 
+ 00025715  0x0000490c arg  0x0000453e , 0x00000011 
+ 00025716  0x0000490d arg  0x0000001d , 0x00000012 
+ 00025717  0x0000490e branch  0x0000626f 
+ 00025718  0x00004911 arg  0x00000006 , 0x00000002 
+ 00025719  0x00004912 arg  0x0000453e , 0x00000011 
+ 00025720  0x00004913 arg  0x0000001d , 0x00000012 
+ 00025721  0x00004914 branch  0x00006245 
+ 00025722  0x00004918 set1  0x00000025 , 0x00000000 
+ 00025723  0x00004919 bpatch  0x0000008e , 0x00004031 
+ 00025724  0x0000491a arg  0x00000007 , 0x00000002 
+ 00025725  0x0000491b arg  0x000001a8 , 0x00000011 
+ 00025726  0x0000491c arg  0x00000000 , 0x00000012 
+ 00025727  0x0000491d fetch  0x00000001 , 0x000001a7 
+ 00025728  0x0000491e mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00025729  0x0000491f iadd  0x00000012 , 0x00000012 
+ 00025730  0x00004920 branch  0x00006245 
+ 00025731  0x00004923 arg  0x00000010 , 0x00000002 
+ 00025732  0x00004924 arg  0x00000023 , 0x00000012 
+ 00025733  0x00004925 fetch  0x00000001 , 0x000001a7 
+ 00025734  0x00004926 lshift4  0x0000003f , 0x0000003f 
+ 00025735  0x00004927 iadd  0x00000012 , 0x00000012 
+ 00025736  0x00004928 rtn 
+ 00025737  0x0000492b arg  0x000044a2 , 0x00000011 
+ 00025738  0x0000492c branch  0x0000648c 
+ 00025739  0x0000492e arg  0x00004261 , 0x00000011 
+ 00025740  0x00004930 set1  0x00000025 , 0x00000000 
+ 00025741  0x00004931 bpatch  0x0000008f , 0x00004031 
+ 00025742  0x00004932 call  0x00006483 
+ 00025743  0x00004933 branch  0x0000626f 
+ 00025744  0x00004936 arg  0x000044a2 , 0x00000011 
+ 00025745  0x00004937 branch  0x00006493 
+ 00025746  0x00004939 arg  0x00004261 , 0x00000011 
+ 00025747  0x0000493b set1  0x00000025 , 0x00000000 
+ 00025748  0x0000493c bpatch  0x00000090 , 0x00004032 
+ 00025749  0x0000493d call  0x00006483 
+ 00025750  0x0000493e branch  0x00006245 
+ 00025751  0x00004943 arg  0x0000001c , 0x00000002 
+ 00025752  0x00004944 arg  0x0000018a , 0x00000011 
+ 00025753  0x00004945 arg  0x00000000 , 0x00000012 
+ 00025754  0x00004946 branch  0x00006245 
+ 00025755  0x0000494a set1  0x00000025 , 0x00000000 
+ 00025756  0x0000494b bpatch  0x00000091 , 0x00004032 
+ 00025757  0x0000494c setarg  0x0000018a 
+ 00025758  0x0000494d store  0x00000002 , 0x000001af 
+ 00025759  0x0000494e jam  0x00000000 , 0x000001a7 
+ 00025760  0x0000494f arg  0x00000004 , 0x00000039 
+ 00025761  0x00004951 copy  0x00000039 , 0x0000003f 
+ 00025762  0x00004952 store  0x00000001 , 0x000009be 
+ 00025763  0x00004953 fetch  0x00000002 , 0x000001af 
+ 00025764  0x00004954 copy  0x0000003f , 0x00000011 
+ 00025765  0x00004955 call  0x000064bb 
+ 00025766  0x00004956 rtn  0x00000028 
+ 00025767  0x00004957 fetch  0x00000002 , 0x000001af 
+ 00025768  0x00004958 increase  0x00000007 , 0x0000003f 
+ 00025769  0x00004959 store  0x00000002 , 0x000001af 
+ 00025770  0x0000495a fetch  0x00000001 , 0x000001a7 
+ 00025771  0x0000495b increase  0x00000001 , 0x0000003f 
+ 00025772  0x0000495c store  0x00000001 , 0x000001a7 
+ 00025773  0x0000495d fetch  0x00000001 , 0x000009be 
+ 00025774  0x0000495e copy  0x0000003f , 0x00000039 
+ 00025775  0x0000495f loop  0x000064a1 
+ 00025776  0x00004960 rtn 
+ 00025777  0x00004964 fetch  0x00000008 , 0x00004261 
+ 00025778  0x00004965 fetcht  0x00000008 , 0x00004269 
+ 00025779  0x00004966 ior  0x00000002 , 0x0000003f 
+ 00025780  0x00004967 rtn  0x00000034 
+ 00025781  0x00004968 jam  0x00000001 , 0x0000425d 
+ 00025782  0x00004969 rtn 
+ 00025783  0x0000496b fetch  0x00000006 , 0x00004273 
+ 00025784  0x0000496c rtn  0x00000034 
+ 00025785  0x0000496d jam  0x00000001 , 0x000044b2 
+ 00025786  0x0000496e rtn 
+ 00025787  0x00004971 arg  0x000001a8 , 0x00000012 
+ 00025788  0x00004972 arg  0x00000007 , 0x00000039 
+ 00025789  0x00004973 call  0x00007f55 
+ 00025790  0x00004974 branch  0x000064c0 , 0x00000005 
+ 00025791  0x00004975 rtn 
+ 00025792  0x00004977 enable  0x00000028 
+ 00025793  0x00004978 rtn 
+ 00025794  0x00004980 set1  0x00000025 , 0x00000000 
+ 00025795  0x00004981 bpatch  0x00000092 , 0x00004032 
+ 00025796  0x00004982 set1  0x00000007 , 0x00000002 
+ 00025797  0x00004983 call  0x000064f5 
+ 00025798  0x00004984 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00025799  0x0000498a set1  0x00000025 , 0x00000000 
+ 00025800  0x0000498b bpatch  0x00000093 , 0x00004032 
+ 00025801  0x0000498c isolate0  0x00000007 , 0x00000002 
+ 00025802  0x0000498d and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025803  0x0000498e fetch  0x00000004 , 0x000000a0 
+ 00025804  0x0000498f qsetflag  0x00000001 , 0x0000003f 
+ 00025805  0x00004990 store  0x00000004 , 0x000000a0 
+ 00025806  0x00004991 fetch  0x00000004 , 0x000000a4 
+ 00025807  0x00004992 nqsetflag  0x00000001 , 0x0000003f 
+ 00025808  0x00004993 store  0x00000004 , 0x000000a4 
+ 00025809  0x00004994 rtn 
+ 00025810  0x00004998 set1  0x00000025 , 0x00000000 
+ 00025811  0x00004999 bpatch  0x00000094 , 0x00004032 
+ 00025812  0x0000499a isolate0  0x00000007 , 0x00000002 
+ 00025813  0x0000499b and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025814  0x0000499c fetch  0x00000004 , 0x000000a0 
+ 00025815  0x0000499d qset0  0x0000003f 
+ 00025816  0x0000499e store  0x00000004 , 0x000000a0 
+ 00025817  0x0000499f fetch  0x00000004 , 0x000000a4 
+ 00025818  0x000049a0 qset0  0x0000003f 
+ 00025819  0x000049a1 store  0x00000004 , 0x000000a4 
+ 00025820  0x000049a2 rtn 
+ 00025821  0x000049a6 call  0x000064d2 
+ 00025822  0x000049a7 branch  0x000064e0 
+ 00025823  0x000049ab ncall  0x000064c7 , 0x0000002b 
+ 00025824  0x000049ae arg  0x0000807c , 0x00000005 
+ 00025825  0x000049af call  0x00006504 
+ 00025826  0x000049b0 setflip  0x00000007 , 0x00000002 
+ 00025827  0x000049b1 arg  0x00008078 , 0x00000005 
+ 00025828  0x000049b2 call  0x00006504 
+ 00025829  0x000049b3 set0  0x00000007 , 0x00000002 
+ 00025830  0x000049b4 arg  0x00008070 , 0x00000005 
+ 00025831  0x000049b5 branch  0x00006504 
+ 00025832  0x000049b9 setflip  0x00000007 , 0x00000002 
+ 00025833  0x000049ba call  0x00006503 
+ 00025834  0x000049bc set1  0x00000007 , 0x00000002 
+ 00025835  0x000049bd arg  0x00008070 , 0x00000005 
+ 00025836  0x000049be branch  0x00006504 
+ 00025837  0x000049c1 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00025838  0x000049c2 rshift3  0x00000002 , 0x0000003f 
+ 00025839  0x000049c3 and_into  0x00000003 , 0x0000003f 
+ 00025840  0x000049c4 iadd  0x00000005 , 0x00000005 
+ 00025841  0x000049c5 ifetch  0x00000001 , 0x00000005 
+ 00025842  0x000049c6 rtn 
+ 00025843  0x000049c9 arg  0x00008074 , 0x00000005 
+ 00025844  0x000049ca branch  0x000064f6 
+ 00025845  0x000049cf arg  0x0000811c , 0x00000005 
+ 00025846  0x000049d1 call  0x000064ed 
+ 00025847  0x000049d2 isolate1  0x00000007 , 0x00000002 
+ 00025848  0x000049d3 branch  0x000064fb , 0x00000001 
+ 00025849  0x000049d4 qisolate0  0x0000003f 
+ 00025850  0x000049d5 rtn 
+ 00025851  0x000049d7 qisolate1  0x0000003f 
+ 00025852  0x000049d8 rtn 
+ 00025853  0x000049db isolate1  0x00000007 , 0x0000003e 
+ 00025854  0x000049dc branch  0x00006500 
+ 00025855  0x000049df isolate0  0x00000007 , 0x0000003e 
+ 00025856  0x000049e3 setarg  0x00000000 
+ 00025857  0x000049e4 nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00025858  0x000049e5 ixor  0x00000002 , 0x00000002 
+ 00025859  0x000049e9 arg  0x00008074 , 0x00000005 
+ 00025860  0x000049ed call  0x000064ed 
+ 00025861  0x000049ee isolate1  0x00000007 , 0x00000002 
+ 00025862  0x000049ef qsetflag  0x00000001 , 0x0000003f 
+ 00025863  0x000049f0 istore  0x00000001 , 0x00000005 
+ 00025864  0x000049f1 rtn 
+ 00025865  0x000049f4 arg  0xffffffff , 0x00000011 
+ 00025866  0x000049f5 hfetch  0x00000001 , 0x00008081 
+ 00025867  0x000049f6 isolate1  0x00000001 , 0x0000003f 
+ 00025868  0x000049f7 call  0x0000654d , 0x00000001 
+ 00025869  0x000049f9 and  0x0000003f , 0x00000003 , 0x00000012 
+ 00025870  0x000049fa sub  0x00000012 , 0x00000001 , 0x0000003e 
+ 00025871  0x000049fb call  0x0000654f , 0x00000005 
+ 00025872  0x000049fd isolate1  0x00000002 , 0x0000003f 
+ 00025873  0x000049fe call  0x00006549 , 0x00000001 
+ 00025874  0x00004a00 isolate1  0x00000003 , 0x0000003f 
+ 00025875  0x00004a01 call  0x0000654b , 0x00000001 
+ 00025876  0x00004a03 isolate1  0x00000005 , 0x0000003f 
+ 00025877  0x00004a04 call  0x00006551 , 0x00000001 
+ 00025878  0x00004a06 isolate1  0x00000006 , 0x0000003f 
+ 00025879  0x00004a07 arg  0x00000004 , 0x00000007 
+ 00025880  0x00004a08 call  0x00006555 , 0x00000001 
+ 00025881  0x00004a09 nsetflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00025882  0x00004a0b isolate1  0x00000007 , 0x0000003f 
+ 00025883  0x00004a0c arg  0x00000005 , 0x00000007 
+ 00025884  0x00004a0d call  0x00006555 , 0x00000001 
+ 00025885  0x00004a0f hfetch  0x00000001 , 0x00008082 
+ 00025886  0x00004a10 isolate1  0x00000000 , 0x0000003f 
+ 00025887  0x00004a11 arg  0x00000003 , 0x00000007 
+ 00025888  0x00004a12 call  0x00006555 , 0x00000001 
+ 00025889  0x00004a14 hfetcht  0x00000001 , 0x00008080 
+ 00025890  0x00004a15 isolate1  0x00000000 , 0x00000002 
+ 00025891  0x00004a16 arg  0x00000005 , 0x00000007 
+ 00025892  0x00004a17 call  0x00006555 , 0x00000001 
+ 00025893  0x00004a19 ior  0x00000002 , 0x0000003f 
+ 00025894  0x00004a1b isolate1  0x00000001 , 0x0000003f 
+ 00025895  0x00004a1c arg  0x00000006 , 0x00000007 
+ 00025896  0x00004a1d call  0x00006555 , 0x00000001 
+ 00025897  0x00004a1f isolate1  0x00000002 , 0x0000003f 
+ 00025898  0x00004a20 arg  0x00000007 , 0x00000007 
+ 00025899  0x00004a21 call  0x00006555 , 0x00000001 
+ 00025900  0x00004a23 isolate1  0x00000003 , 0x0000003f 
+ 00025901  0x00004a24 arg  0x00000012 , 0x00000007 
+ 00025902  0x00004a25 call  0x00006555 , 0x00000001 
+ 00025903  0x00004a27 isolate1  0x00000004 , 0x0000003f 
+ 00025904  0x00004a28 arg  0x00000013 , 0x00000007 
+ 00025905  0x00004a29 call  0x00006555 , 0x00000001 
+ 00025906  0x00004a2b isolate1  0x00000005 , 0x0000003f 
+ 00025907  0x00004a2c arg  0x00000014 , 0x00000007 
+ 00025908  0x00004a2d call  0x00006555 , 0x00000001 
+ 00025909  0x00004a2f isolate1  0x00000006 , 0x0000003f 
+ 00025910  0x00004a30 arg  0x00000015 , 0x00000007 
+ 00025911  0x00004a31 call  0x00006555 , 0x00000001 
+ 00025912  0x00004a33 isolate1  0x00000007 , 0x0000003f 
+ 00025913  0x00004a34 arg  0x00000016 , 0x00000007 
+ 00025914  0x00004a35 call  0x00006555 , 0x00000001 
+ 00025915  0x00004a37 hfetch  0x00000001 , 0x00008062 
+ 00025916  0x00004a38 isolate1  0x00000004 , 0x0000003f 
+ 00025917  0x00004a39 call  0x00006553 , 0x00000001 
+ 00025918  0x00004a3a set1  0x00000025 , 0x00000000 
+ 00025919  0x00004a3b bpatch  0x00000095 , 0x00004032 
+ 00025920  0x00004a3d hfetch  0x00000004 , 0x00008078 
+ 00025921  0x00004a3e hfetcht  0x00000004 , 0x0000807c 
+ 00025922  0x00004a3f ior  0x00000002 , 0x0000003f 
+ 00025923  0x00004a40 invert  0x0000003f , 0x0000003f 
+ 00025924  0x00004a41 iand  0x00000011 , 0x0000003f 
+ 00025925  0x00004a43 hfetcht  0x00000004 , 0x0000807c 
+ 00025926  0x00004a44 ior  0x00000002 , 0x0000003f 
+ 00025927  0x00004a45 hstore  0x00000004 , 0x0000807c 
+ 00025928  0x00004a46 rtn 
+ 00025929  0x00004a48 arg  0x00000006 , 0x00000007 
+ 00025930  0x00004a49 branch  0x00006559 
+ 00025931  0x00004a4b arg  0x00000009 , 0x00000007 
+ 00025932  0x00004a4c branch  0x00006557 
+ 00025933  0x00004a4e arg  0x00000017 , 0x00000007 
+ 00025934  0x00004a4f branch  0x00006557 
+ 00025935  0x00004a51 arg  0x00000019 , 0x00000007 
+ 00025936  0x00004a52 branch  0x00006559 
+ 00025937  0x00004a54 arg  0x0000001b , 0x00000007 
+ 00025938  0x00004a55 branch  0x00006559 
+ 00025939  0x00004a57 arg  0x00000002 , 0x00000007 
+ 00025940  0x00004a58 branch  0x00006559 
+ 00025941  0x00004a5a arg  0x00000001 , 0x00000039 
+ 00025942  0x00004a5b branch  0x0000655a 
+ 00025943  0x00004a5d arg  0x00000004 , 0x00000039 
+ 00025944  0x00004a5e branch  0x0000655a 
+ 00025945  0x00004a60 arg  0x00000002 , 0x00000039 
+ 00025946  0x00004a62 qset0  0x00000011 
+ 00025947  0x00004a63 increase  0x00000001 , 0x00000007 
+ 00025948  0x00004a64 loop  0x0000655a 
+ 00025949  0x00004a65 rtn 
+ 00025950  0x00004a6e call  0x0000656a 
+ 00025951  0x00004a6f arg  0x00000006 , 0x00000002 
+ 00025952  0x00004a70 branch  0x000064e8 
+ 00025953  0x00004a73 call  0x0000655e 
+ 00025954  0x00004a74 arg  0x00000006 , 0x00000002 
+ 00025955  0x00004a75 branch  0x000064fd 
+ 00025956  0x00004a7a call  0x0000656a 
+ 00025957  0x00004a7b hfetch  0x00000001 , 0x00008078 
+ 00025958  0x00004a7c set1  0x00000007 , 0x0000003f 
+ 00025959  0x00004a7d hstore  0x00000001 , 0x00008078 
+ 00025960  0x00004a7e arg  0x00000007 , 0x00000002 
+ 00025961  0x00004a7f branch  0x000064df 
+ 00025962  0x00004a82 hfetch  0x00000001 , 0x00008081 
+ 00025963  0x00004a83 and_into  0x000000fb , 0x0000003f 
+ 00025964  0x00004a84 hstore  0x00000001 , 0x00008081 
+ 00025965  0x00004a85 rtn 
+ 00025966  0x00004a88 hfetch  0x00000001 , 0x00008081 
+ 00025967  0x00004a89 isolate1  0x00000002 , 0x0000003f 
+ 00025968  0x00004a8a rtn 
+ 00025969  0x00004a8d call  0x000062c4 
+ 00025970  0x00004a8e setarg  0x000007e0 
+ 00025971  0x00004a8f arg  0x000041f0 , 0x00000011 
+ 00025972  0x00004a90 arg  0x00000002 , 0x00000002 
+ 00025973  0x00004a91 call  0x0000630d 
+ 00025974  0x00004a92 branch  0x000062c7 
+ 00025975  0x00004a97 set1  0x00000025 , 0x00000000 
+ 00025976  0x00004a98 bpatch  0x00000096 , 0x00004032 
+ 00025977  0x00004a9a call  0x000062c4 
+ 00025978  0x00004a9b setarg  0x000007e2 
+ 00025979  0x00004a9c arg  0x000042bf , 0x00000011 
+ 00025980  0x00004a9d arg  0x0000000e , 0x00000002 
+ 00025981  0x00004a9e call  0x0000630d 
+ 00025982  0x00004a9f call  0x000062c7 
+ 00025983  0x00004aa1 fetch  0x00000001 , 0x000042cf 
+ 00025984  0x00004aa2 bbit1  0x00000000 , 0x00006584 
+ 00025985  0x00004aa3 bbit1  0x00000001 , 0x00006598 
+ 00025986  0x00004aa4 bbit1  0x00000002 , 0x000065ac 
+ 00025987  0x00004aa5 rtn 
+ 00025988  0x00004aa8 fetcht  0x00000002 , 0x000042cb 
+ 00025989  0x00004aa9 setarg  0x0000aa55 
+ 00025990  0x00004aaa isub  0x00000002 , 0x0000003e 
+ 00025991  0x00004aab branch  0x0000658d , 0x00000005 
+ 00025992  0x00004aac setarg  0x00004dfa 
+ 00025993  0x00004aad store  0x00000002 , 0x000042c9 
+ 00025994  0x00004aae setarg  0x00004894 
+ 00025995  0x00004aaf store  0x00000002 , 0x000042c3 
+ 00025996  0x00004ab0 branch  0x00006595 
+ 00025997  0x00004ab3 fetch  0x00000002 , 0x000042c9 
+ 00025998  0x00004ab4 nbranch  0x00006591 , 0x00000034 
+ 00025999  0x00004ab5 setarg  0x00004dfa 
+ 00026000  0x00004ab6 store  0x00000002 , 0x000042c9 
+ 00026001  0x00004ab8 fetch  0x00000002 , 0x000042c3 
+ 00026002  0x00004ab9 nbranch  0x00006595 , 0x00000034 
+ 00026003  0x00004aba setarg  0x00004894 
+ 00026004  0x00004abb store  0x00000002 , 0x000042c3 
+ 00026005  0x00004abd setarg  0x00000064 
+ 00026006  0x00004abe store  0x00000002 , 0x000042cd 
+ 00026007  0x00004abf rtn 
+ 00026008  0x00004ac2 fetcht  0x00000002 , 0x000042cb 
+ 00026009  0x00004ac3 setarg  0x0000aa55 
+ 00026010  0x00004ac4 isub  0x00000002 , 0x0000003e 
+ 00026011  0x00004ac5 branch  0x000065a1 , 0x00000005 
+ 00026012  0x00004ac6 setarg  0x00005932 
+ 00026013  0x00004ac7 store  0x00000002 , 0x000042c7 
+ 00026014  0x00004ac8 setarg  0x00004323 
+ 00026015  0x00004ac9 store  0x00000002 , 0x000042c1 
+ 00026016  0x00004aca branch  0x000065a9 
+ 00026017  0x00004acd fetch  0x00000002 , 0x000042c7 
+ 00026018  0x00004ace nbranch  0x000065a5 , 0x00000034 
+ 00026019  0x00004acf setarg  0x00005932 
+ 00026020  0x00004ad0 store  0x00000002 , 0x000042c7 
+ 00026021  0x00004ad2 fetch  0x00000002 , 0x000042c1 
+ 00026022  0x00004ad3 nbranch  0x000065a9 , 0x00000034 
+ 00026023  0x00004ad4 setarg  0x00004323 
+ 00026024  0x00004ad5 store  0x00000002 , 0x000042c1 
+ 00026025  0x00004ad7 setarg  0x00000190 
+ 00026026  0x00004ad8 store  0x00000002 , 0x000042cd 
+ 00026027  0x00004ad9 rtn 
+ 00026028  0x00004adc fetcht  0x00000002 , 0x000042cb 
+ 00026029  0x00004add setarg  0x0000aa55 
+ 00026030  0x00004ade isub  0x00000002 , 0x0000003e 
+ 00026031  0x00004adf branch  0x000065b5 , 0x00000005 
+ 00026032  0x00004ae0 setarg  0x00006946 
+ 00026033  0x00004ae1 store  0x00000002 , 0x000042c5 
+ 00026034  0x00004ae2 setarg  0x00005377 
+ 00026035  0x00004ae3 store  0x00000002 , 0x000042bf 
+ 00026036  0x00004ae4 branch  0x000065bd 
+ 00026037  0x00004ae7 fetch  0x00000002 , 0x000042c5 
+ 00026038  0x00004ae8 nbranch  0x000065b9 , 0x00000034 
+ 00026039  0x00004ae9 setarg  0x00006946 
+ 00026040  0x00004aea store  0x00000002 , 0x000042c5 
+ 00026041  0x00004aec fetch  0x00000002 , 0x000042bf 
+ 00026042  0x00004aed nbranch  0x000065bd , 0x00000034 
+ 00026043  0x00004aee setarg  0x00005377 
+ 00026044  0x00004aef store  0x00000002 , 0x000042bf 
+ 00026045  0x00004af1 setarg  0x00000032 
+ 00026046  0x00004af2 store  0x00000002 , 0x000042cd 
+ 00026047  0x00004af3 rtn 
+ 00026048  0x00004af7 fetch  0x00000001 , 0x000042cf 
+ 00026049  0x00004af8 bbit1  0x00000000 , 0x000065c5 
+ 00026050  0x00004af9 bbit1  0x00000001 , 0x000065c7 
+ 00026051  0x00004afa bbit1  0x00000002 , 0x000065c9 
+ 00026052  0x00004afb rtn 
+ 00026053  0x00004afd hjam  0x000000bf , 0x00008971 
+ 00026054  0x00004afe branch  0x000065cd 
+ 00026055  0x00004b00 hjam  0x000000af , 0x00008971 
+ 00026056  0x00004b01 branch  0x000065cd 
+ 00026057  0x00004b03 hjam  0x0000008f , 0x00008971 
+ 00026058  0x00004b04 fetch  0x00000001 , 0x000042d0 
+ 00026059  0x00004b05 hstore  0x00000001 , 0x00008973 
+ 00026060  0x00004b06 branch  0x000065cd 
+ 00026061  0x00004b08 set1  0x00000025 , 0x00000000 
+ 00026062  0x00004b09 bpatch  0x00000097 , 0x00004032 
+ 00026063  0x00004b0a hfetch  0x00000001 , 0x00008053 
+ 00026064  0x00004b0b set1  0x00000007 , 0x0000003f 
+ 00026065  0x00004b0c hstore  0x00000001 , 0x00008053 
+ 00026066  0x00004b0d hfetch  0x00000001 , 0x00008973 
+ 00026067  0x00004b0e or_into  0x00000030 , 0x0000003f 
+ 00026068  0x00004b0f hstore  0x00000001 , 0x00008973 
+ 00026069  0x00004b10 hjam  0x0000007c , 0x00008906 
+ 00026070  0x00004b11 hjam  0x000000aa , 0x00008972 
+ 00026071  0x00004b12 nop  0x00001388 
+ 00026072  0x00004b13 hfetcht  0x00000002 , 0x00008150 
+ 00026073  0x00004b14 hfetch  0x00000001 , 0x00008053 
+ 00026074  0x00004b15 set0  0x00000007 , 0x0000003f 
+ 00026075  0x00004b16 hstore  0x00000001 , 0x00008053 
+ 00026076  0x00004b17 storet  0x00000002 , 0x000042d1 
+ 00026077  0x00004b18 rtn 
+ 00026078  0x00004b1b set1  0x00000025 , 0x00000000 
+ 00026079  0x00004b1c bpatch  0x00000098 , 0x00004033 
+ 00026080  0x00004b1d fetch  0x00000001 , 0x000042cf 
+ 00026081  0x00004b1e bbit1  0x00000000 , 0x000065e5 
+ 00026082  0x00004b1f bbit1  0x00000001 , 0x000065e9 
+ 00026083  0x00004b20 bbit1  0x00000002 , 0x000065ed 
+ 00026084  0x00004b21 rtn 
+ 00026085  0x00004b24 fetch  0x00000002 , 0x000042c9 
+ 00026086  0x00004b25 fetcht  0x00000002 , 0x000042c3 
+ 00026087  0x00004b26 arg  0x000000c8 , 0x00000013 
+ 00026088  0x00004b27 branch  0x000065f1 
+ 00026089  0x00004b2a fetch  0x00000002 , 0x000042c7 
+ 00026090  0x00004b2b fetcht  0x00000002 , 0x000042c1 
+ 00026091  0x00004b2c arg  0x00000064 , 0x00000013 
+ 00026092  0x00004b2d branch  0x000065f1 
+ 00026093  0x00004b30 fetch  0x00000002 , 0x000042c5 
+ 00026094  0x00004b31 fetcht  0x00000002 , 0x000042bf 
+ 00026095  0x00004b32 arg  0x00000032 , 0x00000013 
+ 00026096  0x00004b33 branch  0x000065f1 
+ 00026097  0x00004b36 isub  0x00000002 , 0x00000011 
+ 00026098  0x00004b37 fetch  0x00000002 , 0x000042d1 
+ 00026099  0x00004b38 isub  0x00000002 , 0x0000003f 
+ 00026100  0x00004b39 nbranch  0x000065fe , 0x00000002 
+ 00026101  0x00004b3a fetcht  0x00000002 , 0x000042cd 
+ 00026102  0x00004b3b imul32  0x00000002 , 0x00000012 
+ 00026103  0x00004b3c copy  0x00000013 , 0x0000003f 
+ 00026104  0x00004b3d imul32  0x00000011 , 0x0000003f 
+ 00026105  0x00004b3e iadd  0x00000012 , 0x0000003f 
+ 00026106  0x00004b40 idiv  0x00000011 
+ 00026107  0x00004b41 call  0x00007f53 
+ 00026108  0x00004b42 quotient  0x0000003f 
+ 00026109  0x00004b43 rtn 
+ 00026110  0x00004b46 copy  0x00000002 , 0x0000003f 
+ 00026111  0x00004b47 fetcht  0x00000002 , 0x000042d1 
+ 00026112  0x00004b48 isub  0x00000002 , 0x0000003f 
+ 00026113  0x00004b49 fetcht  0x00000002 , 0x000042cd 
+ 00026114  0x00004b4a imul32  0x00000002 , 0x00000012 
+ 00026115  0x00004b4b copy  0x00000013 , 0x0000003f 
+ 00026116  0x00004b4c imul32  0x00000011 , 0x0000003f 
+ 00026117  0x00004b4d isub  0x00000012 , 0x0000003f 
+ 00026118  0x00004b4e branch  0x000065fa 
+ 00026119  0x00004b54 rtn  0x0000002b 
+ 00026120  0x00004b55 jam  0x00000000 , 0x000045ff 
+ 00026121  0x00004b56 jam  0x00000003 , 0x0000041c 
+ 00026122  0x00004b57 jam  0x00000003 , 0x0000041d 
+ 00026123  0x00004b58 jam  0x00000011 , 0x00000421 
+ 00026124  0x00004b59 jam  0x00000013 , 0x00000422 
+ 00026125  0x00004b5a setarg  0x00000000 
+ 00026126  0x00004b5b store  0x00000003 , 0x0000041e 
+ 00026127  0x00004b5c store  0x00000001 , 0x000042e4 
+ 00026128  0x00004b5d jam  0x00000000 , 0x0000470a 
+ 00026129  0x00004b60 set1  0x00000025 , 0x00000000 
+ 00026130  0x00004b61 bpatch  0x00000099 , 0x00004033 
+ 00026131  0x00004b62 setarg  0x00000000 
+ 00026132  0x00004b63 store  0x00000001 , 0x000042e4 
+ 00026133  0x00004b64 store  0x00000001 , 0x000045fc 
+ 00026134  0x00004b65 store  0x00000001 , 0x000045f5 
+ 00026135  0x00004b66 fetch  0x00000001 , 0x00004603 
+ 00026136  0x00004b67 beq  0x00000001 , 0x0000661b 
+ 00026137  0x00004b68 jam  0x00000050 , 0x00004601 
+ 00026138  0x00004b69 rtn 
+ 00026139  0x00004b6c jam  0x00000000 , 0x00004601 
+ 00026140  0x00004b6d rtn 
+ 00026141  0x00004b70 or_into  0x00000002 , 0x00000002 
+ 00026142  0x00004b71 rtn 
+ 00026143  0x00004b7e copy  0x00000002 , 0x0000003f 
+ 00026144  0x00004b7f reverse  0x0000003f , 0x0000003f 
+ 00026145  0x00004b80 store  0x00000001 , 0x000045fa 
+ 00026146  0x00004b81 force  0x0000003f , 0x0000003f 
+ 00026147  0x00004b82 reverse  0x0000003f , 0x0000003f 
+ 00026148  0x00004b83 store  0x00000001 , 0x000045f9 
+ 00026149  0x00004b84 force  0x00000001 , 0x0000003f 
+ 00026150  0x00004b85 reverse  0x0000003f , 0x0000003f 
+ 00026151  0x00004b86 store  0x00000001 , 0x000045f8 
+ 00026152  0x00004b87 call  0x00006655 
+ 00026153  0x00004b88 copy  0x00000002 , 0x0000003f 
+ 00026154  0x00004b89 rtn 
+ 00026155  0x00004b8b reverse  0x0000003f , 0x0000003f 
+ 00026156  0x00004b8c store  0x00000001 , 0x000045fa 
+ 00026157  0x00004b8d force  0x00000073 , 0x0000003f 
+ 00026158  0x00004b8e reverse  0x0000003f , 0x0000003f 
+ 00026159  0x00004b8f store  0x00000001 , 0x000045f9 
+ 00026160  0x00004b90 force  0x00000001 , 0x0000003f 
+ 00026161  0x00004b91 reverse  0x0000003f , 0x0000003f 
+ 00026162  0x00004b92 store  0x00000001 , 0x000045f8 
+ 00026163  0x00004b93 branch  0x00006655 
+ 00026164  0x00004b96 fetch  0x00000001 , 0x000045fb 
+ 00026165  0x00004b97 branch  0x00006638 , 0x00000034 
+ 00026166  0x00004b98 setarg  0x00000070 
+ 00026167  0x00004b99 rtn 
+ 00026168  0x00004b9b setarg  0x000000aa 
+ 00026169  0x00004b9c rtn 
+ 00026170  0x00004b9f reverse  0x0000003f , 0x0000003f 
+ 00026171  0x00004ba0 store  0x00000001 , 0x000045fa 
+ 00026172  0x00004ba1 force  0x000000ef , 0x0000003f 
+ 00026173  0x00004ba2 call  0x00006649 
+ 00026174  0x00004ba3 fetcht  0x00000002 , 0x00000426 
+ 00026175  0x00004ba4 copy  0x00000002 , 0x00000005 
+ 00026176  0x00004ba5 istore  0x00000001 , 0x00000005 
+ 00026177  0x00004ba6 copy  0x00000005 , 0x00000002 
+ 00026178  0x00004ba7 storet  0x00000002 , 0x00000426 
+ 00026179  0x00004ba8 force  0x000000ff , 0x0000003f 
+ 00026180  0x00004ba9 call  0x00006649 
+ 00026181  0x00004baa fetcht  0x00000002 , 0x00000426 
+ 00026182  0x00004bab copy  0x00000002 , 0x00000005 
+ 00026183  0x00004bac istore  0x00000001 , 0x00000005 
+ 00026184  0x00004bad rtn 
+ 00026185  0x00004bb7 reverse  0x0000003f , 0x0000003f 
+ 00026186  0x00004bb8 store  0x00000001 , 0x000045f9 
+ 00026187  0x00004bb9 fetch  0x00000002 , 0x000045f9 
+ 00026188  0x00004bba lshift8  0x0000003f , 0x0000003f 
+ 00026189  0x00004bbb store  0x00000003 , 0x00000423 
+ 00026190  0x00004bbc arg  0x00000107 , 0x00000011 
+ 00026191  0x00004bbd arg  0x0000000f , 0x00000012 
+ 00026192  0x00004bbe call  0x00006662 
+ 00026193  0x00004bbf xor_into  0x000000d7 , 0x0000003f 
+ 00026194  0x00004bc0 invert  0x0000003f , 0x0000003f 
+ 00026195  0x00004bc1 reverse  0x0000003f , 0x0000003f 
+ 00026196  0x00004bc2 rtn 
+ 00026197  0x00004bcd fetch  0x00000003 , 0x000045f8 
+ 00026198  0x00004bce store  0x00000003 , 0x00000423 
+ 00026199  0x00004bcf arg  0x00000107 , 0x00000011 
+ 00026200  0x00004bd0 arg  0x0000000f , 0x00000012 
+ 00026201  0x00004bd1 call  0x00006662 
+ 00026202  0x00004bd2 lshift8  0x0000003f , 0x0000003f 
+ 00026203  0x00004bd3 arg  0x00000007 , 0x00000012 
+ 00026204  0x00004bd4 call  0x00006662 
+ 00026205  0x00004bd5 xor_into  0x0000002b , 0x0000003f 
+ 00026206  0x00004bd6 invert  0x0000003f , 0x0000003f 
+ 00026207  0x00004bd7 reverse  0x0000003f , 0x0000003f 
+ 00026208  0x00004bd8 copy  0x0000003f , 0x00000002 
+ 00026209  0x00004bd9 rtn 
+ 00026210  0x00004bdc arg  0x00000000 , 0x00000013 
+ 00026211  0x00004bdd copy  0x00000012 , 0x00000039 
+ 00026212  0x00004bde call  0x00007e43 
+ 00026213  0x00004bdf icopy  0x00000002 
+ 00026214  0x00004be5 copy  0x00000002 , 0x0000003f 
+ 00026215  0x00004be6 lshift  0x00000013 , 0x00000013 
+ 00026216  0x00004be7 bbit0  0x00000008 , 0x0000666b 
+ 00026217  0x00004be8 ixor  0x00000011 , 0x00000002 
+ 00026218  0x00004be9 increase  0x00000001 , 0x00000013 
+ 00026219  0x00004beb lshift  0x00000002 , 0x00000002 
+ 00026220  0x00004bec fetch  0x00000003 , 0x00000423 
+ 00026221  0x00004bed increase  0xffffffff , 0x00000012 
+ 00026222  0x00004bee compare  0x000000ff , 0x00000012 , 0x000000ff 
+ 00026223  0x00004bef branch  0x00006675 , 0x00000001 
+ 00026224  0x00004bf0 copy  0x00000012 , 0x00000039 
+ 00026225  0x00004bf1 call  0x00007e43 
+ 00026226  0x00004bf2 isolate1  0x00000000 , 0x0000003f 
+ 00026227  0x00004bf3 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00026228  0x00004bf4 branch  0x00006666 
+ 00026229  0x00004bf7 rshift  0x00000002 , 0x0000003f 
+ 00026230  0x00004bf8 rtn 
+ 00026231  0x00004bfb fetcht  0x00000001 , 0x000045f5 
+ 00026232  0x00004bfe lshift2  0x00000002 , 0x00000002 
+ 00026233  0x00004bff set1  0x00000000 , 0x00000002 
+ 00026234  0x00004c00 fetch  0x00000001 , 0x000045fb 
+ 00026235  0x00004c01 ncall  0x0000661d , 0x00000034 
+ 00026236  0x00004c02 storet  0x00000001 , 0x0000043c 
+ 00026237  0x00004c03 rtn 
+ 00026238  0x00004c07 lshift  0x00000002 , 0x00000002 
+ 00026239  0x00004c08 fetch  0x00000001 , 0x000045fb 
+ 00026240  0x00004c09 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00026241  0x00004c0b rtn 
+ 00026242  0x00004c0d fetcht  0x00000001 , 0x0000042b 
+ 00026243  0x00004c0e jam  0x000000d7 , 0x0000042d 
+ 00026244  0x00004c0f call  0x000067c1 
+ 00026245  0x00004c10 fetch  0x00000001 , 0x000042e1 
+ 00026246  0x00004c11 set1  0x00000006 , 0x0000003f 
+ 00026247  0x00004c12 set1  0x00000007 , 0x0000003f 
+ 00026248  0x00004c13 store  0x00000001 , 0x000042e1 
+ 00026249  0x00004c14 jam  0x00000000 , 0x000045fb 
+ 00026250  0x00004c15 branch  0x000067a1 
+ 00026251  0x00004c17 fetch  0x00000001 , 0x000042e1 
+ 00026252  0x00004c18 set1  0x00000007 , 0x0000003f 
+ 00026253  0x00004c19 store  0x00000001 , 0x000042e1 
+ 00026254  0x00004c1a branch  0x000067a1 
+ 00026255  0x00004c1e set1  0x00000025 , 0x00000000 
+ 00026256  0x00004c1f bpatch  0x0000009a , 0x00004033 
+ 00026257  0x00004c20 fetch  0x00000001 , 0x0000470a 
+ 00026258  0x00004c21 beq  0x00000000 , 0x00006694 
+ 00026259  0x00004c22 branch  0x00006755 
+ 00026260  0x00004c25 fetch  0x00000002 , 0x0000028d 
+ 00026261  0x00004c26 copy  0x0000003f , 0x00000006 
+ 00026262  0x00004c27 call  0x000066bf 
+ 00026263  0x00004c28 fetch  0x00000001 , 0x0000042b 
+ 00026264  0x00004c29 beq  0x00000000 , 0x0000669a 
+ 00026265  0x00004c2a branch  0x00006720 
+ 00026266  0x00004c2c set1  0x00000025 , 0x00000000 
+ 00026267  0x00004c2d bpatch  0x0000009b , 0x00004033 
+ 00026268  0x00004c2e fetch  0x00000001 , 0x0000042c 
+ 00026269  0x00004c2f beq  0x0000003f , 0x00006682 
+ 00026270  0x00004c30 beq  0x00000073 , 0x0000668b 
+ 00026271  0x00004c31 beq  0x000000ef , 0x000066a2 
+ 00026272  0x00004c32 beq  0x00000053 , 0x0000674d 
+ 00026273  0x00004c33 rtn 
+ 00026274  0x00004c37 fetch  0x00000002 , 0x00000430 
+ 00026275  0x00004c38 copy  0x0000003f , 0x00000006 
+ 00026276  0x00004c39 call  0x000066ca 
+ 00026277  0x00004c3a fetch  0x00000001 , 0x00000432 
+ 00026278  0x00004c3b beq  0x00000041 , 0x000066ac 
+ 00026279  0x00004c3c beq  0x00000040 , 0x000066b4 
+ 00026280  0x00004c3d beq  0x00000071 , 0x000066ed 
+ 00026281  0x00004c3e beq  0x00000070 , 0x000066f9 
+ 00026282  0x00004c3f beq  0x00000049 , 0x00006704 
+ 00026283  0x00004c40 branch  0x000067a1 
+ 00026284  0x00004c43 call  0x000066b6 
+ 00026285  0x00004c45 branch  0x000066ae 
+ 00026286  0x00004c48 fetch  0x00000001 , 0x000042e4 
+ 00026287  0x00004c49 set1  0x00000000 , 0x0000003f 
+ 00026288  0x00004c4a set1  0x00000001 , 0x0000003f 
+ 00026289  0x00004c4b store  0x00000001 , 0x000042e4 
+ 00026290  0x00004c4c call  0x000067ed 
+ 00026291  0x00004c4d branch  0x000067a1 
+ 00026292  0x00004c50 call  0x000066b6 
+ 00026293  0x00004c51 branch  0x000067a1 
+ 00026294  0x00004c54 call  0x000066d2 
+ 00026295  0x00004c55 branch  0x000066de 
+ 00026296  0x00004c58 call  0x000066d2 
+ 00026297  0x00004c59 ifetch  0x00000001 , 0x00000006 
+ 00026298  0x00004c5a rshift3  0x0000003f , 0x0000003f 
+ 00026299  0x00004c5b store  0x00000001 , 0x00004602 
+ 00026300  0x00004c5c ifetch  0x00000001 , 0x00000006 
+ 00026301  0x00004c5d store  0x00000001 , 0x00000437 
+ 00026302  0x00004c5e rtn 
+ 00026303  0x00004c62 ifetch  0x00000001 , 0x00000006 
+ 00026304  0x00004c63 store  0x00000001 , 0x0000042a 
+ 00026305  0x00004c64 rshift3  0x0000003f , 0x0000003f 
+ 00026306  0x00004c65 store  0x00000001 , 0x0000042b 
+ 00026307  0x00004c66 ifetch  0x00000001 , 0x00000006 
+ 00026308  0x00004c67 store  0x00000001 , 0x0000042c 
+ 00026309  0x00004c69 call  0x000066d5 
+ 00026310  0x00004c6a storet  0x00000002 , 0x0000042e 
+ 00026311  0x00004c6b copy  0x00000006 , 0x0000003f 
+ 00026312  0x00004c6c store  0x00000002 , 0x00000430 
+ 00026313  0x00004c6d rtn 
+ 00026314  0x00004c70 ifetch  0x00000001 , 0x00000006 
+ 00026315  0x00004c71 rshift  0x0000003f , 0x0000003f 
+ 00026316  0x00004c72 store  0x00000001 , 0x00000432 
+ 00026317  0x00004c73 call  0x000066d5 
+ 00026318  0x00004c74 storet  0x00000002 , 0x00000433 
+ 00026319  0x00004c75 copy  0x00000006 , 0x0000003f 
+ 00026320  0x00004c76 store  0x00000002 , 0x00000435 
+ 00026321  0x00004c77 rtn 
+ 00026322  0x00004c7b fetch  0x00000002 , 0x00000435 
+ 00026323  0x00004c7c copy  0x0000003f , 0x00000006 
+ 00026324  0x00004c7d rtn 
+ 00026325  0x00004c80 ifetch  0x00000001 , 0x00000006 
+ 00026326  0x00004c81 copy  0x0000003f , 0x00000002 
+ 00026327  0x00004c82 rshift  0x00000002 , 0x00000002 
+ 00026328  0x00004c83 rtnbit1  0x00000000 
+ 00026329  0x00004c84 ifetch  0x00000001 , 0x00000006 
+ 00026330  0x00004c85 lshift3  0x0000003f , 0x0000003f 
+ 00026331  0x00004c86 lshift4  0x0000003f , 0x0000003f 
+ 00026332  0x00004c87 iadd  0x00000002 , 0x00000002 
+ 00026333  0x00004c88 rtn 
+ 00026334  0x00004c8b ifetch  0x00000001 , 0x00000006 
+ 00026335  0x00004c8c store  0x00000001 , 0x000045f5 
+ 00026336  0x00004c8d ifetch  0x00000001 , 0x00000006 
+ 00026337  0x00004c8e store  0x00000001 , 0x00000438 
+ 00026338  0x00004c8f ifetch  0x00000001 , 0x00000006 
+ 00026339  0x00004c90 store  0x00000001 , 0x00000439 
+ 00026340  0x00004c91 ifetch  0x00000001 , 0x00000006 
+ 00026341  0x00004c92 store  0x00000001 , 0x0000043a 
+ 00026342  0x00004c93 ifetch  0x00000002 , 0x00000006 
+ 00026343  0x00004c94 store  0x00000002 , 0x000045f6 
+ 00026344  0x00004c95 ifetch  0x00000001 , 0x00000006 
+ 00026345  0x00004c96 store  0x00000001 , 0x0000043b 
+ 00026346  0x00004c97 ifetch  0x00000001 , 0x00000006 
+ 00026347  0x00004c98 store  0x00000001 , 0x00004600 
+ 00026348  0x00004c99 rtn 
+ 00026349  0x00004c9d call  0x000066b8 
+ 00026350  0x00004c9f branch  0x000066ef 
+ 00026351  0x00004ca2 fetch  0x00000001 , 0x000042e4 
+ 00026352  0x00004ca3 set1  0x00000005 , 0x0000003f 
+ 00026353  0x00004ca4 set1  0x00000006 , 0x0000003f 
+ 00026354  0x00004ca5 store  0x00000001 , 0x000042e4 
+ 00026355  0x00004ca6 fetcht  0x00000001 , 0x000045f5 
+ 00026356  0x00004ca7 lshift2  0x00000002 , 0x00000002 
+ 00026357  0x00004ca8 or_into  0x00000003 , 0x00000002 
+ 00026358  0x00004ca9 call  0x00006820 
+ 00026359  0x00004caa jam  0x00000003 , 0x000045ff 
+ 00026360  0x00004cab branch  0x000067a1 
+ 00026361  0x00004cae jam  0x00000008 , 0x000009bd 
+ 00026362  0x00004caf call  0x00007d86 
+ 00026363  0x00004cb0 call  0x000066b8 
+ 00026364  0x00004cb1 fetch  0x00000001 , 0x00004602 
+ 00026365  0x00004cb2 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00026366  0x00004cb3 branch  0x00006700 , 0x00000005 
+ 00026367  0x00004cb4 branch  0x00003b31 
+ 00026368  0x00004cb6 fetch  0x00000001 , 0x000042e4 
+ 00026369  0x00004cb7 set1  0x00000007 , 0x0000003f 
+ 00026370  0x00004cb8 store  0x00000001 , 0x000042e4 
+ 00026371  0x00004cb9 branch  0x000067a1 
+ 00026372  0x00004cbc call  0x000066d2 
+ 00026373  0x00004cbd ifetch  0x00000001 , 0x00000006 
+ 00026374  0x00004cbe store  0x00000001 , 0x000009e1 
+ 00026375  0x00004cbf call  0x0000487a 
+ 00026376  0x00004cc0 call  0x00004889 
+ 00026377  0x00004cc1 setarg  0x0000000e 
+ 00026378  0x00004cc2 istore  0x00000002 , 0x00000005 
+ 00026379  0x00004cc3 fetch  0x00000002 , 0x000042da 
+ 00026380  0x00004cc4 istore  0x00000002 , 0x00000005 
+ 00026381  0x00004cc5 fetch  0x00000001 , 0x000045fb 
+ 00026382  0x00004cc7 lshift  0x0000003f , 0x0000003f 
+ 00026383  0x00004cc8 set1  0x00000000 , 0x0000003f 
+ 00026384  0x00004cc9 istore  0x00000001 , 0x00000005 
+ 00026385  0x00004cca set1  0x00000025 , 0x00000000 
+ 00026386  0x00004ccb bpatch  0x0000009c , 0x00004033 
+ 00026387  0x00004ccc setarg  0x000015ef 
+ 00026388  0x00004ccd istore  0x00000002 , 0x00000005 
+ 00026389  0x00004cce setarg  0x00001191 
+ 00026390  0x00004ccf istore  0x00000002 , 0x00000005 
+ 00026391  0x00004cd2 fetch  0x00000001 , 0x000009e1 
+ 00026392  0x00004cd3 istore  0x00000001 , 0x00000005 
+ 00026393  0x00004cd4 setarg  0x00000007 
+ 00026394  0x00004cd5 istore  0x00000005 , 0x00000005 
+ 00026395  0x00004cd8 setarg  0x00000001 
+ 00026396  0x00004cd9 istore  0x00000002 , 0x00000005 
+ 00026397  0x00004cdc call  0x00006634 
+ 00026398  0x00004cdd istore  0x00000001 , 0x00000005 
+ 00026399  0x00004cde rtn 
+ 00026400  0x00004ce3 branch  0x00006721 
+ 00026401  0x00004ce6 set1  0x00000025 , 0x00000000 
+ 00026402  0x00004ce7 bpatch  0x0000009d , 0x00004033 
+ 00026403  0x00004ce8 fetch  0x00000001 , 0x0000042c 
+ 00026404  0x00004ce9 beq  0x00000073 , 0x0000672a 
+ 00026405  0x00004cea beq  0x0000003f , 0x0000672e 
+ 00026406  0x00004ceb beq  0x000000ef , 0x00006748 
+ 00026407  0x00004cec beq  0x000000ff , 0x00006740 
+ 00026408  0x00004ced beq  0x00000053 , 0x0000674f 
+ 00026409  0x00004cee rtn 
+ 00026410  0x00004cf0 fetch  0x00000001 , 0x000042e4 
+ 00026411  0x00004cf1 set1  0x00000003 , 0x0000003f 
+ 00026412  0x00004cf2 store  0x00000001 , 0x000042e4 
+ 00026413  0x00004cf3 branch  0x000067a1 
+ 00026414  0x00004cf5 fetch  0x00000001 , 0x000042e4 
+ 00026415  0x00004cf6 set1  0x00000003 , 0x0000003f 
+ 00026416  0x00004cf7 set1  0x00000002 , 0x0000003f 
+ 00026417  0x00004cf8 store  0x00000001 , 0x000042e4 
+ 00026418  0x00004cf9 fetch  0x00000001 , 0x0000042a 
+ 00026419  0x00004cfa call  0x0000662b 
+ 00026420  0x00004cfb store  0x00000001 , 0x0000042d 
+ 00026421  0x00004cfc call  0x000067c1 
+ 00026422  0x00004cfd fetch  0x00000001 , 0x0000042a 
+ 00026423  0x00004cfe rshift2  0x0000003f , 0x0000003f 
+ 00026424  0x00004cff store  0x00000001 , 0x000045f5 
+ 00026425  0x00004d00 lshift2  0x0000003f , 0x0000003f 
+ 00026426  0x00004d01 set0  0x00000001 , 0x0000003f 
+ 00026427  0x00004d02 set1  0x00000000 , 0x0000003f 
+ 00026428  0x00004d03 arg  0x000045fd , 0x00000002 
+ 00026429  0x00004d04 storet  0x00000002 , 0x00000426 
+ 00026430  0x00004d05 call  0x0000663a 
+ 00026431  0x00004d06 branch  0x000067a1 
+ 00026432  0x00004d09 fetch  0x00000002 , 0x00000430 
+ 00026433  0x00004d0a copy  0x0000003f , 0x00000006 
+ 00026434  0x00004d0b increase  0x00000001 , 0x0000003f 
+ 00026435  0x00004d0c store  0x00000002 , 0x00000430 
+ 00026436  0x00004d0d ifetch  0x00000001 , 0x00000006 
+ 00026437  0x00004d0e fetcht  0x00000001 , 0x00004600 
+ 00026438  0x00004d0f iadd  0x00000002 , 0x0000003f 
+ 00026439  0x00004d10 store  0x00000001 , 0x00004600 
+ 00026440  0x00004d12 call  0x00006853 
+ 00026441  0x00004d14 call  0x00006677 
+ 00026442  0x00004d15 call  0x00006838 
+ 00026443  0x00004d16 call  0x0000685d 
+ 00026444  0x00004d17 branch  0x000067a1 
+ 00026445  0x00004d1a jam  0x00000009 , 0x000009bd 
+ 00026446  0x00004d1b call  0x00007d86 
+ 00026447  0x00004d1d call  0x00006611 
+ 00026448  0x00004d1e fetch  0x00000001 , 0x0000042a 
+ 00026449  0x00004d1f call  0x0000662b 
+ 00026450  0x00004d20 store  0x00000001 , 0x0000042d 
+ 00026451  0x00004d21 call  0x000067c1 
+ 00026452  0x00004d22 branch  0x000067a1 
+ 00026453  0x00004d28 fetch  0x00000002 , 0x0000028d 
+ 00026454  0x00004d29 copy  0x0000003f , 0x00000006 
+ 00026455  0x00004d2a call  0x000066bf 
+ 00026456  0x00004d2b fetch  0x00000001 , 0x0000042b 
+ 00026457  0x00004d2c beq  0x00000000 , 0x0000675b 
+ 00026458  0x00004d2d branch  0x00006790 
+ 00026459  0x00004d30 set1  0x00000025 , 0x00000000 
+ 00026460  0x00004d31 bpatch  0x0000009e , 0x00004033 
+ 00026461  0x00004d32 fetch  0x00000001 , 0x0000042c 
+ 00026462  0x00004d33 beq  0x0000003f , 0x00006682 
+ 00026463  0x00004d34 beq  0x00000073 , 0x0000668b 
+ 00026464  0x00004d35 beq  0x000000ef , 0x00006762 
+ 00026465  0x00004d36 branch  0x000067a1 
+ 00026466  0x00004d38 fetch  0x00000002 , 0x00000430 
+ 00026467  0x00004d39 copy  0x0000003f , 0x00000006 
+ 00026468  0x00004d3a call  0x000066ca 
+ 00026469  0x00004d3b fetch  0x00000001 , 0x00000432 
+ 00026470  0x00004d3c beq  0x00000041 , 0x0000676b 
+ 00026471  0x00004d3d beq  0x00000040 , 0x0000676b 
+ 00026472  0x00004d3e beq  0x00000071 , 0x00006776 
+ 00026473  0x00004d3f beq  0x00000070 , 0x00006786 
+ 00026474  0x00004d40 branch  0x000067a1 
+ 00026475  0x00004d43 call  0x000066b6 
+ 00026476  0x00004d44 fetch  0x00000001 , 0x000045f5 
+ 00026477  0x00004d45 rshift  0x0000003f , 0x0000003f 
+ 00026478  0x00004d46 fetcht  0x00000001 , 0x000045fc 
+ 00026479  0x00004d47 isub  0x00000002 , 0x0000003e 
+ 00026480  0x00004d48 branch  0x00006772 , 0x00000005 
+ 00026481  0x00004d49 branch  0x00003b31 
+ 00026482  0x00004d4b fetch  0x00000001 , 0x000042e4 
+ 00026483  0x00004d4c set1  0x00000001 , 0x0000003f 
+ 00026484  0x00004d4d store  0x00000001 , 0x000042e4 
+ 00026485  0x00004d4e branch  0x000067a1 
+ 00026486  0x00004d51 call  0x000066b8 
+ 00026487  0x00004d52 fetch  0x00000001 , 0x00004602 
+ 00026488  0x00004d53 fetcht  0x00000001 , 0x000045fc 
+ 00026489  0x00004d54 isub  0x00000002 , 0x0000003e 
+ 00026490  0x00004d55 branch  0x0000677d , 0x00000005 
+ 00026491  0x00004d56 branch  0x00003b31 
+ 00026492  0x00004d57 branch  0x000067a1 
+ 00026493  0x00004d59 fetch  0x00000001 , 0x000042e4 
+ 00026494  0x00004d5a set1  0x00000005 , 0x0000003f 
+ 00026495  0x00004d5b set1  0x00000006 , 0x0000003f 
+ 00026496  0x00004d5c store  0x00000001 , 0x000042e4 
+ 00026497  0x00004d5d fetcht  0x00000001 , 0x000045f5 
+ 00026498  0x00004d5e lshift2  0x00000002 , 0x00000002 
+ 00026499  0x00004d5f or_into  0x00000003 , 0x00000002 
+ 00026500  0x00004d60 call  0x00006820 
+ 00026501  0x00004d61 branch  0x000067a1 
+ 00026502  0x00004d64 call  0x000066b8 
+ 00026503  0x00004d65 fetch  0x00000001 , 0x00004602 
+ 00026504  0x00004d66 fetcht  0x00000001 , 0x000045fc 
+ 00026505  0x00004d67 isub  0x00000002 , 0x0000003e 
+ 00026506  0x00004d68 branch  0x0000678c , 0x00000005 
+ 00026507  0x00004d69 branch  0x00003b31 
+ 00026508  0x00004d6b fetch  0x00000001 , 0x000042e4 
+ 00026509  0x00004d6c set1  0x00000007 , 0x0000003f 
+ 00026510  0x00004d6d store  0x00000001 , 0x000042e4 
+ 00026511  0x00004d6e branch  0x000067a1 
+ 00026512  0x00004d71 fetch  0x00000001 , 0x0000042b 
+ 00026513  0x00004d72 fetcht  0x00000001 , 0x000045fc 
+ 00026514  0x00004d73 isub  0x00000002 , 0x0000003e 
+ 00026515  0x00004d74 branch  0x00006796 , 0x00000005 
+ 00026516  0x00004d75 branch  0x00003b31 
+ 00026517  0x00004d76 branch  0x000067a1 
+ 00026518  0x00004d79 fetch  0x00000001 , 0x0000042c 
+ 00026519  0x00004d7a beq  0x00000073 , 0x0000679b 
+ 00026520  0x00004d7b beq  0x000000ef , 0x00006748 
+ 00026521  0x00004d7c beq  0x000000ff , 0x00006740 
+ 00026522  0x00004d7d beq  0x00000053 , 0x000067a0 
+ 00026523  0x00004d7f fetch  0x00000001 , 0x000042e4 
+ 00026524  0x00004d80 set1  0x00000003 , 0x0000003f 
+ 00026525  0x00004d81 store  0x00000001 , 0x000042e4 
+ 00026526  0x00004d82 branch  0x000067a1 
+ 00026527  0x00004d84 branch  0x0000679f 
+ 00026528  0x00004d86 branch  0x0000674f 
+ 00026529  0x00004d88 rtn 
+ 00026530  0x00004d8b fetch  0x00000001 , 0x000045ff 
+ 00026531  0x00004d8c rtn  0x00000034 
+ 00026532  0x00004d8d beq  0x00000003 , 0x000067a6 
+ 00026533  0x00004d8e branch  0x00003b31 
+ 00026534  0x00004d91 jam  0x00000000 , 0x000045ff 
+ 00026535  0x00004d92 call  0x0000487a 
+ 00026536  0x00004d93 arg  0x00000001 , 0x00000002 
+ 00026537  0x00004d94 fetcht  0x00000001 , 0x000045f5 
+ 00026538  0x00004d95 lshift2  0x00000002 , 0x00000002 
+ 00026539  0x00004d97 or_into  0x00000003 , 0x00000002 
+ 00026540  0x00004d98 arg  0x000000aa , 0x00000011 
+ 00026541  0x00004d99 call  0x0000680a 
+ 00026542  0x00004d9a call  0x00004889 
+ 00026543  0x00004d9b copy  0x00000005 , 0x00000006 
+ 00026544  0x00004d9c ifetch  0x00000002 , 0x00000006 
+ 00026545  0x00004d9d branch  0x00003b31 , 0x00000034 
+ 00026546  0x00004d9e rtn 
+ 00026547  0x00004da1 call  0x00004889 
+ 00026548  0x00004da2 setarg  0x00000004 
+ 00026549  0x00004da3 istore  0x00000002 , 0x00000005 
+ 00026550  0x00004da4 fetch  0x00000002 , 0x000042da 
+ 00026551  0x00004da5 istore  0x00000002 , 0x00000005 
+ 00026552  0x00004da6 fetch  0x00000001 , 0x0000042a 
+ 00026553  0x00004da7 istore  0x00000001 , 0x00000005 
+ 00026554  0x00004da8 set1  0x00000025 , 0x00000000 
+ 00026555  0x00004da9 bpatch  0x0000009f , 0x00004033 
+ 00026556  0x00004daa setarg  0x0000013f 
+ 00026557  0x00004dab istore  0x00000002 , 0x00000005 
+ 00026558  0x00004dac fetch  0x00000001 , 0x0000042d 
+ 00026559  0x00004dad istore  0x00000001 , 0x00000005 
+ 00026560  0x00004dae rtn 
+ 00026561  0x00004db0 call  0x0000487a 
+ 00026562  0x00004db1 call  0x00004889 
+ 00026563  0x00004db2 setarg  0x00000004 
+ 00026564  0x00004db3 istore  0x00000002 , 0x00000005 
+ 00026565  0x00004db4 fetch  0x00000002 , 0x000042da 
+ 00026566  0x00004db5 istore  0x00000002 , 0x00000005 
+ 00026567  0x00004db6 fetch  0x00000001 , 0x0000042a 
+ 00026568  0x00004db7 istore  0x00000001 , 0x00000005 
+ 00026569  0x00004db8 set1  0x00000025 , 0x00000000 
+ 00026570  0x00004db9 bpatch  0x000000a0 , 0x00004034 
+ 00026571  0x00004dba setarg  0x00000173 
+ 00026572  0x00004dbb istore  0x00000002 , 0x00000005 
+ 00026573  0x00004dbc fetch  0x00000001 , 0x0000042d 
+ 00026574  0x00004dbd istore  0x00000001 , 0x00000005 
+ 00026575  0x00004dbe rtn 
+ 00026576  0x00004dc0 call  0x00004889 
+ 00026577  0x00004dc1 setarg  0x0000000e 
+ 00026578  0x00004dc2 istore  0x00000002 , 0x00000005 
+ 00026579  0x00004dc3 fetch  0x00000002 , 0x000042da 
+ 00026580  0x00004dc4 istore  0x00000002 , 0x00000005 
+ 00026581  0x00004dc5 fetch  0x00000001 , 0x000045fb 
+ 00026582  0x00004dc6 lshift  0x0000003f , 0x0000003f 
+ 00026583  0x00004dc7 set1  0x00000000 , 0x0000003f 
+ 00026584  0x00004dc8 istore  0x00000001 , 0x00000005 
+ 00026585  0x00004dc9 set1  0x00000025 , 0x00000000 
+ 00026586  0x00004dca bpatch  0x000000a1 , 0x00004034 
+ 00026587  0x00004dcb setarg  0x000015ef 
+ 00026588  0x00004dcc istore  0x00000002 , 0x00000005 
+ 00026589  0x00004dcd setarg  0x00001183 
+ 00026590  0x00004dce istore  0x00000002 , 0x00000005 
+ 00026591  0x00004dcf copy  0x00000002 , 0x0000003f 
+ 00026592  0x00004dd0 istore  0x00000001 , 0x00000005 
+ 00026593  0x00004dd1 setarg  0x000000f0 
+ 00026594  0x00004dd2 istore  0x00000003 , 0x00000005 
+ 00026595  0x00004dd3 setarg  0x0000007f 
+ 00026596  0x00004dd4 istore  0x00000002 , 0x00000005 
+ 00026597  0x00004dd5 setarg  0x00000000 
+ 00026598  0x00004dd6 istore  0x00000001 , 0x00000005 
+ 00026599  0x00004dd7 setarg  0x00000001 
+ 00026600  0x00004dd8 istore  0x00000001 , 0x00000005 
+ 00026601  0x00004dd9 call  0x00006634 
+ 00026602  0x00004dda istore  0x00000001 , 0x00000005 
+ 00026603  0x00004ddb jam  0x00000010 , 0x00004601 
+ 00026604  0x00004ddc rtn 
+ 00026605  0x00004dde call  0x0000487a 
+ 00026606  0x00004ddf call  0x00004889 
+ 00026607  0x00004de0 setarg  0x0000000e 
+ 00026608  0x00004de1 istore  0x00000002 , 0x00000005 
+ 00026609  0x00004de2 fetch  0x00000002 , 0x000042da 
+ 00026610  0x00004de3 istore  0x00000002 , 0x00000005 
+ 00026611  0x00004de4 fetch  0x00000001 , 0x000045fb 
+ 00026612  0x00004de5 lshift  0x0000003f , 0x0000003f 
+ 00026613  0x00004de6 set1  0x00000000 , 0x0000003f 
+ 00026614  0x00004de7 istore  0x00000001 , 0x00000005 
+ 00026615  0x00004de8 set1  0x00000025 , 0x00000000 
+ 00026616  0x00004de9 bpatch  0x000000a2 , 0x00004034 
+ 00026617  0x00004dea setarg  0x000015ef 
+ 00026618  0x00004deb istore  0x00000002 , 0x00000005 
+ 00026619  0x00004dec setarg  0x00001181 
+ 00026620  0x00004ded istore  0x00000002 , 0x00000005 
+ 00026621  0x00004dee fetch  0x00000001 , 0x000045f5 
+ 00026622  0x00004def istore  0x00000001 , 0x00000005 
+ 00026623  0x00004df0 setarg  0x000000e0 
+ 00026624  0x00004df1 istore  0x00000003 , 0x00000005 
+ 00026625  0x00004df2 fetch  0x00000002 , 0x00004604 
+ 00026626  0x00004df3 istore  0x00000002 , 0x00000005 
+ 00026627  0x00004df4 setarg  0x00000000 
+ 00026628  0x00004df5 istore  0x00000001 , 0x00000005 
+ 00026629  0x00004df6 fetch  0x00000001 , 0x00004606 
+ 00026630  0x00004df7 istore  0x00000001 , 0x00000005 
+ 00026631  0x00004df8 call  0x00006634 
+ 00026632  0x00004df9 istore  0x00000001 , 0x00000005 
+ 00026633  0x00004dfa rtn 
+ 00026634  0x00004dfc call  0x00004889 
+ 00026635  0x00004dfd setarg  0x00000008 
+ 00026636  0x00004dfe istore  0x00000002 , 0x00000005 
+ 00026637  0x00004dff fetch  0x00000002 , 0x000042da 
+ 00026638  0x00004e00 istore  0x00000002 , 0x00000005 
+ 00026639  0x00004e01 fetch  0x00000001 , 0x000045fb 
+ 00026640  0x00004e02 lshift  0x0000003f , 0x0000003f 
+ 00026641  0x00004e03 set1  0x00000000 , 0x0000003f 
+ 00026642  0x00004e04 istore  0x00000001 , 0x00000005 
+ 00026643  0x00004e05 set1  0x00000025 , 0x00000000 
+ 00026644  0x00004e06 bpatch  0x000000a3 , 0x00004034 
+ 00026645  0x00004e07 setarg  0x000009ef 
+ 00026646  0x00004e08 istore  0x00000002 , 0x00000005 
+ 00026647  0x00004e09 setarg  0x000005e3 
+ 00026648  0x00004e0a istore  0x00000002 , 0x00000005 
+ 00026649  0x00004e0b copy  0x00000002 , 0x0000003f 
+ 00026650  0x00004e0c istore  0x00000001 , 0x00000005 
+ 00026651  0x00004e0d setarg  0x0000008d 
+ 00026652  0x00004e0e istore  0x00000001 , 0x00000005 
+ 00026653  0x00004e0f call  0x00006634 
+ 00026654  0x00004e10 istore  0x00000001 , 0x00000005 
+ 00026655  0x00004e11 rtn 
+ 00026656  0x00004e14 call  0x0000487a 
+ 00026657  0x00004e15 call  0x00004889 
+ 00026658  0x00004e16 setarg  0x00000008 
+ 00026659  0x00004e17 istore  0x00000002 , 0x00000005 
+ 00026660  0x00004e18 fetch  0x00000002 , 0x000042da 
+ 00026661  0x00004e19 istore  0x00000002 , 0x00000005 
+ 00026662  0x00004e1a copy  0x00000002 , 0x0000000b 
+ 00026663  0x00004e1b fetch  0x00000001 , 0x000045fb 
+ 00026664  0x00004e1c lshift  0x0000003f , 0x0000003f 
+ 00026665  0x00004e1d set1  0x00000000 , 0x0000003f 
+ 00026666  0x00004e1e istore  0x00000001 , 0x00000005 
+ 00026667  0x00004e1f set1  0x00000025 , 0x00000000 
+ 00026668  0x00004e20 bpatch  0x000000a4 , 0x00004034 
+ 00026669  0x00004e21 setarg  0x000009ef 
+ 00026670  0x00004e22 istore  0x00000002 , 0x00000005 
+ 00026671  0x00004e23 setarg  0x000005e1 
+ 00026672  0x00004e24 istore  0x00000002 , 0x00000005 
+ 00026673  0x00004e25 copy  0x0000000b , 0x0000003f 
+ 00026674  0x00004e26 istore  0x00000001 , 0x00000005 
+ 00026675  0x00004e27 setarg  0x0000008d 
+ 00026676  0x00004e28 istore  0x00000001 , 0x00000005 
+ 00026677  0x00004e29 call  0x00006634 
+ 00026678  0x00004e2a istore  0x00000001 , 0x00000005 
+ 00026679  0x00004e2b rtn 
+ 00026680  0x00004e2e set1  0x00000025 , 0x00000000 
+ 00026681  0x00004e2f bpatch  0x000000a5 , 0x00004034 
+ 00026682  0x00004e30 fetch  0x00000001 , 0x00004601 
+ 00026683  0x00004e31 rtn  0x00000034 
+ 00026684  0x00004e32 hfetch  0x00000002 , 0x00008112 
+ 00026685  0x00004e33 nrtn  0x00000034 
+ 00026686  0x00004e34 copy  0x00000011 , 0x0000003f 
+ 00026687  0x00004e35 store  0x00000001 , 0x000009bf 
+ 00026688  0x00004e36 storet  0x00000001 , 0x000009be 
+ 00026689  0x00004e37 call  0x0000480e 
+ 00026690  0x00004e38 nrtn  0x00000034 
+ 00026691  0x00004e39 call  0x0000487a 
+ 00026692  0x00004e3a call  0x00004889 
+ 00026693  0x00004e3b setarg  0x00000005 
+ 00026694  0x00004e3c istore  0x00000002 , 0x00000005 
+ 00026695  0x00004e3d fetch  0x00000002 , 0x000042da 
+ 00026696  0x00004e3e istore  0x00000002 , 0x00000005 
+ 00026697  0x00004e3f fetch  0x00000001 , 0x0000043c 
+ 00026698  0x00004e40 istore  0x00000001 , 0x00000005 
+ 00026699  0x00004e41 setarg  0x000001ff 
+ 00026700  0x00004e42 istore  0x00000002 , 0x00000005 
+ 00026701  0x00004e43 fetch  0x00000001 , 0x00004601 
+ 00026702  0x00004e44 istore  0x00000001 , 0x00000005 
+ 00026703  0x00004e45 fetch  0x00000001 , 0x000045fe 
+ 00026704  0x00004e46 istore  0x00000001 , 0x00000005 
+ 00026705  0x00004e47 jam  0x00000000 , 0x00004601 
+ 00026706  0x00004e48 rtn 
+ 00026707  0x00004e4b set1  0x00000025 , 0x00000000 
+ 00026708  0x00004e4c bpatch  0x000000a6 , 0x00004034 
+ 00026709  0x00004e4d fetch  0x00000001 , 0x00004603 
+ 00026710  0x00004e4e rtneq  0x00000001 
+ 00026711  0x00004e4f fetch  0x00000002 , 0x0000042e 
+ 00026712  0x00004e50 rtn  0x00000034 
+ 00026713  0x00004e51 fetch  0x00000001 , 0x00004601 
+ 00026714  0x00004e52 increase  0x00000001 , 0x0000003f 
+ 00026715  0x00004e53 store  0x00000001 , 0x00004601 
+ 00026716  0x00004e54 rtn 
+ 00026717  0x00004e57 fetch  0x00000002 , 0x00004607 
+ 00026718  0x00004e58 branch  0x00007f69 
+ 00026719  0x00004e5b set1  0x00000025 , 0x00000000 
+ 00026720  0x00004e5c bpatch  0x000000a7 , 0x00004034 
+ 00026721  0x00004e5e fetch  0x00000001 , 0x00004600 
+ 00026722  0x00004e5f rtn  0x00000034 
+ 00026723  0x00004e60 increase  0xffffffff , 0x0000003f 
+ 00026724  0x00004e61 store  0x00000001 , 0x00004600 
+ 00026725  0x00004e62 fetch  0x00000002 , 0x000045f6 
+ 00026726  0x00004e63 fetcht  0x00000002 , 0x0000472c 
+ 00026727  0x00004e64 isub  0x00000002 , 0x0000003e 
+ 00026728  0x00004e65 branch  0x0000686a , 0x00000002 
+ 00026729  0x00004e66 store  0x00000002 , 0x0000472c 
+ 00026730  0x00004e68 fetch  0x00000001 , 0x00004601 
+ 00026731  0x00004e69 branch  0x00006872 , 0x00000034 
+ 00026732  0x00004e6a jam  0x00000001 , 0x0000043f 
+ 00026733  0x00004e6b fetch  0x00000001 , 0x000045fe 
+ 00026734  0x00004e6c store  0x00000001 , 0x0000043e 
+ 00026735  0x00004e6d setarg  0x000000ff 
+ 00026736  0x00004e6e store  0x00000001 , 0x0000043d 
+ 00026737  0x00004e6f branch  0x00006877 
+ 00026738  0x00004e71 jam  0x00000000 , 0x0000043f 
+ 00026739  0x00004e72 fetch  0x00000001 , 0x000045fd 
+ 00026740  0x00004e73 store  0x00000001 , 0x0000043e 
+ 00026741  0x00004e74 setarg  0x000000ef 
+ 00026742  0x00004e75 store  0x00000001 , 0x0000043d 
+ 00026743  0x00004e77 set1  0x00000025 , 0x00000000 
+ 00026744  0x00004e78 bpatch  0x000000a8 , 0x00004035 
+ 00026745  0x00004e79 fetch  0x00000002 , 0x0000472c 
+ 00026746  0x00004e7a sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026747  0x00004e7b branch  0x0000687f , 0x00000002 
+ 00026748  0x00004e7c fetch  0x00000001 , 0x0000043f 
+ 00026749  0x00004e7d increase  0x00000001 , 0x0000003f 
+ 00026750  0x00004e7e store  0x00000001 , 0x0000043f 
+ 00026751  0x00004e80 call  0x00006677 
+ 00026752  0x00004e81 fetch  0x00000002 , 0x0000472c 
+ 00026753  0x00004e82 increase  0x00000008 , 0x0000003f 
+ 00026754  0x00004e83 fetcht  0x00000001 , 0x0000043f 
+ 00026755  0x00004e84 iadd  0x00000002 , 0x00000011 
+ 00026756  0x00004e86 call  0x000047dc 
+ 00026757  0x00004e87 store  0x00000002 , 0x000002a0 
+ 00026758  0x00004e88 increase  0x00000004 , 0x0000003f 
+ 00026759  0x00004e89 store  0x00000002 , 0x000002a2 
+ 00026760  0x00004e8a copy  0x0000003f , 0x00000005 
+ 00026761  0x00004e8b fetch  0x00000001 , 0x0000043c 
+ 00026762  0x00004e8c istore  0x00000001 , 0x00000005 
+ 00026763  0x00004e8d fetch  0x00000001 , 0x0000043d 
+ 00026764  0x00004e8e istore  0x00000001 , 0x00000005 
+ 00026765  0x00004e8f call  0x000068aa 
+ 00026766  0x00004e90 call  0x000068bc 
+ 00026767  0x00004e91 set1  0x00000025 , 0x00000000 
+ 00026768  0x00004e92 bpatch  0x000000a9 , 0x00004035 
+ 00026769  0x00004e93 fetch  0x00000002 , 0x00004609 
+ 00026770  0x00004e94 copy  0x0000003f , 0x00000003 
+ 00026771  0x00004e95 fetch  0x00000002 , 0x0000472c 
+ 00026772  0x00004e96 copy  0x0000003f , 0x00000039 
+ 00026773  0x00004e97 call  0x00006341 
+ 00026774  0x00004e98 copy  0x00000005 , 0x00000002 
+ 00026775  0x00004e99 copy  0x00000003 , 0x0000003f 
+ 00026776  0x00004e9a store  0x00000002 , 0x00004609 
+ 00026777  0x00004e9b copy  0x00000002 , 0x00000005 
+ 00026778  0x00004e9c fetch  0x00000001 , 0x0000043e 
+ 00026779  0x00004e9d istore  0x00000001 , 0x00000005 
+ 00026780  0x00004e9e fetch  0x00000002 , 0x000002a0 
+ 00026781  0x00004e9f copy  0x0000003f , 0x00000005 
+ 00026782  0x00004ea0 fetch  0x00000002 , 0x0000472c 
+ 00026783  0x00004ea1 fetcht  0x00000001 , 0x0000043f 
+ 00026784  0x00004ea2 iadd  0x00000002 , 0x0000003f 
+ 00026785  0x00004ea3 increase  0x00000004 , 0x0000003f 
+ 00026786  0x00004ea4 istore  0x00000002 , 0x00000005 
+ 00026787  0x00004ea5 fetch  0x00000002 , 0x000042da 
+ 00026788  0x00004ea6 istore  0x00000002 , 0x00000005 
+ 00026789  0x00004ea7 jam  0x00000000 , 0x00004601 
+ 00026790  0x00004ea8 fetch  0x00000002 , 0x0000460b 
+ 00026791  0x00004ea9 beq  0x00000000 , 0x00005b20 
+ 00026792  0x00004eaa jam  0x00000000 , 0x00000418 
+ 00026793  0x00004eab rtn 
+ 00026794  0x00004eae set1  0x00000025 , 0x00000000 
+ 00026795  0x00004eaf bpatch  0x000000aa , 0x00004035 
+ 00026796  0x00004eb0 fetch  0x00000002 , 0x0000472c 
+ 00026797  0x00004eb1 sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026798  0x00004eb2 nbranch  0x000068b3 , 0x00000002 
+ 00026799  0x00004eb3 lshift  0x0000003f , 0x0000003f 
+ 00026800  0x00004eb4 set1  0x00000000 , 0x0000003f 
+ 00026801  0x00004eb5 istore  0x00000001 , 0x00000005 
+ 00026802  0x00004eb6 rtn 
+ 00026803  0x00004eb8 fetch  0x00000002 , 0x0000472c 
+ 00026804  0x00004eb9 rshift3  0x0000003f , 0x0000003f 
+ 00026805  0x00004eba rshift4  0x0000003f , 0x00000002 
+ 00026806  0x00004ebb and_into  0x0000007f , 0x0000003f 
+ 00026807  0x00004ebc lshift  0x0000003f , 0x0000003f 
+ 00026808  0x00004ebd set0  0x00000000 , 0x0000003f 
+ 00026809  0x00004ebe istore  0x00000001 , 0x00000005 
+ 00026810  0x00004ebf istoret  0x00000001 , 0x00000005 
+ 00026811  0x00004ec0 rtn 
+ 00026812  0x00004ec2 fetch  0x00000001 , 0x00004601 
+ 00026813  0x00004ec3 rtn  0x00000034 
+ 00026814  0x00004ec4 istore  0x00000001 , 0x00000005 
+ 00026815  0x00004ec5 rtn 
+ 00026816  0x00004ecb set1  0x00000025 , 0x00000000 
+ 00026817  0x00004ecc bpatch  0x000000ab , 0x00004035 
+ 00026818  0x00004ecd call  0x00007d9e 
+ 00026819  0x00004ece call  0x00003d69 
+ 00026820  0x00004ecf call  0x00005926 
+ 00026821  0x00004ed1 set1  0x00000025 , 0x00000000 
+ 00026822  0x00004ed2 bpatch  0x000000ac , 0x00004035 
+ 00026823  0x00004ed3 call  0x000076f7 
+ 00026824  0x00004ed4 call  0x000076ce 
+ 00026825  0x00004ed5 call  0x000076e0 
+ 00026826  0x00004ed8 call  0x0000480e 
+ 00026827  0x00004ed9 nrtn  0x00000034 
+ 00026828  0x00004edb call  0x0000432d 
+ 00026829  0x00004edc call  0x0000480e 
+ 00026830  0x00004edd nrtn  0x00000034 
+ 00026831  0x00004ede set1  0x00000025 , 0x00000000 
+ 00026832  0x00004edf bpatch  0x000000ad , 0x00004035 
+ 00026833  0x00004ee1 call  0x00006913 
+ 00026834  0x00004ee2 call  0x000044f2 
+ 00026835  0x00004ee3 call  0x000067a2 
+ 00026836  0x00004ee5 call  0x000068d8 
+ 00026837  0x00004ee6 set1  0x00000025 , 0x00000000 
+ 00026838  0x00004ee7 bpatch  0x000000ae , 0x00004035 
+ 00026839  0x00004eea branch  0x00003d65 
+ 00026840  0x00004eed fetch  0x00000001 , 0x000002a8 
+ 00026841  0x00004eee bbit1  0x00000000 , 0x00004619 
+ 00026842  0x00004eef bbit1  0x00000007 , 0x00004623 
+ 00026843  0x00004ef0 rtn 
+ 00026844  0x00004ef3 set1  0x00000025 , 0x00000000 
+ 00026845  0x00004ef4 bpatch  0x000000af , 0x00004035 
+ 00026846  0x00004ef5 call  0x00004816 
+ 00026847  0x00004ef6 rtn  0x00000034 
+ 00026848  0x00004ef7 fetch  0x00000001 , 0x0000004b 
+ 00026849  0x00004ef8 rtnbit1  0x00000006 
+ 00026850  0x00004ef9 call  0x000047f5 
+ 00026851  0x00004efa store  0x00000002 , 0x0000016e 
+ 00026852  0x00004efb copy  0x0000003f , 0x00000006 
+ 00026853  0x00004efc ifetch  0x00000002 , 0x00000006 
+ 00026854  0x00004efd increase  0x00000004 , 0x0000003f 
+ 00026855  0x00004efe store  0x00000002 , 0x0000427e 
+ 00026856  0x00004eff jam  0x00000006 , 0x0000427d 
+ 00026857  0x00004f00 set1  0x00000025 , 0x00000000 
+ 00026858  0x00004f01 bpatch  0x000000b0 , 0x00004036 
+ 00026859  0x00004f02 fetch  0x00000002 , 0x000042d6 
+ 00026860  0x00004f03 branch  0x000068f9 , 0x00000034 
+ 00026861  0x00004f04 fetch  0x00000001 , 0x0000004b 
+ 00026862  0x00004f05 rtnbit0  0x00000007 
+ 00026863  0x00004f06 set0  0x00000007 , 0x0000003f 
+ 00026864  0x00004f07 store  0x00000001 , 0x0000004b 
+ 00026865  0x00004f08 jam  0x00000005 , 0x0000427d 
+ 00026866  0x00004f09 fetcht  0x00000002 , 0x000042d6 
+ 00026867  0x00004f0a fetch  0x00000002 , 0x0000016e 
+ 00026868  0x00004f0b iadd  0x00000002 , 0x0000003f 
+ 00026869  0x00004f0c store  0x00000002 , 0x0000016e 
+ 00026870  0x00004f0d fetch  0x00000002 , 0x0000427e 
+ 00026871  0x00004f0e isub  0x00000002 , 0x0000003f 
+ 00026872  0x00004f0f store  0x00000002 , 0x0000427e 
+ 00026873  0x00004f11 set1  0x00000025 , 0x00000000 
+ 00026874  0x00004f12 bpatch  0x000000b1 , 0x00004036 
+ 00026875  0x00004f13 fetch  0x00000002 , 0x0000427e 
+ 00026876  0x00004f14 branch  0x00003b31 , 0x00000034 
+ 00026877  0x00004f15 arg  0x00000104 , 0x00000002 
+ 00026878  0x00004f16 isub  0x00000002 , 0x0000003f 
+ 00026879  0x00004f17 nbranch  0x00006907 , 0x00000002 
+ 00026880  0x00004f18 set1  0x00000025 , 0x00000000 
+ 00026881  0x00004f19 bpatch  0x000000b2 , 0x00004036 
+ 00026882  0x00004f1a storet  0x00000002 , 0x0000427e 
+ 00026883  0x00004f1b fetch  0x00000002 , 0x000042d6 
+ 00026884  0x00004f1c iadd  0x00000002 , 0x0000003f 
+ 00026885  0x00004f1d store  0x00000002 , 0x000042d6 
+ 00026886  0x00004f1e branch  0x00006909 
+ 00026887  0x00004f20 setarg  0x00000000 
+ 00026888  0x00004f21 store  0x00000002 , 0x000042d6 
+ 00026889  0x00004f23 fetch  0x00000001 , 0x0000004b 
+ 00026890  0x00004f24 set1  0x00000006 , 0x0000003f 
+ 00026891  0x00004f25 store  0x00000001 , 0x0000004b 
+ 00026892  0x00004f26 rtn 
+ 00026893  0x00004f29 fetch  0x00000001 , 0x0000470d 
+ 00026894  0x00004f2a bbit1  0x00000000 , 0x00006911 
+ 00026895  0x00004f2b jam  0x00000001 , 0x000002b0 
+ 00026896  0x00004f2c rtn 
+ 00026897  0x00004f2e jam  0x0000000f , 0x000002b0 
+ 00026898  0x00004f2f rtn 
+ 00026899  0x00004f32 fetch  0x00000001 , 0x0000470a 
+ 00026900  0x00004f33 nbranch  0x00006919 , 0x00000034 
+ 00026901  0x00004f35 fetch  0x00000001 , 0x000002af 
+ 00026902  0x00004f37 rtn  0x00000034 
+ 00026903  0x00004f39 jam  0x00000000 , 0x000002af 
+ 00026904  0x00004f3b rtn 
+ 00026905  0x00004f3f set1  0x00000025 , 0x00000000 
+ 00026906  0x00004f40 bpatch  0x000000b3 , 0x00004036 
+ 00026907  0x00004f41 fetch  0x00000001 , 0x000002b0 
+ 00026908  0x00004f42 rtn  0x00000034 
+ 00026909  0x00004f43 beq  0x00000001 , 0x0000693a 
+ 00026910  0x00004f44 beq  0x00000002 , 0x00006993 
+ 00026911  0x00004f45 beq  0x00000003 , 0x00006940 
+ 00026912  0x00004f46 beq  0x00000004 , 0x00006997 
+ 00026913  0x00004f47 beq  0x0000003b , 0x0000694a 
+ 00026914  0x00004f48 beq  0x0000003c , 0x0000699a 
+ 00026915  0x00004f49 beq  0x0000000d , 0x0000694f 
+ 00026916  0x00004f4a beq  0x0000000e , 0x0000699f 
+ 00026917  0x00004f4b beq  0x0000000f , 0x00006952 
+ 00026918  0x00004f4c beq  0x00000010 , 0x000069a5 
+ 00026919  0x00004f4d beq  0x00000011 , 0x00006958 
+ 00026920  0x00004f4e beq  0x00000012 , 0x000069a9 
+ 00026921  0x00004f4f beq  0x00000013 , 0x0000695e 
+ 00026922  0x00004f50 beq  0x00000014 , 0x000069ad 
+ 00026923  0x00004f51 beq  0x00000015 , 0x00006964 
+ 00026924  0x00004f52 beq  0x00000016 , 0x000069b1 
+ 00026925  0x00004f53 beq  0x00000017 , 0x0000696a 
+ 00026926  0x00004f54 beq  0x00000018 , 0x000069b6 
+ 00026927  0x00004f55 beq  0x00000019 , 0x00006970 
+ 00026928  0x00004f56 beq  0x0000001a , 0x000069ba 
+ 00026929  0x00004f57 beq  0x0000001b , 0x00006976 
+ 00026930  0x00004f58 beq  0x0000001c , 0x000069be 
+ 00026931  0x00004f59 beq  0x0000001d , 0x0000697c 
+ 00026932  0x00004f5a beq  0x0000001e , 0x000069c3 
+ 00026933  0x00004f5b beq  0x0000001f , 0x00006982 
+ 00026934  0x00004f5c beq  0x00000020 , 0x000069c7 
+ 00026935  0x00004f5d beq  0x00000021 , 0x0000698d 
+ 00026936  0x00004f5e beq  0x00000022 , 0x000069cb 
+ 00026937  0x00004f60 rtn 
+ 00026938  0x00004f62 call  0x000069d6 
+ 00026939  0x00004f63 jam  0x00000002 , 0x000002b0 
+ 00026940  0x00004f64 fetch  0x00000001 , 0x000042e0 
+ 00026941  0x00004f65 set1  0x00000000 , 0x0000003f 
+ 00026942  0x00004f66 store  0x00000001 , 0x000042e0 
+ 00026943  0x00004f67 rtn 
+ 00026944  0x00004f69 jam  0x00000004 , 0x000002b0 
+ 00026945  0x00004f6a fetch  0x00000001 , 0x000042e0 
+ 00026946  0x00004f6b rtnbit1  0x00000002 
+ 00026947  0x00004f6c jam  0x00000003 , 0x000002b0 
+ 00026948  0x00004f6d call  0x000069de 
+ 00026949  0x00004f6e jam  0x00000004 , 0x000002b0 
+ 00026950  0x00004f6f fetch  0x00000001 , 0x000042e0 
+ 00026951  0x00004f70 set1  0x00000002 , 0x0000003f 
+ 00026952  0x00004f71 store  0x00000001 , 0x000042e0 
+ 00026953  0x00004f72 rtn 
+ 00026954  0x00004f74 call  0x00004816 
+ 00026955  0x00004f75 nrtn  0x00000034 
+ 00026956  0x00004f76 call  0x000069ef 
+ 00026957  0x00004f77 jam  0x0000003c , 0x000002b0 
+ 00026958  0x00004f78 rtn 
+ 00026959  0x00004f7a call  0x000069e4 
+ 00026960  0x00004f7b jam  0x0000000e , 0x000002b0 
+ 00026961  0x00004f7c rtn 
+ 00026962  0x00004f7e call  0x00006a02 
+ 00026963  0x00004f7f jam  0x00000010 , 0x000002b0 
+ 00026964  0x00004f80 fetch  0x00000001 , 0x000042e2 
+ 00026965  0x00004f81 set1  0x00000000 , 0x0000003f 
+ 00026966  0x00004f82 store  0x00000001 , 0x000042e2 
+ 00026967  0x00004f83 rtn 
+ 00026968  0x00004f85 call  0x00006a0a 
+ 00026969  0x00004f86 jam  0x00000012 , 0x000002b0 
+ 00026970  0x00004f87 fetch  0x00000001 , 0x000042e2 
+ 00026971  0x00004f88 set1  0x00000002 , 0x0000003f 
+ 00026972  0x00004f89 store  0x00000001 , 0x000042e2 
+ 00026973  0x00004f8a rtn 
+ 00026974  0x00004f8c call  0x00006a10 
+ 00026975  0x00004f8d jam  0x00000014 , 0x000002b0 
+ 00026976  0x00004f8e fetch  0x00000001 , 0x000042e3 
+ 00026977  0x00004f8f set1  0x00000000 , 0x0000003f 
+ 00026978  0x00004f90 store  0x00000001 , 0x000042e3 
+ 00026979  0x00004f91 rtn 
+ 00026980  0x00004f93 call  0x00006a18 
+ 00026981  0x00004f94 jam  0x00000016 , 0x000002b0 
+ 00026982  0x00004f95 fetch  0x00000001 , 0x000042e3 
+ 00026983  0x00004f96 set1  0x00000002 , 0x0000003f 
+ 00026984  0x00004f97 store  0x00000001 , 0x000042e3 
+ 00026985  0x00004f98 rtn 
+ 00026986  0x00004f9a call  0x000069f4 
+ 00026987  0x00004f9b jam  0x00000018 , 0x000002b0 
+ 00026988  0x00004f9c fetch  0x00000001 , 0x000042e1 
+ 00026989  0x00004f9d set1  0x00000000 , 0x0000003f 
+ 00026990  0x00004f9e store  0x00000001 , 0x000042e1 
+ 00026991  0x00004f9f rtn 
+ 00026992  0x00004fa1 call  0x000069fc 
+ 00026993  0x00004fa2 jam  0x0000001a , 0x000002b0 
+ 00026994  0x00004fa3 fetch  0x00000001 , 0x000042e1 
+ 00026995  0x00004fa4 set1  0x00000002 , 0x0000003f 
+ 00026996  0x00004fa5 store  0x00000001 , 0x000042e1 
+ 00026997  0x00004fa6 rtn 
+ 00026998  0x00004fa8 call  0x00006a1e 
+ 00026999  0x00004fa9 jam  0x0000001c , 0x000002b0 
+ 00027000  0x00004faa fetch  0x00000001 , 0x000042e1 
+ 00027001  0x00004fab set1  0x00000006 , 0x0000003f 
+ 00027002  0x00004fac store  0x00000001 , 0x000042e1 
+ 00027003  0x00004fad rtn 
+ 00027004  0x00004faf call  0x00006a26 
+ 00027005  0x00004fb0 fetch  0x00000001 , 0x000042e4 
+ 00027006  0x00004fb1 set1  0x00000000 
+ 00027007  0x00004fb2 store  0x00000001 , 0x000042e4 
+ 00027008  0x00004fb3 jam  0x0000001e , 0x000002b0 
+ 00027009  0x00004fb4 rtn 
+ 00027010  0x00004fb6 call  0x00006a2d 
+ 00027011  0x00004fb7 fetch  0x00000001 , 0x000042e4 
+ 00027012  0x00004fb8 set1  0x00000002 
+ 00027013  0x00004fb9 store  0x00000001 , 0x000042e4 
+ 00027014  0x00004fba jam  0x00000020 , 0x000002b0 
+ 00027015  0x00004fbb fetch  0x00000001 , 0x000045fc 
+ 00027016  0x00004fbc lshift3  0x0000003f , 0x0000003f 
+ 00027017  0x00004fbd or_into  0x00000003 , 0x0000003f 
+ 00027018  0x00004fbe arg  0x000045fd , 0x00000002 
+ 00027019  0x00004fbf storet  0x00000002 , 0x00000426 
+ 00027020  0x00004fc0 branch  0x0000663a 
+ 00027021  0x00004fc2 call  0x00006a38 
+ 00027022  0x00004fc3 fetch  0x00000001 , 0x000042e4 
+ 00027023  0x00004fc4 set1  0x00000004 
+ 00027024  0x00004fc5 store  0x00000001 , 0x000042e4 
+ 00027025  0x00004fc6 jam  0x00000022 , 0x000002b0 
+ 00027026  0x00004fc7 rtn 
+ 00027027  0x00004fca fetch  0x00000001 , 0x000042e0 
+ 00027028  0x00004fcb rtnbit0  0x00000001 
+ 00027029  0x00004fcc jam  0x00000003 , 0x000002b0 
+ 00027030  0x00004fcd branch  0x00006919 
+ 00027031  0x00004fcf fetch  0x00000001 , 0x000042e0 
+ 00027032  0x00004fd0 rtnne  0x0000003f 
+ 00027033  0x00004fd1 jam  0x0000003b , 0x000002b0 
+ 00027034  0x00004fd3 fetch  0x00000001 , 0x000002ae 
+ 00027035  0x00004fd4 rtnne  0x00000017 
+ 00027036  0x00004fd5 jam  0x00000000 , 0x000002ae 
+ 00027037  0x00004fd6 jam  0x0000000d , 0x000002b0 
+ 00027038  0x00004fd7 branch  0x00006919 
+ 00027039  0x00004fd9 fetch  0x00000001 , 0x000042e0 
+ 00027040  0x00004fda nrtn  0x00000034 
+ 00027041  0x00004fdb fetch  0x00000001 , 0x0000470d 
+ 00027042  0x00004fdc bbit1  0x00000000 , 0x000069ce 
+ 00027043  0x00004fdd bbit1  0x00000006 , 0x000069d0 
+ 00027044  0x00004fde branch  0x000069d4 
+ 00027045  0x00004fe0 fetch  0x00000001 , 0x000042e2 
+ 00027046  0x00004fe1 rtnbit0  0x00000001 
+ 00027047  0x00004fe2 jam  0x00000011 , 0x000002b0 
+ 00027048  0x00004fe3 branch  0x00006919 
+ 00027049  0x00004fe5 fetch  0x00000001 , 0x000042e2 
+ 00027050  0x00004fe6 rtnne  0x0000003f 
+ 00027051  0x00004fe7 jam  0x00000013 , 0x000002b0 
+ 00027052  0x00004fe8 branch  0x00006919 
+ 00027053  0x00004fea fetch  0x00000001 , 0x000042e3 
+ 00027054  0x00004feb rtnbit0  0x00000001 
+ 00027055  0x00004fec jam  0x00000015 , 0x000002b0 
+ 00027056  0x00004fed branch  0x00006919 
+ 00027057  0x00004fef fetch  0x00000001 , 0x000042e3 
+ 00027058  0x00004ff0 rtnne  0x0000003f 
+ 00027059  0x00004ff1 fetch  0x00000001 , 0x0000470d 
+ 00027060  0x00004ff2 bbit1  0x00000006 , 0x000069d0 
+ 00027061  0x00004ff3 branch  0x000069d4 
+ 00027062  0x00004ff5 fetch  0x00000001 , 0x000042e1 
+ 00027063  0x00004ff6 rtnbit0  0x00000001 
+ 00027064  0x00004ff7 jam  0x00000019 , 0x000002b0 
+ 00027065  0x00004ff8 branch  0x00006919 
+ 00027066  0x00004ffa fetch  0x00000001 , 0x000042e1 
+ 00027067  0x00004ffb rtnne  0x0000003f 
+ 00027068  0x00004ffc jam  0x0000001b , 0x000002b0 
+ 00027069  0x00004ffd branch  0x00006919 
+ 00027070  0x00004fff fetch  0x00000001 , 0x000042e1 
+ 00027071  0x00005000 rtnne  0x000000ff 
+ 00027072  0x00005001 fetch  0x00000001 , 0x0000470d 
+ 00027073  0x00005002 bbit1  0x00000006 , 0x000069d2 
+ 00027074  0x00005003 branch  0x000069d4 
+ 00027075  0x00005005 fetch  0x00000001 , 0x000042e4 
+ 00027076  0x00005006 rtnbit0  0x00000001 
+ 00027077  0x00005007 jam  0x0000001f , 0x000002b0 
+ 00027078  0x00005008 branch  0x00006919 
+ 00027079  0x0000500a fetch  0x00000001 , 0x000042e4 
+ 00027080  0x0000500b rtnbit0  0x00000003 
+ 00027081  0x0000500c jam  0x00000021 , 0x000002b0 
+ 00027082  0x0000500d branch  0x00006919 
+ 00027083  0x0000500f fetch  0x00000001 , 0x000042e4 
+ 00027084  0x00005010 rtnne  0x000000ff 
+ 00027085  0x00005011 branch  0x000069d4 
+ 00027086  0x00005014 jam  0x0000000f , 0x000002b0 
+ 00027087  0x00005015 branch  0x00006919 
+ 00027088  0x00005018 jam  0x00000017 , 0x000002b0 
+ 00027089  0x00005019 branch  0x00006919 
+ 00027090  0x0000501b jam  0x0000001d , 0x000002b0 
+ 00027091  0x0000501c branch  0x00006919 
+ 00027092  0x00005021 jam  0x00000000 , 0x000002b0 
+ 00027093  0x00005022 rtn 
+ 00027094  0x00005024 set1  0x00000025 , 0x00000000 
+ 00027095  0x00005025 bpatch  0x000000b4 , 0x00004036 
+ 00027096  0x00005026 call  0x0000485e 
+ 00027097  0x00005027 setarg  0x00000001 
+ 00027098  0x00005028 copy  0x0000003f , 0x00000002 
+ 00027099  0x00005029 setarg  0x00000050 
+ 00027100  0x0000502a copy  0x0000003f , 0x0000000b 
+ 00027101  0x0000502b branch  0x0000463a 
+ 00027102  0x0000502e set1  0x00000025 , 0x00000000 
+ 00027103  0x0000502f bpatch  0x000000b5 , 0x00004036 
+ 00027104  0x00005030 call  0x0000485e 
+ 00027105  0x00005031 fetch  0x00000002 , 0x000042d8 
+ 00027106  0x00005032 copy  0x0000003f , 0x00000002 
+ 00027107  0x00005033 branch  0x0000464a 
+ 00027108  0x00005036 set1  0x00000025 , 0x00000000 
+ 00027109  0x00005037 bpatch  0x000000b6 , 0x00004036 
+ 00027110  0x00005038 call  0x0000485e 
+ 00027111  0x00005039 fetch  0x00000002 , 0x000042d8 
+ 00027112  0x0000503a copy  0x0000003f , 0x00000002 
+ 00027113  0x0000503b arg  0x00000050 , 0x0000000b 
+ 00027114  0x0000503c call  0x00004660 
+ 00027115  0x0000503d fetch  0x00000001 , 0x000042e0 
+ 00027116  0x0000503e set0  0x00000005 , 0x0000003f 
+ 00027117  0x0000503f store  0x00000001 , 0x000042e0 
+ 00027118  0x00005040 rtn 
+ 00027119  0x00005043 set1  0x00000025 , 0x00000000 
+ 00027120  0x00005044 bpatch  0x000000b7 , 0x00004036 
+ 00027121  0x00005045 call  0x0000486c 
+ 00027122  0x00005046 call  0x00006d01 
+ 00027123  0x00005047 branch  0x0000467c 
+ 00027124  0x0000504a set1  0x00000025 , 0x00000000 
+ 00027125  0x0000504b bpatch  0x000000b8 , 0x00004037 
+ 00027126  0x0000504c call  0x0000485e 
+ 00027127  0x0000504d setarg  0x00000003 
+ 00027128  0x0000504e copy  0x0000003f , 0x00000002 
+ 00027129  0x0000504f setarg  0x00000051 
+ 00027130  0x00005050 copy  0x0000003f , 0x0000000b 
+ 00027131  0x00005051 branch  0x0000463a 
+ 00027132  0x00005054 set1  0x00000025 , 0x00000000 
+ 00027133  0x00005055 bpatch  0x000000b9 , 0x00004037 
+ 00027134  0x00005056 call  0x0000485e 
+ 00027135  0x00005057 fetch  0x00000002 , 0x000042da 
+ 00027136  0x00005058 copy  0x0000003f , 0x00000002 
+ 00027137  0x00005059 branch  0x0000464a 
+ 00027138  0x0000505c set1  0x00000025 , 0x00000000 
+ 00027139  0x0000505d bpatch  0x000000ba , 0x00004037 
+ 00027140  0x0000505e call  0x0000485e 
+ 00027141  0x0000505f setarg  0x00000011 
+ 00027142  0x00005060 copy  0x0000003f , 0x00000002 
+ 00027143  0x00005061 setarg  0x00000052 
+ 00027144  0x00005062 copy  0x0000003f , 0x0000000b 
+ 00027145  0x00005063 branch  0x0000463a 
+ 00027146  0x00005066 set1  0x00000025 , 0x00000000 
+ 00027147  0x00005067 bpatch  0x000000bb , 0x00004037 
+ 00027148  0x00005068 call  0x0000485e 
+ 00027149  0x00005069 fetch  0x00000002 , 0x000042dc 
+ 00027150  0x0000506a copy  0x0000003f , 0x00000002 
+ 00027151  0x0000506b branch  0x0000464a 
+ 00027152  0x0000506e set1  0x00000025 , 0x00000000 
+ 00027153  0x0000506f bpatch  0x000000bc , 0x00004037 
+ 00027154  0x00005070 call  0x0000485e 
+ 00027155  0x00005071 setarg  0x00000013 
+ 00027156  0x00005072 copy  0x0000003f , 0x00000002 
+ 00027157  0x00005073 setarg  0x00000053 
+ 00027158  0x00005074 copy  0x0000003f , 0x0000000b 
+ 00027159  0x00005075 branch  0x0000463a 
+ 00027160  0x00005078 set1  0x00000025 , 0x00000000 
+ 00027161  0x00005079 bpatch  0x000000bd , 0x00004037 
+ 00027162  0x0000507a call  0x0000485e 
+ 00027163  0x0000507b fetch  0x00000002 , 0x000042de 
+ 00027164  0x0000507c copy  0x0000003f , 0x00000002 
+ 00027165  0x0000507d branch  0x0000464a 
+ 00027166  0x00005080 set1  0x00000025 , 0x00000000 
+ 00027167  0x00005081 bpatch  0x000000be , 0x00004037 
+ 00027168  0x00005082 call  0x0000487a 
+ 00027169  0x00005084 jam  0x00000003 , 0x0000042a 
+ 00027170  0x00005085 jam  0x0000001c , 0x0000042d 
+ 00027171  0x00005086 call  0x000067b3 
+ 00027172  0x00005087 jam  0x00000001 , 0x000045fb 
+ 00027173  0x00005088 rtn 
+ 00027174  0x0000508b set1  0x00000025 , 0x00000000 
+ 00027175  0x0000508c bpatch  0x000000bf , 0x00004037 
+ 00027176  0x0000508d call  0x0000487a 
+ 00027177  0x0000508e fetcht  0x00000001 , 0x000045fc 
+ 00027178  0x0000508f call  0x0000667e 
+ 00027179  0x00005090 storet  0x00000001 , 0x000045f5 
+ 00027180  0x00005091 branch  0x000067d0 
+ 00027181  0x00005094 set1  0x00000025 , 0x00000000 
+ 00027182  0x00005095 bpatch  0x000000c0 , 0x00004038 
+ 00027183  0x00005096 call  0x0000487a 
+ 00027184  0x00005097 fetcht  0x00000001 , 0x000045f5 
+ 00027185  0x00005098 call  0x00006678 
+ 00027186  0x00005099 call  0x0000661f 
+ 00027187  0x0000509a store  0x00000001 , 0x0000042d 
+ 00027188  0x0000509b fetcht  0x00000001 , 0x000045f5 
+ 00027189  0x0000509c call  0x00006678 
+ 00027190  0x0000509d storet  0x00000001 , 0x0000042a 
+ 00027191  0x0000509e branch  0x000067b3 
+ 00027192  0x000050a1 set1  0x00000025 , 0x00000000 
+ 00027193  0x000050a2 bpatch  0x000000c1 , 0x00004038 
+ 00027194  0x000050a3 call  0x0000487a 
+ 00027195  0x000050a4 fetcht  0x00000001 , 0x000045f5 
+ 00027196  0x000050a5 call  0x00006678 
+ 00027197  0x000050a6 branch  0x0000680a 
+ 00027198  0x000050b4 set1  0x00000025 , 0x00000000 
+ 00027199  0x000050b5 bpatch  0x000000c2 , 0x00004038 
+ 00027200  0x000050b6 fetch  0x00000002 , 0x0000028d 
+ 00027201  0x000050b7 iforce  0x00000006 
+ 00027202  0x000050b8 ifetch  0x00000001 , 0x00000006 
+ 00027203  0x000050b9 copy  0x0000003f , 0x00000012 
+ 00027204  0x000050ba store  0x00000001 , 0x00000446 
+ 00027205  0x000050bb ifetch  0x00000002 , 0x00000006 
+ 00027206  0x000050bc store  0x00000002 , 0x00000447 
+ 00027207  0x000050bd ifetch  0x00000001 , 0x00000006 
+ 00027208  0x000050be lshift8  0x0000003f , 0x0000000b 
+ 00027209  0x000050bf ifetch  0x00000001 , 0x00000006 
+ 00027210  0x000050c0 iadd  0x0000000b , 0x0000000b 
+ 00027211  0x000050c1 set1  0x00000025 , 0x00000000 
+ 00027212  0x000050c2 bpatch  0x000000c3 , 0x00004038 
+ 00027213  0x000050c3 deposit  0x00000012 
+ 00027214  0x000050c4 beq  0x00000002 , 0x00006a53 
+ 00027215  0x000050c5 beq  0x00000004 , 0x00006a7c 
+ 00027216  0x000050c6 beq  0x00000006 , 0x00006b5d 
+ 00027217  0x000050c7 beq  0x00000007 , 0x00006d18 
+ 00027218  0x000050c8 branch  0x00006d40 
+ 00027219  0x000050d4 call  0x00006d4f 
+ 00027220  0x000050d5 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00027221  0x000050d6 branch  0x00006dbd , 0x00000001 
+ 00027222  0x000050d7 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027223  0x000050d8 branch  0x00006d43 , 0x00000001 
+ 00027224  0x000050da ifetch  0x00000002 , 0x00000006 
+ 00027225  0x000050db store  0x00000002 , 0x0000044b 
+ 00027226  0x000050dc increase  0xfffffffe , 0x0000000b 
+ 00027227  0x000050de increase  0xffffffff , 0x0000000b 
+ 00027228  0x000050df nbranch  0x00006d3d , 0x00000005 
+ 00027229  0x000050e0 arg  0x00000440 , 0x0000000b 
+ 00027230  0x000050e1 ifetch  0x00000002 , 0x0000000b 
+ 00027231  0x000050e2 rtn  0x00000034 
+ 00027232  0x000050e3 increase  0x00000002 , 0x0000000b 
+ 00027233  0x000050e4 call  0x00006e09 
+ 00027234  0x000050e5 call  0x00004878 
+ 00027235  0x000050e6 force  0x00000003 , 0x0000003f 
+ 00027236  0x000050e7 istore  0x00000001 , 0x00000005 
+ 00027237  0x000050e8 fetch  0x00000002 , 0x00000447 
+ 00027238  0x000050e9 istore  0x00000002 , 0x00000005 
+ 00027239  0x000050ea lshift2  0x00000007 , 0x0000003f 
+ 00027240  0x000050eb add  0x0000003f , 0x00000005 , 0x0000003f 
+ 00027241  0x000050ec add  0x0000003f , 0x00000005 , 0x00000013 
+ 00027242  0x000050ed byteswap  0x0000003f , 0x0000003f 
+ 00027243  0x000050ee istore  0x00000002 , 0x00000005 
+ 00027244  0x000050ef deposit  0x00000007 
+ 00027245  0x000050f0 byteswap  0x0000003f , 0x0000003f 
+ 00027246  0x000050f1 istore  0x00000002 , 0x00000005 
+ 00027247  0x000050f2 istore  0x00000002 , 0x00000005 
+ 00027248  0x000050f3 arg  0x0000045c , 0x00000006 
+ 00027249  0x000050f4 copy  0x00000007 , 0x00000039 
+ 00027250  0x000050f5 branch  0x00006a76 , 0x00000005 
+ 00027251  0x000050f7 ifetch  0x00000004 , 0x00000006 
+ 00027252  0x000050f8 istore  0x00000004 , 0x00000005 
+ 00027253  0x000050f9 loop  0x00006a73 
+ 00027254  0x000050fb force  0x00000000 , 0x0000003f 
+ 00027255  0x000050fc istore  0x00000001 , 0x00000005 
+ 00027256  0x000050fd deposit  0x00000013 
+ 00027257  0x000050fe store  0x00000001 , 0x0000029e 
+ 00027258  0x000050ff branch  0x00003b31 , 0x00000034 
+ 00027259  0x00005100 rtn 
+ 00027260  0x0000510c ifetch  0x00000004 , 0x00000006 
+ 00027261  0x0000510d store  0x00000004 , 0x00000455 
+ 00027262  0x0000510e increase  0xfffffffc , 0x0000000b 
+ 00027263  0x0000510f iforce  0x00000002 
+ 00027264  0x00005110 ifetch  0x00000002 , 0x00000006 
+ 00027265  0x00005111 byteswap  0x0000003f , 0x0000003f 
+ 00027266  0x00005112 increase  0xffffffee , 0x0000003f 
+ 00027267  0x00005113 store  0x00000002 , 0x00000449 
+ 00027268  0x00005114 increase  0xfffffffe , 0x0000000b 
+ 00027269  0x00005115 call  0x00006da6 
+ 00027270  0x00005116 branch  0x00006d43 , 0x00000005 
+ 00027271  0x00005117 compare  0x00000005 , 0x00000011 , 0x000000ff 
+ 00027272  0x00005119 branch  0x00006a8c , 0x00000001 
+ 00027273  0x0000511b arg  0x00000428 , 0x00000005 
+ 00027274  0x0000511c force  0x00000000 , 0x00000007 
+ 00027275  0x0000511d branch  0x00006a9c 
+ 00027276  0x0000511f ifetch  0x00000001 , 0x00000006 
+ 00027277  0x00005120 bne  0x0000000a , 0x00006d43 
+ 00027278  0x00005121 ifetch  0x00000002 , 0x00000006 
+ 00027279  0x00005122 nbranch  0x00006a9a , 0x00000034 
+ 00027280  0x00005123 ifetch  0x00000001 , 0x00000006 
+ 00027281  0x00005124 bne  0x000000ff , 0x00006a98 
+ 00027282  0x00005125 ifetch  0x00000001 , 0x00000006 
+ 00027283  0x00005126 bne  0x000000ff , 0x00006a96 
+ 00027284  0x00005127 increase  0xfffffffb , 0x00000006 
+ 00027285  0x00005128 branch  0x00006af2 
+ 00027286  0x0000512a increase  0xfffffffb , 0x00000006 
+ 00027287  0x0000512b branch  0x00006a89 
+ 00027288  0x0000512d increase  0xfffffffc , 0x00000006 
+ 00027289  0x0000512e branch  0x00006a89 
+ 00027290  0x00005130 increase  0xfffffffd , 0x00000006 
+ 00027291  0x00005131 branch  0x00006a89 
+ 00027292  0x00005133 ifetch  0x00000001 , 0x00000006 
+ 00027293  0x00005134 beq  0x00000009 , 0x00006ab1 
+ 00027294  0x00005135 beq  0x0000000a , 0x00006a9f 
+ 00027295  0x00005137 ifetch  0x00000002 , 0x00000006 
+ 00027296  0x00005138 istore  0x00000002 , 0x00000005 
+ 00027297  0x00005139 increase  0x00000001 , 0x00000007 
+ 00027298  0x0000513a byteswap  0x0000003f , 0x00000012 
+ 00027299  0x0000513b ifetch  0x00000002 , 0x00000006 
+ 00027300  0x0000513c byteswap  0x0000003f , 0x0000003f 
+ 00027301  0x0000513e increase  0x00000001 , 0x00000012 
+ 00027302  0x0000513f isub  0x00000012 , 0x0000003e 
+ 00027303  0x00005140 nbranch  0x00006aae , 0x00000002 
+ 00027304  0x00005141 copy  0x0000003f , 0x00000013 
+ 00027305  0x00005142 byteswap  0x00000012 , 0x0000003f 
+ 00027306  0x00005143 istore  0x00000002 , 0x00000005 
+ 00027307  0x00005144 increase  0x00000001 , 0x00000007 
+ 00027308  0x00005145 copy  0x00000013 , 0x0000003f 
+ 00027309  0x00005146 branch  0x00006aa5 
+ 00027310  0x00005148 increase  0xfffffffb , 0x0000000b 
+ 00027311  0x00005149 increase  0xfffffffb , 0x00000011 
+ 00027312  0x0000514a branch  0x00006ab6 
+ 00027313  0x0000514c ifetch  0x00000002 , 0x00000006 
+ 00027314  0x0000514d istore  0x00000002 , 0x00000005 
+ 00027315  0x0000514e increase  0x00000001 , 0x00000007 
+ 00027316  0x0000514f increase  0xfffffffd , 0x0000000b 
+ 00027317  0x00005150 increase  0xfffffffd , 0x00000011 
+ 00027318  0x00005152 nbranch  0x00006d43 , 0x00000002 
+ 00027319  0x00005153 nbranch  0x00006a9c , 0x00000005 
+ 00027320  0x00005154 increase  0xffffffff , 0x0000000b 
+ 00027321  0x00005155 nbranch  0x00006d43 , 0x00000005 
+ 00027322  0x00005157 call  0x00004878 
+ 00027323  0x00005158 increase  0x0000000a , 0x00000005 
+ 00027324  0x00005159 arg  0x00000428 , 0x00000011 
+ 00027325  0x0000515b set1  0x00000025 , 0x00000000 
+ 00027326  0x0000515c bpatch  0x000000c4 , 0x00004038 
+ 00027327  0x0000515d copy  0x00000007 , 0x0000003f 
+ 00027328  0x0000515e branch  0x00006ad2 , 0x00000034 
+ 00027329  0x0000515f ifetch  0x00000002 , 0x00000011 
+ 00027330  0x00005160 branch  0x00006ad2 , 0x00000034 
+ 00027331  0x00005161 iforce  0x00000012 
+ 00027332  0x00005162 fetch  0x00000004 , 0x00000455 
+ 00027333  0x00005163 iforce  0x00000002 
+ 00027334  0x00005164 call  0x00006e52 
+ 00027335  0x00005165 branch  0x00006acf , 0x00000034 
+ 00027336  0x00005166 increase  0xfffffffd , 0x00000006 
+ 00027337  0x00005167 ifetch  0x00000003 , 0x00000006 
+ 00027338  0x00005168 istore  0x00000003 , 0x00000005 
+ 00027339  0x00005169 call  0x00006cea 
+ 00027340  0x0000516a branch  0x00006acf , 0x00000034 
+ 00027341  0x0000516b iforce  0x00000039 
+ 00027342  0x0000516c call  0x00007ecd 
+ 00027343  0x0000516e increase  0x00000002 , 0x00000011 
+ 00027344  0x0000516f increase  0xffffffff , 0x00000007 
+ 00027345  0x00005170 branch  0x00006abd 
+ 00027346  0x00005173 set1  0x00000025 , 0x00000000 
+ 00027347  0x00005174 bpatch  0x000000c5 , 0x00004038 
+ 00027348  0x00005175 force  0x00000000 , 0x0000003f 
+ 00027349  0x00005176 istore  0x00000001 , 0x00000005 
+ 00027350  0x00005177 increase  0xffffffff , 0x00000005 
+ 00027351  0x00005178 fetcht  0x00000002 , 0x0000029c 
+ 00027352  0x00005179 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027353  0x0000517a isub  0x00000005 , 0x0000003f 
+ 00027354  0x0000517b sub  0x0000003f , 0x00000000 , 0x00000011 
+ 00027355  0x0000517c byteswap  0x00000011 , 0x0000003f 
+ 00027356  0x0000517d add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027357  0x0000517e istore  0x00000002 , 0x00000012 
+ 00027358  0x0000517f increase  0x00000003 , 0x00000011 
+ 00027359  0x00005180 byteswap  0x00000011 , 0x0000003f 
+ 00027360  0x00005181 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027361  0x00005182 istore  0x00000002 , 0x00000012 
+ 00027362  0x00005183 increase  0x00000003 , 0x00000011 
+ 00027363  0x00005184 byteswap  0x00000011 , 0x0000003f 
+ 00027364  0x00005185 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027365  0x00005186 istore  0x00000002 , 0x00000012 
+ 00027366  0x00005187 increase  0x00000005 , 0x00000011 
+ 00027367  0x00005188 copy  0x00000011 , 0x0000003f 
+ 00027368  0x00005189 store  0x00000002 , 0x0000029e 
+ 00027369  0x0000518a setarg  0x00000036 
+ 00027370  0x0000518b add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027371  0x0000518c istore  0x00000001 , 0x00000012 
+ 00027372  0x0000518d setarg  0x00000005 
+ 00027373  0x0000518e istore  0x00000001 , 0x00000002 
+ 00027374  0x0000518f fetch  0x00000002 , 0x00000447 
+ 00027375  0x00005190 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027376  0x00005191 istore  0x00000002 , 0x00000012 
+ 00027377  0x00005192 rtn 
+ 00027378  0x00005194 ifetch  0x00000001 , 0x00000006 
+ 00027379  0x00005195 bne  0x0000000a , 0x00006d43 
+ 00027380  0x00005196 ifetch  0x00000002 , 0x00000006 
+ 00027381  0x00005197 nbranch  0x00006d43 , 0x00000034 
+ 00027382  0x00005198 ifetch  0x00000001 , 0x00000006 
+ 00027383  0x00005199 bne  0x000000ff , 0x00006d43 
+ 00027384  0x0000519a ifetch  0x00000001 , 0x00000006 
+ 00027385  0x0000519b bne  0x000000ff , 0x00006d43 
+ 00027386  0x0000519c increase  0xfffffffb , 0x0000000b 
+ 00027387  0x0000519d ifetch  0x00000001 , 0x00000006 
+ 00027388  0x0000519e beq  0x00000000 , 0x00006aff 
+ 00027389  0x0000519f beq  0x00000001 , 0x00006b02 
+ 00027390  0x000051a0 beq  0x00000002 , 0x00006b06 
+ 00027391  0x000051a2 store  0x00000002 , 0x00000444 
+ 00027392  0x000051a3 increase  0xffffffff , 0x0000000b 
+ 00027393  0x000051a4 branch  0x00006b0a 
+ 00027394  0x000051a6 ifetch  0x00000001 , 0x00000006 
+ 00027395  0x000051a7 store  0x00000002 , 0x00000444 
+ 00027396  0x000051a8 increase  0xfffffffe , 0x0000000b 
+ 00027397  0x000051a9 branch  0x00006b0a 
+ 00027398  0x000051ab ifetch  0x00000002 , 0x00000006 
+ 00027399  0x000051ac byteswap  0x0000003f , 0x0000003f 
+ 00027400  0x000051ad store  0x00000002 , 0x00000444 
+ 00027401  0x000051ae increase  0xfffffffd , 0x0000000b 
+ 00027402  0x000051b0 nbranch  0x00006d3d , 0x00000005 
+ 00027403  0x000051b1 set1  0x00000025 , 0x00000000 
+ 00027404  0x000051b2 bpatch  0x000000c6 , 0x00004038 
+ 00027405  0x000051b3 call  0x00006e20 
+ 00027406  0x000051b4 nbranch  0x00006d3a , 0x00000005 
+ 00027407  0x000051b5 copy  0x00000006 , 0x00000011 
+ 00027408  0x000051b6 call  0x00004878 
+ 00027409  0x000051b7 copy  0x00000011 , 0x00000006 
+ 00027410  0x000051b8 increase  0x00000003 , 0x00000005 
+ 00027411  0x000051b9 copy  0x00000006 , 0x0000000b 
+ 00027412  0x000051ba call  0x00006dea 
+ 00027413  0x000051bb copy  0x0000003f , 0x00000011 
+ 00027414  0x000051bc fetch  0x00000002 , 0x00000444 
+ 00027415  0x000051bd copy  0x0000003f , 0x00000012 
+ 00027416  0x000051be copy  0x00000011 , 0x0000003f 
+ 00027417  0x000051bf isub  0x00000012 , 0x00000012 
+ 00027418  0x000051c0 fetch  0x00000002 , 0x00000449 
+ 00027419  0x000051c1 isub  0x00000012 , 0x0000003e 
+ 00027420  0x000051c2 nbranch  0x00006b38 , 0x00000002 
+ 00027421  0x000051c4 disable  0x00000028 
+ 00027422  0x000051c5 fetch  0x00000002 , 0x00000444 
+ 00027423  0x000051c6 branch  0x00006b2b , 0x00000034 
+ 00027424  0x000051c7 iadd  0x0000000b , 0x00000006 
+ 00027425  0x000051c8 increase  0x00000003 , 0x00000012 
+ 00027426  0x000051c9 copy  0x00000012 , 0x00000039 
+ 00027427  0x000051ca copy  0x00000039 , 0x0000003f 
+ 00027428  0x000051cb increase  0x00000003 , 0x0000003f 
+ 00027429  0x000051cc byteswap  0x0000003f , 0x0000003f 
+ 00027430  0x000051cd istore  0x00000002 , 0x00000005 
+ 00027431  0x000051ce copy  0x00000039 , 0x0000003f 
+ 00027432  0x000051cf byteswap  0x0000003f , 0x0000003f 
+ 00027433  0x000051d0 istore  0x00000002 , 0x00000005 
+ 00027434  0x000051d1 branch  0x00006b46 
+ 00027435  0x000051d3 add  0x00000011 , 0x00000006 , 0x00000039 
+ 00027436  0x000051d4 branch  0x00006b2f , 0x00000028 
+ 00027437  0x000051d5 byteswap  0x00000039 , 0x0000003f 
+ 00027438  0x000051d6 branch  0x00006b32 
+ 00027439  0x000051d8 copy  0x00000039 , 0x0000003f 
+ 00027440  0x000051d9 increase  0x00000002 , 0x0000003f 
+ 00027441  0x000051da byteswap  0x0000003f , 0x0000003f 
+ 00027442  0x000051dc istore  0x00000002 , 0x00000005 
+ 00027443  0x000051dd increase  0xfffffffd , 0x00000039 
+ 00027444  0x000051de byteswap  0x00000039 , 0x0000003f 
+ 00027445  0x000051df istore  0x00000002 , 0x00000005 
+ 00027446  0x000051e0 copy  0x0000000b , 0x00000006 
+ 00027447  0x000051e1 branch  0x00006b46 
+ 00027448  0x000051e3 enable  0x00000028 
+ 00027449  0x000051e4 fetch  0x00000002 , 0x00000449 
+ 00027450  0x000051e5 copy  0x0000003f , 0x00000011 
+ 00027451  0x000051e6 copy  0x0000003f , 0x00000039 
+ 00027452  0x000051e7 fetch  0x00000002 , 0x00000444 
+ 00027453  0x000051e8 branch  0x00006b2b , 0x00000034 
+ 00027454  0x000051e9 iadd  0x0000000b , 0x00000006 
+ 00027455  0x000051ea copy  0x00000011 , 0x0000003f 
+ 00027456  0x000051eb increase  0x00000005 , 0x0000003f 
+ 00027457  0x000051ec byteswap  0x0000003f , 0x0000003f 
+ 00027458  0x000051ed istore  0x00000002 , 0x00000005 
+ 00027459  0x000051ee copy  0x00000011 , 0x0000003f 
+ 00027460  0x000051ef byteswap  0x0000003f , 0x0000003f 
+ 00027461  0x000051f0 istore  0x00000002 , 0x00000005 
+ 00027462  0x000051f2 ifetch  0x00000001 , 0x00000006 
+ 00027463  0x000051f3 istore  0x00000001 , 0x00000005 
+ 00027464  0x000051f4 loop  0x00006b46 
+ 00027465  0x000051f5 nbranch  0x00006b51 , 0x00000028 
+ 00027466  0x000051f6 force  0x00000002 , 0x0000003f 
+ 00027467  0x000051f7 istore  0x00000001 , 0x00000005 
+ 00027468  0x000051f8 copy  0x00000006 , 0x0000003f 
+ 00027469  0x000051f9 isub  0x0000000b , 0x0000003f 
+ 00027470  0x000051fa byteswap  0x0000003f , 0x0000003f 
+ 00027471  0x000051fb istore  0x00000002 , 0x00000005 
+ 00027472  0x000051fc branch  0x00006b53 
+ 00027473  0x000051fe force  0x00000000 , 0x0000003f 
+ 00027474  0x000051ff istore  0x00000001 , 0x00000005 
+ 00027475  0x00005201 fetch  0x00000002 , 0x0000029c 
+ 00027476  0x00005202 isub  0x00000005 , 0x0000003f 
+ 00027477  0x00005203 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027478  0x00005204 store  0x00000002 , 0x0000029e 
+ 00027479  0x00005205 call  0x00004878 
+ 00027480  0x00005206 setarg  0x00000005 
+ 00027481  0x00005207 istore  0x00000001 , 0x00000005 
+ 00027482  0x00005208 fetch  0x00000002 , 0x00000447 
+ 00027483  0x00005209 istore  0x00000002 , 0x00000005 
+ 00027484  0x0000520a rtn 
+ 00027485  0x00005217 call  0x00006d4f 
+ 00027486  0x00005218 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027487  0x00005219 branch  0x00006b88 , 0x00000001 
+ 00027488  0x0000521a ifetch  0x00000002 , 0x00000006 
+ 00027489  0x0000521b byteswap  0x0000003f , 0x0000003f 
+ 00027490  0x0000521c increase  0xffffffee , 0x0000003f 
+ 00027491  0x0000521d store  0x00000002 , 0x00000449 
+ 00027492  0x0000521e increase  0xfffffffe , 0x0000000b 
+ 00027493  0x0000521f call  0x00006da6 
+ 00027494  0x00005220 arg  0x00000428 , 0x00000005 
+ 00027495  0x00005221 force  0x00000000 , 0x00000007 
+ 00027496  0x00005223 ifetch  0x00000003 , 0x00000006 
+ 00027497  0x00005224 bne  0x00000009 , 0x00006b88 
+ 00027498  0x00005226 rshift8  0x0000003f , 0x0000003f 
+ 00027499  0x00005227 istore  0x00000002 , 0x00000005 
+ 00027500  0x00005228 increase  0x00000001 , 0x00000007 
+ 00027501  0x00005229 increase  0xfffffffd , 0x0000000b 
+ 00027502  0x0000522a increase  0xfffffffd , 0x00000011 
+ 00027503  0x0000522b nbranch  0x00006d43 , 0x00000002 
+ 00027504  0x0000522c nbranch  0x00006b68 , 0x00000005 
+ 00027505  0x0000522d increase  0xffffffff , 0x0000000b 
+ 00027506  0x0000522e nbranch  0x00006d43 , 0x00000005 
+ 00027507  0x00005230 call  0x00004878 
+ 00027508  0x00005231 increase  0x0000000d , 0x00000005 
+ 00027509  0x00005232 fetch  0x00000002 , 0x00000440 
+ 00027510  0x00005233 iforce  0x00000013 
+ 00027511  0x00005234 arg  0x00000428 , 0x00000011 
+ 00027512  0x00005236 ifetch  0x00000004 , 0x00000011 
+ 00027513  0x00005237 branch  0x00006bae , 0x00000034 
+ 00027514  0x00005238 ifetch  0x00000002 , 0x00000011 
+ 00027515  0x00005239 iforce  0x00000012 
+ 00027516  0x0000523a call  0x00006e2e 
+ 00027517  0x0000523b branch  0x00006b86 , 0x00000034 
+ 00027518  0x0000523c increase  0xfffffffd , 0x00000006 
+ 00027519  0x0000523d ifetch  0x00000003 , 0x00000006 
+ 00027520  0x0000523e istore  0x00000003 , 0x00000005 
+ 00027521  0x0000523f call  0x00006cea 
+ 00027522  0x00005240 iforce  0x00000039 
+ 00027523  0x00005242 ifetch  0x00000001 , 0x00000006 
+ 00027524  0x00005243 istore  0x00000001 , 0x00000005 
+ 00027525  0x00005244 loop  0x00006b83 
+ 00027526  0x00005246 increase  0x00000002 , 0x00000011 
+ 00027527  0x00005247 branch  0x00006b78 
+ 00027528  0x00005249 set1  0x00000025 , 0x00000000 
+ 00027529  0x0000524a bpatch  0x000000c7 , 0x00004038 
+ 00027530  0x0000524e ifetch  0x00000001 , 0x00000006 
+ 00027531  0x00005250 ifetch  0x00000001 , 0x00000006 
+ 00027532  0x00005252 increase  0xfffffffb , 0x0000000b 
+ 00027533  0x00005253 increase  0xfffffffb , 0x00000011 
+ 00027534  0x00005254 nbranch  0x00006d43 , 0x00000002 
+ 00027535  0x00005255 ifetch  0x00000001 , 0x00000006 
+ 00027536  0x00005256 increase  0xffffffff , 0x0000000b 
+ 00027537  0x00005257 jam  0x00000000 , 0x00000444 
+ 00027538  0x00005258 jam  0x00000000 , 0x00000445 
+ 00027539  0x00005259 nbranch  0x00006b9f , 0x00000034 
+ 00027540  0x0000525a arg  0x00000440 , 0x0000000b 
+ 00027541  0x0000525b ifetch  0x00000002 , 0x0000000b 
+ 00027542  0x0000525d increase  0x00000002 , 0x0000000b 
+ 00027543  0x0000525e call  0x00006e09 
+ 00027544  0x0000525f deposit  0x00000007 
+ 00027545  0x00005260 store  0x00000001 , 0x00000474 
+ 00027546  0x00005261 branch  0x00006dc0 , 0x00000034 
+ 00027547  0x00005262 arg  0x00000000 , 0x00000007 
+ 00027548  0x00005263 call  0x00004878 
+ 00027549  0x00005264 increase  0x0000000a , 0x00000005 
+ 00027550  0x00005265 branch  0x00006c05 
+ 00027551  0x00005268 ifetch  0x00000002 , 0x00000006 
+ 00027552  0x00005269 increase  0xfffffffe , 0x0000000b 
+ 00027553  0x0000526a byteswap  0x0000003f , 0x0000003f 
+ 00027554  0x0000526b store  0x00000002 , 0x00000444 
+ 00027555  0x0000526c arg  0x00000440 , 0x0000000b 
+ 00027556  0x0000526d ifetch  0x00000002 , 0x0000000b 
+ 00027557  0x0000526f increase  0x00000002 , 0x0000000b 
+ 00027558  0x00005270 call  0x00006e09 
+ 00027559  0x00005271 deposit  0x00000007 
+ 00027560  0x00005272 store  0x00000001 , 0x00000474 
+ 00027561  0x00005273 branch  0x00006dc0 , 0x00000034 
+ 00027562  0x00005274 arg  0x00000000 , 0x00000007 
+ 00027563  0x00005275 call  0x00004878 
+ 00027564  0x00005276 increase  0x00000007 , 0x00000005 
+ 00027565  0x00005277 branch  0x00006c14 
+ 00027566  0x0000527a force  0x00000000 , 0x0000003f 
+ 00027567  0x0000527b istore  0x00000001 , 0x00000005 
+ 00027568  0x0000527c increase  0xffffffff , 0x00000005 
+ 00027569  0x0000527d fetcht  0x00000002 , 0x0000029c 
+ 00027570  0x0000527e add  0x00000002 , 0x0000000d , 0x0000003f 
+ 00027571  0x0000527f isub  0x00000005 , 0x0000003f 
+ 00027572  0x00005280 branch  0x00006bd2 , 0x00000005 
+ 00027573  0x00005281 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027574  0x00005282 add  0x00000002 , 0x0000000c , 0x00000012 
+ 00027575  0x00005283 istore  0x00000001 , 0x00000012 
+ 00027576  0x00005284 increase  0x00000003 , 0x0000003f 
+ 00027577  0x00005285 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027578  0x00005286 istore  0x00000001 , 0x00000012 
+ 00027579  0x00005287 increase  0x00000003 , 0x0000003f 
+ 00027580  0x00005288 byteswap  0x0000003f , 0x0000003f 
+ 00027581  0x00005289 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027582  0x0000528a istore  0x00000002 , 0x00000012 
+ 00027583  0x0000528b rshift8  0x0000003f , 0x0000003f 
+ 00027584  0x0000528c increase  0x00000003 , 0x0000003f 
+ 00027585  0x0000528d byteswap  0x0000003f , 0x0000003f 
+ 00027586  0x0000528e add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027587  0x0000528f istore  0x00000002 , 0x00000012 
+ 00027588  0x00005290 rshift8  0x0000003f , 0x0000003f 
+ 00027589  0x00005291 increase  0x00000005 , 0x0000003f 
+ 00027590  0x00005292 store  0x00000001 , 0x0000029e 
+ 00027591  0x00005294 fetch  0x00000002 , 0x00000447 
+ 00027592  0x00005295 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027593  0x00005296 istore  0x00000002 , 0x00000012 
+ 00027594  0x00005297 setarg  0x00000007 
+ 00027595  0x00005298 istore  0x00000001 , 0x00000002 
+ 00027596  0x0000529d setarg  0x00000036 
+ 00027597  0x0000529e add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027598  0x0000529f istore  0x00000002 , 0x00000012 
+ 00027599  0x000052a0 add  0x00000002 , 0x0000000a , 0x00000012 
+ 00027600  0x000052a1 istore  0x00000002 , 0x00000012 
+ 00027601  0x000052a2 rtn 
+ 00027602  0x000052a4 jam  0x0000000a , 0x0000029e 
+ 00027603  0x000052a5 call  0x00004878 
+ 00027604  0x000052a7 setarg  0x00000007 
+ 00027605  0x000052a8 istore  0x00000001 , 0x00000005 
+ 00027606  0x000052a9 fetch  0x00000002 , 0x00000447 
+ 00027607  0x000052aa istore  0x00000002 , 0x00000005 
+ 00027608  0x000052ae setarg  0x00000500 
+ 00027609  0x000052af istore  0x00000002 , 0x00000005 
+ 00027610  0x000052b2 setarg  0x00000200 
+ 00027611  0x000052b3 istore  0x00000002 , 0x00000005 
+ 00027612  0x000052b7 setarg  0x00000035 
+ 00027613  0x000052b8 istore  0x00000003 , 0x00000005 
+ 00027614  0x000052b9 rtn 
+ 00027615  0x000052bc ifetch  0x00000001 , 0x00000006 
+ 00027616  0x000052bd istore  0x00000001 , 0x00000005 
+ 00027617  0x000052be increase  0x00000001 , 0x00000012 
+ 00027618  0x000052bf increase  0xffffffff , 0x00000011 
+ 00027619  0x000052c0 branch  0x00006be5 , 0x00000005 
+ 00027620  0x000052c1 loop  0x00006bdf 
+ 00027621  0x000052c3 copy  0x00000005 , 0x0000000b 
+ 00027622  0x000052c4 copy  0x00000012 , 0x0000003f 
+ 00027623  0x000052c5 store  0x00000002 , 0x00000444 
+ 00027624  0x000052c6 copy  0x00000011 , 0x0000003f 
+ 00027625  0x000052c7 store  0x00000002 , 0x00000449 
+ 00027626  0x000052c8 branch  0x00006c26 , 0x00000034 
+ 00027627  0x000052c9 branch  0x00006c85 , 0x00000028 
+ 00027628  0x000052ca copy  0x0000000b , 0x00000005 
+ 00027629  0x000052cc increase  0x00000001 , 0x00000007 
+ 00027630  0x000052cd fetch  0x00000001 , 0x00000474 
+ 00027631  0x000052ce isub  0x00000007 , 0x0000003e 
+ 00027632  0x000052cf nbranch  0x00006c05 , 0x00000005 
+ 00027633  0x000052d0 branch  0x00006ca4 
+ 00027634  0x000052d3 ifetch  0x00000001 , 0x00000006 
+ 00027635  0x000052d4 istore  0x00000001 , 0x00000005 
+ 00027636  0x000052d5 increase  0x00000001 , 0x00000012 
+ 00027637  0x000052d6 increase  0xffffffff , 0x00000011 
+ 00027638  0x000052d7 branch  0x00006bf8 , 0x00000005 
+ 00027639  0x000052d8 loop  0x00006bf2 
+ 00027640  0x000052da copy  0x00000005 , 0x0000000b 
+ 00027641  0x000052db copy  0x00000012 , 0x0000003f 
+ 00027642  0x000052dc store  0x00000002 , 0x00000444 
+ 00027643  0x000052dd copy  0x00000011 , 0x0000003f 
+ 00027644  0x000052de store  0x00000002 , 0x00000449 
+ 00027645  0x000052df branch  0x00006c61 , 0x00000034 
+ 00027646  0x000052e0 branch  0x00006c85 , 0x00000028 
+ 00027647  0x000052e1 copy  0x0000000b , 0x00000005 
+ 00027648  0x000052e3 increase  0x00000001 , 0x00000007 
+ 00027649  0x000052e4 fetch  0x00000001 , 0x00000474 
+ 00027650  0x000052e5 isub  0x00000007 , 0x0000003e 
+ 00027651  0x000052e6 nbranch  0x00006c14 , 0x00000005 
+ 00027652  0x000052e7 branch  0x00006ccc 
+ 00027653  0x000052ea arg  0x0000045c , 0x00000006 
+ 00027654  0x000052eb lshift2  0x00000007 , 0x0000003f 
+ 00027655  0x000052ec iadd  0x00000006 , 0x00000006 
+ 00027656  0x000052ed ifetch  0x00000004 , 0x00000006 
+ 00027657  0x000052ee iforce  0x00000002 
+ 00027658  0x000052ef call  0x00006e20 
+ 00027659  0x000052f0 copy  0x00000006 , 0x0000000b 
+ 00027660  0x000052f1 call  0x00006dea 
+ 00027661  0x000052f2 add  0x0000003f , 0x00000003 , 0x00000039 
+ 00027662  0x000052f3 fetch  0x00000002 , 0x00000449 
+ 00027663  0x000052f4 copy  0x0000003f , 0x00000011 
+ 00027664  0x000052f5 fetch  0x00000002 , 0x00000444 
+ 00027665  0x000052f6 copy  0x0000003f , 0x00000012 
+ 00027666  0x000052f7 copy  0x0000000b , 0x00000006 
+ 00027667  0x000052f8 branch  0x00006bdf 
+ 00027668  0x000052fb arg  0x0000045c , 0x00000006 
+ 00027669  0x000052fc lshift2  0x00000007 , 0x0000003f 
+ 00027670  0x000052fd iadd  0x00000006 , 0x00000006 
+ 00027671  0x000052fe ifetch  0x00000004 , 0x00000006 
+ 00027672  0x000052ff iforce  0x00000002 
+ 00027673  0x00005300 call  0x00006e20 
+ 00027674  0x00005301 copy  0x00000006 , 0x0000000b 
+ 00027675  0x00005302 call  0x00006dea 
+ 00027676  0x00005303 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027677  0x00005304 fetcht  0x00000002 , 0x00000444 
+ 00027678  0x00005305 isub  0x00000002 , 0x00000039 
+ 00027679  0x00005306 fetch  0x00000002 , 0x00000449 
+ 00027680  0x00005307 copy  0x0000003f , 0x00000011 
+ 00027681  0x00005308 fetch  0x00000002 , 0x00000444 
+ 00027682  0x00005309 copy  0x0000003f , 0x00000012 
+ 00027683  0x0000530a copy  0x0000000b , 0x00000006 
+ 00027684  0x0000530b iadd  0x00000006 , 0x00000006 
+ 00027685  0x0000530c branch  0x00006bf2 
+ 00027686  0x0000530f arg  0x00000000 , 0x00000007 
+ 00027687  0x00005310 arg  0x00000000 , 0x00000012 
+ 00027688  0x00005312 arg  0x0000045c , 0x00000006 
+ 00027689  0x00005313 lshift2  0x00000007 , 0x0000003f 
+ 00027690  0x00005314 iadd  0x00000006 , 0x00000006 
+ 00027691  0x00005315 ifetch  0x00000004 , 0x00000006 
+ 00027692  0x00005316 iforce  0x00000002 
+ 00027693  0x00005317 call  0x00006e20 
+ 00027694  0x00005318 call  0x00006dea 
+ 00027695  0x00005319 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027696  0x0000531a iadd  0x00000012 , 0x00000012 
+ 00027697  0x0000531b increase  0x00000001 , 0x00000007 
+ 00027698  0x0000531c fetch  0x00000001 , 0x00000474 
+ 00027699  0x0000531d isub  0x00000007 , 0x0000003e 
+ 00027700  0x0000531e nbranch  0x00006c28 , 0x00000005 
+ 00027701  0x00005320 copy  0x0000000b , 0x00000005 
+ 00027702  0x00005321 force  0x00000002 , 0x0000003f 
+ 00027703  0x00005322 istore  0x00000001 , 0x00000005 
+ 00027704  0x00005323 fetch  0x00000002 , 0x00000444 
+ 00027705  0x00005324 byteswap  0x0000003f , 0x0000003f 
+ 00027706  0x00005325 istore  0x00000002 , 0x00000005 
+ 00027707  0x00005326 increase  0xfffffffd , 0x00000005 
+ 00027708  0x00005327 fetcht  0x00000002 , 0x0000029c 
+ 00027709  0x00005328 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027710  0x00005329 isub  0x00000005 , 0x0000003f 
+ 00027711  0x0000532a sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027712  0x0000532b iforce  0x00000011 
+ 00027713  0x0000532d deposit  0x00000012 
+ 00027714  0x0000532e add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027715  0x0000532f istore  0x00000001 , 0x00000012 
+ 00027716  0x00005330 rshift8  0x0000003f , 0x0000003f 
+ 00027717  0x00005331 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027718  0x00005332 istore  0x00000001 , 0x00000012 
+ 00027719  0x00005333 increase  0x00000003 , 0x00000011 
+ 00027720  0x00005334 deposit  0x00000011 
+ 00027721  0x00005335 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027722  0x00005336 istore  0x00000001 , 0x00000012 
+ 00027723  0x00005337 rshift8  0x0000003f , 0x0000003f 
+ 00027724  0x00005338 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027725  0x00005339 istore  0x00000001 , 0x00000012 
+ 00027726  0x0000533a increase  0x00000005 , 0x00000011 
+ 00027727  0x0000533b deposit  0x00000011 
+ 00027728  0x0000533c add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027729  0x0000533d istore  0x00000001 , 0x00000012 
+ 00027730  0x0000533e rshift8  0x0000003f , 0x0000003f 
+ 00027731  0x0000533f add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027732  0x00005340 istore  0x00000001 , 0x00000012 
+ 00027733  0x00005341 increase  0x00000005 , 0x00000011 
+ 00027734  0x00005342 deposit  0x00000011 
+ 00027735  0x00005343 store  0x00000002 , 0x0000029e 
+ 00027736  0x00005344 setarg  0x00000007 
+ 00027737  0x00005345 istore  0x00000001 , 0x00000002 
+ 00027738  0x00005346 setarg  0x00000036 
+ 00027739  0x00005347 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027740  0x00005348 istore  0x00000001 , 0x00000012 
+ 00027741  0x00005349 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027742  0x0000534a fetch  0x00000002 , 0x00000447 
+ 00027743  0x0000534b istore  0x00000002 , 0x00000012 
+ 00027744  0x0000534c rtn 
+ 00027745  0x0000534f arg  0x00000000 , 0x00000007 
+ 00027746  0x00005350 arg  0x00000000 , 0x00000012 
+ 00027747  0x00005352 copy  0x0000000b , 0x00000005 
+ 00027748  0x00005353 force  0x00000002 , 0x0000003f 
+ 00027749  0x00005354 istore  0x00000001 , 0x00000005 
+ 00027750  0x00005355 fetch  0x00000002 , 0x00000444 
+ 00027751  0x00005356 byteswap  0x0000003f , 0x0000003f 
+ 00027752  0x00005357 istore  0x00000002 , 0x00000005 
+ 00027753  0x00005358 increase  0xfffffffd , 0x00000005 
+ 00027754  0x00005359 fetcht  0x00000002 , 0x0000029c 
+ 00027755  0x0000535a add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027756  0x0000535b isub  0x00000005 , 0x0000003f 
+ 00027757  0x0000535c sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027758  0x0000535d iforce  0x00000011 
+ 00027759  0x0000535f deposit  0x00000011 
+ 00027760  0x00005360 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027761  0x00005361 istore  0x00000001 , 0x00000012 
+ 00027762  0x00005362 rshift8  0x0000003f , 0x0000003f 
+ 00027763  0x00005363 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027764  0x00005364 istore  0x00000001 , 0x00000012 
+ 00027765  0x00005365 increase  0x00000005 , 0x00000011 
+ 00027766  0x00005366 deposit  0x00000011 
+ 00027767  0x00005367 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027768  0x00005368 istore  0x00000001 , 0x00000012 
+ 00027769  0x00005369 rshift8  0x0000003f , 0x0000003f 
+ 00027770  0x0000536a add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027771  0x0000536b istore  0x00000001 , 0x00000012 
+ 00027772  0x0000536c increase  0x00000005 , 0x00000011 
+ 00027773  0x0000536d deposit  0x00000011 
+ 00027774  0x0000536e store  0x00000002 , 0x0000029e 
+ 00027775  0x0000536f setarg  0x00000007 
+ 00027776  0x00005370 istore  0x00000001 , 0x00000002 
+ 00027777  0x00005371 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027778  0x00005372 fetch  0x00000002 , 0x00000447 
+ 00027779  0x00005373 istore  0x00000002 , 0x00000012 
+ 00027780  0x00005374 rtn 
+ 00027781  0x00005377 copy  0x0000000b , 0x00000005 
+ 00027782  0x00005378 force  0x00000000 , 0x0000003f 
+ 00027783  0x00005379 istore  0x00000001 , 0x00000005 
+ 00027784  0x0000537a increase  0xffffffff , 0x00000005 
+ 00027785  0x0000537b fetcht  0x00000002 , 0x0000029c 
+ 00027786  0x0000537c add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027787  0x0000537d isub  0x00000005 , 0x0000003f 
+ 00027788  0x0000537e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027789  0x0000537f iforce  0x00000011 
+ 00027790  0x00005381 deposit  0x00000011 
+ 00027791  0x00005382 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027792  0x00005383 istore  0x00000001 , 0x00000012 
+ 00027793  0x00005384 rshift8  0x0000003f , 0x0000003f 
+ 00027794  0x00005385 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027795  0x00005386 istore  0x00000001 , 0x00000012 
+ 00027796  0x00005387 increase  0x00000003 , 0x00000011 
+ 00027797  0x00005388 deposit  0x00000011 
+ 00027798  0x00005389 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027799  0x0000538a istore  0x00000001 , 0x00000012 
+ 00027800  0x0000538b rshift8  0x0000003f , 0x0000003f 
+ 00027801  0x0000538c add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027802  0x0000538d istore  0x00000001 , 0x00000012 
+ 00027803  0x0000538e increase  0x00000005 , 0x00000011 
+ 00027804  0x0000538f deposit  0x00000011 
+ 00027805  0x00005390 store  0x00000002 , 0x0000029e 
+ 00027806  0x00005392 setarg  0x00000007 
+ 00027807  0x00005393 istore  0x00000001 , 0x00000002 
+ 00027808  0x00005395 fetch  0x00000002 , 0x00000447 
+ 00027809  0x00005396 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027810  0x00005397 istore  0x00000002 , 0x00000012 
+ 00027811  0x00005398 rtn 
+ 00027812  0x0000539b force  0x00000000 , 0x0000003f 
+ 00027813  0x0000539c istore  0x00000001 , 0x00000005 
+ 00027814  0x0000539d increase  0xffffffff , 0x00000005 
+ 00027815  0x0000539e fetcht  0x00000002 , 0x0000029c 
+ 00027816  0x0000539f add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027817  0x000053a0 isub  0x00000005 , 0x0000003f 
+ 00027818  0x000053a1 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027819  0x000053a2 iforce  0x00000011 
+ 00027820  0x000053a4 deposit  0x00000011 
+ 00027821  0x000053a5 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027822  0x000053a6 istore  0x00000001 , 0x00000012 
+ 00027823  0x000053a7 rshift8  0x0000003f , 0x0000003f 
+ 00027824  0x000053a8 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027825  0x000053a9 istore  0x00000001 , 0x00000012 
+ 00027826  0x000053ab increase  0x00000003 , 0x00000011 
+ 00027827  0x000053ac deposit  0x00000011 
+ 00027828  0x000053ad add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027829  0x000053ae istore  0x00000001 , 0x00000012 
+ 00027830  0x000053af rshift8  0x0000003f , 0x0000003f 
+ 00027831  0x000053b0 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027832  0x000053b1 istore  0x00000001 , 0x00000012 
+ 00027833  0x000053b2 increase  0x00000003 , 0x00000011 
+ 00027834  0x000053b3 deposit  0x00000011 
+ 00027835  0x000053b4 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027836  0x000053b5 istore  0x00000001 , 0x00000012 
+ 00027837  0x000053b6 rshift8  0x0000003f , 0x0000003f 
+ 00027838  0x000053b7 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027839  0x000053b8 istore  0x00000001 , 0x00000012 
+ 00027840  0x000053b9 increase  0x00000005 , 0x00000011 
+ 00027841  0x000053ba deposit  0x00000011 
+ 00027842  0x000053bb store  0x00000002 , 0x0000029e 
+ 00027843  0x000053bc setarg  0x00000036 
+ 00027844  0x000053bd add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027845  0x000053be istore  0x00000001 , 0x00000012 
+ 00027846  0x000053bf setarg  0x00000007 
+ 00027847  0x000053c0 istore  0x00000001 , 0x00000002 
+ 00027848  0x000053c1 fetch  0x00000002 , 0x00000447 
+ 00027849  0x000053c2 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027850  0x000053c3 istore  0x00000002 , 0x00000012 
+ 00027851  0x000053c4 rtn 
+ 00027852  0x000053c7 force  0x00000000 , 0x0000003f 
+ 00027853  0x000053c8 istore  0x00000001 , 0x00000005 
+ 00027854  0x000053c9 increase  0xffffffff , 0x00000005 
+ 00027855  0x000053ca fetcht  0x00000002 , 0x0000029c 
+ 00027856  0x000053cb add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027857  0x000053cc isub  0x00000005 , 0x0000003f 
+ 00027858  0x000053cd sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027859  0x000053ce iforce  0x00000011 
+ 00027860  0x000053d1 deposit  0x00000011 
+ 00027861  0x000053d2 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027862  0x000053d3 istore  0x00000001 , 0x00000012 
+ 00027863  0x000053d4 rshift8  0x0000003f , 0x0000003f 
+ 00027864  0x000053d5 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027865  0x000053d6 istore  0x00000001 , 0x00000012 
+ 00027866  0x000053d7 increase  0x00000003 , 0x00000011 
+ 00027867  0x000053d8 deposit  0x00000011 
+ 00027868  0x000053d9 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027869  0x000053da istore  0x00000001 , 0x00000012 
+ 00027870  0x000053db rshift8  0x0000003f , 0x0000003f 
+ 00027871  0x000053dc add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027872  0x000053dd istore  0x00000001 , 0x00000012 
+ 00027873  0x000053de increase  0x00000005 , 0x00000011 
+ 00027874  0x000053df deposit  0x00000011 
+ 00027875  0x000053e0 store  0x00000002 , 0x0000029e 
+ 00027876  0x000053e4 setarg  0x00000007 
+ 00027877  0x000053e5 istore  0x00000001 , 0x00000002 
+ 00027878  0x000053e6 fetch  0x00000002 , 0x00000447 
+ 00027879  0x000053e7 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027880  0x000053e8 istore  0x00000002 , 0x00000012 
+ 00027881  0x000053e9 rtn 
+ 00027882  0x000053ec copy  0x00000006 , 0x0000000b 
+ 00027883  0x000053ed ifetch  0x00000001 , 0x00000006 
+ 00027884  0x000053ee and  0x0000003f , 0x00000007 , 0x00000039 
+ 00027885  0x000053ef rshift3  0x0000003f , 0x0000003f 
+ 00027886  0x000053f0 beq  0x00000006 , 0x00006cf3 
+ 00027887  0x000053f1 beq  0x00000001 , 0x00006de2 
+ 00027888  0x000053f2 beq  0x00000004 , 0x00006de7 
+ 00027889  0x000053f3 beq  0x00000005 , 0x00006de5 
+ 00027890  0x000053f4 branch  0x00006de0 
+ 00027891  0x000053f6 call  0x00006cf5 
+ 00027892  0x000053f7 branch  0x00006de0 
+ 00027893  0x000053f9 deposit  0x00000039 
+ 00027894  0x000053fa beq  0x00000005 , 0x00006cfa 
+ 00027895  0x000053fb beq  0x00000006 , 0x00006cfd 
+ 00027896  0x000053fc force  0x00000003 , 0x00000039 
+ 00027897  0x000053fd branch  0x00006df1 
+ 00027898  0x000053ff ifetch  0x00000001 , 0x00000006 
+ 00027899  0x00005400 increase  0x00000002 , 0x0000003f 
+ 00027900  0x00005401 rtn 
+ 00027901  0x00005403 ifetch  0x00000002 , 0x00000006 
+ 00027902  0x00005404 byteswap  0x0000003f , 0x0000003f 
+ 00027903  0x00005405 increase  0x00000003 , 0x0000003f 
+ 00027904  0x00005406 rtn 
+ 00027905  0x00005409 call  0x00004878 
+ 00027906  0x0000540a copy  0x0000003f , 0x00000005 
+ 00027907  0x0000540b setarg  0x00000006 
+ 00027908  0x0000540c istore  0x00000001 , 0x00000005 
+ 00027909  0x0000540d setarg  0x0000006e 
+ 00027910  0x0000540e istore  0x00000002 , 0x00000005 
+ 00027911  0x0000540f setarg  0x00000f00 
+ 00027912  0x00005410 istore  0x00000002 , 0x00000005 
+ 00027913  0x00005411 setarg  0x001a0535 
+ 00027914  0x00005412 istore  0x00000003 , 0x00000005 
+ 00027915  0x00005413 setarg  0x00000111 
+ 00027916  0x00005414 lshift16  0x0000003f , 0x0000003f 
+ 00027917  0x00005415 istore  0x00000004 , 0x00000005 
+ 00027918  0x00005416 setarg  0x00002600 
+ 00027919  0x00005417 istore  0x00000002 , 0x00000005 
+ 00027920  0x00005418 setarg  0x00000335 
+ 00027921  0x00005419 istore  0x00000002 , 0x00000005 
+ 00027922  0x0000541a setarg  0x00000009 
+ 00027923  0x0000541b istore  0x00000002 , 0x00000005 
+ 00027924  0x0000541c setarg  0x00000004 
+ 00027925  0x0000541d istore  0x00000002 , 0x00000005 
+ 00027926  0x0000541e jam  0x00000014 , 0x0000029e 
+ 00027927  0x0000541f rtn 
+ 00027928  0x0000542a copy  0x00000006 , 0x00000002 
+ 00027929  0x0000542b fetch  0x00000002 , 0x00000447 
+ 00027930  0x0000542c beq  0x0000006e , 0x00006d1c 
+ 00027931  0x0000542f branch  0x00006d25 
+ 00027932  0x00005432 copy  0x00000002 , 0x00000006 
+ 00027933  0x00005433 increase  0xfffffffd , 0x0000000b 
+ 00027934  0x00005434 copy  0x0000000b , 0x0000003f 
+ 00027935  0x00005435 beq  0x00000002 , 0x00006d25 
+ 00027936  0x00005436 call  0x00006d26 
+ 00027937  0x00005437 rtn  0x00000028 
+ 00027938  0x00005438 store  0x00000001 , 0x000045fc 
+ 00027939  0x00005439 jam  0x00000017 , 0x000002ae 
+ 00027940  0x0000543a rtn 
+ 00027941  0x0000543d rtn 
+ 00027942  0x00005444 enable  0x00000028 
+ 00027943  0x00005445 copy  0x0000003f , 0x00000039 
+ 00027944  0x00005446 arg  0x00000400 , 0x00000002 
+ 00027945  0x00005448 ifetch  0x00000002 , 0x00000006 
+ 00027946  0x00005449 isub  0x00000002 , 0x0000003e 
+ 00027947  0x0000544a branch  0x00006d2f , 0x00000005 
+ 00027948  0x0000544b increase  0xffffffff , 0x00000006 
+ 00027949  0x0000544c loop  0x00006d29 
+ 00027950  0x0000544d rtn 
+ 00027951  0x0000544f arg  0x00000300 , 0x00000002 
+ 00027952  0x00005451 ifetch  0x00000002 , 0x00000006 
+ 00027953  0x00005452 isub  0x00000002 , 0x0000003e 
+ 00027954  0x00005453 branch  0x00006d36 , 0x00000005 
+ 00027955  0x00005454 increase  0xffffffff , 0x00000006 
+ 00027956  0x00005455 loop  0x00006d30 
+ 00027957  0x00005456 rtn 
+ 00027958  0x00005458 ifetch  0x00000001 , 0x00000006 
+ 00027959  0x00005459 ifetch  0x00000001 , 0x00000006 
+ 00027960  0x0000545a disable  0x00000028 
+ 00027961  0x0000545b rtn 
+ 00027962  0x0000545e setarg  0x00000200 
+ 00027963  0x0000545f store  0x00000002 , 0x0000044d 
+ 00027964  0x00005460 branch  0x00006d45 
+ 00027965  0x00005462 setarg  0x00000400 
+ 00027966  0x00005463 store  0x00000002 , 0x0000044d 
+ 00027967  0x00005464 branch  0x00006d45 
+ 00027968  0x00005466 setarg  0x00000600 
+ 00027969  0x00005467 store  0x00000002 , 0x0000044d 
+ 00027970  0x00005468 branch  0x00006d45 
+ 00027971  0x0000546a setarg  0x00000300 
+ 00027972  0x0000546b store  0x00000002 , 0x0000044d 
+ 00027973  0x0000546d call  0x00004878 
+ 00027974  0x0000546e istore  0x00000001 , 0x00000005 
+ 00027975  0x0000546f fetch  0x00000002 , 0x00000447 
+ 00027976  0x00005470 istore  0x00000002 , 0x00000005 
+ 00027977  0x00005471 setarg  0x00000200 
+ 00027978  0x00005472 istore  0x00000002 , 0x00000005 
+ 00027979  0x00005473 fetch  0x00000002 , 0x0000044d 
+ 00027980  0x00005474 istore  0x00000002 , 0x00000005 
+ 00027981  0x00005475 jam  0x00000007 , 0x0000029e 
+ 00027982  0x00005476 rtn 
+ 00027983  0x00005479 set1  0x00000025 , 0x00000000 
+ 00027984  0x0000547a bpatch  0x000000c8 , 0x00004039 
+ 00027985  0x0000547b force  0x00000000 , 0x00000002 
+ 00027986  0x0000547c arg  0x00000440 , 0x00000005 
+ 00027987  0x0000547d call  0x00006da6 
+ 00027988  0x0000547e branch  0x00006da4 , 0x00000005 
+ 00027989  0x00005480 ifetch  0x00000001 , 0x00000006 
+ 00027990  0x00005481 increase  0xffffffff , 0x00000011 
+ 00027991  0x00005482 increase  0xffffffff , 0x0000000b 
+ 00027992  0x00005483 compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00027993  0x00005484 nbranch  0x00006da4 , 0x00000001 
+ 00027994  0x00005485 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00027995  0x00005486 nbranch  0x00006d72 , 0x00000001 
+ 00027996  0x00005487 force  0x00000001 , 0x00000002 
+ 00027997  0x00005489 ifetch  0x00000001 , 0x00000006 
+ 00027998  0x0000548a increase  0xffffffff , 0x00000011 
+ 00027999  0x0000548b increase  0xffffffff , 0x0000000b 
+ 00028000  0x0000548c bne  0x00000000 , 0x00006d66 
+ 00028001  0x0000548d ifetch  0x00000001 , 0x00000006 
+ 00028002  0x0000548e increase  0xffffffff , 0x00000011 
+ 00028003  0x0000548f increase  0xffffffff , 0x0000000b 
+ 00028004  0x00005490 beq  0x00000000 , 0x00006d77 
+ 00028005  0x00005491 branch  0x00006d69 
+ 00028006  0x00005493 increase  0x00000001 , 0x00000006 
+ 00028007  0x00005494 increase  0xffffffff , 0x00000011 
+ 00028008  0x00005495 increase  0xffffffff , 0x0000000b 
+ 00028009  0x00005497 increase  0x00000002 , 0x00000006 
+ 00028010  0x00005498 increase  0xfffffffe , 0x00000011 
+ 00028011  0x00005499 increase  0xfffffffe , 0x0000000b 
+ 00028012  0x0000549a compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028013  0x0000549b branch  0x00006d9f , 0x00000001 
+ 00028014  0x0000549c increase  0x0000000c , 0x00000006 
+ 00028015  0x0000549d increase  0xfffffff4 , 0x00000011 
+ 00028016  0x0000549e increase  0xfffffff4 , 0x0000000b 
+ 00028017  0x0000549f branch  0x00006d9f 
+ 00028018  0x000054a1 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00028019  0x000054a2 nbranch  0x00006d75 , 0x00000001 
+ 00028020  0x000054a3 branch  0x00006d5d 
+ 00028021  0x000054a5 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00028022  0x000054a6 nbranch  0x00006da4 , 0x00000001 
+ 00028023  0x000054a8 ifetch  0x00000002 , 0x00000006 
+ 00028024  0x000054a9 increase  0xfffffffe , 0x00000011 
+ 00028025  0x000054aa increase  0xfffffffe , 0x0000000b 
+ 00028026  0x000054ab istore  0x00000002 , 0x00000005 
+ 00028027  0x000054ad compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028028  0x000054ae branch  0x00006d9f , 0x00000001 
+ 00028029  0x000054af copy  0x00000006 , 0x00000002 
+ 00028030  0x000054b0 set1  0x00000025 , 0x00000000 
+ 00028031  0x000054b1 bpatch  0x000000c9 , 0x00004039 
+ 00028032  0x000054b2 ifetch  0x00000001 , 0x00000006 
+ 00028033  0x000054b3 bne  0x00000000 , 0x00006d98 
+ 00028034  0x000054b4 ifetch  0x00000001 , 0x00000006 
+ 00028035  0x000054b5 bne  0x00000000 , 0x00006d98 
+ 00028036  0x000054b6 ifetch  0x00000001 , 0x00000006 
+ 00028037  0x000054b7 bne  0x00000010 , 0x00006d98 
+ 00028038  0x000054b8 ifetch  0x00000001 , 0x00000006 
+ 00028039  0x000054b9 bne  0x00000000 , 0x00006d98 
+ 00028040  0x000054ba ifetch  0x00000001 , 0x00000006 
+ 00028041  0x000054bb bne  0x00000080 , 0x00006d98 
+ 00028042  0x000054bc ifetch  0x00000001 , 0x00000006 
+ 00028043  0x000054bd bne  0x00000000 , 0x00006d98 
+ 00028044  0x000054be ifetch  0x00000001 , 0x00000006 
+ 00028045  0x000054bf bne  0x00000000 , 0x00006d98 
+ 00028046  0x000054c0 ifetch  0x00000001 , 0x00000006 
+ 00028047  0x000054c1 bne  0x00000080 , 0x00006d98 
+ 00028048  0x000054c2 ifetch  0x00000001 , 0x00000006 
+ 00028049  0x000054c3 bne  0x0000005f , 0x00006d98 
+ 00028050  0x000054c4 ifetch  0x00000001 , 0x00000006 
+ 00028051  0x000054c5 bne  0x0000009b , 0x00006d98 
+ 00028052  0x000054c6 ifetch  0x00000001 , 0x00000006 
+ 00028053  0x000054c7 bne  0x00000034 , 0x00006d98 
+ 00028054  0x000054c8 ifetch  0x00000001 , 0x00000006 
+ 00028055  0x000054c9 beq  0x000000fb , 0x00006d9d 
+ 00028056  0x000054cb copy  0x00000002 , 0x00000006 
+ 00028057  0x000054cd increase  0x0000000c , 0x00000006 
+ 00028058  0x000054ce force  0x00000000 , 0x00000007 
+ 00028059  0x000054cf force  0x00000000 , 0x00000002 
+ 00028060  0x000054d0 branch  0x00006d9d 
+ 00028061  0x000054d2 increase  0xfffffff4 , 0x0000000b 
+ 00028062  0x000054d3 increase  0xfffffff4 , 0x00000011 
+ 00028063  0x000054d5 compare  0x00000000 , 0x00000011 , 0x000000ff 
+ 00028064  0x000054d6 nbranch  0x00006d55 , 0x00000001 
+ 00028065  0x000054d7 force  0x00000000 , 0x0000003f 
+ 00028066  0x000054d8 istore  0x00000002 , 0x00000005 
+ 00028067  0x000054d9 rtn ,
+ 00028068  0x000054db arg  0x000000ff , 0x00000002 
+ 00028069  0x000054dc rtn 
+ 00028070  0x000054e7 ifetch  0x00000001 , 0x00000006 
+ 00028071  0x000054e8 increase  0xffffffff , 0x0000000b 
+ 00028072  0x000054e9 compare  0x00000030 , 0x0000003f , 0x000000f8 
+ 00028073  0x000054ea nbranch  0x00006dbb , 0x00000001 
+ 00028074  0x000054eb compare  0x00000007 , 0x0000003f , 0x00000007 
+ 00028075  0x000054ec branch  0x00006db4 , 0x00000001 
+ 00028076  0x000054ed compare  0x00000006 , 0x0000003f , 0x00000007 
+ 00028077  0x000054ee branch  0x00006db6 , 0x00000001 
+ 00028078  0x000054ef compare  0x00000005 , 0x0000003f , 0x00000007 
+ 00028079  0x000054f0 nbranch  0x00006dbb , 0x00000001 
+ 00028080  0x000054f1 ifetch  0x00000001 , 0x00000006 
+ 00028081  0x000054f2 copy  0x0000003f , 0x00000011 
+ 00028082  0x000054f3 increase  0xffffffff , 0x0000000b 
+ 00028083  0x000054f4 branch  0x00006db9 
+ 00028084  0x000054f6 increase  0x00000002 , 0x00000006 
+ 00028085  0x000054f7 increase  0xfffffffe , 0x0000000b 
+ 00028086  0x000054f9 ifetch  0x00000002 , 0x00000006 
+ 00028087  0x000054fa byteswap  0x0000003f , 0x00000011 
+ 00028088  0x000054fb increase  0xfffffffe , 0x0000000b 
+ 00028089  0x000054fd force  0x00000001 , 0x0000003f 
+ 00028090  0x000054fe rtn 
+ 00028091  0x00005500 force  0x00000000 , 0x0000003f 
+ 00028092  0x00005501 rtn 
+ 00028093  0x0000550c setarg  0x00000003 
+ 00028094  0x0000550d store  0x00000001 , 0x00000446 
+ 00028095  0x0000550e branch  0x00006dc2 
+ 00028096  0x00005510 setarg  0x00000007 
+ 00028097  0x00005511 store  0x00000001 , 0x00000446 
+ 00028098  0x00005513 call  0x00004878 
+ 00028099  0x00005514 fetch  0x00000001 , 0x00000446 
+ 00028100  0x00005515 istore  0x00000001 , 0x00000005 
+ 00028101  0x00005516 copy  0x0000003f , 0x00000012 
+ 00028102  0x00005517 fetch  0x00000002 , 0x00000447 
+ 00028103  0x00005518 istore  0x00000002 , 0x00000005 
+ 00028104  0x0000551a setarg  0x00000500 
+ 00028105  0x0000551b istore  0x00000002 , 0x00000005 
+ 00028106  0x0000551c compare  0x00000005 , 0x00000012 , 0x000000ff 
+ 00028107  0x0000551d branch  0x00006dd2 , 0x00000001 
+ 00028108  0x0000551e compare  0x00000007 , 0x00000012 , 0x000000ff 
+ 00028109  0x0000551f branch  0x00006dd2 , 0x00000001 
+ 00028110  0x00005520 setarg  0x00000000 
+ 00028111  0x00005521 istore  0x00000003 , 0x00000005 
+ 00028112  0x00005522 istore  0x00000002 , 0x00000005 
+ 00028113  0x00005523 branch  0x00006dd6 
+ 00028114  0x0000552c setarg  0x00350200 
+ 00028115  0x0000552d istore  0x00000003 , 0x00000005 
+ 00028116  0x00005532 setarg  0x00000000 
+ 00028117  0x00005533 istore  0x00000002 , 0x00000005 
+ 00028118  0x00005535 jam  0x0000000a , 0x0000029e 
+ 00028119  0x00005536 rtn 
+ 00028120  0x00005539 copy  0x00000006 , 0x0000000b 
+ 00028121  0x0000553a ifetch  0x00000001 , 0x00000006 
+ 00028122  0x0000553b and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028123  0x0000553c rshift3  0x0000003f , 0x0000003f 
+ 00028124  0x0000553d beq  0x00000006 , 0x00006de7 
+ 00028125  0x0000553e beq  0x00000001 , 0x00006de2 
+ 00028126  0x0000553f beq  0x00000004 , 0x00006de7 
+ 00028127  0x00005540 beq  0x00000005 , 0x00006de5 
+ 00028128  0x00005542 copy  0x0000000b , 0x00000006 
+ 00028129  0x00005543 rtn 
+ 00028130  0x00005545 call  0x00006e03 
+ 00028131  0x00005546 increase  0x00000001 , 0x0000003f 
+ 00028132  0x00005547 branch  0x00006de0 
+ 00028133  0x00005549 force  0x00000002 , 0x0000003f 
+ 00028134  0x0000554a branch  0x00006de0 
+ 00028135  0x0000554c call  0x00006df9 
+ 00028136  0x0000554d increase  0x00000002 , 0x0000003f 
+ 00028137  0x0000554e branch  0x00006de0 
+ 00028138  0x00005551 ifetch  0x00000001 , 0x00000006 
+ 00028139  0x00005552 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028140  0x00005553 rshift3  0x0000003f , 0x0000003f 
+ 00028141  0x00005554 beq  0x00000006 , 0x00006df9 
+ 00028142  0x00005555 beq  0x00000001 , 0x00006df1 
+ 00028143  0x00005556 beq  0x00000005 , 0x00006dfe 
+ 00028144  0x00005557 rtn 
+ 00028145  0x00005559 call  0x00006e03 
+ 00028146  0x0000555a iforce  0x00000039 
+ 00028147  0x0000555b force  0x00000000 , 0x00000002 
+ 00028148  0x0000555d lshift8  0x00000002 , 0x00000002 
+ 00028149  0x0000555e ifetch  0x00000001 , 0x00000006 
+ 00028150  0x0000555f ior  0x00000002 , 0x00000002 
+ 00028151  0x00005560 loop  0x00006df4 
+ 00028152  0x00005561 rtn 
+ 00028153  0x00005563 deposit  0x00000039 
+ 00028154  0x00005564 beq  0x00000005 , 0x00006dfe 
+ 00028155  0x00005565 beq  0x00000006 , 0x00006e00 
+ 00028156  0x00005566 force  0x00000003 , 0x00000039 
+ 00028157  0x00005567 branch  0x00006df1 
+ 00028158  0x00005569 ifetch  0x00000001 , 0x00000006 
+ 00028159  0x0000556a rtn 
+ 00028160  0x0000556c ifetch  0x00000002 , 0x00000006 
+ 00028161  0x0000556d byteswap  0x0000003f , 0x0000003f 
+ 00028162  0x0000556e rtn 
+ 00028163  0x00005572 force  0x00000001 , 0x0000003f 
+ 00028164  0x00005573 copy  0x00000039 , 0x0000003e 
+ 00028165  0x00005574 rtn  0x00000005 
+ 00028166  0x00005576 lshift  0x0000003f , 0x0000003f 
+ 00028167  0x00005577 loop  0x00006e06 
+ 00028168  0x00005578 rtn 
+ 00028169  0x0000557e iforce  0x00000013 
+ 00028170  0x0000557f set1  0x00000025 , 0x00000000 
+ 00028171  0x00005580 bpatch  0x000000ca , 0x00004039 
+ 00028172  0x00005581 force  0x00000000 , 0x00000007 
+ 00028173  0x00005582 fetch  0x00000002 , 0x0000460d 
+ 00028174  0x00005583 iforce  0x00000006 
+ 00028175  0x00005584 arg  0x0000045c , 0x00000005 
+ 00028176  0x00005586 disable  0x00000028 
+ 00028177  0x00005587 ifetch  0x00000001 , 0x00000006 
+ 00028178  0x00005588 rtn  0x00000034 
+ 00028179  0x00005589 iforce  0x00000039 
+ 00028180  0x0000558b ifetch  0x00000002 , 0x00000006 
+ 00028181  0x0000558c isub  0x00000013 , 0x0000003e 
+ 00028182  0x0000558d nbranch  0x00006e18 , 0x00000005 
+ 00028183  0x0000558e enable  0x00000028 
+ 00028184  0x00005590 loop  0x00006e14 
+ 00028185  0x00005591 ifetch  0x00000004 , 0x00000006 
+ 00028186  0x00005592 nbranch  0x00006e1d , 0x00000028 
+ 00028187  0x00005593 istore  0x00000004 , 0x00000005 
+ 00028188  0x00005594 increase  0x00000001 , 0x00000007 
+ 00028189  0x00005596 call  0x00006dea 
+ 00028190  0x00005597 iadd  0x00000006 , 0x00000006 
+ 00028191  0x00005598 branch  0x00006e10 
+ 00028192  0x0000559c set1  0x00000025 , 0x00000000 
+ 00028193  0x0000559d bpatch  0x000000cb , 0x00004039 
+ 00028194  0x0000559e fetch  0x00000002 , 0x0000460d 
+ 00028195  0x0000559f iforce  0x00000006 
+ 00028196  0x000055a1 ifetch  0x00000001 , 0x00000006 
+ 00028197  0x000055a2 rtn  0x00000034 
+ 00028198  0x000055a3 lshift  0x0000003f , 0x0000003f 
+ 00028199  0x000055a4 iadd  0x00000006 , 0x00000006 
+ 00028200  0x000055a5 ifetch  0x00000004 , 0x00000006 
+ 00028201  0x000055a6 isub  0x00000002 , 0x0000003e 
+ 00028202  0x000055a7 rtn  0x00000005 
+ 00028203  0x000055a8 call  0x00006dea 
+ 00028204  0x000055a9 iadd  0x00000006 , 0x00000006 
+ 00028205  0x000055aa branch  0x00006e24 
+ 00028206  0x000055b2 set1  0x00000025 , 0x00000000 
+ 00028207  0x000055b3 bpatch  0x000000cc , 0x00004039 
+ 00028208  0x000055b4 fetch  0x00000002 , 0x0000460d 
+ 00028209  0x000055b5 iforce  0x00000006 
+ 00028210  0x000055b7 ifetch  0x00000001 , 0x00000006 
+ 00028211  0x000055b8 branch  0x00006e4f , 0x00000034 
+ 00028212  0x000055b9 iforce  0x00000039 
+ 00028213  0x000055bb ifetch  0x00000002 , 0x00000006 
+ 00028214  0x000055bc isub  0x00000013 , 0x0000003e 
+ 00028215  0x000055bd branch  0x00006e3d , 0x00000005 
+ 00028216  0x000055be loop  0x00006e35 
+ 00028217  0x000055bf increase  0x00000004 , 0x00000006 
+ 00028218  0x000055c0 call  0x00006dea 
+ 00028219  0x000055c1 iadd  0x00000006 , 0x00000006 
+ 00028220  0x000055c2 branch  0x00006e32 
+ 00028221  0x000055c4 increase  0xffffffff , 0x00000039 
+ 00028222  0x000055c5 lshift  0x00000039 , 0x0000003f 
+ 00028223  0x000055c6 iadd  0x00000006 , 0x00000006 
+ 00028224  0x000055c7 increase  0x00000004 , 0x00000006 
+ 00028225  0x000055c8 call  0x00006dea 
+ 00028226  0x000055c9 iadd  0x00000006 , 0x00000002 
+ 00028227  0x000055cb increase  0x00000001 , 0x00000006 
+ 00028228  0x000055cc ifetch  0x00000002 , 0x00000006 
+ 00028229  0x000055cd isub  0x00000012 , 0x0000000b 
+ 00028230  0x000055cf setflag  0x00000005 , 0x00000000 , 0x0000003f 
+ 00028231  0x000055d0 copy  0x0000000b , 0x0000000b 
+ 00028232  0x000055d1 rtn  0x00000005 
+ 00028233  0x000055d2 call  0x00006dd8 
+ 00028234  0x000055d3 iadd  0x00000006 , 0x00000006 
+ 00028235  0x000055d4 deposit  0x00000002 
+ 00028236  0x000055d5 isub  0x00000006 , 0x0000003e 
+ 00028237  0x000055d6 branch  0x00006e4f , 0x00000005 
+ 00028238  0x000055d7 branch  0x00006e43 
+ 00028239  0x000055d9 force  0x00000000 , 0x00000006 
+ 00028240  0x000055da force  0x00000000 , 0x0000003f 
+ 00028241  0x000055db rtn 
+ 00028242  0x000055e2 set1  0x00000025 , 0x00000000 
+ 00028243  0x000055e3 bpatch  0x000000cd , 0x00004039 
+ 00028244  0x000055e4 fetch  0x00000002 , 0x0000460d 
+ 00028245  0x000055e5 iforce  0x00000006 
+ 00028246  0x000055e7 ifetch  0x00000001 , 0x00000006 
+ 00028247  0x000055e8 branch  0x00006e6c , 0x00000034 
+ 00028248  0x000055e9 lshift  0x0000003f , 0x0000003f 
+ 00028249  0x000055ea iadd  0x00000006 , 0x00000006 
+ 00028250  0x000055eb ifetch  0x00000004 , 0x00000006 
+ 00028251  0x000055ec isub  0x00000002 , 0x0000003e 
+ 00028252  0x000055ed branch  0x00006e60 , 0x00000005 
+ 00028253  0x000055ee call  0x00006dea 
+ 00028254  0x000055ef iadd  0x00000006 , 0x00000006 
+ 00028255  0x000055f0 branch  0x00006e56 
+ 00028256  0x000055f2 call  0x00006dea 
+ 00028257  0x000055f3 iadd  0x00000006 , 0x00000002 
+ 00028258  0x000055f5 increase  0x00000001 , 0x00000006 
+ 00028259  0x000055f6 ifetch  0x00000002 , 0x00000006 
+ 00028260  0x000055f7 isub  0x00000012 , 0x0000003e 
+ 00028261  0x000055f8 rtn  0x00000005 
+ 00028262  0x000055f9 call  0x00006dd8 
+ 00028263  0x000055fa iadd  0x00000006 , 0x00000006 
+ 00028264  0x000055fb deposit  0x00000002 
+ 00028265  0x000055fc isub  0x00000006 , 0x0000003e 
+ 00028266  0x000055fd branch  0x00006e6c , 0x00000005 
+ 00028267  0x000055fe branch  0x00006e62 
+ 00028268  0x00005600 force  0x00000000 , 0x00000006 
+ 00028269  0x00005601 rtn 
+ 00028270  0x00005607 set1  0x00000025 , 0x00000000 
+ 00028271  0x00005608 bpatch  0x000000ce , 0x00004039 
+ 00028272  0x00005609 jam  0x00000050 , 0x00000509 
+ 00028273  0x0000560a arg  0x0000050a , 0x00000005 
+ 00028274  0x0000560b arg  0x000044c3 , 0x00000006 
+ 00028275  0x0000560c call  0x00007e87 
+ 00028276  0x0000560d arg  0x0000465a , 0x00000006 
+ 00028277  0x0000560e call  0x00007e85 
+ 00028278  0x0000560f arg  0x000008e2 , 0x00000006 
+ 00028279  0x00005610 call  0x00007e85 
+ 00028280  0x00005611 call  0x00006f2d 
+ 00028281  0x00005612 arg  0x00000352 , 0x00000006 
+ 00028282  0x00005613 call  0x00006f28 
+ 00028283  0x00005614 call  0x00006ef2 
+ 00028284  0x00005616 arg  0x00000a11 , 0x00000005 
+ 00028285  0x00005617 call  0x00006f24 
+ 00028286  0x00005618 setarg  0x000f4240 
+ 00028287  0x00005619 copy  0x0000003f , 0x00000011 
+ 00028288  0x0000561a fetch  0x00000004 , 0x00000a11 
+ 00028289  0x0000561b idiv  0x00000011 
+ 00028290  0x0000561c call  0x00007f53 
+ 00028291  0x0000561d remainder  0x0000003f 
+ 00028292  0x0000561e store  0x00000004 , 0x000008de 
+ 00028293  0x00005620 rtn 
+ 00028294  0x00005623 jam  0x00000041 , 0x00000509 
+ 00028295  0x00005624 arg  0x0000050a , 0x00000005 
+ 00028296  0x00005625 call  0x00006ed7 
+ 00028297  0x00005626 call  0x00006ed2 
+ 00028298  0x00005627 fetch  0x00000003 , 0x000044dd 
+ 00028299  0x00005628 istore  0x00000003 , 0x00000005 
+ 00028300  0x0000562b call  0x00006e96 
+ 00028301  0x0000562d arg  0x00000352 , 0x00000006 
+ 00028302  0x0000562e call  0x00007e87 
+ 00028303  0x0000562f arg  0x000044c3 , 0x00000006 
+ 00028304  0x00005630 call  0x00007e87 
+ 00028305  0x00005631 call  0x00006f2d 
+ 00028306  0x00005632 arg  0x00000a31 , 0x00000006 
+ 00028307  0x00005633 arg  0x000009e1 , 0x00000005 
+ 00028308  0x00005634 call  0x00007e87 
+ 00028309  0x00005636 branch  0x00006ef2 
+ 00028310  0x0000563b fetch  0x00000004 , 0x0000456d 
+ 00028311  0x0000563c istore  0x00000004 , 0x00000005 
+ 00028312  0x0000563d call  0x00007e98 
+ 00028313  0x0000563e branch  0x00007e95 
+ 00028314  0x00005641 set1  0x00000025 , 0x00000000 
+ 00028315  0x00005642 bpatch  0x000000cf , 0x00004039 
+ 00028316  0x00005643 jam  0x00000041 , 0x00000509 
+ 00028317  0x00005644 arg  0x0000050a , 0x00000005 
+ 00028318  0x00005645 call  0x00006ed2 
+ 00028319  0x00005646 call  0x00006ed7 
+ 00028320  0x00005647 fetch  0x00000003 , 0x000044d6 
+ 00028321  0x00005648 istore  0x00000003 , 0x00000005 
+ 00028322  0x0000564b call  0x00006e96 
+ 00028323  0x0000564c arg  0x000044c3 , 0x00000006 
+ 00028324  0x0000564d call  0x00007e87 
+ 00028325  0x0000564e arg  0x00000352 , 0x00000006 
+ 00028326  0x0000564f call  0x00007e87 
+ 00028327  0x00005650 call  0x00006f2d 
+ 00028328  0x00005651 arg  0x00000a31 , 0x00000006 
+ 00028329  0x00005652 arg  0x000009e1 , 0x00000005 
+ 00028330  0x00005653 call  0x00007e87 
+ 00028331  0x00005655 call  0x00006ef2 
+ 00028332  0x00005656 arg  0x00000a11 , 0x00000005 
+ 00028333  0x00005657 branch  0x00006f24 
+ 00028334  0x0000565a jam  0x00000020 , 0x00000509 
+ 00028335  0x0000565b arg  0x00000922 , 0x00000006 
+ 00028336  0x0000565c arg  0x0000050a , 0x00000005 
+ 00028337  0x0000565d call  0x00007e85 
+ 00028338  0x0000565e call  0x00006f2d 
+ 00028339  0x0000565f arg  0x000008c2 , 0x00000006 
+ 00028340  0x00005660 call  0x00006f28 
+ 00028341  0x00005661 call  0x00006ef2 
+ 00028342  0x00005662 arg  0x000009e1 , 0x00000005 
+ 00028343  0x00005663 call  0x000071c0 
+ 00028344  0x00005664 arg  0x00000001 , 0x00000002 
+ 00028345  0x00005665 call  0x00006ec0 
+ 00028346  0x00005666 arg  0x000044a2 , 0x00000005 
+ 00028347  0x00005667 call  0x00006f24 
+ 00028348  0x00005668 arg  0x00000000 , 0x00000002 
+ 00028349  0x00005669 call  0x00006ec0 
+ 00028350  0x0000566a arg  0x00000a31 , 0x00000005 
+ 00028351  0x0000566c branch  0x000071c0 
+ 00028352  0x00005670 set1  0x00000025 , 0x00000000 
+ 00028353  0x00005671 bpatch  0x000000d0 , 0x0000403a 
+ 00028354  0x00005672 jam  0x00000035 , 0x00000509 
+ 00028355  0x00005673 setarg  0x00000100 
+ 00028356  0x00005674 store  0x00000002 , 0x0000050a 
+ 00028357  0x00005675 call  0x00006ed2 
+ 00028358  0x00005676 call  0x00006ed7 
+ 00028359  0x00005677 arg  0x000044c3 , 0x00000006 
+ 00028360  0x00005678 call  0x00007e87 
+ 00028361  0x00005679 arg  0x00000352 , 0x00000006 
+ 00028362  0x0000567a call  0x00007e87 
+ 00028363  0x0000567c setarg  0x00006c65 
+ 00028364  0x0000567d istore  0x00000002 , 0x00000005 
+ 00028365  0x0000567e setarg  0x00006274 
+ 00028366  0x0000567f istore  0x00000002 , 0x00000005 
+ 00028367  0x00005680 istoret  0x00000001 , 0x00000005 
+ 00028368  0x00005681 call  0x00006f2d 
+ 00028369  0x00005682 branch  0x00006ef2 
+ 00028370  0x00005685 fetch  0x00000006 , 0x0000453e 
+ 00028371  0x00005686 istore  0x00000006 , 0x00000005 
+ 00028372  0x00005687 fetch  0x00000001 , 0x00004532 
+ 00028373  0x00005688 istore  0x00000001 , 0x00000005 
+ 00028374  0x00005689 rtn 
+ 00028375  0x0000568c fetch  0x00000006 , 0x00000372 
+ 00028376  0x0000568d istore  0x00000006 , 0x00000005 
+ 00028377  0x00005692 fetch  0x00000001 , 0x0000452b 
+ 00028378  0x00005693 istore  0x00000001 , 0x00000005 
+ 00028379  0x00005694 rtn 
+ 00028380  0x00005697 jam  0x00000041 , 0x00000509 
+ 00028381  0x00005698 fetch  0x00000001 , 0x000046ec 
+ 00028382  0x00005699 store  0x00000001 , 0x0000050a 
+ 00028383  0x0000569a arg  0x0000465a , 0x00000006 
+ 00028384  0x0000569b call  0x00007e85 
+ 00028385  0x0000569c arg  0x000008e2 , 0x00000006 
+ 00028386  0x0000569d call  0x00007e85 
+ 00028387  0x0000569e call  0x00006f2d 
+ 00028388  0x0000569f arg  0x00000352 , 0x00000006 
+ 00028389  0x000056a0 call  0x00006f28 
+ 00028390  0x000056a1 branch  0x00006ef2 
+ 00028391  0x000056a5 jam  0x00000041 , 0x00000509 
+ 00028392  0x000056a6 fetch  0x00000001 , 0x000046ec 
+ 00028393  0x000056a7 store  0x00000001 , 0x0000050a 
+ 00028394  0x000056a8 arg  0x000008e2 , 0x00000006 
+ 00028395  0x000056a9 call  0x00007e85 
+ 00028396  0x000056aa arg  0x0000465a , 0x00000006 
+ 00028397  0x000056ab call  0x00007e85 
+ 00028398  0x000056ac call  0x00006f2d 
+ 00028399  0x000056ad arg  0x000044c3 , 0x00000006 
+ 00028400  0x000056ae call  0x00006f28 
+ 00028401  0x000056af branch  0x00006ef2 
+ 00028402  0x000056b2 set1  0x00000025 , 0x00000000 
+ 00028403  0x000056b3 bpatch  0x000000d1 , 0x0000403a 
+ 00028404  0x000056b4 call  0x00006f42 
+ 00028405  0x000056b8 fetch  0x00000001 , 0x00000509 
+ 00028406  0x000056b9 copy  0x0000003f , 0x00000002 
+ 00028407  0x000056bb increase  0x0000000f , 0x0000003f 
+ 00028408  0x000056bc rshift4  0x0000003f , 0x0000003f 
+ 00028409  0x000056bd copy  0x0000003f , 0x00000012 
+ 00028410  0x000056be branch  0x00006f05 , 0x00000034 
+ 00028411  0x000056bf and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028412  0x000056c0 nbranch  0x00006f08 , 0x00000034 
+ 00028413  0x000056c2 arg  0x000009f1 , 0x00000013 
+ 00028414  0x000056c3 arg  0x0000050a , 0x0000003f 
+ 00028415  0x000056c4 increase  0xfffffff0 , 0x0000003f 
+ 00028416  0x000056c7 iadd  0x00000002 , 0x00000011 
+ 00028417  0x000056c8 arg  0x00000a21 , 0x00000005 
+ 00028418  0x000056c9 arg  0x00000004 , 0x00000039 
+ 00028419  0x000056ca call  0x00007ea8 
+ 00028420  0x000056ce branch  0x00006f13 
+ 00028421  0x000056d1 arg  0x00000001 , 0x00000012 
+ 00028422  0x000056d2 arg  0x00000000 , 0x00000011 
+ 00028423  0x000056d4 branch  0x00006f09 
+ 00028424  0x000056d9 and  0x00000002 , 0x0000000f , 0x00000011 
+ 00028425  0x000056db arg  0x0000050a , 0x0000003f 
+ 00028426  0x000056dc iadd  0x00000002 , 0x0000003f 
+ 00028427  0x000056dd isub  0x00000011 , 0x00000006 
+ 00028428  0x000056df arg  0x00000a11 , 0x00000005 
+ 00028429  0x000056e0 call  0x00006f69 
+ 00028430  0x000056e2 arg  0x00000a01 , 0x00000013 
+ 00028431  0x000056e3 arg  0x00000a11 , 0x00000011 
+ 00028432  0x000056e4 arg  0x00000a21 , 0x00000005 
+ 00028433  0x000056e5 arg  0x00000004 , 0x00000039 
+ 00028434  0x000056e6 call  0x00007ea8 
+ 00028435  0x000056f2 call  0x000071ba 
+ 00028436  0x000056f3 call  0x00007150 
+ 00028437  0x000056f6 arg  0x0000050a , 0x00000006 
+ 00028438  0x000056f9 increase  0xffffffff , 0x00000012 
+ 00028439  0x000056fa deposit  0x00000012 
+ 00028440  0x000056fb branch  0x00006f1c , 0x00000034 
+ 00028441  0x000056fc call  0x000071af 
+ 00028442  0x000056fd call  0x0000714a 
+ 00028443  0x000056fe branch  0x00006f16 
+ 00028444  0x00005701 arg  0x00000a11 , 0x00000005 
+ 00028445  0x00005702 call  0x000071c0 
+ 00028446  0x00005703 arg  0x00000a21 , 0x00000006 
+ 00028447  0x00005704 call  0x000071af 
+ 00028448  0x00005705 call  0x00007150 
+ 00028449  0x00005706 arg  0x00000a11 , 0x00000006 
+ 00028450  0x00005707 call  0x000071af 
+ 00028451  0x00005708 branch  0x0000714a 
+ 00028452  0x0000570e copy  0x00000005 , 0x00000011 
+ 00028453  0x0000570f call  0x000071c0 
+ 00028454  0x00005711 arg  0x00000010 , 0x00000039 
+ 00028455  0x00005712 branch  0x00007eb0 
+ 00028456  0x00005715 arg  0x000009e1 , 0x00000005 
+ 00028457  0x00005716 call  0x00007e87 
+ 00028458  0x00005718 arg  0x00000010 , 0x00000039 
+ 00028459  0x00005719 arg  0x000009e1 , 0x00000011 
+ 00028460  0x0000571a branch  0x00007eb0 
+ 00028461  0x0000571d fetch  0x00000001 , 0x00000509 
+ 00028462  0x0000571e copy  0x0000003f , 0x00000039 
+ 00028463  0x0000571f arg  0x0000050a , 0x00000011 
+ 00028464  0x00005720 branch  0x00007eb0 
+ 00028465  0x00005723 ifetch  0x00000001 , 0x00000011 
+ 00028466  0x00005724 lshift  0x0000003f , 0x0000003f 
+ 00028467  0x00005725 isolate1  0x00000000 , 0x00000013 
+ 00028468  0x00005726 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00028469  0x00005727 isolate1  0x00000008 , 0x0000003f 
+ 00028470  0x00005728 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00028471  0x00005729 istore  0x00000001 , 0x00000011 
+ 00028472  0x0000572a increase  0xffffffff , 0x00000011 
+ 00028473  0x0000572b loop  0x00006f31 
+ 00028474  0x0000572c rtn 
+ 00028475  0x0000572f arg  0x000009f1 , 0x00000011 
+ 00028476  0x00005731 increase  0x0000000f , 0x00000011 
+ 00028477  0x00005732 force  0x00000010 , 0x00000039 
+ 00028478  0x00005733 force  0x00000000 , 0x00000013 
+ 00028479  0x00005734 branch  0x00006f31 
+ 00028480  0x00005737 arg  0x00000a01 , 0x00000011 
+ 00028481  0x00005738 branch  0x00006f3c 
+ 00028482  0x0000573c arg  0x000009e1 , 0x00000006 
+ 00028483  0x0000573d call  0x000071ad 
+ 00028484  0x00005740 force  0x00000008 , 0x00000038 
+ 00028485  0x00005741 call  0x000071bb 
+ 00028486  0x00005742 call  0x000071ba 
+ 00028487  0x00005743 call  0x00007147 
+ 00028488  0x00005748 arg  0x000009f1 , 0x00000005 
+ 00028489  0x00005749 call  0x000071c0 
+ 00028490  0x0000574b set1  0x00000025 , 0x00000000 
+ 00028491  0x0000574c bpatch  0x000000d2 , 0x0000403a 
+ 00028492  0x0000574d fetch  0x00000001 , 0x000009f1 
+ 00028493  0x0000574e isolate1  0x00000007 , 0x0000003f 
+ 00028494  0x0000574f nbranch  0x00006f54 , 0x00000001 
+ 00028495  0x00005750 call  0x00006f3b 
+ 00028496  0x00005753 arg  0x000009f1 , 0x00000013 
+ 00028497  0x00005755 arg  0x000009f1 , 0x00000005 
+ 00028498  0x00005758 call  0x00006f5e 
+ 00028499  0x00005759 branch  0x00006f55 
+ 00028500  0x0000575b call  0x00006f3b 
+ 00028501  0x0000575e arg  0x000009f1 , 0x00000006 
+ 00028502  0x0000575f arg  0x00000a01 , 0x00000005 
+ 00028503  0x00005760 call  0x00007e87 
+ 00028504  0x00005761 fetch  0x00000001 , 0x00000a01 
+ 00028505  0x00005762 isolate1  0x00000007 , 0x0000003f 
+ 00028506  0x00005763 nbranch  0x00006f40 , 0x00000001 
+ 00028507  0x00005764 call  0x00006f40 
+ 00028508  0x00005766 arg  0x00000a01 , 0x00000013 
+ 00028509  0x00005768 arg  0x00000a01 , 0x00000005 
+ 00028510  0x0000576f arg  0x00000003 , 0x00000039 
+ 00028511  0x00005771 arg  0x00000000 , 0x00000002 
+ 00028512  0x00005772 call  0x00006f65 
+ 00028513  0x00005773 increase  0x00000004 , 0x00000013 
+ 00028514  0x00005774 loop  0x00006f5f 
+ 00028515  0x00005775 arg  0x00008700 , 0x00000002 
+ 00028516  0x00005776 lshift16  0x00000002 , 0x00000002 
+ 00028517  0x00005778 ifetch  0x00000004 , 0x00000013 
+ 00028518  0x00005779 ixor  0x00000002 , 0x0000003f 
+ 00028519  0x0000577a istore  0x00000004 , 0x00000005 
+ 00028520  0x0000577b rtn 
+ 00028521  0x00005782 set1  0x00000025 , 0x00000000 
+ 00028522  0x00005783 bpatch  0x000000d3 , 0x0000403a 
+ 00028523  0x00005784 arg  0x00000010 , 0x00000039 
+ 00028524  0x00005785 arg  0x00000000 , 0x0000003f 
+ 00028525  0x00005787 isub  0x00000011 , 0x0000003e 
+ 00028526  0x00005788 branch  0x00006f75 , 0x00000005 
+ 00028527  0x00005789 branch  0x00006f78 , 0x00000002 
+ 00028528  0x0000578a ifetcht  0x00000001 , 0x00000006 
+ 00028529  0x0000578b istoret  0x00000001 , 0x00000005 
+ 00028530  0x0000578d increase  0x00000001 , 0x0000003f 
+ 00028531  0x0000578e loop  0x00006f6d 
+ 00028532  0x0000578f rtn 
+ 00028533  0x00005791 arg  0x00000080 , 0x00000002 
+ 00028534  0x00005793 istoret  0x00000001 , 0x00000005 
+ 00028535  0x00005794 branch  0x00006f72 
+ 00028536  0x00005797 arg  0x00000000 , 0x00000002 
+ 00028537  0x00005798 branch  0x00006f76 
+ 00028538  0x0000579c call  0x00006f8d 
+ 00028539  0x0000579d arg  0x000004b6 , 0x00000006 
+ 00028540  0x0000579e arg  0x000004a6 , 0x00000005 
+ 00028541  0x0000579f branch  0x00007e87 
+ 00028542  0x000057a3 disable  0x00000028 
+ 00028543  0x000057a4 call  0x00007084 
+ 00028544  0x000057a5 arg  0x00000486 , 0x00000006 
+ 00028545  0x000057a6 arg  0x000004c6 , 0x00000005 
+ 00028546  0x000057a7 force  0x0000000f , 0x00000039 
+ 00028547  0x000057a8 call  0x00007ecd 
+ 00028548  0x000057a9 ifetch  0x00000001 , 0x00000006 
+ 00028549  0x000057aa xor_into  0x00000006 , 0x0000003f 
+ 00028550  0x000057ab istore  0x00000001 , 0x00000005 
+ 00028551  0x000057ac setarg  0x000004d6 
+ 00028552  0x000057ad store  0x00000002 , 0x000004fa 
+ 00028553  0x000057ae setarg  0x000004c6 
+ 00028554  0x000057af store  0x00000002 , 0x000004f8 
+ 00028555  0x000057b0 set1  0x00000012 , 0x00000000 
+ 00028556  0x000057b1 branch  0x00006fcd 
+ 00028557  0x000057b6 fetcht  0x00000001 , 0x00004718 
+ 00028558  0x000057b7 force  0x00000010 , 0x00000012 
+ 00028559  0x000057b8 add  0x00000002 , 0x00000006 , 0x00000013 
+ 00028560  0x000057b9 sub  0x00000013 , 0x00000010 , 0x0000003e 
+ 00028561  0x000057ba branch  0x00006f93 , 0x00000002 
+ 00028562  0x000057bb force  0x00000010 , 0x00000013 
+ 00028563  0x000057bd arg  0x000004c6 , 0x00000005 
+ 00028564  0x000057bf arg  0x00004719 , 0x00000006 
+ 00028565  0x000057c0 copy  0x00000002 , 0x00000039 
+ 00028566  0x000057c1 disable  0x00000028 
+ 00028567  0x000057c3 ifetch  0x00000001 , 0x00000006 
+ 00028568  0x000057c4 istore  0x00000001 , 0x00000005 
+ 00028569  0x000057c5 increase  0xffffffff , 0x00000012 
+ 00028570  0x000057c6 branch  0x00006fa1 , 0x00000005 
+ 00028571  0x000057c7 loop  0x00006f97 
+ 00028572  0x000057c8 branch  0x00006f94 , 0x00000028 
+ 00028573  0x000057c9 enable  0x00000028 
+ 00028574  0x000057ca force  0x00000006 , 0x00000039 
+ 00028575  0x000057cb copy  0x00000011 , 0x00000006 
+ 00028576  0x000057cc branch  0x00006f97 
+ 00028577  0x000057ce arg  0x00000486 , 0x00000006 
+ 00028578  0x000057cf arg  0x000004d6 , 0x00000005 
+ 00028579  0x000057d0 call  0x00007e87 
+ 00028580  0x000057d1 fetch  0x00000001 , 0x000004e5 
+ 00028581  0x000057d2 ixor  0x00000013 , 0x0000003f 
+ 00028582  0x000057d3 store  0x00000001 , 0x000004e5 
+ 00028583  0x000057d4 setarg  0x000004d6 
+ 00028584  0x000057d5 store  0x00000002 , 0x000004fa 
+ 00028585  0x000057d6 setarg  0x000004c6 
+ 00028586  0x000057d7 store  0x00000002 , 0x000004f8 
+ 00028587  0x000057d8 set1  0x00000012 , 0x00000000 
+ 00028588  0x000057d9 branch  0x00006fcd 
+ 00028589  0x000057df disable  0x00000028 
+ 00028590  0x000057e0 call  0x00007084 
+ 00028591  0x000057e1 branch  0x00006fb7 
+ 00028592  0x000057e4 arg  0x00000056 , 0x00000011 
+ 00028593  0x000057e5 enable  0x00000028 
+ 00028594  0x000057e6 call  0x00007084 
+ 00028595  0x000057e7 call  0x00006fb7 
+ 00028596  0x000057e8 arg  0x000004b6 , 0x00000006 
+ 00028597  0x000057e9 arg  0x00000062 , 0x00000005 
+ 00028598  0x000057ea branch  0x00007e87 
+ 00028599  0x000057ee setarg  0x00000486 
+ 00028600  0x000057ef store  0x00000002 , 0x000004fa 
+ 00028601  0x000057f0 setarg  0x00004261 
+ 00028602  0x000057f1 store  0x00000002 , 0x000004f8 
+ 00028603  0x000057f2 set0  0x00000012 , 0x00000000 
+ 00028604  0x000057f3 call  0x00006fcd 
+ 00028605  0x000057f4 arg  0x000004b6 , 0x00000011 
+ 00028606  0x000057f5 arg  0x00000486 , 0x00000012 
+ 00028607  0x000057f6 arg  0x000004c6 , 0x00000005 
+ 00028608  0x000057f7 call  0x00007077 
+ 00028609  0x000057f8 arg  0x000004c6 , 0x00000011 
+ 00028610  0x000057f9 arg  0x000004d6 , 0x00000012 
+ 00028611  0x000057fa copy  0x00000012 , 0x00000005 
+ 00028612  0x000057fb enable  0x00000028 
+ 00028613  0x000057fc call  0x00007075 
+ 00028614  0x000057fd call  0x0000708f 
+ 00028615  0x000057fe setarg  0x000004d6 
+ 00028616  0x000057ff store  0x00000002 , 0x000004fa 
+ 00028617  0x00005800 setarg  0x000004c6 
+ 00028618  0x00005801 store  0x00000002 , 0x000004f8 
+ 00028619  0x00005802 set1  0x00000012 , 0x00000000 
+ 00028620  0x00005803 branch  0x00006fcd 
+ 00028621  0x00005808 jam  0x00000000 , 0x000004fc 
+ 00028622  0x00005809 fetch  0x00000002 , 0x000004f8 
+ 00028623  0x0000580a iforce  0x00000006 
+ 00028624  0x0000580b arg  0x000004e6 , 0x00000005 
+ 00028625  0x0000580c call  0x00007e87 
+ 00028626  0x0000580d fetch  0x00000002 , 0x000004fa 
+ 00028627  0x0000580e iforce  0x00000006 
+ 00028628  0x0000580f arg  0x000004b6 , 0x00000005 
+ 00028629  0x00005810 call  0x00007e87 
+ 00028630  0x00005813 call  0x00006ff4 
+ 00028631  0x00005814 disable  0x00000028 
+ 00028632  0x00005815 bmark0  0x00000012 , 0x00006fde 
+ 00028633  0x00005816 fetch  0x00000001 , 0x000004fc 
+ 00028634  0x00005817 bne  0x00000004 , 0x00006fde 
+ 00028635  0x00005818 fetch  0x00000002 , 0x000004fa 
+ 00028636  0x00005819 iforce  0x00000012 
+ 00028637  0x0000581a call  0x00007026 
+ 00028638  0x0000581c call  0x00007025 
+ 00028639  0x0000581d call  0x00007038 
+ 00028640  0x0000581e fetch  0x00000001 , 0x000004fc 
+ 00028641  0x0000581f increase  0x00000001 , 0x0000003f 
+ 00028642  0x00005820 store  0x00000001 , 0x000004fc 
+ 00028643  0x00005822 call  0x00006ff4 
+ 00028644  0x00005823 enable  0x00000028 
+ 00028645  0x00005824 call  0x00007025 
+ 00028646  0x00005825 call  0x00007047 
+ 00028647  0x00005826 call  0x00007056 
+ 00028648  0x00005827 call  0x00007047 
+ 00028649  0x00005828 call  0x00007056 
+ 00028650  0x00005829 call  0x00007047 
+ 00028651  0x0000582a call  0x00007056 
+ 00028652  0x0000582b call  0x00007047 
+ 00028653  0x0000582c fetch  0x00000001 , 0x000004fc 
+ 00028654  0x0000582d increase  0x00000001 , 0x0000003f 
+ 00028655  0x0000582e store  0x00000001 , 0x000004fc 
+ 00028656  0x0000582f bne  0x00000010 , 0x00006fd6 
+ 00028657  0x00005830 call  0x00006ff4 
+ 00028658  0x00005831 disable  0x00000028 
+ 00028659  0x00005832 branch  0x00007025 
+ 00028660  0x00005837 fetch  0x00000001 , 0x000004fc 
+ 00028661  0x00005838 arg  0x000004e6 , 0x00000006 
+ 00028662  0x00005839 branch  0x0000701b , 0x00000034 
+ 00028663  0x0000583a iforce  0x00000012 
+ 00028664  0x0000583b force  0x00000011 , 0x00000039 
+ 00028665  0x0000583c copy  0x00000006 , 0x00000005 
+ 00028666  0x0000583e ifetch  0x00000001 , 0x00000006 
+ 00028667  0x0000583f lshift3  0x0000003f , 0x00000002 
+ 00028668  0x00005840 rshift2  0x0000003f , 0x0000003f 
+ 00028669  0x00005841 rshift3  0x0000003f , 0x0000003f 
+ 00028670  0x00005842 ior  0x00000002 , 0x0000003f 
+ 00028671  0x00005843 istore  0x00000001 , 0x00000005 
+ 00028672  0x00005844 loop  0x00006ffa 
+ 00028673  0x00005845 setarg  0x000004e6 
+ 00028674  0x00005846 iadd  0x00000012 , 0x00000006 
+ 00028675  0x00005847 force  0x00000010 , 0x00000039 
+ 00028676  0x00005848 arg  0x00000496 , 0x00000005 
+ 00028677  0x0000584a ifetch  0x00000001 , 0x00000006 
+ 00028678  0x0000584b istore  0x00000001 , 0x00000005 
+ 00028679  0x0000584c compare  0x000004f7 , 0x00000006 , 0x000000ff 
+ 00028680  0x0000584d nbranch  0x0000700a , 0x00000001 
+ 00028681  0x0000584e increase  0xffffffef , 0x00000006 
+ 00028682  0x00005850 loop  0x00007005 
+ 00028683  0x00005851 force  0x00000000 , 0x00000011 
+ 00028684  0x00005852 add  0x00000012 , 0xffffffff , 0x00000013 
+ 00028685  0x00005853 lshift2  0x00000013 , 0x00000013 
+ 00028686  0x00005854 lshift2  0x00000013 , 0x00000013 
+ 00028687  0x00005855 call  0x000071e2 
+ 00028688  0x00005856 setarg  0x00008400 
+ 00028689  0x00005857 iadd  0x00000013 , 0x00000013 
+ 00028690  0x00005858 arg  0x00000496 , 0x00000005 
+ 00028691  0x00005859 force  0x00000010 , 0x00000039 
+ 00028692  0x0000585b ifetcht  0x00000001 , 0x00000013 
+ 00028693  0x0000585c ifetch  0x00000001 , 0x00000005 
+ 00028694  0x0000585d iadd  0x00000002 , 0x0000003f 
+ 00028695  0x0000585e istore  0x00000001 , 0x00000005 
+ 00028696  0x0000585f increase  0x00000001 , 0x00000013 
+ 00028697  0x00005860 loop  0x00007014 
+ 00028698  0x00005861 branch  0x000071e6 
+ 00028699  0x00005864 force  0x00000010 , 0x00000039 
+ 00028700  0x00005865 force  0x00000000 , 0x00000002 
+ 00028701  0x00005867 ifetch  0x00000001 , 0x00000006 
+ 00028702  0x00005868 ixor  0x00000002 , 0x00000002 
+ 00028703  0x00005869 loop  0x0000701d 
+ 00028704  0x0000586a deposit  0x00000002 
+ 00028705  0x0000586b istore  0x00000001 , 0x00000006 
+ 00028706  0x0000586c arg  0x000004e6 , 0x00000006 
+ 00028707  0x0000586d arg  0x00000496 , 0x00000005 
+ 00028708  0x0000586e branch  0x00007e87 
+ 00028709  0x00005871 arg  0x00000496 , 0x00000012 
+ 00028710  0x00005873 force  0x00000010 , 0x00000039 
+ 00028711  0x00005874 arg  0x000004b6 , 0x00000011 
+ 00028712  0x00005875 copy  0x00000011 , 0x00000005 
+ 00028713  0x00005877 ifetcht  0x00000001 , 0x00000011 
+ 00028714  0x00005878 ifetch  0x00000001 , 0x00000012 
+ 00028715  0x00005879 ixor  0x00000002 , 0x00000030 
+ 00028716  0x0000587a and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028717  0x0000587b nbranch  0x0000702f , 0x00000028 
+ 00028718  0x0000587c xor_into  0x00000003 , 0x00000013 
+ 00028719  0x0000587e sub  0x00000013 , 0x00000001 , 0x00000013 
+ 00028720  0x0000587f branch  0x00007032 , 0x00000002 
+ 00028721  0x00005880 iadd  0x00000002 , 0x00000030 
+ 00028722  0x00005882 deposit  0x00000030 
+ 00028723  0x00005883 istore  0x00000001 , 0x00000005 
+ 00028724  0x00005884 increase  0x00000001 , 0x00000011 
+ 00028725  0x00005885 increase  0x00000001 , 0x00000012 
+ 00028726  0x00005886 loop  0x00007029 
+ 00028727  0x00005887 rtn 
+ 00028728  0x0000588a call  0x000071e2 
+ 00028729  0x0000588b force  0x00000010 , 0x00000039 
+ 00028730  0x0000588c arg  0x000004b6 , 0x00000011 
+ 00028731  0x0000588e ifetch  0x00000001 , 0x00000011 
+ 00028732  0x0000588f arg  0x00008500 , 0x00000006 
+ 00028733  0x00005890 and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028734  0x00005891 sub  0x00000013 , 0x00000001 , 0x0000003e 
+ 00028735  0x00005892 branch  0x00007041 , 0x00000002 
+ 00028736  0x00005893 arg  0x00008600 , 0x00000006 
+ 00028737  0x00005895 iadd  0x00000006 , 0x00000006 
+ 00028738  0x00005896 ifetch  0x00000001 , 0x00000006 
+ 00028739  0x00005897 istore  0x00000001 , 0x00000011 
+ 00028740  0x00005898 increase  0x00000001 , 0x00000011 
+ 00028741  0x00005899 loop  0x0000703b 
+ 00028742  0x0000589a branch  0x000071e6 
+ 00028743  0x0000589d force  0x00000008 , 0x00000039 
+ 00028744  0x0000589e arg  0x000004b6 , 0x00000006 
+ 00028745  0x0000589f copy  0x00000006 , 0x00000005 
+ 00028746  0x000058a1 ifetch  0x00000001 , 0x00000006 
+ 00028747  0x000058a2 iforce  0x00000011 
+ 00028748  0x000058a3 ifetch  0x00000001 , 0x00000006 
+ 00028749  0x000058a4 iforce  0x00000012 
+ 00028750  0x000058a5 lshift  0x00000011 , 0x0000003f 
+ 00028751  0x000058a6 iadd  0x00000012 , 0x0000003f 
+ 00028752  0x000058a7 istore  0x00000001 , 0x00000005 
+ 00028753  0x000058a8 deposit  0x00000011 
+ 00028754  0x000058a9 iadd  0x00000012 , 0x0000003f 
+ 00028755  0x000058aa istore  0x00000001 , 0x00000005 
+ 00028756  0x000058ab loop  0x0000704a 
+ 00028757  0x000058ac rtn 
+ 00028758  0x000058b0 setarg  0x008ae42c 
+ 00028759  0x000058b1 iforce  0x00000002 
+ 00028760  0x000058b2 force  0x00000007 , 0x00000039 
+ 00028761  0x000058b3 call  0x00007065 
+ 00028762  0x000058b4 setarg  0x000d751b 
+ 00028763  0x000058b5 iforce  0x00000002 
+ 00028764  0x000058b6 force  0x00000005 , 0x00000039 
+ 00028765  0x000058b7 call  0x00007065 
+ 00028766  0x000058b8 fetch  0x00000001 , 0x000004c5 
+ 00028767  0x000058b9 iforce  0x00000011 
+ 00028768  0x000058ba fetch  0x00000001 , 0x000004b9 
+ 00028769  0x000058bb store  0x00000001 , 0x000004c5 
+ 00028770  0x000058bc deposit  0x00000011 
+ 00028771  0x000058bd store  0x00000001 , 0x000004b9 
+ 00028772  0x000058be rtn 
+ 00028773  0x000058c1 and  0x00000002 , 0x0000000f , 0x00000012 
+ 00028774  0x000058c3 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028775  0x000058c4 arg  0x000004b6 , 0x00000005 
+ 00028776  0x000058c5 iadd  0x00000005 , 0x00000005 
+ 00028777  0x000058c6 ifetch  0x00000001 , 0x00000005 
+ 00028778  0x000058c7 iforce  0x00000013 
+ 00028779  0x000058c8 deposit  0x00000011 
+ 00028780  0x000058c9 istore  0x00000001 , 0x00000005 
+ 00028781  0x000058ca copy  0x00000013 , 0x00000011 
+ 00028782  0x000058cb rshift4  0x00000002 , 0x00000002 
+ 00028783  0x000058cc loop  0x00007066 
+ 00028784  0x000058cd setarg  0x000004b6 
+ 00028785  0x000058ce iadd  0x00000012 , 0x00000005 
+ 00028786  0x000058cf deposit  0x00000011 
+ 00028787  0x000058d0 istore  0x00000001 , 0x00000005 
+ 00028788  0x000058d1 rtn 
+ 00028789  0x000058d4 enable  0x00000028 
+ 00028790  0x000058d5 branch  0x00007078 
+ 00028791  0x000058d8 disable  0x00000028 
+ 00028792  0x000058da force  0x00000010 , 0x00000039 
+ 00028793  0x000058dc ifetcht  0x00000001 , 0x00000011 
+ 00028794  0x000058dd ifetch  0x00000001 , 0x00000012 
+ 00028795  0x000058de branch  0x0000707e , 0x00000028 
+ 00028796  0x000058df ixor  0x00000002 , 0x0000003f 
+ 00028797  0x000058e0 branch  0x0000707f 
+ 00028798  0x000058e2 iadd  0x00000002 , 0x0000003f 
+ 00028799  0x000058e4 istore  0x00000001 , 0x00000005 
+ 00028800  0x000058e5 increase  0x00000001 , 0x00000011 
+ 00028801  0x000058e6 increase  0x00000001 , 0x00000012 
+ 00028802  0x000058e7 loop  0x00007079 
+ 00028803  0x000058e8 rtn 
+ 00028804  0x000058ec arg  0x000004d6 , 0x00000005 
+ 00028805  0x000058ed ifetch  0x00000006 , 0x00000011 
+ 00028806  0x000058ee istore  0x00000006 , 0x00000005 
+ 00028807  0x000058ef branch  0x0000708a , 0x00000028 
+ 00028808  0x000058f0 ifetch  0x00000006 , 0x00000011 
+ 00028809  0x000058f1 branch  0x0000708b 
+ 00028810  0x000058f3 ifetch  0x00000006 , 0x00000006 
+ 00028811  0x000058f5 istore  0x00000006 , 0x00000005 
+ 00028812  0x000058f6 ifetch  0x00000004 , 0x00000011 
+ 00028813  0x000058f7 istore  0x00000004 , 0x00000005 
+ 00028814  0x000058f8 rtn 
+ 00028815  0x000058fb arg  0x00004261 , 0x00000006 
+ 00028816  0x000058fc arg  0x000004c6 , 0x00000005 
+ 00028817  0x000058fd arg  0x00000000 , 0x00000002 
+ 00028818  0x000058fe setarg  0x008395a7 
+ 00028819  0x000058ff call  0x000070b0 
+ 00028820  0x00005900 setarg  0x00b3c1df 
+ 00028821  0x00005901 call  0x000070b0 
+ 00028822  0x00005902 setarg  0x0000e5e9 
+ 00028823  0x00005903 call  0x000070b1 
+ 00028824  0x00005904 copy  0x00000002 , 0x00000014 
+ 00028825  0x00005905 disable  0x00000028 
+ 00028826  0x00005906 call  0x0000709e 
+ 00028827  0x00005907 copy  0x00000014 , 0x00000002 
+ 00028828  0x00005908 enable  0x00000028 
+ 00028829  0x00005909 branch  0x0000709e 
+ 00028830  0x0000590c force  0x00000008 , 0x00000039 
+ 00028831  0x0000590e ifetch  0x00000001 , 0x00000006 
+ 00028832  0x0000590f compare  0x00000001 , 0x00000039 , 0x00000001 
+ 00028833  0x00005910 branch  0x000070a5 , 0x00000028 
+ 00028834  0x00005911 branch  0x000070a6 , 0x00000001 
+ 00028835  0x00005913 iadd  0x00000002 , 0x0000003f 
+ 00028836  0x00005914 branch  0x000070a7 
+ 00028837  0x00005916 branch  0x000070a3 , 0x00000001 
+ 00028838  0x00005918 ixor  0x00000002 , 0x0000003f 
+ 00028839  0x0000591a istore  0x00000001 , 0x00000005 
+ 00028840  0x0000591b rshift8  0x00000002 , 0x00000002 
+ 00028841  0x0000591c loop  0x0000709f 
+ 00028842  0x0000591d rtn 
+ 00028843  0x00005920 fetch  0x00000006 , 0x000004ba 
+ 00028844  0x00005921 store  0x00000006 , 0x00000056 
+ 00028845  0x00005922 ifetch  0x00000006 , 0x00000006 
+ 00028846  0x00005923 istore  0x00000006 , 0x00000005 
+ 00028847  0x00005924 rtn 
+ 00028848  0x00005927 lshift8  0x00000002 , 0x00000002 
+ 00028849  0x00005929 lshift16  0x00000002 , 0x00000002 
+ 00028850  0x0000592a ior  0x00000002 , 0x00000002 
+ 00028851  0x0000592b rtn 
+ 00028852  0x0000592f branch  0x000070b4 
+ 00028853  0x00005934 set1  0x00000025 , 0x00000000 
+ 00028854  0x00005935 bpatch  0x000000d4 , 0x0000403a 
+ 00028855  0x00005936 call  0x00007153 
+ 00028856  0x00005937 arg  0x000044a2 , 0x00000005 
+ 00028857  0x00005938 branch  0x000071c0 
+ 00028858  0x0000593c arg  0x000044c3 , 0x00000005 
+ 00028859  0x0000593d branch  0x000070bd , 0x00000029 
+ 00028860  0x0000593e arg  0x00000352 , 0x00000005 
+ 00028861  0x00005940 copy  0x00000006 , 0x00000011 
+ 00028862  0x00005941 call  0x00007e87 
+ 00028863  0x00005942 call  0x00007168 
+ 00028864  0x00005943 arg  0x000044b3 , 0x00000006 
+ 00028865  0x00005944 branch  0x000071d9 
+ 00028866  0x00005947 arg  0x00000352 , 0x00000011 
+ 00028867  0x00005948 branch  0x000070c5 , 0x00000029 
+ 00028868  0x00005949 arg  0x000044c3 , 0x00000011 
+ 00028869  0x0000594b copy  0x00000011 , 0x00000005 
+ 00028870  0x0000594c call  0x00005917 
+ 00028871  0x0000594d branch  0x00007168 
+ 00028872  0x00005950 arg  0x00004551 , 0x00000006 
+ 00028873  0x00005951 call  0x000071af 
+ 00028874  0x00005952 arg  0x000044a2 , 0x00000006 
+ 00028875  0x00005953 call  0x000071b0 
+ 00028876  0x00005954 force  0x00000038 , 0x00000036 
+ 00028877  0x00005955 force  0x00000000 , 0x00000036 
+ 00028878  0x00005956 call  0x00007145 
+ 00028879  0x00005957 arg  0x000003a0 , 0x00000005 
+ 00028880  0x00005958 branch  0x000071c0 
+ 00028881  0x0000595c force  0x00000049 , 0x0000003f 
+ 00028882  0x0000595d branch  0x000070d4 
+ 00028883  0x0000595f force  0x00000001 , 0x0000003f 
+ 00028884  0x00005961 force  0x00000000 , 0x00000038 
+ 00028885  0x00005962 lshift8  0x00000002 , 0x0000002f 
+ 00028886  0x00005963 ior  0x0000002f , 0x0000002f 
+ 00028887  0x00005964 increase  0x00000001 , 0x00000038 
+ 00028888  0x00005965 rshift8  0x00000002 , 0x0000002f 
+ 00028889  0x00005966 rshift16  0x0000002f , 0x0000002f 
+ 00028890  0x00005967 fetch  0x00000002 , 0x0000449a 
+ 00028891  0x00005968 lshift16 , 0x0000003f , 0x0000003f 
+ 00028892  0x00005969 ior  0x0000002f , 0x0000002f 
+ 00028893  0x0000596a increase  0x00000001 , 0x00000038 
+ 00028894  0x0000596b ifetch  0x00000004 , 0x00000006 
+ 00028895  0x0000596c iforce  0x0000002f 
+ 00028896  0x0000596d increase  0x00000001 , 0x00000038 
+ 00028897  0x0000596e ifetch  0x00000002 , 0x00000006 
+ 00028898  0x0000596f byteswap  0x00000011 , 0x0000002f 
+ 00028899  0x00005970 lshift16  0x0000002f , 0x0000002f 
+ 00028900  0x00005971 ior  0x0000002f , 0x0000002f 
+ 00028901  0x00005972 increase  0x00000001 , 0x00000038 
+ 00028902  0x00005973 rtn 
+ 00028903  0x00005978 add  0x00000013 , 0x00000001 , 0x00000006 
+ 00028904  0x00005979 ifetch  0x00000001 , 0x00000006 
+ 00028905  0x0000597a iforce  0x00000011 
+ 00028906  0x0000597b call  0x000070d1 
+ 00028907  0x0000597c call  0x00007147 
+ 00028908  0x0000597e force  0x00000000 , 0x00000038 
+ 00028909  0x0000597f ifetch  0x00000001 , 0x00000013 
+ 00028910  0x00005980 and_into  0x00000003 , 0x0000003f 
+ 00028911  0x00005981 lshift16  0x0000003f , 0x0000002f 
+ 00028912  0x00005982 set1  0x00000008 , 0x0000002f 
+ 00028913  0x00005983 call  0x000071b8 
+ 00028914  0x00005984 call  0x0000714a 
+ 00028915  0x00005986 copy  0x00000011 , 0x00000039 
+ 00028916  0x00005987 add  0x00000013 , 0x00000002 , 0x00000006 
+ 00028917  0x00005988 call  0x00007197 
+ 00028918  0x0000598a call  0x000071a1 
+ 00028919  0x0000598b call  0x0000714a 
+ 00028920  0x0000598c deposit  0x00000039 
+ 00028921  0x0000598d branch  0x000070fb , 0x00000034 
+ 00028922  0x0000598e branch  0x000070f6 
+ 00028923  0x00005990 force  0x0000000c , 0x00000038 
+ 00028924  0x00005991 deposit  0x0000002f 
+ 00028925  0x00005992 store  0x00000004 , 0x0000033a 
+ 00028926  0x00005993 rtn 
+ 00028927  0x00005996 increase  0x00000001 , 0x00000011 
+ 00028928  0x00005997 call  0x000070d3 
+ 00028929  0x00005998 copy  0x00000013 , 0x00000006 
+ 00028930  0x00005999 call  0x000071ab 
+ 00028931  0x0000599a call  0x0000714d 
+ 00028932  0x0000599b call  0x000071c7 
+ 00028933  0x0000599c increase  0x00000010 , 0x00000013 
+ 00028934  0x0000599d increase  0xfffffff0 , 0x00000012 
+ 00028935  0x0000599e branch  0x000070ff , 0x00000002 
+ 00028936  0x0000599f rtn 
+ 00028937  0x000059a2 set1  0x00000025 , 0x00000000 
+ 00028938  0x000059a3 bpatch  0x000000d5 , 0x0000403a 
+ 00028939  0x000059a4 arg  0x00004465 , 0x00000013 
+ 00028940  0x000059a5 fetcht  0x00000005 , 0x0000448c 
+ 00028941  0x000059a6 call  0x000070e7 
+ 00028942  0x000059a7 force  0x00000008 , 0x00000038 
+ 00028943  0x000059a8 iforce  0x0000002f 
+ 00028944  0x000059a9 force  0x00000000 , 0x00000011 
+ 00028945  0x000059aa call  0x000070d3 
+ 00028946  0x000059ab call  0x0000714d 
+ 00028947  0x000059ac arg  0x00004467 , 0x00000013 
+ 00028948  0x000059ad fetch  0x00000001 , 0x00004466 
+ 00028949  0x000059ae add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028950  0x000059af iadd  0x00000013 , 0x00000005 
+ 00028951  0x000059b0 force  0x0000000c , 0x00000038 
+ 00028952  0x000059b1 deposit  0x0000002f 
+ 00028953  0x000059b2 istore  0x00000004 , 0x00000005 
+ 00028954  0x000059b3 call  0x000070ff 
+ 00028955  0x000059b4 fetch  0x00000001 , 0x00004466 
+ 00028956  0x000059b5 increase  0x00000004 , 0x0000003f 
+ 00028957  0x000059b6 store  0x00000001 , 0x00004466 
+ 00028958  0x000059b7 fetcht  0x00000005 , 0x0000448c 
+ 00028959  0x000059b8 increase  0x00000001 , 0x00000002 
+ 00028960  0x000059b9 storet  0x00000005 , 0x0000448c 
+ 00028961  0x000059ba rtn 
+ 00028962  0x000059bd set1  0x00000025 , 0x00000000 
+ 00028963  0x000059be bpatch  0x000000d6 , 0x0000403a 
+ 00028964  0x000059bf fetch  0x00000001 , 0x00000303 
+ 00028965  0x000059c0 sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00028966  0x000059c1 branch  0x00007127 , 0x00000002 
+ 00028967  0x000059c3 arg  0x00000304 , 0x00000013 
+ 00028968  0x000059c4 add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028969  0x000059c5 increase  0xfffffffc , 0x0000003f 
+ 00028970  0x000059c6 store  0x00000001 , 0x00000303 
+ 00028971  0x000059c7 iadd  0x00000013 , 0x00000006 
+ 00028972  0x000059c8 ifetch  0x00000004 , 0x00000006 
+ 00028973  0x000059c9 force  0x00000008 , 0x00000038 
+ 00028974  0x000059ca iforce  0x0000002f 
+ 00028975  0x000059cb force  0x00000000 , 0x00000011 
+ 00028976  0x000059cc fetcht  0x00000005 , 0x00004491 
+ 00028977  0x000059cd call  0x000070d3 
+ 00028978  0x000059ce call  0x0000714d 
+ 00028979  0x000059cf force  0x0000000c , 0x00000038 
+ 00028980  0x000059d0 deposit  0x0000002f 
+ 00028981  0x000059d1 store  0x00000004 , 0x0000033e 
+ 00028982  0x000059d2 call  0x000070ff 
+ 00028983  0x000059d3 arg  0x00000302 , 0x00000013 
+ 00028984  0x000059d4 call  0x000070e7 
+ 00028985  0x000059d5 fetcht  0x00000004 , 0x0000033e 
+ 00028986  0x000059d6 isub  0x00000002 , 0x0000003f 
+ 00028987  0x000059d7 nrtn  0x00000034 
+ 00028988  0x000059d8 fetch  0x00000004 , 0x00004496 
+ 00028989  0x000059d9 isub  0x00000002 , 0x0000003f 
+ 00028990  0x000059da rtn  0x00000034 
+ 00028991  0x000059db storet  0x00000004 , 0x00004496 
+ 00028992  0x000059dc fetch  0x00000005 , 0x00004491 
+ 00028993  0x000059dd increase  0x00000001 , 0x0000003f 
+ 00028994  0x000059de store  0x00000005 , 0x00004491 
+ 00028995  0x000059df force  0x00000000 , 0x0000003f 
+ 00028996  0x000059e0 rtn 
+ 00028997  0x000059e3 nbranch  0x00007145 , 0x00000037 
+ 00028998  0x000059e4 rtn 
+ 00028999  0x000059e7 force  0x00000030 , 0x00000036 
+ 00029000  0x000059e8 force  0x00000000 , 0x00000036 
+ 00029001  0x000059e9 branch  0x00007145 
+ 00029002  0x000059ec force  0x00000032 , 0x00000036 
+ 00029003  0x000059ed force  0x00000002 , 0x00000036 
+ 00029004  0x000059ee branch  0x00007145 
+ 00029005  0x000059f1 force  0x00000034 , 0x00000036 
+ 00029006  0x000059f2 force  0x00000004 , 0x00000036 
+ 00029007  0x000059f3 branch  0x00007145 
+ 00029008  0x000059f7 force  0x00000001 , 0x00000036 
+ 00029009  0x000059f8 force  0x00000000 , 0x00000036 
+ 00029010  0x000059f9 rtn 
+ 00029011  0x000059fb force  0x00000000 , 0x00000038 
+ 00029012  0x000059fc fetch  0x00000004 , 0x00000352 
+ 00029013  0x000059fd iforce  0x0000002f 
+ 00029014  0x000059fe increase  0x00000001 , 0x00000038 
+ 00029015  0x000059ff ifetch  0x00000004 , 0x00000006 
+ 00029016  0x00005a00 iforce  0x0000002f 
+ 00029017  0x00005a01 increase  0x00000001 , 0x00000038 
+ 00029018  0x00005a02 fetch  0x00000004 , 0x000044c3 
+ 00029019  0x00005a03 iforce  0x0000002f 
+ 00029020  0x00005a04 increase  0x00000001 , 0x00000038 
+ 00029021  0x00005a05 ifetch  0x00000004 , 0x00000006 
+ 00029022  0x00005a06 iforce  0x0000002f 
+ 00029023  0x00005a07 increase  0x00000001 , 0x00000038 
+ 00029024  0x00005a08 call  0x000071bb 
+ 00029025  0x00005a09 increase  0xfffffffc , 0x00000038 
+ 00029026  0x00005a0a fetch  0x00000004 , 0x0000456d 
+ 00029027  0x00005a0b copy  0x0000003f , 0x0000002f 
+ 00029028  0x00005a0c increase  0x00000004 , 0x00000038 
+ 00029029  0x00005a0d force  0x00000038 , 0x00000036 
+ 00029030  0x00005a0e force  0x00000008 , 0x00000036 
+ 00029031  0x00005a0f branch  0x00007145 
+ 00029032  0x00005a13 set1  0x00000025 , 0x00000000 
+ 00029033  0x00005a14 bpatch  0x000000d7 , 0x0000403a 
+ 00029034  0x00005a15 fetch  0x00000006 , 0x0000453e 
+ 00029035  0x00005a16 fetcht  0x00000006 , 0x00000372 
+ 00029036  0x00005a17 branch  0x0000716f , 0x00000029 
+ 00029037  0x00005a18 fetch  0x00000006 , 0x00000372 
+ 00029038  0x00005a19 fetcht  0x00000006 , 0x0000453e 
+ 00029039  0x00005a1b force  0x00000008 , 0x00000038 
+ 00029040  0x00005a1c copy  0x00000002 , 0x0000002f 
+ 00029041  0x00005a1d increase  0x00000001 , 0x00000038 
+ 00029042  0x00005a1e rshift32  0x00000002 , 0x0000002f 
+ 00029043  0x00005a1f lshift16  0x0000003f , 0x0000003f 
+ 00029044  0x00005a20 ior  0x0000002f , 0x0000002f 
+ 00029045  0x00005a21 increase  0x00000001 , 0x00000038 
+ 00029046  0x00005a22 rshift32  0x0000003f , 0x0000002f 
+ 00029047  0x00005a23 increase  0x00000001 , 0x00000038 
+ 00029048  0x00005a24 force  0x00000000 , 0x0000002f 
+ 00029049  0x00005a25 force  0x00000000 , 0x0000003f 
+ 00029050  0x00005a26 fetch  0x00000001 , 0x0000452b 
+ 00029051  0x00005a27 fetcht  0x00000001 , 0x00004521 
+ 00029052  0x00005a28 nbranch  0x0000717f , 0x00000029 
+ 00029053  0x00005a2a fetch  0x00000001 , 0x00004532 
+ 00029054  0x00005a2b fetcht  0x00000001 , 0x0000452b 
+ 00029055  0x00005a2d store  0x00000001 , 0x000044d3 
+ 00029056  0x00005a2e storet  0x00000001 , 0x000044d4 
+ 00029057  0x00005a2f force  0x00000000 , 0x00000038 
+ 00029058  0x00005a30 arg  0x000044d3 , 0x00000012 
+ 00029059  0x00005a31 force  0x00000004 , 0x00000039 
+ 00029060  0x00005a33 ifetch  0x00000004 , 0x00000011 
+ 00029061  0x00005a34 ifetcht  0x00000004 , 0x00000012 
+ 00029062  0x00005a35 ixor  0x00000002 , 0x0000002f 
+ 00029063  0x00005a36 increase  0x00000001 , 0x00000038 
+ 00029064  0x00005a37 increase  0x00000004 , 0x00000011 
+ 00029065  0x00005a38 increase  0x00000004 , 0x00000012 
+ 00029066  0x00005a39 loop  0x00007184 
+ 00029067  0x00005a3a call  0x000071bb 
+ 00029068  0x00005a3b increase  0xfffffffc , 0x00000038 
+ 00029069  0x00005a3c fetch  0x00000004 , 0x0000456d 
+ 00029070  0x00005a3d copy  0x0000003f , 0x0000002f 
+ 00029071  0x00005a3e increase  0x00000004 , 0x00000038 
+ 00029072  0x00005a3f force  0x00000038 , 0x00000036 
+ 00029073  0x00005a40 force  0x0000000c , 0x00000036 
+ 00029074  0x00005a41 call  0x00007145 
+ 00029075  0x00005a43 call  0x000071ba 
+ 00029076  0x00005a44 force  0x0000003a , 0x00000036 
+ 00029077  0x00005a45 force  0x00000008 , 0x00000036 
+ 00029078  0x00005a46 branch  0x00007145 
+ 00029079  0x00005a49 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029080  0x00005a4a rtn  0x00000001 
+ 00029081  0x00005a4b deposit  0x00000006 
+ 00029082  0x00005a4c iadd  0x00000039 , 0x00000005 
+ 00029083  0x00005a4d force  0x00000000 , 0x0000003f 
+ 00029084  0x00005a4f istore  0x00000001 , 0x00000005 
+ 00029085  0x00005a50 increase  0x00000001 , 0x00000039 
+ 00029086  0x00005a51 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029087  0x00005a52 rtn  0x00000001 
+ 00029088  0x00005a53 branch  0x0000719c 
+ 00029089  0x00005a56 force  0x00000000 , 0x00000038 
+ 00029090  0x00005a58 deposit  0x00000039 
+ 00029091  0x00005a59 branch  0x000071a6 , 0x00000034 
+ 00029092  0x00005a5a ifetch  0x00000004 , 0x00000006 
+ 00029093  0x00005a5b increase  0xfffffffc , 0x00000039 
+ 00029094  0x00005a5d iforce  0x0000002f 
+ 00029095  0x00005a5e increase  0x00000001 , 0x00000038 
+ 00029096  0x00005a5f compare  0x00000004 , 0x00000038 , 0x0000000f 
+ 00029097  0x00005a60 rtn  0x00000001 
+ 00029098  0x00005a61 branch  0x000071a2 
+ 00029099  0x00005a64 force  0x00000008 , 0x00000038 
+ 00029100  0x00005a65 branch  0x000071b0 
+ 00029101  0x00005a67 force  0x00000004 , 0x00000038 
+ 00029102  0x00005a68 branch  0x000071b0 
+ 00029103  0x00005a6a force  0x00000000 , 0x00000038 
+ 00029104  0x00005a6c force  0x00000004 , 0x00000039 
+ 00029105  0x00005a6e ifetch  0x00000004 , 0x00000006 
+ 00029106  0x00005a6f iforce  0x0000002f 
+ 00029107  0x00005a70 increase  0x00000001 , 0x00000038 
+ 00029108  0x00005a71 loop  0x000071b1 
+ 00029109  0x00005a72 rtn 
+ 00029110  0x00005a75 arg  0x000003a0 , 0x00000006 
+ 00029111  0x00005a76 branch  0x000071ad 
+ 00029112  0x00005a79 force  0x00000004 , 0x00000039 
+ 00029113  0x00005a7a branch  0x000071bd 
+ 00029114  0x00005a7d force  0x00000000 , 0x00000038 
+ 00029115  0x00005a7f force  0x00000004 , 0x00000039 
+ 00029116  0x00005a81 force  0x00000000 , 0x0000002f 
+ 00029117  0x00005a83 increase  0x00000001 , 0x00000038 
+ 00029118  0x00005a84 loop  0x000071bc 
+ 00029119  0x00005a85 rtn 
+ 00029120  0x00005a88 force  0x0000000c , 0x00000038 
+ 00029121  0x00005a89 force  0x00000004 , 0x00000039 
+ 00029122  0x00005a8b deposit  0x0000002f 
+ 00029123  0x00005a8c istore  0x00000004 , 0x00000005 
+ 00029124  0x00005a8d increase  0x00000001 , 0x00000038 
+ 00029125  0x00005a8e loop  0x000071c2 
+ 00029126  0x00005a8f rtn 
+ 00029127  0x00005a92 force  0x0000000c , 0x00000038 
+ 00029128  0x00005a93 copy  0x00000013 , 0x00000005 
+ 00029129  0x00005a94 add  0x00000012 , 0x00000001 , 0x00000039 
+ 00029130  0x00005a95 sub  0x00000039 , 0x0000000f , 0x0000003e 
+ 00029131  0x00005a96 branch  0x000071cd , 0x00000002 
+ 00029132  0x00005a97 force  0x00000010 , 0x00000039 
+ 00029133  0x00005a99 deposit  0x0000002f 
+ 00029134  0x00005a9a sub  0x00000039 , 0x00000003 , 0x0000003e 
+ 00029135  0x00005a9b branch  0x000071d5 , 0x00000002 
+ 00029136  0x00005a9c istore  0x00000004 , 0x00000005 
+ 00029137  0x00005a9d increase  0xfffffffc , 0x00000039 
+ 00029138  0x00005a9e rtn  0x00000005 
+ 00029139  0x00005a9f increase  0x00000001 , 0x00000038 
+ 00029140  0x00005aa0 branch  0x000071cd 
+ 00029141  0x00005aa2 istore  0x00000001 , 0x00000005 
+ 00029142  0x00005aa3 rshift8  0x0000003f , 0x0000003f 
+ 00029143  0x00005aa4 loop  0x000071d5 
+ 00029144  0x00005aa5 rtn 
+ 00029145  0x00005aa9 force  0x0000000c , 0x00000038 
+ 00029146  0x00005aaa force  0x00000004 , 0x00000039 
+ 00029147  0x00005aac ifetch  0x00000004 , 0x00000006 
+ 00029148  0x00005aad isub  0x0000002f , 0x0000003e 
+ 00029149  0x00005aae nrtn  0x00000005 
+ 00029150  0x00005aaf increase  0x00000001 , 0x00000038 
+ 00029151  0x00005ab0 loop  0x000071db 
+ 00029152  0x00005ab1 force  0x00000000 , 0x0000003e 
+ 00029153  0x00005ab2 rtn 
+ 00029154  0x00005ab5 hfetch  0x00000001 , 0x00008050 
+ 00029155  0x00005ab6 set0  0x00000000 , 0x0000003f 
+ 00029156  0x00005ab7 hstore  0x00000001 , 0x00008050 
+ 00029157  0x00005ab8 rtn 
+ 00029158  0x00005abb hfetch  0x00000001 , 0x00008050 
+ 00029159  0x00005abc set1  0x00000000 , 0x0000003f 
+ 00029160  0x00005abd hstore  0x00000001 , 0x00008050 
+ 00029161  0x00005abe rtn 
+ 00029162  0x00005ac1 arg  0x000007aa , 0x00000005 
+ 00029163  0x00005ac2 setsect  0x00000000 , 0x0003ffff 
+ 00029164  0x00005ac3 setsect  0x00000001 , 0x0003ffff 
+ 00029165  0x00005ac4 setsect  0x00000002 , 0x0003ffff 
+ 00029166  0x00005ac5 setsect  0x00000003 , 0x0003fbff 
+ 00029167  0x00005ac6 istore  0x00000009 , 0x00000005 
+ 00029168  0x00005ac7 setsect  0x00000000 , 0x0003ffff 
+ 00029169  0x00005ac8 setsect  0x00000001 , 0x0003ffff 
+ 00029170  0x00005ac9 setsect  0x00000002 , 0x0003ffff 
+ 00029171  0x00005aca setsect  0x00000003 , 0x0003ffff 
+ 00029172  0x00005acb istore  0x00000009 , 0x00000005 
+ 00029173  0x00005acc setsect  0x00000000 , 0x0003ffff 
+ 00029174  0x00005acd setsect  0x00000001 , 0x0003ffff 
+ 00029175  0x00005ace setsect  0x00000002 , 0x0003cfff 
+ 00029176  0x00005acf setsect  0x00000003 , 0x0003ffff 
+ 00029177  0x00005ad0 istore  0x00000009 , 0x00000005 
+ 00029178  0x00005ad1 setsect  0x00000000 , 0x0003ffff 
+ 00029179  0x00005ad2 setsect  0x00000001 , 0x0003ffff 
+ 00029180  0x00005ad3 setsect  0x00000002 , 0x0003ffef 
+ 00029181  0x00005ad4 setsect  0x00000003 , 0x0003ffff 
+ 00029182  0x00005ad5 istore  0x00000009 , 0x00000005 
+ 00029183  0x00005ad6 setsect  0x00000000 , 0x0003ffff 
+ 00029184  0x00005ad7 setsect  0x00000001 , 0x0003ffff 
+ 00029185  0x00005ad8 setsect  0x00000002 , 0x0003ffff 
+ 00029186  0x00005ad9 setsect  0x00000003 , 0x0003ffff 
+ 00029187  0x00005ada istore  0x00000009 , 0x00000005 
+ 00029188  0x00005adb setsect  0x00000000 , 0x0003ffff 
+ 00029189  0x00005adc setsect  0x00000001 , 0x00026c7f 
+ 00029190  0x00005add setsect  0x00000002 , 0x0000146b 
+ 00029191  0x00005ade setsect  0x00000003 , 0x00037bb3 
+ 00029192  0x00005adf istore  0x00000009 , 0x00000005 
+ 00029193  0x00005ae0 setsect  0x00000000 , 0x0001feb8 
+ 00029194  0x00005ae1 setsect  0x00000001 , 0x00010c12 
+ 00029195  0x00005ae2 setsect  0x00000002 , 0x0002b722 
+ 00029196  0x00005ae3 setsect  0x00000003 , 0x00029fa6 
+ 00029197  0x00005ae4 istore  0x00000009 , 0x00000005 
+ 00029198  0x00005ae5 setsect  0x00000000 , 0x0000e70f 
+ 00029199  0x00005ae6 setsect  0x00000001 , 0x00016720 
+ 00029200  0x00005ae7 setsect  0x00000002 , 0x0000519e 
+ 00029201  0x00005ae8 setsect  0x00000003 , 0x00019084 
+ 00029202  0x00005ae9 istore  0x00000009 , 0x00000005 
+ 00029203  0x00005aea setsect  0x00000000 , 0x00031012 
+ 00029204  0x00005aeb setsect  0x00000001 , 0x000360bf 
+ 00029205  0x00005aec setsect  0x00000002 , 0x0003f0af 
+ 00029206  0x00005aed setsect  0x00000003 , 0x000003d3 
+ 00029207  0x00005aee istore  0x00000009 , 0x00000005 
+ 00029208  0x00005aef setsect  0x00000000 , 0x0003a188 
+ 00029209  0x00005af0 setsect  0x00000001 , 0x00003ad0 
+ 00029210  0x00005af1 setsect  0x00000002 , 0x0003cbf2 
+ 00029211  0x00005af2 setsect  0x00000003 , 0x000243d9 
+ 00029212  0x00005af3 istore  0x00000009 , 0x00000005 
+ 00029213  0x00005af4 setsect  0x00000000 , 0x0002b030 
+ 00029214  0x00005af5 setsect  0x00000001 , 0x00036a03 
+ 00029215  0x00005af6 setsect  0x00000002 , 0x00011188 
+ 00029216  0x00005af7 setsect  0x00000003 , 0x0001e520 
+ 00029217  0x00005af8 istore  0x00000009 , 0x00000005 
+ 00029218  0x00005af9 setsect  0x00000000 , 0x0003a11e 
+ 00029219  0x00005afa setsect  0x00000001 , 0x0000fe5d 
+ 00029220  0x00005afb setsect  0x00000002 , 0x0000dd57 
+ 00029221  0x00005afc setsect  0x00000003 , 0x0001ac93 
+ 00029222  0x00005afd istore  0x00000009 , 0x00000005 
+ 00029223  0x00005afe setsect  0x00000000 , 0x000011ed 
+ 00029224  0x00005aff setsect  0x00000001 , 0x000218c4 
+ 00029225  0x00005b00 setsect  0x00000002 , 0x00008da7 
+ 00029226  0x00005b01 setsect  0x00000003 , 0x000257ff 
+ 00029227  0x00005b02 istore  0x00000009 , 0x00000005 
+ 00029228  0x00005b03 setsect  0x00000000 , 0x0003192b 
+ 00029229  0x00005b04 setsect  0x00000001 , 0x00034641 
+ 00029230  0x00005b05 setsect  0x00000002 , 0x0001be0c 
+ 00029231  0x00005b06 setsect  0x00000003 , 0x000366ad 
+ 00029232  0x00005b07 istore  0x00000009 , 0x00000005 
+ 00029233  0x00005b08 setsect  0x00000000 , 0x00001f83 
+ 00029234  0x00005b09 setsect  0x00000001 , 0x00015a23 
+ 00029235  0x00005b0a setsect  0x00000002 , 0x0003f9b0 
+ 00029236  0x00005b0b setsect  0x00000003 , 0x00003949 
+ 00029237  0x00005b0c istore  0x00000009 , 0x00000005 
+ 00029238  0x00005b0d setsect  0x00000000 , 0x00013a51 
+ 00029239  0x00005b0e setsect  0x00000001 , 0x000153fd 
+ 00029240  0x00005b0f setsect  0x00000002 , 0x0003372a 
+ 00029241  0x00005b10 setsect  0x00000003 , 0x0000f1bb 
+ 00029242  0x00005b11 istore  0x00000009 , 0x00000005 
+ 00029243  0x00005b12 setsect  0x00000000 , 0x0003ae85 
+ 00029244  0x00005b13 setsect  0x00000001 , 0x0001eed9 
+ 00029245  0x00005b14 setsect  0x00000002 , 0x00009e66 
+ 00029246  0x00005b15 setsect  0x00000003 , 0x000001a8 
+ 00029247  0x00005b16 istore  0x00000008 , 0x00000005 
+ 00029248  0x00005b17 rtn 
+ 00029249  0x00005b1c arg  0x00000842 , 0x00000005 
+ 00029250  0x00005b1d setsect  0x00000000 , 0x0003ffff 
+ 00029251  0x00005b1e setsect  0x00000001 , 0x0003ffff 
+ 00029252  0x00005b1f setsect  0x00000002 , 0x0003ffff 
+ 00029253  0x00005b20 setsect  0x00000003 , 0x0003ffff 
+ 00029254  0x00005b21 istore  0x00000009 , 0x00000005 
+ 00029255  0x00005b22 setsect  0x00000000 , 0x0003ffff 
+ 00029256  0x00005b23 setsect  0x00000001 , 0x0000003f 
+ 00029257  0x00005b24 setsect  0x00000002 , 0x00000000 
+ 00029258  0x00005b25 setsect  0x00000003 , 0x00000000 
+ 00029259  0x00005b26 istore  0x00000009 , 0x00000005 
+ 00029260  0x00005b27 setsect  0x00000000 , 0x00000000 
+ 00029261  0x00005b28 setsect  0x00000001 , 0x00000000 
+ 00029262  0x00005b29 setsect  0x00000002 , 0x00001000 
+ 00029263  0x00005b2a setsect  0x00000003 , 0x00000000 
+ 00029264  0x00005b2b istore  0x00000009 , 0x00000005 
+ 00029265  0x00005b2c setsect  0x00000000 , 0x0003ff00 
+ 00029266  0x00005b2d setsect  0x00000001 , 0x0003ffff 
+ 00029267  0x00005b2e setsect  0x00000002 , 0x0003ffcf 
+ 00029268  0x00005b2f setsect  0x00000003 , 0x0003ffff 
+ 00029269  0x00005b30 istore  0x00000009 , 0x00000005 
+ 00029270  0x00005b31 setsect  0x00000000 , 0x0003ffff 
+ 00029271  0x00005b32 setsect  0x00000001 , 0x0003ffff 
+ 00029272  0x00005b33 setsect  0x00000002 , 0x0003ffff 
+ 00029273  0x00005b34 setsect  0x00000003 , 0x000003ff 
+ 00029274  0x00005b35 istore  0x00000009 , 0x00000005 
+ 00029275  0x00005b36 setsect  0x00000000 , 0x00000000 
+ 00029276  0x00005b37 setsect  0x00000001 , 0x00000000 
+ 00029277  0x00005b38 setsect  0x00000002 , 0x00000000 
+ 00029278  0x00005b39 setsect  0x00000003 , 0x00000000 
+ 00029279  0x00005b3a istore  0x00000009 , 0x00000005 
+ 00029280  0x00005b3b setsect  0x00000000 , 0x00010000 
+ 00029281  0x00005b3c setsect  0x00000001 , 0x00000000 
+ 00029282  0x00005b3d setsect  0x00000002 , 0x0003f000 
+ 00029283  0x00005b3e setsect  0x00000003 , 0x0003ffff 
+ 00029284  0x00005b3f istore  0x00000009 , 0x00000005 
+ 00029285  0x00005b40 setsect  0x00000000 , 0x000296ff 
+ 00029286  0x00005b41 setsect  0x00000001 , 0x00022630 
+ 00029287  0x00005b42 setsect  0x00000002 , 0x0003945d 
+ 00029288  0x00005b43 setsect  0x00000003 , 0x0003d284 
+ 00029289  0x00005b44 istore  0x00000009 , 0x00000005 
+ 00029290  0x00005b45 setsect  0x00000000 , 0x000333a0 
+ 00029291  0x00005b46 setsect  0x00000001 , 0x00004b7a 
+ 00029292  0x00005b47 setsect  0x00000002 , 0x000037d8 
+ 00029293  0x00005b48 setsect  0x00000003 , 0x0003c9dc 
+ 00029294  0x00005b49 istore  0x00000009 , 0x00000005 
+ 00029295  0x00005b4a setsect  0x00000000 , 0x0003a440 
+ 00029296  0x00005b4b setsect  0x00000001 , 0x0001b958 
+ 00029297  0x00005b4c setsect  0x00000002 , 0x00038bce 
+ 00029298  0x00005b4d setsect  0x00000003 , 0x0001091f 
+ 00029299  0x00005b4e istore  0x00000009 , 0x00000005 
+ 00029300  0x00005b4f setsect  0x00000000 , 0x0002e12c 
+ 00029301  0x00005b50 setsect  0x00000001 , 0x0001f47c 
+ 00029302  0x00005b51 setsect  0x00000002 , 0x000356b1 
+ 00029303  0x00005b52 setsect  0x00000003 , 0x0002fd47 
+ 00029304  0x00005b53 istore  0x00000009 , 0x00000005 
+ 00029305  0x00005b54 setsect  0x00000000 , 0x00006837 
+ 00029306  0x00005b55 setsect  0x00000001 , 0x0002ed90 
+ 00029307  0x00005b56 setsect  0x00000002 , 0x0001ecec 
+ 00029308  0x00005b57 setsect  0x00000003 , 0x0001acc5 
+ 00029309  0x00005b58 istore  0x00000009 , 0x00000005 
+ 00029310  0x00005b59 setsect  0x00000000 , 0x00023357 
+ 00029311  0x00005b5a setsect  0x00000001 , 0x00018af3 
+ 00029312  0x00005b5b setsect  0x00000002 , 0x0000f9e1 
+ 00029313  0x00005b5c setsect  0x00000003 , 0x000129f0 
+ 00029314  0x00005b5d istore  0x00000009 , 0x00000005 
+ 00029315  0x00005b5e setsect  0x00000000 , 0x0002e7eb 
+ 00029316  0x00005b5f setsect  0x00000001 , 0x0003e6e3 
+ 00029317  0x00005b60 setsect  0x00000002 , 0x0003e1a7 
+ 00029318  0x00005b61 setsect  0x00000003 , 0x00010b8b 
+ 00029319  0x00005b62 istore  0x00000009 , 0x00000005 
+ 00029320  0x00005b63 setsect  0x00000000 , 0x00024fe3 
+ 00029321  0x00005b64 setsect  0x00000001 , 0x000020ef 
+ 00029322  0x00005b65 setsect  0x00000002 , 0x0001b5a6 
+ 00029323  0x00005b66 setsect  0x00000003 , 0x0000dc2f 
+ 00029324  0x00005b67 istore  0x00000009 , 0x00000005 
+ 00029325  0x00005b68 setsect  0x00000000 , 0x00013860 
+ 00029326  0x00005b69 setsect  0x00000001 , 0x0002bd69 
+ 00029327  0x00005b6a setsect  0x00000002 , 0x0000391a 
+ 00029328  0x00005b6b setsect  0x00000003 , 0x0001b222 
+ 00029329  0x00005b6c istore  0x00000009 , 0x00000005 
+ 00029330  0x00005b6d rtn 
+ 00029331  0x00005b73 rtn  0x0000002b 
+ 00029332  0x00005b74 call  0x000074fd 
+ 00029333  0x00005b75 call  0x000075c9 
+ 00029334  0x00005b76 hjam  0x00000000 , 0x00008081 
+ 00029335  0x00005b77 call  0x000073a5 
+ 00029336  0x00005b78 setarg  0x0000737c 
+ 00029337  0x00005b79 store  0x00000002 , 0x0000428c 
+ 00029338  0x00005b7b setarg  0x0000748c 
+ 00029339  0x00005b7c store  0x00000002 , 0x0000428e 
+ 00029340  0x00005b7e setarg  0x00007365 
+ 00029341  0x00005b7f store  0x00000002 , 0x00004298 
+ 00029342  0x00005b81 setarg  0x0000737a 
+ 00029343  0x00005b82 store  0x00000002 , 0x00004294 
+ 00029344  0x00005b84 setarg  0x00007371 
+ 00029345  0x00005b85 store  0x00000002 , 0x00004290 
+ 00029346  0x00005b87 setarg  0x000072f4 
+ 00029347  0x00005b88 store  0x00000002 , 0x00004296 
+ 00029348  0x00005b8a setarg  0x000072ef 
+ 00029349  0x00005b8b store  0x00000002 , 0x0000428a 
+ 00029350  0x00005b8d setarg  0x000074e5 
+ 00029351  0x00005b8e store  0x00000002 , 0x0000429c 
+ 00029352  0x00005b91 setarg  0x000074f4 
+ 00029353  0x00005b92 store  0x00000002 , 0x0000429a 
+ 00029354  0x00005b93 call  0x00007496 
+ 00029355  0x00005b94 jam  0x00000000 , 0x00004212 
+ 00029356  0x00005b95 jam  0x00000000 , 0x000048c7 
+ 00029357  0x00005b96 set1  0x00000025 , 0x00000000 
+ 00029358  0x00005b97 bpatch  0x000000d8 , 0x0000403b 
+ 00029359  0x00005b98 fetch  0x00000001 , 0x00004755 
+ 00029360  0x00005b99 beq  0x00000000 , 0x000072b8 
+ 00029361  0x00005b9a call  0x00007382 
+ 00029362  0x00005b9b call  0x00007cf6 
+ 00029363  0x00005b9c call  0x00007d02 
+ 00029364  0x00005b9d jam  0x00000000 , 0x00004756 
+ 00029365  0x00005b9e fetch  0x00000002 , 0x0000470b 
+ 00029366  0x00005b9f rtnbit1  0x0000000c 
+ 00029367  0x00005ba0 branch  0x00003e75 
+ 00029368  0x00005ba4 jam  0x00000001 , 0x00004756 
+ 00029369  0x00005ba5 jam  0x00000001 , 0x0000475b 
+ 00029370  0x00005ba6 call  0x00007382 
+ 00029371  0x00005ba7 setarg  0x00004771 
+ 00029372  0x00005ba8 call  0x0000738e 
+ 00029373  0x00005baa call  0x00007d44 
+ 00029374  0x00005bab fetch  0x00000001 , 0x00004713 
+ 00029375  0x00005bac nbranch  0x000072bd , 0x00000034 
+ 00029376  0x00005baf jam  0x00000001 , 0x000043ff 
+ 00029377  0x00005bb0 setarg  0x00000000 
+ 00029378  0x00005bb1 store  0x00000004 , 0x00004729 
+ 00029379  0x00005bb2 call  0x00007382 
+ 00029380  0x00005bb5 fetch  0x00000002 , 0x00004748 
+ 00029381  0x00005bb6 store  0x00000002 , 0x0000474a 
+ 00029382  0x00005bb7 call  0x000072e5 
+ 00029383  0x00005bb9 jam  0x00000000 , 0x00004746 
+ 00029384  0x00005bba call  0x00005234 
+ 00029385  0x00005bbb fetch  0x00000006 , 0x0000453e 
+ 00029386  0x00005bbc call  0x000072d6 
+ 00029387  0x00005bbd call  0x000072d2 
+ 00029388  0x00005bbe rtn 
+ 00029389  0x00005bc3 store  0x00000002 , 0x000041f4 
+ 00029390  0x00005bc4 increase  0xfffffffc , 0x0000003f 
+ 00029391  0x00005bc5 store  0x00000002 , 0x0000451c 
+ 00029392  0x00005bc6 store  0x00000002 , 0x0000451e 
+ 00029393  0x00005bc7 rtn 
+ 00029394  0x00005bca fetcht  0x00000002 , 0x00004741 
+ 00029395  0x00005bcb rtn  0x00000034 
+ 00029396  0x00005bcc istore  0x00000006 , 0x00000002 
+ 00029397  0x00005bcd rtn 
+ 00029398  0x00005bd0 store  0x00000006 , 0x00000100 
+ 00029399  0x00005bd1 fetch  0x00000001 , 0x00000100 
+ 00029400  0x00005bd2 store  0x00000001 , 0x0000010b 
+ 00029401  0x00005bd3 ifetch  0x00000001 , 0x00000006 
+ 00029402  0x00005bd4 store  0x00000001 , 0x0000010a 
+ 00029403  0x00005bd5 ifetch  0x00000001 , 0x00000006 
+ 00029404  0x00005bd6 store  0x00000001 , 0x00000109 
+ 00029405  0x00005bd7 ifetch  0x00000001 , 0x00000006 
+ 00029406  0x00005bd8 store  0x00000001 , 0x00000108 
+ 00029407  0x00005bd9 ifetch  0x00000001 , 0x00000006 
+ 00029408  0x00005bda store  0x00000001 , 0x00000107 
+ 00029409  0x00005bdb ifetch  0x00000001 , 0x00000006 
+ 00029410  0x00005bdc store  0x00000001 , 0x00000106 
+ 00029411  0x00005bdd fetch  0x00000006 , 0x00000106 
+ 00029412  0x00005bde rtn 
+ 00029413  0x00005be1 jam  0x00000000 , 0x000048bb 
+ 00029414  0x00005be2 fetch  0x00000002 , 0x0000474e 
+ 00029415  0x00005be3 nbranch  0x000072ec , 0x00000034 
+ 00029416  0x00005be4 setarg  0x00004763 
+ 00029417  0x00005be5 call  0x0000738e 
+ 00029418  0x00005be6 setarg  0x000000a0 
+ 00029419  0x00005be7 call  0x000072cd 
+ 00029420  0x00005be9 fetch  0x00000002 , 0x0000474c 
+ 00029421  0x00005bea store  0x00000002 , 0x0000474e 
+ 00029422  0x00005beb rtn 
+ 00029423  0x00005bf4 fetch  0x00000001 , 0x00004740 
+ 00029424  0x00005bf5 beq  0x00000001 , 0x00003e35 
+ 00029425  0x00005bf6 fetch  0x00000001 , 0x00004877 
+ 00029426  0x00005bf7 nbranch  0x00003e35 , 0x00000034 
+ 00029427  0x00005bf8 branch  0x00003e37 
+ 00029428  0x00005bfb copy  0x00000013 , 0x0000003f 
+ 00029429  0x00005bfd beq  0x0000002d , 0x00007475 
+ 00029430  0x00005bfe beq  0x00000010 , 0x0000747a 
+ 00029431  0x00005bff beq  0x00000014 , 0x00007334 
+ 00029432  0x00005c00 beq  0x00000015 , 0x0000734c 
+ 00029433  0x00005c01 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00029434  0x00005c02 and_into  0x000000f0 , 0x0000003f 
+ 00029435  0x00005c03 beq  0x00000050 , 0x000072fd 
+ 00029436  0x00005c04 rtn 
+ 00029437  0x00005c07 storet  0x00000001 , 0x0000024e 
+ 00029438  0x00005c09 fetch  0x00000001 , 0x0000024e 
+ 00029439  0x00005c0a rtn  0x00000034 
+ 00029440  0x00005c0b increase  0xffffffff , 0x0000003f 
+ 00029441  0x00005c0c store  0x00000001 , 0x0000024e 
+ 00029442  0x00005c0d set1  0x00000025 , 0x00000000 
+ 00029443  0x00005c0e bpatch  0x000000d9 , 0x0000403b 
+ 00029444  0x00005c0f call  0x00007d1f 
+ 00029445  0x00005c10 call  0x0000731f 
+ 00029446  0x00005c11 call  0x0000732c 
+ 00029447  0x00005c12 call  0x0000746c 
+ 00029448  0x00005c13 call  0x00007464 
+ 00029449  0x00005c14 call  0x00007313 
+ 00029450  0x00005c15 call  0x0000730c 
+ 00029451  0x00005c16 branch  0x000072fe 
+ 00029452  0x00005c19 fetch  0x00000001 , 0x000048c7 
+ 00029453  0x00005c1a rtn  0x00000034 
+ 00029454  0x00005c1b increase  0xffffffff , 0x0000003f 
+ 00029455  0x00005c1c store  0x00000001 , 0x000048c7 
+ 00029456  0x00005c1d nrtn  0x00000034 
+ 00029457  0x00005c1e jam  0x00000005 , 0x00004212 
+ 00029458  0x00005c1f rtn 
+ 00029459  0x00005c22 fetch  0x00000001 , 0x000048c2 
+ 00029460  0x00005c23 rtn  0x00000034 
+ 00029461  0x00005c24 increase  0xffffffff , 0x0000003f 
+ 00029462  0x00005c25 store  0x00000001 , 0x000048c2 
+ 00029463  0x00005c26 nrtn  0x00000034 
+ 00029464  0x00005c27 fetch  0x00000001 , 0x00000362 
+ 00029465  0x00005c28 bbit0  0x00000004 , 0x0000731c 
+ 00029466  0x00005c29 jam  0x00000001 , 0x000048c2 
+ 00029467  0x00005c2a rtn 
+ 00029468  0x00005c2d call  0x00003e7f 
+ 00029469  0x00005c2e jam  0x00000012 , 0x000009bd 
+ 00029470  0x00005c2f branch  0x00007d90 
+ 00029471  0x00005c33 fetch  0x00000001 , 0x00004756 
+ 00029472  0x00005c34 rtnne  0x00000001 
+ 00029473  0x00005c35 fetch  0x00000002 , 0x0000474e 
+ 00029474  0x00005c36 rtn  0x00000034 
+ 00029475  0x00005c37 increase  0xffffffff , 0x0000003f 
+ 00029476  0x00005c38 store  0x00000002 , 0x0000474e 
+ 00029477  0x00005c39 nrtn  0x00000034 
+ 00029478  0x00005c3a fetch  0x00000002 , 0x0000470b 
+ 00029479  0x00005c3b bbit1  0x00000009 , 0x0000732a 
+ 00029480  0x00005c3c setarg  0x0000476a 
+ 00029481  0x00005c3d call  0x0000738e 
+ 00029482  0x00005c3f setarg  0x00000140 
+ 00029483  0x00005c40 branch  0x000072cd 
+ 00029484  0x00005c43 fetch  0x00000002 , 0x0000474a 
+ 00029485  0x00005c44 rtn  0x00000034 
+ 00029486  0x00005c45 increase  0xffffffff , 0x0000003f 
+ 00029487  0x00005c46 store  0x00000002 , 0x0000474a 
+ 00029488  0x00005c47 nrtn  0x00000034 
+ 00029489  0x00005c49 jam  0x00000002 , 0x00004756 
+ 00029490  0x00005c4a call  0x00007487 
+ 00029491  0x00005c4d rtn 
+ 00029492  0x00005c50 jam  0x00000000 , 0x00004131 
+ 00029493  0x00005c51 fetch  0x00000002 , 0x00004748 
+ 00029494  0x00005c52 store  0x00000002 , 0x0000474a 
+ 00029495  0x00005c53 jam  0x00000000 , 0x00004746 
+ 00029496  0x00005c55 call  0x00003e61 
+ 00029497  0x00005c59 setarg  0x00112233 
+ 00029498  0x00005c5a store  0x00000003 , 0x000044a2 
+ 00029499  0x00005c5b setarg  0x00445566 
+ 00029500  0x00005c5c istore  0x00000003 , 0x00000005 
+ 00029501  0x00005c5d setarg  0x00778899 
+ 00029502  0x00005c5e istore  0x00000003 , 0x00000005 
+ 00029503  0x00005c5f setarg  0x00001122 
+ 00029504  0x00005c60 istore  0x00000003 , 0x00000005 
+ 00029505  0x00005c61 setarg  0x00334455 
+ 00029506  0x00005c62 istore  0x00000003 , 0x00000005 
+ 00029507  0x00005c63 setarg  0x00000066 
+ 00029508  0x00005c64 istore  0x00000001 , 0x00000005 
+ 00029509  0x00005c66 call  0x00003e61 
+ 00029510  0x00005c69 call  0x00003e7f 
+ 00029511  0x00005c6b jam  0x00000000 , 0x0000474e 
+ 00029512  0x00005c6c setarg  0x0000477f 
+ 00029513  0x00005c6d call  0x0000738e 
+ 00029514  0x00005c6e jam  0x00000000 , 0x0000470e 
+ 00029515  0x00005c6f rtn 
+ 00029516  0x00005c74 jam  0x00000000 , 0x00004212 
+ 00029517  0x00005c75 jam  0x00000000 , 0x000048c7 
+ 00029518  0x00005c76 jam  0x00000000 , 0x000044b2 
+ 00029519  0x00005c77 jam  0x00000000 , 0x000048c6 
+ 00029520  0x00005c78 jam  0x00000000 , 0x000048c0 
+ 00029521  0x00005c79 call  0x0000749b 
+ 00029522  0x00005c7a fetch  0x00000002 , 0x00004748 
+ 00029523  0x00005c7b store  0x00000002 , 0x0000474a 
+ 00029524  0x00005c7c fetch  0x00000001 , 0x00004743 
+ 00029525  0x00005c7d bne  0x00000000 , 0x00007369 
+ 00029526  0x00005c7e call  0x000072e5 
+ 00029527  0x00005c7f jam  0x00000000 , 0x00004746 
+ 00029528  0x00005c80 setarg  0x00000000 
+ 00029529  0x00005c81 store  0x00000002 , 0x00000286 
+ 00029530  0x00005c82 setarg  0x00000000 
+ 00029531  0x00005c83 store  0x00000002 , 0x00000288 
+ 00029532  0x00005c85 call  0x00007363 
+ 00029533  0x00005c87 call  0x00003e63 
+ 00029534  0x00005c8b rtn 
+ 00029535  0x00005c8f jam  0x00000001 , 0x00004740 
+ 00029536  0x00005c90 rtn 
+ 00029537  0x00005c92 fetch  0x00000001 , 0x00004740 
+ 00029538  0x00005c93 rtn 
+ 00029539  0x00005c96 jam  0x00000000 , 0x00004740 
+ 00029540  0x00005c97 rtn 
+ 00029541  0x00005c9a branch  0x00003e75 
+ 00029542  0x00005c9d jam  0x00000001 , 0x00004743 
+ 00029543  0x00005c9f fetch  0x00000002 , 0x0000470b 
+ 00029544  0x00005ca0 bbit1  0x00000009 , 0x00003e6b 
+ 00029545  0x00005ca2 call  0x0000736d 
+ 00029546  0x00005ca3 call  0x00007f6b 
+ 00029547  0x00005ca4 jam  0x00000000 , 0x00004743 
+ 00029548  0x00005ca5 branch  0x00003e0a 
+ 00029549  0x00005ca8 setarg  0x00000000 
+ 00029550  0x00005ca9 store  0x00000002 , 0x00000286 
+ 00029551  0x00005caa store  0x00000002 , 0x00000288 
+ 00029552  0x00005cab branch  0x00007363 
+ 00029553  0x00005caf fetch  0x00000001 , 0x00004747 
+ 00029554  0x00005cb0 ncall  0x00007375 , 0x00000034 
+ 00029555  0x00005cb1 call  0x000074ca 
+ 00029556  0x00005cb2 branch  0x000073c5 
+ 00029557  0x00005cb7 jam  0x00000000 , 0x00004747 
+ 00029558  0x00005cb8 jam  0x00000003 , 0x000009bd 
+ 00029559  0x00005cb9 branch  0x00004bd6 
+ 00029560  0x00005cbb jam  0x00000001 , 0x00004747 
+ 00029561  0x00005cbc rtn 
+ 00029562  0x00005cbf call  0x000074ca 
+ 00029563  0x00005cc0 branch  0x000073c5 
+ 00029564  0x00005cc3 call  0x000073af 
+ 00029565  0x00005cc4 fetch  0x00000002 , 0x000047b6 
+ 00029566  0x00005cc5 branch  0x00007380 , 0x00000034 
+ 00029567  0x00005cc6 branch  0x00003e75 
+ 00029568  0x00005cc8 call  0x00006509 
+ 00029569  0x00005cc9 branch  0x0000748c 
+ 00029570  0x00005cd0 fetch  0x00000001 , 0x0000475e 
+ 00029571  0x00005cd1 copy  0x0000003f , 0x00000039 
+ 00029572  0x00005cd2 setarg  0x0000475f 
+ 00029573  0x00005cd3 copy  0x0000003f , 0x00000011 
+ 00029574  0x00005cd5 copy  0x00000011 , 0x00000006 
+ 00029575  0x00005cd6 ifetch  0x00000001 , 0x00000006 
+ 00029576  0x00005cd7 beq  0x000000ff , 0x0000738c 
+ 00029577  0x00005cd8 copy  0x0000003f , 0x00000002 
+ 00029578  0x00005cd9 store  0x00000001 , 0x0000470e 
+ 00029579  0x00005cdb call  0x00007d2a 
+ 00029580  0x00005cdd loop  0x00007386 
+ 00029581  0x00005cdf rtn 
+ 00029582  0x00005ce5 copy  0x0000003f , 0x00000006 
+ 00029583  0x00005ce6 force  0x00000007 , 0x00000039 
+ 00029584  0x00005ce9 arg  0x000047a2 , 0x00000005 
+ 00029585  0x00005cea call  0x00007ecd 
+ 00029586  0x00005ceb set1  0x00000025 , 0x00000000 
+ 00029587  0x00005cec bpatch  0x000000da , 0x0000403b 
+ 00029588  0x00005ced fetch  0x00000001 , 0x000047a2 
+ 00029589  0x00005cee rtneq  0x000000ff 
+ 00029590  0x00005cef fetcht  0x00000002 , 0x000047a4 
+ 00029591  0x00005cf0 storet  0x00000002 , 0x00004711 
+ 00029592  0x00005cf1 fetcht  0x00000002 , 0x000047a6 
+ 00029593  0x00005cf2 storet  0x00000002 , 0x0000470f 
+ 00029594  0x00005cf3 fetcht  0x00000001 , 0x000047a8 
+ 00029595  0x00005cf4 storet  0x00000001 , 0x00004713 
+ 00029596  0x00005cf6 call  0x00007d2f 
+ 00029597  0x00005cf7 fetcht  0x00000001 , 0x000047a3 
+ 00029598  0x00005cf8 storet  0x00000001 , 0x0000470e 
+ 00029599  0x00005cf9 fetch  0x00000001 , 0x000047a2 
+ 00029600  0x00005cfa beq  0x00000000 , 0x000073a3 
+ 00029601  0x00005cfb beq  0x00000001 , 0x00007d38 
+ 00029602  0x00005cfc beq  0x00000002 , 0x00007d3f 
+ 00029603  0x00005cfe rtn 
+ 00029604  0x00005d01 branch  0x00007d2f 
+ 00029605  0x00005d05 fetch  0x00000001 , 0x000047a9 
+ 00029606  0x00005d06 rtn  0x00000034 
+ 00029607  0x00005d07 copy  0x0000003f , 0x00000039 
+ 00029608  0x00005d08 setarg  0x000047aa 
+ 00029609  0x00005d09 copy  0x0000003f , 0x00000011 
+ 00029610  0x00005d0b ifetcht  0x00000001 , 0x00000011 
+ 00029611  0x00005d0c call  0x000064df 
+ 00029612  0x00005d0d increase  0x00000002 , 0x00000011 
+ 00029613  0x00005d0e loop  0x000073aa 
+ 00029614  0x00005d10 rtn 
+ 00029615  0x00005d16 arg  0x000047aa , 0x00000011 
+ 00029616  0x00005d17 force  0x00000000 , 0x00000012 
+ 00029617  0x00005d18 jam  0x00000000 , 0x000047b6 
+ 00029618  0x00005d1a ifetcht  0x00000001 , 0x00000011 
+ 00029619  0x00005d1b call  0x000064f5 
+ 00029620  0x00005d1c set1  0x00000025 , 0x00000000 
+ 00029621  0x00005d1d bpatch  0x000000db , 0x0000403b 
+ 00029622  0x00005d1e fetch  0x00000002 , 0x000047b6 
+ 00029623  0x00005d1f copy  0x00000012 , 0x00000007 
+ 00029624  0x00005d20 qsetflag  0x00000001 , 0x0000003f 
+ 00029625  0x00005d21 store  0x00000002 , 0x000047b6 
+ 00029626  0x00005d22 increase  0x00000002 , 0x00000011 
+ 00029627  0x00005d23 increase  0x00000001 , 0x00000012 
+ 00029628  0x00005d24 fetch  0x00000001 , 0x000047a9 
+ 00029629  0x00005d25 ixor  0x00000012 , 0x0000003e 
+ 00029630  0x00005d26 nbranch  0x000073b2 , 0x00000005 
+ 00029631  0x00005d28 fetch  0x00000002 , 0x000047b6 
+ 00029632  0x00005d29 fetcht  0x00000002 , 0x000047b8 
+ 00029633  0x00005d2a ixor  0x00000002 , 0x0000003e 
+ 00029634  0x00005d2b rtn  0x00000005 
+ 00029635  0x00005d2c enable  0x00000028 
+ 00029636  0x00005d2d rtn 
+ 00029637  0x00005d30 arg  0x0000000c , 0x00000007 
+ 00029638  0x00005d31 call  0x00007ee2 
+ 00029639  0x00005d32 nrtn  0x00000034 
+ 00029640  0x00005d33 call  0x000074c7 
+ 00029641  0x00005d34 fetch  0x00000001 , 0x0000475b 
+ 00029642  0x00005d35 rtn  0x00000034 
+ 00029643  0x00005d36 disable  0x00000028 
+ 00029644  0x00005d37 call  0x0000748c 
+ 00029645  0x00005d38 set1  0x00000025 , 0x00000000 
+ 00029646  0x00005d39 bpatch  0x000000dc , 0x0000403b 
+ 00029647  0x00005d3a fetch  0x00000001 , 0x000047a9 
+ 00029648  0x00005d3b rtn  0x00000034 
+ 00029649  0x00005d3c call  0x000073af 
+ 00029650  0x00005d3d nbranch  0x00007d28 , 0x00000028 
+ 00029651  0x00005d3e call  0x00007d26 
+ 00029652  0x00005d3f disable  0x00000028 
+ 00029653  0x00005d40 fetch  0x00000002 , 0x00004748 
+ 00029654  0x00005d41 store  0x00000002 , 0x0000474a 
+ 00029655  0x00005d42 fetch  0x00000002 , 0x0000470b 
+ 00029656  0x00005d43 bbit0  0x00000009 , 0x000072e5 
+ 00029657  0x00005d44 call  0x000074de 
+ 00029658  0x00005d45 branch  0x000073f5 , 0x00000002 
+ 00029659  0x00005d46 fetch  0x00000002 , 0x000047b6 
+ 00029660  0x00005d47 store  0x00000002 , 0x000047c0 
+ 00029661  0x00005d48 jam  0x00000000 , 0x000047c2 
+ 00029662  0x00005d49 force  0x00000000 , 0x00000007 
+ 00029663  0x00005d4c set1  0x00000025 , 0x00000000 
+ 00029664  0x00005d4d bpatch  0x000000dd , 0x0000403b 
+ 00029665  0x00005d4e fetch  0x00000002 , 0x000047b8 
+ 00029666  0x00005d4f rshift  0x0000003f , 0x00000002 
+ 00029667  0x00005d50 storet  0x00000002 , 0x000047b8 
+ 00029668  0x00005d51 and  0x0000003f , 0x00000001 , 0x0000003f 
+ 00029669  0x00005d52 fetcht  0x00000002 , 0x000047c0 
+ 00029670  0x00005d53 and  0x00000002 , 0x00000001 , 0x00000011 
+ 00029671  0x00005d54 rshift  0x00000002 , 0x00000002 
+ 00029672  0x00005d55 storet  0x00000002 , 0x000047c0 
+ 00029673  0x00005d56 ixor  0x00000011 , 0x0000003e 
+ 00029674  0x00005d57 ncall  0x000073f9 , 0x00000005 
+ 00029675  0x00005d58 fetch  0x00000001 , 0x000047a9 
+ 00029676  0x00005d59 fetcht  0x00000001 , 0x000047c2 
+ 00029677  0x00005d5a increase  0x00000001 , 0x00000002 
+ 00029678  0x00005d5b storet  0x00000001 , 0x000047c2 
+ 00029679  0x00005d5c copy  0x00000002 , 0x00000007 
+ 00029680  0x00005d5d ixor  0x00000007 , 0x0000003e 
+ 00029681  0x00005d5f nbranch  0x000073df , 0x00000005 
+ 00029682  0x00005d60 fetch  0x00000002 , 0x000047b6 
+ 00029683  0x00005d61 store  0x00000002 , 0x000047b8 
+ 00029684  0x00005d62 rtn 
+ 00029685  0x00005d64 setarg  0x00000000 
+ 00029686  0x00005d65 store  0x00000002 , 0x000047b6 
+ 00029687  0x00005d66 store  0x00000002 , 0x000047b8 
+ 00029688  0x00005d67 rtn 
+ 00029689  0x00005d6d deposit  0x00000011 
+ 00029690  0x00005d6e branch  0x00007419 , 0x00000034 
+ 00029691  0x00005d6f set1  0x00000025 , 0x00000000 
+ 00029692  0x00005d70 bpatch  0x000000de , 0x0000403b 
+ 00029693  0x00005d71 copy  0x00000007 , 0x0000003f 
+ 00029694  0x00005d72 beq  0x00000000 , 0x00007423 
+ 00029695  0x00005d73 beq  0x00000001 , 0x00007427 
+ 00029696  0x00005d74 beq  0x00000002 , 0x0000742b 
+ 00029697  0x00005d75 beq  0x00000003 , 0x0000742f 
+ 00029698  0x00005d76 beq  0x00000004 , 0x00007433 
+ 00029699  0x00005d77 beq  0x00000005 , 0x00007437 
+ 00029700  0x00005d79 fetch  0x00000001 , 0x0000456b 
+ 00029701  0x00005d7a rtnne  0x00000003 
+ 00029702  0x00005d7b fetch  0x00000001 , 0x000048bb 
+ 00029703  0x00005d7c nrtn  0x00000034 
+ 00029704  0x00005d7d ifetch  0x00000001 , 0x00000002 
+ 00029705  0x00005d7e rtn  0x00000034 
+ 00029706  0x00005d7f store  0x00000001 , 0x000047ba 
+ 00029707  0x00005d80 increase  0x00000001 , 0x00000002 
+ 00029708  0x00005d81 storet  0x00000002 , 0x000047bb 
+ 00029709  0x00005d83 fetch  0x00000002 , 0x000047bb 
+ 00029710  0x00005d84 ifetcht  0x00000001 , 0x0000003f 
+ 00029711  0x00005d85 copy  0x00000002 , 0x00000039 
+ 00029712  0x00005d86 iadd  0x00000002 , 0x00000002 
+ 00029713  0x00005d87 storet  0x00000002 , 0x000047bb 
+ 00029714  0x00005d88 copy  0x0000003f , 0x00000002 
+ 00029715  0x00005d89 call  0x0000749c 
+ 00029716  0x00005d8a fetch  0x00000001 , 0x000047ba 
+ 00029717  0x00005d8b increase  0xffffffff , 0x0000003f 
+ 00029718  0x00005d8c store  0x00000001 , 0x000047ba 
+ 00029719  0x00005d8d nbranch  0x0000740d , 0x00000005 
+ 00029720  0x00005d8e branch  0x000074ca 
+ 00029721  0x00005d92 set1  0x00000025 , 0x00000000 
+ 00029722  0x00005d93 bpatch  0x000000df , 0x0000403b 
+ 00029723  0x00005d94 copy  0x00000007 , 0x0000003f 
+ 00029724  0x00005d95 beq  0x00000000 , 0x0000743b 
+ 00029725  0x00005d96 beq  0x00000001 , 0x0000743f 
+ 00029726  0x00005d97 beq  0x00000002 , 0x00007443 
+ 00029727  0x00005d98 beq  0x00000003 , 0x00007447 
+ 00029728  0x00005d99 beq  0x00000004 , 0x0000744b 
+ 00029729  0x00005d9a beq  0x00000005 , 0x0000744f 
+ 00029730  0x00005d9b branch  0x00007404 
+ 00029731  0x00005d9e fetch  0x00000001 , 0x000047ab 
+ 00029732  0x00005d9f call  0x00007457 
+ 00029733  0x00005da0 arg  0x000047c3 , 0x00000002 
+ 00029734  0x00005da1 branch  0x00007404 
+ 00029735  0x00005da7 fetch  0x00000001 , 0x000047ad 
+ 00029736  0x00005da8 call  0x00007457 
+ 00029737  0x00005da9 arg  0x000047eb , 0x00000002 
+ 00029738  0x00005daa branch  0x00007404 
+ 00029739  0x00005dac fetch  0x00000001 , 0x000047af 
+ 00029740  0x00005dad call  0x00007457 
+ 00029741  0x00005dae arg  0x00004807 , 0x00000002 
+ 00029742  0x00005daf branch  0x00007404 
+ 00029743  0x00005db1 fetch  0x00000001 , 0x000047b1 
+ 00029744  0x00005db2 call  0x00007457 
+ 00029745  0x00005db3 arg  0x00004823 , 0x00000002 
+ 00029746  0x00005db4 branch  0x00007404 
+ 00029747  0x00005db6 fetch  0x00000001 , 0x000047b3 
+ 00029748  0x00005db7 call  0x00007457 
+ 00029749  0x00005db8 arg  0x0000483f , 0x00000002 
+ 00029750  0x00005db9 branch  0x00007404 
+ 00029751  0x00005dbb fetch  0x00000001 , 0x000047b5 
+ 00029752  0x00005dbc call  0x00007457 
+ 00029753  0x00005dbd arg  0x0000485b , 0x00000002 
+ 00029754  0x00005dbe branch  0x00007404 
+ 00029755  0x00005dc1 fetch  0x00000001 , 0x000047ab 
+ 00029756  0x00005dc2 call  0x00007453 
+ 00029757  0x00005dc3 arg  0x000047d7 , 0x00000002 
+ 00029758  0x00005dc4 branch  0x00007404 
+ 00029759  0x00005dca fetch  0x00000001 , 0x000047ad 
+ 00029760  0x00005dcb call  0x00007453 
+ 00029761  0x00005dcc arg  0x000047f9 , 0x00000002 
+ 00029762  0x00005dcd branch  0x00007404 
+ 00029763  0x00005dcf fetch  0x00000001 , 0x000047af 
+ 00029764  0x00005dd0 call  0x00007453 
+ 00029765  0x00005dd1 arg  0x00004815 , 0x00000002 
+ 00029766  0x00005dd2 branch  0x00007404 
+ 00029767  0x00005dd4 fetch  0x00000001 , 0x000047b1 
+ 00029768  0x00005dd5 call  0x00007453 
+ 00029769  0x00005dd6 arg  0x00004831 , 0x00000002 
+ 00029770  0x00005dd7 branch  0x00007404 
+ 00029771  0x00005dd9 fetch  0x00000001 , 0x000047b3 
+ 00029772  0x00005dda call  0x00007453 
+ 00029773  0x00005ddb arg  0x0000484d , 0x00000002 
+ 00029774  0x00005ddc branch  0x00007404 
+ 00029775  0x00005dde fetch  0x00000001 , 0x000047b5 
+ 00029776  0x00005ddf call  0x00007453 
+ 00029777  0x00005de0 arg  0x00004869 , 0x00000002 
+ 00029778  0x00005de1 branch  0x00007404 
+ 00029779  0x00005de4 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00029780  0x00005de5 rtn  0x00000001 
+ 00029781  0x00005de6 force  0x00000003 , 0x0000003f 
+ 00029782  0x00005de7 branch  0x00007457 
+ 00029783  0x00005dec beq  0x00000000 , 0x0000745c 
+ 00029784  0x00005ded beq  0x00000001 , 0x0000745e 
+ 00029785  0x00005dee beq  0x00000002 , 0x00007460 
+ 00029786  0x00005def beq  0x00000003 , 0x00007462 
+ 00029787  0x00005df2 branch  0x0000738e 
+ 00029788  0x00005df6 setarg  0x00004786 
+ 00029789  0x00005df7 branch  0x0000738e 
+ 00029790  0x00005df9 setarg  0x0000478d 
+ 00029791  0x00005dfa branch  0x0000738e 
+ 00029792  0x00005dfc setarg  0x00004794 
+ 00029793  0x00005dfd branch  0x0000738e 
+ 00029794  0x00005dff setarg  0x0000479b 
+ 00029795  0x00005e00 branch  0x0000738e 
+ 00029796  0x00005e05 fetch  0x00000001 , 0x0000475a 
+ 00029797  0x00005e06 rtn  0x00000034 
+ 00029798  0x00005e07 increase  0xffffffff , 0x0000003f 
+ 00029799  0x00005e08 store  0x00000001 , 0x0000475a 
+ 00029800  0x00005e09 nrtn  0x00000034 
+ 00029801  0x00005e0a fetch  0x00000001 , 0x00004756 
+ 00029802  0x00005e0b beq  0x00000001 , 0x000072c0 
+ 00029803  0x00005e0c branch  0x0000748a 
+ 00029804  0x00005e0f fetch  0x00000001 , 0x00004758 
+ 00029805  0x00005e10 rtn  0x00000034 
+ 00029806  0x00005e11 increase  0xffffffff , 0x0000003f 
+ 00029807  0x00005e12 store  0x00000001 , 0x00004758 
+ 00029808  0x00005e13 nrtn  0x00000034 
+ 00029809  0x00005e14 branch  0x00003e73 
+ 00029810  0x00005e17 fetch  0x00000001 , 0x00004757 
+ 00029811  0x00005e18 store  0x00000001 , 0x00004758 
+ 00029812  0x00005e19 branch  0x00003e71 
+ 00029813  0x00005e1f fetch  0x00000001 , 0x00004756 
+ 00029814  0x00005e20 beq  0x00000001 , 0x00007478 
+ 00029815  0x00005e21 branch  0x00003e75 
+ 00029816  0x00005e23 jam  0x00000001 , 0x0000475b 
+ 00029817  0x00005e24 rtn 
+ 00029818  0x00005e28 fetch  0x00000001 , 0x00004756 
+ 00029819  0x00005e29 beq  0x00000001 , 0x00007481 
+ 00029820  0x00005e2a jam  0x00000001 , 0x00004756 
+ 00029821  0x00005e2c setarg  0x00004771 
+ 00029822  0x00005e2f fetcht  0x00000001 , 0x00004759 
+ 00029823  0x00005e30 storet  0x00000001 , 0x0000475a 
+ 00029824  0x00005e31 branch  0x0000738e 
+ 00029825  0x00005e35 jam  0x00000002 , 0x00004756 
+ 00029826  0x00005e36 jam  0x00000000 , 0x0000475b 
+ 00029827  0x00005e37 jam  0x00000000 , 0x000043ff 
+ 00029828  0x00005e38 fetch  0x00000002 , 0x0000470b 
+ 00029829  0x00005e39 bbit0  0x00000009 , 0x00007487 
+ 00029830  0x00005e3a call  0x00003e6b 
+ 00029831  0x00005e3c jam  0x00000000 , 0x000043ff 
+ 00029832  0x00005e3d setarg  0x00004778 
+ 00029833  0x00005e3e branch  0x0000747e 
+ 00029834  0x00005e41 call  0x00007382 
+ 00029835  0x00005e42 branch  0x00003e75 
+ 00029836  0x00005e46 fetch  0x00000001 , 0x000047a9 
+ 00029837  0x00005e47 rtn  0x00000034 
+ 00029838  0x00005e48 copy  0x0000003f , 0x00000039 
+ 00029839  0x00005e49 setarg  0x000047aa 
+ 00029840  0x00005e4a copy  0x0000003f , 0x00000011 
+ 00029841  0x00005e4c ifetcht  0x00000001 , 0x00000011 
+ 00029842  0x00005e4d call  0x000064c2 
+ 00029843  0x00005e4e increase  0x00000002 , 0x00000011 
+ 00029844  0x00005e4f loop  0x00007491 
+ 00029845  0x00005e51 rtn 
+ 00029846  0x00005e55 jam  0x00000000 , 0x00004877 
+ 00029847  0x00005e56 setarg  0x0000487c 
+ 00029848  0x00005e57 store  0x00000002 , 0x00004878 
+ 00029849  0x00005e58 store  0x00000002 , 0x0000487a 
+ 00029850  0x00005e59 rtn 
+ 00029851  0x00005e5d branch  0x00007496 
+ 00029852  0x00005e62 disable  0x00000028 
+ 00029853  0x00005e63 fetch  0x00000001 , 0x00004877 
+ 00029854  0x00005e64 compare  0x00000006 , 0x0000003f , 0x000000ff 
+ 00029855  0x00005e65 rtn  0x00000001 
+ 00029856  0x00005e67 enable  0x00000028 
+ 00029857  0x00005e68 fetch  0x00000002 , 0x0000487a 
+ 00029858  0x00005e69 copy  0x0000003f , 0x00000005 
+ 00029859  0x00005e6a copy  0x00000002 , 0x00000006 
+ 00029860  0x00005e6b call  0x00007ecd 
+ 00029861  0x00005e6d fetch  0x00000001 , 0x00004877 
+ 00029862  0x00005e6e increase  0x00000001 , 0x0000003f 
+ 00029863  0x00005e6f store  0x00000001 , 0x00004877 
+ 00029864  0x00005e71 setarg  0x0000487a 
+ 00029865  0x00005e72 call  0x000074ab 
+ 00029866  0x00005e73 rtn 
+ 00029867  0x00005e77 copy  0x0000003f , 0x00000011 
+ 00029868  0x00005e78 arg  0x000048b8 , 0x00000002 
+ 00029869  0x00005e79 ifetch  0x00000002 , 0x00000011 
+ 00029870  0x00005e7a increase  0x0000000a , 0x0000003f 
+ 00029871  0x00005e7b isub  0x00000002 , 0x0000003e 
+ 00029872  0x00005e7c nbranch  0x000074b2 , 0x00000002 
+ 00029873  0x00005e7d setarg  0x0000487c 
+ 00029874  0x00005e7f istore  0x00000002 , 0x00000011 
+ 00029875  0x00005e80 rtn 
+ 00029876  0x00005e85 disable  0x00000028 
+ 00029877  0x00005e86 fetch  0x00000001 , 0x00004877 
+ 00029878  0x00005e87 rtn  0x00000034 
+ 00029879  0x00005e88 enable  0x00000028 
+ 00029880  0x00005e89 fetch  0x00000001 , 0x00004877 
+ 00029881  0x00005e8a increase  0xffffffff , 0x0000003f 
+ 00029882  0x00005e8b store  0x00000001 , 0x00004877 
+ 00029883  0x00005e8d fetch  0x00000002 , 0x00004878 
+ 00029884  0x00005e8e store  0x00000002 , 0x000048b8 
+ 00029885  0x00005e90 setarg  0x00004878 
+ 00029886  0x00005e91 call  0x000074ab 
+ 00029887  0x00005e92 fetch  0x00000002 , 0x000048b8 
+ 00029888  0x00005e93 rtn 
+ 00029889  0x00005e96 disable  0x00000028 
+ 00029890  0x00005e97 fetch  0x00000001 , 0x00004877 
+ 00029891  0x00005e98 rtn  0x00000034 
+ 00029892  0x00005e99 enable  0x00000028 
+ 00029893  0x00005e9a fetch  0x00000002 , 0x00004878 
+ 00029894  0x00005e9b rtn 
+ 00029895  0x00005e9e fetch  0x00000002 , 0x0000475c 
+ 00029896  0x00005e9f arg  0x0000000c , 0x00000007 
+ 00029897  0x00005ea0 branch  0x00007ed4 
+ 00029898  0x00005eab call  0x000074c1 
+ 00029899  0x00005eac nrtn  0x00000028 
+ 00029900  0x00005ead disable  0x00000028 
+ 00029901  0x00005eb6 force  0x00000013 , 0x00000002 
+ 00029902  0x00005eb7 storet  0x00000002 , 0x000044f8 
+ 00029903  0x00005eb8 branch  0x000074d0 
+ 00029904  0x00005ebb arg  0x00000002 , 0x00000039 
+ 00029905  0x00005ebc fetcht  0x00000002 , 0x000044f8 
+ 00029906  0x00005ebd arg  0x00004729 , 0x00000006 
+ 00029907  0x00005ebe call  0x000074d7 
+ 00029908  0x00005ec4 rtn 
+ 00029909  0x00005ec7 jam  0x0000001d , 0x000009bd 
+ 00029910  0x00005ec8 branch  0x000074dc 
+ 00029911  0x00005eca call  0x00004bd0 
+ 00029912  0x00005ecb nrtn  0x00000034 
+ 00029913  0x00005ecc fetch  0x00000001 , 0x000048ba 
+ 00029914  0x00005ecd nrtn  0x00000034 
+ 00029915  0x00005ece jam  0x0000001b , 0x000009bd 
+ 00029916  0x00005ed5 call  0x00004bd6 
+ 00029917  0x00005ed6 branch  0x0000735f 
+ 00029918  0x00005ed9 fetcht  0x00000004 , 0x0000472f 
+ 00029919  0x00005eda deposit  0x00000022 
+ 00029920  0x00005edb store  0x00000004 , 0x0000472f 
+ 00029921  0x00005edc isub  0x00000002 , 0x0000003f 
+ 00029922  0x00005edd nrtn  0x00000002 
+ 00029923  0x00005ede sub  0x0000003f , 0x00000014 , 0x0000003f 
+ 00029924  0x00005edf rtn 
+ 00029925  0x00005ee3 call  0x000074b4 
+ 00029926  0x00005ee4 nrtn  0x00000028 
+ 00029927  0x00005ee5 disable  0x00000028 
+ 00029928  0x00005ee6 copy  0x0000003f , 0x00000006 
+ 00029929  0x00005ee7 ifetcht  0x00000001 , 0x00000006 
+ 00029930  0x00005ee8 increase  0xfffffffd , 0x00000002 
+ 00029931  0x00005ee9 copy  0x00000002 , 0x00000039 
+ 00029932  0x00005eeb ifetcht  0x00000002 , 0x00000006 
+ 00029933  0x00005eed add  0x00000039 , 0x00000007 , 0x0000003f 
+ 00029934  0x00005eee store  0x00000001 , 0x0000473f 
+ 00029935  0x00005eef arg  0x0000446c , 0x00000005 
+ 00029936  0x00005ef0 istoret  0x00000002 , 0x00000005 
+ 00029937  0x00005ef1 call  0x00007ecd 
+ 00029938  0x00005ef2 fetcht  0x00000001 , 0x0000473f 
+ 00029939  0x00005ef3 branch  0x00004f89 
+ 00029940  0x00005ef6 fetch  0x00000001 , 0x0000039a 
+ 00029941  0x00005ef7 beq  0x00000012 , 0x000074f8 
+ 00029942  0x00005ef8 beq  0x00000052 , 0x000074fb 
+ 00029943  0x00005ef9 rtn 
+ 00029944  0x00005efb fetch  0x00000002 , 0x0000039b 
+ 00029945  0x00005efc beq  0x00000018 , 0x000074fb 
+ 00029946  0x00005efd rtn 
+ 00029947  0x00005f00 jam  0x00000000 , 0x000048ba 
+ 00029948  0x00005f01 rtn 
+ 00029949  0x00005f04 arg  0x000048cc , 0x00000005 
+ 00029950  0x00005f05 setsect  0x00000000 , 0x00020001 
+ 00029951  0x00005f06 setsect  0x00000001 , 0x00020000 
+ 00029952  0x00005f07 setsect  0x00000002 , 0x00001022 
+ 00029953  0x00005f08 setsect  0x00000003 , 0x00000860 
+ 00029954  0x00005f09 istore  0x00000009 , 0x00000005 
+ 00029955  0x00005f0a setsect  0x00000000 , 0x00030200 
+ 00029956  0x00005f0b setsect  0x00000001 , 0x00004a00 
+ 00029957  0x00005f0c setsect  0x00000002 , 0x00003200 
+ 00029958  0x00005f0d setsect  0x00000003 , 0x00000800 
+ 00029959  0x00005f0e istore  0x00000009 , 0x00000005 
+ 00029960  0x00005f0f setsect  0x00000000 , 0x00012a05 
+ 00029961  0x00005f10 setsect  0x00000001 , 0x00010000 
+ 00029962  0x00005f11 setsect  0x00000002 , 0x00002000 
+ 00029963  0x00005f12 setsect  0x00000003 , 0x0000a408 
+ 00029964  0x00005f13 istore  0x00000009 , 0x00000005 
+ 00029965  0x00005f14 setsect  0x00000000 , 0x00000002 
+ 00029966  0x00005f15 setsect  0x00000001 , 0x00000140 
+ 00029967  0x00005f16 setsect  0x00000002 , 0x00000020 
+ 00029968  0x00005f17 setsect  0x00000003 , 0x000008a0 
+ 00029969  0x00005f18 istore  0x00000009 , 0x00000005 
+ 00029970  0x00005f19 setsect  0x00000000 , 0x00021800 
+ 00029971  0x00005f1a setsect  0x00000001 , 0x00008001 
+ 00029972  0x00005f1b setsect  0x00000002 , 0x00028030 
+ 00029973  0x00005f1c setsect  0x00000003 , 0x00000804 
+ 00029974  0x00005f1d istore  0x00000009 , 0x00000005 
+ 00029975  0x00005f1e setsect  0x00000000 , 0x00020007 
+ 00029976  0x00005f1f setsect  0x00000001 , 0x00028000 
+ 00029977  0x00005f20 setsect  0x00000002 , 0x00003132 
+ 00029978  0x00005f21 setsect  0x00000003 , 0x0001a5a1 
+ 00029979  0x00005f22 istore  0x00000009 , 0x00000005 
+ 00029980  0x00005f23 setsect  0x00000000 , 0x00017370 
+ 00029981  0x00005f24 setsect  0x00000001 , 0x00035859 
+ 00029982  0x00005f25 setsect  0x00000002 , 0x0000c422 
+ 00029983  0x00005f26 setsect  0x00000003 , 0x00008115 
+ 00029984  0x00005f27 istore  0x00000009 , 0x00000005 
+ 00029985  0x00005f28 setsect  0x00000000 , 0x00002020 
+ 00029986  0x00005f29 setsect  0x00000001 , 0x00000808 
+ 00029987  0x00005f2a setsect  0x00000002 , 0x00020202 
+ 00029988  0x00005f2b setsect  0x00000003 , 0x00000020 
+ 00029989  0x00005f2c istore  0x00000009 , 0x00000005 
+ 00029990  0x00005f2d setsect  0x00000000 , 0x00000302 
+ 00029991  0x00005f2e setsect  0x00000001 , 0x0000804a 
+ 00029992  0x00005f2f setsect  0x00000002 , 0x00000090 
+ 00029993  0x00005f30 setsect  0x00000003 , 0x00000408 
+ 00029994  0x00005f31 istore  0x00000009 , 0x00000005 
+ 00029995  0x00005f32 setsect  0x00000000 , 0x0000022a 
+ 00029996  0x00005f33 setsect  0x00000001 , 0x00028032 
+ 00029997  0x00005f34 setsect  0x00000002 , 0x00002000 
+ 00029998  0x00005f35 setsect  0x00000003 , 0x0000a00c 
+ 00029999  0x00005f36 istore  0x00000009 , 0x00000005 
+ 00030000  0x00005f37 setsect  0x00000000 , 0x00030201 
+ 00030001  0x00005f38 setsect  0x00000001 , 0x00008002 
+ 00030002  0x00005f39 setsect  0x00000002 , 0x0002a040 
+ 00030003  0x00005f3a setsect  0x00000003 , 0x00001820 
+ 00030004  0x00005f3b istore  0x00000009 , 0x00000005 
+ 00030005  0x00005f3c setsect  0x00000000 , 0x00000600 
+ 00030006  0x00005f3d setsect  0x00000001 , 0x00001900 
+ 00030007  0x00005f3e setsect  0x00000002 , 0x000012c0 
+ 00030008  0x00005f3f setsect  0x00000003 , 0x00000030 
+ 00030009  0x00005f40 istore  0x00000009 , 0x00000005 
+ 00030010  0x00005f41 setsect  0x00000000 , 0x00000002 
+ 00030011  0x00005f42 setsect  0x00000001 , 0x0002808a 
+ 00030012  0x00005f43 setsect  0x00000002 , 0x0000d180 
+ 00030013  0x00005f44 setsect  0x00000003 , 0x00000800 
+ 00030014  0x00005f45 istore  0x00000009 , 0x00000005 
+ 00030015  0x00005f46 setsect  0x00000000 , 0x00012803 
+ 00030016  0x00005f47 setsect  0x00000001 , 0x00038080 
+ 00030017  0x00005f48 setsect  0x00000002 , 0x00002000 
+ 00030018  0x00005f49 setsect  0x00000003 , 0x0000a940 
+ 00030019  0x00005f4a istore  0x00000009 , 0x00000005 
+ 00030020  0x00005f4b setsect  0x00000000 , 0x00020207 
+ 00030021  0x00005f4c setsect  0x00000001 , 0x00018922 
+ 00030022  0x00005f4d setsect  0x00000002 , 0x00001826 
+ 00030023  0x00005f4e setsect  0x00000003 , 0x00003c00 
+ 00030024  0x00005f4f istore  0x00000009 , 0x00000005 
+ 00030025  0x00005f50 setsect  0x00000000 , 0x00000200 
+ 00030026  0x00005f51 setsect  0x00000001 , 0x00008a00 
+ 00030027  0x00005f52 setsect  0x00000002 , 0x00018120 
+ 00030028  0x00005f53 setsect  0x00000003 , 0x00000040 
+ 00030029  0x00005f54 istore  0x00000009 , 0x00000005 
+ 00030030  0x00005f55 setsect  0x00000000 , 0x00000302 
+ 00030031  0x00005f56 setsect  0x00000001 , 0x0001804a 
+ 00030032  0x00005f57 setsect  0x00000002 , 0x00000110 
+ 00030033  0x00005f58 setsect  0x00000003 , 0x00013808 
+ 00030034  0x00005f59 istore  0x00000009 , 0x00000005 
+ 00030035  0x00005f5a setarg  0x0001012a 
+ 00030036  0x00005f5b istore  0x00000003 , 0x00000005 
+ 00030037  0x00005f5c setsect  0x00000000 , 0x00020012 
+ 00030038  0x00005f5d setsect  0x00000001 , 0x000200c0 
+ 00030039  0x00005f5e setsect  0x00000002 , 0x00012012 
+ 00030040  0x00005f5f setsect  0x00000003 , 0x0000004c 
+ 00030041  0x00005f60 istore  0x00000009 , 0x00000005 
+ 00030042  0x00005f61 setsect  0x00000000 , 0x00024d02 
+ 00030043  0x00005f62 setsect  0x00000001 , 0x0000008a 
+ 00030044  0x00005f63 setsect  0x00000002 , 0x00014280 
+ 00030045  0x00005f64 setsect  0x00000003 , 0x00000800 
+ 00030046  0x00005f65 istore  0x00000009 , 0x00000005 
+ 00030047  0x00005f66 setsect  0x00000000 , 0x00022902 
+ 00030048  0x00005f67 setsect  0x00000001 , 0x00000000 
+ 00030049  0x00005f68 setsect  0x00000002 , 0x00000150 
+ 00030050  0x00005f69 setsect  0x00000003 , 0x00002008 
+ 00030051  0x00005f6a istore  0x00000009 , 0x00000005 
+ 00030052  0x00005f6b setsect  0x00000000 , 0x00020229 
+ 00030053  0x00005f6c setsect  0x00000001 , 0x00018040 
+ 00030054  0x00005f6d setsect  0x00000002 , 0x00002001 
+ 00030055  0x00005f6e setsect  0x00000003 , 0x0000a00c 
+ 00030056  0x00005f6f istore  0x00000009 , 0x00000005 
+ 00030057  0x00005f70 setsect  0x00000000 , 0x00031201 
+ 00030058  0x00005f71 setsect  0x00000001 , 0x00008005 
+ 00030059  0x00005f72 setsect  0x00000002 , 0x0002a4d0 
+ 00030060  0x00005f73 setsect  0x00000003 , 0x00000008 
+ 00030061  0x00005f74 istore  0x00000009 , 0x00000005 
+ 00030062  0x00005f75 setsect  0x00000000 , 0x00001828 
+ 00030063  0x00005f76 setsect  0x00000001 , 0x00008080 
+ 00030064  0x00005f77 setsect  0x00000002 , 0x00002290 
+ 00030065  0x00005f78 setsect  0x00000003 , 0x00000000 
+ 00030066  0x00005f79 istore  0x00000009 , 0x00000005 
+ 00030067  0x00005f7a setsect  0x00000000 , 0x00020019 
+ 00030068  0x00005f7b setsect  0x00000001 , 0x00024200 
+ 00030069  0x00005f7c setsect  0x00000002 , 0x00003022 
+ 00030070  0x00005f7d setsect  0x00000003 , 0x00006804 
+ 00030071  0x00005f7e istore  0x00000009 , 0x00000005 
+ 00030072  0x00005f7f setsect  0x00000000 , 0x00030200 
+ 00030073  0x00005f80 setsect  0x00000001 , 0x00004a00 
+ 00030074  0x00005f81 setsect  0x00000002 , 0x0001b020 
+ 00030075  0x00005f82 setsect  0x00000003 , 0x00000800 
+ 00030076  0x00005f83 istore  0x00000009 , 0x00000005 
+ 00030077  0x00005f84 setsect  0x00000000 , 0x00002a4b 
+ 00030078  0x00005f85 setsect  0x00000001 , 0x00030151 
+ 00030079  0x00005f86 setsect  0x00000002 , 0x00001090 
+ 00030080  0x00005f87 setsect  0x00000003 , 0x00000684 
+ 00030081  0x00005f88 istore  0x00000009 , 0x00000005 
+ 00030082  0x00005f89 setsect  0x00000000 , 0x00010285 
+ 00030083  0x00005f8a setsect  0x00000001 , 0x00027a42 
+ 00030084  0x00005f8b setsect  0x00000002 , 0x00009ea0 
+ 00030085  0x00005f8c setsect  0x00000003 , 0x00002788 
+ 00030086  0x00005f8d istore  0x00000009 , 0x00000005 
+ 00030087  0x00005f8e setsect  0x00000000 , 0x00011530 
+ 00030088  0x00005f8f setsect  0x00000001 , 0x00030940 
+ 00030089  0x00005f90 setsect  0x00000002 , 0x00010750 
+ 00030090  0x00005f91 setsect  0x00000003 , 0x00000654 
+ 00030091  0x00005f92 istore  0x00000009 , 0x00000005 
+ 00030092  0x00005f93 setsect  0x00000000 , 0x00000081 
+ 00030093  0x00005f94 setsect  0x00000001 , 0x00004170 
+ 00030094  0x00005f95 setsect  0x00000002 , 0x00006090 
+ 00030095  0x00005f96 setsect  0x00000003 , 0x00000684 
+ 00030096  0x00005f97 istore  0x00000009 , 0x00000005 
+ 00030097  0x00005f98 setsect  0x00000000 , 0x00010385 
+ 00030098  0x00005f99 setsect  0x00000001 , 0x000241c1 
+ 00030099  0x00005f9a setsect  0x00000002 , 0x00029e01 
+ 00030100  0x00005f9b setsect  0x00000003 , 0x0000579c 
+ 00030101  0x00005f9c istore  0x00000009 , 0x00000005 
+ 00030102  0x00005f9d setsect  0x00000000 , 0x00012500 
+ 00030103  0x00005f9e setsect  0x00000001 , 0x00005d40 
+ 00030104  0x00005f9f setsect  0x00000002 , 0x00008950 
+ 00030105  0x00005fa0 setsect  0x00000003 , 0x00000a04 
+ 00030106  0x00005fa1 istore  0x00000009 , 0x00000005 
+ 00030107  0x00005fa2 setsect  0x00000000 , 0x00010875 
+ 00030108  0x00005fa3 setsect  0x00000001 , 0x00014065 
+ 00030109  0x00005fa4 setsect  0x00000002 , 0x00025001 
+ 00030110  0x00005fa5 setsect  0x00000003 , 0x000017d0 
+ 00030111  0x00005fa6 istore  0x00000009 , 0x00000005 
+ 00030112  0x00005fa7 setsect  0x00000000 , 0x00001907 
+ 00030113  0x00005fa8 setsect  0x00000001 , 0x00010a40 
+ 00030114  0x00005fa9 setsect  0x00000002 , 0x0000081f 
+ 00030115  0x00005faa setsect  0x00000003 , 0x00000300 
+ 00030116  0x00005fab istore  0x00000008 , 0x00000005 
+ 00030117  0x00005fac setsect  0x00000000 , 0x0002001c 
+ 00030118  0x00005fad setsect  0x00000001 , 0x000200c0 
+ 00030119  0x00005fae setsect  0x00000002 , 0x00002012 
+ 00030120  0x00005faf setsect  0x00000003 , 0x00000074 
+ 00030121  0x00005fb0 istore  0x00000009 , 0x00000005 
+ 00030122  0x00005fb1 setsect  0x00000000 , 0x00024a02 
+ 00030123  0x00005fb2 setsect  0x00000001 , 0x0000410a 
+ 00030124  0x00005fb3 setsect  0x00000002 , 0x00000011 
+ 00030125  0x00005fb4 setsect  0x00000003 , 0x00007804 
+ 00030126  0x00005fb5 istore  0x00000009 , 0x00000005 
+ 00030127  0x00005fb6 setsect  0x00000000 , 0x00030200 
+ 00030128  0x00005fb7 setsect  0x00000001 , 0x00004a00 
+ 00030129  0x00005fb8 setsect  0x00000002 , 0x0001f040 
+ 00030130  0x00005fb9 setsect  0x00000003 , 0x00000800 
+ 00030131  0x00005fba istore  0x00000009 , 0x00000005 
+ 00030132  0x00005fbb setsect  0x00000000 , 0x00012a4c 
+ 00030133  0x00005fbc setsect  0x00000001 , 0x00000000 
+ 00030134  0x00005fbd setsect  0x00000002 , 0x00002002 
+ 00030135  0x00005fbe setsect  0x00000003 , 0x0000a000 
+ 00030136  0x00005fbf istore  0x00000009 , 0x00000005 
+ 00030137  0x00005fc0 setsect  0x00000000 , 0x00000f02 
+ 00030138  0x00005fc1 setsect  0x00000001 , 0x00000846 
+ 00030139  0x00005fc2 setsect  0x00000002 , 0x00003020 
+ 00030140  0x00005fc3 setsect  0x00000003 , 0x000004a0 
+ 00030141  0x00005fc4 istore  0x00000009 , 0x00000005 
+ 00030142  0x00005fc5 setsect  0x00000000 , 0x00002212 
+ 00030143  0x00005fc6 setsect  0x00000001 , 0x00024080 
+ 00030144  0x00005fc7 setsect  0x00000002 , 0x000012a1 
+ 00030145  0x00005fc8 setsect  0x00000003 , 0x00008c00 
+ 00030146  0x00005fc9 istore  0x00000009 , 0x00000005 
+ 00030147  0x00005fca setsect  0x00000000 , 0x00020200 
+ 00030148  0x00005fcb setsect  0x00000001 , 0x00008a40 
+ 00030149  0x00005fcc setsect  0x00000002 , 0x00000000 
+ 00030150  0x00005fcd setsect  0x00000003 , 0x00000000 
+ 00030151  0x00005fce istore  0x00000009 , 0x00000005 
+ 00030152  0x00005fcf rtn 
+ 00030153  0x00005fd2 jam  0x00000001 , 0x000044df 
+ 00030154  0x00005fd3 jam  0x00000001 , 0x000045a8 
+ 00030155  0x00005fd4 jam  0x00000001 , 0x0000456c 
+ 00030156  0x00005fd5 setarg  0x0000001b 
+ 00030157  0x00005fd6 store  0x00000002 , 0x0000458b 
+ 00030158  0x00005fd7 jam  0x00000001 , 0x00004522 
+ 00030159  0x00005fd8 jam  0x00000003 , 0x000048c8 
+ 00030160  0x00005fd9 jam  0x00000050 , 0x00004596 
+ 00030161  0x00005fdb jam  0x00000017 , 0x0000454c 
+ 00030162  0x00005fdc jam  0x00000017 , 0x0000454e 
+ 00030163  0x00005fdd arg  0x000044dc , 0x00000005 
+ 00030164  0x00005fde setsect  0x00000000 , 0x00000302 
+ 00030165  0x00005fdf setsect  0x00000001 , 0x00000040 
+ 00030166  0x00005fe0 setsect  0x00000002 , 0x00001021 
+ 00030167  0x00005fe1 setsect  0x00000003 , 0x00000000 
+ 00030168  0x00005fe2 istore  0x00000007 , 0x00000005 
+ 00030169  0x00005fe3 arg  0x0000458d , 0x00000005 
+ 00030170  0x00005fe4 setsect  0x00000000 , 0x00000008 
+ 00030171  0x00005fe5 setsect  0x00000001 , 0x00000004 
+ 00030172  0x00005fe6 setsect  0x00000002 , 0x0002c000 
+ 00030173  0x00005fe7 setsect  0x00000003 , 0x00000004 
+ 00030174  0x00005fe8 istore  0x00000008 , 0x00000005 
+ 00030175  0x00005fe9 rtn 
+ 00030176  0x00005fee fetch  0x00000001 , 0x000046e2 
+ 00030177  0x00005fef nbranch  0x000075f4 , 0x00000034 
+ 00030178  0x00005ff0 branch  0x00007a96 
+ 00030179  0x00005ff3 set1  0x00000025 , 0x00000000 
+ 00030180  0x00005ff4 bpatch  0x000000e0 , 0x0000403c 
+ 00030181  0x00005ff5 fetch  0x00000001 , 0x000046e2 
+ 00030182  0x00005ff6 rtn  0x00000034 
+ 00030183  0x00005ff7 fetch  0x00000001 , 0x00004639 
+ 00030184  0x00005ff8 rtnne  0x00000001 
+ 00030185  0x00005ff9 fetch  0x00000001 , 0x00004563 
+ 00030186  0x00005ffa rtn  0x00000034 
+ 00030187  0x00005ffb fetch  0x00000001 , 0x00004568 
+ 00030188  0x00005ffc rtneq  0x00000003 
+ 00030189  0x00005ffd fetch  0x00000002 , 0x0000470b 
+ 00030190  0x00005ffe bbit1  0x00000000 , 0x000075f2 
+ 00030191  0x00005fff fetch  0x00000001 , 0x00004565 
+ 00030192  0x00006000 beq  0x00000000 , 0x00007a96 
+ 00030193  0x00006001 rtn 
+ 00030194  0x00006003 jam  0x00000000 , 0x00004565 
+ 00030195  0x00006004 rtn 
+ 00030196  0x00006008 set1  0x00000025 , 0x00000000 
+ 00030197  0x00006009 bpatch  0x000000e1 , 0x0000403c 
+ 00030198  0x0000600a fetch  0x00000001 , 0x000046e2 
+ 00030199  0x0000600b branch  0x00005737 , 0x00000034 
+ 00030200  0x0000600c call  0x0000572f 
+ 00030201  0x0000600d call  0x000075fb 
+ 00030202  0x0000600e branch  0x00007684 
+ 00030203  0x00006011 setarg  0x00000000 
+ 00030204  0x00006012 store  0x00000008 , 0x000008d2 
+ 00030205  0x00006013 store  0x00000004 , 0x000008da 
+ 00030206  0x00006014 store  0x00000007 , 0x000046e6 
+ 00030207  0x00006015 rtn 
+ 00030208  0x00006018 jam  0x00000001 , 0x000008d4 
+ 00030209  0x00006019 branch  0x00007605 
+ 00030210  0x0000601b fetch  0x00000001 , 0x00004639 
+ 00030211  0x0000601c beq  0x00000001 , 0x000076a2 
+ 00030212  0x0000601d branch  0x00003b31 
+ 00030213  0x0000601f fetch  0x00000001 , 0x00004639 
+ 00030214  0x00006020 beq  0x00000001 , 0x00007608 
+ 00030215  0x00006021 branch  0x00007684 
+ 00030216  0x00006024 call  0x000076a2 
+ 00030217  0x00006025 fetch  0x00000001 , 0x000008d3 
+ 00030218  0x00006026 nrtn  0x00000034 
+ 00030219  0x00006027 jam  0x00000003 , 0x000008d2 
+ 00030220  0x00006028 rtn 
+ 00030221  0x0000602b fetch  0x00000001 , 0x000008d6 
+ 00030222  0x0000602c bne  0x00000000 , 0x0000762b 
+ 00030223  0x0000602d call  0x00007628 
+ 00030224  0x0000602e arg  0x000009a2 , 0x00000005 
+ 00030225  0x0000602f setarg  0x00000952 
+ 00030226  0x00006030 istore  0x00000002 , 0x00000005 
+ 00030227  0x00006031 setarg  0x000046ca 
+ 00030228  0x00006032 istore  0x00000002 , 0x00000005 
+ 00030229  0x00006033 setarg  0x00000902 
+ 00030230  0x00006034 istore  0x00000002 , 0x00000005 
+ 00030231  0x00006035 branch  0x0000761f 
+ 00030232  0x00006037 arg  0x000009a2 , 0x00000005 
+ 00030233  0x00006038 setarg  0x00000962 
+ 00030234  0x00006039 istore  0x00000002 , 0x00000005 
+ 00030235  0x0000603a setarg  0x00000902 
+ 00030236  0x0000603b istore  0x00000002 , 0x00000005 
+ 00030237  0x0000603c setarg  0x000046ca 
+ 00030238  0x0000603d istore  0x00000002 , 0x00000005 
+ 00030239  0x0000603f call  0x000079bd 
+ 00030240  0x00006040 fetch  0x00000001 , 0x000008d3 
+ 00030241  0x00006041 beq  0x00000004 , 0x00007625 
+ 00030242  0x00006042 jam  0x00000001 , 0x000008d4 
+ 00030243  0x00006043 jam  0x00000005 , 0x000008d2 
+ 00030244  0x00006044 rtn 
+ 00030245  0x00006046 jam  0x00000014 , 0x000008d3 
+ 00030246  0x00006047 call  0x00007602 
+ 00030247  0x00006048 branch  0x000076f3 
+ 00030248  0x0000604b arg  0x00000942 , 0x00000005 
+ 00030249  0x0000604c force  0x00000008 , 0x00000007 
+ 00030250  0x0000604d branch  0x000076bb 
+ 00030251  0x00006050 jam  0x00000001 , 0x000008d4 
+ 00030252  0x00006051 rtn 
+ 00030253  0x00006055 set1  0x00000025 , 0x00000000 
+ 00030254  0x00006056 bpatch  0x000000e2 , 0x0000403c 
+ 00030255  0x00006057 arg  0x0000064b , 0x00000005 
+ 00030256  0x00006058 fetch  0x00000006 , 0x00004140 
+ 00030257  0x00006059 istore  0x00000006 , 0x00000005 
+ 00030258  0x0000605a fetch  0x00000006 , 0x00000040 
+ 00030259  0x0000605b istore  0x00000006 , 0x00000005 
+ 00030260  0x0000605c fetch  0x00000003 , 0x000046e6 
+ 00030261  0x0000605d istore  0x00000003 , 0x00000005 
+ 00030262  0x0000605f call  0x00007a2b 
+ 00030263  0x00006061 arg  0x00000972 , 0x00000011 
+ 00030264  0x00006062 arg  0x00000982 , 0x00000012 
+ 00030265  0x00006063 force  0x00000004 , 0x00000007 
+ 00030266  0x00006064 call  0x000076c0 
+ 00030267  0x00006065 nbranch  0x00007648 , 0x00000001 
+ 00030268  0x00006067 call  0x0000763f 
+ 00030269  0x00006068 jam  0x00000041 , 0x0000007d 
+ 00030270  0x00006069 branch  0x00005903 
+ 00030271  0x0000606c fetch  0x00000001 , 0x000008d3 
+ 00030272  0x0000606d beq  0x00000009 , 0x00007645 
+ 00030273  0x0000606e jam  0x0000000a , 0x000008d2 
+ 00030274  0x0000606f jam  0x00000001 , 0x000008d4 
+ 00030275  0x00006070 jam  0x00000003 , 0x0000007c 
+ 00030276  0x00006071 rtn 
+ 00030277  0x00006073 jam  0x00000003 , 0x0000007c 
+ 00030278  0x00006074 jam  0x00000015 , 0x000008d3 
+ 00030279  0x00006075 branch  0x000076f3 
+ 00030280  0x00006079 fetch  0x00000001 , 0x000008d3 
+ 00030281  0x0000607a beq  0x00000009 , 0x0000764e 
+ 00030282  0x0000607b jam  0x00000000 , 0x000008d2 
+ 00030283  0x0000607c jam  0x00000004 , 0x0000007c 
+ 00030284  0x0000607e jam  0x00000005 , 0x0000007e 
+ 00030285  0x0000607f rtn 
+ 00030286  0x00006081 jam  0x00000004 , 0x0000007c 
+ 00030287  0x00006082 jam  0x00000000 , 0x000008d3 
+ 00030288  0x00006083 rtn 
+ 00030289  0x00006086 fetch  0x00000001 , 0x000008d7 
+ 00030290  0x00006087 beq  0x00000001 , 0x00007655 
+ 00030291  0x00006088 jam  0x0000000a , 0x000008d3 
+ 00030292  0x00006089 branch  0x000076f3 
+ 00030293  0x0000608b arg  0x0000064b , 0x00000005 
+ 00030294  0x0000608c fetch  0x00000006 , 0x00000040 
+ 00030295  0x0000608d istore  0x00000006 , 0x00000005 
+ 00030296  0x0000608e fetch  0x00000006 , 0x00004140 
+ 00030297  0x0000608f istore  0x00000006 , 0x00000005 
+ 00030298  0x00006090 fetch  0x00000003 , 0x000046e3 
+ 00030299  0x00006091 istore  0x00000003 , 0x00000005 
+ 00030300  0x00006093 call  0x00007a43 
+ 00030301  0x00006094 fetch  0x00000001 , 0x000008d3 
+ 00030302  0x00006095 beq  0x0000000a , 0x00007662 
+ 00030303  0x00006096 jam  0x0000000b , 0x000008d2 
+ 00030304  0x00006097 jam  0x00000001 , 0x000008d4 
+ 00030305  0x00006098 rtn 
+ 00030306  0x0000609a jam  0x0000000b , 0x000008d3 
+ 00030307  0x0000609b jam  0x00000001 , 0x000008d5 
+ 00030308  0x0000609c rtn 
+ 00030309  0x0000609f arg  0x000009a2 , 0x00000005 
+ 00030310  0x000060a0 fetch  0x00000006 , 0x00000040 
+ 00030311  0x000060a1 istore  0x00000006 , 0x00000005 
+ 00030312  0x000060a2 fetch  0x00000006 , 0x00004140 
+ 00030313  0x000060a3 istore  0x00000006 , 0x00000005 
+ 00030314  0x000060a4 setarg  0x00000952 
+ 00030315  0x000060a5 istore  0x00000002 , 0x00000005 
+ 00030316  0x000060a6 setarg  0x00000962 
+ 00030317  0x000060a7 istore  0x00000002 , 0x00000005 
+ 00030318  0x000060a8 branch  0x00007679 
+ 00030319  0x000060aa jam  0x0000000f , 0x000008d2 
+ 00030320  0x000060ab arg  0x000009a2 , 0x00000005 
+ 00030321  0x000060ac fetch  0x00000006 , 0x00004140 
+ 00030322  0x000060ad istore  0x00000006 , 0x00000005 
+ 00030323  0x000060ae fetch  0x00000006 , 0x00000040 
+ 00030324  0x000060af istore  0x00000006 , 0x00000005 
+ 00030325  0x000060b0 setarg  0x00000962 
+ 00030326  0x000060b1 istore  0x00000002 , 0x00000005 
+ 00030327  0x000060b2 setarg  0x00000952 
+ 00030328  0x000060b3 istore  0x00000002 , 0x00000005 
+ 00030329  0x000060b6 arg  0x0000064b , 0x00000005 
+ 00030330  0x000060b7 fetch  0x00000006 , 0x000009a2 
+ 00030331  0x000060b8 istore  0x00000006 , 0x00000005 
+ 00030332  0x000060b9 fetch  0x00000006 , 0x000009a8 
+ 00030333  0x000060ba istore  0x00000006 , 0x00000005 
+ 00030334  0x000060bc call  0x000079f5 
+ 00030335  0x000060bf jam  0x00000001 , 0x0000425d 
+ 00030336  0x000060c0 arg  0x00004261 , 0x00000005 
+ 00030337  0x000060c1 arg  0x00000972 , 0x00000006 
+ 00030338  0x000060c2 call  0x00007e87 
+ 00030339  0x000060c3 branch  0x000031ee 
+ 00030340  0x000060c7 set1  0x00000025 , 0x00000000 
+ 00030341  0x000060c8 bpatch  0x000000e3 , 0x0000403c 
+ 00030342  0x000060c9 fetch  0x00000001 , 0x00004639 
+ 00030343  0x000060ca rtnne  0x00000000 
+ 00030344  0x000060cb fetch  0x00000001 , 0x000008d6 
+ 00030345  0x000060cc rtnne  0x00000000 
+ 00030346  0x000060cd arg  0x0000469a , 0x00000005 
+ 00030347  0x000060ce force  0x0000000b , 0x00000007 
+ 00030348  0x000060cf call  0x000076bb 
+ 00030349  0x000060d0 random  0x0000003f 
+ 00030350  0x000060d1 rshift  0x0000003f , 0x0000003f 
+ 00030351  0x000060d2 istore  0x00000002 , 0x00000005 
+ 00030352  0x000060d4 arg  0x000005e2 , 0x00000005 
+ 00030353  0x000060d5 arg  0x0000469a , 0x00000006 
+ 00030354  0x000060d6 call  0x00007e86 
+ 00030355  0x000060d8 arg  0x0000050a , 0x00000005 
+ 00030356  0x000060d9 arg  0x000007f2 , 0x00000006 
+ 00030357  0x000060da call  0x00007e84 
+ 00030358  0x000060dc arg  0x0000053a , 0x00000005 
+ 00030359  0x000060dd call  0x00007e90 
+ 00030360  0x000060de jam  0x00000001 , 0x0000053a 
+ 00030361  0x000060e0 call  0x00007a7c 
+ 00030362  0x000060e1 jam  0x00000001 , 0x000008d6 
+ 00030363  0x000060e2 rtn 
+ 00030364  0x000060e5 arg  0x000046b2 , 0x00000005 
+ 00030365  0x000060e6 arg  0x00000552 , 0x00000006 
+ 00030366  0x000060e7 call  0x00007e84 
+ 00030367  0x000060e8 jam  0x00000001 , 0x00004639 
+ 00030368  0x000060e9 jam  0x00000000 , 0x000008d6 
+ 00030369  0x000060ea rtn 
+ 00030370  0x000060ed set1  0x00000025 , 0x00000000 
+ 00030371  0x000060ee bpatch  0x000000e4 , 0x0000403c 
+ 00030372  0x000060ef fetch  0x00000001 , 0x000008dd 
+ 00030373  0x000060f0 rtnne  0x00000000 
+ 00030374  0x000060f1 fetch  0x00000001 , 0x000008d6 
+ 00030375  0x000060f2 rtnne  0x00000000 
+ 00030376  0x000060f4 arg  0x000005e2 , 0x00000005 
+ 00030377  0x000060f5 arg  0x0000469a , 0x00000006 
+ 00030378  0x000060f6 call  0x00007e86 
+ 00030379  0x000060f8 arg  0x0000050a , 0x00000005 
+ 00030380  0x000060f9 arg  0x000008ea , 0x00000006 
+ 00030381  0x000060fa call  0x00007e84 
+ 00030382  0x000060fc arg  0x0000053a , 0x00000005 
+ 00030383  0x000060fd call  0x00007e90 
+ 00030384  0x000060fe jam  0x00000001 , 0x0000053a 
+ 00030385  0x00006100 call  0x00007a7c 
+ 00030386  0x00006101 jam  0x00000002 , 0x000008d6 
+ 00030387  0x00006102 rtn 
+ 00030388  0x00006105 jam  0x00000001 , 0x000008d7 
+ 00030389  0x00006106 arg  0x0000092a , 0x00000005 
+ 00030390  0x00006107 arg  0x00000552 , 0x00000006 
+ 00030391  0x00006108 call  0x00007e86 
+ 00030392  0x00006109 jam  0x00000001 , 0x000008dd 
+ 00030393  0x0000610a jam  0x00000000 , 0x000008d6 
+ 00030394  0x0000610b rtn 
+ 00030395  0x0000610e increase  0xffffffff , 0x00000007 
+ 00030396  0x0000610f nrtn  0x00000002 
+ 00030397  0x00006110 random  0x0000003f 
+ 00030398  0x00006111 istore  0x00000002 , 0x00000005 
+ 00030399  0x00006112 branch  0x000076bb 
+ 00030400  0x00006114 increase  0xffffffff , 0x00000007 
+ 00030401  0x00006115 nbranch  0x000076cc , 0x00000002 
+ 00030402  0x00006116 ifetch  0x00000004 , 0x00000011 
+ 00030403  0x00006117 copy  0x0000003f , 0x00000002 
+ 00030404  0x00006118 ifetch  0x00000004 , 0x00000012 
+ 00030405  0x00006119 iflip  0x00000002 , 0x0000003f 
+ 00030406  0x0000611a nbranch  0x000076ca , 0x00000005 
+ 00030407  0x0000611b increase  0x00000004 , 0x00000011 
+ 00030408  0x0000611c increase  0x00000004 , 0x00000012 
+ 00030409  0x0000611d branch  0x000076c0 
+ 00030410  0x0000611f disable  0x00000001 
+ 00030411  0x00006120 rtn 
+ 00030412  0x00006122 enable  0x00000001 
+ 00030413  0x00006123 rtn 
+ 00030414  0x0000612b set1  0x00000025 , 0x00000000 
+ 00030415  0x0000612c bpatch  0x000000e5 , 0x0000403c 
+ 00030416  0x0000612d fetch  0x00000001 , 0x000008d4 
+ 00030417  0x0000612e rtn  0x00000034 
+ 00030418  0x0000612f call  0x000058c5 
+ 00030419  0x00006130 nrtn  0x00000034 
+ 00030420  0x00006131 jam  0x00000000 , 0x000008d4 
+ 00030421  0x00006132 fetch  0x00000001 , 0x000008d2 
+ 00030422  0x00006133 beq  0x00000003 , 0x00005806 
+ 00030423  0x00006134 beq  0x00000005 , 0x00005823 
+ 00030424  0x00006135 beq  0x00000007 , 0x0000582e 
+ 00030425  0x00006136 beq  0x0000000b , 0x00005843 
+ 00030426  0x00006137 beq  0x00000002 , 0x00007600 
+ 00030427  0x00006138 beq  0x00000004 , 0x0000760d 
+ 00030428  0x00006139 beq  0x00000009 , 0x0000762d 
+ 00030429  0x0000613a beq  0x0000000a , 0x00007651 
+ 00030430  0x0000613b beq  0x0000000c , 0x0000766f 
+ 00030431  0x0000613d rtn 
+ 00030432  0x00006140 set1  0x00000025 , 0x00000000 
+ 00030433  0x00006141 bpatch  0x000000e6 , 0x0000403c 
+ 00030434  0x00006142 fetch  0x00000001 , 0x000008d5 
+ 00030435  0x00006143 rtn  0x00000034 
+ 00030436  0x00006144 call  0x000058c5 
+ 00030437  0x00006145 nrtn  0x00000034 
+ 00030438  0x00006146 jam  0x00000000 , 0x000008d5 
+ 00030439  0x00006147 fetch  0x00000001 , 0x000008d3 
+ 00030440  0x00006148 beq  0x00000012 , 0x000057e9 
+ 00030441  0x00006149 beq  0x00000013 , 0x000057ee 
+ 00030442  0x0000614a beq  0x00000003 , 0x000057f2 
+ 00030443  0x0000614b beq  0x00000004 , 0x00007618 
+ 00030444  0x0000614c beq  0x00000014 , 0x000057f6 
+ 00030445  0x0000614d beq  0x00000007 , 0x00005804 
+ 00030446  0x0000614e beq  0x0000000a , 0x00007651 
+ 00030447  0x0000614f beq  0x0000000b , 0x00005842 
+ 00030448  0x00006150 beq  0x00000009 , 0x0000762d 
+ 00030449  0x00006151 beq  0x00000015 , 0x0000583c 
+ 00030450  0x00006152 rtn 
+ 00030451  0x00006155 jam  0x00000001 , 0x000008d5 
+ 00030452  0x00006156 rtn 
+ 00030453  0x00006159 jam  0x00000000 , 0x000008d5 
+ 00030454  0x0000615a rtn 
+ 00030455  0x0000615c set1  0x00000025 , 0x00000000 
+ 00030456  0x0000615d bpatch  0x000000e7 , 0x0000403c 
+ 00030457  0x0000615e fetch  0x00000001 , 0x000046e2 
+ 00030458  0x0000615f rtn  0x00000034 
+ 00030459  0x00006160 fetch  0x00000001 , 0x000008d6 
+ 00030460  0x00006161 rtn  0x00000034 
+ 00030461  0x00006162 increase  0x00000080 , 0x0000003f 
+ 00030462  0x00006163 store  0x00000001 , 0x000008d6 
+ 00030463  0x00006164 rtnbit1  0x00000007 
+ 00030464  0x00006165 fetch  0x00000001 , 0x00000507 
+ 00030465  0x00006166 branch  0x00007703 , 0x00000034 
+ 00030466  0x00006167 branch  0x00007a87 
+ 00030467  0x0000616a call  0x000078ef 
+ 00030468  0x0000616b fetch  0x00000001 , 0x000008d6 
+ 00030469  0x0000616c beq  0x00000001 , 0x0000769c 
+ 00030470  0x0000616d beq  0x00000002 , 0x000076b4 
+ 00030471  0x0000616e rtn 
+ 00030472  0x00006172 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00030473  0x00006173 rshift3  0x0000003f , 0x0000003f 
+ 00030474  0x00006174 iadd  0x00000006 , 0x00000006 
+ 00030475  0x00006175 ifetch  0x00000001 , 0x00000006 
+ 00030476  0x00006176 qisolate0  0x0000003f 
+ 00030477  0x00006177 rtn 
+ 00030478  0x0000617b call  0x00007e86 
+ 00030479  0x0000617c call  0x00007e86 
+ 00030480  0x0000617d branch  0x00007e86 
+ 00030481  0x00006181 ifetch  0x00000008 , 0x00000006 
+ 00030482  0x00006182 nrtn  0x00000034 
+ 00030483  0x00006183 ifetch  0x00000008 , 0x00000006 
+ 00030484  0x00006184 nrtn  0x00000034 
+ 00030485  0x00006185 ifetch  0x00000008 , 0x00000006 
+ 00030486  0x00006186 rtn 
+ 00030487  0x0000618c ifetch  0x00000004 , 0x00000011 
+ 00030488  0x0000618d iforce  0x00000002 
+ 00030489  0x0000618e ifetch  0x00000004 , 0x00000012 
+ 00030490  0x0000618f isub  0x00000002 , 0x0000003e 
+ 00030491  0x00006190 nrtn  0x00000005 
+ 00030492  0x00006191 increase  0x00000004 , 0x00000011 
+ 00030493  0x00006192 increase  0x00000004 , 0x00000012 
+ 00030494  0x00006193 loop  0x00007717 
+ 00030495  0x00006194 rtn 
+ 00030496  0x00006198 force  0x00000006 , 0x00000039 
+ 00030497  0x00006199 increase  0x00000014 , 0x00000011 
+ 00030498  0x0000619a increase  0x00000014 , 0x00000012 
+ 00030499  0x0000619c ifetch  0x00000004 , 0x00000012 
+ 00030500  0x0000619d iforce  0x00000002 
+ 00030501  0x0000619e ifetch  0x00000004 , 0x00000011 
+ 00030502  0x0000619f isub  0x00000002 , 0x0000003f 
+ 00030503  0x000061a0 nrtn  0x00000002 
+ 00030504  0x000061a1 nrtn  0x00000034 
+ 00030505  0x000061a2 increase  0xfffffffc , 0x00000011 
+ 00030506  0x000061a3 increase  0xfffffffc , 0x00000012 
+ 00030507  0x000061a4 loop  0x00007723 
+ 00030508  0x000061a5 rtn 
+ 00030509  0x000061a8 force  0x00000006 , 0x00000039 
+ 00030510  0x000061a9 force  0x00000000 , 0x00000013 
+ 00030511  0x000061ab ifetch  0x00000004 , 0x00000011 
+ 00030512  0x000061ac iforce  0x00000002 
+ 00030513  0x000061ad ifetch  0x00000004 , 0x00000012 
+ 00030514  0x000061ae iadd  0x00000002 , 0x0000003f 
+ 00030515  0x000061af iadd  0x00000013 , 0x0000003f 
+ 00030516  0x000061b0 istore  0x00000004 , 0x00000005 
+ 00030517  0x000061b1 isolate1  0x00000020 , 0x0000003f 
+ 00030518  0x000061b2 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030519  0x000061b3 increase  0x00000004 , 0x00000011 
+ 00030520  0x000061b4 increase  0x00000004 , 0x00000012 
+ 00030521  0x000061b5 loop  0x0000772f 
+ 00030522  0x000061b6 rtn 
+ 00030523  0x000061b9 force  0x00000006 , 0x00000039 
+ 00030524  0x000061ba force  0x00000000 , 0x00000013 
+ 00030525  0x000061bc ifetch  0x00000004 , 0x00000012 
+ 00030526  0x000061bd iforce  0x00000002 
+ 00030527  0x000061be ifetch  0x00000004 , 0x00000011 
+ 00030528  0x000061bf isub  0x00000002 , 0x0000003f 
+ 00030529  0x000061c0 isub  0x00000013 , 0x0000003f 
+ 00030530  0x000061c1 istore  0x00000004 , 0x00000005 
+ 00030531  0x000061c2 isolate1  0x00000020 , 0x0000003f 
+ 00030532  0x000061c3 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030533  0x000061c4 increase  0x00000004 , 0x00000011 
+ 00030534  0x000061c5 increase  0x00000004 , 0x00000012 
+ 00030535  0x000061c6 loop  0x0000773d 
+ 00030536  0x000061c7 rtn 
+ 00030537  0x000061ca force  0x00000006 , 0x00000039 
+ 00030538  0x000061cb increase  0x00000014 , 0x00000011 
+ 00030539  0x000061cd force  0x00000000 , 0x00000013 
+ 00030540  0x000061cf ifetch  0x00000004 , 0x00000011 
+ 00030541  0x000061d0 isolate1  0x00000000 , 0x0000003f 
+ 00030542  0x000061d1 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030543  0x000061d2 rshift  0x0000003f , 0x0000003f 
+ 00030544  0x000061d3 isolate1  0x00000000 , 0x00000013 
+ 00030545  0x000061d4 setflag  0x00000001 , 0x0000001f , 0x0000003f 
+ 00030546  0x000061d5 istore  0x00000004 , 0x00000011 
+ 00030547  0x000061d6 increase  0xfffffffc , 0x00000011 
+ 00030548  0x000061d7 rshift  0x00000013 , 0x00000013 
+ 00030549  0x000061d8 loop  0x0000774c 
+ 00030550  0x000061d9 rtn 
+ 00030551  0x000061dc force  0x00000006 , 0x00000039 
+ 00030552  0x000061dd force  0x00000000 , 0x00000013 
+ 00030553  0x000061df ifetch  0x00000004 , 0x00000011 
+ 00030554  0x000061e0 isolate1  0x0000001f , 0x0000003f 
+ 00030555  0x000061e1 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030556  0x000061e2 lshift  0x0000003f , 0x0000003f 
+ 00030557  0x000061e3 isolate1  0x00000000 , 0x00000013 
+ 00030558  0x000061e4 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030559  0x000061e5 istore  0x00000004 , 0x00000011 
+ 00030560  0x000061e6 increase  0x00000004 , 0x00000011 
+ 00030561  0x000061e7 rshift  0x00000013 , 0x00000013 
+ 00030562  0x000061e8 loop  0x00007759 
+ 00030563  0x000061e9 rtn 
+ 00030564  0x000061ec call  0x00007757 
+ 00030565  0x000061ee isolate1  0x00000000 , 0x00000013 
+ 00030566  0x000061ef branch  0x0000776d , 0x00000001 
+ 00030567  0x000061f0 arg  0x000007aa , 0x00000012 
+ 00030568  0x000061f1 copy  0x00000011 , 0x00000013 
+ 00030569  0x000061f2 increase  0xffffffe8 , 0x00000011 
+ 00030570  0x000061f3 call  0x00007720 
+ 00030571  0x000061f4 nrtn  0x00000002 
+ 00030572  0x000061f5 copy  0x00000013 , 0x00000011 
+ 00030573  0x000061f7 increase  0xffffffe8 , 0x00000011 
+ 00030574  0x000061f8 arg  0x000007aa , 0x00000012 
+ 00030575  0x000061f9 copy  0x00000011 , 0x00000005 
+ 00030576  0x000061fa branch  0x0000773b 
+ 00030577  0x000061fe call  0x0000772d 
+ 00030578  0x000061ff copy  0x00000005 , 0x00000011 
+ 00030579  0x00006200 branch  0x00007765 
+ 00030580  0x00006203 call  0x0000773b 
+ 00030581  0x00006204 isolate0  0x00000000 , 0x00000013 
+ 00030582  0x00006205 rtn  0x00000001 
+ 00030583  0x00006206 arg  0x000007aa , 0x00000012 
+ 00030584  0x00006207 add  0x00000005 , 0xffffffe8 , 0x00000011 
+ 00030585  0x00006208 copy  0x00000011 , 0x00000005 
+ 00030586  0x00006209 branch  0x0000772d 
+ 00030587  0x0000620d copy  0x00000005 , 0x0000000b 
+ 00030588  0x0000620e copy  0x00000011 , 0x00000030 
+ 00030589  0x0000620f arg  0x0000063a , 0x00000012 
+ 00030590  0x00006210 copy  0x00000012 , 0x00000005 
+ 00030591  0x00006211 add  0x00000011 , 0x00000018 , 0x00000006 
+ 00030592  0x00006212 ifetch  0x00000008 , 0x00000006 
+ 00030593  0x00006213 istore  0x00000008 , 0x00000005 
+ 00030594  0x00006214 istore  0x00000008 , 0x00000005 
+ 00030595  0x00006215 force  0x00000000 , 0x0000003f 
+ 00030596  0x00006216 istore  0x00000008 , 0x00000005 
+ 00030597  0x00006217 copy  0x0000000b , 0x00000005 
+ 00030598  0x00006218 call  0x00007771 
+ 00030599  0x00006219 arg  0x0000063a , 0x00000012 
+ 00030600  0x0000621a copy  0x00000012 , 0x00000005 
+ 00030601  0x0000621b force  0x00000000 , 0x0000003f 
+ 00030602  0x0000621c istore  0x00000008 , 0x00000005 
+ 00030603  0x0000621d add  0x00000030 , 0x00000020 , 0x00000006 
+ 00030604  0x0000621e ifetch  0x00000008 , 0x00000006 
+ 00030605  0x0000621f istore  0x00000008 , 0x00000005 
+ 00030606  0x00006220 istore  0x00000008 , 0x00000005 
+ 00030607  0x00006221 copy  0x0000000b , 0x00000011 
+ 00030608  0x00006222 copy  0x00000011 , 0x00000005 
+ 00030609  0x00006223 call  0x00007771 
+ 00030610  0x00006224 arg  0x0000063a , 0x00000012 
+ 00030611  0x00006225 copy  0x00000012 , 0x00000005 
+ 00030612  0x00006226 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00030613  0x00006227 ifetch  0x00000008 , 0x00000006 
+ 00030614  0x00006228 istore  0x00000008 , 0x00000005 
+ 00030615  0x00006229 istore  0x00000008 , 0x00000005 
+ 00030616  0x0000622a istore  0x00000008 , 0x00000005 
+ 00030617  0x0000622b copy  0x0000000b , 0x00000011 
+ 00030618  0x0000622c copy  0x00000011 , 0x00000005 
+ 00030619  0x0000622d branch  0x00007771 
+ 00030620  0x00006231 force  0x00000006 , 0x00000039 
+ 00030621  0x00006233 ifetch  0x00000004 , 0x00000006 
+ 00030622  0x00006234 iforce  0x0000002f 
+ 00030623  0x00006235 increase  0x00000001 , 0x00000038 
+ 00030624  0x00006236 loop  0x0000779d 
+ 00030625  0x00006237 rtn 
+ 00030626  0x0000623c copy  0x00000005 , 0x0000000b 
+ 00030627  0x0000623d arg  0x0000060a , 0x00000005 
+ 00030628  0x0000623e call  0x00007e90 
+ 00030629  0x0000623f arg  0x0000060a , 0x00000005 
+ 00030630  0x00006240 copy  0x00000011 , 0x00000006 
+ 00030631  0x00006241 force  0x00000000 , 0x00000038 
+ 00030632  0x00006242 call  0x0000779c 
+ 00030633  0x00006243 copy  0x00000012 , 0x00000006 
+ 00030634  0x00006244 call  0x0000779c 
+ 00030635  0x00006245 force  0x00000000 , 0x00000012 
+ 00030636  0x00006247 force  0x00000000 , 0x00000002 
+ 00030637  0x00006248 force  0x00000006 , 0x00000013 
+ 00030638  0x0000624a ifetch  0x00000004 , 0x00000005 
+ 00030639  0x0000624b iforce  0x00000011 
+ 00030640  0x0000624c copy  0x00000012 , 0x00000038 
+ 00030641  0x0000624d deposit  0x0000002f 
+ 00030642  0x0000624e copy  0x00000013 , 0x00000038 
+ 00030643  0x0000624f imul32  0x0000002f , 0x0000003f 
+ 00030644  0x00006250 iadd  0x00000011 , 0x0000003f 
+ 00030645  0x00006251 iadd  0x00000002 , 0x0000003f 
+ 00030646  0x00006252 istore  0x00000004 , 0x00000005 
+ 00030647  0x00006253 rshift32  0x0000003f , 0x00000002 
+ 00030648  0x00006254 increase  0x00000001 , 0x00000013 
+ 00030649  0x00006255 compare  0x0000000c , 0x00000013 , 0x000000ff 
+ 00030650  0x00006256 nbranch  0x000077ae , 0x00000001 
+ 00030651  0x00006257 deposit  0x00000002 
+ 00030652  0x00006258 istore  0x00000004 , 0x00000005 
+ 00030653  0x00006259 increase  0xffffffe8 , 0x00000005 
+ 00030654  0x0000625a increase  0x00000001 , 0x00000012 
+ 00030655  0x0000625b compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00030656  0x0000625c nbranch  0x000077ac , 0x00000001 
+ 00030657  0x0000625d arg  0x0000060a , 0x00000011 
+ 00030658  0x0000625e copy  0x0000000b , 0x00000005 
+ 00030659  0x0000625f branch  0x0000777b 
+ 00030660  0x00006263 copy  0x00000011 , 0x00000012 
+ 00030661  0x00006264 branch  0x000077a2 
+ 00030662  0x00006267 copy  0x00000011 , 0x00000030 
+ 00030663  0x00006269 copy  0x00000030 , 0x00000011 
+ 00030664  0x0000626a ifetch  0x00000001 , 0x00000011 
+ 00030665  0x0000626b isolate1  0x00000000 , 0x0000003f 
+ 00030666  0x0000626c rtn  0x00000001 
+ 00030667  0x0000626d call  0x00007749 
+ 00030668  0x0000626e ifetch  0x00000001 , 0x00000012 
+ 00030669  0x0000626f isolate0  0x00000000 , 0x0000003f 
+ 00030670  0x00006270 branch  0x000077d6 , 0x00000001 
+ 00030671  0x00006271 arg  0x000007aa , 0x00000011 
+ 00030672  0x00006272 copy  0x00000012 , 0x00000005 
+ 00030673  0x00006273 call  0x0000772d 
+ 00030674  0x00006274 ifetch  0x00000001 , 0x00000012 
+ 00030675  0x00006275 iadd  0x00000013 , 0x0000003f 
+ 00030676  0x00006276 istore  0x00000001 , 0x00000012 
+ 00030677  0x00006277 increase  0xffffffe8 , 0x00000012 
+ 00030678  0x00006279 add  0x00000012 , 0x00000018 , 0x00000011 
+ 00030679  0x0000627a force  0x00000007 , 0x00000039 
+ 00030680  0x0000627b call  0x0000774b 
+ 00030681  0x0000627c branch  0x000077c7 
+ 00030682  0x00006280 copy  0x00000005 , 0x0000000b 
+ 00030683  0x00006281 arg  0x0000066a , 0x00000005 
+ 00030684  0x00006282 call  0x00007e90 
+ 00030685  0x00006283 force  0x00000000 , 0x0000003f 
+ 00030686  0x00006284 store  0x00000004 , 0x00000622 
+ 00030687  0x00006285 store  0x00000004 , 0x00000682 
+ 00030688  0x00006286 jam  0x00000001 , 0x0000066a 
+ 00030689  0x00006287 arg  0x0000060a , 0x00000005 
+ 00030690  0x00006288 call  0x00007e90 
+ 00030691  0x00006289 arg  0x000007aa , 0x00000006 
+ 00030692  0x0000628a arg  0x0000063a , 0x00000005 
+ 00030693  0x0000628b call  0x00007e86 
+ 00030694  0x0000628c copy  0x00000011 , 0x00000006 
+ 00030695  0x0000628d arg  0x00000652 , 0x00000005 
+ 00030696  0x0000628e call  0x00007e86 
+ 00030697  0x00006290 arg  0x00000652 , 0x00000006 
+ 00030698  0x00006291 call  0x00007711 
+ 00030699  0x00006292 branch  0x00007812 , 0x00000034 
+ 00030700  0x00006293 arg  0x00000652 , 0x00000011 
+ 00030701  0x00006294 arg  0x0000066a , 0x00000012 
+ 00030702  0x00006295 call  0x000077c6 
+ 00030703  0x00006297 arg  0x0000063a , 0x00000011 
+ 00030704  0x00006298 arg  0x0000060a , 0x00000012 
+ 00030705  0x00006299 call  0x000077c6 
+ 00030706  0x0000629a arg  0x00000652 , 0x00000011 
+ 00030707  0x0000629b arg  0x0000063a , 0x00000012 
+ 00030708  0x0000629c call  0x00007720 
+ 00030709  0x0000629d branch  0x00007804 , 0x00000002 
+ 00030710  0x0000629e arg  0x0000063a , 0x00000011 
+ 00030711  0x0000629f arg  0x00000652 , 0x00000012 
+ 00030712  0x000062a0 copy  0x00000011 , 0x00000005 
+ 00030713  0x000062a1 call  0x0000773b 
+ 00030714  0x000062a2 arg  0x0000066a , 0x00000011 
+ 00030715  0x000062a3 arg  0x0000060a , 0x00000012 
+ 00030716  0x000062a4 copy  0x00000012 , 0x00000005 
+ 00030717  0x000062a5 call  0x0000772d 
+ 00030718  0x000062a6 ifetch  0x00000001 , 0x00000011 
+ 00030719  0x000062a7 iadd  0x00000013 , 0x00000013 
+ 00030720  0x000062a8 ifetch  0x00000001 , 0x00000012 
+ 00030721  0x000062a9 iadd  0x00000013 , 0x0000003f 
+ 00030722  0x000062aa istore  0x00000001 , 0x00000012 
+ 00030723  0x000062ab branch  0x000077e9 
+ 00030724  0x000062ad arg  0x00000652 , 0x00000011 
+ 00030725  0x000062ae arg  0x0000063a , 0x00000012 
+ 00030726  0x000062af copy  0x00000011 , 0x00000005 
+ 00030727  0x000062b0 call  0x0000773b 
+ 00030728  0x000062b1 arg  0x0000060a , 0x00000011 
+ 00030729  0x000062b2 arg  0x0000066a , 0x00000012 
+ 00030730  0x000062b3 copy  0x00000012 , 0x00000005 
+ 00030731  0x000062b4 call  0x0000772d 
+ 00030732  0x000062b5 ifetch  0x00000001 , 0x00000011 
+ 00030733  0x000062b6 iadd  0x00000013 , 0x00000013 
+ 00030734  0x000062b7 ifetch  0x00000001 , 0x00000012 
+ 00030735  0x000062b8 iadd  0x00000013 , 0x0000003f 
+ 00030736  0x000062b9 istore  0x00000001 , 0x00000012 
+ 00030737  0x000062ba branch  0x000077e9 
+ 00030738  0x000062bc arg  0x0000066a , 0x00000005 
+ 00030739  0x000062bd call  0x00007e90 
+ 00030740  0x000062be fetch  0x00000001 , 0x00000622 
+ 00030741  0x000062bf store  0x00000001 , 0x0000066a 
+ 00030742  0x000062c0 store  0x00000001 , 0x00000672 
+ 00030743  0x000062c1 arg  0x0000066a , 0x00000011 
+ 00030744  0x000062c2 arg  0x0000060a , 0x00000012 
+ 00030745  0x000062c3 copy  0x00000012 , 0x00000005 
+ 00030746  0x000062c4 call  0x00007771 
+ 00030747  0x000062c5 arg  0x000007aa , 0x00000011 
+ 00030748  0x000062c6 arg  0x0000060a , 0x00000012 
+ 00030749  0x000062c7 copy  0x0000000b , 0x00000005 
+ 00030750  0x000062c8 branch  0x00007774 
+ 00030751  0x000062ce arg  0x000005ca , 0x00000011 
+ 00030752  0x000062cf arg  0x00000682 , 0x00000005 
+ 00030753  0x000062d0 call  0x000077c4 
+ 00030754  0x000062d1 arg  0x00000682 , 0x00000011 
+ 00030755  0x000062d2 arg  0x0000069a , 0x00000005 
+ 00030756  0x000062d3 call  0x000077c4 
+ 00030757  0x000062d4 arg  0x000007c2 , 0x00000011 
+ 00030758  0x000062d5 arg  0x0000069a , 0x00000012 
+ 00030759  0x000062d6 arg  0x0000069a , 0x00000005 
+ 00030760  0x000062d7 call  0x000077a2 
+ 00030761  0x000062d8 arg  0x0000059a , 0x00000011 
+ 00030762  0x000062d9 arg  0x00000682 , 0x00000005 
+ 00030763  0x000062da call  0x000077c4 
+ 00030764  0x000062db arg  0x00000682 , 0x00000006 
+ 00030765  0x000062dc arg  0x00000652 , 0x00000005 
+ 00030766  0x000062dd call  0x00007e86 
+ 00030767  0x000062de arg  0x00000652 , 0x00000011 
+ 00030768  0x000062df call  0x00007764 
+ 00030769  0x000062e0 arg  0x00000682 , 0x00000011 
+ 00030770  0x000062e1 arg  0x00000652 , 0x00000012 
+ 00030771  0x000062e2 arg  0x00000682 , 0x00000005 
+ 00030772  0x000062e3 call  0x00007771 
+ 00030773  0x000062e4 arg  0x00000682 , 0x00000011 
+ 00030774  0x000062e5 arg  0x0000069a , 0x00000012 
+ 00030775  0x000062e6 arg  0x00000682 , 0x00000005 
+ 00030776  0x000062e7 call  0x00007771 
+ 00030777  0x000062e8 arg  0x0000059a , 0x00000006 
+ 00030778  0x000062e9 arg  0x00000652 , 0x00000005 
+ 00030779  0x000062ea call  0x00007e86 
+ 00030780  0x000062eb arg  0x000005b2 , 0x00000011 
+ 00030781  0x000062ec arg  0x0000069a , 0x00000005 
+ 00030782  0x000062ed call  0x000077c4 
+ 00030783  0x000062ee arg  0x00000652 , 0x00000011 
+ 00030784  0x000062ef call  0x00007764 
+ 00030785  0x000062f0 arg  0x00000652 , 0x00000011 
+ 00030786  0x000062f1 call  0x00007764 
+ 00030787  0x000062f2 arg  0x00000652 , 0x00000011 
+ 00030788  0x000062f3 arg  0x0000069a , 0x00000012 
+ 00030789  0x000062f4 arg  0x00000652 , 0x00000005 
+ 00030790  0x000062f5 call  0x000077a2 
+ 00030791  0x000062f6 arg  0x0000069a , 0x00000011 
+ 00030792  0x000062f7 arg  0x0000066a , 0x00000005 
+ 00030793  0x000062f8 call  0x000077c4 
+ 00030794  0x000062f9 arg  0x0000066a , 0x00000011 
+ 00030795  0x000062fa call  0x00007764 
+ 00030796  0x000062fb arg  0x0000066a , 0x00000011 
+ 00030797  0x000062fc call  0x00007764 
+ 00030798  0x000062fd arg  0x0000066a , 0x00000011 
+ 00030799  0x000062fe call  0x00007764 
+ 00030800  0x000062ff arg  0x000005b2 , 0x00000006 
+ 00030801  0x00006300 arg  0x0000069a , 0x00000005 
+ 00030802  0x00006301 call  0x00007e86 
+ 00030803  0x00006302 arg  0x0000069a , 0x00000011 
+ 00030804  0x00006303 call  0x00007764 
+ 00030805  0x00006304 arg  0x0000069a , 0x00000011 
+ 00030806  0x00006305 arg  0x000005ca , 0x00000012 
+ 00030807  0x00006306 arg  0x000005ca , 0x00000005 
+ 00030808  0x00006307 call  0x000077a2 
+ 00030809  0x00006308 arg  0x00000682 , 0x00000011 
+ 00030810  0x00006309 arg  0x0000069a , 0x00000005 
+ 00030811  0x0000630a call  0x000077c4 
+ 00030812  0x0000630b arg  0x0000069a , 0x00000011 
+ 00030813  0x0000630c arg  0x00000652 , 0x00000012 
+ 00030814  0x0000630d arg  0x0000069a , 0x00000005 
+ 00030815  0x0000630e call  0x00007774 
+ 00030816  0x0000630f arg  0x0000069a , 0x00000011 
+ 00030817  0x00006310 arg  0x00000652 , 0x00000012 
+ 00030818  0x00006311 arg  0x0000059a , 0x00000005 
+ 00030819  0x00006312 call  0x00007774 
+ 00030820  0x00006313 arg  0x00000652 , 0x00000011 
+ 00030821  0x00006314 arg  0x0000059a , 0x00000012 
+ 00030822  0x00006315 arg  0x0000069a , 0x00000005 
+ 00030823  0x00006316 call  0x00007774 
+ 00030824  0x00006317 arg  0x0000069a , 0x00000011 
+ 00030825  0x00006318 arg  0x00000682 , 0x00000012 
+ 00030826  0x00006319 arg  0x0000069a , 0x00000005 
+ 00030827  0x0000631a call  0x000077a2 
+ 00030828  0x0000631b arg  0x0000069a , 0x00000011 
+ 00030829  0x0000631c arg  0x0000066a , 0x00000012 
+ 00030830  0x0000631d arg  0x000005b2 , 0x00000005 
+ 00030831  0x0000631e branch  0x00007774 
+ 00030832  0x00006323 arg  0x0000053a , 0x00000011 
+ 00030833  0x00006324 arg  0x000006b2 , 0x00000005 
+ 00030834  0x00006325 call  0x000077c4 
+ 00030835  0x00006326 arg  0x0000059a , 0x00000011 
+ 00030836  0x00006327 arg  0x000006b2 , 0x00000012 
+ 00030837  0x00006328 arg  0x0000066a , 0x00000005 
+ 00030838  0x00006329 call  0x000077a2 
+ 00030839  0x0000632a arg  0x0000053a , 0x00000011 
+ 00030840  0x0000632b arg  0x000006b2 , 0x00000012 
+ 00030841  0x0000632c arg  0x000006b2 , 0x00000005 
+ 00030842  0x0000632d call  0x000077a2 
+ 00030843  0x0000632e arg  0x000005b2 , 0x00000011 
+ 00030844  0x0000632f arg  0x000006b2 , 0x00000012 
+ 00030845  0x00006330 arg  0x00000652 , 0x00000005 
+ 00030846  0x00006331 call  0x000077a2 
+ 00030847  0x00006332 arg  0x000005ca , 0x00000011 
+ 00030848  0x00006333 arg  0x000006b2 , 0x00000005 
+ 00030849  0x00006334 call  0x000077c4 
+ 00030850  0x00006335 arg  0x0000050a , 0x00000011 
+ 00030851  0x00006336 arg  0x000006b2 , 0x00000012 
+ 00030852  0x00006337 arg  0x00000682 , 0x00000005 
+ 00030853  0x00006338 call  0x000077a2 
+ 00030854  0x00006339 arg  0x000005ca , 0x00000011 
+ 00030855  0x0000633a arg  0x000006b2 , 0x00000012 
+ 00030856  0x0000633b arg  0x000006b2 , 0x00000005 
+ 00030857  0x0000633c call  0x000077a2 
+ 00030858  0x0000633d arg  0x00000522 , 0x00000011 
+ 00030859  0x0000633e arg  0x000006b2 , 0x00000012 
+ 00030860  0x0000633f arg  0x0000069a , 0x00000005 
+ 00030861  0x00006340 call  0x000077a2 
+ 00030862  0x00006341 arg  0x0000066a , 0x00000011 
+ 00030863  0x00006342 arg  0x00000682 , 0x00000012 
+ 00030864  0x00006343 arg  0x000006b2 , 0x00000005 
+ 00030865  0x00006344 call  0x00007774 
+ 00030866  0x00006345 arg  0x0000066a , 0x00000011 
+ 00030867  0x00006346 arg  0x00000682 , 0x00000012 
+ 00030868  0x00006347 arg  0x0000066a , 0x00000005 
+ 00030869  0x00006348 call  0x00007771 
+ 00030870  0x00006349 arg  0x00000652 , 0x00000011 
+ 00030871  0x0000634a arg  0x0000069a , 0x00000012 
+ 00030872  0x0000634b arg  0x00000682 , 0x00000005 
+ 00030873  0x0000634c call  0x00007774 
+ 00030874  0x0000634d arg  0x00000652 , 0x00000011 
+ 00030875  0x0000634e arg  0x0000069a , 0x00000012 
+ 00030876  0x0000634f arg  0x00000652 , 0x00000005 
+ 00030877  0x00006350 call  0x00007771 
+ 00030878  0x00006351 arg  0x00000652 , 0x00000011 
+ 00030879  0x00006352 arg  0x000006b2 , 0x00000012 
+ 00030880  0x00006353 arg  0x00000652 , 0x00000005 
+ 00030881  0x00006354 call  0x000077a2 
+ 00030882  0x00006355 arg  0x000005ca , 0x00000011 
+ 00030883  0x00006356 arg  0x0000053a , 0x00000012 
+ 00030884  0x00006357 arg  0x0000069a , 0x00000005 
+ 00030885  0x00006358 call  0x000077a2 
+ 00030886  0x00006359 arg  0x0000069a , 0x00000011 
+ 00030887  0x0000635a arg  0x000006b2 , 0x00000012 
+ 00030888  0x0000635b arg  0x000005ca , 0x00000005 
+ 00030889  0x0000635c call  0x000077a2 
+ 00030890  0x0000635d arg  0x000006b2 , 0x00000011 
+ 00030891  0x0000635e arg  0x000006b2 , 0x00000005 
+ 00030892  0x0000635f call  0x000077c4 
+ 00030893  0x00006360 arg  0x000006b2 , 0x00000011 
+ 00030894  0x00006361 arg  0x0000066a , 0x00000012 
+ 00030895  0x00006362 arg  0x0000069a , 0x00000005 
+ 00030896  0x00006363 call  0x000077a2 
+ 00030897  0x00006364 arg  0x000006b2 , 0x00000011 
+ 00030898  0x00006365 arg  0x00000652 , 0x00000012 
+ 00030899  0x00006366 arg  0x00000652 , 0x00000005 
+ 00030900  0x00006367 call  0x000077a2 
+ 00030901  0x00006368 arg  0x00000682 , 0x00000011 
+ 00030902  0x00006369 arg  0x0000059a , 0x00000005 
+ 00030903  0x0000636a call  0x000077c4 
+ 00030904  0x0000636b arg  0x0000059a , 0x00000011 
+ 00030905  0x0000636c arg  0x0000069a , 0x00000012 
+ 00030906  0x0000636d arg  0x0000059a , 0x00000005 
+ 00030907  0x0000636e call  0x00007774 
+ 00030908  0x0000636f arg  0x0000059a , 0x00000006 
+ 00030909  0x00006370 arg  0x000006b2 , 0x00000005 
+ 00030910  0x00006371 call  0x00007e86 
+ 00030911  0x00006372 arg  0x000006b2 , 0x00000011 
+ 00030912  0x00006373 call  0x00007764 
+ 00030913  0x00006374 arg  0x0000069a , 0x00000011 
+ 00030914  0x00006375 arg  0x000006b2 , 0x00000012 
+ 00030915  0x00006376 arg  0x0000069a , 0x00000005 
+ 00030916  0x00006377 call  0x00007774 
+ 00030917  0x00006378 arg  0x0000069a , 0x00000011 
+ 00030918  0x00006379 arg  0x00000682 , 0x00000012 
+ 00030919  0x0000637a arg  0x00000682 , 0x00000005 
+ 00030920  0x0000637b call  0x000077a2 
+ 00030921  0x0000637c arg  0x00000682 , 0x00000011 
+ 00030922  0x0000637d arg  0x00000652 , 0x00000012 
+ 00030923  0x0000637e arg  0x000005b2 , 0x00000005 
+ 00030924  0x0000637f call  0x00007774 
+ 00030925  0x00006380 arg  0x000005b2 , 0x00000011 
+ 00030926  0x00006381 arg  0x000007aa , 0x00000012 
+ 00030927  0x00006382 arg  0x000005b2 , 0x00000005 
+ 00030928  0x00006383 force  0x00000000 , 0x00000013 
+ 00030929  0x00006384 fetch  0x00000001 , 0x000005b2 
+ 00030930  0x00006385 isolate1  0x00000000 , 0x0000003f 
+ 00030931  0x00006386 call  0x0000772d , 0x00000001 
+ 00030932  0x00006387 copy  0x00000013 , 0x00000030 
+ 00030933  0x00006388 arg  0x000005b2 , 0x00000011 
+ 00030934  0x00006389 call  0x00007749 
+ 00030935  0x0000638a fetch  0x00000001 , 0x000005c9 
+ 00030936  0x0000638b isolate1  0x00000000 , 0x00000030 
+ 00030937  0x0000638c setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00030938  0x0000638d store  0x00000001 , 0x000005c9 
+ 00030939  0x0000638e rtn 
+ 00030940  0x00006393 fetch  0x00000001 , 0x00000507 
+ 00030941  0x00006394 increase  0xffffffff , 0x0000003f 
+ 00030942  0x00006395 nrtn  0x00000002 
+ 00030943  0x00006396 store  0x00000001 , 0x00000507 
+ 00030944  0x00006397 fetch  0x00000001 , 0x00000506 
+ 00030945  0x00006398 call  0x0000781f , 0x00000034 
+ 00030946  0x00006399 fetch  0x00000001 , 0x00000507 
+ 00030947  0x0000639a arg  0x000005e2 , 0x00000006 
+ 00030948  0x0000639b call  0x00007708 
+ 00030949  0x0000639c branch  0x000078dc , 0x00000001 
+ 00030950  0x0000639d fetch  0x00000001 , 0x00000506 
+ 00030951  0x0000639e nbranch  0x000078ea , 0x00000034 
+ 00030952  0x0000639f call  0x00007870 
+ 00030953  0x000063a0 branch  0x000078dc 
+ 00030954  0x000063a2 jam  0x00000000 , 0x00000506 
+ 00030955  0x000063a3 arg  0x0000050a , 0x00000006 
+ 00030956  0x000063a4 arg  0x0000059a , 0x00000005 
+ 00030957  0x000063a5 call  0x0000770e 
+ 00030958  0x000063a6 branch  0x000078dc 
+ 00030959  0x000063aa arg  0x000005ca , 0x00000011 
+ 00030960  0x000063ab arg  0x0000069a , 0x00000005 
+ 00030961  0x000063ac call  0x000077da 
+ 00030962  0x000063ad arg  0x0000069a , 0x00000011 
+ 00030963  0x000063ae arg  0x00000652 , 0x00000005 
+ 00030964  0x000063af call  0x000077c4 
+ 00030965  0x000063b0 arg  0x0000059a , 0x00000011 
+ 00030966  0x000063b1 arg  0x00000652 , 0x00000012 
+ 00030967  0x000063b2 arg  0x00000552 , 0x00000005 
+ 00030968  0x000063b3 call  0x000077a2 
+ 00030969  0x000063b4 arg  0x0000069a , 0x00000011 
+ 00030970  0x000063b5 arg  0x00000652 , 0x00000012 
+ 00030971  0x000063b6 arg  0x00000682 , 0x00000005 
+ 00030972  0x000063b7 call  0x000077a2 
+ 00030973  0x000063b8 arg  0x000005b2 , 0x00000011 
+ 00030974  0x000063b9 arg  0x00000682 , 0x00000012 
+ 00030975  0x000063ba arg  0x0000056a , 0x00000005 
+ 00030976  0x000063bb branch  0x000077a2 
+ 00030977  0x000063c0 ifetch  0x00000004 , 0x00000006 
+ 00030978  0x000063c1 force  0x00000004 , 0x00000011 
+ 00030979  0x000063c2 increase  0x00000003 , 0x00000005 
+ 00030980  0x000063c4 istore  0x00000001 , 0x00000005 
+ 00030981  0x000063c5 rshift8  0x0000003f , 0x0000003f 
+ 00030982  0x000063c6 increase  0xfffffffe , 0x00000005 
+ 00030983  0x000063c7 increase  0xffffffff , 0x00000011 
+ 00030984  0x000063c8 nbranch  0x00007904 , 0x00000005 
+ 00030985  0x000063c9 increase  0x00000005 , 0x00000005 
+ 00030986  0x000063ca loop  0x00007901 
+ 00030987  0x000063cb rtn 
+ 00030988  0x000063cf lshift2  0x00000007 , 0x0000003f 
+ 00030989  0x000063d0 iadd  0x0000000b , 0x00000006 
+ 00030990  0x000063d1 ifetch  0x00000004 , 0x00000006 
+ 00030991  0x000063d2 rtn 
+ 00030992  0x000063d5 force  0x00000010 , 0x00000030 
+ 00030993  0x000063d6 arg  0x0000050a , 0x0000000b 
+ 00030994  0x000063d8 add  0x00000030 , 0xfffffff9 , 0x00000007 
+ 00030995  0x000063d9 call  0x0000790c 
+ 00030996  0x000063da iforce  0x00000002 
+ 00030997  0x000063db add  0x00000030 , 0xfffffff0 , 0x00000007 
+ 00030998  0x000063dc call  0x0000790c 
+ 00030999  0x000063dd iadd  0x00000002 , 0x00000002 
+ 00031000  0x000063de add  0x00000030 , 0xfffffffe , 0x00000007 
+ 00031001  0x000063df call  0x0000790c 
+ 00031002  0x000063e0 shasx  0x0000003f , 0x00000001 , 0x0000003f 
+ 00031003  0x000063e1 iadd  0x00000002 , 0x00000002 
+ 00031004  0x000063e2 add  0x00000030 , 0xfffffff1 , 0x00000007 
+ 00031005  0x000063e3 call  0x0000790c 
+ 00031006  0x000063e4 shasx  0x0000003f , 0x00000000 , 0x0000003f 
+ 00031007  0x000063e5 iadd  0x00000002 , 0x00000002 
+ 00031008  0x000063e6 lshift2  0x00000030 , 0x0000003f 
+ 00031009  0x000063e7 iadd  0x0000000b , 0x00000005 
+ 00031010  0x000063e8 istoret  0x00000004 , 0x00000005 
+ 00031011  0x000063e9 increase  0x00000001 , 0x00000030 
+ 00031012  0x000063ea compare  0x00000040 , 0x00000030 , 0x000000ff 
+ 00031013  0x000063eb nbranch  0x00007912 , 0x00000001 
+ 00031014  0x000063ec rtn 
+ 00031015  0x000063f0 arg  0x00000822 , 0x00000006 
+ 00031016  0x000063f1 force  0x00000007 , 0x00000038 
+ 00031017  0x000063f3 ifetch  0x00000004 , 0x00000006 
+ 00031018  0x000063f4 iforce  0x0000002f 
+ 00031019  0x000063f5 increase  0xffffffff , 0x00000038 
+ 00031020  0x000063f6 branch  0x00007929 , 0x00000002 
+ 00031021  0x000063f7 rtn 
+ 00031022  0x000063fa set1  0x00000025 , 0x00000000 
+ 00031023  0x000063fb bpatch  0x000000e8 , 0x0000403d 
+ 00031024  0x000063fc call  0x00007910 
+ 00031025  0x000063fd arg  0x0000060a , 0x00000005 
+ 00031026  0x000063fe force  0x00000000 , 0x00000038 
+ 00031027  0x00006400 deposit  0x0000002f 
+ 00031028  0x00006401 istore  0x00000004 , 0x00000005 
+ 00031029  0x00006402 increase  0x00000001 , 0x00000038 
+ 00031030  0x00006403 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031031  0x00006404 nbranch  0x00007933 , 0x00000001 
+ 00031032  0x00006405 call  0x000071e2 
+ 00031033  0x00006406 arg  0x00008700 , 0x0000000b 
+ 00031034  0x00006407 arg  0x0000050a , 0x00000030 
+ 00031035  0x00006408 force  0x00000040 , 0x00000039 
+ 00031036  0x0000640a ifetcht  0x00000004 , 0x00000030 
+ 00031037  0x0000640b ifetch  0x00000004 , 0x0000000b 
+ 00031038  0x0000640c increase  0x00000004 , 0x0000000b 
+ 00031039  0x0000640d increase  0x00000004 , 0x00000030 
+ 00031040  0x0000640e iadd  0x00000002 , 0x0000003f 
+ 00031041  0x0000640f force  0x00000007 , 0x00000038 
+ 00031042  0x00006410 iadd  0x0000002f , 0x00000002 
+ 00031043  0x00006411 force  0x00000004 , 0x00000038 
+ 00031044  0x00006412 shasx  0x0000002f , 0x00000003 , 0x0000003f 
+ 00031045  0x00006413 iadd  0x00000002 , 0x00000002 
+ 00031046  0x00006414 force  0x00000005 , 0x00000038 
+ 00031047  0x00006415 deposit  0x0000002f 
+ 00031048  0x00006416 force  0x00000006 , 0x00000038 
+ 00031049  0x00006417 ixor  0x0000002f , 0x0000003f 
+ 00031050  0x00006418 force  0x00000004 , 0x00000038 
+ 00031051  0x00006419 iand  0x0000002f , 0x0000003f 
+ 00031052  0x0000641a force  0x00000006 , 0x00000038 
+ 00031053  0x0000641b ixor  0x0000002f , 0x0000003f 
+ 00031054  0x0000641c iadd  0x00000002 , 0x00000002 
+ 00031055  0x0000641d force  0x00000007 , 0x00000038 
+ 00031056  0x0000641e copy  0x00000002 , 0x0000002f 
+ 00031057  0x0000641f force  0x00000003 , 0x00000038 
+ 00031058  0x00006420 deposit  0x0000002f 
+ 00031059  0x00006421 iadd  0x00000002 , 0x0000002f 
+ 00031060  0x00006422 force  0x00000000 , 0x00000038 
+ 00031061  0x00006423 deposit  0x0000002f 
+ 00031062  0x00006424 force  0x00000001 , 0x00000038 
+ 00031063  0x00006425 iand  0x0000002f , 0x00000002 
+ 00031064  0x00006426 ior  0x0000002f , 0x0000003f 
+ 00031065  0x00006427 force  0x00000002 , 0x00000038 
+ 00031066  0x00006428 iand  0x0000002f , 0x0000003f 
+ 00031067  0x00006429 ior  0x00000002 , 0x00000002 
+ 00031068  0x0000642a force  0x00000000 , 0x00000038 
+ 00031069  0x0000642b shasx  0x0000002f , 0x00000002 , 0x0000003f 
+ 00031070  0x0000642c iadd  0x00000002 , 0x0000003f 
+ 00031071  0x0000642d force  0x00000007 , 0x00000038 
+ 00031072  0x0000642e iadd  0x0000002f , 0x0000002f 
+ 00031073  0x0000642f regexrot 
+ 00031074  0x00006430 loop  0x0000793c 
+ 00031075  0x00006431 arg  0x0000060a , 0x00000006 
+ 00031076  0x00006432 force  0x00000000 , 0x00000038 
+ 00031077  0x00006434 ifetch  0x00000004 , 0x00000006 
+ 00031078  0x00006435 iadd  0x0000002f , 0x0000002f 
+ 00031079  0x00006436 increase  0x00000001 , 0x00000038 
+ 00031080  0x00006437 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031081  0x00006438 nbranch  0x00007965 , 0x00000001 
+ 00031082  0x00006439 branch  0x000071e6 
+ 00031083  0x0000643d arg  0x00000962 , 0x00000005 
+ 00031084  0x0000643e force  0x00000007 , 0x00000038 
+ 00031085  0x00006440 deposit  0x0000002f 
+ 00031086  0x00006441 istore  0x00000004 , 0x00000005 
+ 00031087  0x00006442 increase  0xffffffff , 0x00000038 
+ 00031088  0x00006443 branch  0x0000796d , 0x00000002 
+ 00031089  0x00006444 rtn 
+ 00031090  0x00006448 arg  0x0000050a , 0x00000005 
+ 00031091  0x00006449 increase  0xfffffffc , 0x00000006 
+ 00031092  0x0000644a sub  0x00000039 , 0x00000010 , 0x00000011 
+ 00031093  0x0000644c ifetch  0x00000004 , 0x00000006 
+ 00031094  0x0000644d ixor  0x00000002 , 0x0000003f 
+ 00031095  0x0000644e istore  0x00000004 , 0x00000005 
+ 00031096  0x0000644f increase  0xfffffff8 , 0x00000006 
+ 00031097  0x00006450 loop  0x00007975 
+ 00031098  0x00006451 copy  0x00000011 , 0x00000039 
+ 00031099  0x00006452 deposit  0x00000002 
+ 00031100  0x00006454 istore  0x00000004 , 0x00000005 
+ 00031101  0x00006455 loop  0x0000797c 
+ 00031102  0x00006456 rtn 
+ 00031103  0x00006459 call  0x00007984 
+ 00031104  0x0000645a call  0x0000796b 
+ 00031105  0x0000645b branch  0x000079aa 
+ 00031106  0x0000645e call  0x00007984 
+ 00031107  0x0000645f branch  0x000079aa 
+ 00031108  0x00006462 arg  0x00000902 , 0x00000006 
+ 00031109  0x00006463 arg  0x0000050a , 0x00000005 
+ 00031110  0x00006464 force  0x00000006 , 0x00000039 
+ 00031111  0x00006465 call  0x00007a90 
+ 00031112  0x00006466 arg  0x000046ca , 0x00000006 
+ 00031113  0x00006467 force  0x00000006 , 0x00000039 
+ 00031114  0x00006468 call  0x00007a90 
+ 00031115  0x00006469 arg  0x00000962 , 0x00000006 
+ 00031116  0x0000646a call  0x00007a8f 
+ 00031117  0x0000646b call  0x00007927 
+ 00031118  0x0000646c call  0x0000792e 
+ 00031119  0x0000646d arg  0x00000952 , 0x00000006 
+ 00031120  0x0000646e arg  0x0000050a , 0x00000005 
+ 00031121  0x0000646f branch  0x000079a1 
+ 00031122  0x00006472 arg  0x000046ca , 0x00000006 
+ 00031123  0x00006473 arg  0x0000050a , 0x00000005 
+ 00031124  0x00006474 force  0x00000006 , 0x00000039 
+ 00031125  0x00006475 call  0x00007a90 
+ 00031126  0x00006476 arg  0x00000902 , 0x00000006 
+ 00031127  0x00006477 force  0x00000006 , 0x00000039 
+ 00031128  0x00006478 call  0x00007a90 
+ 00031129  0x00006479 arg  0x00000952 , 0x00000006 
+ 00031130  0x0000647a call  0x00007a8f 
+ 00031131  0x0000647b call  0x00007927 
+ 00031132  0x0000647c call  0x0000792e 
+ 00031133  0x0000647d arg  0x00000962 , 0x00000006 
+ 00031134  0x0000647e arg  0x0000050a , 0x00000005 
+ 00031135  0x0000647f call  0x000079a1 
+ 00031136  0x00006480 branch  0x000079aa 
+ 00031137  0x00006483 call  0x00007a8f 
+ 00031138  0x00006484 setarg  0x00800000 
+ 00031139  0x00006485 lshift8  0x0000003f , 0x0000003f 
+ 00031140  0x00006486 istore  0x00000004 , 0x00000005 
+ 00031141  0x00006487 force  0x00000005 , 0x00000039 
+ 00031142  0x00006488 call  0x00007e91 
+ 00031143  0x00006489 setarg  0x00000280 
+ 00031144  0x0000648a istore  0x00000004 , 0x00000005 
+ 00031145  0x0000648b branch  0x0000792e 
+ 00031146  0x0000648d fetch  0x00000004 , 0x00000962 
+ 00031147  0x0000648f arg  0x000003e8 , 0x00000011 
+ 00031148  0x00006490 idiv  0x00000011 
+ 00031149  0x00006491 call  0x00007f53 
+ 00031150  0x00006492 remainder  0x0000003f 
+ 00031151  0x00006493 store  0x00000004 , 0x000008de 
+ 00031152  0x00006494 quotient  0x0000003f 
+ 00031153  0x00006495 arg  0x000003e8 , 0x00000011 
+ 00031154  0x00006496 idiv  0x00000011 
+ 00031155  0x00006497 call  0x00007f53 
+ 00031156  0x00006498 remainder  0x0000003f 
+ 00031157  0x00006499 arg  0x000003e8 , 0x00000011 
+ 00031158  0x0000649a imul32  0x00000011 , 0x0000003f 
+ 00031159  0x0000649b fetcht  0x00000004 , 0x000008de 
+ 00031160  0x0000649c iadd  0x00000002 , 0x0000003f 
+ 00031161  0x0000649d store  0x00000004 , 0x000008de 
+ 00031162  0x0000649e rtn 
+ 00031163  0x000064a1 jam  0x00000000 , 0x000046ec 
+ 00031164  0x000064a2 branch  0x000079bf 
+ 00031165  0x000064a5 fetch  0x00000001 , 0x000046ea 
+ 00031166  0x000064a6 bne  0x00000002 , 0x000079bb 
+ 00031167  0x000064a8 set1  0x00000025 , 0x00000000 
+ 00031168  0x000064a9 bpatch  0x000000e9 , 0x0000403d 
+ 00031169  0x000064aa setarg  0x00363636 
+ 00031170  0x000064ab lshift8  0x0000003f , 0x00000002 
+ 00031171  0x000064ac or_into  0x00000036 , 0x00000002 
+ 00031172  0x000064ad fetch  0x00000002 , 0x000009a2 
+ 00031173  0x000064ae copy  0x0000003f , 0x00000006 
+ 00031174  0x000064af force  0x00000004 , 0x00000039 
+ 00031175  0x000064b0 call  0x00007972 
+ 00031176  0x000064b1 call  0x00007927 
+ 00031177  0x000064b2 call  0x0000792e 
+ 00031178  0x000064b3 fetch  0x00000002 , 0x000009a4 
+ 00031179  0x000064b4 copy  0x0000003f , 0x00000006 
+ 00031180  0x000064b5 arg  0x0000050a , 0x00000005 
+ 00031181  0x000064b6 force  0x00000006 , 0x00000039 
+ 00031182  0x000064b7 call  0x00007a90 
+ 00031183  0x000064b8 fetch  0x00000002 , 0x000009a6 
+ 00031184  0x000064b9 copy  0x0000003f , 0x00000006 
+ 00031185  0x000064ba force  0x00000006 , 0x00000039 
+ 00031186  0x000064bb call  0x00007a90 
+ 00031187  0x000064bc setarg  0x00800000 
+ 00031188  0x000064bd istore  0x00000003 , 0x00000005 
+ 00031189  0x000064bf fetch  0x00000001 , 0x000046ec 
+ 00031190  0x000064c1 istore  0x00000001 , 0x00000005 
+ 00031191  0x000064c2 force  0x00000000 , 0x0000003f 
+ 00031192  0x000064c3 istore  0x00000008 , 0x00000005 
+ 00031193  0x000064c4 setarg  0x00000388 
+ 00031194  0x000064c5 istore  0x00000004 , 0x00000005 
+ 00031195  0x000064c6 call  0x0000792e 
+ 00031196  0x000064c7 call  0x0000796b 
+ 00031197  0x000064c8 arg  0x00000962 , 0x00000006 
+ 00031198  0x000064c9 arg  0x0000062a , 0x00000005 
+ 00031199  0x000064ca call  0x00007e85 
+ 00031200  0x000064cc setarg  0x005c5c5c 
+ 00031201  0x000064cd lshift8  0x0000003f , 0x00000002 
+ 00031202  0x000064ce or_into  0x0000005c , 0x00000002 
+ 00031203  0x000064cf fetch  0x00000002 , 0x000009a2 
+ 00031204  0x000064d0 copy  0x0000003f , 0x00000006 
+ 00031205  0x000064d1 force  0x00000004 , 0x00000039 
+ 00031206  0x000064d2 call  0x00007972 
+ 00031207  0x000064d3 call  0x00007927 
+ 00031208  0x000064d4 call  0x0000792e 
+ 00031209  0x000064d5 arg  0x0000064a , 0x00000006 
+ 00031210  0x000064d6 arg  0x0000050a , 0x00000005 
+ 00031211  0x000064d7 force  0x00000008 , 0x00000039 
+ 00031212  0x000064d8 call  0x00007a90 
+ 00031213  0x000064d9 setarg  0x00800000 
+ 00031214  0x000064da lshift8  0x0000003f , 0x0000003f 
+ 00031215  0x000064db istore  0x00000004 , 0x00000005 
+ 00031216  0x000064dc call  0x00007e90 
+ 00031217  0x000064dd setarg  0x00000300 
+ 00031218  0x000064de istore  0x00000004 , 0x00000005 
+ 00031219  0x000064df call  0x0000792e 
+ 00031220  0x000064e0 branch  0x0000796b 
+ 00031221  0x000064e4 setarg  0x00363636 
+ 00031222  0x000064e5 lshift8  0x0000003f , 0x00000002 
+ 00031223  0x000064e6 or_into  0x00000036 , 0x00000002 
+ 00031224  0x000064e7 arg  0x00000942 , 0x00000006 
+ 00031225  0x000064e8 force  0x00000006 , 0x00000039 
+ 00031226  0x000064e9 call  0x00007972 
+ 00031227  0x000064ea call  0x00007927 
+ 00031228  0x000064eb call  0x0000792e 
+ 00031229  0x000064ec fetch  0x00000002 , 0x000009ae 
+ 00031230  0x000064ed copy  0x0000003f , 0x00000006 
+ 00031231  0x000064ee arg  0x0000050a , 0x00000005 
+ 00031232  0x000064ef call  0x00007a8f 
+ 00031233  0x000064f0 fetch  0x00000002 , 0x000009b0 
+ 00031234  0x000064f1 copy  0x0000003f , 0x00000006 
+ 00031235  0x000064f2 call  0x00007a8f 
+ 00031236  0x000064f4 setarg  0x0062746c 
+ 00031237  0x000064f5 lshift8  0x0000003f , 0x0000003f 
+ 00031238  0x000064f6 or_into  0x0000006b , 0x0000003f 
+ 00031239  0x000064f7 istore  0x00000004 , 0x00000005 
+ 00031240  0x000064f8 arg  0x00000657 , 0x00000006 
+ 00031241  0x000064f9 force  0x00000003 , 0x00000039 
+ 00031242  0x000064fa call  0x00007a90 
+ 00031243  0x000064fc setarg  0x00800000 
+ 00031244  0x000064fd lshift8  0x0000003f , 0x0000003f 
+ 00031245  0x000064fe istore  0x00000004 , 0x00000005 
+ 00031246  0x000064ff force  0x00000000 , 0x0000003f 
+ 00031247  0x00006500 istore  0x00000008 , 0x00000005 
+ 00031248  0x00006501 setarg  0x00000380 
+ 00031249  0x00006502 istore  0x00000004 , 0x00000005 
+ 00031250  0x00006503 call  0x0000792e 
+ 00031251  0x00006505 call  0x0000796b 
+ 00031252  0x00006506 arg  0x00000962 , 0x00000006 
+ 00031253  0x00006507 arg  0x0000062a , 0x00000005 
+ 00031254  0x00006508 call  0x00007e85 
+ 00031255  0x0000650a setarg  0x005c5c5c 
+ 00031256  0x0000650b lshift8  0x0000003f , 0x00000002 
+ 00031257  0x0000650c or_into  0x0000005c , 0x00000002 
+ 00031258  0x0000650d arg  0x00000942 , 0x00000006 
+ 00031259  0x0000650e force  0x00000006 , 0x00000039 
+ 00031260  0x0000650f call  0x00007972 
+ 00031261  0x00006510 call  0x00007927 
+ 00031262  0x00006511 call  0x0000792e 
+ 00031263  0x00006512 arg  0x0000064a , 0x00000006 
+ 00031264  0x00006513 arg  0x0000050a , 0x00000005 
+ 00031265  0x00006514 force  0x00000008 , 0x00000039 
+ 00031266  0x00006515 call  0x00007a90 
+ 00031267  0x00006516 setarg  0x00800000 
+ 00031268  0x00006517 lshift8  0x0000003f , 0x0000003f 
+ 00031269  0x00006518 istore  0x00000004 , 0x00000005 
+ 00031270  0x00006519 call  0x00007e90 
+ 00031271  0x0000651a setarg  0x00000300 
+ 00031272  0x0000651b istore  0x00000004 , 0x00000005 
+ 00031273  0x0000651c call  0x0000792e 
+ 00031274  0x0000651d branch  0x0000796b 
+ 00031275  0x00006521 fetch  0x00000001 , 0x000046ea 
+ 00031276  0x00006522 bne  0x00000002 , 0x00007a3d 
+ 00031277  0x00006524 set1  0x00000025 , 0x00000000 
+ 00031278  0x00006525 bpatch  0x000000ea , 0x0000403d 
+ 00031279  0x00006526 setarg  0x00363636 
+ 00031280  0x00006527 lshift8  0x0000003f , 0x00000002 
+ 00031281  0x00006528 or_into  0x00000036 , 0x00000002 
+ 00031282  0x00006529 arg  0x00000942 , 0x00000006 
+ 00031283  0x0000652a force  0x00000006 , 0x00000039 
+ 00031284  0x0000652b call  0x00007972 
+ 00031285  0x0000652c call  0x00007927 
+ 00031286  0x0000652d call  0x0000792e 
+ 00031287  0x0000652e arg  0x00000962 , 0x00000006 
+ 00031288  0x0000652f arg  0x0000050a , 0x00000005 
+ 00031289  0x00006530 call  0x00007a8f 
+ 00031290  0x00006531 arg  0x00000952 , 0x00000006 
+ 00031291  0x00006532 call  0x00007a8f 
+ 00031292  0x00006533 branch  0x00007a52 
+ 00031293  0x00006536 setarg  0x00000000 
+ 00031294  0x00006537 store  0x00000004 , 0x00004719 
+ 00031295  0x00006538 branch  0x00007a2d 
+ 00031296  0x0000653b setarg  0x00000000 
+ 00031297  0x0000653c store  0x00000004 , 0x00004719 
+ 00031298  0x0000653d branch  0x00007a45 
+ 00031299  0x00006541 fetch  0x00000001 , 0x000046ea 
+ 00031300  0x00006542 bne  0x00000002 , 0x00007a40 
+ 00031301  0x00006544 setarg  0x00363636 
+ 00031302  0x00006545 lshift8  0x0000003f , 0x00000002 
+ 00031303  0x00006546 or_into  0x00000036 , 0x00000002 
+ 00031304  0x00006547 arg  0x00000942 , 0x00000006 
+ 00031305  0x00006548 force  0x00000006 , 0x00000039 
+ 00031306  0x00006549 call  0x00007972 
+ 00031307  0x0000654a call  0x00007927 
+ 00031308  0x0000654b call  0x0000792e 
+ 00031309  0x0000654d arg  0x00000952 , 0x00000006 
+ 00031310  0x0000654e arg  0x0000050a , 0x00000005 
+ 00031311  0x0000654f call  0x00007a8f 
+ 00031312  0x00006550 arg  0x00000962 , 0x00000006 
+ 00031313  0x00006551 call  0x00007a8f 
+ 00031314  0x00006553 setarg  0x00000000 
+ 00031315  0x00006554 istore  0x00000008 , 0x00000005 
+ 00031316  0x00006555 istore  0x00000004 , 0x00000005 
+ 00031317  0x00006556 fetch  0x00000004 , 0x00004719 
+ 00031318  0x00006557 istore  0x00000004 , 0x00000005 
+ 00031319  0x00006559 copy  0x00000005 , 0x00000002 
+ 00031320  0x0000655a jam  0x00000080 , 0x0000064a 
+ 00031321  0x0000655b copy  0x00000002 , 0x00000005 
+ 00031322  0x0000655c arg  0x0000065a , 0x00000006 
+ 00031323  0x0000655d call  0x00007a8f 
+ 00031324  0x0000655f call  0x0000792e 
+ 00031325  0x00006561 arg  0x0000050a , 0x00000005 
+ 00031326  0x00006562 force  0x00000007 , 0x00000039 
+ 00031327  0x00006563 call  0x00007e91 
+ 00031328  0x00006564 istore  0x00000004 , 0x00000005 
+ 00031329  0x00006565 setarg  0x000003f8 
+ 00031330  0x00006566 istore  0x00000004 , 0x00000005 
+ 00031331  0x00006567 call  0x0000792e 
+ 00031332  0x00006568 call  0x0000796b 
+ 00031333  0x0000656a arg  0x00000962 , 0x00000006 
+ 00031334  0x0000656b arg  0x0000062a , 0x00000005 
+ 00031335  0x0000656c call  0x00007e85 
+ 00031336  0x0000656e setarg  0x005c5c5c 
+ 00031337  0x0000656f lshift8  0x0000003f , 0x00000002 
+ 00031338  0x00006570 or_into  0x0000005c , 0x00000002 
+ 00031339  0x00006571 arg  0x00000942 , 0x00000006 
+ 00031340  0x00006572 force  0x00000006 , 0x00000039 
+ 00031341  0x00006573 call  0x00007972 
+ 00031342  0x00006574 call  0x00007927 
+ 00031343  0x00006575 call  0x0000792e 
+ 00031344  0x00006576 arg  0x0000064a , 0x00000006 
+ 00031345  0x00006577 arg  0x0000050a , 0x00000005 
+ 00031346  0x00006578 force  0x00000008 , 0x00000039 
+ 00031347  0x00006579 call  0x00007a90 
+ 00031348  0x0000657a setarg  0x00800000 
+ 00031349  0x0000657b lshift8  0x0000003f , 0x0000003f 
+ 00031350  0x0000657c istore  0x00000004 , 0x00000005 
+ 00031351  0x0000657d call  0x00007e90 
+ 00031352  0x0000657e setarg  0x00000300 
+ 00031353  0x0000657f istore  0x00000004 , 0x00000005 
+ 00031354  0x00006580 call  0x0000792e 
+ 00031355  0x00006581 branch  0x0000796b 
+ 00031356  0x00006589 jam  0x000000c0 , 0x00000507 
+ 00031357  0x0000658b fetch  0x00000001 , 0x00000507 
+ 00031358  0x0000658c rtn  0x00000034 
+ 00031359  0x0000658d increase  0xffffffff , 0x0000003f 
+ 00031360  0x0000658e store  0x00000001 , 0x00000507 
+ 00031361  0x0000658f arg  0x000005e2 , 0x00000006 
+ 00031362  0x00006590 call  0x00007708 
+ 00031363  0x00006591 branch  0x00007a7d , 0x00000001 
+ 00031364  0x00006592 arg  0x0000050a , 0x00000006 
+ 00031365  0x00006593 arg  0x0000059a , 0x00000005 
+ 00031366  0x00006594 branch  0x0000770e 
+ 00031367  0x00006597 call  0x0000781f 
+ 00031368  0x00006598 fetch  0x00000001 , 0x00000507 
+ 00031369  0x00006599 increase  0xffffffff , 0x0000003f 
+ 00031370  0x0000659a store  0x00000001 , 0x00000507 
+ 00031371  0x0000659b arg  0x000005e2 , 0x00000006 
+ 00031372  0x0000659c call  0x00007708 
+ 00031373  0x0000659d rtn  0x00000001 
+ 00031374  0x0000659e branch  0x00007870 
+ 00031375  0x000065a1 force  0x00000004 , 0x00000039 
+ 00031376  0x000065a3 increase  0xfffffffc , 0x00000006 
+ 00031377  0x000065a5 ifetch  0x00000004 , 0x00000006 
+ 00031378  0x000065a6 istore  0x00000004 , 0x00000005 
+ 00031379  0x000065a7 increase  0xfffffff8 , 0x00000006 
+ 00031380  0x000065a8 loop  0x00007a91 
+ 00031381  0x000065a9 rtn 
+ 00031382  0x000065af set1  0x00000025 , 0x00000000 
+ 00031383  0x000065b0 bpatch  0x000000eb , 0x0000403d 
+ 00031384  0x000065b1 fetch  0x00000001 , 0x00004563 
+ 00031385  0x000065b2 branch  0x000048de , 0x00000034 
+ 00031386  0x000065b3 call  0x000048da 
+ 00031387  0x000065b4 call  0x000075fb 
+ 00031388  0x000065b6 branch  0x00007a9d 
+ 00031389  0x000065bc fetch  0x00000001 , 0x00004568 
+ 00031390  0x000065bd rtnne  0x00000000 
+ 00031391  0x000065be fetch  0x00000001 , 0x00004565 
+ 00031392  0x000065bf rtnne  0x00000000 
+ 00031393  0x000065c1 arg  0x0000463a , 0x00000005 
+ 00031394  0x000065c2 force  0x0000000f , 0x00000007 
+ 00031395  0x000065c3 call  0x000076bb 
+ 00031396  0x000065c4 random  0x0000003f 
+ 00031397  0x000065c5 rshift  0x0000003f , 0x0000003f 
+ 00031398  0x000065c6 istore  0x00000002 , 0x00000005 
+ 00031399  0x000065c8 arg  0x0000068a , 0x00000005 
+ 00031400  0x000065c9 arg  0x0000463a , 0x00000006 
+ 00031401  0x000065ca call  0x00007e85 
+ 00031402  0x000065cc arg  0x0000056a , 0x00000005 
+ 00031403  0x000065cd arg  0x00000882 , 0x00000006 
+ 00031404  0x000065ce call  0x00007e7b 
+ 00031405  0x000065d0 arg  0x000005aa , 0x00000005 
+ 00031406  0x000065d1 call  0x00007e9b 
+ 00031407  0x000065d2 jam  0x00000001 , 0x000005aa 
+ 00031408  0x000065d4 call  0x00007ae8 
+ 00031409  0x000065d5 jam  0x00000003 , 0x00004565 
+ 00031410  0x000065d6 rtn 
+ 00031411  0x000065d9 arg  0x0000465a , 0x00000005 
+ 00031412  0x000065da arg  0x000005ca , 0x00000006 
+ 00031413  0x000065db call  0x00007e7b 
+ 00031414  0x000065dc jam  0x00000003 , 0x00004568 
+ 00031415  0x000065dd jam  0x00000000 , 0x00004565 
+ 00031416  0x000065de rtn 
+ 00031417  0x000065e3 fetch  0x00000001 , 0x000008dd 
+ 00031418  0x000065e4 rtnne  0x00000000 
+ 00031419  0x000065e5 fetch  0x00000001 , 0x00004565 
+ 00031420  0x000065e6 rtnne  0x00000000 
+ 00031421  0x000065e8 arg  0x0000068a , 0x00000005 
+ 00031422  0x000065e9 arg  0x0000463a , 0x00000006 
+ 00031423  0x000065ea call  0x00007e85 
+ 00031424  0x000065ec arg  0x0000056a , 0x00000005 
+ 00031425  0x000065ed arg  0x000008e2 , 0x00000006 
+ 00031426  0x000065ee call  0x00007e7b 
+ 00031427  0x000065f0 arg  0x000005aa , 0x00000005 
+ 00031428  0x000065f1 call  0x00007e9b 
+ 00031429  0x000065f2 jam  0x00000001 , 0x000005aa 
+ 00031430  0x000065f4 call  0x00007ae8 
+ 00031431  0x000065f5 jam  0x00000004 , 0x00004565 
+ 00031432  0x000065f6 rtn 
+ 00031433  0x000065fb arg  0x00000922 , 0x00000005 
+ 00031434  0x000065fc arg  0x000005ca , 0x00000006 
+ 00031435  0x000065fd call  0x00007e85 
+ 00031436  0x000065fe jam  0x00000003 , 0x000008dd 
+ 00031437  0x000065ff jam  0x00000000 , 0x00004565 
+ 00031438  0x00006600 rtn 
+ 00031439  0x00006605 fetch  0x00000001 , 0x00004563 
+ 00031440  0x00006606 rtn  0x00000034 
+ 00031441  0x00006607 fetch  0x00000001 , 0x00004565 
+ 00031442  0x00006608 rtn  0x00000034 
+ 00031443  0x00006609 increase  0x00000080 , 0x0000003f 
+ 00031444  0x0000660a store  0x00000001 , 0x00004565 
+ 00031445  0x0000660b rtnbit1  0x00000007 
+ 00031446  0x0000660c fetch  0x00000002 , 0x00000507 
+ 00031447  0x0000660d branch  0x00007ad9 , 0x00000034 
+ 00031448  0x0000660e branch  0x00007ae0 
+ 00031449  0x00006611 set1  0x00000025 , 0x00000000 
+ 00031450  0x00006612 bpatch  0x000000ec , 0x0000403d 
+ 00031451  0x00006613 call  0x00007af6 
+ 00031452  0x00006614 fetch  0x00000001 , 0x00004565 
+ 00031453  0x00006615 beq  0x00000003 , 0x00007ab3 
+ 00031454  0x00006616 beq  0x00000004 , 0x00007ac9 
+ 00031455  0x00006617 rtn 
+ 00031456  0x0000661b call  0x00007b08 
+ 00031457  0x0000661c fetch  0x00000002 , 0x00000507 
+ 00031458  0x0000661d increase  0xffffffff , 0x0000003f 
+ 00031459  0x0000661e store  0x00000002 , 0x00000507 
+ 00031460  0x0000661f arg  0x0000068a , 0x00000006 
+ 00031461  0x00006620 call  0x00007708 
+ 00031462  0x00006621 rtn  0x00000001 
+ 00031463  0x00006622 branch  0x00007b59 
+ 00031464  0x00006625 set1  0x00000025 , 0x00000000 
+ 00031465  0x00006626 bpatch  0x000000ed , 0x0000403d 
+ 00031466  0x00006627 setarg  0x00000100 , 0x0000003f 
+ 00031467  0x00006628 store  0x00000002 , 0x00000507 
+ 00031468  0x0000662a fetch  0x00000002 , 0x00000507 
+ 00031469  0x0000662b rtn  0x00000034 
+ 00031470  0x0000662c increase  0xffffffff , 0x0000003f 
+ 00031471  0x0000662d store  0x00000002 , 0x00000507 
+ 00031472  0x0000662e arg  0x0000068a , 0x00000006 
+ 00031473  0x0000662f call  0x00007708 
+ 00031474  0x00006630 branch  0x00007aec , 0x00000001 
+ 00031475  0x00006631 arg  0x0000056a , 0x00000006 
+ 00031476  0x00006632 arg  0x0000062a , 0x00000005 
+ 00031477  0x00006633 branch  0x00007e7a 
+ 00031478  0x00006637 arg  0x0000066a , 0x00000011 
+ 00031479  0x00006638 arg  0x0000076a , 0x00000005 
+ 00031480  0x00006639 call  0x00007bc5 
+ 00031481  0x0000663a arg  0x0000076a , 0x00000011 
+ 00031482  0x0000663b arg  0x0000070a , 0x00000005 
+ 00031483  0x0000663c call  0x00007c9c 
+ 00031484  0x0000663d arg  0x0000062a , 0x00000011 
+ 00031485  0x0000663e arg  0x0000070a , 0x00000012 
+ 00031486  0x0000663f arg  0x000005ca , 0x00000005 
+ 00031487  0x00006640 call  0x00007c03 
+ 00031488  0x00006641 arg  0x0000076a , 0x00000011 
+ 00031489  0x00006642 arg  0x0000070a , 0x00000012 
+ 00031490  0x00006643 arg  0x0000074a , 0x00000005 
+ 00031491  0x00006644 call  0x00007c03 
+ 00031492  0x00006645 arg  0x0000064a , 0x00000011 
+ 00031493  0x00006646 arg  0x0000074a , 0x00000012 
+ 00031494  0x00006647 arg  0x000005ea , 0x00000005 
+ 00031495  0x00006648 branch  0x00007c03 
+ 00031496  0x0000664b arg  0x0000066a , 0x00000011 
+ 00031497  0x0000664c arg  0x0000074a , 0x00000005 
+ 00031498  0x0000664d call  0x00007c9c 
+ 00031499  0x0000664e arg  0x0000074a , 0x00000011 
+ 00031500  0x0000664f arg  0x0000076a , 0x00000005 
+ 00031501  0x00006650 call  0x00007c9c 
+ 00031502  0x00006652 arg  0x00000862 , 0x00000011 
+ 00031503  0x00006653 arg  0x0000076a , 0x00000012 
+ 00031504  0x00006654 arg  0x0000076a , 0x00000005 
+ 00031505  0x00006655 call  0x00007c03 
+ 00031506  0x00006656 arg  0x0000062a , 0x00000011 
+ 00031507  0x00006657 arg  0x0000074a , 0x00000005 
+ 00031508  0x00006658 call  0x00007c9c 
+ 00031509  0x0000665a arg  0x0000074a , 0x00000006 
+ 00031510  0x0000665b arg  0x0000070a , 0x00000005 
+ 00031511  0x0000665c call  0x00007e85 
+ 00031512  0x0000665d arg  0x0000070a , 0x00000011 
+ 00031513  0x0000665e call  0x00007ca3 
+ 00031514  0x0000665f arg  0x0000074a , 0x00000011 
+ 00031515  0x00006660 arg  0x0000070a , 0x00000012 
+ 00031516  0x00006661 arg  0x0000074a , 0x00000005 
+ 00031517  0x00006662 call  0x00007ca0 
+ 00031518  0x00006664 arg  0x0000074a , 0x00000011 
+ 00031519  0x00006665 arg  0x0000076a , 0x00000012 
+ 00031520  0x00006666 arg  0x0000074a , 0x00000005 
+ 00031521  0x00006667 call  0x00007ca0 
+ 00031522  0x00006669 arg  0x0000062a , 0x00000006 
+ 00031523  0x0000666a arg  0x0000070a , 0x00000005 
+ 00031524  0x0000666b call  0x00007e85 
+ 00031525  0x0000666c arg  0x0000064a , 0x00000011 
+ 00031526  0x0000666d arg  0x0000076a , 0x00000005 
+ 00031527  0x0000666e call  0x00007c9c 
+ 00031528  0x0000666f arg  0x0000070a , 0x00000011 
+ 00031529  0x00006670 call  0x00007ca3 
+ 00031530  0x00006671 arg  0x0000070a , 0x00000011 
+ 00031531  0x00006672 call  0x00007ca3 
+ 00031532  0x00006673 arg  0x0000070a , 0x00000011 
+ 00031533  0x00006674 arg  0x0000076a , 0x00000012 
+ 00031534  0x00006675 arg  0x0000070a , 0x00000005 
+ 00031535  0x00006676 call  0x00007c03 
+ 00031536  0x00006677 arg  0x0000076a , 0x00000011 
+ 00031537  0x00006678 arg  0x0000072a , 0x00000005 
+ 00031538  0x00006679 call  0x00007c9c 
+ 00031539  0x0000667a arg  0x0000072a , 0x00000011 
+ 00031540  0x0000667b call  0x00007ca3 
+ 00031541  0x0000667c arg  0x0000072a , 0x00000011 
+ 00031542  0x0000667d call  0x00007ca3 
+ 00031543  0x0000667e arg  0x0000072a , 0x00000011 
+ 00031544  0x0000667f call  0x00007ca3 
+ 00031545  0x00006680 arg  0x0000064a , 0x00000006 
+ 00031546  0x00006681 arg  0x0000076a , 0x00000005 
+ 00031547  0x00006682 call  0x00007e85 
+ 00031548  0x00006683 arg  0x0000076a , 0x00000011 
+ 00031549  0x00006684 call  0x00007ca3 
+ 00031550  0x00006685 arg  0x0000076a , 0x00000011 
+ 00031551  0x00006686 arg  0x0000066a , 0x00000012 
+ 00031552  0x00006687 arg  0x0000066a , 0x00000005 
+ 00031553  0x00006688 call  0x00007c03 
+ 00031554  0x0000668b arg  0x0000074a , 0x00000011 
+ 00031555  0x0000668c arg  0x0000076a , 0x00000005 
+ 00031556  0x0000668d call  0x00007c9c 
+ 00031557  0x0000668f arg  0x0000076a , 0x00000011 
+ 00031558  0x00006690 arg  0x0000070a , 0x00000012 
+ 00031559  0x00006691 arg  0x0000076a , 0x00000005 
+ 00031560  0x00006692 call  0x00007cb9 
+ 00031561  0x00006693 arg  0x0000076a , 0x00000011 
+ 00031562  0x00006694 arg  0x0000070a , 0x00000012 
+ 00031563  0x00006695 arg  0x0000062a , 0x00000005 
+ 00031564  0x00006696 call  0x00007cb9 
+ 00031565  0x00006697 arg  0x0000070a , 0x00000011 
+ 00031566  0x00006698 arg  0x0000062a , 0x00000012 
+ 00031567  0x00006699 arg  0x0000076a , 0x00000005 
+ 00031568  0x0000669a call  0x00007cb9 
+ 00031569  0x0000669b arg  0x0000076a , 0x00000011 
+ 00031570  0x0000669c arg  0x0000074a , 0x00000012 
+ 00031571  0x0000669d arg  0x0000076a , 0x00000005 
+ 00031572  0x0000669e call  0x00007c03 
+ 00031573  0x0000669f arg  0x0000076a , 0x00000011 
+ 00031574  0x000066a0 arg  0x0000072a , 0x00000012 
+ 00031575  0x000066a1 arg  0x0000064a , 0x00000005 
+ 00031576  0x000066a2 branch  0x00007cb9 
+ 00031577  0x000066a6 arg  0x000005aa , 0x00000011 
+ 00031578  0x000066a7 arg  0x0000078a , 0x00000005 
+ 00031579  0x000066a8 call  0x00007c9c 
+ 00031580  0x000066a9 arg  0x0000062a , 0x00000011 
+ 00031581  0x000066aa arg  0x0000078a , 0x00000012 
+ 00031582  0x000066ab arg  0x0000072a , 0x00000005 
+ 00031583  0x000066ac call  0x00007c03 
+ 00031584  0x000066af arg  0x000005aa , 0x00000011 
+ 00031585  0x000066b0 arg  0x0000078a , 0x00000012 
+ 00031586  0x000066b1 arg  0x0000078a , 0x00000005 
+ 00031587  0x000066b2 call  0x00007c03 
+ 00031588  0x000066b3 arg  0x0000064a , 0x00000011 
+ 00031589  0x000066b4 arg  0x0000078a , 0x00000012 
+ 00031590  0x000066b5 arg  0x0000070a , 0x00000005 
+ 00031591  0x000066b6 call  0x00007c03 
+ 00031592  0x000066b9 arg  0x0000066a , 0x00000011 
+ 00031593  0x000066ba arg  0x0000078a , 0x00000005 
+ 00031594  0x000066bb call  0x00007c9c 
+ 00031595  0x000066bc arg  0x0000056a , 0x00000011 
+ 00031596  0x000066bd arg  0x0000078a , 0x00000012 
+ 00031597  0x000066be arg  0x0000074a , 0x00000005 
+ 00031598  0x000066bf call  0x00007c03 
+ 00031599  0x000066c1 arg  0x0000066a , 0x00000011 
+ 00031600  0x000066c2 arg  0x0000078a , 0x00000012 
+ 00031601  0x000066c3 arg  0x0000078a , 0x00000005 
+ 00031602  0x000066c4 call  0x00007c03 
+ 00031603  0x000066c5 arg  0x0000058a , 0x00000011 
+ 00031604  0x000066c6 arg  0x0000078a , 0x00000012 
+ 00031605  0x000066c7 arg  0x0000076a , 0x00000005 
+ 00031606  0x000066c8 call  0x00007c03 
+ 00031607  0x000066cd arg  0x0000072a , 0x00000012 
+ 00031608  0x000066ce arg  0x0000074a , 0x00000011 
+ 00031609  0x000066cf arg  0x0000078a , 0x00000005 
+ 00031610  0x000066d0 call  0x00007cb9 
+ 00031611  0x000066d1 arg  0x0000072a , 0x00000011 
+ 00031612  0x000066d2 arg  0x0000074a , 0x00000012 
+ 00031613  0x000066d3 arg  0x0000072a , 0x00000005 
+ 00031614  0x000066d4 call  0x00007ca0 
+ 00031615  0x000066d7 arg  0x0000070a , 0x00000012 
+ 00031616  0x000066d8 arg  0x0000076a , 0x00000011 
+ 00031617  0x000066d9 arg  0x0000074a , 0x00000005 
+ 00031618  0x000066da call  0x00007cb9 
+ 00031619  0x000066db arg  0x0000070a , 0x00000011 
+ 00031620  0x000066dc arg  0x0000076a , 0x00000012 
+ 00031621  0x000066dd arg  0x0000070a , 0x00000005 
+ 00031622  0x000066de call  0x00007ca0 
+ 00031623  0x000066df arg  0x0000070a , 0x00000011 
+ 00031624  0x000066e0 arg  0x0000078a , 0x00000012 
+ 00031625  0x000066e1 arg  0x0000070a , 0x00000005 
+ 00031626  0x000066e2 call  0x00007c03 
+ 00031627  0x000066e3 arg  0x0000066a , 0x00000011 
+ 00031628  0x000066e4 arg  0x000005aa , 0x00000012 
+ 00031629  0x000066e5 arg  0x0000076a , 0x00000005 
+ 00031630  0x000066e6 call  0x00007c03 
+ 00031631  0x000066e7 arg  0x0000076a , 0x00000011 
+ 00031632  0x000066e8 arg  0x0000078a , 0x00000012 
+ 00031633  0x000066e9 arg  0x0000066a , 0x00000005 
+ 00031634  0x000066ea call  0x00007c03 
+ 00031635  0x000066ec arg  0x0000078a , 0x00000011 
+ 00031636  0x000066ed arg  0x0000078a , 0x00000005 
+ 00031637  0x000066ee call  0x00007c9c 
+ 00031638  0x000066ef arg  0x0000078a , 0x00000011 
+ 00031639  0x000066f0 arg  0x0000072a , 0x00000012 
+ 00031640  0x000066f1 arg  0x0000076a , 0x00000005 
+ 00031641  0x000066f2 call  0x00007c03 
+ 00031642  0x000066f3 arg  0x0000078a , 0x00000011 
+ 00031643  0x000066f4 arg  0x0000070a , 0x00000012 
+ 00031644  0x000066f5 arg  0x0000070a , 0x00000005 
+ 00031645  0x000066f6 call  0x00007c03 
+ 00031646  0x000066f7 arg  0x0000074a , 0x00000011 
+ 00031647  0x000066f8 arg  0x0000062a , 0x00000005 
+ 00031648  0x000066f9 call  0x00007c9c 
+ 00031649  0x000066fa arg  0x0000062a , 0x00000011 
+ 00031650  0x000066fb arg  0x0000076a , 0x00000012 
+ 00031651  0x000066fc arg  0x0000062a , 0x00000005 
+ 00031652  0x000066fd call  0x00007cb9 
+ 00031653  0x000066fe arg  0x0000062a , 0x00000006 
+ 00031654  0x000066ff arg  0x0000078a , 0x00000005 
+ 00031655  0x00006700 call  0x00007e85 
+ 00031656  0x00006701 arg  0x0000078a , 0x00000011 
+ 00031657  0x00006702 call  0x00007ca3 
+ 00031658  0x00006703 arg  0x0000076a , 0x00000011 
+ 00031659  0x00006704 arg  0x0000078a , 0x00000012 
+ 00031660  0x00006705 arg  0x0000076a , 0x00000005 
+ 00031661  0x00006706 call  0x00007cb9 
+ 00031662  0x00006707 arg  0x0000076a , 0x00000011 
+ 00031663  0x00006708 arg  0x0000074a , 0x00000012 
+ 00031664  0x00006709 arg  0x0000074a , 0x00000005 
+ 00031665  0x0000670a call  0x00007c03 
+ 00031666  0x0000670b arg  0x0000074a , 0x00000011 
+ 00031667  0x0000670c arg  0x0000070a , 0x00000012 
+ 00031668  0x0000670d arg  0x0000064a , 0x00000005 
+ 00031669  0x0000670e call  0x00007cb9 
+ 00031670  0x0000670f arg  0x0000064a , 0x00000011 
+ 00031671  0x00006710 arg  0x00000842 , 0x00000012 
+ 00031672  0x00006711 arg  0x0000064a , 0x00000005 
+ 00031673  0x00006712 force  0x00000000 , 0x00000013 
+ 00031674  0x00006713 fetch  0x00000001 , 0x0000064a 
+ 00031675  0x00006714 isolate1  0x00000000 , 0x0000003f 
+ 00031676  0x00006715 call  0x00007c9e , 0x00000001 
+ 00031677  0x00006716 copy  0x00000013 , 0x00000030 
+ 00031678  0x00006717 arg  0x0000064a , 0x00000011 
+ 00031679  0x00006718 call  0x00007cce 
+ 00031680  0x00006719 fetch  0x00000001 , 0x00000669 
+ 00031681  0x0000671a isolate1  0x00000000 , 0x00000030 
+ 00031682  0x0000671b setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00031683  0x0000671c store  0x00000001 , 0x00000669 
+ 00031684  0x0000671d rtn 
+ 00031685  0x00006720 copy  0x00000005 , 0x0000000b 
+ 00031686  0x00006721 arg  0x0000072a , 0x00000005 
+ 00031687  0x00006722 call  0x00007e9b 
+ 00031688  0x00006723 force  0x00000000 , 0x0000003f 
+ 00031689  0x00006725 store  0x00000004 , 0x0000074a 
+ 00031690  0x00006726 jam  0x00000001 , 0x0000072a 
+ 00031691  0x00006727 arg  0x000006aa , 0x00000005 
+ 00031692  0x00006728 call  0x00007e9d 
+ 00031693  0x00006729 arg  0x00000842 , 0x00000006 
+ 00031694  0x0000672a arg  0x000006ea , 0x00000005 
+ 00031695  0x0000672b call  0x00007e85 
+ 00031696  0x0000672c copy  0x00000011 , 0x00000006 
+ 00031697  0x0000672d arg  0x0000070a , 0x00000005 
+ 00031698  0x0000672e call  0x00007e85 
+ 00031699  0x00006735 arg  0x0000070a , 0x00000006 
+ 00031700  0x00006736 call  0x00007cd8 
+ 00031701  0x00006737 branch  0x00007bfc , 0x00000034 
+ 00031702  0x0000673c arg  0x0000070a , 0x00000011 
+ 00031703  0x0000673d arg  0x0000072a , 0x00000012 
+ 00031704  0x0000673e call  0x00007cdb 
+ 00031705  0x0000673f arg  0x000006ea , 0x00000011 
+ 00031706  0x00006740 arg  0x000006aa , 0x00000012 
+ 00031707  0x00006741 call  0x00007cdb 
+ 00031708  0x00006743 arg  0x0000070a , 0x00000011 
+ 00031709  0x00006744 arg  0x000006ea , 0x00000012 
+ 00031710  0x00006745 call  0x00007cd4 
+ 00031711  0x00006746 branch  0x00007bee , 0x00000002 
+ 00031712  0x00006747 arg  0x000006ea , 0x00000011 
+ 00031713  0x00006748 arg  0x0000070a , 0x00000012 
+ 00031714  0x00006749 copy  0x00000011 , 0x00000005 
+ 00031715  0x0000674a call  0x00007ccc 
+ 00031716  0x0000674b arg  0x0000072a , 0x00000011 
+ 00031717  0x0000674c arg  0x000006aa , 0x00000012 
+ 00031718  0x0000674d copy  0x00000012 , 0x00000005 
+ 00031719  0x0000674e call  0x00007c9e 
+ 00031720  0x0000674f ifetch  0x00000001 , 0x00000011 
+ 00031721  0x00006750 iadd  0x00000013 , 0x00000013 
+ 00031722  0x00006751 ifetch  0x00000001 , 0x00000012 
+ 00031723  0x00006752 iadd  0x00000013 , 0x0000003f 
+ 00031724  0x00006753 istore  0x00000001 , 0x00000012 
+ 00031725  0x00006754 branch  0x00007bd3 
+ 00031726  0x00006756 arg  0x0000070a , 0x00000011 
+ 00031727  0x00006757 arg  0x000006ea , 0x00000012 
+ 00031728  0x00006758 copy  0x00000011 , 0x00000005 
+ 00031729  0x00006759 call  0x00007ccc 
+ 00031730  0x0000675a arg  0x000006aa , 0x00000011 
+ 00031731  0x0000675b arg  0x0000072a , 0x00000012 
+ 00031732  0x0000675c copy  0x00000012 , 0x00000005 
+ 00031733  0x0000675d call  0x00007c9e 
+ 00031734  0x0000675e ifetch  0x00000001 , 0x00000011 
+ 00031735  0x0000675f iadd  0x00000013 , 0x00000013 
+ 00031736  0x00006760 ifetch  0x00000001 , 0x00000012 
+ 00031737  0x00006761 iadd  0x00000013 , 0x0000003f 
+ 00031738  0x00006762 istore  0x00000001 , 0x00000012 
+ 00031739  0x00006763 branch  0x00007bd3 
+ 00031740  0x00006766 arg  0x000006aa , 0x00000011 
+ 00031741  0x00006767 copy  0x0000000b , 0x00000005 
+ 00031742  0x00006768 call  0x00007c2c 
+ 00031743  0x0000676a arg  0x00000842 , 0x00000011 
+ 00031744  0x0000676b copy  0x0000000b , 0x00000012 
+ 00031745  0x0000676c copy  0x0000000b , 0x00000005 
+ 00031746  0x0000676d branch  0x00007cb9 
+ 00031747  0x00006771 copy  0x00000005 , 0x0000000b 
+ 00031748  0x00006773 force  0x00000000 , 0x00000038 
+ 00031749  0x00006775 arg  0x000006aa , 0x00000005 
+ 00031750  0x00006776 call  0x00007e9d 
+ 00031751  0x00006777 arg  0x000009f1 , 0x00000005 
+ 00031752  0x00006778 call  0x00007e9d 
+ 00031753  0x0000677c copy  0x00000011 , 0x00000006 
+ 00031754  0x0000677e jam  0x00000000 , 0x000009f1 
+ 00031755  0x0000677f setarg  0x00000000 
+ 00031756  0x00006780 call  0x00007c96 
+ 00031757  0x00006781 copy  0x00000012 , 0x00000006 
+ 00031758  0x00006782 call  0x00007c9a 
+ 00031759  0x00006785 force  0x00000000 , 0x00000007 
+ 00031760  0x00006786 arg  0x000006aa , 0x00000005 
+ 00031761  0x0000678a arg  0x000009f1 , 0x00000002 
+ 00031762  0x0000678b copy  0x00000007 , 0x00000012 
+ 00031763  0x0000678c lshift2  0x00000012 , 0x0000003f 
+ 00031764  0x0000678e iadd  0x00000002 , 0x00000012 
+ 00031765  0x0000678f force  0x00000000 , 0x00000002 
+ 00031766  0x00006790 force  0x00000000 , 0x00000013 
+ 00031767  0x00006796 ifetch  0x00000004 , 0x00000005 
+ 00031768  0x00006797 iforce  0x00000011 
+ 00031769  0x0000679a ifetch  0x00000004 , 0x00000012 
+ 00031770  0x0000679b copy  0x00000013 , 0x00000038 
+ 00031771  0x0000679c imul32  0x0000002f , 0x0000003f 
+ 00031772  0x0000679d iadd  0x00000011 , 0x0000003f 
+ 00031773  0x0000679e iadd  0x00000002 , 0x0000003f 
+ 00031774  0x0000679f istore  0x00000004 , 0x00000005 
+ 00031775  0x000067a0 rshift32  0x0000003f , 0x00000002 
+ 00031776  0x000067a1 increase  0x00000001 , 0x00000013 
+ 00031777  0x000067a2 compare  0x00000008 , 0x00000013 , 0x000000ff 
+ 00031778  0x000067a3 nbranch  0x00007c17 , 0x00000001 
+ 00031779  0x000067a5 deposit  0x00000002 
+ 00031780  0x000067a6 istore  0x00000004 , 0x00000005 
+ 00031781  0x000067a7 increase  0xffffffe0 , 0x00000005 
+ 00031782  0x000067aa increase  0x00000001 , 0x00000007 
+ 00031783  0x000067ab compare  0x00000008 , 0x00000007 , 0x000000ff 
+ 00031784  0x000067ac nbranch  0x00007c11 , 0x00000001 
+ 00031785  0x000067ad arg  0x000006aa , 0x00000011 
+ 00031786  0x000067ae copy  0x0000000b , 0x00000005 
+ 00031787  0x000067af branch  0x00007c2c 
+ 00031788  0x000067b2 set1  0x00000025 , 0x00000000 
+ 00031789  0x000067b3 bpatch  0x000000ee , 0x0000403d 
+ 00031790  0x000067b4 copy  0x00000005 , 0x0000000b 
+ 00031791  0x000067b5 copy  0x00000011 , 0x00000030 
+ 00031792  0x000067b6 arg  0x000006ea , 0x00000012 
+ 00031793  0x000067b7 copy  0x00000012 , 0x00000005 
+ 00031794  0x000067b8 call  0x00007e98 
+ 00031795  0x000067b9 istore  0x00000008 , 0x00000005 
+ 00031796  0x000067ba add  0x00000011 , 0x0000002c , 0x00000006 
+ 00031797  0x000067bb call  0x00007e81 
+ 00031798  0x000067bc call  0x00007e7d 
+ 00031799  0x000067bd copy  0x00000012 , 0x00000011 
+ 00031800  0x000067be call  0x00007ca3 
+ 00031801  0x000067bf arg  0x000006ea , 0x00000012 
+ 00031802  0x000067c0 copy  0x00000030 , 0x00000011 
+ 00031803  0x000067c1 copy  0x0000000b , 0x00000005 
+ 00031804  0x000067c2 call  0x00007ca0 
+ 00031805  0x000067c4 arg  0x000006ea , 0x00000012 
+ 00031806  0x000067c5 copy  0x00000012 , 0x00000005 
+ 00031807  0x000067c6 call  0x00007e98 
+ 00031808  0x000067c7 istore  0x00000008 , 0x00000005 
+ 00031809  0x000067c8 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031810  0x000067c9 call  0x00007e87 
+ 00031811  0x000067ca call  0x00007e98 
+ 00031812  0x000067cb copy  0x00000012 , 0x00000011 
+ 00031813  0x000067cc call  0x00007ca3 
+ 00031814  0x000067d0 arg  0x000006ea , 0x00000012 
+ 00031815  0x000067d1 copy  0x0000000b , 0x00000011 
+ 00031816  0x000067d2 copy  0x00000011 , 0x00000005 
+ 00031817  0x000067d3 call  0x00007ca0 
+ 00031818  0x000067d7 arg  0x000006ea , 0x00000012 
+ 00031819  0x000067d8 copy  0x00000012 , 0x00000005 
+ 00031820  0x000067d9 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031821  0x000067da call  0x00007e7d 
+ 00031822  0x000067db call  0x00007e98 
+ 00031823  0x000067dc istore  0x00000008 , 0x00000005 
+ 00031824  0x000067dd add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031825  0x000067de call  0x00007e81 
+ 00031826  0x000067df copy  0x0000000b , 0x00000011 
+ 00031827  0x000067e0 copy  0x00000011 , 0x00000005 
+ 00031828  0x000067e1 call  0x00007ca0 
+ 00031829  0x000067e5 arg  0x000006ea , 0x00000012 
+ 00031830  0x000067e6 copy  0x00000012 , 0x00000005 
+ 00031831  0x000067e7 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031832  0x000067e8 call  0x00007e7d 
+ 00031833  0x000067e9 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031834  0x000067ea call  0x00007e7d 
+ 00031835  0x000067eb add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031836  0x000067ec call  0x00007e7e 
+ 00031837  0x000067ed add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031838  0x000067ee call  0x00007e7e 
+ 00031839  0x000067ef copy  0x0000000b , 0x00000011 
+ 00031840  0x000067f0 copy  0x00000011 , 0x00000005 
+ 00031841  0x000067f1 call  0x00007ca0 
+ 00031842  0x000067f4 arg  0x000006ea , 0x00000012 
+ 00031843  0x000067f5 copy  0x00000012 , 0x00000005 
+ 00031844  0x000067f6 add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031845  0x000067f7 call  0x00007e7d 
+ 00031846  0x000067f8 call  0x00007e98 
+ 00031847  0x000067f9 istore  0x00000008 , 0x00000005 
+ 00031848  0x000067fa add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031849  0x000067fb call  0x00007e7e 
+ 00031850  0x000067fc add  0x00000030 , 0x00000028 , 0x00000006 
+ 00031851  0x000067fd call  0x00007e7e 
+ 00031852  0x000067fe copy  0x0000000b , 0x00000011 
+ 00031853  0x000067ff copy  0x00000011 , 0x00000005 
+ 00031854  0x00006800 call  0x00007cb9 
+ 00031855  0x00006803 arg  0x000006ea , 0x00000012 
+ 00031856  0x00006804 copy  0x00000012 , 0x00000005 
+ 00031857  0x00006805 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031858  0x00006806 call  0x00007e81 
+ 00031859  0x00006807 call  0x00007e81 
+ 00031860  0x00006808 force  0x00000000 , 0x0000003f 
+ 00031861  0x00006809 istore  0x00000008 , 0x00000005 
+ 00031862  0x0000680a add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031863  0x0000680b call  0x00007e7e 
+ 00031864  0x0000680c add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031865  0x0000680d call  0x00007e7e 
+ 00031866  0x0000680e copy  0x0000000b , 0x00000011 
+ 00031867  0x0000680f copy  0x00000011 , 0x00000005 
+ 00031868  0x00006810 call  0x00007cb9 
+ 00031869  0x00006813 arg  0x000006ea , 0x00000012 
+ 00031870  0x00006814 copy  0x00000012 , 0x00000005 
+ 00031871  0x00006815 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031872  0x00006816 call  0x00007e7d 
+ 00031873  0x00006817 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031874  0x00006818 call  0x00007e7d 
+ 00031875  0x00006819 call  0x00007e98 
+ 00031876  0x0000681a add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031877  0x0000681b call  0x00007e7e 
+ 00031878  0x0000681c copy  0x0000000b , 0x00000011 
+ 00031879  0x0000681d copy  0x00000011 , 0x00000005 
+ 00031880  0x0000681e call  0x00007cb9 
+ 00031881  0x00006821 arg  0x000006ea , 0x00000012 
+ 00031882  0x00006822 copy  0x00000012 , 0x00000005 
+ 00031883  0x00006823 add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031884  0x00006824 call  0x00007e81 
+ 00031885  0x00006825 call  0x00007e98 
+ 00031886  0x00006826 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031887  0x00006827 call  0x00007e7d 
+ 00031888  0x00006828 call  0x00007e98 
+ 00031889  0x00006829 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031890  0x0000682a call  0x00007e7e 
+ 00031891  0x0000682b copy  0x0000000b , 0x00000011 
+ 00031892  0x0000682c copy  0x00000011 , 0x00000005 
+ 00031893  0x0000682d branch  0x00007cb9 
+ 00031894  0x00006831 force  0x00000020 , 0x00000039 
+ 00031895  0x00006832 arg  0x000009f1 , 0x00000005 
+ 00031896  0x00006833 iadd  0x00000005 , 0x00000005 
+ 00031897  0x00006834 branch  0x00007ecd 
+ 00031898  0x00006837 force  0x00000008 , 0x00000039 
+ 00031899  0x00006838 branch  0x0000779d 
+ 00031900  0x0000683b copy  0x00000011 , 0x00000012 
+ 00031901  0x0000683c branch  0x00007c03 
+ 00031902  0x0000683f force  0x00000008 , 0x00000039 
+ 00031903  0x00006840 branch  0x0000772e 
+ 00031904  0x00006843 call  0x00007c9e 
+ 00031905  0x00006844 copy  0x00000005 , 0x00000011 
+ 00031906  0x00006845 branch  0x00007ca4 
+ 00031907  0x00006848 call  0x00007cd1 
+ 00031908  0x0000684a isolate1  0x00000000 , 0x00000013 
+ 00031909  0x0000684b branch  0x00007cad , 0x00000001 
+ 00031910  0x0000684c arg  0x00000842 , 0x00000012 
+ 00031911  0x0000684d copy  0x00000011 , 0x00000013 
+ 00031912  0x0000684e increase  0xffffffe0 , 0x00000011 
+ 00031913  0x0000684f call  0x00007cd4 
+ 00031914  0x00006850 nrtn  0x00000002 
+ 00031915  0x00006851 copy  0x00000013 , 0x00000011 
+ 00031916  0x00006852 branch  0x00007cb5 
+ 00031917  0x00006855 call  0x00007cb5 
+ 00031918  0x00006857 copy  0x00000011 , 0x00000013 
+ 00031919  0x00006858 increase  0xffffffe0 , 0x00000011 
+ 00031920  0x00006859 arg  0x00000842 , 0x00000012 
+ 00031921  0x0000685a call  0x00007cd4 
+ 00031922  0x0000685b nrtn  0x00000002 
+ 00031923  0x0000685c copy  0x00000013 , 0x00000011 
+ 00031924  0x0000685d branch  0x00007cb5 
+ 00031925  0x00006861 increase  0xffffffe0 , 0x00000011 
+ 00031926  0x00006862 arg  0x00000842 , 0x00000012 
+ 00031927  0x00006863 copy  0x00000011 , 0x00000005 
+ 00031928  0x00006864 branch  0x00007ccc 
+ 00031929  0x0000686a call  0x00007ccc 
+ 00031930  0x0000686c branch  0x00007cc3 , 0x00000001 
+ 00031931  0x0000686f add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031932  0x00006870 arg  0x00000842 , 0x00000012 
+ 00031933  0x00006871 call  0x00007cd4 
+ 00031934  0x00006872 nrtn  0x00000002 
+ 00031935  0x00006873 arg  0x00000842 , 0x00000012 
+ 00031936  0x00006874 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031937  0x00006876 copy  0x00000011 , 0x00000005 
+ 00031938  0x00006877 branch  0x00007ccc 
+ 00031939  0x00006879 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031940  0x0000687a arg  0x00000842 , 0x00000012 
+ 00031941  0x0000687b copy  0x00000011 , 0x00000005 
+ 00031942  0x0000687c call  0x00007c9e 
+ 00031943  0x0000687e rtn  0x00000001 
+ 00031944  0x0000687f add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031945  0x00006880 arg  0x00000842 , 0x00000012 
+ 00031946  0x00006881 copy  0x00000011 , 0x00000005 
+ 00031947  0x00006882 branch  0x00007c9e 
+ 00031948  0x00006887 force  0x00000008 , 0x00000039 
+ 00031949  0x00006888 branch  0x0000773c 
+ 00031950  0x0000688b force  0x00000008 , 0x00000039 
+ 00031951  0x0000688c increase  0x0000001c , 0x00000011 
+ 00031952  0x0000688d branch  0x0000774b 
+ 00031953  0x00006890 force  0x00000008 , 0x00000039 
+ 00031954  0x00006891 force  0x00000000 , 0x00000013 
+ 00031955  0x00006892 branch  0x00007759 
+ 00031956  0x00006895 force  0x00000008 , 0x00000039 
+ 00031957  0x00006896 increase  0x0000001c , 0x00000011 
+ 00031958  0x00006897 increase  0x0000001c , 0x00000012 
+ 00031959  0x00006898 branch  0x00007723 
+ 00031960  0x0000689c ifetch  0x00000008 , 0x00000006 
+ 00031961  0x0000689d nrtn  0x00000034 
+ 00031962  0x0000689e branch  0x00007711 
+ 00031963  0x000068a4 copy  0x00000011 , 0x00000030 
+ 00031964  0x000068a6 copy  0x00000030 , 0x00000011 
+ 00031965  0x000068a7 ifetch  0x00000001 , 0x00000011 
+ 00031966  0x000068a8 isolate1  0x00000000 , 0x0000003f 
+ 00031967  0x000068a9 rtn  0x00000001 
+ 00031968  0x000068aa call  0x00007cce 
+ 00031969  0x000068ab ifetch  0x00000001 , 0x00000012 
+ 00031970  0x000068ac isolate0  0x00000000 , 0x0000003f 
+ 00031971  0x000068ad branch  0x00007ceb , 0x00000001 
+ 00031972  0x000068ae arg  0x00000842 , 0x00000011 
+ 00031973  0x000068af copy  0x00000012 , 0x00000005 
+ 00031974  0x000068b0 call  0x00007c9e 
+ 00031975  0x000068b1 ifetch  0x00000001 , 0x00000012 
+ 00031976  0x000068b2 iadd  0x00000013 , 0x0000003f 
+ 00031977  0x000068b3 istore  0x00000001 , 0x00000012 
+ 00031978  0x000068b4 increase  0xffffffe0 , 0x00000012 
+ 00031979  0x000068b6 add  0x00000012 , 0x00000020 , 0x00000011 
+ 00031980  0x000068b7 force  0x00000009 , 0x00000039 
+ 00031981  0x000068b8 call  0x0000774b 
+ 00031982  0x000068b9 branch  0x00007cdc 
+ 00031983  0x000068be call  0x00003d3e 
+ 00031984  0x000068bf rtn  0x0000002b 
+ 00031985  0x000068c0 call  0x00007cf6 
+ 00031986  0x000068c1 call  0x00007d72 
+ 00031987  0x000068c2 branch  0x00007d2a 
+ 00031988  0x000068c5 call  0x00007d44 
+ 00031989  0x000068c7 branch  0x00007d60 
+ 00031990  0x000068ca set1  0x00000025 , 0x00000000 
+ 00031991  0x000068cb bpatch  0x000000ef , 0x0000403d 
+ 00031992  0x000068cc fetch  0x00000001 , 0x00004715 
+ 00031993  0x000068cd rtneq  0x000000ff 
+ 00031994  0x000068ce iforce  0x00000002 
+ 00031995  0x000068cf call  0x000064e8 
+ 00031996  0x000068d0 fetcht  0x00000001 , 0x00004715 
+ 00031997  0x000068d1 call  0x000064fd 
+ 00031998  0x000068d2 nop  0x00000064 
+ 00031999  0x000068d3 fetcht  0x00000001 , 0x00004715 
+ 00032000  0x000068d4 call  0x000064df 
+ 00032001  0x000068d5 branch  0x00007d02 
+ 00032002  0x000068da set1  0x00000025 , 0x00000000 
+ 00032003  0x000068db bpatch  0x000000f0 , 0x0000403e 
+ 00032004  0x000068dc fetch  0x00000001 , 0x00004715 
+ 00032005  0x000068dd rtneq  0x000000ff 
+ 00032006  0x000068de copy  0x0000003f , 0x00000002 
+ 00032007  0x000068df call  0x000064f5 
+ 00032008  0x000068e0 nbranch  0x00007d15 , 0x00000001 
+ 00032009  0x000068e3 call  0x00007d1f 
+ 00032010  0x000068e4 fetch  0x00000002 , 0x0000470b 
+ 00032011  0x000068e5 set1  0x0000000c 
+ 00032012  0x000068e6 store  0x00000002 , 0x0000470b 
+ 00032013  0x000068e7 fetch  0x00000001 , 0x00004702 
+ 00032014  0x000068e8 rtneq  0x00000000 
+ 00032015  0x000068e9 jam  0x00000000 , 0x00004702 
+ 00032016  0x000068eb fetch  0x00000001 , 0x00004714 
+ 00032017  0x000068ec store  0x00000001 , 0x00004701 
+ 00032018  0x000068ed call  0x00007d26 
+ 00032019  0x000068ee jam  0x0000002c , 0x000009bd 
+ 00032020  0x000068ef branch  0x00007d86 
+ 00032021  0x000068f1 fetch  0x00000002 , 0x0000470b 
+ 00032022  0x000068f2 set0  0x0000000c 
+ 00032023  0x000068f3 store  0x00000002 , 0x0000470b 
+ 00032024  0x000068f4 fetch  0x00000001 , 0x00004702 
+ 00032025  0x000068f5 rtneq  0x00000001 
+ 00032026  0x000068f6 jam  0x00000001 , 0x00004702 
+ 00032027  0x000068f8 jam  0x00000000 , 0x00004701 
+ 00032028  0x000068f9 call  0x00007d28 
+ 00032029  0x000068fa jam  0x0000002d , 0x000009bd 
+ 00032030  0x000068fb branch  0x00007d86 
+ 00032031  0x000068fe fetch  0x00000001 , 0x00004701 
+ 00032032  0x000068ff rtn  0x00000034 
+ 00032033  0x00006900 increase  0xffffffff , 0x0000003f 
+ 00032034  0x00006901 store  0x00000001 , 0x00004701 
+ 00032035  0x00006902 nrtn  0x00000034 
+ 00032036  0x00006904 jam  0x00000010 , 0x000009bd 
+ 00032037  0x00006905 branch  0x00007d86 
+ 00032038  0x00006908 arg  0x00000007 , 0x00000007 
+ 00032039  0x00006909 branch  0x00003d06 
+ 00032040  0x0000690c arg  0x00000007 , 0x00000007 
+ 00032041  0x0000690d branch  0x00003d0a 
+ 00032042  0x00006910 fetch  0x00000001 , 0x0000470e 
+ 00032043  0x00006911 rtneq  0x000000ff 
+ 00032044  0x00006912 iforce  0x00000002 
+ 00032045  0x00006913 call  0x000064e8 
+ 00032046  0x00006914 branch  0x00007d33 
+ 00032047  0x00006917 fetch  0x00000002 , 0x0000470b 
+ 00032048  0x00006918 set0  0x0000000d 
+ 00032049  0x00006919 store  0x00000002 , 0x0000470b 
+ 00032050  0x0000691a jam  0x00000000 , 0x00004700 
+ 00032051  0x0000691c fetch  0x00000002 , 0x0000470b 
+ 00032052  0x0000691d set0  0x0000000e 
+ 00032053  0x0000691e store  0x00000002 , 0x0000470b 
+ 00032054  0x0000691f fetcht  0x00000001 , 0x0000470e 
+ 00032055  0x00006920 branch  0x000064fd 
+ 00032056  0x00006923 fetch  0x00000002 , 0x0000470b 
+ 00032057  0x00006924 set1  0x0000000e 
+ 00032058  0x00006925 store  0x00000002 , 0x0000470b 
+ 00032059  0x00006926 jam  0x00000000 , 0x00004700 
+ 00032060  0x00006927 fetcht  0x00000001 , 0x0000470e 
+ 00032061  0x00006928 branch  0x000064ff 
+ 00032062  0x0000692b jam  0x000000ff , 0x00004713 
+ 00032063  0x0000692d fetch  0x00000002 , 0x0000470b 
+ 00032064  0x0000692e set1  0x0000000d 
+ 00032065  0x0000692f store  0x00000002 , 0x0000470b 
+ 00032066  0x00006930 jam  0x00000001 , 0x00004700 
+ 00032067  0x00006931 rtn 
+ 00032068  0x00006934 set1  0x00000025 , 0x00000000 
+ 00032069  0x00006935 bpatch  0x000000f1 , 0x0000403e 
+ 00032070  0x00006936 fetch  0x00000001 , 0x00004713 
+ 00032071  0x00006937 rtn  0x00000034 
+ 00032072  0x00006938 fetch  0x00000001 , 0x00004700 
+ 00032073  0x00006939 rtneq  0x00000000 
+ 00032074  0x0000693a arg  0x00000009 , 0x00000007 
+ 00032075  0x0000693b call  0x00007ee2 
+ 00032076  0x0000693c nrtn  0x00000034 
+ 00032077  0x0000693d fetch  0x00000001 , 0x00004700 
+ 00032078  0x0000693e beq  0x00000002 , 0x00007d53 
+ 00032079  0x0000693f call  0x00007d38 
+ 00032080  0x00006940 jam  0x00000002 , 0x00004700 
+ 00032081  0x00006941 fetch  0x00000002 , 0x00004711 
+ 00032082  0x00006942 branch  0x00007d5a 
+ 00032083  0x00006944 call  0x00007d33 
+ 00032084  0x00006945 fetch  0x00000001 , 0x00004713 
+ 00032085  0x00006946 beq  0x000000ff , 0x00007d58 
+ 00032086  0x00006947 increase  0xffffffff , 0x0000003f 
+ 00032087  0x00006948 store  0x00000001 , 0x00004713 
+ 00032088  0x0000694a jam  0x00000003 , 0x00004700 
+ 00032089  0x0000694b fetch  0x00000002 , 0x0000470f 
+ 00032090  0x0000694d arg  0x00000009 , 0x00000007 
+ 00032091  0x0000694e branch  0x00007ed4 
+ 00032092  0x00006951 setarg  0x00001000 
+ 00032093  0x00006952 lshift16  0x0000003f , 0x0000003f 
+ 00032094  0x00006953 iadd  0x00000012 , 0x00000012 
+ 00032095  0x00006954 rtn 
+ 00032096  0x00006957 set1  0x00000025 , 0x00000000 
+ 00032097  0x00006958 bpatch  0x000000f2 , 0x0000403e 
+ 00032098  0x00006959 arg  0x00000000 , 0x00000011 
+ 00032099  0x0000695a fetcht  0x00000004 , 0x00004703 
+ 00032100  0x0000695b copy  0x00000022 , 0x00000012 
+ 00032101  0x0000695c copy  0x00000012 , 0x0000003f 
+ 00032102  0x0000695d isub  0x00000002 , 0x0000003e 
+ 00032103  0x0000695e ncall  0x00007d5c , 0x00000002 
+ 00032104  0x00006961 copy  0x00000012 , 0x0000003f 
+ 00032105  0x00006962 increase  0x000000a0 , 0x00000002 
+ 00032106  0x00006963 increase  0x000000a0 , 0x00000002 
+ 00032107  0x00006964 isub  0x00000002 , 0x0000003e 
+ 00032108  0x00006965 nbranch  0x00007d75 , 0x00000002 
+ 00032109  0x00006966 increase  0x00000001 , 0x00000011 
+ 00032110  0x00006967 and  0x00000011 , 0x0000000f , 0x0000003f 
+ 00032111  0x00006968 nbranch  0x00007d68 , 0x00000034 
+ 00032112  0x00006969 arg  0x00000000 , 0x00000011 
+ 00032113  0x0000696a call  0x00007d7d 
+ 00032114  0x0000696c copy  0x00000022 , 0x0000003f 
+ 00032115  0x0000696d store  0x00000004 , 0x00004703 
+ 00032116  0x0000696e rtn 
+ 00032117  0x00006970 set1  0x00000025 , 0x00000000 
+ 00032118  0x00006971 bpatch  0x000000f3 , 0x0000403e 
+ 00032119  0x00006972 copy  0x00000011 , 0x0000003f 
+ 00032120  0x00006973 rtn  0x00000034 
+ 00032121  0x00006974 increase  0xffffff60 , 0x00000002 
+ 00032122  0x00006975 increase  0xffffff60 , 0x00000002 
+ 00032123  0x00006976 set0  0x0000001c , 0x00000002 
+ 00032124  0x00006977 storet  0x00000004 , 0x00004703 
+ 00032125  0x00006979 increase  0x00000050 , 0x0000003f 
+ 00032126  0x0000697a store  0x00000001 , 0x000009bd 
+ 00032127  0x0000697b branch  0x00007d86 
+ 00032128  0x00006982 jam  0x00000001 , 0x000046ee 
+ 00032129  0x00006984 fetch  0x00000001 , 0x000046ef 
+ 00032130  0x00006985 nbranch  0x00007d81 , 0x00000034 
+ 00032131  0x00006986 rtn 
+ 00032132  0x00006989 jam  0x00000000 , 0x000046ee 
+ 00032133  0x0000698a rtn 
+ 00032134  0x0000698f set1  0x00000025 , 0x00000000 
+ 00032135  0x00006990 bpatch  0x000000f4 , 0x0000403e 
+ 00032136  0x00006991 call  0x00007d80 
+ 00032137  0x00006992 copy  0x00000011 , 0x0000003f 
+ 00032138  0x00006993 store  0x00000004 , 0x000009b5 
+ 00032139  0x00006994 arg  0x000046f0 , 0x00000011 
+ 00032140  0x00006995 call  0x00007f88 
+ 00032141  0x00006996 fetch  0x00000004 , 0x000009b5 
+ 00032142  0x00006997 copy  0x0000003f , 0x00000011 
+ 00032143  0x00006998 branch  0x00007d84 
+ 00032144  0x0000699b set1  0x00000025 , 0x00000000 
+ 00032145  0x0000699c bpatch  0x000000f5 , 0x0000403e 
+ 00032146  0x0000699d call  0x00007d80 
+ 00032147  0x0000699e copy  0x00000011 , 0x0000003f 
+ 00032148  0x0000699f store  0x00000004 , 0x000009b5 
+ 00032149  0x000069a0 arg  0x000046f8 , 0x00000011 
+ 00032150  0x000069a1 call  0x00007f88 
+ 00032151  0x000069a2 fetch  0x00000004 , 0x000009b5 
+ 00032152  0x000069a3 copy  0x0000003f , 0x00000011 
+ 00032153  0x000069a4 branch  0x00007d84 
+ 00032154  0x000069a7 setarg  0x00000000 
+ 00032155  0x000069a8 store  0x00000008 , 0x000046f8 
+ 00032156  0x000069a9 store  0x00000008 , 0x000046f0 
+ 00032157  0x000069aa rtn 
+ 00032158  0x000069ad set1  0x00000025 , 0x00000000 
+ 00032159  0x000069ae bpatch  0x000000f6 , 0x0000403e 
+ 00032160  0x000069af fetch  0x00000001 , 0x00004271 
+ 00032161  0x000069b0 nrtn  0x00000034 
+ 00032162  0x000069b1 arg  0x000046f8 , 0x00000011 
+ 00032163  0x000069b2 call  0x00007fa2 
+ 00032164  0x000069b3 rtn  0x00000034 
+ 00032165  0x000069b4 jam  0x00000000 , 0x000009b4 
+ 00032166  0x000069b5 call  0x00007daa 
+ 00032167  0x000069b6 fetch  0x00000001 , 0x000009b4 
+ 00032168  0x000069b7 branch  0x00007d9e , 0x00000034 
+ 00032169  0x000069b8 rtn 
+ 00032170  0x000069bb set1  0x00000025 , 0x00000000 
+ 00032171  0x000069bc bpatch  0x000000f7 , 0x0000403e 
+ 00032172  0x000069bd call  0x00007d80 
+ 00032173  0x000069be arg  0x000046f8 , 0x00000011 
+ 00032174  0x000069bf call  0x00007f95 
+ 00032175  0x000069c0 copy  0x0000003f , 0x00000002 
+ 00032176  0x000069c1 call  0x00007d84 
+ 00032177  0x000069c2 copy  0x00000002 , 0x0000003f 
+ 00032178  0x000069c3 rtn  0x00000034 
+ 00032179  0x000069c4 beq  0x00000001 , 0x00007df0 
+ 00032180  0x000069c5 beq  0x00000002 , 0x00007df5 
+ 00032181  0x000069c6 beq  0x00000003 , 0x00007dfb 
+ 00032182  0x000069c7 beq  0x00000007 , 0x00007e00 
+ 00032183  0x000069c8 beq  0x00000008 , 0x00007e01 
+ 00032184  0x000069c9 beq  0x00000009 , 0x00007e02 
+ 00032185  0x000069ca beq  0x0000000b , 0x00007e05 
+ 00032186  0x000069cb beq  0x0000000c , 0x00007e06 
+ 00032187  0x000069cc beq  0x0000000d , 0x00007e07 
+ 00032188  0x000069cd beq  0x0000000e , 0x00007e0d 
+ 00032189  0x000069ce beq  0x0000000f , 0x00007e12 
+ 00032190  0x000069cf beq  0x00000010 , 0x00007e18 
+ 00032191  0x000069d0 beq  0x00000015 , 0x00007d3e 
+ 00032192  0x000069d1 beq  0x00000014 , 0x00007d38 
+ 00032193  0x000069d2 beq  0x00000013 , 0x00007d2f 
+ 00032194  0x000069d3 beq  0x00000016 , 0x00007e21 
+ 00032195  0x000069d4 beq  0x00000017 , 0x00007e24 
+ 00032196  0x000069d5 beq  0x00000018 , 0x00007e26 
+ 00032197  0x000069d6 beq  0x00000019 , 0x00007e2b 
+ 00032198  0x000069d7 beq  0x0000001b , 0x00007e29 
+ 00032199  0x000069d8 beq  0x0000001c , 0x00007e3b 
+ 00032200  0x000069d9 beq  0x0000001e , 0x00007e3d 
+ 00032201  0x000069db store  0x00000001 , 0x000009bd 
+ 00032202  0x000069dc set1  0x00000025 , 0x00000000 
+ 00032203  0x000069dd bpatch  0x000000f8 , 0x0000403f 
+ 00032204  0x000069de call  0x000058c5 
+ 00032205  0x000069df nbranch  0x00007de5 , 0x00000034 
+ 00032206  0x000069e1 fetch  0x00000001 , 0x000009bd 
+ 00032207  0x000069e2 bmark0  0x00000009 , 0x00007de0 
+ 00032208  0x000069e3 beq  0x00000005 , 0x00003fae 
+ 00032209  0x000069e4 beq  0x00000006 , 0x00003fbd 
+ 00032210  0x000069e5 beq  0x0000000a , 0x00007e03 
+ 00032211  0x000069e6 beq  0x00000004 , 0x00007dfd 
+ 00032212  0x000069e7 beq  0x00000011 , 0x00007e1d 
+ 00032213  0x000069e8 beq  0x0000001d , 0x00007de7 
+ 00032214  0x000069e9 beq  0x0000001f , 0x0000642e 
+ 00032215  0x000069ea beq  0x00000020 , 0x00006432 
+ 00032216  0x000069eb beq  0x00000012 , 0x00007dde 
+ 00032217  0x000069ec beq  0x00000021 , 0x00007ddb 
+ 00032218  0x000069ed rtn 
+ 00032219  0x000069f0 call  0x00005903 
+ 00032220  0x000069f1 jam  0x00000041 , 0x0000007d 
+ 00032221  0x000069f2 branch  0x000055b4 
+ 00032222  0x000069f5 jam  0x0000002f , 0x000009bd 
+ 00032223  0x000069f6 branch  0x00004bd6 
+ 00032224  0x000069f8 store  0x00000001 , 0x000009bd 
+ 00032225  0x000069f9 call  0x00003292 
+ 00032226  0x000069fa branch  0x00007de5 , 0x00000005 
+ 00032227  0x000069fb call  0x0000329a 
+ 00032228  0x000069fc nrtn  0x00000005 
+ 00032229  0x000069fe jam  0x00000001 , 0x000009b4 
+ 00032230  0x000069ff branch  0x00007d90 
+ 00032231  0x00006a03 jam  0x00000034 , 0x0000007c 
+ 00032232  0x00006a04 set1  0x00000003 , 0x00000000 
+ 00032233  0x00006a05 nrtn  0x00000029 
+ 00032234  0x00006a06 jam  0x00000000 , 0x000045f4 
+ 00032235  0x00006a07 jam  0x00000013 , 0x0000007c 
+ 00032236  0x00006a08 fetch  0x00000001 , 0x0000016c 
+ 00032237  0x00006a09 set0  0x00000002 , 0x0000003f 
+ 00032238  0x00006a0a store  0x00000001 , 0x0000016c 
+ 00032239  0x00006a0b rtn 
+ 00032240  0x00006a0e fetch  0x00000002 , 0x0000470b 
+ 00032241  0x00006a0f set1  0x00000006 
+ 00032242  0x00006a10 store  0x00000002 , 0x0000470b 
+ 00032243  0x00006a11 jam  0x00000003 , 0x00004133 
+ 00032244  0x00006a12 rtn 
+ 00032245  0x00006a15 jam  0x00000000 , 0x00004709 
+ 00032246  0x00006a16 jam  0x00000000 , 0x00004133 
+ 00032247  0x00006a17 fetch  0x00000002 , 0x0000470b 
+ 00032248  0x00006a18 set0  0x00000006 
+ 00032249  0x00006a19 store  0x00000002 , 0x0000470b 
+ 00032250  0x00006a1a rtn 
+ 00032251  0x00006a1d jam  0x00000005 , 0x00004271 
+ 00032252  0x00006a1e rtn 
+ 00032253  0x00006a21 jam  0x00000007 , 0x0000007c 
+ 00032254  0x00006a22 jam  0x00000013 , 0x000003f0 
+ 00032255  0x00006a23 rtn 
+ 00032256  0x00006a27 rtn 
+ 00032257  0x00006a2a rtn 
+ 00032258  0x00006a2d rtn 
+ 00032259  0x00006a30 jam  0x00000002 , 0x000003fa 
+ 00032260  0x00006a31 branch  0x00003fa1 
+ 00032261  0x00006a34 rtn 
+ 00032262  0x00006a36 rtn 
+ 00032263  0x00006a38 jam  0x00000001 , 0x000043ff 
+ 00032264  0x00006a39 jam  0x00000000 , 0x00004520 
+ 00032265  0x00006a3a fetch  0x00000002 , 0x0000470b 
+ 00032266  0x00006a3b set1  0x0000000b , 0x0000003f 
+ 00032267  0x00006a3c store  0x00000002 , 0x0000470b 
+ 00032268  0x00006a3d rtn 
+ 00032269  0x00006a3f fetch  0x00000002 , 0x0000470b 
+ 00032270  0x00006a40 set0  0x0000000b , 0x0000003f 
+ 00032271  0x00006a41 store  0x00000002 , 0x0000470b 
+ 00032272  0x00006a42 jam  0x00000000 , 0x000043ff 
+ 00032273  0x00006a43 rtn 
+ 00032274  0x00006a45 jam  0x00000001 , 0x000043ff 
+ 00032275  0x00006a46 jam  0x00000001 , 0x00004520 
+ 00032276  0x00006a47 fetch  0x00000002 , 0x0000470b 
+ 00032277  0x00006a48 set1  0x0000000b , 0x0000003f 
+ 00032278  0x00006a49 store  0x00000002 , 0x0000470b 
+ 00032279  0x00006a4a rtn 
+ 00032280  0x00006a4c fetch  0x00000002 , 0x0000470b 
+ 00032281  0x00006a4d set0  0x0000000b , 0x0000003f 
+ 00032282  0x00006a4e store  0x00000002 , 0x0000470b 
+ 00032283  0x00006a4f jam  0x00000000 , 0x000043ff 
+ 00032284  0x00006a50 rtn 
+ 00032285  0x00006a52 setarg  0x0000000a 
+ 00032286  0x00006a53 store  0x00000002 , 0x00000390 
+ 00032287  0x00006a54 jam  0x00000022 , 0x000009bd 
+ 00032288  0x00006a55 branch  0x00004bd6 
+ 00032289  0x00006a57 jam  0x00000001 , 0x000043f9 
+ 00032290  0x00006a58 jam  0x0000001b , 0x00004271 
+ 00032291  0x00006a5b rtn 
+ 00032292  0x00006a5d jam  0x00000001 , 0x000043f9 
+ 00032293  0x00006a5e rtn 
+ 00032294  0x00006a60 jam  0x00000000 , 0x000043f9 
+ 00032295  0x00006a61 jam  0x00000000 , 0x00004271 
+ 00032296  0x00006a62 rtn 
+ 00032297  0x00006a64 jam  0x0000004b , 0x000009bd 
+ 00032298  0x00006a65 branch  0x00004bd6 
+ 00032299  0x00006a67 set1  0x00000025 , 0x00000000 
+ 00032300  0x00006a68 bpatch  0x000000f9 , 0x0000403f 
+ 00032301  0x00006a69 fetch  0x00000002 , 0x0000428c 
+ 00032302  0x00006a6a call  0x00007f69 
+ 00032303  0x00006a6b enable  0x00000028 
+ 00032304  0x00006a6c hfetch  0x00000004 , 0x00008138 
+ 00032305  0x00006a6d setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00032306  0x00006a6e hstore  0x00000004 , 0x0000804c 
+ 00032307  0x00006a6f call  0x00003cf4 
+ 00032308  0x00006a70 fetch  0x00000001 , 0x00004715 
+ 00032309  0x00006a71 beq  0x000000ff , 0x00007e38 
+ 00032310  0x00006a72 copy  0x0000003f , 0x00000002 
+ 00032311  0x00006a73 call  0x000064df 
+ 00032312  0x00006a75 call  0x00007d33 
+ 00032313  0x00006a76 call  0x00007d9a 
+ 00032314  0x00006a77 branch  0x00003c04 
+ 00032315  0x00006a7a jam  0x00000001 , 0x00004595 
+ 00032316  0x00006a7b rtn 
+ 00032317  0x00006a7e force  0x00000004 , 0x00000007 
+ 00032318  0x00006a7f branch  0x00007ed3 
+ 00032319  0x00006a83 fetch  0x00000001 , 0x0000470b 
+ 00032320  0x00006a84 rtnbit0  0x0000000c 
+ 00032321  0x00006a85 rtnbit0  0x00000007 
+ 00032322  0x00006a86 branch  0x00007e3d 
+ 00032323  0x00006a8b sub  0x00000039 , 0x00000000 , 0x0000003e 
+ 00032324  0x00006a8c rtn  0x00000005 
+ 00032325  0x00006a8e rshift  0x0000003f , 0x0000003f 
+ 00032326  0x00006a8f loop  0x00007e45 
+ 00032327  0x00006a90 rtn 
+ 00032328  0x00006a93 deposit  0x00000005 
+ 00032329  0x00006a94 store  0x00000002 , 0x000009df 
+ 00032330  0x00006a95 storet  0x00000008 , 0x000009c6 
+ 00032331  0x00006a96 deposit  0x0000000b 
+ 00032332  0x00006a97 store  0x00000004 , 0x000009ce 
+ 00032333  0x00006a98 deposit  0x00000011 
+ 00032334  0x00006a99 store  0x00000004 , 0x000009d2 
+ 00032335  0x00006a9a deposit  0x00000012 
+ 00032336  0x00006a9b store  0x00000004 , 0x000009d6 
+ 00032337  0x00006a9c deposit  0x00000013 
+ 00032338  0x00006a9d store  0x00000003 , 0x000009da 
+ 00032339  0x00006a9e deposit  0x00000006 
+ 00032340  0x00006a9f store  0x00000002 , 0x000009dd 
+ 00032341  0x00006aa0 rtn 
+ 00032342  0x00006aa2 fetcht  0x00000008 , 0x000009c6 
+ 00032343  0x00006aa3 fetch  0x00000004 , 0x000009ce 
+ 00032344  0x00006aa4 iforce  0x0000000b 
+ 00032345  0x00006aa5 fetch  0x00000004 , 0x000009d2 
+ 00032346  0x00006aa6 iforce  0x00000011 
+ 00032347  0x00006aa7 fetch  0x00000004 , 0x000009d6 
+ 00032348  0x00006aa8 iforce  0x00000012 
+ 00032349  0x00006aa9 fetch  0x00000003 , 0x000009da 
+ 00032350  0x00006aaa iforce  0x00000013 
+ 00032351  0x00006aab fetch  0x00000002 , 0x000009df 
+ 00032352  0x00006aac iforce  0x00000005 
+ 00032353  0x00006aad fetch  0x00000002 , 0x000009dd 
+ 00032354  0x00006aae iforce  0x00000006 
+ 00032355  0x00006aaf rtn 
+ 00032356  0x00006ab2 fetch  0x00000002 , 0x000009df 
+ 00032357  0x00006ab3 copy  0x0000003f , 0x00000005 
+ 00032358  0x00006ab4 rtn 
+ 00032359  0x00006ab6 fetch  0x00000002 , 0x000009dd 
+ 00032360  0x00006ab7 copy  0x0000003f , 0x00000006 
+ 00032361  0x00006ab8 rtn 
+ 00032362  0x00006aba copy  0x00000005 , 0x0000003f 
+ 00032363  0x00006abb store  0x00000002 , 0x000009df 
+ 00032364  0x00006abc rtn 
+ 00032365  0x00006abe copy  0x00000006 , 0x0000003f 
+ 00032366  0x00006abf store  0x00000002 , 0x000009dd 
+ 00032367  0x00006ac0 rtn 
+ 00032368  0x00006ac5 copy  0x00000005 , 0x0000003f 
+ 00032369  0x00006ac6 store  0x00000002 , 0x000009bb 
+ 00032370  0x00006ac7 copy  0x00000006 , 0x0000003f 
+ 00032371  0x00006ac8 store  0x00000002 , 0x000009b9 
+ 00032372  0x00006ac9 rtn 
+ 00032373  0x00006acb fetch  0x00000002 , 0x000009bb 
+ 00032374  0x00006acc copy  0x0000003f , 0x00000005 
+ 00032375  0x00006acd fetch  0x00000002 , 0x000009b9 
+ 00032376  0x00006ace copy  0x0000003f , 0x00000006 
+ 00032377  0x00006acf rtn 
+ 00032378  0x00006ad2 call  0x00007e85 
+ 00032379  0x00006ad4 call  0x00007e85 
+ 00032380  0x00006ad5 branch  0x00007e85 
+ 00032381  0x00006ad7 call  0x00007e81 
+ 00032382  0x00006ad9 ifetch  0x00000004 , 0x00000006 
+ 00032383  0x00006ada istore  0x00000004 , 0x00000005 
+ 00032384  0x00006adb rtn 
+ 00032385  0x00006add ifetch  0x00000008 , 0x00000006 
+ 00032386  0x00006ade istore  0x00000008 , 0x00000005 
+ 00032387  0x00006adf rtn 
+ 00032388  0x00006ae2 call  0x00007e87 
+ 00032389  0x00006ae4 call  0x00007e81 
+ 00032390  0x00006ae6 call  0x00007e81 
+ 00032391  0x00006ae8 call  0x00007e81 
+ 00032392  0x00006ae9 branch  0x00007e81 
+ 00032393  0x00006aee copy  0x00000022 , 0x0000003f 
+ 00032394  0x00006aef increase  0x00000010 , 0x0000003f 
+ 00032395  0x00006af0 increase  0x00000010 , 0x0000003f 
+ 00032396  0x00006af2 copy  0x00000022 , 0x00000002 
+ 00032397  0x00006af3 isub  0x00000002 , 0x0000003e 
+ 00032398  0x00006af4 branch  0x00007e8c , 0x00000002 
+ 00032399  0x00006af5 rtn 
+ 00032400  0x00006af8 force  0x00000003 , 0x00000039 
+ 00032401  0x00006afa force  0x00000000 , 0x0000003f 
+ 00032402  0x00006afc istore  0x00000008 , 0x00000005 
+ 00032403  0x00006afd loop  0x00007e92 
+ 00032404  0x00006afe rtn 
+ 00032405  0x00006b01 force  0x00000000 , 0x0000003f 
+ 00032406  0x00006b02 istore  0x00000008 , 0x00000005 
+ 00032407  0x00006b03 rtn 
+ 00032408  0x00006b05 force  0x00000000 , 0x0000003f 
+ 00032409  0x00006b06 istore  0x00000004 , 0x00000005 
+ 00032410  0x00006b07 rtn 
+ 00032411  0x00006b0a force  0x00000004 , 0x00000039 
+ 00032412  0x00006b0b branch  0x00007e91 
+ 00032413  0x00006b0d force  0x00000008 , 0x00000039 
+ 00032414  0x00006b0e branch  0x00007e91 
+ 00032415  0x00006b11 deposit  0x00000039 
+ 00032416  0x00006b12 rtn  0x00000034 
+ 00032417  0x00006b13 setarg  0x00000000 
+ 00032418  0x00006b15 istore  0x00000001 , 0x00000005 
+ 00032419  0x00006b16 loop  0x00007ea2 
+ 00032420  0x00006b17 rtn 
+ 00032421  0x00006b1b arg  0x00000020 , 0x00000039 
+ 00032422  0x00006b1c arg  0x000009e1 , 0x00000005 
+ 00032423  0x00006b1d branch  0x00007e9f 
+ 00032424  0x00006b20 ifetch  0x00000004 , 0x00000013 
+ 00032425  0x00006b21 ifetcht  0x00000004 , 0x00000011 
+ 00032426  0x00006b22 ixor  0x00000002 , 0x0000003f 
+ 00032427  0x00006b23 istore  0x00000004 , 0x00000005 
+ 00032428  0x00006b24 increase  0x00000004 , 0x00000011 
+ 00032429  0x00006b25 increase  0x00000004 , 0x00000013 
+ 00032430  0x00006b26 loop  0x00007ea8 
+ 00032431  0x00006b27 rtn 
+ 00032432  0x00006b2c set1  0x00000025 , 0x00000000 
+ 00032433  0x00006b2d bpatch  0x000000fa , 0x0000403f 
+ 00032434  0x00006b2e copy  0x00000039 , 0x0000003f 
+ 00032435  0x00006b2f sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00032436  0x00006b30 rtn  0x00000002 
+ 00032437  0x00006b31 iadd  0x00000011 , 0x00000012 
+ 00032438  0x00006b32 increase  0xffffffff , 0x00000012 
+ 00032439  0x00006b33 rshift  0x00000039 , 0x00000039 
+ 00032440  0x00006b35 ifetcht  0x00000001 , 0x00000011 
+ 00032441  0x00006b36 ifetch  0x00000001 , 0x00000012 
+ 00032442  0x00006b37 istore  0x00000001 , 0x00000011 
+ 00032443  0x00006b38 istoret  0x00000001 , 0x00000012 
+ 00032444  0x00006b39 increase  0xffffffff , 0x00000012 
+ 00032445  0x00006b3a increase  0x00000001 , 0x00000011 
+ 00032446  0x00006b3b loop  0x00007eb8 
+ 00032447  0x00006b3c rtn 
+ 00032448  0x00006b40 deposit  0x00000039 
+ 00032449  0x00006b41 rtn  0x00000034 
+ 00032450  0x00006b43 increase  0xfffffff8 , 0x00000039 
+ 00032451  0x00006b44 call  0x00007e81 , 0x00000002 
+ 00032452  0x00006b45 rtn  0x00000005 
+ 00032453  0x00006b46 branch  0x00007ec2 , 0x00000002 
+ 00032454  0x00006b47 increase  0x00000008 , 0x00000039 
+ 00032455  0x00006b49 increase  0xfffffffc , 0x00000039 
+ 00032456  0x00006b4a call  0x00007e7e , 0x00000002 
+ 00032457  0x00006b4b rtn  0x00000005 
+ 00032458  0x00006b4c branch  0x00007ec7 , 0x00000002 
+ 00032459  0x00006b4d increase  0x00000004 , 0x00000039 
+ 00032460  0x00006b4e branch  0x00007ecd 
+ 00032461  0x00006b51 deposit  0x00000039 
+ 00032462  0x00006b52 rtn  0x00000034 
+ 00032463  0x00006b54 ifetch  0x00000001 , 0x00000006 
+ 00032464  0x00006b55 istore  0x00000001 , 0x00000005 
+ 00032465  0x00006b56 loop  0x00007ecf 
+ 00032466  0x00006b57 rtn 
+ 00032467  0x00006b5a setarg  0x00000000 
+ 00032468  0x00006b5c rshift  0x00000022 , 0x00000002 
+ 00032469  0x00006b5d storet  0x00000004 , 0x00004134 
+ 00032470  0x00006b5e arg  0x0000423d , 0x00000005 
+ 00032471  0x00006b5f iforce  0x00000002 
+ 00032472  0x00006b60 lshift  0x00000007 , 0x0000003f 
+ 00032473  0x00006b61 iadd  0x00000005 , 0x00000005 
+ 00032474  0x00006b62 istoret  0x00000002 , 0x00000005 
+ 00032475  0x00006b63 set1  0x00000025 , 0x00000000 
+ 00032476  0x00006b64 bpatch  0x000000fb , 0x0000403f 
+ 00032477  0x00006b65 rtn 
+ 00032478  0x00006b68 arg  0x00000800 , 0x0000000b 
+ 00032479  0x00006b69 lshift16  0x0000000b , 0x0000000b 
+ 00032480  0x00006b6a iadd  0x0000000b , 0x0000003f 
+ 00032481  0x00006b6b rtn 
+ 00032482  0x00006b6f set1  0x00000025 , 0x00000000 
+ 00032483  0x00006b70 bpatch  0x000000fc , 0x0000403f 
+ 00032484  0x00006b71 fetcht  0x00000004 , 0x00004134 
+ 00032485  0x00006b72 rshift  0x00000022 , 0x0000003f 
+ 00032486  0x00006b73 store  0x00000004 , 0x00004134 
+ 00032487  0x00006b74 isub  0x00000002 , 0x0000003e 
+ 00032488  0x00006b75 ncall  0x00007ede , 0x00000002 
+ 00032489  0x00006b76 isub  0x00000002 , 0x0000000b 
+ 00032490  0x00006b77 copy  0x0000000b , 0x00000002 
+ 00032491  0x00006b78 arg  0x0000423d , 0x00000006 
+ 00032492  0x00006b79 copy  0x00000006 , 0x00000005 
+ 00032493  0x00006b7a arg  0x00000010 , 0x00000039 
+ 00032494  0x00006b7c ifetch  0x00000002 , 0x00000006 
+ 00032495  0x00006b7d isub  0x00000002 , 0x0000003f 
+ 00032496  0x00006b7e branch  0x00007ef2 , 0x00000002 
+ 00032497  0x00006b7f force  0x00000000 , 0x0000003f 
+ 00032498  0x00006b81 istore  0x00000002 , 0x00000005 
+ 00032499  0x00006b82 loop  0x00007eee 
+ 00032500  0x00006b83 arg  0x0000423d , 0x00000006 
+ 00032501  0x00006b84 lshift  0x00000007 , 0x0000003f 
+ 00032502  0x00006b85 iadd  0x00000006 , 0x00000006 
+ 00032503  0x00006b86 ifetch  0x00000002 , 0x00000006 
+ 00032504  0x00006b87 rtn 
+ 00032505  0x00006b8d iadd  0x00000002 , 0x00000002 
+ 00032506  0x00006b8e copy  0x00000002 , 0x00000039 
+ 00032507  0x00006b8f setarg  0x00000ea6 
+ 00032508  0x00006b90 isub  0x00000039 , 0x0000003f 
+ 00032509  0x00006b91 rtn  0x00000002 
+ 00032510  0x00006b92 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032511  0x00006b93 rshift16  0x00000002 , 0x00000002 
+ 00032512  0x00006b94 increase  0x00000001 , 0x00000002 
+ 00032513  0x00006b95 lshift16  0x00000002 , 0x00000002 
+ 00032514  0x00006b96 ior  0x00000002 , 0x00000002 
+ 00032515  0x00006b97 rtn 
+ 00032516  0x00006b9a call  0x00007f06 
+ 00032517  0x00006b9b branch  0x00007f10 
+ 00032518  0x00006b9f disable  0x00000028 
+ 00032519  0x00006ba0 isub  0x00000002 , 0x0000003f 
+ 00032520  0x00006ba1 branch  0x00007f0b , 0x00000002 
+ 00032521  0x00006ba2 enable  0x00000028 
+ 00032522  0x00006ba3 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032523  0x00006ba5 rtnbit0  0x0000000f 
+ 00032524  0x00006ba6 arg  0xffff0ea6 , 0x00000002 
+ 00032525  0x00006ba7 iadd  0x00000002 , 0x0000003f 
+ 00032526  0x00006ba8 set0  0x00000040 , 0x0000003f 
+ 00032527  0x00006ba9 rtn 
+ 00032528  0x00006bac iforce  0x00000006 
+ 00032529  0x00006bad rshift16  0x0000003f , 0x0000003f 
+ 00032530  0x00006bae arg  0x00000ea6 , 0x00000002 
+ 00032531  0x00006baf imul32  0x00000002 , 0x0000003f 
+ 00032532  0x00006bb0 iadd  0x00000006 , 0x0000003f 
+ 00032533  0x00006bb1 rtn 
+ 00032534  0x00006bb5 lshift8  0x0000003f , 0x0000003f 
+ 00032535  0x00006bb6 lshift4  0x0000003f , 0x0000003f 
+ 00032536  0x00006bb7 fetcht  0x00000003 , 0x0000420f 
+ 00032537  0x00006bb8 idiv  0x00000002 
+ 00032538  0x00006bb9 call  0x00007f53 
+ 00032539  0x00006bba quotient  0x00000002 
+ 00032540  0x00006bbb rtn 
+ 00032541  0x00006bbf arg  0x00000ea6 , 0x00000002 
+ 00032542  0x00006bc0 idiv  0x00000002 
+ 00032543  0x00006bc1 call  0x00007f53 
+ 00032544  0x00006bc2 quotient  0x0000003f 
+ 00032545  0x00006bc3 lshift16  0x0000003f , 0x0000003f 
+ 00032546  0x00006bc4 remainder  0x00000002 
+ 00032547  0x00006bc5 ior  0x00000002 , 0x00000002 
+ 00032548  0x00006bc6 rtn 
+ 00032549  0x00006bce arg  0x00000000 , 0x00000002 
+ 00032550  0x00006bd0 copy  0x00000002 , 0x00000013 
+ 00032551  0x00006bd1 ifetch  0x00000001 , 0x00000003 
+ 00032552  0x00006bd2 call  0x00007f31 
+ 00032553  0x00006bd3 copy  0x00000013 , 0x00000002 
+ 00032554  0x00006bd4 call  0x00007f62 
+ 00032555  0x00006bd5 arg  0x0000000a , 0x00000012 
+ 00032556  0x00006bd6 imul32  0x00000012 , 0x0000003f 
+ 00032557  0x00006bd7 iadd  0x00000002 , 0x0000003f 
+ 00032558  0x00006bd8 copy  0x0000003f , 0x00000002 
+ 00032559  0x00006bd9 loop  0x00007f26 
+ 00032560  0x00006bda rtn 
+ 00032561  0x00006bdf arg  0x0000003a , 0x00000002 
+ 00032562  0x00006be0 isub  0x00000002 , 0x0000003e 
+ 00032563  0x00006be1 nbranch  0x00007f3a , 0x00000002 
+ 00032564  0x00006be2 arg  0x00000061 , 0x00000002 
+ 00032565  0x00006be3 isub  0x00000002 , 0x0000003e 
+ 00032566  0x00006be4 branch  0x00007f3d , 0x00000002 
+ 00032567  0x00006be5 arg  0x00000037 , 0x00000002 
+ 00032568  0x00006be6 isub  0x00000002 , 0x0000003f 
+ 00032569  0x00006be7 rtn 
+ 00032570  0x00006be9 arg  0x00000030 , 0x00000002 
+ 00032571  0x00006bea isub  0x00000002 , 0x0000003f 
+ 00032572  0x00006beb rtn 
+ 00032573  0x00006bed arg  0x00000057 , 0x00000002 
+ 00032574  0x00006bee isub  0x00000002 , 0x0000003f 
+ 00032575  0x00006bef rtn 
+ 00032576  0x00006bf2 copy  0x00000002 , 0x00000030 
+ 00032577  0x00006bf3 setarg  0x000001ff 
+ 00032578  0x00006bf4 force  0x00000000 , 0x00000012 
+ 00032579  0x00006bf6 rshift3  0x0000003f , 0x00000011 
+ 00032580  0x00006bf7 rshift  0x00000011 , 0x00000011 
+ 00032581  0x00006bf8 ixor  0x00000011 , 0x00000011 
+ 00032582  0x00006bf9 isolate1  0x00000000 , 0x00000011 
+ 00032583  0x00006bfa setflag  0x00000001 , 0x00000009 , 0x0000003f 
+ 00032584  0x00006bfb rshift  0x00000002 , 0x00000002 
+ 00032585  0x00006bfc isolate1  0x00000000 , 0x0000003f 
+ 00032586  0x00006bfd setflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00032587  0x00006bfe rshift  0x0000003f , 0x0000003f 
+ 00032588  0x00006bff increase  0x00000001 , 0x00000012 
+ 00032589  0x00006c00 compare  0x00000000 , 0x00000012 , 0x00000007 
+ 00032590  0x00006c01 nbranch  0x00007f43 , 0x00000001 
+ 00032591  0x00006c02 istoret  0x00000001 , 0x00000005 
+ 00032592  0x00006c03 loop  0x00007f43 
+ 00032593  0x00006c04 copy  0x00000030 , 0x00000002 
+ 00032594  0x00006c05 rtn 
+ 00032595  0x00006c09 rtn  0x00000035 
+ 00032596  0x00006c0a branch  0x00007f53 
+ 00032597  0x00006c16 ifetch  0x00000001 , 0x00000011 
+ 00032598  0x00006c17 ifetcht  0x00000001 , 0x00000012 
+ 00032599  0x00006c18 isub  0x00000002 , 0x0000003e 
+ 00032600  0x00006c19 nrtn  0x00000005 
+ 00032601  0x00006c1a increase  0x00000001 , 0x00000011 
+ 00032602  0x00006c1b increase  0x00000001 , 0x00000012 
+ 00032603  0x00006c1c loop  0x00007f55 
+ 00032604  0x00006c1d force  0x00000000 , 0x0000003e 
+ 00032605  0x00006c1e rtn 
+ 00032606  0x00006c22 isub  0x00000002 , 0x0000003e 
+ 00032607  0x00006c23 nrtn  0x00000002 
+ 00032608  0x00006c24 deposit  0x00000002 
+ 00032609  0x00006c25 rtn 
+ 00032610  0x00006c28 iadd  0x00000002 , 0x0000003f 
+ 00032611  0x00006c29 isub  0x00000002 , 0x00000002 
+ 00032612  0x00006c2a isub  0x00000002 , 0x0000003f 
+ 00032613  0x00006c2b rtn 
+ 00032614  0x00006c2e arg  0x00000200 , 0x00000039 
+ 00032615  0x00006c2f arg  0x00004000 , 0x00000005 
+ 00032616  0x00006c30 branch  0x00007e91 
+ 00032617  0x00006c65 rtn  0x00000034 
+ 00032618  0x00006c66 copy  0x0000003f , 0x0000003d 
+ 00032619  0x00006c6a hfetch  0x00000002 , 0x0000810e 
+ 00032620  0x00006c6b nbranch  0x00007f6b , 0x00000034 
+ 00032621  0x00006c6c rtn 
+ 00032622  0x00006c6f hfetch  0x00000002 , 0x00008058 
+ 00032623  0x00006c70 copy  0x0000003f , 0x00000003 
+ 00032624  0x00006c71 rtn 
+ 00032625  0x00006c75 hjam  0x00000001 , 0x00008203 
+ 00032626  0x00006c76 rtn 
+ 00032627  0x00006c79 hstore  0x00000002 , 0x00008205 
+ 00032628  0x00006c7a hfetch  0x00000001 , 0x00008203 
+ 00032629  0x00006c7b set1  0x00000004 , 0x0000003f 
+ 00032630  0x00006c7c hstore  0x00000001 , 0x00008203 
+ 00032631  0x00006c7d rtn 
+ 00032632  0x00006c7f hstore  0x00000002 , 0x00008207 
+ 00032633  0x00006c80 hfetch  0x00000001 , 0x00008203 
+ 00032634  0x00006c81 set1  0x00000006 , 0x0000003f 
+ 00032635  0x00006c82 hstore  0x00000001 , 0x00008203 
+ 00032636  0x00006c83 rtn 
+ 00032637  0x00006c86 hstore  0x00000002 , 0x00008205 
+ 00032638  0x00006c87 hjam  0x00000030 , 0x00008203 
+ 00032639  0x00006c88 rtn 
+ 00032640  0x00006c8d hfetch  0x00000001 , 0x00008043 
+ 00032641  0x00006c8e set0  0x00000004 , 0x0000003f 
+ 00032642  0x00006c8f hstore  0x00000001 , 0x00008043 
+ 00032643  0x00006c90 rtn 
+ 00032644  0x00006c93 hfetch  0x00000002 , 0x0000810e 
+ 00032645  0x00006c94 arg  0x00000200 , 0x00000002 
+ 00032646  0x00006c96 isub  0x00000002 , 0x0000003e 
+ 00032647  0x00006c97 rtn 
+ 00032648  0x00006c9e set1  0x00000025 , 0x00000000 
+ 00032649  0x00006c9f bpatch  0x000000fd , 0x0000403f 
+ 00032650  0x00006ca0 ifetcht  0x00000008 , 0x00000011 
+ 00032651  0x00006ca1 and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00032652  0x00006ca2 nbranch  0x00007f8f , 0x00000034 
+ 00032653  0x00006ca3 rshift8  0x00000002 , 0x0000003f 
+ 00032654  0x00006ca4 istore  0x00000008 , 0x00000011 
+ 00032655  0x00006ca6 increase  0x00000007 , 0x00000011 
+ 00032656  0x00006ca7 ifetch  0x00000001 , 0x00000011 
+ 00032657  0x00006ca8 nbranch  0x00003b31 , 0x00000034 
+ 00032658  0x00006ca9 fetch  0x00000001 , 0x000009bd 
+ 00032659  0x00006caa istore  0x00000001 , 0x00000011 
+ 00032660  0x00006cab rtn 
+ 00032661  0x00006cb1 set1  0x00000025 , 0x00000000 
+ 00032662  0x00006cb2 bpatch  0x000000fe , 0x0000403f 
+ 00032663  0x00006cb3 arg  0x00000008 , 0x00000039 
+ 00032664  0x00006cb4 ifetch  0x00000008 , 0x00000011 
+ 00032665  0x00006cb5 rtn  0x00000034 
+ 00032666  0x00006cb7 ifetch  0x00000001 , 0x00000011 
+ 00032667  0x00006cb8 nbranch  0x00007f9f , 0x00000034 
+ 00032668  0x00006cb9 increase  0x00000001 , 0x00000011 
+ 00032669  0x00006cba loop  0x00007f9a 
+ 00032670  0x00006cbb branch  0x00003b31 
+ 00032671  0x00006cbd arg  0x00000000 , 0x00000002 
+ 00032672  0x00006cbe istoret  0x00000001 , 0x00000011 
+ 00032673  0x00006cbf rtn 
+ 00032674  0x00006cc5 ifetch  0x00000008 , 0x00000011 
+ 00032675  0x00006cc6 rtn 
+ 00032676  0x00006ccc ifetch  0x00000001 , 0x00000011 
+ 00032677  0x00006ccd rtn 
+ 00032678  0x00006cd1 ifetch  0x00000002 , 0x00000011 
+ 00032679  0x00006cd2 rtn 
+ 00032680  0x00006cd7 arg  0x00000000 , 0x00000002 
+ 00032681  0x00006cd9 fetch  0x00000001 , 0x00000006 
+ 00032682  0x00006cda loop  0x00007fa9 , 0x00000034 
+ 00032683  0x00006cdb increase  0x00000001 , 0x00000002 
+ 00032684  0x00006cdc loop  0x00007fa9 
+ 00032685  0x00006cdd copy  0x00000002 , 0x0000003f 
+ 00032686  0x00006cde rtn 
+ 00032687  0x00006ce1 isub  0x00000002 , 0x0000003e 
+ 00032688  0x00006ce2 nrtn  0x00000002 
+ 00032689  0x00006ce3 copy  0x00000002 , 0x0000003f 
+ 00032690  0x00006ce4 rtn 
Index: ble fast connect receive/output/bt_program23.list
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.list	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.list	(working copy)
@@ -0,0 +1,24026 @@
+              include "bt_format "
+              org 0x0000
+0x0000 000040 bmark1 mark_ext_patch ,patch_ext 
+0x0001 000041 beq patch00_3 ,p_main_loop 
+0x0002 000042 beq patch10_6 ,p_shutdown_radio 
+0x0003 000043 beq patch11_2 ,p_set_freq_tx 
+0x0004 000044 beq patch11_3 ,p_initialize_radio_cont 
+0x0005 000045 beq patch16_4 ,p_app_init 
+0x0006 000046 branch assert 
+:      000048 patch_ext:
+0x0007 000049 beq patch20_3 ,p_le_master_dispatch_end 
+0x0008 000050 beq patch23_1 ,p_le_transmit 
+0x0009 000051 beq patch25_3 ,p_le_scan 
+0x000a 000052 beq patch25_6 ,p_le_conn 
+0x000b 000053 beq patch26_2 ,p_le_prepare_smp1 
+0x000c 000054 beq patch26_3 ,p_le_prepare_att 
+0x000d 000055 beq patch27_6 ,p_le_parse_att 
+0x000e 000056 beq patch32_5 ,p_gpio_set_before_lpm_common 
+0x000f 000057 beq patch3b_0 ,p_shutter_init_end 
+0x0010 000058 beq patch3b_1 ,p_shutter_le_bb_event_100ms_loop 
+0x0011 000059 beq patch3b_4 ,p_shutter_le_key_process 
+0x0012 000060 beq patch3e_7 ,p_check_51cmd_once 
+0x0013 000061 branch assert 
+:      000063 p_main_loop:
+0x0014 000064 arg uart_rx_timer ,queue 
+0x0015 000065 call timer_check 
+0x0016 000066 ncall p_main_loop_next ,blank 
+0x0017 000067 call p_uart_send_data_timer_init 
+0x0018 000068 call p_le_parse_att 
+:      000069 p_main_loop_next:
+0x0019 000070 branch main_loop + 2 
+:      000072 p_uart_send_data_timer_init:
+0x001a 000073 setarg timer_uart_send_data_delay 
+0x001b 000074 arg uart_rx_timer ,queue 
+0x001c 000075 branch timer_init 
+:      000077 p_le_prepare_smp1:
+0x001d 000078 fetch 1 ,mem_le_l2cap 
+:      000079 p_le_prepare_smp0:
+0x001e 000080 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x001f 000081 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0x0020 000082 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x0021 000083 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x0022 000084 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x0023 000085 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x0024 000086 beq smp_master_identification ,le_send_smp_master_identification 
+0x0025 000087 beq smp_identity_information ,le_send_smp_identity_information 
+0x0026 000088 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x0027 000089 beq smp_signing_information ,le_send_smp_signing_information 
+0x0028 000090 beq smp_security_request ,le_send_smp_security_request 
+0x0029 000091 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+0x002a 000092 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+0x002b 000093 branch assert 
+:      000095 p_le_send_smp_pairing_response:
+0x002c 000096 setarg param_smp_paring_response 
+0x002d 000097 store 4 ,mem_le_pres 
+0x002e 000098 setarg param_smp_key_dist2 
+0x002f 000099 istore 3 ,contw 
+0x0030 000100 fetch 6 ,mem_le_pres + 1 
+0x0031 000101 store 6 ,mem_le_l2cap_response 
+0x0032 000102 force 11 ,temp 
+0x0033 000103 branch le_send_packet 
+:      000104 p_app_init:
+0x0034 000105 fetch 1 ,mem_device_option 
+0x0035 000106 branch app_init ,blank 
+0x0036 000110 beq dvc_op_kb ,kb_init 
+0x0037 000111 beq dvc_op_shutter ,p_shutter_init 
+0x0038 000112 beq dvc_op_module ,module_init 
+0x0039 000114 bbit1 dvc_op_mouse ,mouse_init 
+0x003a 000115 bbit1 dvc_op_keyboard ,kb_init 
+0x003b 000116 rtn 
+:      000118 p_shutter_init:
+0x003c 000119 rtn wake 
+0x003d 000120 call init_shutter_le_att_list 
+0x003e 000121 arg 135 ,loopcnt 
+0x003f 000122 arg mem_shutter_le_att_list + 230 ,contw 
+0x0040 000123 arg mem_shutter_att_list_patch ,contr 
+0x0041 000124 call memcpy 
+0x0042 000125 call shutter_init_param 
+0x0043 000127 hjam 0x00 ,core_gpio_sel1 
+0x0044 000128 call shutter_key_init 
+0x0045 000130 setarg shutter_le_before_hibernate 
+0x0046 000131 store 2 ,mem_cb_before_hibernate 
+0x0047 000133 setarg shutter_le_process_lpm_before 
+0x0048 000134 store 2 ,mem_cb_before_lpm 
+0x0049 000136 setarg shutter_le_discovery_timeout_sleep 
+0x004a 000137 store 2 ,mem_cb_discovry_timeout 
+0x004b 000139 setarg scale_process_idle 
+0x004c 000140 store 2 ,mem_cb_idle_process 
+0x004d 000142 setarg scale_process 
+0x004e 000143 store 2 ,mem_cb_le_process 
+0x004f 000145 setarg p_scale_process_bb_event 
+0x0050 000146 store 2 ,mem_cb_bb_event_process 
+0x0051 000148 call p_shutter_uart_init 
+0x0052 000150 setarg shutter_le_scale_lpm_lock 
+0x0053 000151 store 2 ,mem_cb_check_wakelock 
+0x0054 000152 setarg shutter_le_receive_data 
+0x0055 000153 store 2 ,mem_cb_att_write 
+0x0056 000154 call p_shutter_le_queue_init 
+0x0057 000155 jam 0 ,mem_lpm_mult 
+0x0058 000156 jam 0 ,mem_shutter_conn_update_timer 
+0x0059 000157 branch shutter_init0 + 5 
+:      000159 p_shutter_init_end:
+0x005a 000160 fetch 1 ,mem_hard_soft_switch_case 
+0x005b 000161 beq hard_switch ,p_shutter_le_hard_switch_power_on_signal 
+0x005c 000162 branch shutter_init0 + 9 
+:      000164 p_shutter_le_hard_switch_power_on_signal:
+0x005d 000166 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x005e 000167 jam 1 ,mem_enable_key_scan 
+0x005f 000168 call shutter_ui_led_init 
+0x0060 000169 setarg mem_power_on_led_style 
+0x0061 000170 call shutter_ui_led_send 
+:      000171 p_in_poweron_hard_switch_led:
+0x0062 000172 call ui_led_blink_polling 
+0x0063 000173 fetch 1 ,mem_led_blink_count 
+0x0064 000174 nbranch p_in_poweron_hard_switch_led ,blank 
+:      000175 p_shutter_le_soft_switch_power_on_signal:
+0x0065 000176 jam on ,mem_le_scan_enable 
+0x0066 000177 setarg 0 
+0x0067 000178 store 4 ,mem_shutter_send_data 
+0x0068 000179 call shutter_ui_led_init 
+0x0069 000182 fetch 2 ,mem_le_sleep_timeout 
+0x006a 000183 store 2 ,mem_le_sleep_timeout_timer_count 
+0x006b 000184 branch p_shutter_le_fast_scan 
+:      000187 p_shutter_le_fast_scan:
+0x006c 000188 fetch 2 ,mem_le_sleep_timeout 
+0x006d 000189 store 2 ,mem_le_sleep_timeout_timer_count 
+0x006e 000190 jam 0 ,mem_shutter_key_data_flag_1 
+0x006f 000191 jam on ,mem_le_scan_enable 
+0x0070 000192 setarg mem_fast_adv_led_style 
+0x0071 000193 branch shutter_ui_led_send 
+:      000195 p_le_scan:
+0x0072 000196 fetch 6 ,mem_le_rxbuf + 2 
+0x0073 000197 store 6 ,mem_le_plap 
+0x0074 000198 fetch 6 ,mem_le_plap 
+0x0075 000201 fetcht 6 ,mem_le_conn_peer_addr 
+0x0076 000202 isub temp ,null 
+0x0077 000203 branch le_create_conn ,zero 
+0x0078 000204 branch p_le_addr_compare 
+:      000206 p_le_addr_compare:
+0x0079 000207 fetch 6 ,mem_le_plap 
+0x007a 000210 fetcht 6 ,mem_le_slave_peer_addr 
+0x007b 000211 isub temp ,null 
+0x007c 000212 nrtn zero 
+0x007d 000213 fetch 6 ,mem_le_plap 
+0x007e 000214 store 6 ,mem_app_peer_addr 
+0x007f 000215 jam 28 ,mem_le_conn_interval 
+0x0080 000216 setarg 0x100 
+0x0081 000217 store 2 ,mem_le_conn_superto 
+0x0082 000218 jam off ,mem_le_scan_enable 
+0x0083 000219 jam 1 ,mem_le_conn_state 
+0x0084 000220 branch app_ble_start_conn 
+:      000222 p_check_51cmd_once:
+0x0085 000223 call ui_ipc_get_lock 
+0x0086 000224 arg mem_ipc_fifo_c512bt ,rega 
+0x0087 000225 call fifo_out 
+0x0088 000226 copy pdata ,temp 
+0x0089 000227 call ui_ipc_put_lock 
+0x008a 000228 copy temp ,pdata 
+0x008b 000229 rtn blank 
+0x008c 000230 beq bt_cmd_le_start_conn ,p_check_51cmd_le_start_con 
+0x008d 000231 branch check_51cmd_once + 9 
+:      000232 p_check_51cmd_le_start_con:
+0x008e 000233 jam on ,mem_le_scan_enable 
+0x008f 000234 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x0090 000235 fetch 6 ,mem_app_peer_addr 
+0x0091 000236 store 6 ,mem_le_conn_peer_addr 
+0x0092 000237 rtn 
+:      000239 p_le_parse_att:
+0x0093 000240 ifetch 3 ,contr 
+0x0094 000241 store 3 ,mem_le_att_opcode 
+0x0095 000242 beq attop_write_response ,p_le_parse_att_write_response 
+0x0096 000243 beq attop_handle_value_notification ,p_le_parse_att_handle_value_notify 
+0x0097 000244 rtn 
+:      000246 p_le_parse_att_handle_value_notify:
+0x0098 000247 branch p_shutter_uart_tx_prepare 
+:      000250 p_le_parse_att_write_response:
+0x0099 000251 fetch 1 ,mem_le_send_write_request_count 
+0x009a 000252 rtn blank 
+0x009b 000253 increase -1 ,pdata 
+0x009c 000254 store 1 ,mem_le_send_write_request_count 
+0x009d 000255 beq 1 ,p_le_att_send_write_request1 
+0x009e 000256 beq 0 ,p_le_att_send_write_request0 
+0x009f 000257 rtn 
+:      000259 p_le_att_send_write_request1:
+0x00a0 000260 setarg 0x27 
+0x00a1 000261 store 2 ,mem_le_notify_handle 
+0x00a2 000262 jam 2 ,mem_le_handle_data_len 
+0x00a3 000263 setarg 0x0001 
+0x00a4 000264 store 2 ,mem_le_handle_data 
+0x00a5 000265 jam 0 ,mem_le_conn_sm 
+0x00a6 000267 jam 1 ,mem_le_work_data_send_flag 
+0x00a7 000268 jam attop_write_request ,mem_fifo_temp 
+0x00a8 000269 branch le_xtype_fifo_in 
+:      000270 p_le_att_send_write_request0:
+0x00a9 000271 setarg 0x60 
+0x00aa 000272 store 2 ,mem_le_notify_handle 
+0x00ab 000273 jam 2 ,mem_le_handle_data_len 
+0x00ac 000274 setarg 0x0001 
+0x00ad 000275 store 2 ,mem_le_handle_data 
+0x00ae 000276 jam 0 ,mem_le_conn_sm 
+0x00af 000278 jam 1 ,mem_le_work_data_send_flag 
+0x00b0 000279 jam attop_write_request ,mem_fifo_temp 
+0x00b1 000280 branch le_xtype_fifo_in 
+:      000283 p_le_prepare_att:
+0x00b2 000284 fetch 1 ,mem_le_l2cap 
+0x00b3 000285 beq attop_write_request ,p_le_send_att_write_request 
+0x00b4 000286 branch le_prepare_att + 5 
+:      000288 p_le_send_att_write_request:
+:      000307 p_le_send_att_write_request_end:
+0x00b5 000308 fetch 2 ,mem_le_notify_handle 
+0x00b6 000309 store 2 ,mem_le_l2cap_response 
+0x00b7 000310 fetch 1 ,mem_le_handle_data_len 
+0x00b8 000311 copy pdata ,loopcnt 
+0x00b9 000312 arg mem_le_handle_data ,contr 
+0x00ba 000313 call memcpy 
+0x00bb 000314 branch le_send_autolen 
+:      000317 p_scale_process_bb_event:
+0x00bc 000318 copy regc ,pdata 
+0x00bd 000320 beq bt_evt_button_up ,shutter_bb_event_button_up 
+0x00be 000321 beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+0x00bf 000322 beq bt_evt_le_connected ,scale_process_le_conn 
+0x00c0 000323 beq bt_evt_le_disconnected ,p_scale_process_le_discon 
+0x00c1 000324 and pdata ,0x0f ,temp 
+0x00c2 000325 and_into bt_evt_timer_mask ,pdata 
+0x00c3 000326 beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+0x00c4 000327 rtn 
+:      000329 p_le_conn:
+0x00c5 000330 fetch 2 ,mem_le_sleep_conn_timeout 
+0x00c6 000331 store 2 ,mem_le_sleep_timeout_timer_count 
+0x00c7 000332 setarg mem_connected_led_style 
+0x00c8 000333 call shutter_ui_led_send 
+0x00c9 000334 jam 1 ,mem_le_conn_state 
+0x00ca 000336 jam 1 ,mem_enable_key_scan 
+0x00cb 000337 jam conn_sm_send_write_req ,mem_le_conn_sm 
+0x00cc 000338 call le_create_conn + 14 
+0x00cd 000339 rtn 
+:      000341 p_le_master_dispatch_end:
+0x00ce 000342 fetch 1 ,mem_le_conn_rcv 
+0x00cf 000343 increase 1 ,pdata 
+0x00d0 000344 store 1 ,mem_le_conn_rcv 
+0x00d1 000345 call le_acknowledge 
+0x00d2 000346 call p_le_master_sm 
+0x00d3 000347 disable master 
+0x00d4 000348 rtn 
+:      000351 p_le_master_sm:
+0x00d5 000352 fetch 1 ,mem_le_conn_sm 
+0x00d6 000353 beq conn_sm_send_write_req ,p_le_data_send_write_req 
+0x00d7 000354 beq conn_sm_wait_write_res ,p_le_data_wait_write_res 
+0x00d8 000355 beq conn_sm_wait_write_res1 ,p_le_data_wait_write_res1 
+0x00d9 000356 rtn 
+:      000358 p_le_data_send_write_req:
+0x00da 000359 setarg 0x1a 
+0x00db 000360 store 2 ,mem_le_notify_handle 
+0x00dc 000361 jam 2 ,mem_le_handle_data_len 
+0x00dd 000362 setarg 0x0001 
+0x00de 000363 store 2 ,mem_le_handle_data 
+0x00df 000364 jam 0 ,mem_le_conn_sm 
+0x00e0 000366 jam 1 ,mem_le_work_data_send_flag 
+0x00e1 000367 jam attop_write_request ,mem_fifo_temp 
+0x00e2 000368 call le_xtype_fifo_in 
+0x00e3 000369 rtn 
+:      000371 p_le_data_wait_write_res:
+0x00e4 000372 jam conn_sm_wait_write_res1 ,mem_le_conn_sm 
+0x00e5 000373 jam attop_exchange_mtu_request ,mem_fifo_temp 
+0x00e6 000374 call le_xtype_fifo_in 
+0x00e7 000375 fetch 2 ,mem_ui_state_map 
+0x00e8 000376 set1 ui_state_ble_connected ,pdata 
+0x00e9 000377 store 2 ,mem_ui_state_map 
+0x00ea 000378 rtn 
+:      000380 p_le_data_wait_write_res1:
+0x00eb 000381 rtn 
+:      000383 p_scale_process_le_discon:
+0x00ec 000386 setarg 0 
+0x00ed 000387 store 6 ,mem_le_conn_peer_addr 
+0x00ee 000388 jam 2 ,mem_le_send_write_request_count 
+0x00ef 000389 jam 0 ,mem_le_conn_state 
+0x00f0 000390 jam 0 ,mem_lpm_mult 
+0x00f1 000391 jam 0 ,mem_shutter_conn_update_timer 
+0x00f2 000392 jam 0 ,mem_ltk_exists 
+0x00f3 000393 jam default_states ,mem_ltk_states 
+0x00f4 000394 jam 0 ,mem_shutter_find_type_value_flag 
+0x00f5 000395 call p_shutter_le_queue_clear 
+0x00f6 000396 fetch 2 ,mem_le_sleep_timeout 
+0x00f7 000397 store 2 ,mem_le_sleep_timeout_timer_count 
+0x00f8 000398 fetch 1 ,mem_le_sleep_flag 
+0x00f9 000399 bne 0 ,shutter_le_sleep_enter 
+0x00fa 000400 call p_shutter_le_fast_scan 
+0x00fb 000401 jam pair_unknown ,mem_pair_state 
+0x00fc 000402 setarg 0 
+0x00fd 000403 store 2 ,mem_l2cap_rxbuff1_len 
+0x00fe 000404 setarg 0 
+0x00ff 000405 store 2 ,mem_l2cap_rxbuff2_len 
+0x0100 000406 branch shutter_le_tx_buff_unuse 
+:      000408 p_shutter_le_queue_init:
+0x0101 000409 jam 0 ,mem_queue_ele_num_patch 
+0x0102 000410 setarg mem_queue_start_patch 
+0x0103 000411 store 2 ,mem_queue_read_patch 
+0x0104 000412 store 2 ,mem_queue_write_patch 
+0x0105 000413 rtn 
+:      000416 p_shutter_le_queue_clear:
+0x0106 000417 branch p_shutter_le_queue_init 
+:      000421 p_shutter_le_queue_put:
+0x0107 000422 disable user 
+0x0108 000423 fetch 1 ,mem_queue_ele_num_patch 
+0x0109 000424 compare queue_ele_count_patch ,pdata ,0xff 
+0x010a 000425 rtn true 
+0x010b 000427 enable user 
+0x010c 000428 fetch 2 ,mem_queue_write_patch 
+0x010d 000429 copy pdata ,contw 
+0x010e 000430 copy temp ,contr 
+0x010f 000431 call memcpy 
+0x0110 000433 fetch 1 ,mem_queue_ele_num_patch 
+0x0111 000434 increase 1 ,pdata 
+0x0112 000435 store 1 ,mem_queue_ele_num_patch 
+0x0113 000437 setarg mem_queue_write_patch 
+0x0114 000438 branch p_shutter_le_queue_increase 
+:      000441 p_shutter_le_queue_increase:
+0x0115 000442 copy pdata ,rega 
+0x0116 000443 arg mem_queue_end_patch ,temp 
+0x0117 000444 ifetch 2 ,rega 
+0x0118 000445 increase queue_ele_length_patch ,pdata 
+0x0119 000446 isub temp ,null 
+0x011a 000447 nbranch p_shutter_le_queue_put_end ,positive 
+0x011b 000448 setarg mem_queue_start_patch 
+:      000449 p_shutter_le_queue_put_end:
+0x011c 000450 istore 2 ,rega 
+0x011d 000451 rtn 
+:      000455 p_shutter_le_queue_get:
+0x011e 000456 disable user 
+0x011f 000457 fetch 1 ,mem_queue_ele_num_patch 
+0x0120 000458 rtn blank 
+0x0121 000459 enable user 
+0x0122 000460 fetch 1 ,mem_queue_ele_num_patch 
+0x0123 000461 increase -1 ,pdata 
+0x0124 000462 store 1 ,mem_queue_ele_num_patch 
+0x0125 000464 fetch 2 ,mem_queue_read_patch 
+0x0126 000465 store 2 ,mem_queue_temp_patch 
+0x0127 000467 setarg mem_queue_read_patch 
+0x0128 000468 call p_shutter_le_queue_increase 
+0x0129 000469 fetch 2 ,mem_queue_temp_patch 
+0x012a 000470 rtn 
+:      000472 p_shutter_le_queue_read_point:
+0x012b 000473 disable user 
+0x012c 000474 fetch 1 ,mem_queue_ele_num_patch 
+0x012d 000475 rtn blank 
+0x012e 000476 enable user 
+0x012f 000477 fetch 2 ,mem_queue_read_patch 
+0x0130 000478 rtn 
+:      000480 p_shutter_le_key_process:
+0x0131 000481 fetch 1 ,mem_shutter_key_num 
+0x0132 000482 rtn blank 
+0x0133 000483 call shutter_shutter_scan_key 
+0x0134 000484 nbranch lpm_button_clean_wake_lock ,user 
+0x0135 000485 call lpm_button_get_wake_lock 
+0x0136 000486 disable user 
+0x0137 000487 fetch 2 ,mem_le_sleep_conn_timeout 
+0x0138 000488 store 2 ,mem_le_sleep_timeout_timer_count 
+0x0139 000491 fetch 1 ,mem_le_conn_state 
+0x013a 000492 beq 0 ,p_shutter_le_fast_scan 
+0x013b 000493 call shutter_shutter_cancel_key_shake 
+0x013c 000494 branch p_in_le_key_process_end ,positive 
+0x013d 000495 fetch 2 ,mem_key_value_temp 
+0x013e 000496 store 2 ,mem_key_value_temp4 
+0x013f 000497 jam 0 ,mem_key_value_temp6 
+0x0140 000498 force 0 ,queue 
+:      000500 p_shutter_le_key_lp1:
+0x0141 000501 fetch 2 ,mem_key_value 
+0x0142 000502 rshift pdata ,temp 
+0x0143 000503 storet 2 ,mem_key_value 
+0x0144 000504 and pdata ,0x01 ,pdata 
+0x0145 000505 fetcht 2 ,mem_key_value_temp4 
+0x0146 000506 and temp ,0x01 ,rega 
+0x0147 000507 rshift temp ,temp 
+0x0148 000508 storet 2 ,mem_key_value_temp4 
+0x0149 000509 ixor rega ,null 
+0x014a 000510 ncall p_shutter_le_send_key_data ,zero 
+0x014b 000511 fetch 1 ,mem_shutter_key_num 
+0x014c 000512 fetcht 1 ,mem_key_value_temp6 
+0x014d 000513 increase 1 ,temp 
+0x014e 000514 storet 1 ,mem_key_value_temp6 
+0x014f 000515 copy temp ,queue 
+0x0150 000516 ixor queue ,null 
+0x0151 000518 nbranch p_shutter_le_key_lp1 ,zero 
+0x0152 000519 fetch 2 ,mem_key_value_temp 
+0x0153 000520 store 2 ,mem_key_value 
+0x0154 000521 rtn 
+:      000522 p_in_le_key_process_end:
+0x0155 000523 setarg 0 
+0x0156 000524 store 2 ,mem_key_value_temp 
+0x0157 000525 store 2 ,mem_key_value 
+0x0158 000526 rtn 
+:      000530 p_shutter_le_send_key_data:
+0x0159 000532 deposit rega 
+0x015a 000533 branch p_in_le_key_is_release ,blank 
+0x015b 000534 copy queue ,pdata 
+0x015c 000535 beq 0 ,p_in_le_send_key0_press 
+0x015d 000536 beq 1 ,p_in_le_send_key1_press 
+0x015e 000537 beq 2 ,p_in_le_send_key2_press 
+0x015f 000538 beq 3 ,p_in_le_send_key3_press 
+:      000539 p_in_le_send_lable:
+0x0160 000540 ifetch 1 ,temp 
+0x0161 000541 rtn blank 
+0x0162 000542 store 1 ,mem_key_packet_count 
+0x0163 000543 increase 1 ,temp 
+0x0164 000544 storet 2 ,mem_key_next_addr 
+:      000545 p_in_le_send_lp1:
+0x0165 000546 fetch 2 ,mem_key_next_addr 
+0x0166 000547 ifetcht 1 ,pdata 
+0x0167 000548 copy temp ,loopcnt 
+0x0168 000549 iadd temp ,temp 
+0x0169 000550 storet 2 ,mem_key_next_addr 
+0x016a 000551 copy pdata ,temp 
+0x016b 000552 call p_shutter_le_queue_put 
+0x016c 000553 fetch 1 ,mem_key_packet_count 
+0x016d 000554 increase -1 ,pdata 
+0x016e 000555 store 1 ,mem_key_packet_count 
+0x016f 000556 nbranch p_in_le_send_lp1 ,zero 
+0x0170 000557 branch p_le_send_packet 
+:      000559 p_le_send_packet:
+0x0171 000560 call p_shutter_le_queue_read_point 
+0x0172 000561 nrtn user 
+0x0173 000562 disable user 
+0x0174 000564 jam attop_write_request ,mem_fifo_temp 
+0x0175 000565 call le_xtype_fifo_in 
+0x0176 000566 branch shutter_le_tx_buff_inuse 
+:      000569 p_in_le_key_is_release:
+0x0177 000570 copy queue ,pdata 
+0x0178 000571 beq 0 ,p_in_le_send_key0_rel 
+0x0179 000572 beq 1 ,p_in_le_send_key1_rel 
+0x017a 000573 beq 2 ,p_in_le_send_key2_rel 
+0x017b 000574 beq 3 ,p_in_le_send_key3_rel 
+0x017c 000575 branch p_in_le_send_lable 
+:      000577 p_in_le_send_key0_press:
+0x017d 000578 jam 0x01 ,mem_le_car_write_cmd_control + 1 
+0x017e 000579 arg mem_le_car_write_cmd_data1 ,contr 
+0x017f 000580 arg 7 ,loopcnt 
+0x0180 000581 call p_calc_check_sum_start 
+0x0181 000582 store 1 ,mem_le_car_write_cmd_check_sum 
+0x0182 000583 arg mem_le_car_write_cmd_data ,temp 
+0x0183 000584 branch p_in_le_send_lable 
+:      000585 p_in_le_send_key1_press:
+0x0184 000586 jam 0x02 ,mem_le_car_write_cmd_control + 1 
+0x0185 000587 arg mem_le_car_write_cmd_data1 ,contr 
+0x0186 000588 arg 7 ,loopcnt 
+0x0187 000589 call p_calc_check_sum_start 
+0x0188 000590 store 1 ,mem_le_car_write_cmd_check_sum 
+0x0189 000591 arg mem_le_car_write_cmd_data ,temp 
+0x018a 000592 branch p_in_le_send_lable 
+:      000593 p_in_le_send_key2_press:
+0x018b 000594 jam 0x01 ,mem_le_car_write_cmd_control 
+0x018c 000595 arg mem_le_car_write_cmd_data1 ,contr 
+0x018d 000596 arg 7 ,loopcnt 
+0x018e 000597 call p_calc_check_sum_start 
+0x018f 000598 store 1 ,mem_le_car_write_cmd_check_sum 
+0x0190 000599 arg mem_le_car_write_cmd_data ,temp 
+0x0191 000600 branch p_in_le_send_lable 
+:      000601 p_in_le_send_key3_press:
+0x0192 000602 jam 0x02 ,mem_le_car_write_cmd_control 
+0x0193 000603 arg mem_le_car_write_cmd_data1 ,contr 
+0x0194 000604 arg 7 ,loopcnt 
+0x0195 000605 call p_calc_check_sum_start 
+0x0196 000606 store 1 ,mem_le_car_write_cmd_check_sum 
+0x0197 000607 arg mem_le_car_write_cmd_data ,temp 
+0x0198 000608 branch p_in_le_send_lable 
+:      000610 p_in_le_send_key0_rel:
+0x0199 000611 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+0x019a 000612 arg mem_le_car_write_cmd_data1 ,contr 
+0x019b 000613 arg 7 ,loopcnt 
+0x019c 000614 call p_calc_check_sum_start 
+0x019d 000615 store 1 ,mem_le_car_write_cmd_check_sum 
+0x019e 000616 arg mem_le_car_write_cmd_data ,temp 
+0x019f 000617 branch p_in_le_send_lable 
+:      000618 p_in_le_send_key1_rel:
+0x01a0 000619 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+0x01a1 000620 arg mem_le_car_write_cmd_data1 ,contr 
+0x01a2 000621 arg 7 ,loopcnt 
+0x01a3 000622 call p_calc_check_sum_start 
+0x01a4 000623 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01a5 000624 arg mem_le_car_write_cmd_data ,temp 
+0x01a6 000625 branch p_in_le_send_lable 
+:      000626 p_in_le_send_key2_rel:
+0x01a7 000627 jam 0x00 ,mem_le_car_write_cmd_control 
+0x01a8 000628 arg mem_le_car_write_cmd_data1 ,contr 
+0x01a9 000629 arg 7 ,loopcnt 
+0x01aa 000630 call p_calc_check_sum_start 
+0x01ab 000631 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01ac 000632 arg mem_le_car_write_cmd_data ,temp 
+0x01ad 000633 branch p_in_le_send_lable 
+:      000634 p_in_le_send_key3_rel:
+0x01ae 000635 jam 0x00 ,mem_le_car_write_cmd_control 
+0x01af 000636 arg mem_le_car_write_cmd_data1 ,contr 
+0x01b0 000637 arg 7 ,loopcnt 
+0x01b1 000638 call p_calc_check_sum_start 
+0x01b2 000639 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01b3 000640 arg mem_le_car_write_cmd_data ,temp 
+0x01b4 000641 branch p_in_le_send_lable 
+:      000645 p_calc_check_sum_start:
+0x01b5 000646 arg 0 ,rega 
+:      000647 p_calc_check_sum_loop:
+0x01b6 000648 ifetch 1 ,contr 
+0x01b7 000649 iadd rega ,rega 
+0x01b8 000650 loop p_calc_check_sum_loop 
+:      000651 p_calc_check_sum_and:
+0x01b9 000652 and rega ,0xff ,pdata 
+0x01ba 000653 rtn 
+:      000656 p_shutter_le_bb_event_100ms_loop:
+0x01bb 000658 call shutter_le_shutter_fast_adv_timer 
+0x01bc 000662 call shutter_app_updata_le_param_timer 
+0x01bd 000664 branch shutter_le_bb_event_100ms_loop 
+:      000666 p_shutter_ui_power_timeout_timer:
+0x01be 000667 fetch 1 ,mem_power_timer 
+0x01bf 000668 rtn blank 
+0x01c0 000669 increase -1 ,pdata 
+0x01c1 000670 store 1 ,mem_power_timer 
+0x01c2 000671 nrtn blank 
+0x01c3 000672 fetch 1 ,mem_shutter_powerup_flag 
+0x01c4 000673 beq shutter_power_on ,p_shutter_le_soft_switch_power_on_signal 
+0x01c5 000674 branch shutter_shutter_power_off_signal 
+:      000688 p_shutter_uart_init:
+0x01c6 000689 hjam 0x4 ,core_gpio_sel1 
+0x01c7 000690 hfetch 4 ,core_gpio_pu0 
+0x01c8 000691 set1 7 ,pdata 
+0x01c9 000692 hstore 4 ,core_gpio_pu0 
+0x01ca 000694 hjam 0x01 ,core_uart_clksel 
+0x01cb 000695 setarg mem_shutter_rx_buf 
+0x01cc 000696 hstore 2 ,core_uart_rsaddr 
+0x01cd 000697 setarg mem_shutter_rx_buf_end 
+0x01ce 000698 hstore 2 ,core_uart_readdr 
+0x01cf 000699 setarg mem_shutter_tx_buf 
+0x01d0 000700 hstore 2 ,core_uart_tsaddr 
+0x01d1 000701 setarg mem_shutter_tx_buf_end 
+0x01d2 000702 hstore 2 ,core_uart_teaddr 
+0x01d3 000703 setarg mem_shutter_rx_buf 
+0x01d4 000704 hstore 2 ,core_uart_rrptr 
+0x01d5 000705 setarg mem_shutter_tx_buf 
+0x01d6 000706 hstore 2 ,core_uart_twptr 
+0x01d7 000707 hstore 2 ,core_uart_trptrp 
+0x01d8 000709 setarg uart_baud_115200 
+0x01d9 000710 hstore 2 ,core_uart_baud 
+0x01da 000712 hfetch 2 ,core_clkoff 
+0x01db 000713 set0 clock_off_uart ,pdata 
+0x01dc 000714 hstore 2 ,core_clkoff 
+0x01dd 000715 hjam 0x81 ,core_uart_ctrl 
+0x01de 000716 rtn 
+:      000718 p_shutter_uart_tx_prepare:
+0x01df 000719 fetch 7 ,mem_le_rxbuf + 9 
+0x01e0 000720 store 7 ,mem_uart_mouse_data_buff + 3 
+:      000721 p_shutter_uart_tx_prepare_next:
+0x01e1 000722 jam 0x02 ,mem_uart_mouse_data_buff 
+0x01e2 000723 jam 0x29 ,mem_uart_mouse_data_buff + 1 
+0x01e3 000724 jam 0x08 ,mem_uart_mouse_data_buff + 2 
+0x01e4 000726 hfetch 2 ,core_uart_twptr 
+0x01e5 000727 copy pdata ,contwu 
+0x01e6 000728 arg 0x0b ,loopcnt 
+0x01e7 000729 arg mem_uart_mouse_data_buff ,contr 
+0x01e8 000730 call uart_copy_tx_bytes 
+0x01e9 000731 branch uartd_send 
+:      000733 p_gpio_set_before_lpm_common:
+0x01ea 000734 hfetch 4 ,core_gpio_pu0 
+0x01eb 000735 hfetcht 4 ,core_gpio_pd0 
+0x01ec 000736 ior temp ,pdata 
+0x01ed 000737 invert pdata ,pdata 
+0x01ee 000738 iand rega ,pdata 
+0x01ef 000740 hstore 4 ,core_gpio_oe0 
+0x01f0 000741 rtn 
+:      000743 p_set_freq_tx:
+0x01f1 000744 storet 1 ,mem_last_freq 
+0x01f2 000745 add temp ,0 ,rega 
+0x01f3 000746 call rf_write_freq 
+0x01f4 000747 setarg param_pll_setup 
+0x01f5 000748 call sleep 
+:      000749 p_txon:
+0x01f6 000750 hjam 0x1 ,rfen_adc 
+0x01f7 000751 hjam 0x3c ,rfen_rx 
+0x01f8 000752 hjam 0xe0 ,rfen_tx 
+0x01f9 000753 hjam 0x12 ,0x96d 
+0x01fa 000754 nop 10 
+0x01fb 000755 hjam 0x01 ,rfen_mdm 
+0x01fc 000756 hjam 0x3d ,rfen_mdm 
+0x01fd 000757 nop 10 
+0x01fe 000758 hjam 0xb7 ,rfen_sn 
+0x01ff 000759 nop 10 
+0x0200 000760 hjam 0x7f ,rfen_mdm 
+0x0201 000761 fetch 1 ,mem_le_conn_state 
+0x0202 000763 beq 0 ,p_set_tx_power_5db 
+0x0203 000764 fetch 1 ,mem_tx_power 
+0x0204 000765 bbit1 tx_power_0db ,p_set_tx_power_0db 
+0x0205 000766 bbit1 tx_power_3db ,p_set_tx_power_3db 
+0x0206 000767 bbit1 tx_power_5db ,p_set_tx_power_5db 
+0x0207 000768 bbit1 tx_power_f3db ,p_set_tx_power_f3db 
+0x0208 000769 bbit1 tx_power_f5db ,p_set_tx_power_f5db 
+:      000770 p_set_tx_power_0db:
+0x0209 000771 hjam 0xf0 ,0x956 
+0x020a 000772 call txon_common 
+0x020b 000773 hjam 0xd8 ,0x955 
+0x020c 000774 rtn 
+:      000775 p_set_tx_power_3db:
+0x020d 000776 hjam 0xdf ,0x956 
+0x020e 000777 call txon_common 
+0x020f 000778 hjam 0xdf ,0x955 
+0x0210 000779 rtn 
+:      000780 p_set_tx_power_5db:
+0x0211 000781 hjam 0xff ,0x956 
+0x0212 000782 call txon_common 
+0x0213 000783 hjam 0xdf ,0x955 
+0x0214 000784 rtn 
+:      000785 p_set_tx_power_f3db:
+0x0215 000786 hjam 0xce ,0x956 
+0x0216 000787 call txon_common 
+0x0217 000788 hjam 0xd8 ,0x955 
+0x0218 000789 rtn 
+:      000790 p_set_tx_power_f5db:
+0x0219 000791 hjam 0xcb ,0x956 
+0x021a 000792 call txon_common 
+0x021b 000793 hjam 0xd8 ,0x955 
+0x021c 000794 rtn 
+:      000795 p_txon_scan:
+0x021d 000796 hjam 0xc0 ,0x956 
+0x021e 000797 hjam 0xd8 ,0x955 
+0x021f 000798 rtn 
+:      000800 p_le_transmit:
+0x0220 000801 call le_prep 
+0x0221 000802 call p_letx_setfreq 
+0x0222 000803 call le_transmit0 
+0x0223 000804 fetch 1 ,mem_device_option 
+0x0224 000805 beq dvc_op_module ,module_le_transmit 
+0x0225 000806 rtn 
+:      000807 p_letx_setfreq:
+0x0226 000808 branch p_txon ,match 
+0x0227 000809 branch letx_setfreq0 
+:      000811 p_shutdown_radio:
+0x0228 000812 branch p_shutdown_radio0 ,is_rx 
+0x0229 000813 hjam 0xd4 ,0x955 
+0x022a 000814 nop 4 
+0x022b 000815 hjam 0xd2 ,0x955 
+0x022c 000816 nop 4 
+0x022d 000817 hjam 0xd1 ,0x955 
+0x022e 000818 nop 4 
+0x022f 000819 fetch 1 ,mem_le_conn_state 
+0x0230 000820 beq 0 ,p_shutdowm_radio_scan 
+0x0231 000821 fetch 1 ,mem_tx_power 
+0x0232 000822 bbit1 tx_power_0db ,p_shutdown_radio_0db 
+0x0233 000823 bbit1 tx_power_3db ,p_shutdown_radio_3db 
+0x0234 000824 bbit1 tx_power_5db ,p_shutdown_radio_5db 
+0x0235 000825 bbit1 tx_power_f3db ,p_shutdown_radio_f3db 
+0x0236 000826 bbit1 tx_power_f5db ,p_shutdown_radio_f5db 
+:      000827 p_shutdown_radio_5db:
+:      000828 p_shutdown_radio_0db:
+0x0237 000829 hjam 0xd0 ,0x955 
+0x0238 000830 hjam 0xe0 ,0x956 
+:      000831 p_shutdown_radio0:
+0x0239 000832 force 0 ,radio_ctrl 
+0x023a 000833 disable is_rx 
+0x023b 000834 disable is_tx 
+0x023c 000835 pulse packet_end 
+0x023d 000836 hjam 0x0 ,rfen_mdm 
+0x023e 000837 hjam 0x0 ,rfen_tx 
+0x023f 000838 hjam 0x0 ,rfen_rx 
+0x0240 000839 hjam 0 ,rfen_sn 
+0x0241 000840 hjam 0x70 ,rfen_msc 
+0x0242 000841 hjam 0x0 ,rfen_adc 
+0x0243 000842 rtn 
+:      000844 p_shutdown_radio_f5db:
+:      000845 p_shutdown_radio_f3db:
+:      000846 p_shutdown_radio_3db:
+0x0244 000847 hjam 0xd0 ,0x955 
+0x0245 000848 hjam 0xc0 ,0x956 
+0x0246 000849 branch p_shutdown_radio0 
+:      000850 p_shutdowm_radio_scan:
+0x0247 000851 hjam 0xd0 ,0x955 
+0x0248 000852 hjam 0xc0 ,0x956 
+0x0249 000853 rtn 
+:      000856 p_initialize_radio_cont:
+0x024a 000857 fetch 1 ,mem_lpm_xtalcnt 
+0x024b 000858 nbranch p_switchdpll_nocal ,blank 
+0x024c 000859 call lpm_cal_xtal_startup 
+0x024d 000860 nop 30000 
+0x024e 000861 nop 30000 
+0x024f 000862 nop 30000 
+:      000863 p_switchdpll_nocal:
+0x0250 000864 call switchto_dpllclk 
+0x0251 000865 hjam clksel_dpll ,core_clksel 
+0x0252 000866 nop 1 
+0x0253 000867 hjam clksel_xtal ,core_clksel 
+0x0254 000868 hfetch 1 ,rf_clkpll_frac + 2 
+0x0255 000869 and_into 0xcf ,pdata 
+0x0256 000870 hstore 1 ,rf_clkpll_frac + 2 
+0x0257 000871 or_into 0x30 ,pdata 
+0x0258 000872 hstore 1 ,rf_clkpll_frac + 2 
+0x0259 000873 rtn 
+              org 0x3000
+:      000882 start:
+0x3000 000883 call lpmstate 
+:      000886 soft_reset:
+0x3001 000887 hjam lock_otp ,core_misc_ctrl 
+0x3002 000888 set0 mark_ext_patch ,mark 
+0x3003 000889 bpatch patch00_0 ,mem_patch00 
+0x3004 000890 hfetch 1 ,0x813b 
+0x3005 000891 store 1 ,mem_wakup_from_power_flag 
+0x3006 000892 call spi_ncs_gpio_init 
+0x3007 000893 clear_stack 
+0x3008 000894 ncall wait_uarttx ,wake 
+0x3009 000895 call initialize_radio 
+0x300a 000896 call iicd_init_12m 
+0x300b 000897 call init_param 
+0x300c 000898 call l2cap_init 
+0x300d 000899 set0 mark_ext_patch ,mark 
+0x300e 000900 bpatch patch00_1 ,mem_patch00 
+0x300f 000901 call rfcomm_init 
+0x3010 000902 call init_lmp 
+0x3011 000903 call ui_init 
+0x3012 000904 call app_init 
+0x3013 000905 ncall load_chip_option ,wake 
+0x3014 000906 set0 mark_ext_patch ,mark 
+0x3015 000907 bpatch patch00_2 ,mem_patch00 
+0x3016 000908 call app_lpm_init ,wake 
+0x3017 000909 call publickey_init 
+0x3018 000910 call lpm_recover_clk ,wake 
+:      000911 main_loop:
+0x3019 000912 set0 mark_ext_patch ,mark 
+0x301a 000913 bpatch patch00_3 ,mem_patch00 
+0x301b 000914 call sp_calc_sequence 
+0x301c 000915 call sp_calc_sequence_256 
+0x301d 000916 call publickey_calc 
+0x301e 000917 call le_dispatch 
+0x301f 000918 set0 mark_ext_patch ,mark 
+0x3020 000919 bpatch patch00_4 ,mem_patch00 
+0x3021 000920 call idle_dispatch 
+0x3022 000921 call app_process_idle 
+0x3023 000922 call inquiry_dispatch 
+0x3024 000923 call inquiry_scan_dispatch 
+0x3025 000924 call page_scan_dispatch 
+0x3026 000925 call connection_dispatch 
+0x3027 000926 call lpm_dispatch 
+0x3028 000927 branch main_loop 
+:      000929 connection_dispatch:
+0x3029 000930 call connection_incontext 
+0x302a 000931 rtnmark0 mark_context 
+0x302b 000932 set0 mark_context ,mark 
+0x302c 000933 call context_save 
+0x302d 000934 branch le_disable 
+:      000936 connection_incontext:
+0x302e 000937 set0 mark_ext_patch ,mark 
+0x302f 000938 bpatch patch00_5 ,mem_patch00 
+0x3030 000939 call context_search_insniff 
+0x3031 000940 nbranch connection_nosniff ,zero 
+0x3032 000941 call context_load 
+0x3033 000942 add rega ,coffset_mode ,contr 
+0x3034 000943 ifetch 1 ,contr 
+0x3035 000944 bbit1 mode_le ,le_conn_dispatch 
+0x3036 000945 bbit1 mode_master ,master_dispatch 
+0x3037 000946 branch slave_dispatch 
+:      000947 connection_nosniff:
+0x3038 000948 set0 mark_ext_patch ,mark 
+0x3039 000949 bpatch patch00_6 ,mem_patch00 
+0x303a 000950 call context_get_next 
+0x303b 000951 copy loopcnt ,null 
+0x303c 000952 rtn zero 
+0x303d 000953 call context_load 
+0x303e 000954 fetch 1 ,mem_state 
+0x303f 000955 bbit1 state_inpage ,master_page 
+0x3040 000956 fetch 1 ,mem_mode 
+0x3041 000957 bbit1 mode_master ,master_dispatch 
+0x3042 000958 branch slave_dispatch 
+:      000966 idle_dispatch:
+0x3043 000967 fetch 1 ,mem_hci_cmd 
+0x3044 000968 rtn blank 
+0x3045 000969 beq hci_cmd_inquiry ,idle_inquiry 
+0x3046 000970 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+0x3047 000971 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+0x3048 000972 beq hci_cmd_create_conn ,idle_create_conn 
+0x3049 000973 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+0x304a 000974 call context_search_conn_handle 
+0x304b 000975 rtn zero 
+0x304c 000976 call context_search_plap 
+0x304d 000977 rtn zero 
+:      000978 idle_exit:
+0x304e 000979 jam 0 ,mem_hci_cmd 
+0x304f 000980 rtn 
+:      000982 idle_le_create_conn:
+0x3050 000983 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+0x3051 000984 jam 0 ,mem_hci_cmd 
+0x3052 000985 rtn 
+:      000987 idle_inquiry:
+0x3053 000988 set1 mark_inquiry_on ,mark 
+0x3054 000989 set0 mark_inquiry_trainb ,mark 
+0x3055 000990 jam param_ninquiry ,mem_ninqy_index 
+0x3056 000991 jam 31 ,mem_nfreq_index_inq 
+0x3057 000992 branch idle_exit 
+:      000994 idle_inquiry_cancel:
+0x3058 000995 set0 mark_inquiry_on ,mark 
+0x3059 000996 force 0 ,stop_watch 
+0x305a 000997 branch idle_exit 
+:      000999 idle_remote_name_req:
+0x305b 001000 call context_search_plap 
+0x305c 001001 rtn zero 
+0x305d 001002 force lmp_name_req ,temp 
+0x305e 001003 jam 5 ,mem_nameres_cnt 
+0x305f 001004 branch idle_start_page 
+:      001006 idle_create_conn:
+0x3060 001007 set0 mark_ext_patch ,mark 
+0x3061 001008 bpatch patch00_7 ,mem_patch00 
+:      001009 idle_create_conn_device:
+0x3062 001010 fetch 6 ,mem_hci_plap 
+0x3063 001011 branch idle_exit ,blank 
+0x3064 001012 jam reconnect_hid ,memui_reconnect_mode 
+0x3065 001014 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x3066 001015 branch idle_create_conn_cont 
+:      001017 idle_create_conn_cont:
+0x3067 001018 force lmp_version_req ,temp 
+:      001019 idle_start_page:
+0x3068 001020 set0 mark_ext_patch ,mark 
+0x3069 001021 bpatch patch01_0 ,mem_patch01 
+0x306a 001022 fetch 1 ,mem_page_mode 
+0x306b 001023 branch idle_page_mode_r0 ,blank 
+0x306c 001024 lshift3 pdata ,pdata 
+0x306d 001025 lshift4 pdata ,pdata 
+0x306e 001026 increase -1 ,pdata 
+:      001027 idle_page_mode_r0:
+0x306f 001028 store 1 ,mem_npage 
+0x3070 001029 store 1 ,mem_npage_index 
+0x3071 001030 jam 31 ,mem_nfreq_index_page 
+0x3072 001031 set0 mark_page_trainb ,mark 
+0x3073 001032 call context_new 
+0x3074 001033 nbranch idle_page_fail ,zero 
+0x3075 001034 call get_free_amaddr 
+0x3076 001035 store 1 ,mem_amaddr 
+0x3077 001036 storet 1 ,mem_lmo_opcode2 
+0x3078 001037 fetch 6 ,mem_hci_plap 
+0x3079 001038 store 6 ,mem_plap 
+0x307a 001039 set0 mark_ext_patch ,mark 
+0x307b 001040 bpatch patch01_1 ,mem_patch01 
+0x307c 001041 call timer_check 
+0x307d 001042 force 0 ,pdata 
+0x307e 001043 compare lmp_name_req ,temp ,0xff 
+0x307f 001044 nsetflag true ,state_init_seq ,pdata 
+0x3080 001045 set1 state_inpage ,pdata 
+0x3081 001046 store 1 ,mem_state 
+0x3082 001047 jam bt_evt_reconn_started ,mem_fifo_temp 
+0x3083 001048 call ui_ipc_send_event 
+0x3084 001049 force 0 ,pdata 
+0x3085 001050 setflag true ,smap_name_req ,pdata 
+0x3086 001051 store 1 ,mem_state_map 
+0x3087 001052 setarg 0 
+0x3088 001053 set1 mode_master ,pdata 
+0x3089 001054 store 1 ,mem_mode 
+0x308a 001055 enable master 
+0x308b 001056 call context_save 
+0x308c 001057 disable master 
+0x308d 001058 force page_length_timer ,queue 
+0x308e 001059 fetch 2 ,mem_page_to 
+0x308f 001060 call timer_init 
+0x3090 001061 branch idle_exit 
+:      001062 idle_page_fail:
+0x3091 001063 set0 mark_ext_patch ,mark 
+0x3092 001064 bpatch patch01_2 ,mem_patch01 
+0x3093 001065 fetch 6 ,mem_hci_plap 
+0x3094 001066 store 6 ,mem_plap 
+0x3095 001067 compare lmp_name_req ,temp ,0xff 
+0x3096 001068 branch idle_name_fail ,true 
+0x3097 001069 branch idle_exit 
+:      001070 idle_name_fail:
+0x3098 001071 arg mem_tmp_buffer ,contw 
+0x3099 001072 arg 8 ,loopcnt 
+0x309a 001073 call memset0 
+0x309b 001074 jam bt_evt_reconn_failed ,mem_fifo_temp 
+0x309c 001075 call ui_ipc_send_event 
+0x309d 001076 branch idle_exit 
+:      001083 inquiry_dispatch:
+0x309e 001084 rtnmark0 mark_inquiry_on 
+0x309f 001085 force inquiry_length_timer ,queue 
+0x30a0 001086 call timer_check 
+0x30a1 001087 nsetflag blank ,mark_inquiry_on ,mark 
+0x30a2 001088 nbranch inquiry_start ,blank 
+0x30a3 001089 rtn 
+:      001093 inquiry_start:
+0x30a4 001094 set0 mark_ext_patch ,mark 
+0x30a5 001095 bpatch patch01_3 ,mem_patch01 
+0x30a6 001096 fetcht 2 ,mem_inq_window 
+0x30a7 001097 force 4 ,queue 
+0x30a8 001098 call sniff_check_window 
+0x30a9 001099 rtn user 
+0x30aa 001100 call afh_clear 
+0x30ab 001101 force 0 ,freq_mode 
+:      001102 inquiry_restart:
+0x30ac 001103 rtn timeout 
+0x30ad 001104 set0 mark_fhs_already_good ,mark 
+0x30ae 001105 set0 mark_fhs_eir ,mark 
+:      001106 inquiry_rx_restart:
+0x30af 001107 add clkn_bt ,1 ,bt_clk 
+0x30b0 001108 isolate1 mark_inquiry_trainb ,mark 
+0x30b1 001109 setflag true ,2 ,freq_mode 
+0x30b2 001110 compare 0x00 ,bt_clk ,0x02 
+0x30b3 001111 nbranch inquiry_receive ,true 
+:      001113 inquiry_transmit:
+0x30b4 001114 set0 mark_ext_patch ,mark 
+0x30b5 001115 bpatch patch01_4 ,mem_patch01 
+0x30b6 001116 fetch 1 ,mem_inquiry_transmit 
+0x30b7 001117 increase 1 ,pdata 
+0x30b8 001118 store 1 ,mem_inquiry_transmit 
+0x30b9 001119 call fetch_giac 
+0x30ba 001120 call tx_radio_freq 
+0x30bb 001121 call fetch_diac 
+0x30bc 001122 call start_transmitter 
+0x30bd 001123 call start_tx_native 
+0x30be 001124 call send_access_word 
+0x30bf 001125 call end_of_packet 
+0x30c0 001126 call inquiry_check_train 
+0x30c1 001127 branch inquiry_restart 
+:      001129 inquiry_check_train:
+0x30c2 001130 set0 mark_ext_patch ,mark 
+0x30c3 001131 bpatch patch01_5 ,mem_patch01 
+0x30c4 001132 fetch 1 ,mem_nfreq_index_inq 
+0x30c5 001133 increase -1 ,pdata 
+0x30c6 001134 store 1 ,mem_nfreq_index_inq 
+0x30c7 001135 rtn positive 
+0x30c8 001136 jam 31 ,mem_nfreq_index_inq 
+0x30c9 001137 fetch 1 ,mem_ninqy_index 
+0x30ca 001138 increase -1 ,pdata 
+0x30cb 001139 store 1 ,mem_ninqy_index 
+0x30cc 001140 rtn positive 
+0x30cd 001141 setflip mark_inquiry_trainb ,mark 
+0x30ce 001142 jam param_ninquiry ,mem_ninqy_index 
+0x30cf 001143 rtn 
+:      001145 inquiry_receive:
+0x30d0 001146 set0 mark_ext_patch ,mark 
+0x30d1 001147 bpatch patch01_6 ,mem_patch01 
+0x30d2 001148 call fetch_giac 
+0x30d3 001149 call rx_radio_freq 
+0x30d4 001150 call fetch_diac 
+0x30d5 001151 call start_rx_native 
+0x30d6 001152 call start_receiver 
+0x30d7 001153 call wait_access_clkn_rt 
+0x30d8 001154 branch inquiry_sync ,sync 
+0x30d9 001155 call inquiry_check_train 
+0x30da 001156 branch inquiry_rx_restart 
+:      001157 inquiry_sync:
+0x30db 001158 set0 mark_ext_patch ,mark 
+0x30dc 001159 bpatch patch01_7 ,mem_patch01 
+0x30dd 001160 call save_rssi 
+0x30de 001161 call scan_mode_whiten 
+0x30df 001162 call receive_packet_whitened 
+0x30e0 001163 set0 mark_rxbuf_inuse ,mark 
+0x30e1 001164 rtnmark0 mark_fhs_already_good 
+:      001165 inquiry_receive_rtn:
+0x30e2 001166 set0 mark_ext_patch ,mark 
+0x30e3 001167 bpatch patch02_0 ,mem_patch02 
+:      001168 inquiry_receive_eir_rtn:
+0x30e4 001169 fetch 1 ,mem_inquiry_rcv 
+0x30e5 001170 increase 1 ,pdata 
+0x30e6 001171 store 1 ,mem_inquiry_rcv 
+0x30e7 001172 rtn 
+:      001180 master_page:
+0x30e8 001181 set0 mark_ext_patch ,mark 
+0x30e9 001182 bpatch patch02_1 ,mem_patch02 
+0x30ea 001183 enable master 
+0x30eb 001184 enable clknt 
+0x30ec 001185 fetch 2 ,mem_page_interval 
+0x30ed 001186 branch master_page_no_interval ,blank 
+0x30ee 001187 force page_interval_timer ,queue 
+0x30ef 001188 call timer_check 
+0x30f0 001189 nrtn blank 
+:      001190 master_page_no_interval:
+0x30f1 001191 set0 mark_ext_patch ,mark 
+0x30f2 001192 bpatch patch02_2 ,mem_patch02 
+0x30f3 001193 fetcht 2 ,mem_page_window 
+0x30f4 001194 force 40 ,queue 
+0x30f5 001195 call sniff_check_window 
+0x30f6 001196 branch page_exit ,user 
+0x30f7 001197 force page_length_timer ,queue 
+0x30f8 001198 call timer_check 
+0x30f9 001199 nbranch page_start ,blank 
+0x30fa 001200 fetch 1 ,mem_state_map 
+0x30fb 001201 bbit1 smap_name_req ,master_npage_timeout 
+0x30fc 001202 branch master_page_timeout 
+:      001203 master_npage_timeout:
+0x30fd 001204 arg mem_tmp_buffer ,contw 
+0x30fe 001205 arg 8 ,loopcnt 
+0x30ff 001206 call memset0 
+:      001207 master_page_timeout:
+0x3100 001208 set0 mark_ext_patch ,mark 
+0x3101 001209 bpatch patch02_3 ,mem_patch02 
+0x3102 001210 jam 0 ,mem_state 
+0x3103 001211 call init_lmp_work 
+0x3104 001212 jam 0 ,memui_reconnect_mode 
+0x3105 001213 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+0x3106 001214 call ui_ipc_send_event 
+0x3107 001215 branch page_exit 
+:      001217 page_start:
+0x3108 001218 set0 mark_ext_patch ,mark 
+0x3109 001219 bpatch patch02_4 ,mem_patch02 
+0x310a 001220 force 0 ,timeup 
+0x310b 001221 until clkn_rt ,meet 
+0x310c 001222 fetch 1 ,mem_page_clk 
+0x310d 001223 increase -1 ,pdata 
+0x310e 001224 ixor clkn_bt ,pdata 
+0x310f 001225 compare 0 ,pdata ,3 
+0x3110 001226 nbranch page_start ,true 
+0x3111 001227 deposit am_addr 
+0x3112 001228 store 1 ,mem_fhs_am_addr 
+0x3113 001229 force 0 ,n_tx_slot 
+0x3114 001230 force 0 ,freq_mode 
+:      001232 page_restart:
+0x3115 001233 set0 mark_ext_patch ,mark 
+0x3116 001234 bpatch patch02_5 ,mem_patch02 
+0x3117 001235 branch page_exit ,timeout 
+0x3118 001236 call fetch_page_bt_adr 
+0x3119 001237 arg param_rf_setup ,timeup 
+0x311a 001238 until clkn_rt ,meet 
+:      001239 page_rx_restart:
+0x311b 001240 set0 mark_ext_patch ,mark 
+0x311c 001241 bpatch patch02_6 ,mem_patch02 
+0x311d 001242 fetch 4 ,mem_page_clk 
+0x311e 001243 iforce bt_clk 
+0x311f 001244 increase 1 ,pdata 
+0x3120 001245 store 4 ,mem_page_clk 
+0x3121 001246 isolate1 mark_page_trainb ,mark 
+0x3122 001247 setflag true ,2 ,freq_mode 
+0x3123 001248 compare 0x00 ,bt_clk ,0x02 
+0x3124 001249 nbranch page_receive ,true 
+0x3125 001250 fetch 1 ,mem_page_transmit 
+0x3126 001251 increase 1 ,pdata 
+0x3127 001252 store 1 ,mem_page_transmit 
+0x3128 001253 call tx_radio_freq 
+0x3129 001254 call start_transmitter 
+0x312a 001255 call start_tx_native 
+0x312b 001256 call send_access_word 
+0x312c 001257 call end_of_packet 
+0x312d 001258 call page_check_train 
+0x312e 001259 branch page_restart 
+:      001260 page_exit:
+0x312f 001261 set0 mark_ext_patch ,mark 
+0x3130 001262 bpatch patch02_7 ,mem_patch02 
+0x3131 001263 disable master 
+0x3132 001264 fetch 2 ,mem_page_interval 
+0x3133 001265 rtn blank 
+0x3134 001266 force page_interval_timer ,queue 
+0x3135 001267 branch timer_init 
+:      001269 page_check_train:
+0x3136 001270 set0 mark_ext_patch ,mark 
+0x3137 001271 bpatch patch03_0 ,mem_patch03 
+0x3138 001272 fetch 1 ,mem_nfreq_index_page 
+0x3139 001273 increase -1 ,pdata 
+0x313a 001274 store 1 ,mem_nfreq_index_page 
+0x313b 001275 rtn positive 
+0x313c 001276 jam 31 ,mem_nfreq_index_page 
+0x313d 001277 fetch 1 ,mem_npage_index 
+0x313e 001278 increase -1 ,pdata 
+0x313f 001279 store 1 ,mem_npage_index 
+0x3140 001280 rtn positive 
+0x3141 001281 setflip mark_page_trainb ,mark 
+0x3142 001282 fetch 1 ,mem_npage 
+0x3143 001283 store 1 ,mem_npage_index 
+0x3144 001284 rtn 
+:      001286 page_receive:
+0x3145 001287 set0 mark_ext_patch ,mark 
+0x3146 001288 bpatch patch03_1 ,mem_patch03 
+0x3147 001289 call rx_radio_freq 
+0x3148 001290 call start_rx_native 
+0x3149 001291 call start_receiver 
+0x314a 001292 call wait_access_clkn_rt 
+0x314b 001293 branch page_sync ,sync 
+0x314c 001294 call page_check_train 
+0x314d 001295 branch page_rx_restart 
+:      001296 page_sync:
+0x314e 001297 call end_of_packet 
+0x314f 001298 fetch 1 ,mem_page_rcv 
+0x3150 001299 increase 1 ,pdata 
+0x3151 001300 store 1 ,mem_page_rcv 
+0x3152 001301 force 0 ,stop_watch 
+0x3153 001302 fetch 4 ,mem_page_clk 
+:      001303 page_send_fhs:
+0x3154 001304 set0 mark_ext_patch ,mark 
+0x3155 001305 bpatch patch03_2 ,mem_patch03 
+0x3156 001306 call rf_setup_time_master_slot 
+0x3157 001307 call fetch_page_bt_adr 
+0x3158 001308 increase 1 ,n_tx_slot 
+:      001309 page_send_fhs_continue:
+0x3159 001310 and_into 0x1fd ,bt_clk 
+0x315a 001311 and_into 0x1fc ,freq_mode 
+0x315b 001312 call tx_radio_freq 
+0x315c 001313 call start_transmitter 
+0x315d 001314 call start_tx_native 
+0x315e 001315 call send_access_word 
+0x315f 001316 deposit clkn_bt 
+0x3160 001317 store 4 ,mem_clkn_bt 
+0x3161 001318 force 0 ,am_addr 
+0x3162 001319 force type_fhs ,type 
+0x3163 001320 call scan_mode_whiten 
+0x3164 001321 call transmit_packet_whitened 
+:      001322 page_wait_fhs_reply:
+0x3165 001323 set0 mark_ext_patch ,mark 
+0x3166 001324 bpatch patch03_3 ,mem_patch03 
+0x3167 001325 call rf_setup_time_slave_slot 
+0x3168 001326 or_into 0x02 ,bt_clk 
+0x3169 001327 and_into 0x1fc ,freq_mode 
+0x316a 001328 call rx_radio_freq 
+0x316b 001329 call start_rx_native 
+0x316c 001330 call start_receiver 
+0x316d 001331 call wait_access_clkn_rt 
+0x316e 001332 call end_of_packet ,sync 
+0x316f 001333 branch page_wait_fhs_reply_ok ,sync 
+0x3170 001334 fetch 1 ,mem_fhs_wait_counter 
+0x3171 001335 branch page_restart ,blank 
+0x3172 001336 increase -1 ,pdata 
+0x3173 001337 store 1 ,mem_fhs_wait_counter 
+0x3174 001338 branch page_send_fhs 
+:      001340 page_wait_fhs_reply_ok:
+0x3175 001341 set0 mark_ext_patch ,mark 
+0x3176 001342 bpatch patch03_4 ,mem_patch03 
+0x3177 001343 fetch 1 ,mem_page_rcv_fhs 
+0x3178 001344 increase 1 ,pdata 
+0x3179 001345 store 1 ,mem_page_rcv_fhs 
+0x317a 001346 call prepare_newconn 
+:      001347 master_newconn_loop:
+0x317b 001348 call master_newconn_once 
+0x317c 001349 branch newconn_poll_responded ,sync 
+0x317d 001350 call new_conn_timeout 
+0x317e 001351 nbranch master_newconn_loop ,blank 
+0x317f 001352 branch page_restart 
+:      001354 newconn_poll_responded:
+0x3180 001355 set0 mark_ext_patch ,mark 
+0x3181 001356 bpatch patch03_5 ,mem_patch03 
+0x3182 001357 fetch 1 ,mem_state 
+0x3183 001358 set0 state_inpage ,pdata 
+0x3184 001359 store 1 ,mem_state 
+0x3185 001360 call newconn_init 
+0x3186 001361 disable master 
+0x3187 001362 rtn 
+:      001365 master_dispatch:
+0x3188 001366 set0 mark_ext_patch ,mark 
+0x3189 001367 bpatch patch03_6 ,mem_patch03 
+0x318a 001368 enable master 
+0x318b 001369 enable clknt 
+0x318c 001370 call role_switch_master 
+0x318d 001371 rtn user 
+0x318e 001372 call check_bt_disabled 
+0x318f 001373 call rf_setup_time_master_slot 
+0x3190 001374 add clkn_bt ,1 ,bt_clk 
+0x3191 001375 call fetch_self_bt_adr 
+0x3192 001376 force 0x03 ,freq_mode 
+0x3193 001377 call scheduler_tx_l2cap_pkt 
+0x3194 001378 call prepare_tx 
+0x3195 001379 call tx_radio_freq 
+0x3196 001380 call start_transmitter 
+0x3197 001381 call start_tx_native 
+0x3198 001382 call send_access_word 
+0x3199 001383 call transmit_packet 
+:      001384 master_loop:
+0x319a 001385 set0 mark_ext_patch ,mark 
+0x319b 001386 bpatch patch03_7 ,mem_patch03 
+0x319c 001387 call parse_lmp 
+0x319d 001388 call master_conn_recv_packet 
+0x319e 001389 nbranch master_notmatch ,match 
+0x319f 001390 call supervision_flush 
+0x31a0 001391 call parse_l2cap 
+0x31a1 001392 fetch 1 ,mem_master_rcvcnt 
+0x31a2 001393 increase 1 ,pdata 
+0x31a3 001394 store 1 ,mem_master_rcvcnt 
+:      001395 master_notmatch:
+0x31a4 001396 set0 mark_ext_patch ,mark 
+0x31a5 001397 bpatch patch04_0 ,mem_patch04 
+0x31a6 001398 call scheduler_process 
+0x31a7 001399 call check_master_disconnect 
+0x31a8 001400 nrtn master 
+0x31a9 001401 call check_attempt 
+0x31aa 001402 nbranch master_attempt ,blank 
+:      001403 master_exit:
+0x31ab 001404 disable master 
+0x31ac 001405 rtn 
+:      001407 master_attempt:
+0x31ad 001408 call prepare_tx 
+0x31ae 001409 call master_conn_send_packet 
+0x31af 001410 branch master_loop 
+:      001413 check_master_disconnect:
+0x31b0 001414 branch check_master_match ,match 
+0x31b1 001415 call supervision_update 
+0x31b2 001416 branch master_disconnect ,positive 
+:      001417 check_master_match:
+0x31b3 001418 call check_disconnect_timeout 
+0x31b4 001419 nbranch master_disconnect ,user 
+0x31b5 001420 fetch 1 ,mem_state_map 
+0x31b6 001421 rtnbit0 smap_name_req 
+0x31b7 001422 rtnbit1 smap_name_res 
+0x31b8 001423 fetch 1 ,mem_op 
+0x31b9 001424 rtnbit1 op_disconn 
+0x31ba 001425 call conn_timer_expired 
+0x31bb 001426 nrtn blank 
+0x31bc 001427 fetch 1 ,mem_nameres_cnt 
+0x31bd 001428 increase -1 ,pdata 
+0x31be 001429 store 1 ,mem_nameres_cnt 
+0x31bf 001430 nrtn blank 
+0x31c0 001431 branch lmp_disconnect 
+:      001433 master_disconnect:
+0x31c1 001434 set0 mark_ext_patch ,mark 
+0x31c2 001435 bpatch patch04_1 ,mem_patch04 
+0x31c3 001436 call quit_connection 
+0x31c4 001437 disable master 
+0x31c5 001438 fetch 1 ,mem_state_map 
+0x31c6 001439 bbit1 smap_name_req ,master_name_disconnect 
+0x31c7 001440 rtn 
+:      001442 master_name_disconnect:
+0x31c8 001443 fetch 1 ,mem_state_map 
+0x31c9 001444 rtnbit1 smap_name_res 
+:      001445 master_name_error:
+0x31ca 001446 arg mem_tmp_buffer ,contw 
+0x31cb 001447 arg 8 ,loopcnt 
+0x31cc 001448 branch memset0 
+:      001450 check_disconnect_timeout:
+0x31cd 001451 set0 mark_ext_patch ,mark 
+0x31ce 001452 bpatch patch04_2 ,mem_patch04 
+0x31cf 001453 enable user 
+0x31d0 001454 fetch 1 ,mem_op 
+0x31d1 001455 rtnbit0 op_disconn 
+0x31d2 001456 call conn_timer_expired 
+0x31d3 001457 nrtn blank 
+:      001458 disable_usr:
+0x31d4 001459 disable user 
+0x31d5 001460 rtn 
+:      001462 conn_timer_expired:
+0x31d6 001463 fetch 1 ,mem_conn_timer 
+0x31d7 001464 increase -1 ,pdata 
+0x31d8 001465 store 1 ,mem_conn_timer 
+0x31d9 001466 rtn 
+:      001468 linkkey_ready:
+0x31da 001469 set0 mark_ext_patch ,mark 
+0x31db 001470 bpatch patch04_3 ,mem_patch04 
+0x31dc 001471 fetch 1 ,mem_state 
+0x31dd 001472 bbit1 state_linkkey ,linkkey_set 
+0x31de 001473 fetch 1 ,mem_pairing_auth 
+0x31df 001474 branch linkkey_set ,blank 
+0x31e0 001475 jam defalt_pairing_auth ,mem_pairing_auth 
+0x31e1 001476 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+0x31e2 001477 call ui_ipc_send_event 
+0x31e3 001478 branch linkkey_set 
+:      001479 linkkey_set:
+0x31e4 001480 set0 mark_ext_patch ,mark 
+0x31e5 001481 bpatch patch04_4 ,mem_patch04 
+0x31e6 001482 call context_traverse_linkkey 
+0x31e7 001483 fetch 1 ,mem_state 
+0x31e8 001484 set1 state_linkkey ,pdata 
+0x31e9 001485 store 1 ,mem_state 
+0x31ea 001486 jam 1 ,mem_link_key_exists 
+0x31eb 001487 fetch 1 ,mem_conn_sm 
+0x31ec 001488 bne conn_sm_pairing ,linkkey_set_continue 
+:      001489 linkkey_set_continue:
+0x31ed 001490 rtn 
+:      001492 generate_linkkey_continue:
+0x31ee 001493 jam pairing_auth ,mem_pairing_auth 
+:      001494 clear_linkstate:
+0x31ef 001495 fetch 1 ,mem_state 
+0x31f0 001496 set0 state_linkkey ,pdata 
+0x31f1 001497 store 1 ,mem_state 
+0x31f2 001498 rtn 
+:      001502 role_switch_check:
+0x31f3 001503 set0 mark_ext_patch ,mark 
+0x31f4 001504 bpatch patch04_5 ,mem_patch04 
+0x31f5 001505 disable user 
+0x31f6 001506 fetch 1 ,mem_state 
+0x31f7 001507 rtnbit0 state_insniff 
+0x31f8 001508 fetch 2 ,mem_tsniff 
+0x31f9 001509 nrtn blank 
+0x31fa 001510 fetch 4 ,mem_sniff_anchor 
+0x31fb 001511 branch role_switch_clkn ,clknt 
+0x31fc 001512 isub clke_bt ,pdata 
+0x31fd 001513 branch role_switch_clke 
+:      001514 role_switch_clkn:
+0x31fe 001515 isub clkn_bt ,pdata 
+:      001516 role_switch_clke:
+0x31ff 001517 sub pdata ,4 ,null 
+0x3200 001518 nrtn positive 
+0x3201 001519 fetch 1 ,mem_state 
+0x3202 001520 set0 state_insniff ,pdata 
+0x3203 001521 store 1 ,mem_state 
+0x3204 001522 enable user 
+0x3205 001523 rtn 
+:      001526 role_switch_prepare:
+0x3206 001527 copy pdata ,temp 
+0x3207 001528 set0 mark_ext_patch ,mark 
+0x3208 001529 bpatch patch04_6 ,mem_patch04 
+0x3209 001530 store 4 ,mem_sniff_anchor 
+:      001531 role_switch_prepare0:
+0x320a 001532 jam switch_flag_accept ,mem_switch_flag 
+0x320b 001533 fetch 1 ,mem_state 
+0x320c 001534 set1 state_insniff ,pdata 
+0x320d 001535 store 1 ,mem_state 
+0x320e 001536 force 0 ,pdata 
+0x320f 001537 store 2 ,mem_tsniff 
+0x3210 001538 jam 1 ,mem_sniff_attempt 
+0x3211 001539 jam 0x0 ,mem_sniff_timeout 
+0x3212 001540 jam 0x0 ,mem_current_sniff_timeout 
+0x3213 001541 fetch 4 ,mem_sniff_anchor 
+0x3214 001542 copy clkn_bt ,temp 
+0x3215 001543 isub temp ,pdata 
+0x3216 001544 rshift2 pdata ,pdata 
+0x3217 001545 increase -8 ,pdata 
+0x3218 001546 store 1 ,mem_current_sniff_attempt 
+0x3219 001547 rtn 
+:      001550 role_switch_master:
+0x321a 001551 set0 mark_ext_patch ,mark 
+0x321b 001552 bpatch patch04_7 ,mem_patch04 
+0x321c 001553 call role_switch_check 
+0x321d 001554 nrtn user 
+0x321e 001555 disable user 
+0x321f 001556 jam param_newconnto ,mem_newconnto_counter 
+0x3220 001557 set0 mark_fhs_already_good ,mark 
+:      001558 roles_waitfhs_loop:
+0x3221 001559 call rf_setup_time_master_slot 
+0x3222 001560 call master_recv_packet 
+0x3223 001561 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+0x3224 001562 call new_conn_timeout 
+0x3225 001563 nbranch roles_waitfhs_loop ,blank 
+:      001564 role_switch_fail_master:
+0x3226 001565 set0 mark_ext_patch ,mark 
+0x3227 001566 bpatch patch05_0 ,mem_patch05 
+0x3228 001567 disable user 
+0x3229 001568 deposit clkn_bt 
+0x322a 001569 store 4 ,mem_next_btclk 
+0x322b 001570 enable clknt 
+0x322c 001571 enable master 
+0x322d 001572 jam bt_evt_switch_fail_master ,mem_fifo_temp 
+0x322e 001573 branch ui_ipc_send_event 
+:      001575 roles_replyto_fhs:
+0x322f 001576 set0 mark_ext_patch ,mark 
+0x3230 001577 bpatch patch05_1 ,mem_patch05 
+0x3231 001578 call rf_setup_time_slave_slot 
+0x3232 001579 call master_send_packet 
+0x3233 001580 disable clknt 
+0x3234 001581 disable master 
+0x3235 001582 call apply_switch_clke 
+0x3236 001583 call prepare_newconn 
+:      001584 roles_newconns_loop:
+0x3237 001585 set0 mark_ext_patch ,mark 
+0x3238 001586 bpatch patch05_2 ,mem_patch05 
+0x3239 001587 call slave_newconn_once 
+0x323a 001588 branch roles_newconns_responded ,match 
+0x323b 001589 call new_conn_timeout 
+0x323c 001590 nbranch roles_newconns_loop ,blank 
+0x323d 001591 branch role_switch_fail_master 
+:      001592 roles_newconns_responded:
+0x323e 001593 fetch 1 ,mem_mode 
+0x323f 001594 set0 mode_master ,pdata 
+0x3240 001595 store 1 ,mem_mode 
+0x3241 001596 call supervision_flush 
+0x3242 001597 call calc_clke_offset 
+0x3243 001598 enable user 
+0x3244 001599 jam bt_evt_switch_success_master ,mem_fifo_temp 
+0x3245 001600 branch ui_ipc_send_event 
+:      001605 context_load:
+0x3246 001606 set0 mark_ext_patch ,mark 
+0x3247 001607 bpatch patch05_3 ,mem_patch05 
+0x3248 001608 set1 mark_context ,mark 
+0x3249 001609 deposit rega 
+0x324a 001610 store 2 ,mem_context_ptr 
+0x324b 001611 force context_size ,loopcnt 
+0x324c 001612 arg mem_le_state ,contw 
+0x324d 001613 add rega ,coffset_mode ,contr 
+0x324e 001614 ifetch 1 ,contr 
+0x324f 001615 copy rega ,contr 
+0x3250 001616 bbit1 mode_le ,memcpy 
+0x3251 001617 arg mem_state ,contw 
+0x3252 001618 call memcpy 
+0x3253 001619 disable attempt 
+0x3254 001620 fetch 1 ,mem_amaddr 
+0x3255 001621 iforce am_addr 
+0x3256 001622 jam 1 ,mem_current_sniff_attempt 
+0x3257 001623 branch context_load_master ,master 
+0x3258 001624 jam 1 ,mem_current_sniff_attempt 
+:      001625 context_load_master:
+0x3259 001626 fetch 1 ,mem_state 
+0x325a 001627 rtnbit0 state_insniff 
+0x325b 001628 fetch 1 ,mem_sniff_attempt 
+0x325c 001629 store 1 ,mem_current_sniff_attempt 
+0x325d 001630 fetch 1 ,mem_sniff_timeout 
+0x325e 001631 store 1 ,mem_current_sniff_timeout 
+0x325f 001632 rtn 
+:      001634 context_save:
+0x3260 001635 set0 mark_ext_patch ,mark 
+0x3261 001636 bpatch patch05_4 ,mem_patch05 
+0x3262 001637 fetch 2 ,mem_context_ptr 
+0x3263 001638 iforce contw 
+0x3264 001639 force context_size ,loopcnt 
+0x3265 001640 arg mem_le_state ,contr 
+0x3266 001641 branch memcpy ,le 
+0x3267 001642 arg mem_state ,contr 
+0x3268 001643 branch memcpy 
+:      001647 context_get_next:
+0x3269 001648 fetch 1 ,mem_context_number 
+0x326a 001649 copy pdata ,loopcnt 
+0x326b 001650 fetcht 1 ,mem_current_context 
+:      001651 context_get_next_loop:
+0x326c 001652 increase 1 ,temp 
+0x326d 001653 compare context_num ,temp ,0xff 
+0x326e 001654 nbranch context_get_next_cont ,true 
+0x326f 001655 arg 0 ,temp 
+:      001656 context_get_next_cont:
+0x3270 001657 storet 1 ,mem_current_context 
+0x3271 001658 mul32 temp ,context_size ,pdata 
+0x3272 001659 arg mem_context ,rega 
+0x3273 001660 iadd rega ,rega 
+0x3274 001661 ifetch 1 ,rega 
+0x3275 001662 bbit1 state_insniff ,context_get_next_sniff 
+0x3276 001663 rtnbit1 state_inconn 
+0x3277 001664 rtnbit1 state_inpage 
+:      001665 context_get_next_sniff:
+0x3278 001666 loop context_get_next_loop 
+0x3279 001667 rtn 
+:      001669 context_new:
+0x327a 001670 set0 mark_ext_patch ,mark 
+0x327b 001671 bpatch patch05_5 ,mem_patch05 
+0x327c 001672 arg context_search_empty ,regc 
+0x327d 001673 call context_search 
+0x327e 001674 nrtn zero 
+0x327f 001675 deposit rega 
+0x3280 001676 store 2 ,mem_context_ptr 
+0x3281 001677 force 0 ,null 
+0x3282 001678 rtn 
+:      001682 context_check_all_wack:
+0x3283 001683 call check_esco_amaddr 
+0x3284 001684 branch context_check_esco_wack ,true 
+0x3285 001685 fetch 2 ,mem_context_ptr 
+0x3286 001686 add pdata ,coffset_arq ,contw 
+0x3287 001687 fetch 1 ,mem_arq 
+0x3288 001688 istore 1 ,contw 
+0x3289 001689 arg context_check_a_wack ,regc 
+0x328a 001690 branch context_search 
+:      001692 context_check_esco_wack:
+0x328b 001693 fetch 1 ,mem_arq 
+0x328c 001694 isolate1 wack ,pdata 
+0x328d 001695 branch context_esco_wack ,true 
+0x328e 001696 force 1 ,null 
+0x328f 001697 rtn 
+:      001698 context_esco_wack:
+0x3290 001699 force 0 ,null 
+0x3291 001700 rtn 
+:      001703 context_check_idle:
+0x3292 001704 arg context_check_inconn ,regc 
+0x3293 001705 branch context_search 
+:      001707 context_traverse_linkkey:
+0x3294 001708 fetcht 2 ,mem_context_ptr 
+0x3295 001709 arg context_traverse_clearkey ,regc 
+0x3296 001710 branch context_search 
+:      001714 context_search_conn_handle:
+0x3297 001715 fetcht 1 ,mem_hci_conn_handle 
+:      001716 context_search_conn_handle2:
+0x3298 001717 arg context_search_handle ,regc 
+0x3299 001718 branch context_search 
+:      001720 context_search_plap:
+0x329a 001721 set0 mark_ext_patch ,mark 
+0x329b 001722 bpatch patch05_6 ,mem_patch05 
+0x329c 001723 fetcht 6 ,mem_hci_plap 
+:      001724 context_search_plap2:
+0x329d 001725 arg context_search_lap ,regc 
+0x329e 001726 branch context_search 
+:      001728 context_search_insniff:
+0x329f 001729 arg context_search_sniff ,regc 
+0x32a0 001730 branch context_search 
+:      001732 context_search_sniff_window:
+0x32a1 001733 arg context_search_window ,regc 
+:      001734 context_search:
+0x32a2 001735 set0 mark_ext_patch ,mark 
+0x32a3 001736 bpatch patch05_7 ,mem_patch05 
+0x32a4 001737 arg mem_context ,rega 
+0x32a5 001738 fetch 1 ,mem_context_number 
+0x32a6 001739 copy pdata ,loopcnt 
+:      001740 context_search_loop:
+0x32a7 001741 ifetch 1 ,rega 
+0x32a8 001742 copy regc ,pc 
+:      001743 context_search_next:
+0x32a9 001744 increase context_size ,rega 
+0x32aa 001745 loop context_search_loop 
+0x32ab 001746 force 1 ,null 
+0x32ac 001747 rtn 
+:      001749 context_search_empty:
+0x32ad 001750 bbit1 state_inconn ,context_search_next 
+0x32ae 001751 bbit1 state_inpage ,context_search_next 
+0x32af 001752 force 0 ,null 
+0x32b0 001753 rtn 
+:      001755 context_search_lap:
+0x32b1 001756 bbit1 state_inpage ,context_search_lap_cont 
+0x32b2 001757 bbit0 state_inconn ,context_search_next 
+:      001758 context_search_lap_cont:
+0x32b3 001759 add rega ,coffset_plap ,contr 
+0x32b4 001760 ifetch 6 ,contr 
+0x32b5 001761 isub temp ,null 
+0x32b6 001762 rtn zero 
+0x32b7 001763 branch context_search_next 
+:      001765 context_search_handle:
+0x32b8 001766 bbit0 state_inconn ,context_search_next 
+0x32b9 001767 add rega ,coffset_conn_handle ,contr 
+0x32ba 001768 ifetch 1 ,contr 
+0x32bb 001769 isub temp ,null 
+0x32bc 001770 rtn zero 
+0x32bd 001771 branch context_search_next 
+:      001773 context_search_sniff:
+0x32be 001774 bbit0 state_insniff ,context_search_next 
+:      001775 context_search_sniff_loop:
+0x32bf 001776 call context_get_anchor 
+0x32c0 001777 call sign_pdata_temp 
+0x32c1 001778 isub temp ,pdata 
+0x32c2 001779 increase 1 ,pdata 
+0x32c3 001780 branch context_search_sniff_miss ,positive 
+0x32c4 001781 copy contr ,regb 
+0x32c5 001782 store 9 ,mem_temp 
+0x32c6 001783 fetch 1 ,mem_le_sc_calc 
+0x32c7 001784 nbranch context_search_sniff_sc ,blank 
+0x32c8 001785 fetch 9 ,mem_temp 
+0x32c9 001786 copy regb ,contr 
+0x32ca 001787 increase 5 ,pdata 
+0x32cb 001788 branch context_search_meet1 
+:      001789 context_search_sniff_sc:
+0x32cc 001790 fetch 9 ,mem_temp 
+0x32cd 001791 copy regb ,contr 
+0x32ce 001792 increase 20 ,pdata 
+:      001793 context_search_meet1:
+0x32cf 001794 nbranch context_search_next ,positive 
+:      001795 context_search_meet:
+0x32d0 001796 copy temp ,bt_clk 
+0x32d1 001797 call context_next_anchor 
+0x32d2 001798 force 0 ,null 
+0x32d3 001799 rtn 
+:      001802 context_search_sniff_miss:
+0x32d4 001803 iforce regb 
+0x32d5 001804 add rega ,coffset_tsniff ,contr 
+0x32d6 001805 ifetch 2 ,contr 
+0x32d7 001806 branch context_search_meet ,blank 
+0x32d8 001807 call context_next_anchor 
+0x32d9 001808 branch context_search_sniff_loop 
+:      001810 sign_pdata_temp:
+0x32da 001811 rshift16 pdata ,timeup 
+0x32db 001812 rshift8 timeup ,timeup 
+0x32dc 001813 branch sign_pdata_temp_p0 ,zero 
+0x32dd 001814 compare 0xf ,timeup ,0xf 
+0x32de 001815 nrtn true 
+0x32df 001816 rshift16 temp ,timeup 
+0x32e0 001817 rshift8 timeup ,timeup 
+0x32e1 001818 nrtn zero 
+0x32e2 001819 set1 28 ,temp 
+0x32e3 001820 rtn 
+:      001821 sign_pdata_temp_p0:
+0x32e4 001822 rshift16 temp ,timeup 
+0x32e5 001823 rshift8 timeup ,timeup 
+0x32e6 001824 compare 0xf ,timeup ,0xf 
+0x32e7 001825 nrtn true 
+0x32e8 001826 set1 28 ,pdata 
+0x32e9 001827 rtn 
+:      001829 context_check_inconn:
+0x32ea 001830 bbit0 state_inconn ,context_search_next 
+0x32eb 001831 force 0 ,null 
+0x32ec 001832 rtn 
+:      001834 context_check_a_wack:
+0x32ed 001835 bbit0 state_inconn ,context_search_next 
+0x32ee 001836 add rega ,coffset_mode ,contr 
+0x32ef 001837 ifetch 1 ,contr 
+0x32f0 001838 bbit1 mode_le ,context_search_next 
+0x32f1 001839 add rega ,coffset_arq ,contr 
+0x32f2 001840 ifetch 1 ,contr 
+0x32f3 001841 bbit0 wack ,context_search_next 
+0x32f4 001842 force 0 ,null 
+0x32f5 001843 rtn 
+:      001845 context_get_anchor:
+0x32f6 001846 add rega ,coffset_mode ,contr 
+0x32f7 001847 ifetcht 1 ,contr 
+0x32f8 001848 deposit clkn_bt 
+0x32f9 001849 isolate1 mode_master ,temp 
+0x32fa 001850 add rega ,coffset_sniff_anchor ,contr 
+0x32fb 001851 ifetcht 4 ,contr 
+0x32fc 001852 rtn true 
+0x32fd 001853 add rega ,coffset_clk_offset ,contr 
+0x32fe 001854 ifetch 6 ,contr 
+0x32ff 001855 call calc_clke2 
+0x3300 001856 deposit clke_bt 
+0x3301 001857 rtn 
+:      001859 context_next_anchor:
+0x3302 001860 add rega ,coffset_tsniff ,contr 
+0x3303 001861 add rega ,coffset_sniff_anchor ,contw 
+0x3304 001862 ifetch 2 ,contr 
+0x3305 001863 iadd temp ,timeup 
+0x3306 001864 deposit timeup 
+0x3307 001865 istore 4 ,contw 
+0x3308 001866 branch le_context_nexthop 
+:      001869 context_search_window:
+0x3309 001870 bbit0 state_insniff ,context_search_next 
+0x330a 001871 call context_get_anchor 
+0x330b 001872 iadd stop_watch ,pdata 
+0x330c 001873 iadd stop_watch ,pdata 
+0x330d 001874 iadd queue ,pdata 
+0x330e 001875 isub temp ,null 
+0x330f 001876 nbranch context_search_next ,positive 
+0x3310 001877 force 0 ,null 
+0x3311 001878 rtn 
+:      001880 context_traverse_clearkey:
+0x3312 001881 bbit0 state_inconn ,context_search_next 
+0x3313 001882 deposit temp 
+0x3314 001883 isub rega ,null 
+0x3315 001884 branch context_search_next ,null 
+0x3316 001885 add rega ,coffset_mode ,contr 
+0x3317 001886 ifetch 1 ,contr 
+0x3318 001887 bbit1 mode_le ,context_search_next 
+0x3319 001888 ifetch 1 ,rega 
+0x331a 001889 set0 state_linkkey ,pdata 
+0x331b 001890 istore 1 ,rega 
+0x331c 001891 branch context_search_next 
+:      001894 master_conn_send_packet:
+0x331d 001895 set0 mark_ext_patch ,mark 
+0x331e 001896 bpatch patch06_0 ,mem_patch06 
+0x331f 001897 call rf_setup_time_master_slot 
+:      001898 master_send_packet:
+0x3320 001899 add clkn_bt ,1 ,bt_clk 
+0x3321 001900 call fetch_self_bt_adr 
+0x3322 001901 force 0x03 ,freq_mode 
+0x3323 001902 call tx_radio_freq 
+0x3324 001903 call start_transmitter 
+0x3325 001904 call start_tx_native 
+0x3326 001905 call send_access_word 
+0x3327 001906 branch transmit_packet 
+:      001908 master_conn_recv_packet:
+0x3328 001909 set0 mark_ext_patch ,mark 
+0x3329 001910 bpatch patch06_1 ,mem_patch06 
+0x332a 001911 call rf_setup_time_slave_slot 
+:      001912 master_recv_packet:
+0x332b 001913 add clkn_bt ,1 ,bt_clk 
+0x332c 001914 call fetch_self_bt_adr 
+0x332d 001915 force 0x03 ,freq_mode 
+0x332e 001916 call rx_radio_freq 
+0x332f 001917 call init_rx_packet_flags 
+0x3330 001918 call prep_crypt 
+0x3331 001919 call start_rx_native 
+0x3332 001920 call start_receiver 
+:      001921 master_rx_conn_finish_packet:
+0x3333 001922 call wait_access_clkn_rt 
+0x3334 001923 nrtn sync 
+0x3335 001924 call save_rssi 
+0x3336 001925 branch receive_packet 
+:      001929 master_newconn_once:
+0x3337 001930 set0 mark_ext_patch ,mark 
+0x3338 001931 bpatch patch06_2 ,mem_patch06 
+0x3339 001932 fetch 1 ,mem_fhs_am_addr 
+0x333a 001933 iforce am_addr 
+0x333b 001934 force type_poll ,type 
+0x333c 001935 call master_conn_send_packet 
+0x333d 001936 branch master_conn_recv_packet 
+:      001947 inquiry_scan_dispatch:
+0x333e 001948 fetch 1 ,mem_scan_mode 
+0x333f 001949 rtnbit0 inq_scan_mode 
+0x3340 001950 force iscan_interval_timer ,queue 
+0x3341 001951 call timer_check 
+0x3342 001952 nrtn blank 
+0x3343 001953 fetcht 2 ,mem_iscan_window 
+0x3344 001954 force 4 ,queue 
+0x3345 001955 call sniff_check_window 
+0x3346 001956 rtn user 
+0x3347 001957 call inquiry_scan_start 
+0x3348 001958 force iscan_interval_timer ,queue 
+0x3349 001959 fetch 2 ,mem_iscan_interval 
+0x334a 001960 nbranch timer_init ,sync 
+0x334b 001961 random pdata 
+0x334c 001962 iand mask3ff ,pdata 
+0x334d 001963 branch timer_init 
+:      001966 inquiry_scan_start:
+0x334e 001967 set0 mark_ext_patch ,mark 
+0x334f 001968 bpatch patch06_3 ,mem_patch06 
+0x3350 001969 jam 0 ,mem_fhs_am_addr 
+0x3351 001970 disable clknt 
+0x3352 001971 disable attempt 
+0x3353 001972 call afh_clear 
+0x3354 001973 and clkn_bt ,0x1fc ,bt_clk 
+0x3355 001974 force 0x01 ,freq_mode 
+0x3356 001975 call fetch_giac 
+0x3357 001976 call rx_radio_freq 
+0x3358 001977 setflip mark_inquiry_state ,mark 
+0x3359 001978 fetch 1 ,mem_inquiryscan_waitcnt 
+0x335a 001979 increase 1 ,pdata 
+0x335b 001980 store 1 ,mem_inquiryscan_waitcnt 
+0x335c 001981 call fetch_diac 
+0x335d 001982 call start_receiver 
+0x335e 001983 call wait_access_forever 
+0x335f 001984 nrtn sync 
+0x3360 001985 set0 mark_ext_patch ,mark 
+0x3361 001986 bpatch patch06_4 ,mem_patch06 
+0x3362 001987 force 0 ,stop_watch 
+0x3363 001988 call shutdown_radio 
+0x3364 001989 fetch 1 ,mem_inquiryscan_rcvcnt 
+0x3365 001990 increase 1 ,pdata 
+0x3366 001991 store 1 ,mem_inquiryscan_rcvcnt 
+0x3367 001992 call fetch_giac 
+0x3368 001993 call rf_setup_time_slave_slot 
+0x3369 001994 or_into 0x002 ,bt_clk 
+0x336a 001995 force 0x01 ,freq_mode 
+0x336b 001996 call tx_radio_freq 
+0x336c 001997 call fetch_diac 
+0x336d 001998 call start_transmitter 
+0x336e 001999 call start_tx_external 
+0x336f 002000 deposit clkn_bt 
+0x3370 002001 store 4 ,mem_clkn_bt 
+0x3371 002002 call send_access_word 
+0x3372 002003 force type_fhs ,type 
+0x3373 002004 force 0 ,am_addr 
+0x3374 002005 call scan_mode_whiten 
+0x3375 002006 call transmit_packet_whitened 
+0x3376 002007 call send_eir 
+0x3377 002008 and_into 0x1fd ,bt_clk 
+0x3378 002009 increase 1 ,n_tx_slot 
+0x3379 002010 rtn 
+:      002012 send_eir:
+0x337a 002013 set0 mark_ext_patch ,mark 
+0x337b 002014 bpatch patch06_5 ,mem_patch06 
+0x337c 002015 fetch 1 ,mem_eir_enable 
+0x337d 002016 rtn blank 
+0x337e 002017 arg mem_eir ,contw 
+0x337f 002018 fetch 1 ,mem_local_name_length 
+0x3380 002019 copy pdata ,loopcnt 
+0x3381 002020 increase 1 ,pdata 
+0x3382 002021 istore 1 ,contw 
+0x3383 002022 copy contw ,temp 
+0x3384 002023 increase 1 ,pdata 
+0x3385 002024 store 2 ,mem_tx_len 
+0x3386 002025 copy temp ,contw 
+0x3387 002026 setarg 0x09 
+0x3388 002027 istore 1 ,contw 
+0x3389 002028 arg mem_local_name ,contr 
+0x338a 002029 call memcpy 
+0x338b 002031 arg mem_all_uuid_128bits ,regc 
+0x338c 002032 arg 4 ,loopcnt 
+0x338d 002033 call get_all_uuid 
+0x338e 002034 arg mem_all_uuid_16bits ,regc 
+0x338f 002035 arg 1 ,loopcnt 
+0x3390 002036 call get_all_uuid 
+0x3391 002038 force type_dm3 ,type 
+0x3392 002039 jam 2 ,mem_tx_lch 
+0x3393 002040 setarg mem_eir 
+0x3394 002041 store 2 ,mem_txptr 
+0x3395 002042 call rf_setup_time_slave_slot 
+0x3396 002043 call tx_radio_freq 
+0x3397 002044 call start_transmitter 
+0x3398 002045 call start_tx_external 
+0x3399 002046 call send_access_word 
+0x339a 002047 call scan_mode_whiten 
+0x339b 002048 call transmit_packet_whitened 
+0x339c 002049 rtn 
+:      002052 get_all_uuid:
+0x339d 002053 copy contw ,temp 
+0x339e 002054 copy regc ,contr 
+0x339f 002055 ifetch 1 ,contr 
+0x33a0 002056 rtn blank 
+:      002057 lshift_loop:
+0x33a1 002058 lshift pdata ,pdata 
+0x33a2 002059 loop lshift_loop 
+0x33a3 002060 copy pdata ,rega 
+0x33a4 002061 increase 2 ,pdata 
+0x33a5 002062 copy pdata ,queue 
+0x33a6 002063 fetch 2 ,mem_tx_len 
+0x33a7 002064 iadd queue ,pdata 
+0x33a8 002065 store 2 ,mem_tx_len 
+0x33a9 002066 copy temp ,contw 
+0x33aa 002067 copy rega ,pdata 
+0x33ab 002068 increase 1 ,pdata 
+0x33ac 002069 istore 1 ,contw 
+0x33ad 002070 copy regc ,contr 
+0x33ae 002071 ifetch 1 ,contr 
+0x33af 002072 ifetch 1 ,contr 
+0x33b0 002073 istore 1 ,contw 
+0x33b1 002074 copy rega ,loopcnt 
+0x33b2 002075 branch memcpy 
+:      002081 page_scan_dispatch:
+0x33b3 002082 fetch 1 ,mem_scan_mode 
+0x33b4 002083 rtnbit0 page_scan_mode 
+0x33b5 002084 force pscan_interval_timer ,queue 
+0x33b6 002085 call timer_check 
+0x33b7 002086 nrtn blank 
+0x33b8 002087 fetcht 2 ,mem_pscan_window 
+0x33b9 002088 force 40 ,queue 
+0x33ba 002089 call sniff_check_window 
+0x33bb 002090 rtn user 
+0x33bc 002091 force 0 ,am_addr 
+0x33bd 002092 jam param_pagerespto ,mem_fhs_wait_counter 
+0x33be 002093 set0 mark_fhs_already_good ,mark 
+0x33bf 002094 call page_scan_start 
+0x33c0 002095 force pscan_interval_timer ,queue 
+0x33c1 002096 fetch 2 ,mem_pscan_interval 
+0x33c2 002097 branch timer_init 
+:      002100 page_scan_start:
+0x33c3 002101 set0 mark_ext_patch ,mark 
+0x33c4 002102 bpatch patch06_6 ,mem_patch06 
+0x33c5 002103 disable clknt 
+0x33c6 002104 call afh_clear 
+0x33c7 002105 fetch 1 ,mem_pagescan_waitcnt 
+0x33c8 002106 increase 1 ,pdata 
+0x33c9 002107 store 1 ,mem_pagescan_waitcnt 
+0x33ca 002108 force 0 ,n_tx_slot 
+0x33cb 002109 call fetch_self_bt_adr 
+0x33cc 002110 add clkn_bt ,1 ,bt_clk 
+0x33cd 002111 force 0x02 ,freq_mode 
+0x33ce 002112 set0 mark_ext_patch ,mark 
+0x33cf 002113 bpatch patch06_7 ,mem_patch06 
+0x33d0 002114 call rx_radio_freq 
+0x33d1 002115 call start_receiver 
+0x33d2 002116 call wait_access_forever 
+0x33d3 002117 nrtn sync 
+0x33d4 002118 call shutdown_radio 
+0x33d5 002119 fetch 1 ,mem_pagescan_rcvcnt 
+0x33d6 002120 increase 1 ,pdata 
+0x33d7 002121 store 1 ,mem_pagescan_rcvcnt 
+0x33d8 002122 force 0 ,stop_watch 
+0x33d9 002123 call rf_setup_time_slave_slot 
+0x33da 002124 or_into 0x002 ,bt_clk 
+0x33db 002125 force 0x01 ,freq_mode 
+0x33dc 002126 call tx_radio_freq 
+0x33dd 002127 call start_transmitter 
+0x33de 002128 call start_tx_external 
+0x33df 002129 call send_access_word 
+0x33e0 002130 call end_of_packet 
+0x33e1 002131 force 0 ,am_addr 
+0x33e2 002132 arg param_rf_setup ,timeup 
+0x33e3 002133 until clke_rt ,meet 
+0x33e4 002134 or_into 0x03 ,clke_bt 
+0x33e5 002135 and_into 0x1fd ,bt_clk 
+:      002136 page_scan_wait_fhs_restart:
+0x33e6 002137 set0 mark_ext_patch ,mark 
+0x33e7 002138 bpatch patch07_0 ,mem_patch07 
+0x33e8 002139 increase 1 ,n_tx_slot 
+0x33e9 002140 call rx_radio_freq 
+0x33ea 002141 call start_receiver 
+0x33eb 002142 call wait_access_mhalfbnd 
+0x33ec 002143 nbranch page_scan_wait_fhs_again ,sync 
+0x33ed 002144 call scan_mode_whiten 
+0x33ee 002145 call receive_packet_whitened 
+0x33ef 002146 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+:      002147 page_scan_wait_fhs_again:
+0x33f0 002148 set0 mark_ext_patch ,mark 
+0x33f1 002149 bpatch patch07_1 ,mem_patch07 
+0x33f2 002150 fetch 1 ,mem_fhs_wait_counter 
+0x33f3 002151 rtn blank 
+0x33f4 002152 increase -1 ,pdata 
+0x33f5 002153 store 1 ,mem_fhs_wait_counter 
+0x33f6 002154 call rf_setup_time_master_slot 
+0x33f7 002155 branch page_scan_wait_fhs_restart 
+:      002158 page_scan_reply_to_fhs:
+0x33f8 002159 set0 mark_ext_patch ,mark 
+0x33f9 002160 bpatch patch07_2 ,mem_patch07 
+0x33fa 002161 set0 1 ,clke_bt 
+0x33fb 002162 set1 0 ,clke_bt 
+0x33fc 002163 fetch 1 ,mem_pagescan_rcvfhscnt 
+0x33fd 002164 increase 1 ,pdata 
+0x33fe 002165 store 1 ,mem_pagescan_rcvfhscnt 
+0x33ff 002166 call rf_setup_time_slave_slot 
+0x3400 002167 or_into 0x02 ,bt_clk 
+0x3401 002168 call tx_radio_freq 
+0x3402 002169 call start_transmitter 
+0x3403 002170 call start_tx_external 
+0x3404 002171 call send_access_word 
+0x3405 002172 call end_of_packet 
+:      002173 slave_apply_clke_bt:
+0x3406 002174 compare 0x03 ,clke_bt ,0x03 
+0x3407 002175 branch slave_apply_clke_bt_now ,true 
+0x3408 002176 until null ,mhalfbnd 
+0x3409 002177 branch slave_apply_clke_bt 
+:      002178 slave_apply_clke_bt_now:
+0x340a 002179 fetch 4 ,mem_clke_bt 
+0x340b 002180 or_into 0x03 ,pdata 
+0x340c 002181 icopy clke_bt 
+:      002183 start_slave_connection:
+0x340d 002184 set0 mark_ext_patch ,mark 
+0x340e 002185 bpatch patch07_3 ,mem_patch07 
+0x340f 002186 fetch 6 ,extm_lap 
+0x3410 002187 store 6 ,mem_plap 
+0x3411 002188 call prepare_newconn 
+:      002189 slave_newconn_loop:
+0x3412 002190 call slave_newconn_once 
+0x3413 002191 branch sconn_successful ,match 
+0x3414 002192 call new_conn_timeout 
+0x3415 002193 nbranch slave_newconn_loop ,blank 
+0x3416 002194 rtn 
+:      002197 sconn_successful:
+0x3417 002198 set0 mark_ext_patch ,mark 
+0x3418 002199 bpatch patch07_4 ,mem_patch07 
+0x3419 002200 call newconn_init 
+0x341a 002201 call context_new 
+0x341b 002202 nrtn zero 
+0x341c 002203 jam 0 ,mem_mode 
+0x341d 002204 call calc_clke_offset 
+0x341e 002205 branch context_save 
+:      002208 slave_dispatch:
+0x341f 002209 set0 mark_ext_patch ,mark 
+0x3420 002210 bpatch patch07_5 ,mem_patch07 
+0x3421 002211 call calc_clke 
+0x3422 002212 call role_switch_slave 
+0x3423 002213 rtn user 
+:      002214 slave_loop:
+0x3424 002215 set0 mark_ext_patch ,mark 
+0x3425 002216 bpatch patch07_6 ,mem_patch07 
+0x3426 002217 call check_bt_disabled 
+0x3427 002218 call scheduler_process 
+0x3428 002219 call slave_conn_recv_packet 
+0x3429 002220 nbranch slave_notmatch ,match 
+0x342a 002221 call supervision_flush 
+0x342b 002222 call scheduler_tx_l2cap_pkt 
+0x342c 002223 call prepare_tx 
+0x342d 002224 call slave_conn_send_packet 
+0x342e 002225 call parse_l2cap 
+0x342f 002226 call parse_lmp 
+0x3430 002227 fetch 1 ,mem_slave_rcvcnt 
+0x3431 002228 increase 1 ,pdata 
+0x3432 002229 store 1 ,mem_slave_rcvcnt 
+0x3433 002230 call calc_clke_offset 
+:      002231 slave_notmatch:
+0x3434 002232 set0 mark_ext_patch ,mark 
+0x3435 002233 bpatch patch07_7 ,mem_patch07 
+0x3436 002234 call lpm_set_mult 
+0x3437 002235 call supervision_update 
+0x3438 002236 branch slave_disconnect ,positive 
+0x3439 002237 call check_disconnect_timeout 
+0x343a 002238 nbranch slave_disconnect ,user 
+0x343b 002239 call check_attempt 
+0x343c 002240 nbranch slave_loop ,blank 
+0x343d 002241 rtn 
+:      002243 slave_disconnect:
+0x343e 002244 set0 mark_ext_patch ,mark 
+0x343f 002245 bpatch patch08_0 ,mem_patch08 
+0x3440 002246 jam 0 ,mem_tester_emulate 
+0x3441 002247 jam 0 ,mem_debug_config 
+0x3442 002248 call quit_connection 
+0x3443 002249 set0 mark_testmode ,mark 
+0x3444 002250 call test_enable_white 
+0x3445 002251 fetch 1 ,mem_state 
+0x3446 002252 rtn 
+:      002255 role_switch_slave:
+0x3447 002256 set0 mark_ext_patch ,mark 
+0x3448 002257 bpatch patch08_1 ,mem_patch08 
+0x3449 002258 call role_switch_check 
+0x344a 002259 nrtn user 
+0x344b 002260 copy am_addr ,temp 
+0x344c 002261 call get_free_amaddr 
+0x344d 002262 store 1 ,mem_fhs_am_addr 
+0x344e 002263 copy temp ,am_addr 
+0x344f 002264 jam param_newconnto ,mem_newconnto_counter 
+:      002265 roles_sendfhs_loop:
+0x3450 002266 set0 mark_ext_patch ,mark 
+0x3451 002267 bpatch patch08_2 ,mem_patch08 
+0x3452 002268 call rf_setup_time_master_slot 
+0x3453 002269 force type_fhs ,type 
+0x3454 002270 call slave_send_access 
+0x3455 002271 deposit clkn_bt 
+0x3456 002272 store 4 ,mem_clkn_bt 
+0x3457 002273 call transmit_packet 
+0x3458 002274 call rf_setup_time_slave_slot 
+0x3459 002275 enable user3 
+0x345a 002276 call slave_receive_access 
+0x345b 002277 branch roles_got_fhs_reply ,sync 
+0x345c 002278 call shutdown_radio 
+0x345d 002279 call new_conn_timeout 
+0x345e 002280 nbranch roles_sendfhs_loop ,blank 
+0x345f 002281 rtnmark0 mark_accept_switch 
+0x3460 002282 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x3461 002283 set1 mark_switch_initiated ,mark 
+0x3462 002284 rtn 
+:      002285 roles_got_fhs_reply:
+0x3463 002286 enable clknt 
+0x3464 002287 call prepare_newconn 
+0x3465 002288 call afh_clear 
+:      002289 roles_newconn_loop:
+0x3466 002290 set0 mark_ext_patch ,mark 
+0x3467 002291 bpatch patch08_3 ,mem_patch08 
+0x3468 002292 call master_newconn_once 
+0x3469 002293 branch roles_newconn_responded ,sync 
+0x346a 002294 call new_conn_timeout 
+0x346b 002295 nbranch roles_newconn_loop ,blank 
+0x346c 002296 disable clknt 
+0x346d 002297 deposit clke_bt 
+0x346e 002298 store 4 ,mem_next_btclk 
+0x346f 002299 rtn 
+:      002300 roles_newconn_responded:
+0x3470 002301 enable master 
+0x3471 002302 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+0x3472 002303 set0 mark_accept_switch ,mark 
+0x3473 002304 jam lmp_accepted ,mem_lmo_opcode2 
+0x3474 002305 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x3475 002306 call tid_set_reply 
+:      002307 roles_newconn_nolmp:
+0x3476 002308 deposit am_addr 
+0x3477 002309 store 1 ,mem_amaddr 
+0x3478 002310 force 0 ,pdata 
+0x3479 002311 store 6 ,mem_clk_offset 
+0x347a 002312 fetch 1 ,mem_mode 
+0x347b 002313 set1 mode_master ,pdata 
+0x347c 002314 store 1 ,mem_mode 
+0x347d 002315 call supervision_flush 
+0x347e 002316 disable master 
+0x347f 002317 enable user 
+0x3480 002318 rtn 
+:      002322 init_rx_packet_flags:
+0x3481 002323 set0 mark_ext_patch ,mark 
+0x3482 002324 bpatch patch08_4 ,mem_patch08 
+0x3483 002325 disable match 
+0x3484 002326 set0 mark_loopback ,mark 
+0x3485 002327 set0 mark_am_addr_broadcast ,mark 
+0x3486 002328 set0 mark_longpacket ,mark 
+0x3487 002329 set0 mark_old_packet ,mark 
+0x3488 002330 fetch 1 ,mem_arq 
+0x3489 002331 set0 arqnx ,pdata 
+0x348a 002332 set1 flowx ,pdata 
+0x348b 002333 store 1 ,mem_arq 
+0x348c 002334 rtn 
+:      002336 prepare_newconn:
+0x348d 002337 set0 mark_ext_patch ,mark 
+0x348e 002338 bpatch patch08_5 ,mem_patch08 
+0x348f 002339 jam param_newconnto ,mem_newconnto_counter 
+0x3490 002340 jam param_newconn_arq ,mem_arq 
+0x3491 002341 fetch 2 ,mem_rx_window_init 
+0x3492 002342 store 2 ,mem_rx_window 
+0x3493 002343 deposit clkn_bt 
+0x3494 002344 store 4 ,mem_next_btclk 
+0x3495 002345 rtn clknt 
+0x3496 002346 deposit clke_bt 
+0x3497 002347 store 4 ,mem_next_btclk 
+0x3498 002348 rtn 
+:      002350 newconn_init:
+0x3499 002351 set0 mark_ext_patch ,mark 
+0x349a 002352 bpatch patch08_6 ,mem_patch08 
+0x349b 002353 call init_lmp_reinit 
+0x349c 002354 call new_conn_handle 
+0x349d 002355 store 1 ,mem_conn_handle 
+0x349e 002356 setarg 0 
+0x349f 002357 store 2 ,mem_l2cap_rxbuff1_len 
+0x34a0 002358 setarg param_supervision_to 
+0x34a1 002359 store 2 ,mem_supervision_to 
+0x34a2 002360 fetch 1 ,mem_state 
+0x34a3 002361 set1 state_inconn ,pdata 
+0x34a4 002362 store 1 ,mem_state 
+0x34a5 002363 jam 0 ,mem_op 
+0x34a6 002364 jam 0 ,mem_state_map 
+0x34a7 002365 jam 0 ,mem_lpm_current_mult 
+0x34a8 002366 branch supervision_flush 
+:      002369 clear_linkkey:
+0x34a9 002370 set0 mark_ext_patch ,mark 
+0x34aa 002371 bpatch patch08_7 ,mem_patch08 
+0x34ab 002372 force 0 ,pdata 
+0x34ac 002373 store 8 ,mem_link_key 
+0x34ad 002374 istore 8 ,contw 
+0x34ae 002375 call clear_linkstate 
+0x34af 002376 branch context_traverse_linkkey 
+:      002378 new_conn_timeout:
+0x34b0 002379 fetch 1 ,mem_newconnto_counter 
+0x34b1 002380 increase -1 ,pdata 
+0x34b2 002381 store 1 ,mem_newconnto_counter 
+0x34b3 002382 rtn 
+:      002384 new_conn_handle:
+0x34b4 002385 fetch 1 ,mem_handle_num 
+0x34b5 002386 increase 1 ,pdata 
+0x34b6 002387 store 1 ,mem_handle_num 
+0x34b7 002388 rtn 
+:      002391 quit_connection:
+0x34b8 002392 set0 mark_ext_patch ,mark 
+0x34b9 002393 bpatch patch09_0 ,mem_patch09 
+0x34ba 002394 fetch 1 ,mem_hci_cmd 
+0x34bb 002395 beq hci_cmd_remote_name_req ,quit_connection_name 
+0x34bc 002396 fetch 1 ,mem_lmp_to_send 
+0x34bd 002397 bne lmp_name_req ,quit_connection_cont 
+:      002398 quit_connection_name:
+0x34be 002399 call cmd_check_plap 
+0x34bf 002400 nbranch quit_connection_cont ,zero 
+0x34c0 002401 call master_name_error 
+0x34c1 002402 jam 0 ,mem_hci_cmd 
+:      002403 quit_connection_cont:
+0x34c2 002404 set0 mark_ext_patch ,mark 
+0x34c3 002405 bpatch patch09_1 ,mem_patch09 
+0x34c4 002406 call app_disconn_reason_collect_bt 
+0x34c5 002407 call sniff_exit 
+0x34c6 002408 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+0x34c7 002409 call ui_ipc_send_event 
+0x34c8 002410 call init_lmp_work 
+0x34c9 002411 call l2cap_init_work 
+0x34ca 002412 call sp_initialize 
+0x34cb 002413 fetch 1 ,mem_state 
+0x34cc 002414 set0 state_inconn 
+0x34cd 002415 store 1 ,mem_state 
+0x34ce 002416 jam 0 ,memui_reconnect_mode 
+0x34cf 002418 fetch 1 ,mem_state_map 
+0x34d0 002419 compare 0x0 ,pdata ,0xc0 
+0x34d1 002420 branch quit_connection_not_clear_mark ,true 
+0x34d2 002421 set0 mark_rxbuf_inuse ,mark 
+:      002422 quit_connection_not_clear_mark:
+0x34d3 002423 fetch 1 ,mem_arq 
+0x34d4 002424 bbit0 wack ,quit_connection_not_clear_tx 
+:      002425 quit_connection_not_clear_tx:
+0x34d5 002426 fetch 1 ,mem_op 
+0x34d6 002427 rtnbit0 op_txl2cap 
+0x34d7 002428 set0 mark_tx_l2cap ,mark 
+0x34d8 002429 rtn 
+:      002431 slave_newconn_once:
+0x34d9 002432 set0 mark_ext_patch ,mark 
+0x34da 002433 bpatch patch09_2 ,mem_patch09 
+0x34db 002434 fetch 1 ,extm_newconn_am_addr 
+0x34dc 002435 rtn blank 
+0x34dd 002436 icopy am_addr 
+0x34de 002437 call slave_conn_recv_packet 
+0x34df 002438 nrtn match 
+0x34e0 002439 force type_null ,type 
+0x34e1 002440 call slave_conn_send_packet 
+0x34e2 002441 deposit am_addr 
+0x34e3 002442 store 1 ,mem_amaddr 
+0x34e4 002443 force 0 ,pdata 
+0x34e5 002444 store 1 ,extm_newconn_am_addr 
+0x34e6 002445 rtn 
+:      002451 prepare_tx:
+0x34e7 002452 set0 mark_ext_patch ,mark 
+0x34e8 002453 bpatch patch09_3 ,mem_patch09 
+0x34e9 002454 fetch 1 ,mem_state 
+0x34ea 002455 bbit0 state_insco ,prepare_tx_not_sco 
+0x34eb 002456 force type_hv3 ,type 
+0x34ec 002457 bmark0 mark_esco ,prepare_tx_not_esco 
+0x34ed 002458 call check_esco_amaddr 
+0x34ee 002459 nbranch prepare_tx_not_sco ,true 
+0x34ef 002460 branch prepare_tx_not_sco ,attempt 
+0x34f0 002461 call set_wait_ack 
+0x34f1 002462 setarg 2 
+0x34f2 002463 store 2 ,mem_retransmission_cnt 
+0x34f3 002464 rtn 
+:      002465 prepare_tx_not_esco:
+0x34f4 002466 nrtn attempt 
+:      002467 prepare_tx_not_sco:
+0x34f5 002468 set0 mark_ext_patch ,mark 
+0x34f6 002469 bpatch patch09_4 ,mem_patch09 
+0x34f7 002470 call context_check_all_wack 
+0x34f8 002471 nbranch prepare_tx_no_retransmit ,zero 
+0x34f9 002472 fetch 1 ,mem_arq 
+0x34fa 002473 bbit0 wack ,prepare_tx_pollnull 
+:      002474 prepare_tx_retransmit:
+0x34fb 002475 bmark1 mark_loopback ,prepare_tx_loopback 
+0x34fc 002476 fetch 1 ,mem_debug_config 
+0x34fd 002477 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+0x34fe 002478 fetch 2 ,mem_retransmission_cnt 
+0x34ff 002479 increase -1 ,pdata 
+0x3500 002480 store 2 ,mem_retransmission_cnt 
+0x3501 002481 branch prepare_tx_nomore_retransmit ,blank 
+0x3502 002482 fetch 1 ,mem_last_type 
+0x3503 002483 iforce type 
+0x3504 002484 rtn 
+:      002486 prepare_tx_nomore_retransmit:
+0x3505 002487 set0 mark_ext_patch ,mark 
+0x3506 002488 bpatch patch09_5 ,mem_patch09 
+0x3507 002489 call clear_got_tx 
+:      002490 prepare_tx_no_retransmit:
+0x3508 002491 call check_esco_amaddr 
+0x3509 002492 branch prepare_tx_pollnull ,true 
+0x350a 002493 call send_lmp 
+0x350b 002494 branch prepare_tx_sendlmp ,user 
+0x350c 002495 fetch 1 ,mem_op 
+0x350d 002496 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+0x350e 002497 bmark1 mark_loopback ,prepare_tx_loopback 
+0x350f 002498 fetch 1 ,mem_debug_config 
+0x3510 002499 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+:      002500 prepare_tx_pollnull:
+0x3511 002501 force type_poll ,type 
+0x3512 002502 rtn master 
+0x3513 002503 force type_null ,type 
+0x3514 002504 rtn 
+:      002505 prepare_tx_loopback:
+0x3515 002506 set0 mark_ext_patch ,mark 
+0x3516 002507 bpatch patch09_6 ,mem_patch09 
+0x3517 002508 fetch 1 ,mem_rx_type 
+0x3518 002509 iforce type 
+0x3519 002510 rtnne 1 
+0x351a 002511 force type_null ,type 
+0x351b 002512 rtn 
+:      002513 prepare_tx_txpat:
+0x351c 002514 fetch 1 ,test_mode_packet_type 
+0x351d 002515 and pdata ,0xf ,type 
+0x351e 002516 set1 mark_loopback ,mark 
+0x351f 002517 rtn 
+:      002518 prepare_tx_sendlmp:
+0x3520 002519 force type_lmp ,type 
+0x3521 002520 branch set_wait_ack 
+:      002521 prepare_tx_sendl2cap:
+0x3522 002522 call tx_l2cap_type 
+:      002524 set_wait_ack:
+0x3523 002525 set0 mark_ext_patch ,mark 
+0x3524 002526 bpatch patch09_7 ,mem_patch09 
+0x3525 002527 fetcht 1 ,mem_arq 
+0x3526 002528 set1 wack ,temp 
+0x3527 002529 storet 1 ,mem_arq 
+0x3528 002530 deposit type 
+0x3529 002531 store 1 ,mem_last_type 
+0x352a 002532 setarg 0xffff 
+0x352b 002533 store 2 ,mem_retransmission_cnt 
+0x352c 002534 rtn 
+:      002536 tx_l2cap_type:
+0x352d 002537 set0 mark_ext_patch ,mark 
+0x352e 002538 bpatch patch0a_0 ,mem_patch0a 
+0x352f 002539 fetch 1 ,mem_state_map 
+0x3530 002540 isolate1 smap_edr ,pdata 
+0x3531 002541 fetch 2 ,mem_tx_len 
+0x3532 002542 branch tx_l2cap_type_edr ,true 
+0x3533 002543 force type_dm1 ,type 
+0x3534 002544 sub pdata ,17 ,null 
+0x3535 002545 rtn positive 
+0x3536 002546 force type_dh1 ,type 
+0x3537 002547 sub pdata ,27 ,null 
+0x3538 002548 rtn positive 
+0x3539 002549 force type_dm3 ,type 
+0x353a 002550 sub pdata ,121 ,null 
+0x353b 002551 rtn positive 
+0x353c 002552 force type_dh3 ,type 
+0x353d 002553 sub pdata ,183 ,null 
+0x353e 002554 rtn positive 
+0x353f 002555 force type_dm5 ,type 
+0x3540 002556 sub pdata ,224 ,null 
+0x3541 002557 rtn positive 
+0x3542 002558 force type_dh5 ,type 
+0x3543 002559 rtn 
+:      002560 tx_l2cap_type_edr:
+0x3544 002561 force type_dm1 ,type 
+0x3545 002562 sub pdata ,17 ,null 
+0x3546 002563 rtn positive 
+0x3547 002564 force type_dh1 ,type 
+0x3548 002565 sub pdata ,54 ,null 
+0x3549 002566 rtn positive 
+0x354a 002567 force type_dm3 ,type 
+0x354b 002568 arg 367 ,temp 
+0x354c 002569 isub temp ,null 
+0x354d 002570 nrtn positive 
+0x354e 002571 force type_dm5 ,type 
+0x354f 002572 arg 679 ,temp 
+0x3550 002573 isub temp ,null 
+0x3551 002574 nrtn positive 
+0x3552 002575 force type_dh5 ,type 
+0x3553 002576 rtn 
+:      002585 slave_receive_master_slot:
+0x3554 002586 fetch 1 ,mem_state 
+0x3555 002587 bbit0 state_insniff ,slave_receive_notsniff 
+0x3556 002588 fetch 2 ,mem_tsniff 
+0x3557 002589 branch slave_receive_notsniff ,blank 
+0x3558 002590 nbranch slave_receive_sniff ,attempt 
+:      002591 slave_receive_notsniff:
+0x3559 002592 call rf_setup_time_master_slot 
+:      002593 slave_receive_access:
+0x355a 002594 add clke_bt ,1 ,bt_clk 
+:      002595 slave_receive_sniff:
+0x355b 002596 enable swfine 
+0x355c 002597 fetch 2 ,mem_rx_window 
+0x355d 002598 rshift pdata ,pdata 
+0x355e 002599 arg param_pll_setup ,temp 
+0x355f 002600 iadd temp ,pdata 
+0x3560 002601 call ahead_window 
+0x3561 002602 call fetch_extm_bt_adr 
+0x3562 002603 force 0x03 ,freq_mode 
+0x3563 002604 call rx_radio_freq 
+0x3564 002605 call init_rx_packet_flags 
+0x3565 002606 call prep_crypt 
+0x3566 002607 set0 mark_ext_patch ,mark 
+0x3567 002608 bpatch patch0a_1 ,mem_patch0a 
+0x3568 002609 fetch 2 ,mem_rx_window 
+0x3569 002610 rshift pdata ,pdata 
+0x356a 002611 call ahead_window 
+0x356b 002612 call start_receiver 
+0x356c 002613 enable decode_fec0 
+0x356d 002614 fetch 2 ,mem_rx_window 
+0x356e 002615 arg param_clke_cal ,temp 
+0x356f 002616 iadd temp ,stop_watch 
+0x3570 002617 correlate null ,timeout 
+0x3571 002618 copy clke ,temp 
+0x3572 002619 storet 6 ,mem_sync_clke 
+0x3573 002620 disable decode_fec0 
+0x3574 002621 nrtn sync 
+0x3575 002622 arg param_clke_cal ,clke_rt 
+0x3576 002623 copy bt_clk ,clke_bt 
+0x3577 002624 branch lpm_adjust_clk ,wake 
+0x3578 002625 rtn 
+:      002628 slave_conn_recv_packet:
+0x3579 002629 set0 mark_ext_patch ,mark 
+0x357a 002630 bpatch patch0a_2 ,mem_patch0a 
+0x357b 002631 call slave_receive_master_slot 
+0x357c 002632 nbranch shutdown_radio ,sync 
+0x357d 002633 call save_rssi 
+0x357e 002634 bmark0 mark_testmode ,receive_packet 
+0x357f 002635 fetch 2 ,mem_tst_pktcnt_sync 
+0x3580 002636 increase 1 ,pdata 
+0x3581 002637 store 2 ,mem_tst_pktcnt_sync 
+:      002638 receive_packet:
+0x3582 002639 rshift bt_clk ,temp 
+0x3583 002640 or temp ,0x40 ,white_init 
+:      002641 receive_packet_whitened:
+0x3584 002642 set0 mark_ext_patch ,mark 
+0x3585 002643 bpatch patch0a_3 ,mem_patch0a 
+0x3586 002644 enable enable_white 
+0x3587 002645 enable enable_hec 
+0x3588 002646 enable decode_fec1 
+0x3589 002647 parse demod ,bucket ,3 
+0x358a 002648 rshift8 pwindow ,pdata 
+0x358b 002649 store 1 ,mem_temp_am_addr 
+0x358c 002650 parse demod ,bucket ,4 
+0x358d 002651 inject bucket ,7 
+0x358e 002652 copy pwindow ,pdata 
+0x358f 002653 store 1 ,mem_rx_type 
+0x3590 002654 parse demod ,bucket ,3 
+0x3591 002655 rshift8 pwindow ,pdata 
+0x3592 002656 store 1 ,mem_temp_arq 
+0x3593 002657 fetch 1 ,mem_rx_type 
+0x3594 002658 sub pdata ,3 ,null 
+0x3595 002659 branch receive_packet_noedr ,positive 
+0x3596 002660 beq 7 ,receive_packet_noedr 
+0x3597 002661 fetch 1 ,mem_state_map 
+0x3598 002662 isolate1 smap_edr ,pdata 
+0x3599 002663 setflag true ,psk ,radio_ctrl 
+:      002664 receive_packet_noedr:
+0x359a 002665 set0 mark_ext_patch ,mark 
+0x359b 002666 bpatch patch0a_4 ,mem_patch0a 
+0x359c 002667 parse demod ,bucket ,8 
+0x359d 002668 disable decode_fec1 
+0x359e 002669 disable enable_hec 
+0x359f 002670 branch error_header ,crc_failed 
+0x35a0 002671 bmark0 mark_testmode ,receive_packet_amchk 
+0x35a1 002672 fetch 2 ,mem_tst_pktcnt_hec 
+0x35a2 002673 increase 1 ,pdata 
+0x35a3 002674 store 2 ,mem_tst_pktcnt_hec 
+:      002675 receive_packet_amchk:
+0x35a4 002676 set0 mark_ext_patch ,mark 
+0x35a5 002677 bpatch patch0a_5 ,mem_patch0a 
+0x35a6 002678 fetch 1 ,mem_temp_am_addr 
+0x35a7 002679 compare 0 ,pdata ,0x07 
+0x35a8 002680 setflag true ,mark_am_addr_broadcast ,mark 
+0x35a9 002681 branch am_addr_ok ,true 
+0x35aa 002682 icompare 0x07 ,am_addr 
+0x35ab 002683 branch am_addr_match ,true 
+0x35ac 002684 bmark0 mark_esco ,end_of_packet 
+0x35ad 002685 fetcht 1 ,mem_saved_amaddr 
+0x35ae 002686 icompare 0x7 ,temp 
+0x35af 002687 nbranch end_of_packet ,true 
+0x35b0 002688 fetch 1 ,mem_arq 
+0x35b1 002689 set0 arqnx ,pdata 
+0x35b2 002690 set1 flowx ,pdata 
+0x35b3 002691 store 1 ,mem_arq 
+:      002692 am_addr_match:
+0x35b4 002693 enable match 
+:      002694 am_addr_ok:
+0x35b5 002695 set0 mark_ext_patch ,mark 
+0x35b6 002696 bpatch patch0a_6 ,mem_patch0a 
+0x35b7 002697 fetch 1 ,mem_rx_type 
+0x35b8 002698 icopy type 
+0x35b9 002699 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+0x35ba 002700 fetcht 1 ,mem_temp_arq 
+0x35bb 002701 fetch 1 ,mem_arq 
+0x35bc 002702 set0 flow ,pdata 
+0x35bd 002703 isolate1 flow ,temp 
+0x35be 002704 setflag true ,flow ,pdata 
+0x35bf 002705 isolate1 arqn ,temp 
+0x35c0 002706 setflag true ,arqn ,pdata 
+0x35c1 002707 store 1 ,mem_arq 
+0x35c2 002708 isolate0 arqn ,temp 
+0x35c3 002709 branch arqn_bypass ,true 
+0x35c4 002710 call clear_got_tx 
+:      002711 arqn_bypass:
+0x35c5 002712 set0 mark_ext_patch ,mark 
+0x35c6 002713 bpatch patch0a_7 ,mem_patch0a 
+0x35c7 002714 arg 0 ,temp 
+0x35c8 002715 call reserve_slot 
+0x35c9 002716 and type ,0xf ,pdata 
+0x35ca 002717 beq type_poll ,process_poll 
+0x35cb 002718 beq type_null ,end_of_packet 
+0x35cc 002719 beq type_fhs ,process_fhs 
+0x35cd 002720 fetcht 1 ,mem_temp_arq 
+0x35ce 002721 fetch 1 ,mem_arq 
+0x35cf 002722 icompare 0x04 ,temp 
+0x35d0 002723 nbranch rx_type_dispatch ,true 
+0x35d1 002724 bmark0 mark_am_addr_broadcast ,failed_seqn 
+0x35d2 002725 bbit0 bcast1 ,rx_type_dispatch 
+:      002726 failed_seqn:
+0x35d3 002727 set1 mark_old_packet ,mark 
+:      002728 rx_type_dispatch:
+0x35d4 002729 set0 mark_ext_patch ,mark 
+0x35d5 002730 bpatch patch0b_0 ,mem_patch0b 
+0x35d6 002731 deposit type 
+0x35d7 002732 beq type_dm1 ,process_dm1 
+0x35d8 002733 beq type_dh1 ,process_dh1 
+0x35d9 002734 beq type_hv3 ,process_hev 
+0x35da 002735 beq type_3dh1 ,process_3dh1 
+0x35db 002736 arg 4 ,temp 
+0x35dc 002737 call reserve_slot 
+0x35dd 002738 beq type_dm3 ,process_dm3 
+0x35de 002739 beq type_dh3 ,process_dh3 
+0x35df 002740 arg 8 ,temp 
+0x35e0 002741 call reserve_slot 
+0x35e1 002742 beq type_dm5 ,process_dm5 
+0x35e2 002743 beq type_dh5 ,process_dh5 
+0x35e3 002744 rtn 
+:      002747 process_hev:
+0x35e4 002748 set0 mark_ext_patch ,mark 
+0x35e5 002749 bpatch patch0b_1 ,mem_patch0b 
+0x35e6 002750 enable decode_fec0 
+0x35e7 002751 enable enable_crc 
+0x35e8 002752 enable encrypt 
+0x35e9 002753 arg mem_sco_ibuf ,contw 
+0x35ea 002754 force 30 ,loopcnt 
+:      002755 process_hev_loop:
+0x35eb 002756 parse demod ,bucket ,8 
+0x35ec 002757 rshift3 pwindow ,pdata 
+0x35ed 002758 istore 1 ,contw 
+0x35ee 002759 loop process_hev_loop 
+0x35ef 002760 bmark0 mark_esco ,end_of_packet 
+0x35f0 002761 parse demod ,bucket ,16 
+0x35f1 002762 nsetflag crc_failed ,mark_esco_rxok ,mark 
+0x35f2 002763 branch error_payload ,crc_failed 
+0x35f3 002764 branch ack_payload 
+:      002767 process_poll:
+0x35f4 002768 branch end_of_packet 
+:      002770 process_dm3:
+:      002771 process_dm5:
+0x35f5 002772 set1 mark_longpacket ,mark 
+:      002773 process_dm1:
+0x35f6 002774 enable decode_fec2 
+0x35f7 002775 branch process_dmh 
+:      002777 process_dh3:
+:      002778 process_dh5:
+0x35f8 002779 set1 mark_longpacket ,mark 
+:      002780 process_3dh1:
+0x35f9 002781 set1 psk3m ,radio_ctrl 
+:      002782 process_dh1:
+0x35fa 002783 enable decode_fec0 
+:      002784 process_dmh:
+0x35fb 002785 set0 mark_ext_patch ,mark 
+0x35fc 002786 bpatch patch0b_2 ,mem_patch0b 
+0x35fd 002787 bmark1 mark_rxbuf_inuse ,end_of_packet 
+0x35fe 002788 isolate0 psk ,radio_ctrl 
+0x35ff 002789 branch process_dmh_noedr ,true 
+0x3600 002790 disable enable_white 
+0x3601 002791 enable decode_fec0 
+0x3602 002792 disable decode_fec2 
+0x3603 002793 add clkn_bt ,2 ,timeup 
+0x3604 002794 correlate clkn_bt ,meet 
+0x3605 002795 nbranch error_payload ,sync 
+0x3606 002796 set1 mark_longpacket ,mark 
+0x3607 002797 enable enable_white 
+:      002798 process_dmh_noedr:
+0x3608 002799 set0 mark_ext_patch ,mark 
+0x3609 002800 bpatch patch0b_3 ,mem_patch0b 
+0x360a 002801 enable encrypt 
+0x360b 002802 enable enable_crc 
+0x360c 002803 parse demod ,bucket ,3 
+0x360d 002804 rshift8 pwindow ,pdata 
+0x360e 002805 store 1 ,mem_lch_code 
+0x360f 002806 parse demod ,bucket ,5 
+0x3610 002807 bmark1 mark_longpacket ,process_dmh_long 
+0x3611 002808 rshift3 pwindow ,loopcnt 
+0x3612 002809 rshift3 loopcnt ,loopcnt 
+0x3613 002810 branch process_dmh_common 
+:      002811 process_dmh_long:
+0x3614 002812 parse demod ,bucket ,5 
+0x3615 002813 rshift pwindow ,loopcnt 
+0x3616 002814 parse demod ,bucket ,3 
+:      002815 process_dmh_common:
+0x3617 002816 set0 mark_ext_patch ,mark 
+0x3618 002817 bpatch patch0b_4 ,mem_patch0b 
+0x3619 002818 deposit loopcnt 
+0x361a 002819 store 2 ,mem_len 
+0x361b 002820 branch process_dmh_data_end ,blank 
+0x361c 002821 isub mask3ff ,null 
+0x361d 002822 branch error_payload ,positive 
+0x361e 002823 set0 mark_ext_patch ,mark 
+0x361f 002824 bpatch patch0b_5 ,mem_patch0b 
+0x3620 002825 set0 mark_fhs_eir ,mark 
+0x3621 002826 fetch 1 ,mem_lch_code 
+0x3622 002827 and_into 0x03 ,pdata 
+0x3623 002828 arg mem_rxbuf ,contw 
+0x3624 002829 beq llid_lmp ,process_lmp 
+0x3625 002830 bmark1 mark_testmode ,process_dmh_data 
+0x3626 002832 fetch 1 ,mem_lch_code 
+0x3627 002833 and_into 0x03 ,pdata 
+0x3628 002834 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+0x3629 002835 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+0x362a 002836 branch error_payload 
+:      002838 process_lmp:
+0x362b 002839 fetch 2 ,mem_len 
+0x362c 002840 sub pdata ,0x70 ,null 
+0x362d 002841 nbranch error_payload ,positive 
+0x362e 002842 bmark1 mark_old_packet ,ack_payload 
+0x362f 002843 branch process_dmh_data 
+:      002846 process_dmh_data_l2cap_start_pkt:
+0x3630 002847 set0 mark_ext_patch ,mark 
+0x3631 002848 bpatch patch0b_6 ,mem_patch0b 
+0x3632 002849 bmark1 mark_old_packet ,ack_payload 
+0x3633 002850 fetch 2 ,mem_len 
+0x3634 002851 arg 0x2e0 ,temp 
+0x3635 002852 isub temp ,null 
+0x3636 002853 branch error_payload ,positive 
+0x3637 002854 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3638 002855 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+0x3639 002856 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+0x363a 002857 branch end_of_packet 
+:      002858 process_dmh_data_into_buff1:
+0x363b 002859 jam 1 ,mem_l2cap_rxbuff_new 
+0x363c 002860 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x363d 002861 bne 0 ,end_of_packet 
+0x363e 002862 arg mem_l2cap_rxbuff1 ,contw 
+0x363f 002863 branch process_dmh_data 
+:      002864 process_dmh_data_into_buff2:
+0x3640 002865 jam 2 ,mem_l2cap_rxbuff_new 
+0x3641 002866 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3642 002867 bne 0 ,end_of_packet 
+0x3643 002868 arg mem_l2cap_rxbuff2 ,contw 
+0x3644 002869 branch process_dmh_data 
+:      002871 process_dmh_data_l2cap_continue_pkt:
+0x3645 002872 set0 mark_ext_patch ,mark 
+0x3646 002873 bpatch patch0b_7 ,mem_patch0b 
+0x3647 002874 bmark1 mark_old_packet ,ack_payload 
+0x3648 002875 fetch 2 ,mem_len 
+0x3649 002876 arg 0x2e0 ,temp 
+0x364a 002877 isub temp ,null 
+0x364b 002878 branch error_payload ,positive 
+0x364c 002879 fetch 1 ,mem_l2cap_rxbuff_new 
+0x364d 002880 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+0x364e 002881 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+0x364f 002882 branch end_of_packet 
+:      002883 process_dmh_data_l2cap_continue_pkt1:
+0x3650 002884 arg mem_l2cap_rxbuff1 ,contw 
+0x3651 002885 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3652 002886 iadd contw ,contw 
+0x3653 002887 branch process_dmh_data 
+:      002888 process_dmh_data_l2cap_continue_pkt2:
+0x3654 002889 arg mem_l2cap_rxbuff2 ,contw 
+0x3655 002890 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3656 002891 iadd contw ,contw 
+:      002892 process_dmh_data:
+0x3657 002893 parse demod ,bucket ,8 
+0x3658 002894 rshift3 pwindow ,pdata 
+0x3659 002895 istore 1 ,contw 
+0x365a 002896 loop process_dmh_data 
+:      002897 process_dmh_data_end:
+0x365b 002898 set0 mark_ext_patch ,mark 
+0x365c 002899 bpatch patch0c_0 ,mem_patch0c 
+0x365d 002900 parse demod ,bucket ,16 
+0x365e 002901 branch error_payload_crc ,crc_failed 
+0x365f 002902 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+0x3660 002903 beq l2cap_flow_ctrl_enable ,end_of_packet 
+0x3661 002904 bmark1 mark_testmode ,process_dmh_cont 
+0x3662 002905 bmark1 mark_old_packet ,redundant_payload 
+0x3663 002906 fetch 1 ,mem_lch_code 
+0x3664 002907 compare 3 ,pdata ,3 
+0x3665 002908 branch process_dmh_cont ,true 
+0x3666 002909 fetch 2 ,mem_len 
+0x3667 002910 branch process_dmh_cont ,blank 
+0x3668 002911 set0 mark_ext_patch ,mark 
+0x3669 002912 bpatch patch0c_1 ,mem_patch0c 
+0x366a 002913 fetch 1 ,mem_l2cap_rxbuff_new 
+0x366b 002914 beq 1 ,process_l2cap_pass_crc_buff1 
+0x366c 002915 beq 2 ,process_l2cap_pass_crc_buff2 
+0x366d 002916 branch assert 
+:      002917 process_l2cap_pass_crc_buff1:
+0x366e 002918 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x366f 002919 fetcht 2 ,mem_len 
+0x3670 002920 iadd temp ,pdata 
+0x3671 002921 store 2 ,mem_l2cap_rxbuff1_len 
+0x3672 002922 beq 0 ,assert 
+0x3673 002923 fetcht 2 ,mem_l2cap_rxbuff1 
+0x3674 002924 increase 4 ,temp 
+0x3675 002925 isub temp ,null 
+0x3676 002926 call l2cap_buff1_inuse ,zero 
+0x3677 002927 branch process_dmh_cont 
+:      002928 process_l2cap_pass_crc_buff2:
+0x3678 002929 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3679 002930 fetcht 2 ,mem_len 
+0x367a 002931 iadd temp ,pdata 
+0x367b 002932 store 2 ,mem_l2cap_rxbuff2_len 
+0x367c 002933 beq 0 ,assert 
+0x367d 002934 fetcht 2 ,mem_l2cap_rxbuff2 
+0x367e 002935 add temp ,4 ,temp 
+0x367f 002936 isub temp ,null 
+0x3680 002937 call l2cap_buff2_inuse ,zero 
+0x3681 002938 branch process_dmh_cont 
+:      002939 process_dmh_cont:
+0x3682 002940 set0 mark_ext_patch ,mark 
+0x3683 002941 bpatch patch0c_2 ,mem_patch0c 
+0x3684 002942 fetcht 1 ,mem_state_map 
+0x3685 002943 fetch 1 ,mem_lch_code 
+0x3686 002944 compare 3 ,pdata ,0x03 
+0x3687 002945 setflag true ,smap_rxlmp ,temp 
+0x3688 002946 nsetflag true ,smap_rxl2cap ,temp 
+0x3689 002947 storet 1 ,mem_state_map 
+0x368a 002948 nbranch process_dmh_cont_rxbuf_not_use ,true 
+0x368b 002949 set1 mark_rxbuf_inuse ,mark 
+:      002950 process_dmh_cont_rxbuf_not_use:
+0x368c 002951 bmark0 mark_testmode ,ack_payload 
+0x368d 002952 isolate1 smap_rxlmp ,temp 
+0x368e 002953 branch ack_payload ,true 
+0x368f 002954 fetch 2 ,mem_tst_pktcnt_crc 
+0x3690 002955 increase 1 ,pdata 
+0x3691 002956 store 2 ,mem_tst_pktcnt_crc 
+0x3692 002957 set1 mark_loopback ,mark 
+0x3693 002958 set0 smap_rxl2cap ,temp 
+0x3694 002959 set0 mark_rxbuf_inuse ,mark 
+0x3695 002960 storet 1 ,mem_state_map 
+:      002961 ack_payload:
+0x3696 002962 set0 mark_ext_patch ,mark 
+0x3697 002963 bpatch patch0c_3 ,mem_patch0c 
+0x3698 002964 fetcht 1 ,mem_temp_arq 
+0x3699 002965 fetch 1 ,mem_arq 
+0x369a 002966 set1 arqnx ,pdata 
+0x369b 002967 isolate1 seqn ,temp 
+0x369c 002968 setflag true ,seqn ,pdata 
+0x369d 002969 isolate1 mark_am_addr_broadcast ,mark 
+0x369e 002970 setflag true ,bcast1 ,pdata 
+0x369f 002971 store 1 ,mem_arq 
+0x36a0 002972 fetch 2 ,mem_len 
+0x36a1 002973 nbranch end_of_packet ,blank 
+0x36a2 002974 fetch 1 ,mem_state_map 
+0x36a3 002975 set0 smap_rxl2cap ,pdata 
+0x36a4 002976 store 1 ,mem_state_map 
+0x36a5 002977 fetch 1 ,mem_lch_code 
+0x36a6 002978 compare 0x01 ,pdata ,0x07 
+0x36a7 002980 branch end_of_packet 
+:      002982 error_header:
+0x36a8 002983 set0 mark_ext_patch ,mark 
+0x36a9 002984 bpatch patch0c_4 ,mem_patch0c 
+0x36aa 002985 disable match 
+0x36ab 002986 fetch 2 ,mem_rx_hec_err 
+0x36ac 002987 increase 1 ,pdata 
+0x36ad 002988 store 2 ,mem_rx_hec_err 
+0x36ae 002989 branch end_of_packet 
+:      002990 error_payload_crc:
+0x36af 002991 fetch 2 ,mem_rx_crc_err 
+0x36b0 002992 increase 1 ,pdata 
+0x36b1 002993 store 2 ,mem_rx_crc_err 
+0x36b2 002994 call discard_pkt 
+0x36b3 002995 bmark0 mark_testmode ,error_payload 
+0x36b4 002996 set1 mark_loopback ,mark 
+:      002997 error_payload:
+0x36b5 002998 branch end_of_packet 
+:      003000 discard_pkt:
+0x36b6 003001 set0 mark_ext_patch ,mark 
+0x36b7 003002 bpatch patch0c_5 ,mem_patch0c 
+0x36b8 003003 fetch 1 ,mem_lch_code 
+0x36b9 003004 compare 3 ,pdata ,0x03 
+0x36ba 003005 nbranch discard_pkt_l2cap ,true 
+:      003006 discard_pkt_lmp:
+0x36bb 003007 fetcht 1 ,mem_state_map 
+0x36bc 003008 set0 smap_rxlmp ,temp 
+0x36bd 003009 storet 1 ,mem_state_map 
+0x36be 003010 rtn 
+:      003011 discard_pkt_l2cap:
+0x36bf 003014 fetcht 1 ,mem_state_map 
+0x36c0 003015 set0 smap_rxl2cap ,temp 
+0x36c1 003016 storet 1 ,mem_state_map 
+0x36c2 003017 branch h4_send_acl_trigger_clear 
+:      003019 redundant_payload:
+0x36c3 003020 fetch 1 ,mem_arq 
+0x36c4 003021 set1 arqnx ,pdata 
+0x36c5 003022 store 1 ,mem_arq 
+:      003023 end_of_packet:
+0x36c6 003024 set0 mark_ext_patch ,mark 
+0x36c7 003025 bpatch patch0c_6 ,mem_patch0c 
+0x36c8 003026 disable encode_fec0 
+0x36c9 003027 disable encode_fec2 
+0x36ca 003028 disable decode_fec0 
+0x36cb 003029 disable decode_fec2 
+0x36cc 003030 disable enable_crc 
+0x36cd 003031 disable encrypt 
+0x36ce 003032 disable enable_white 
+0x36cf 003033 branch shutdown_radio ,is_rx 
+0x36d0 003034 until null ,tx_clear 
+0x36d1 003035 nop 100 
+0x36d2 003036 branch shutdown_radio 
+:      003038 process_fhs:
+0x36d3 003039 set0 mark_ext_patch ,mark 
+0x36d4 003040 bpatch patch0c_7 ,mem_patch0c 
+0x36d5 003041 enable enable_crc 
+0x36d6 003042 enable decode_fec2 
+0x36d7 003043 parse demod ,bucket ,72 
+0x36d8 003044 isolate1 58 ,pdata 
+0x36d9 003045 setflag true ,mark_fhs_eir ,mark 
+0x36da 003046 copy bt_adr ,temp 
+0x36db 003047 ialigned bt_adr 
+0x36dc 003048 ialigned fhs0 
+0x36dd 003049 pulse recalc 
+0x36de 003050 setsect 2 ,0xfffff 
+0x36df 003051 setsect 3 ,0x0ffff 
+0x36e0 003052 nop 32 
+0x36e1 003053 iverify fhs_parity 
+0x36e2 003054 deposit lap 
+0x36e3 003055 store 3 ,extm_lap 
+0x36e4 003056 deposit uap 
+0x36e5 003057 store 1 ,extm_uap 
+0x36e6 003058 copy temp ,bt_adr 
+0x36e7 003059 branch fhs_parity_ok ,true 
+0x36e8 003060 branch error_payload 
+:      003061 fhs_parity_ok:
+0x36e9 003062 set0 mark_ext_patch ,mark 
+0x36ea 003063 bpatch patch0d_0 ,mem_patch0d 
+0x36eb 003064 parse demod ,bucket ,72 
+0x36ec 003065 ialigned fhs1 
+0x36ed 003066 ialigned am_addr 
+0x36ee 003067 ialigned nap 
+0x36ef 003068 ialigned regb 
+0x36f0 003069 force 0 ,pdata 
+0x36f1 003070 parse demod ,bucket ,16 
+0x36f2 003071 branch error_payload ,crc_failed 
+0x36f3 003072 setarg 0x0ffffffc 
+0x36f4 003073 iand regb ,pdata 
+0x36f5 003074 store 4 ,mem_clke_bt 
+0x36f6 003075 deposit fhs_class 
+0x36f7 003076 store 3 ,extm_class 
+0x36f8 003077 deposit fhs_misc 
+0x36f9 003078 store 1 ,extm_fhs_misc 
+0x36fa 003079 deposit am_addr 
+0x36fb 003080 store 1 ,extm_newconn_am_addr 
+0x36fc 003081 deposit nap 
+0x36fd 003082 store 2 ,extm_nap 
+0x36fe 003083 deposit bt_clk 
+0x36ff 003084 inject rxf ,32 
+0x3700 003085 compare type_fhs ,type ,0x0f 
+0x3701 003086 setflag true ,mark_fhs_already_good ,mark 
+0x3702 003087 branch end_of_packet 
+:      003089 clear_got_tx:
+0x3703 003090 set0 mark_ext_patch ,mark 
+0x3704 003091 bpatch patch0d_1 ,mem_patch0d 
+0x3705 003092 fetch 1 ,mem_arq 
+0x3706 003093 rtnbit0 wack 
+0x3707 003094 set0 wack ,pdata 
+0x3708 003095 setflip seqnx ,pdata 
+0x3709 003096 store 1 ,mem_arq 
+0x370a 003097 fetch 1 ,mem_last_type 
+0x370b 003098 beq type_lmp ,clear_got_txlmp 
+0x370c 003099 rtneq type_hv3 
+0x370d 003100 fetch 1 ,mem_op 
+0x370e 003101 rtnbit0 op_txl2cap ,pdata 
+0x370f 003102 set0 op_txl2cap ,pdata 
+0x3710 003103 set1 op_pkt_comp ,pdata 
+0x3711 003104 store 1 ,mem_op 
+0x3712 003105 set0 mark_tx_l2cap ,mark 
+0x3713 003106 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x3714 003107 nrtn blank 
+0x3715 003108 fetch 1 ,mem_op 
+0x3716 003109 set0 op_pkt_comp ,pdata 
+0x3717 003110 store 1 ,mem_op 
+0x3718 003111 branch l2cap_malloc_free 
+:      003113 clear_got_txlmp:
+0x3719 003114 set0 mark_ext_patch ,mark 
+0x371a 003115 bpatch patch0d_2 ,mem_patch0d 
+0x371b 003116 fetch 1 ,mem_lmo_header_opcode 
+0x371c 003117 rshift pdata ,pdata 
+0x371d 003118 beq lmp_start_encryption_req ,start_encryption 
+0x371e 003119 beq lmp_stop_encryption_req ,stop_encryption 
+0x371f 003120 beq lmp_unsniff_req ,sniff_exit 
+0x3720 003121 beq lmp_escape ,clear_lmp_escape 
+0x3721 003122 rtnne lmp_accepted 
+0x3722 003123 fetch 1 ,mem_lmo_payload 
+0x3723 003124 beq lmp_sco_link_req ,sco_link_req_by_slave 
+0x3724 003125 beq lmp_start_encryption_req ,clear_send_setup_complete 
+0x3725 003126 rtn 
+:      003128 clear_lmp_escape:
+0x3726 003129 fetch 1 ,mem_lmo_payload 
+0x3727 003130 set1 7 ,pdata 
+0x3728 003131 rtn 
+:      003132 clear_send_setup_complete:
+0x3729 003133 rtn master 
+0x372a 003134 fetch 1 ,mem_state 
+0x372b 003135 rtnbit1 state_conn_comp 
+0x372c 003136 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x372d 003137 rtn 
+:      003140 sco_link_req_by_slave:
+0x372e 003141 rtn master 
+0x372f 003142 fetch 1 ,mem_mode 
+0x3730 003143 isolate1 send_sco_when_slave ,pdata 
+0x3731 003144 branch clean_mem_mode ,true 
+0x3732 003146 rtn 
+:      003147 clean_mem_mode:
+0x3733 003148 set0 send_sco_when_slave ,pdata 
+0x3734 003149 store 1 ,mem_mode 
+0x3735 003150 rtn 
+:      003152 start_encryption:
+0x3736 003153 set0 mark_ext_patch ,mark 
+0x3737 003154 bpatch patch0d_3 ,mem_patch0d 
+0x3738 003155 fetch 1 ,mem_state_map 
+0x3739 003156 set1 smap_encryption ,pdata 
+0x373a 003157 store 1 ,mem_state_map 
+0x373b 003158 hjam 1 ,core_encrypt 
+0x373c 003159 fetch 1 ,mem_state 
+0x373d 003160 isolate1 state_conn_comp ,pdata 
+0x373e 003161 rtn 
+:      003163 stop_encryption:
+0x373f 003164 set0 mark_ext_patch ,mark 
+0x3740 003165 bpatch patch0d_4 ,mem_patch0d 
+0x3741 003166 fetch 1 ,mem_state_map 
+0x3742 003167 set0 smap_encryption ,pdata 
+0x3743 003168 store 1 ,mem_state_map 
+0x3744 003169 hjam 0 ,core_encrypt 
+0x3745 003170 rtn 
+:      003173 sniff_init:
+0x3746 003174 set0 mark_ext_patch ,mark 
+0x3747 003175 bpatch patch0d_5 ,mem_patch0d 
+0x3748 003176 copy clkn_bt ,pdata 
+0x3749 003177 store 4 ,mem_lpm_delay_after_sniff 
+0x374a 003178 add clkn_bt ,3 ,rega 
+0x374b 003179 branch sniff_init_master ,master 
+0x374c 003180 add clke_bt ,3 ,rega 
+:      003181 sniff_init_master:
+0x374d 003182 fetcht 2 ,mem_tsniff 
+0x374e 003183 deposit rega 
+0x374f 003184 set0 27 ,pdata 
+0x3750 003185 idiv temp 
+0x3751 003186 fetch 2 ,mem_dsniff 
+0x3752 003187 call wait_div_end 
+0x3753 003188 remainder regc 
+0x3754 003189 isub regc ,pdata 
+0x3755 003190 branch sniff_init_nowrap ,positive 
+0x3756 003191 iadd temp ,pdata 
+:      003192 sniff_init_nowrap:
+0x3757 003193 iadd rega ,pdata 
+0x3758 003194 store 4 ,mem_sniff_anchor 
+0x3759 003195 jam switch_flag_init ,mem_switch_flag 
+0x375a 003196 fetch 1 ,mem_state 
+0x375b 003197 set1 state_insniff ,pdata 
+0x375c 003198 store 1 ,mem_state 
+0x375d 003199 fetch 1 ,mem_sniff_attempt 
+0x375e 003200 store 1 ,mem_current_sniff_attempt 
+0x375f 003201 setarg 0 
+0x3760 003202 store 3 ,mem_sniff_rcv 
+0x3761 003203 store 3 ,mem_sniff_lost 
+0x3762 003204 store 1 ,mem_sniff_unint_lost 
+0x3763 003205 jam bt_evt_enter_sniff ,mem_fifo_temp 
+0x3764 003206 call ui_ipc_send_event 
+0x3765 003207 fetch 2 ,mem_rx_window_sniff 
+0x3766 003208 store 2 ,mem_rx_window 
+0x3767 003209 nrtn master 
+0x3768 003210 add am_addr ,-1 ,queue 
+0x3769 003211 rtn 
+:      003213 sniff_exit:
+0x376a 003214 set0 mark_ext_patch ,mark 
+0x376b 003215 bpatch patch0d_6 ,mem_patch0d 
+0x376c 003216 fetch 1 ,mem_state 
+0x376d 003217 rtnbit0 state_insniff 
+0x376e 003218 set0 state_insniff ,pdata 
+0x376f 003219 store 1 ,mem_state 
+0x3770 003220 fetch 2 ,mem_rx_window_init 
+0x3771 003221 store 2 ,mem_rx_window 
+0x3772 003222 disable wake 
+0x3773 003223 jam bt_evt_exit_sniff ,mem_fifo_temp 
+0x3774 003224 branch ui_ipc_send_event 
+:      003227 check_attempt:
+0x3775 003228 set0 mark_ext_patch ,mark 
+0x3776 003229 bpatch patch0d_7 ,mem_patch0d 
+0x3777 003230 enable attempt 
+0x3778 003231 fetch 1 ,mem_state 
+0x3779 003232 bbit1 state_insniff ,check_attempt_sniff 
+0x377a 003233 rtnmark1 mark_testmode 
+0x377b 003234 fetch 1 ,mem_arq 
+0x377c 003235 rtnbit1 wack 
+0x377d 003236 fetch 1 ,mem_lmp_to_send 
+0x377e 003237 nrtn blank 
+0x377f 003238 fetch 1 ,mem_op 
+0x3780 003239 rtnbit1 op_txl2cap 
+:      003240 check_attempt_nomore:
+0x3781 003241 force 0 ,pdata 
+0x3782 003242 rtn 
+:      003244 check_attempt_sniff:
+0x3783 003245 bbit0 state_insco ,check_attempt_not_sco 
+0x3784 003246 fetch 1 ,mem_current_sniff_attempt 
+0x3785 003247 beq 2 ,check_attempt_sniff_restore_sco 
+0x3786 003248 fetch 1 ,mem_arq 
+0x3787 003249 bbit1 wack ,check_attempt_notimeout 
+0x3788 003250 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+:      003251 check_attempt_sniff_restore_sco:
+0x3789 003252 nbranch check_attempt_notimeout ,master 
+0x378a 003253 fetch 1 ,mem_lmp_to_send 
+0x378b 003254 nbranch check_attempt_notimeout ,blank 
+:      003255 check_attempt_sco_master:
+0x378c 003256 fetch 1 ,mem_sco_poll 
+0x378d 003257 increase -1 ,pdata 
+0x378e 003258 store 1 ,mem_sco_poll 
+0x378f 003259 nbranch check_attempt_nomore ,blank 
+0x3790 003260 jam param_sco_poll ,mem_sco_poll 
+0x3791 003261 branch check_attempt_notimeout 
+:      003263 check_attempt_not_sco:
+0x3792 003264 fetch 1 ,mem_current_sniff_attempt 
+0x3793 003265 bne 1 ,check_attempt_notimeout 
+0x3794 003266 fetch 1 ,mem_current_sniff_timeout 
+0x3795 003267 branch check_attempt_notimeout ,blank 
+0x3796 003268 increase -1 ,pdata 
+0x3797 003269 store 1 ,mem_current_sniff_timeout 
+0x3798 003270 fetch 1 ,mem_arq 
+0x3799 003271 rtnbit1 wack 
+0x379a 003272 nrtn match 
+:      003273 check_attempt_notimeout:
+0x379b 003274 fetch 1 ,mem_current_sniff_attempt 
+0x379c 003275 increase -1 ,pdata 
+0x379d 003276 store 1 ,mem_current_sniff_attempt 
+0x379e 003277 rtn 
+:      003280 sniff_check_window:
+0x379f 003281 set0 mark_ext_patch ,mark 
+0x37a0 003282 bpatch patch0e_0 ,mem_patch0e 
+0x37a1 003283 disable swfine 
+0x37a2 003284 copy temp ,stop_watch 
+0x37a3 003285 call context_search_sniff_window 
+0x37a4 003286 disable user 
+0x37a5 003287 nrtn zero 
+0x37a6 003288 force 0 ,stop_watch 
+0x37a7 003289 enable user 
+0x37a8 003290 rtn 
+:      003293 check_esco_amaddr:
+0x37a9 003294 fetch 1 ,mem_esco_addr 
+0x37aa 003295 icompare 0xff ,am_addr 
+0x37ab 003296 rtn 
+:      003299 parse_l2cap:
+0x37ac 003300 set0 mark_ext_patch ,mark 
+0x37ad 003301 bpatch patch0e_1 ,mem_patch0e 
+0x37ae 003302 set0 mark_rxbuf_inuse ,mark 
+:      003303 parse_l2cap_cont:
+0x37af 003304 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37b0 003305 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37b1 003306 rtn blank 
+0x37b2 003307 isolate1 l2cap_inuse_buff1 ,pdata 
+0x37b3 003308 arg mem_l2cap_rxbuff1 ,contr 
+0x37b4 003309 call process_rx_l2cap_pkt ,true 
+0x37b5 003310 set0 mark_ext_patch ,mark 
+0x37b6 003311 bpatch patch0e_2 ,mem_patch0e 
+0x37b7 003312 fetch 1 ,mem_l2cap_rx_done 
+0x37b8 003313 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+0x37b9 003315 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37ba 003316 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37bb 003317 rtnbit0 l2cap_inuse_buff2 
+0x37bc 003318 arg mem_l2cap_rxbuff2 ,contr 
+0x37bd 003319 call process_rx_l2cap_pkt 
+0x37be 003320 fetch 1 ,mem_l2cap_rx_done 
+0x37bf 003321 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+0x37c0 003322 rtn 
+:      003324 parse_l2cap_release_buff1:
+0x37c1 003325 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c2 003326 set0 l2cap_inuse_buff1 ,pdata 
+0x37c3 003327 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37c4 003328 setarg 0 
+0x37c5 003329 store 2 ,mem_l2cap_rxbuff1_len 
+0x37c6 003330 rtn 
+:      003331 parse_l2cap_release_buff2:
+0x37c7 003332 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c8 003333 set0 l2cap_inuse_buff2 ,pdata 
+0x37c9 003334 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37ca 003335 setarg 0 
+0x37cb 003336 store 2 ,mem_l2cap_rxbuff2_len 
+0x37cc 003337 rtn 
+:      003339 l2cap_buff1_inuse:
+0x37cd 003340 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37ce 003341 set1 l2cap_inuse_buff1 ,pdata 
+0x37cf 003342 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d0 003343 rtn 
+:      003345 l2cap_buff2_inuse:
+0x37d1 003346 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37d2 003347 set1 l2cap_inuse_buff2 ,pdata 
+0x37d3 003348 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d4 003349 rtn 
+:      003355 slave_send_access:
+0x37d5 003356 set0 mark_ext_patch ,mark 
+0x37d6 003357 bpatch patch0e_3 ,mem_patch0e 
+0x37d7 003358 add clke_bt ,1 ,bt_clk 
+0x37d8 003359 call fetch_extm_bt_adr 
+0x37d9 003360 force 0x03 ,freq_mode 
+0x37da 003361 call tx_radio_freq 
+0x37db 003362 call start_transmitter 
+0x37dc 003363 call start_tx_external 
+0x37dd 003364 branch send_access_word 
+:      003367 slave_conn_send_packet:
+0x37de 003368 set0 mark_ext_patch ,mark 
+0x37df 003369 bpatch patch0e_4 ,mem_patch0e 
+0x37e0 003370 call rf_setup_time_slave_slot 
+0x37e1 003371 deposit clke_bt 
+0x37e2 003372 fetcht 4 ,mem_next_btclk 
+0x37e3 003373 isub temp ,pdata 
+0x37e4 003374 rtnne 1 
+0x37e5 003375 compare type_null ,type ,0x1f 
+0x37e6 003376 nbranch slave_conn_send_access ,true 
+0x37e7 003377 fetch 1 ,mem_rx_type 
+0x37e8 003378 rtn blank 
+:      003379 slave_conn_send_access:
+0x37e9 003380 call slave_send_access 
+0x37ea 003381 compare type_id ,type ,0x1f 
+0x37eb 003382 branch end_of_packet ,true 
+:      003383 transmit_packet:
+0x37ec 003384 rshift bt_clk ,temp 
+0x37ed 003385 or temp ,0x40 ,white_init 
+:      003386 transmit_packet_whitened:
+0x37ee 003387 set0 mark_ext_patch ,mark 
+0x37ef 003388 bpatch patch0e_5 ,mem_patch0e 
+0x37f0 003389 enable enable_white 
+0x37f1 003390 enable enable_hec 
+0x37f2 003391 enable encode_fec1 
+0x37f3 003392 set0 mark_longpacket ,mark 
+0x37f4 003393 deposit am_addr 
+0x37f5 003394 inject mod ,3 
+0x37f6 003395 deposit type 
+0x37f7 003396 inject mod ,4 
+0x37f8 003397 fetch 1 ,mem_arq 
+0x37f9 003398 inject bucket ,4 
+0x37fa 003399 inject mod ,3 
+0x37fb 003400 enable enable_parity 
+0x37fc 003401 inject mod ,8 
+0x37fd 003402 disable encode_fec1 
+0x37fe 003403 disable enable_parity 
+0x37ff 003404 disable enable_hec 
+0x3800 003405 set0 psk3m ,radio_ctrl 
+0x3801 003406 arg 0 ,temp 
+0x3802 003407 call reserve_slot 
+0x3803 003408 set0 mark_ext_patch ,mark 
+0x3804 003409 bpatch patch0e_6 ,mem_patch0e 
+0x3805 003410 and type ,0x1f ,pdata 
+0x3806 003411 beq type_lmp ,transmit_lmp 
+0x3807 003412 beq type_null ,end_of_packet 
+0x3808 003413 beq type_poll ,end_of_packet 
+0x3809 003414 beq type_fhs ,transmit_fhs 
+0x380a 003415 beq type_dm1 ,transmit_dm1 
+0x380b 003416 beq type_dh1 ,transmit_dh1 
+0x380c 003417 beq type_hv3 ,transmit_hev 
+0x380d 003418 beq type_3dh1 ,transmit_3dh1 
+0x380e 003419 arg 4 ,temp 
+0x380f 003420 call reserve_slot 
+0x3810 003421 beq type_dm3 ,transmit_dm3 
+0x3811 003422 beq type_dh3 ,transmit_dh3 
+0x3812 003423 arg 8 ,temp 
+0x3813 003424 call reserve_slot 
+0x3814 003425 beq type_dh5 ,transmit_dh5 
+0x3815 003426 branch transmit_dm5 
+:      003429 transmit_hev:
+0x3816 003430 set0 mark_ext_patch ,mark 
+0x3817 003431 bpatch patch0e_7 ,mem_patch0e 
+0x3818 003432 enable encode_fec0 
+0x3819 003433 enable enable_crc 
+0x381a 003434 enable encrypt 
+0x381b 003435 force 30 ,loopcnt 
+0x381c 003436 arg mem_sco_obuf ,contr 
+:      003437 transmit_ev_loop:
+0x381d 003438 ifetch 1 ,contr 
+0x381e 003439 inject mod ,8 
+0x381f 003440 loop transmit_ev_loop 
+0x3820 003441 bmark1 mark_esco ,transmit_end 
+0x3821 003442 branch end_of_packet 
+:      003444 transmit_fhs:
+0x3822 003445 set0 mark_ext_patch ,mark 
+0x3823 003446 bpatch patch0f_0 ,mem_patch0f 
+0x3824 003447 fetch 1 ,mem_fhs_am_addr 
+0x3825 003448 icopy am_addr 
+0x3826 003449 fetch 1 ,mem_fhs_misc 
+0x3827 003450 icopy fhs_misc 
+0x3828 003451 fetch 3 ,mem_class 
+0x3829 003452 icopy fhs_class 
+0x382a 003453 fetch 2 ,mem_nap 
+0x382b 003454 icopy nap 
+0x382c 003455 enable enable_crc 
+0x382d 003456 enable encode_fec2 
+0x382e 003457 copy bt_adr ,rega 
+0x382f 003458 call fetch_self_bt_adr 
+0x3830 003459 pulse recalc 
+0x3831 003460 nop 32 
+0x3832 003461 copy bt_clk ,timeup 
+0x3833 003462 fetch 4 ,mem_clkn_bt 
+0x3834 003463 icopy bt_clk 
+0x3835 003464 preload fhs0 
+0x3836 003465 set1 58 ,pdata 
+0x3837 003466 inject mod ,72 
+0x3838 003467 preload fhs1 
+0x3839 003468 inject mod ,72 
+0x383a 003469 copy timeup ,bt_clk 
+0x383b 003470 copy rega ,bt_adr 
+0x383c 003471 enable enable_parity 
+0x383d 003472 inject mod ,16 
+0x383e 003473 disable enable_parity 
+0x383f 003474 branch end_of_packet 
+:      003476 transmit_lmp:
+0x3840 003477 set0 mark_ext_patch ,mark 
+0x3841 003478 bpatch patch0f_1 ,mem_patch0f 
+0x3842 003479 enable encrypt 
+0x3843 003480 enable enable_crc 
+0x3844 003481 enable encode_fec2 
+0x3845 003482 fetch 1 ,mem_lmo_header_length 
+0x3846 003483 and pdata ,0x1f8 ,temp 
+0x3847 003484 arg mem_lmo_header_length ,contr 
+0x3848 003485 increase 8 ,temp 
+:      003486 transmit_lmp_loop:
+0x3849 003487 add temp ,-72 ,regc 
+0x384a 003488 nbranch transmit_lmp_finish ,positive 
+0x384b 003489 ifetch 9 ,contr 
+0x384c 003490 inject mod ,72 
+0x384d 003491 copy regc ,temp 
+0x384e 003492 branch transmit_lmp_loop 
+:      003493 transmit_lmp_finish:
+0x384f 003494 ifetch 9 ,contr 
+0x3850 003495 iinject mod ,temp 
+0x3851 003496 branch transmit_end 
+:      003498 transmit_dm1:
+0x3852 003499 enable encode_fec2 
+0x3853 003500 branch transmit_dmh 
+:      003501 transmit_dm3:
+:      003502 transmit_dm5:
+0x3854 003503 enable encode_fec2 
+0x3855 003504 set1 mark_longpacket ,mark 
+0x3856 003505 branch transmit_dmh 
+:      003507 transmit_3dh1:
+0x3857 003508 set1 psk3m ,radio_ctrl 
+:      003509 transmit_dh1:
+0x3858 003510 enable encode_fec0 
+0x3859 003511 branch transmit_dmh 
+:      003513 transmit_dh3:
+:      003514 transmit_dh5:
+0x385a 003515 set1 psk3m ,radio_ctrl 
+0x385b 003516 enable encode_fec0 
+0x385c 003517 set1 mark_longpacket ,mark 
+:      003519 transmit_dmh:
+0x385d 003520 set0 mark_ext_patch ,mark 
+0x385e 003521 bpatch patch0f_2 ,mem_patch0f 
+0x385f 003522 fetch 1 ,mem_state_map 
+0x3860 003523 bbit0 smap_edr ,transmit_noedr 
+0x3861 003524 sub type ,3 ,null 
+0x3862 003525 branch transmit_noedr ,positive 
+0x3863 003526 disable encrypt 
+0x3864 003527 disable encode_fec2 
+0x3865 003528 enable encode_fec0 
+0x3866 003529 disable enable_white 
+0x3867 003530 set1 psk ,radio_ctrl 
+0x3868 003531 isolate1 psk3m ,radio_ctrl 
+0x3869 003532 branch transmit_edr3m ,true 
+0x386a 003533 setarg 0xabeee 
+0x386b 003534 inject mod ,20 
+0x386c 003535 branch transmit_edr_sync_end 
+:      003536 transmit_edr3m:
+0x386d 003537 setarg 0x5faeba 
+0x386e 003538 inject mod ,24 
+0x386f 003539 setarg 0x12 
+0x3870 003540 inject mod ,6 
+:      003541 transmit_edr_sync_end:
+0x3871 003542 enable enable_white 
+0x3872 003543 set1 mark_longpacket ,mark 
+:      003544 transmit_noedr:
+0x3873 003545 enable encrypt 
+0x3874 003546 enable enable_crc 
+0x3875 003547 bmark1 mark_loopback ,transmit_loopback 
+0x3876 003548 fetch 1 ,mem_tx_lch 
+0x3877 003549 inject mod ,3 
+0x3878 003550 fetch 2 ,mem_tx_len 
+0x3879 003551 iforce loopcnt 
+0x387a 003552 bmark1 mark_longpacket ,transmit_long 
+0x387b 003553 inject mod ,5 
+0x387c 003554 branch transmit_stuff 
+:      003555 transmit_long:
+0x387d 003556 inject mod ,13 
+:      003557 transmit_stuff:
+0x387e 003558 deposit loopcnt 
+0x387f 003559 branch transmit_end ,blank 
+0x3880 003560 fetch 2 ,mem_txptr 
+0x3881 003561 iforce contr 
+:      003562 transmit_stuff_loop:
+0x3882 003563 ifetch 1 ,contr 
+0x3883 003564 inject mod ,8 
+0x3884 003565 loop transmit_stuff_loop 
+:      003568 transmit_end:
+0x3885 003569 enable enable_parity 
+0x3886 003570 inject mod ,16 
+0x3887 003571 disable enable_parity 
+0x3888 003572 call set_wait_ack 
+0x3889 003573 fetch 1 ,mem_state_map 
+0x388a 003574 bbit0 smap_edr ,end_of_packet 
+0x388b 003575 force 0 ,pdata 
+0x388c 003576 inject mod ,6 
+0x388d 003577 branch end_of_packet 
+:      003580 transmit_loopback:
+0x388e 003581 set0 mark_ext_patch ,mark 
+0x388f 003582 bpatch patch0f_3 ,mem_patch0f 
+0x3890 003583 bmark1 mark_longpacket ,transmit_loopback_long 
+:      003584 transmit_loopback_short:
+0x3891 003585 fetch 1 ,mem_lch_code 
+0x3892 003586 inject mod ,3 
+0x3893 003587 fetch 1 ,mem_len 
+0x3894 003588 iforce regc 
+0x3895 003589 inject mod ,5 
+0x3896 003590 branch transmit_loopback_cont 
+:      003591 transmit_loopback_long:
+0x3897 003592 fetch 1 ,mem_lch_code 
+0x3898 003593 inject mod ,3 
+0x3899 003594 fetch 2 ,mem_len 
+0x389a 003595 iforce regc 
+0x389b 003596 inject mod ,13 
+:      003597 transmit_loopback_cont:
+0x389c 003598 arg mem_rxbuf ,contr 
+:      003599 transmit_loopback_loop:
+0x389d 003600 copy regc ,null 
+0x389e 003601 branch transmit_loopback_end ,zero 
+0x389f 003602 ifetch 1 ,contr 
+0x38a0 003603 inject mod ,8 
+0x38a1 003604 increase -1 ,regc 
+0x38a2 003605 branch transmit_loopback_loop 
+:      003606 transmit_loopback_end:
+0x38a3 003607 fetch 2 ,mem_tst_pktcnt_dmh 
+0x38a4 003608 increase 1 ,pdata 
+0x38a5 003609 store 2 ,mem_tst_pktcnt_dmh 
+0x38a6 003610 branch transmit_end 
+:      003613 apply_switch_clke:
+0x38a7 003614 fetch 4 ,mem_clke_bt 
+0x38a8 003615 add pdata ,7 ,rega 
+0x38a9 003616 fetch 2 ,mem_slot_offset 
+0x38aa 003617 nbranch apply_switch_nozero ,blank 
+0x38ab 003618 increase -3 ,rega 
+0x38ac 003619 branch apply_switch_wait_loop 
+:      003620 apply_switch_nozero:
+0x38ad 003621 mul32 pdata ,12 ,pdata 
+0x38ae 003622 hfetcht 2 ,core_halfslot 
+0x38af 003623 increase 1 ,temp 
+:      003624 apply_switch_loop:
+0x38b0 003625 isub temp ,pdata 
+0x38b1 003626 nbranch apply_switch_bt ,positive 
+0x38b2 003627 increase -1 ,rega 
+0x38b3 003628 branch apply_switch_loop 
+:      003629 apply_switch_bt:
+0x38b4 003630 sub pdata ,0 ,pdata 
+:      003631 apply_switch_wait_loop:
+0x38b5 003632 until null ,oneslot 
+0x38b6 003633 compare 0 ,clkn_bt ,3 
+0x38b7 003634 nbranch apply_switch_wait_loop ,true 
+0x38b8 003635 iforce clke_rt 
+0x38b9 003636 copy rega ,clke_bt 
+0x38ba 003637 iforce clke_rt 
+0x38bb 003638 rtn 
+:      003641 calc_slot_offset:
+0x38bc 003642 set0 mark_ext_patch ,mark 
+0x38bd 003643 bpatch patch0f_4 ,mem_patch0f 
+0x38be 003644 until null ,halfslot 
+0x38bf 003645 deposit clke 
+0x38c0 003646 iforce contr 
+0x38c1 003647 rshift16 ,pdata ,pdata 
+0x38c2 003648 isub clkn_bt ,loopcnt 
+0x38c3 003649 and_into 3 ,loopcnt 
+0x38c4 003650 nbranch calc_bt_portion ,zero 
+0x38c5 003651 force 0 ,pdata 
+0x38c6 003652 branch calc_skip_bt 
+:      003653 calc_bt_portion:
+0x38c7 003654 arg 3750 ,temp 
+0x38c8 003655 force 0 ,pdata 
+:      003656 calc_slot_offset_loop:
+0x38c9 003657 iadd temp ,pdata 
+0x38ca 003658 loop calc_slot_offset_loop 
+:      003659 calc_skip_bt:
+0x38cb 003660 iadd contr ,pdata 
+0x38cc 003661 div pdata ,12 
+0x38cd 003662 call wait_div_end 
+0x38ce 003663 quotient pdata 
+0x38cf 003664 store 2 ,mem_slot_offset 
+0x38d0 003665 rtn 
+:      003667 calc_clke_offset:
+0x38d1 003668 set0 mark_ext_patch ,mark 
+0x38d2 003669 bpatch patch0f_5 ,mem_patch0f 
+0x38d3 003670 deposit clke 
+0x38d4 003671 copy clkn ,temp 
+0x38d5 003672 isub temp ,null 
+0x38d6 003673 nsetflag positive ,44 ,pdata 
+0x38d7 003674 isub temp ,temp 
+0x38d8 003675 setarg 3750 
+0x38d9 003676 isolate0 15 ,temp 
+0x38da 003677 branch calc_clke_pos ,true 
+0x38db 003678 setarg -61786 
+0x38dc 003679 iadd temp ,temp 
+:      003680 calc_clke_pos:
+0x38dd 003681 storet 6 ,mem_le_clk_offset 
+0x38de 003682 rtn le 
+0x38df 003683 storet 6 ,mem_clk_offset 
+0x38e0 003684 rtn 
+:      003686 calc_clke:
+0x38e1 003687 disable clknt 
+0x38e2 003688 fetch 6 ,mem_le_clk_offset 
+0x38e3 003689 branch calc_clke2 ,le 
+0x38e4 003690 fetch 6 ,mem_clk_offset 
+:      003691 calc_clke2:
+0x38e5 003692 iadd clkn ,alarm 
+0x38e6 003693 increase 10 ,alarm 
+0x38e7 003694 setarg 3750 
+0x38e8 003695 isub alarm ,pdata 
+0x38e9 003696 isolate0 15 ,pdata 
+0x38ea 003697 branch calc_clke_pos_adj ,true 
+0x38eb 003698 setarg 0xf15a 
+0x38ec 003699 iadd alarm ,alarm 
+:      003700 calc_clke_pos2:
+0x38ed 003701 copy alarm ,clke 
+0x38ee 003702 rtn 
+:      003703 calc_clke_pos_adj:
+0x38ef 003704 force 0 ,null 
+0x38f0 003705 branch calc_clke_pos2 
+:      003712 calc_radio_freq:
+0x38f1 003713 set0 mark_ext_patch ,mark 
+0x38f2 003714 bpatch patch0f_6 ,mem_patch0f 
+0x38f3 003715 call set_sync_on 
+0x38f4 003716 copy bt_clk ,pdata 
+0x38f5 003717 and_into 0x180 ,pdata 
+0x38f6 003718 compare 3 ,freq_mode ,0x07 
+0x38f7 003719 nbranch freq_not_connection ,true 
+0x38f8 003720 rshift3 pdata ,pdata 
+0x38f9 003721 iadd freq_index ,pdata 
+0x38fa 003722 branch do_hop_mod_now 
+:      003723 freq_not_connection:
+0x38fb 003724 copy freq_index ,pdata 
+:      003725 do_hop_mod_now:
+0x38fc 003726 div pdata ,79 
+0x38fd 003727 pulse recalc 
+0x38fe 003728 call wait_div_end 
+0x38ff 003729 remainder rega 
+0x3900 003730 add rega ,-40 ,temp 
+0x3901 003731 branch odd_half ,positive 
+0x3902 003732 lshift rega ,temp 
+0x3903 003733 branch freq_result 
+:      003734 odd_half:
+0x3904 003735 lshift temp ,temp 
+0x3905 003736 increase 1 ,temp 
+:      003737 freq_result:
+0x3906 003738 set0 mark_ext_patch ,mark 
+0x3907 003739 bpatch patch0f_7 ,mem_patch0f 
+0x3908 003740 fetch 1 ,mem_mode 
+0x3909 003741 bbit0 afh_change ,afh_process_con 
+:      003742 afh_process_0:
+0x390a 003743 fetch 4 ,mem_afh_instant 
+0x390b 003744 isub bt_clk ,null 
+0x390c 003745 branch afh_process_con ,positive 
+0x390d 003746 call afh_clear 
+0x390e 003747 fetch 1 ,mem_afh_new_mod 
+0x390f 003748 rtn blank 
+0x3910 003749 fetch 1 ,mem_mode 
+0x3911 003750 set1 afh_enable ,pdata 
+0x3912 003751 store 1 ,mem_mode 
+0x3913 003752 fetch 5 ,mem_afh_map_new 
+0x3914 003753 store 5 ,mem_afh_map_lo 
+0x3915 003754 ifetch 5 ,contr 
+0x3916 003755 store 5 ,mem_afh_map_hi 
+0x3917 003756 call afh_process_freq_map 
+:      003757 afh_process_con:
+0x3918 003758 fetch 1 ,mem_mode 
+0x3919 003759 rtnbit0 afh_enable 
+0x391a 003760 isolate1 1 ,bt_clk 
+0x391b 003761 branch afh_same_channel ,true 
+0x391c 003762 rshift3 temp ,rega 
+0x391d 003763 and temp ,7 ,queue 
+0x391e 003764 setarg mem_afh_map_lo 
+0x391f 003765 iadd rega ,rega 
+0x3920 003766 ifetch 1 ,rega 
+0x3921 003767 qisolate0 pdata 
+0x3922 003768 branch afh_process_1 ,true 
+0x3923 003769 deposit temp 
+0x3924 003770 branch afh_process_end 
+:      003771 afh_process_1:
+0x3925 003772 fetch 1 ,mem_afh_used 
+0x3926 003773 iforce regb 
+0x3927 003774 deposit bt_clk 
+0x3928 003775 and_into 0x180 ,pdata 
+0x3929 003776 rshift3 pdata ,pdata 
+0x392a 003777 iadd freq_index ,pdata 
+0x392b 003778 idiv regb 
+0x392c 003779 setarg mem_afh_map 
+0x392d 003780 call wait_div_end 
+0x392e 003781 remainder rega 
+0x392f 003782 iadd rega ,contr 
+0x3930 003783 ifetch 1 ,contr 
+:      003784 afh_process_end:
+0x3931 003785 store 1 ,mem_afh_index 
+0x3932 003786 iforce temp 
+0x3933 003787 rtn 
+:      003789 afh_same_channel:
+0x3934 003790 fetch 1 ,mem_afh_index 
+0x3935 003791 iforce temp 
+0x3936 003792 rtn 
+:      003794 afh_clear:
+0x3937 003795 fetch 1 ,mem_mode 
+0x3938 003796 set0 afh_enable ,pdata 
+0x3939 003797 set0 afh_change ,pdata 
+0x393a 003798 store 1 ,mem_mode 
+0x393b 003799 rtn 
+:      003805 afh_process_freq_map:
+0x393c 003806 set0 mark_ext_patch ,mark 
+0x393d 003807 bpatch patch10_0 ,mem_patch10 
+0x393e 003808 arg mem_afh_map ,contw 
+0x393f 003809 force 10 ,loopcnt 
+0x3940 003810 call memset0 
+0x3941 003811 arg mem_afh_map ,contw 
+0x3942 003812 force 0 ,regc 
+0x3943 003813 force 2 ,queue 
+:      003814 process_freq_3:
+0x3944 003815 fetch 5 ,mem_afh_map_lo 
+0x3945 003816 iforce temp 
+0x3946 003817 compare 2 ,queue ,0xff 
+0x3947 003818 branch process_freq_1 ,true 
+0x3948 003819 rshift temp ,temp 
+:      003820 process_freq_1:
+0x3949 003821 isolate0 0 ,temp 
+0x394a 003822 branch process_freq_0 ,true 
+0x394b 003823 deposit regc 
+0x394c 003824 istore 1 ,contw 
+:      003825 process_freq_0:
+0x394d 003826 rshift2 temp ,temp 
+0x394e 003827 increase 2 ,regc 
+0x394f 003828 compare 40 ,regc ,0xfe 
+0x3950 003829 nbranch process_freq_2 ,true 
+0x3951 003830 fetch 5 ,mem_afh_map_hi 
+0x3952 003831 iforce temp 
+0x3953 003832 compare 2 ,queue ,0xff 
+0x3954 003833 branch process_freq_2 ,true 
+0x3955 003834 rshift temp ,temp 
+:      003835 process_freq_2:
+0x3956 003836 sub regc ,78 ,null 
+0x3957 003837 branch process_freq_1 ,positive 
+0x3958 003838 force 1 ,regc 
+0x3959 003839 increase -1 ,queue 
+0x395a 003840 nbranch process_freq_3 ,zero 
+0x395b 003841 arg mem_afh_map ,rega 
+0x395c 003842 deposit contw 
+0x395d 003843 isub rega ,pdata 
+0x395e 003844 store 1 ,mem_afh_used 
+0x395f 003845 rtn 
+:      003847 rx_radio_freq:
+0x3960 003848 set0 mark_ext_patch ,mark 
+0x3961 003849 bpatch patch10_1 ,mem_patch10 
+0x3962 003850 call calc_radio_freq 
+0x3963 003851 fetch 1 ,mem_debug_config 
+0x3964 003852 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+0x3965 003853 fetcht 1 ,mem_rx_fixed_freq 
+:      003854 rx_radio_freq_now:
+0x3966 003855 branch set_freq_rx 
+:      003858 tx_radio_freq:
+0x3967 003859 set0 mark_ext_patch ,mark 
+0x3968 003860 bpatch patch10_2 ,mem_patch10 
+0x3969 003861 call calc_radio_freq 
+0x396a 003862 fetch 1 ,mem_debug_config 
+0x396b 003863 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+0x396c 003864 fetcht 1 ,mem_tx_fixed_freq 
+:      003865 tx_radio_freq_now:
+0x396d 003866 branch set_freq_tx 
+:      003869 fetch_giac:
+0x396e 003870 force 0 ,uap 
+0x396f 003871 fetch 3 ,mem_glap 
+0x3970 003872 iforce lap 
+0x3971 003873 rtn 
+:      003875 fetch_page_bt_adr:
+0x3972 003876 set0 mark_ext_patch ,mark 
+0x3973 003877 bpatch patch10_3 ,mem_patch10 
+0x3974 003878 fetch 1 ,mem_hci_puap 
+0x3975 003879 icopy uap 
+0x3976 003880 fetch 3 ,mem_hci_plap 
+0x3977 003881 icopy lap 
+0x3978 003882 rtn 
+:      003884 fetch_self_bt_adr:
+0x3979 003885 set0 mark_ext_patch ,mark 
+0x397a 003886 bpatch patch10_4 ,mem_patch10 
+0x397b 003887 fetch 2 ,mem_nap 
+0x397c 003888 icopy nap 
+0x397d 003889 fetch 1 ,mem_uap 
+0x397e 003890 icopy uap 
+0x397f 003891 fetch 3 ,mem_lap 
+0x3980 003892 icopy lap 
+0x3981 003893 rtn 
+:      003895 fetch_extm_bt_adr:
+0x3982 003896 set0 mark_ext_patch ,mark 
+0x3983 003897 bpatch patch10_5 ,mem_patch10 
+0x3984 003898 fetch 2 ,mem_pnap 
+0x3985 003899 icopy nap 
+0x3986 003900 fetch 1 ,mem_puap 
+0x3987 003901 icopy uap 
+0x3988 003902 fetch 3 ,mem_plap 
+0x3989 003903 icopy lap 
+0x398a 003904 rtn 
+:      003907 fetch_diac:
+0x398b 003908 bmark1 mark_all_diac ,fetch_diac_do 
+0x398c 003909 rtnmark0 mark_inquiry_state 
+0x398d 003910 rtnmark0 mark_periodical_diac 
+:      003911 fetch_diac_do:
+0x398e 003912 and_into -256 ,lap 
+0x398f 003913 pulse recalc 
+0x3990 003914 nop 32 
+0x3991 003915 rtn 
+:      003918 shutdown_radio:
+0x3992 003919 set0 mark_ext_patch ,mark 
+0x3993 003920 bpatch patch10_6 ,mem_patch10 
+0x3994 003921 branch shutdown_radio0 ,is_rx 
+0x3995 003922 hjam 0xd4 ,0x955 
+0x3996 003923 nop 4 
+0x3997 003924 hjam 0xd2 ,0x955 
+0x3998 003925 nop 4 
+0x3999 003926 hjam 0xd1 ,0x955 
+0x399a 003927 nop 4 
+0x399b 003928 fetch 1 ,mem_tx_power 
+0x399c 003929 bbit1 tx_power_0db ,shutdown_radio_0db 
+0x399d 003930 bbit1 tx_power_3db ,shutdown_radio_3db 
+0x399e 003931 bbit1 tx_power_5db ,shutdown_radio_5db 
+0x399f 003932 bbit1 tx_power_f3db ,shutdown_radio_f3db 
+0x39a0 003933 bbit1 tx_power_f5db ,shutdown_radio_f5db 
+:      003934 shutdown_radio_5db:
+:      003935 shutdown_radio_0db:
+0x39a1 003936 hjam 0xd0 ,0x955 
+0x39a2 003937 hjam 0xe0 ,0x956 
+:      003938 shutdown_radio0:
+0x39a3 003939 force 0 ,radio_ctrl 
+0x39a4 003940 disable is_rx 
+0x39a5 003941 disable is_tx 
+0x39a6 003942 pulse packet_end 
+0x39a7 003943 hjam 0x0 ,rfen_mdm 
+0x39a8 003944 hjam 0x0 ,rfen_tx 
+0x39a9 003945 hjam 0x0 ,rfen_rx 
+0x39aa 003946 hjam 0 ,rfen_sn 
+0x39ab 003947 hjam 0x70 ,rfen_msc 
+0x39ac 003948 hjam 0x0 ,rfen_adc 
+0x39ad 003949 rtn 
+:      003951 shutdown_radio_f5db:
+:      003952 shutdown_radio_f3db:
+:      003953 shutdown_radio_3db:
+0x39ae 003954 hjam 0xd0 ,0x955 
+0x39af 003955 hjam 0xc0 ,0x956 
+0x39b0 003956 branch shutdown_radio0 
+:      003958 set_sync_on:
+0x39b1 003959 set0 mark_ext_patch ,mark 
+0x39b2 003960 bpatch patch10_7 ,mem_patch10 
+0x39b3 003961 hjam 0x0 ,rfen_mdm 
+0x39b4 003962 hjam 0x0 ,rfen_tx 
+0x39b5 003963 hjam 0x18 ,rfen_rx 
+0x39b6 003964 hjam 0xa7 ,rfen_sn 
+0x39b7 003965 hjam 0x7f ,rfen_msc 
+0x39b8 003966 rtn 
+:      003968 set_freq_rx:
+0x39b9 003969 set0 mark_ext_patch ,mark 
+0x39ba 003970 bpatch patch11_0 ,mem_patch11 
+0x39bb 003972 storet 1 ,mem_last_freq 
+0x39bc 003973 add temp ,rx_freq_offset ,rega 
+0x39bd 003974 hjam 0x07 ,0x96d 
+0x39be 003975 branch rf_write_freq 
+:      003976 rf_rx_enable:
+0x39bf 003977 set0 mark_ext_patch ,mark 
+0x39c0 003978 bpatch patch11_1 ,mem_patch11 
+0x39c1 003979 hjam 0xcf ,rfen_tx 
+0x39c2 003980 nop 10 
+0x39c3 003981 hjam 0xff ,rfen_rx 
+0x39c4 003982 hjam 0xaf ,rfen_sn 
+0x39c5 003983 hjam 0xff ,rfen_msc 
+0x39c6 003984 nop 10 
+0x39c7 003985 hjam 0xa0 ,rfen_mdm 
+0x39c8 003986 rtn 
+:      003989 set_freq_tx:
+0x39c9 003990 set0 mark_ext_patch ,mark 
+0x39ca 003991 bpatch patch11_2 ,mem_patch11 
+0x39cb 003992 storet 1 ,mem_last_freq 
+0x39cc 003993 add temp ,0 ,rega 
+0x39cd 003994 call rf_write_freq 
+0x39ce 003995 setarg param_pll_setup 
+0x39cf 003996 call sleep 
+:      003997 txon:
+0x39d0 003998 hjam 0x1 ,rfen_adc 
+0x39d1 003999 hjam 0x3c ,rfen_rx 
+0x39d2 004000 hjam 0xe0 ,rfen_tx 
+0x39d3 004001 hjam 0x12 ,0x96d 
+0x39d4 004002 nop 10 
+0x39d5 004003 hjam 0x01 ,rfen_mdm 
+0x39d6 004004 hjam 0x3d ,rfen_mdm 
+0x39d7 004005 nop 10 
+0x39d8 004006 hjam 0xb7 ,rfen_sn 
+0x39d9 004007 nop 10 
+0x39da 004008 hjam 0x7f ,rfen_mdm 
+0x39db 004009 fetch 1 ,mem_tx_power 
+0x39dc 004010 bbit1 tx_power_0db ,set_tx_power_0db 
+0x39dd 004011 bbit1 tx_power_3db ,set_tx_power_3db 
+0x39de 004012 bbit1 tx_power_5db ,set_tx_power_5db 
+0x39df 004013 bbit1 tx_power_f3db ,set_tx_power_f3db 
+0x39e0 004014 bbit1 tx_power_f5db ,set_tx_power_f5db 
+:      004015 set_tx_power_0db:
+0x39e1 004016 hjam 0xf0 ,0x956 
+0x39e2 004017 call txon_common 
+0x39e3 004018 hjam 0xd8 ,0x955 
+0x39e4 004019 rtn 
+:      004021 set_tx_power_3db:
+0x39e5 004022 hjam 0xdf ,0x956 
+0x39e6 004023 call txon_common 
+0x39e7 004024 hjam 0xdf ,0x955 
+0x39e8 004025 rtn 
+:      004027 set_tx_power_5db:
+0x39e9 004028 hjam 0xff ,0x956 
+0x39ea 004029 call txon_common 
+0x39eb 004030 hjam 0xdf ,0x955 
+0x39ec 004031 rtn 
+:      004032 set_tx_power_f3db:
+0x39ed 004033 hjam 0xce ,0x956 
+0x39ee 004034 call txon_common 
+0x39ef 004035 hjam 0xd8 ,0x955 
+0x39f0 004036 rtn 
+:      004038 set_tx_power_f5db:
+0x39f1 004039 hjam 0xcb ,0x956 
+0x39f2 004040 call txon_common 
+0x39f3 004041 hjam 0xd8 ,0x955 
+0x39f4 004042 rtn 
+:      004044 txon_common:
+0x39f5 004045 nop 4 
+0x39f6 004046 hjam 0xd1 ,0x955 
+0x39f7 004047 nop 4 
+0x39f8 004048 hjam 0xd2 ,0x955 
+0x39f9 004049 nop 4 
+0x39fa 004050 hjam 0xd4 ,0x955 
+0x39fb 004051 rtn 
+:      004054 initialize_radio:
+0x39fc 004055 hjam clksel_rc ,core_clksel 
+0x39fd 004056 call init_rf_param 
+:      004057 initialize_radio_wait:
+0x39fe 004058 fetch 2 ,mem_rf_init_ptr 
+0x39ff 004059 bbit0 14 ,initialize_radio_wait 
+0x3a00 004060 iforce contr 
+0x3a01 004061 arg 0x8900 ,temp 
+:      004062 initialize_radio_loop:
+0x3a02 004063 ifetch 1 ,contr 
+0x3a03 004064 beq 0xff ,initialize_radio_cont 
+0x3a04 004065 ior temp ,contw 
+0x3a05 004066 ifetch 1 ,contr 
+0x3a06 004067 istore 1 ,contw 
+0x3a07 004068 branch initialize_radio_loop 
+:      004069 initialize_radio_cont:
+0x3a08 004070 set0 mark_ext_patch ,mark 
+0x3a09 004071 bpatch patch11_3 ,mem_patch11 
+0x3a0a 004072 call lpm_cal_xtal_startup 
+0x3a0b 004073 call switchto_dpllclk 
+0x3a0c 004075 setarg param_dpll_start_delay 
+0x3a0d 004076 iadd clkn_bt ,pdata 
+0x3a0e 004077 store 4 ,mem_dpll_clkn 
+0x3a0f 004078 set1 reset ,radio_ctrl 
+0x3a10 004079 force 0 ,radio_ctrl 
+0x3a11 004080 ncall do_rccal ,wake 
+0x3a12 004081 branch set_rccal 
+:      004084 rf_write_freq:
+0x3a13 004085 set0 mark_ext_patch ,mark 
+0x3a14 004086 bpatch patch11_4 ,mem_patch11 
+0x3a15 004087 setarg 2400 
+0x3a16 004088 iadd rega ,temp 
+0x3a17 004089 fetch 1 ,mem_fcomp_mul 
+0x3a18 004090 hjam 0x04 ,rf_pll_rstn 
+0x3a19 004091 imul32 temp ,pdata 
+0x3a1a 004092 fetcht 1 ,mem_fcomp_div 
+0x3a1b 004093 idiv temp 
+0x3a1c 004094 call wait_div_end 
+0x3a1d 004095 quotient rega 
+0x3a1e 004096 remainder pdata 
+0x3a1f 004097 lshift16 pdata ,pdata 
+0x3a20 004098 lshift4 pdata ,pdata 
+0x3a21 004099 idiv temp 
+0x3a22 004100 call wait_div_end 
+0x3a23 004101 quotient pdata 
+0x3a24 004102 lshift8 pdata ,pdata 
+0x3a25 004103 lshift pdata ,pdata 
+0x3a26 004104 ior rega ,pdata 
+0x3a27 004105 hstore 4 ,rf_pll_intg 
+0x3a28 004106 hjam 0x44 ,rf_pll_rstn 
+0x3a29 004107 hjam 0xc4 ,rf_pll_rstn 
+0x3a2a 004108 rtn 
+:      004111 do_rccal:
+0x3a2b 004112 set0 mark_ext_patch ,mark 
+0x3a2c 004113 bpatch patch11_5 ,mem_patch11 
+0x3a2d 004114 hjam 0x02 ,rfen_adc 
+0x3a2e 004115 setarg 250000 
+0x3a2f 004116 call sleep 
+0x3a30 004117 hjam 0x7f ,rfen_rx 
+0x3a31 004118 nop 130 
+0x3a32 004119 hjam 0x30 ,rf_rccal_ctrl 
+0x3a33 004120 hjam 0xd0 ,rfen_tx 
+0x3a34 004121 hjam 0x70 ,rf_rccal_ctrl 
+0x3a35 004122 hjam 0xf0 ,rf_rccal_ctrl 
+0x3a36 004123 force 50 ,loopcnt 
+:      004124 do_rccal_loop:
+0x3a37 004125 hfetch 1 ,rf_rccal_result 
+0x3a38 004126 bbit1 5 ,do_rccal_end 
+0x3a39 004127 loop do_rccal_loop 
+:      004128 do_rccal_end:
+0x3a3a 004129 store 1 ,mem_rf_rccal 
+0x3a3b 004130 hjam 0 ,rfen_tx 
+0x3a3c 004131 hjam 0 ,rfen_rx 
+0x3a3d 004132 hjam 0x00 ,rfen_adc 
+0x3a3e 004133 rtn 
+:      004135 set_rccal:
+0x3a3f 004136 set0 mark_ext_patch ,mark 
+0x3a40 004137 bpatch patch11_6 ,mem_patch11 
+0x3a41 004138 fetch 1 ,mem_rf_rccal 
+0x3a42 004139 set1 5 ,pdata 
+0x3a43 004140 hstore 1 ,rf_rccal_ctrl 
+0x3a44 004141 hfetcht 1 ,rf_bpf_ctrim 
+0x3a45 004142 and_into 7 ,temp 
+0x3a46 004143 lshift3 pdata ,pdata 
+0x3a47 004144 ior temp ,pdata 
+0x3a48 004145 hstore 1 ,rf_bpf_ctrim 
+0x3a49 004146 hfetch 1 ,rf_bpf_ib 
+0x3a4a 004147 set0 bpf_rccal ,pdata 
+0x3a4b 004148 hstore 1 ,rf_bpf_ib 
+0x3a4c 004149 hfetch 1 ,rf_adc_rccal 
+0x3a4d 004150 set0 adc_rccal ,pdata 
+0x3a4e 004151 hstore 1 ,rf_adc_rccal 
+0x3a4f 004152 rtn 
+:      004154 save_rssi:
+0x3a50 004155 set0 mark_ext_patch ,mark 
+0x3a51 004156 bpatch patch11_7 ,mem_patch11 
+0x3a52 004157 hfetch 2 ,rf_afc_d2a 
+0x3a53 004158 rshift4 pdata ,pdata 
+0x3a54 004159 rshift3 pdata ,pdata 
+0x3a55 004160 sub pdata ,0 ,pdata 
+0x3a56 004161 and_into 0xff ,pdata 
+0x3a57 004162 div pdata ,10 
+0x3a58 004163 call wait_div_end 
+0x3a59 004164 quotient pdata 
+0x3a5a 004165 lshift4 pdata ,pdata 
+0x3a5b 004166 remainder temp 
+0x3a5c 004167 ior temp ,pdata 
+0x3a5d 004168 store 1 ,mem_rssi 
+0x3a5e 004169 rtn 
+:      004172 switchto_dpllclk:
+0x3a5f 004173 hjam clksel_rc ,core_clksel 
+0x3a60 004174 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a61 004175 set0 4 ,pdata 
+0x3a62 004176 set0 5 ,pdata 
+0x3a63 004177 hstore 1 ,rf_clkpll_frac + 2 
+0x3a64 004178 hjam 0x00 ,rfen_ck 
+0x3a65 004179 hjam 0x00 ,rfen_msc 
+0x3a66 004180 hjam 0x70 ,rfen_msc 
+0x3a67 004181 hjam 0xff ,rfen_ck 
+0x3a68 004182 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a69 004183 set1 4 ,pdata 
+0x3a6a 004184 set1 5 ,pdata 
+0x3a6b 004185 hstore 1 ,rf_clkpll_frac + 2 
+0x3a6c 004186 call init_lpm_ctrl 
+0x3a6d 004187 hfetch 1 ,rf_clkpll_int 
+0x3a6e 004188 set1 7 ,pdata 
+0x3a6f 004189 hstore 1 ,rf_clkpll_int 
+0x3a70 004190 set0 7 ,pdata 
+0x3a71 004191 hstore 1 ,rf_clkpll_int 
+0x3a72 004192 set1 7 ,pdata 
+0x3a73 004193 hstore 1 ,rf_clkpll_int 
+0x3a74 004195 hjam clksel_xtal ,core_clksel 
+0x3a75 004196 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a76 004197 and_into 0xcf ,pdata 
+0x3a77 004198 hstore 1 ,rf_clkpll_frac + 2 
+0x3a78 004199 or_into 0x30 ,pdata 
+0x3a79 004200 hstore 1 ,rf_clkpll_frac + 2 
+0x3a7a 004201 rtn 
+:      004204 xtal_fast_wake:
+0x3a7b 004205 setarg 0xf0f 
+0x3a7c 004206 branch lpm_write_config 
+:      004208 init_lpm_ctrl:
+0x3a7d 004209 setarg 0x80f 
+0x3a7e 004210 branch lpm_write_config 
+:      004214 start_receiver:
+0x3a7f 004215 set0 mark_ext_patch ,mark 
+0x3a80 004216 bpatch patch12_0 ,mem_patch12 
+0x3a81 004217 call rf_rx_enable 
+0x3a82 004218 disable is_tx 
+0x3a83 004219 enable is_rx 
+0x3a84 004220 pulse init_encrypt 
+0x3a85 004221 rtn 
+:      004223 prep_crypt:
+0x3a86 004224 set0 mark_ext_patch ,mark 
+0x3a87 004225 bpatch patch12_1 ,mem_patch12 
+0x3a88 004226 fetch 1 ,mem_state_map 
+0x3a89 004227 isolate1 smap_encryption ,pdata 
+0x3a8a 004228 setflag true ,0 ,pdata 
+0x3a8b 004229 hstore 1 ,core_encrypt 
+0x3a8c 004230 arg mem_kc ,contr 
+0x3a8d 004231 ifetch 9 ,contr 
+0x3a8e 004232 iforce kc_ls 
+0x3a8f 004233 ifetch 7 ,contr 
+0x3a90 004234 iforce kc_ms 
+0x3a91 004235 fetch 1 ,mem_key_size 
+0x3a92 004236 add pdata ,-1 ,g1l 
+0x3a93 004237 pulse kc_p_activate 
+0x3a94 004238 rtn 
+:      004240 wait_access_end:
+0x3a95 004241 deposit clke 
+0x3a96 004242 store 6 ,mem_sync_clke 
+0x3a97 004243 disable decode_fec0 
+0x3a98 004244 nbranch shutdown_radio ,sync 
+0x3a99 004245 arg param_clke_cal ,clke_rt 
+0x3a9a 004246 increase 1 ,clke_bt 
+0x3a9b 004247 and_into 0x1fc ,clke_bt 
+0x3a9c 004248 rtn 
+:      004252 wait_access_mhalfbnd:
+0x3a9d 004253 enable decode_fec0 
+:      004254 wait_access_mhalfbnd_correlate:
+0x3a9e 004255 correlate null ,mhalfbnd 
+0x3a9f 004256 branch wait_access_end ,sync 
+0x3aa0 004257 compare 0x02 ,clke_bt ,0x02 
+0x3aa1 004258 nbranch wait_access_mhalfbnd_correlate ,true 
+0x3aa2 004259 branch wait_access_end 
+:      004261 wait_access_clkn_rt:
+0x3aa3 004262 set0 mark_ext_patch ,mark 
+0x3aa4 004263 bpatch patch12_2 ,mem_patch12 
+0x3aa5 004264 arg param_conn_access ,timeup 
+0x3aa6 004265 enable decode_fec0 
+0x3aa7 004266 correlate clkn_rt ,meet 
+0x3aa8 004267 disable decode_fec0 
+0x3aa9 004268 nbranch shutdown_radio ,sync 
+0x3aaa 004269 rtn 
+:      004271 wait_access_forever:
+0x3aab 004272 set0 mark_ext_patch ,mark 
+0x3aac 004273 bpatch patch12_3 ,mem_patch12 
+0x3aad 004274 enable decode_fec0 
+0x3aae 004275 correlate null ,timeout 
+0x3aaf 004276 disable decode_fec0 
+0x3ab0 004277 nbranch shutdown_radio ,sync 
+0x3ab1 004278 arg param_clke_cal ,clke_rt 
+0x3ab2 004279 and_into 0x1fc ,clke_bt 
+0x3ab3 004280 rtn 
+:      004283 reserve_slot:
+0x3ab4 004284 set0 mark_ext_patch ,mark 
+0x3ab5 004285 bpatch patch12_4 ,mem_patch12 
+0x3ab6 004286 iforce rega 
+0x3ab7 004287 deposit bt_clk 
+0x3ab8 004288 iadd temp ,timeup 
+0x3ab9 004289 copy timeup ,pdata 
+0x3aba 004290 store 4 ,mem_next_btclk 
+0x3abb 004291 deposit rega 
+0x3abc 004292 rtn 
+:      004295 ahead_window:
+0x3abd 004296 copy pdata ,temp 
+0x3abe 004297 set0 mark_ext_patch ,mark 
+0x3abf 004298 bpatch patch12_5 ,mem_patch12 
+0x3ac0 004299 copy temp ,pdata 
+0x3ac1 004300 call clk2bt 
+0x3ac2 004301 lshift16 bt_clk ,pdata 
+0x3ac3 004302 set1 44 ,pdata 
+0x3ac4 004303 call clk_diff 
+0x3ac5 004304 set0 44 ,pdata 
+0x3ac6 004305 call get_clk 
+0x3ac7 004306 call clk_diff 
+0x3ac8 004307 rtn user 
+0x3ac9 004308 call clk2rt 
+0x3aca 004309 iforce stop_watch 
+0x3acb 004310 until null ,timeout 
+0x3acc 004311 rtn 
+:      004314 setup_clk:
+0x3acd 004315 set0 mark_ext_patch ,mark 
+0x3ace 004316 bpatch patch12_6 ,mem_patch12 
+0x3acf 004317 branch setup_clkn ,clknt 
+0x3ad0 004318 until clke_rt ,meet 
+:      004319 skip_setup_clke:
+0x3ad1 004320 copy clke_bt ,temp 
+0x3ad2 004321 branch setup_clknbt 
+:      004322 setup_clkn:
+0x3ad3 004323 branch skip_setup_clkn ,attempt 
+0x3ad4 004324 until clkn_rt ,meet 
+:      004325 skip_setup_clkn:
+0x3ad5 004326 copy clkn_bt ,temp 
+:      004327 setup_clknbt:
+0x3ad6 004328 branch setup_clk11 ,user 
+0x3ad7 004329 compare 1 ,temp ,3 
+0x3ad8 004330 nbranch setup_clk ,true 
+:      004331 setup_complete:
+0x3ad9 004332 set0 mark_ext_patch ,mark 
+0x3ada 004333 bpatch patch12_7 ,mem_patch12 
+0x3adb 004334 fetch 1 ,mem_state 
+0x3adc 004335 rtnbit0 state_inconn 
+0x3add 004336 fetch 4 ,mem_next_btclk 
+0x3ade 004337 isub temp ,pdata 
+0x3adf 004338 nrtn positive 
+0x3ae0 004339 sub pdata ,0xff ,null 
+0x3ae1 004340 branch setup_clk ,positive 
+0x3ae2 004341 rtn 
+:      004342 setup_clk11:
+0x3ae3 004343 compare 3 ,temp ,3 
+0x3ae4 004344 nbranch setup_clk ,true 
+0x3ae5 004345 branch setup_complete 
+:      004347 rf_setup_time:
+0x3ae6 004348 set0 mark_ext_patch ,mark 
+0x3ae7 004349 bpatch patch13_0 ,mem_patch13 
+0x3ae8 004350 arg param_rf_setup ,timeup 
+0x3ae9 004351 branch setup_clk 
+:      004353 rf_setup_time_slave_slot:
+0x3aea 004354 disable user 
+0x3aeb 004355 branch rf_setup_time 
+:      004357 rf_setup_time_master_slot:
+0x3aec 004358 enable user 
+0x3aed 004359 branch rf_setup_time 
+:      004361 start_transmitter:
+0x3aee 004362 set0 mark_ext_patch ,mark 
+0x3aef 004363 bpatch patch13_1 ,mem_patch13 
+0x3af0 004364 call prep_crypt 
+0x3af1 004365 disable is_rx 
+0x3af2 004366 enable is_tx 
+0x3af3 004367 rtn 
+:      004371 start_tx_native:
+0x3af4 004372 set0 mark_ext_patch ,mark 
+0x3af5 004373 bpatch patch13_2 ,mem_patch13 
+0x3af6 004374 arg param_tx_setup ,timeup 
+0x3af7 004375 until clkn_rt ,meet 
+0x3af8 004376 pulse init_encrypt 
+0x3af9 004377 rtn 
+:      004379 start_rx_native:
+0x3afa 004380 set0 mark_ext_patch ,mark 
+0x3afb 004381 bpatch patch13_3 ,mem_patch13 
+0x3afc 004382 arg param_rx_setup ,timeup 
+0x3afd 004383 until clkn_rt ,meet 
+0x3afe 004384 rtn 
+:      004387 start_tx_external:
+0x3aff 004388 set0 mark_ext_patch ,mark 
+0x3b00 004389 bpatch patch13_4 ,mem_patch13 
+0x3b01 004390 arg param_tx_setup ,timeup 
+0x3b02 004391 until clke_rt ,meet 
+0x3b03 004392 pulse init_encrypt 
+0x3b04 004393 rtn 
+:      004395 send_access_word:
+0x3b05 004396 set0 mark_ext_patch ,mark 
+0x3b06 004397 bpatch patch13_5 ,mem_patch13 
+0x3b07 004398 preload access 
+0x3b08 004399 enable encode_fec0 
+0x3b09 004400 set1 txgfsk ,radio_ctrl 
+0x3b0a 004401 inject mod ,72 
+0x3b0b 004402 disable encode_fec0 
+0x3b0c 004403 rtn 
+:      004406 scan_mode_whiten:
+0x3b0d 004407 copy xin ,temp 
+0x3b0e 004408 or_into 0x60 ,temp 
+0x3b0f 004409 copy temp ,white_init 
+0x3b10 004410 rtn 
+:      004415 get_free_amaddr:
+0x3b11 004416 set0 mark_ext_patch ,mark 
+0x3b12 004417 bpatch patch13_6 ,mem_patch13 
+0x3b13 004418 fetch 1 ,mem_current_amaddr 
+0x3b14 004419 increase 1 ,pdata 
+0x3b15 004420 bne param_esco_addr ,get_free_amaddr_cont 
+0x3b16 004421 force 1 ,pdata 
+:      004422 get_free_amaddr_cont:
+0x3b17 004423 store 1 ,mem_current_amaddr 
+0x3b18 004424 iforce am_addr 
+0x3b19 004425 rtn 
+:      004427 get_clk:
+0x3b1a 004428 copy clkn ,temp 
+0x3b1b 004429 rtn master 
+0x3b1c 004430 copy clke ,temp 
+0x3b1d 004431 rtn 
+:      004433 get_clkbt:
+0x3b1e 004434 deposit clkn_bt 
+0x3b1f 004435 rtn master 
+0x3b20 004436 deposit clke_bt 
+0x3b21 004437 rtn 
+:      004440 supervision_update:
+0x3b22 004441 set0 mark_ext_patch ,mark 
+0x3b23 004442 bpatch patch13_7 ,mem_patch13 
+0x3b24 004443 fetcht 4 ,mem_supervision_timer 
+0x3b25 004444 call get_clkbt 
+0x3b26 004445 isub temp ,timeup 
+0x3b27 004446 deposit timeup 
+0x3b28 004447 fetcht 2 ,mem_supervision_to 
+0x3b29 004448 lshift temp ,temp 
+0x3b2a 004449 isub temp ,pdata 
+0x3b2b 004450 rtn 
+:      004452 supervision_flush:
+0x3b2c 004453 set0 mark_ext_patch ,mark 
+0x3b2d 004454 bpatch patch14_0 ,mem_patch14 
+0x3b2e 004455 call get_clkbt 
+0x3b2f 004456 store 4 ,mem_supervision_timer 
+0x3b30 004457 rtn 
+:      004459 assert:
+0x3b31 004460 set0 mark_ext_patch ,mark 
+0x3b32 004461 bpatch patch14_1 ,mem_patch14 
+0x3b33 004462 rtn 
+:      004464 loop:
+0x3b34 004465 branch loop 
+:      004467 sleep:
+0x3b35 004468 rtn blank 
+0x3b36 004470 rshift pdata ,pdata 
+0x3b37 004471 increase -3 ,pdata 
+:      004472 sleep_loop:
+0x3b38 004473 increase -1 ,pdata 
+0x3b39 004474 nbranch sleep_loop ,zero 
+0x3b3a 004475 force 0 ,pdata 
+0x3b3b 004476 rtn 
+:      004480 init_param:
+0x3b3c 004482 arg 0x10 ,loopcnt 
+0x3b3d 004483 arg 0 ,contw 
+0x3b3e 004484 call memset0 
+0x3b3f 004485 arg mem_le_state ,contw 
+0x3b40 004486 arg 10 ,loopcnt 
+0x3b41 004487 call memset0 
+0x3b42 004488 jam 0 ,mem_sp_calc 
+0x3b43 004489 jam 0 ,mem_fifo_temp 
+0x3b44 004490 jam 0 ,mem_le_testtype 
+0x3b45 004491 jam 0 ,mem_debug_config 
+0x3b46 004492 jam 0 ,mem_lmp_conn_state 
+0x3b47 004493 set0 mark_ext_patch ,mark 
+0x3b48 004494 bpatch patch14_2 ,mem_patch14 
+0x3b49 004495 jam 0 ,mem_connection_options 
+0x3b4a 004496 jam 0 ,mem_tester_emulate 
+0x3b4b 004497 jam 0 ,mem_tester_cnt 
+0x3b4c 004498 setarg param_glap 
+0x3b4d 004499 store 3 ,mem_glap 
+0x3b4e 004500 setarg param_acl_pktlen 
+0x3b4f 004501 store 2 ,mem_acl_pktlen 
+0x3b50 004502 jam param_sco_pktlen ,mem_sco_pktlen 
+0x3b51 004503 jam param_acl_pktcnt ,mem_acl_pktcnt 
+0x3b52 004504 jam param_sco_pktcnt ,mem_sco_pktcnt 
+0x3b53 004505 setarg param_hci_version 
+0x3b54 004506 store 3 ,mem_hci_version 
+0x3b55 004511 jam 0x60 ,mem_fhs_misc 
+0x3b56 004512 jam param_max_slot ,mem_max_slot 
+0x3b57 004513 jam 0x02 ,mem_fw_ver 
+0x3b58 004514 fetch 1 ,mem_ssp_enable 
+0x3b59 004515 ncall init_memp ,blank 
+0x3b5a 004516 fetch 1 ,mem_le_secure_connect_enable 
+0x3b5b 004517 ncall init_memp_256 ,blank 
+0x3b5c 004518 set0 mark_ext_patch ,mark 
+0x3b5d 004519 bpatch patch14_3 ,mem_patch14 
+0x3b5e 004520 rtn wake 
+0x3b5f 004521 setarg 0 
+0x3b60 004522 store 2 ,mem_tx_len 
+0x3b61 004523 rshift clkn_bt ,pdata 
+0x3b62 004524 store 4 ,mem_last_clkn 
+0x3b63 004525 rtn 
+:      004527 init_rf_param:
+0x3b64 004528 hjam 0x1f ,0x909 
+0x3b65 004529 hjam 0x45 ,0x912 
+0x3b66 004530 hjam 0x00 ,0x953 
+0x3b67 004531 hjam 0x88 ,0x96f 
+0x3b68 004532 hjam 0x30 ,0x973 
+0x3b69 004533 hjam 0xc9 ,0x956 
+0x3b6a 004535 hjam 0xff ,0x907 
+0x3b6b 004536 hjam 0x01 ,0x908 
+0x3b6c 004537 hjam 0xf8 ,0x90a 
+0x3b6d 004538 hjam 0xff ,0x90b 
+0x3b6e 004539 hjam 0xfb ,0x91a 
+0x3b6f 004540 hjam 0xfb ,0x91b 
+0x3b70 004541 hjam 0xfb ,0x91c 
+0x3b71 004542 hjam 0xf6 ,0x91d 
+0x3b72 004543 hjam 0xf2 ,0x91e 
+0x3b73 004544 hjam 0xee ,0x91f 
+0x3b74 004545 hjam 0xea ,0x920 
+0x3b75 004546 hjam 0xe6 ,0x921 
+0x3b76 004547 hjam 0xe2 ,0x922 
+0x3b77 004548 hjam 0xde ,0x923 
+0x3b78 004549 hjam 0xda ,0x924 
+0x3b79 004550 hjam 0xd6 ,0x925 
+0x3b7a 004551 hjam 0xd2 ,0x926 
+0x3b7b 004552 hjam 0xce ,0x927 
+0x3b7c 004553 hjam 0xca ,0x928 
+0x3b7d 004554 hjam 0xc6 ,0x929 
+0x3b7e 004555 hjam 0xc2 ,0x92a 
+0x3b7f 004556 hjam 0xbd ,0x92b 
+0x3b80 004557 hjam 0xb9 ,0x92c 
+0x3b81 004558 hjam 0xb5 ,0x92d 
+0x3b82 004559 hjam 0xb1 ,0x92e 
+0x3b83 004560 hjam 0xad ,0x92f 
+0x3b84 004561 hjam 0xa9 ,0x930 
+0x3b85 004562 hjam 0x80 ,0x931 
+0x3b86 004563 hjam 0x80 ,0x932 
+0x3b87 004564 hjam 0x80 ,0x933 
+0x3b88 004565 hjam 0xc0 ,0x934 
+0x3b89 004566 hjam 0xc1 ,0x935 
+0x3b8a 004567 hjam 0xc2 ,0x936 
+0x3b8b 004568 hjam 0xc3 ,0x937 
+0x3b8c 004569 hjam 0xc4 ,0x938 
+0x3b8d 004570 hjam 0xc5 ,0x939 
+0x3b8e 004571 hjam 0xc6 ,0x93a 
+0x3b8f 004572 hjam 0xc7 ,0x93b 
+0x3b90 004573 hjam 0x06 ,0x93c 
+0x3b91 004574 hjam 0x07 ,0x93d 
+0x3b92 004575 hjam 0x46 ,0x93e 
+0x3b93 004576 hjam 0x85 ,0x93f 
+0x3b94 004577 hjam 0x86 ,0x940 
+0x3b95 004578 hjam 0x87 ,0x941 
+0x3b96 004579 hjam 0xc6 ,0x942 
+0x3b97 004580 hjam 0xc7 ,0x943 
+0x3b98 004581 hjam 0xd6 ,0x944 
+0x3b99 004582 hjam 0xd7 ,0x945 
+0x3b9a 004583 hjam 0xe6 ,0x946 
+0x3b9b 004584 hjam 0xf5 ,0x947 
+0x3b9c 004585 hjam 0x00 ,0x948 
+0x3b9d 004586 hjam 0xf8 ,0x949 
+0x3b9e 004587 hjam 0x7f ,0x94a 
+0x3b9f 004588 hjam 0xfb ,0x94c 
+0x3ba0 004589 hjam 0xef ,0x94d 
+0x3ba1 004590 hjam 0xec ,0x94e 
+0x3ba2 004591 hjam 0x5e ,0x94f 
+0x3ba3 004592 hjam 0x4c ,0x957 
+0x3ba4 004593 hjam 0x6c ,0x958 
+0x3ba5 004594 hjam 0x50 ,0x959 
+0x3ba6 004595 hjam 0xe4 ,0x968 
+0x3ba7 004596 hjam 0x00 ,0x969 
+0x3ba8 004597 hjam 0x00 ,0x96a 
+0x3ba9 004598 hjam 0x30 ,0x96b 
+0x3baa 004599 rtn 
+:      004608 lpmstate:
+0x3bab 004609 setarg 0xee21 
+0x3bac 004610 hstore 2 ,core_clkoff 
+0x3bad 004611 hfetch 1 ,core_lpm_ldocnt 
+0x3bae 004612 bbit0 gpio_latch ,loadcode 
+0x3baf 004613 enable wake 
+0x3bb0 004614 bbit0 cold_wake ,lpmwake 
+0x3bb1 004615 disable wake 
+0x3bb2 004616 deposit auxcnt 
+0x3bb3 004617 nbranch lpmwake ,blank 
+0x3bb4 004618 arg param_hibernate_clks ,temp 
+0x3bb5 004619 branch lpm_enter_sleep 
+:      004620 lpmwake:
+0x3bb6 004621 hfetch 3 ,core_lpm_xtalcnt 
+0x3bb7 004622 hstore 3 ,core_lpm_reg 
+0x3bb8 004623 ifetch 1 ,contr 
+0x3bb9 004624 or_into isogate_mask ,pdata 
+0x3bba 004625 istore 1 ,contw 
+0x3bbb 004626 call lpm_write_ctrl2 
+0x3bbc 004627 hfetch 1 ,core_lpm_isogate 
+0x3bbd 004628 set1 enable_retmem ,pdata 
+0x3bbe 004629 hstore 1 ,core_lpm_isogate 
+0x3bbf 004630 call lpm_write_ctrl2 
+0x3bc0 004631 call lpm_load_context ,wake 
+0x3bc1 004632 hfetch 1 ,core_lpm_reg + 2 
+0x3bc2 004633 set0 gpio_latch ,pdata 
+0x3bc3 004634 hstore 1 ,core_lpm_reg + 2 
+0x3bc4 004635 call lpm_write_ctrl2 
+0x3bc5 004636 rtn wake 
+0x3bc6 004637 branch loadcode 
+:      004639 lpm_load_context:
+0x3bc7 004640 fetch 1 ,mem_saved_spidctrl 
+0x3bc8 004641 hstore 1 ,core_spid_ctrl 
+0x3bc9 004642 fetch 3 ,mem_saved_gsel 
+0x3bca 004643 hstore 3 ,core_gpio_sel 
+0x3bcb 004644 fetch 4 ,mem_saved_gpio + 4 
+0x3bcc 004645 hstore 4 ,core_gpio_out0 
+0x3bcd 004646 fetch 4 ,mem_saved_gpio 
+0x3bce 004647 hstore 4 ,core_gpio_oe0 
+0x3bcf 004648 fetch 8 ,mem_saved_gpio + 8 
+0x3bd0 004649 hstore 8 ,core_gpio_pu0 
+0x3bd1 004650 fetch 8 ,mem_saved_mark 
+0x3bd2 004651 iforce mark 
+0x3bd3 004652 hfetch 8 ,core_gpio_wakeup_low 
+0x3bd4 004653 store 8 ,mem_gpio_wakeup_low 
+0x3bd5 004654 call load_ucode 
+0x3bd6 004655 rtn 
+:      004657 lpm_save_context:
+0x3bd7 004658 deposit mark 
+0x3bd8 004659 store 8 ,mem_saved_mark 
+0x3bd9 004660 hfetch 8 ,core_gpio_oe0 
+0x3bda 004661 store 8 ,mem_saved_gpio 
+0x3bdb 004662 ifetch 8 ,contr 
+0x3bdc 004663 istore 8 ,contw 
+0x3bdd 004664 hfetch 3 ,core_gpio_sel 
+0x3bde 004665 store 3 ,mem_saved_gsel 
+0x3bdf 004666 hfetch 1 ,core_spid_ctrl 
+0x3be0 004667 store 1 ,mem_saved_spidctrl 
+0x3be1 004668 branch lpm_write_gpio_wakeup 
+:      004670 lpo_calibration:
+0x3be2 004671 hfetch 1 ,core_bist_ctrl 
+0x3be3 004672 nbranch lpo_cal_inited ,blank 
+0x3be4 004673 fetch 3 ,mem_clks_per_lpo 
+0x3be5 004674 nrtn blank 
+0x3be6 004675 hjam 0xc0 ,core_bist_ctrl 
+0x3be7 004676 hjam ccnt_start ,core_misc_ctrl 
+:      004677 lpo_cal_inited:
+0x3be8 004678 hfetch 1 ,core_perf_status 
+0x3be9 004679 rtnbit0 1 
+0x3bea 004680 hfetch 3 ,core_clk_counter 
+0x3beb 004681 store 3 ,mem_clks_per_lpo 
+0x3bec 004682 rtn 
+:      004686 lpm_adjust_clk:
+0x3bed 004687 set0 mark_ext_patch ,mark 
+0x3bee 004688 bpatch patch14_4 ,mem_patch14 
+0x3bef 004689 deposit clke 
+0x3bf0 004690 call clk_diff_rt 
+0x3bf1 004691 fetcht 4 ,mem_sleep_counter_all 
+0x3bf2 004692 sub temp ,0xff ,null 
+0x3bf3 004693 rtn positive 
+0x3bf4 004694 lshift8 pdata ,pdata 
+0x3bf5 004695 lshift4 pdata ,pdata 
+0x3bf6 004696 idiv temp 
+0x3bf7 004697 call wait_div_end 
+0x3bf8 004698 quotient pdata 
+0x3bf9 004699 arg param_lpm_adjmax ,temp 
+0x3bfa 004700 call ceiling 
+0x3bfb 004701 store 1 ,mem_lpm_adjust 
+0x3bfc 004702 nbranch lpm_adjust_positive ,user 
+0x3bfd 004703 sub pdata ,0 ,pdata 
+:      004704 lpm_adjust_positive:
+0x3bfe 004705 fetcht 3 ,mem_clks_per_lpo 
+0x3bff 004706 iadd temp ,pdata 
+0x3c00 004707 store 3 ,mem_clks_per_lpo 
+:      004708 lpm_clear_counter:
+0x3c01 004709 setarg 0 
+0x3c02 004710 store 4 ,mem_sleep_counter_all 
+0x3c03 004711 rtn 
+:      004714 lpm_hibernate:
+0x3c04 004715 set0 mark_ext_patch ,mark 
+0x3c05 004716 bpatch patch14_5 ,mem_patch14 
+0x3c06 004717 call lpm_write_gpio_wakeup 
+0x3c07 004718 hfetch 4 ,core_lpm_ctrl 
+0x3c08 004719 set0 15 ,pdata 
+0x3c09 004720 hstore 4 ,core_lpm_reg 
+0x3c0a 004721 call lpm_write_ctrl 
+:      004722 lpm_hibernate_normal:
+0x3c0b 004723 arg param_hibernate_clks ,temp 
+0x3c0c 004724 fetch 1 ,mem_lpm_hibernate_switch 
+0x3c0d 004725 store 1 ,mem_lpm_xtalcnt + 4 
+0x3c0e 004726 fetch 1 ,mem_lpm_xtalcnt + 2 
+0x3c0f 004727 set1 cold_wake ,pdata 
+0x3c10 004728 store 1 ,mem_lpm_xtalcnt + 2 
+:      004731 lpm_sleep:
+0x3c11 004732 set0 mark_ext_patch ,mark 
+0x3c12 004733 bpatch patch14_6 ,mem_patch14 
+0x3c13 004734 call xtal_fast_wake 
+0x3c14 004735 fetch 4 ,mem_sleep_counter_all 
+0x3c15 004736 iadd temp ,pdata 
+0x3c16 004737 store 4 ,mem_sleep_counter_all 
+0x3c17 004738 call lpm_save_context 
+0x3c18 004739 fetch 5 ,mem_lpm_xtalcnt 
+0x3c19 004740 hstore 4 ,core_lpm_reg 
+0x3c1a 004741 rshift32 pdata ,rega 
+0x3c1b 004742 until null ,lpo_edge 
+0x3c1c 004743 deposit clkn 
+0x3c1d 004744 store 6 ,mem_sleep_clkn 
+0x3c1e 004745 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+0x3c1f 004746 until null ,lpo_edge 
+0x3c20 004747 until null ,lpo_edge 
+0x3c21 004748 deposit rega 
+0x3c22 004749 hstore 1 ,core_lpm_isogate 
+0x3c23 004750 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+:      004751 lpm_enter_sleep:
+0x3c24 004752 until null ,lpo_edge 
+0x3c25 004753 until null ,lpo_edge 
+0x3c26 004754 hstoret 4 ,core_lpm_reg 
+0x3c27 004755 hjam lpmreg_sel_counter ,core_lpm_wr 
+0x3c28 004756 until null ,never 
+:      004761 lpm_recover_clk:
+0x3c29 004762 set0 mark_ext_patch ,mark 
+0x3c2a 004763 bpatch patch14_7 ,mem_patch14 
+0x3c2b 004764 setarg 0 
+0x3c2c 004765 copy auxcnt ,null 
+0x3c2d 004766 branch lpm_recover_timeout ,zero 
+0x3c2e 004767 hfetch 1 ,core_lpm_xtalcnt 
+0x3c2f 004768 hfetcht 1 ,core_lpm_buckcnt 
+0x3c30 004769 isub temp ,null 
+0x3c31 004770 branch lpm_recover_xtal ,positive 
+0x3c32 004771 deposit temp 
+:      004772 lpm_recover_xtal:
+0x3c33 004773 isub auxcnt ,pdata 
+0x3c34 004774 increase 1 ,pdata 
+:      004775 lpm_recover_timeout:
+0x3c35 004776 increase 8 ,pdata 
+0x3c36 004777 until null ,lpo_edge 
+0x3c37 004778 iadd lpo_time ,pdata 
+0x3c38 004779 fetcht 4 ,mem_sleep_counter 
+0x3c39 004780 iadd temp ,pdata 
+0x3c3a 004781 fetcht 3 ,mem_clks_per_lpo 
+0x3c3b 004782 imul32 temp ,pdata 
+0x3c3c 004783 rshift8 pdata ,pdata 
+0x3c3d 004784 rshift4 pdata ,pdata 
+0x3c3e 004785 increase param_lpm_fix ,pdata 
+0x3c3f 004786 arg 3750 ,temp 
+0x3c40 004787 idiv temp 
+0x3c41 004788 call wait_div_end 
+0x3c42 004789 quotient pdata 
+0x3c43 004790 lshift16 pdata ,pdata 
+0x3c44 004791 remainder temp 
+0x3c45 004792 ior temp ,pdata 
+0x3c46 004793 fetcht 6 ,mem_sleep_clkn 
+0x3c47 004794 call clk_add 
+0x3c48 004795 copy temp ,clkn 
+0x3c49 004796 fetch 6 ,mem_context + coffset_clk_offset 
+0x3c4a 004797 call calc_clke2 
+0x3c4b 004798 deposit clke 
+0x3c4c 004799 store 6 ,mem_pdatatemp 
+0x3c4d 004800 deposit auxcnt 
+0x3c4e 004801 istore 1 ,contw 
+0x3c4f 004802 hfetch 1 ,core_gpio_in1 
+0x3c50 004803 or_into 0xf0 ,pdata 
+0x3c51 004804 istore 1 ,contw 
+0x3c52 004805 rtn 
+:      004807 lpm_dispatch:
+0x3c53 004808 set0 mark_ext_patch ,mark 
+0x3c54 004809 bpatch patch15_0 ,mem_patch15 
+0x3c55 004810 call lpo_calibration 
+0x3c56 004811 fetch 3 ,mem_clks_per_lpo 
+0x3c57 004812 rtn blank 
+0x3c58 004813 fetch 1 ,mem_lpm_mode 
+0x3c59 004814 rtn blank 
+0x3c5a 004815 fetch 1 ,mem_ssp_enable 
+0x3c5b 004816 branch lpm_dispatch_next ,blank 
+0x3c5c 004817 fetch 1 ,mem_sp_local_key_invalid 
+0x3c5d 004818 rtn blank 
+:      004819 lpm_dispatch_next:
+0x3c5e 004820 fetch 1 ,mem_le_sc_calc 
+0x3c5f 004821 nrtn blank 
+0x3c60 004822 call lpm_check_wake_lock 
+0x3c61 004823 nrtn blank 
+0x3c62 004824 fetch 1 ,mem_context 
+0x3c63 004825 compare 3 ,pdata ,0x7 
+0x3c64 004826 nbranch lpm_dispatch_unconn ,true 
+0x3c65 004827 fetch 2 ,mem_context + coffset_tsniff 
+0x3c66 004828 rtn blank 
+0x3c67 004829 rtn wake 
+:      004830 lpm_dispatch_next0:
+0x3c68 004831 set0 mark_ext_patch ,mark 
+0x3c69 004832 bpatch patch15_1 ,mem_patch15 
+0x3c6a 004833 fetcht 1 ,mem_lpm_current_mult 
+0x3c6b 004834 fetch 2 ,mem_context + coffset_tsniff 
+0x3c6c 004835 imul32 temp ,pdata 
+0x3c6d 004836 rshift4 temp ,temp 
+0x3c6e 004837 rshift2 temp ,temp 
+0x3c6f 004838 isub temp ,pdata 
+0x3c70 004839 fetcht 4 ,mem_context + coffset_sniff_anchor 
+0x3c71 004840 iadd temp ,pdata 
+0x3c72 004841 fetcht 1 ,mem_lpm_overhead 
+0x3c73 004842 isub temp ,pdata 
+0x3c74 004843 lshift16 pdata ,alarm 
+:      004844 lpm_dispatch_next1:
+0x3c75 004845 set0 mark_ext_patch ,mark 
+0x3c76 004846 bpatch patch15_2 ,mem_patch15 
+0x3c77 004847 fetch 2 ,mem_context + coffset_rx_window 
+0x3c78 004848 rshift pdata ,pdata 
+0x3c79 004849 call clk2bt 
+0x3c7a 004850 deposit alarm 
+0x3c7b 004851 call clk_diff 
+0x3c7c 004852 copy clke ,temp 
+0x3c7d 004853 call clk_diff_rt 
+0x3c7e 004854 rtn user 
+:      004855 lpm_dispatch_sleep:
+0x3c7f 004856 call clk2lpo 
+:      004857 lpm_dispatch_lpo:
+0x3c80 004858 set0 mark_ext_patch ,mark 
+0x3c81 004859 bpatch patch15_3 ,mem_patch15 
+0x3c82 004860 fetch 1 ,mem_lpm_xtalcnt 
+0x3c83 004861 isub temp ,null 
+0x3c84 004862 branch lpm_clear_counter ,positive 
+0x3c85 004863 storet 4 ,mem_sleep_counter 
+0x3c86 004864 call app_will_enter_lpm 
+0x3c87 004865 call l2cap_lpm_save_txbuf 
+0x3c88 004866 fetcht 4 ,mem_sleep_counter 
+0x3c89 004867 branch lpm_sleep 
+:      004869 lpm_dispatch_unconn:
+0x3c8a 004870 set0 mark_ext_patch ,mark 
+0x3c8b 004871 bpatch patch15_4 ,mem_patch15 
+0x3c8c 004872 fetch 1 ,mem_context 
+0x3c8d 004873 rtnbit1 state_inconn 
+0x3c8e 004874 rtnbit1 state_inpage 
+0x3c8f 004875 fetch 1 ,mem_ssp_enable 
+0x3c90 004876 branch lpm_unconn_nossp ,blank 
+0x3c91 004877 fetch 1 ,mem_sp_local_key_invalid 
+0x3c92 004878 rtn blank 
+:      004879 lpm_unconn_nossp:
+0x3c93 004880 set0 mark_ext_patch ,mark 
+0x3c94 004881 bpatch patch15_5 ,mem_patch15 
+0x3c95 004882 fetch 1 ,mem_le_adv_enable 
+0x3c96 004883 nbranch lpm_unconn_cont ,blank 
+0x3c97 004884 fetch 1 ,mem_scan_mode 
+0x3c98 004885 rtn blank 
+:      004886 lpm_unconn_cont:
+0x3c99 004887 fetch 2 ,mem_lpm_interval 
+0x3c9a 004888 rtn blank 
+:      004889 lpm_sleep_btclk:
+0x3c9b 004890 fetcht 1 ,mem_lpm_overhead 
+0x3c9c 004891 isub temp ,pdata 
+0x3c9d 004892 arg 7500 ,temp 
+0x3c9e 004893 imul32 temp ,pdata 
+0x3c9f 004894 branch lpm_dispatch_sleep 
+:      004896 lpm_set_mult:
+0x3ca0 004897 set0 mark_ext_patch ,mark 
+0x3ca1 004898 bpatch patch15_6 ,mem_patch15 
+0x3ca2 004899 disable wake 
+0x3ca3 004900 fetch 1 ,mem_state 
+0x3ca4 004901 rtnbit0 state_insniff 
+0x3ca5 004902 nbranch lpm_not_match ,match 
+0x3ca6 004903 call lpm_match 
+0x3ca7 004904 fetch 2 ,mem_rx_window_sniff 
+0x3ca8 004905 store 2 ,mem_rx_window 
+0x3ca9 004906 fetch 1 ,mem_arq 
+0x3caa 004907 bbit1 wack ,lpm_mult_short 
+0x3cab 004908 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cac 004909 call l2cap_malloc_is_fifo_empty 
+0x3cad 004910 nbranch lpm_mult_short ,blank 
+0x3cae 004911 fetch 2 ,mem_cb_bt_set_mult 
+0x3caf 004912 call callback_func 
+:      004913 lpm_mult_wait_timeout:
+0x3cb0 004914 jam 0 ,mem_lpm_current_mult 
+0x3cb1 004915 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cb2 004916 fetch 1 ,mem_lpm_mult_cnt 
+0x3cb3 004917 branch lpm_mult_long ,blank 
+0x3cb4 004918 increase -1 ,pdata 
+0x3cb5 004919 store 1 ,mem_lpm_mult_cnt 
+0x3cb6 004920 rtn 
+:      004922 lpm_match:
+0x3cb7 004923 jam 0 ,mem_sniff_unint_lost 
+0x3cb8 004924 fetch 3 ,mem_sniff_rcv 
+0x3cb9 004925 increase 1 ,pdata 
+0x3cba 004926 store 3 ,mem_sniff_rcv 
+0x3cbb 004927 rtn 
+:      004929 lpm_not_match:
+0x3cbc 004930 set0 mark_ext_patch ,mark 
+0x3cbd 004931 bpatch patch15_7 ,mem_patch15 
+0x3cbe 004932 fetcht 2 ,mem_rx_window_sniff 
+0x3cbf 004933 rshift temp ,temp 
+0x3cc0 004934 fetch 2 ,mem_rx_window 
+0x3cc1 004935 iadd temp ,pdata 
+0x3cc2 004936 store 2 ,mem_rx_window 
+:      004937 lpm_lost:
+0x3cc3 004938 jam 0 ,mem_lpm_current_mult 
+0x3cc4 004939 fetch 3 ,mem_sniff_lost 
+0x3cc5 004940 increase 1 ,pdata 
+0x3cc6 004941 store 3 ,mem_sniff_lost 
+0x3cc7 004942 fetch 1 ,mem_sniff_unint_lost 
+0x3cc8 004943 increase 1 ,pdata 
+0x3cc9 004944 store 1 ,mem_sniff_unint_lost 
+0x3cca 004945 rtn 
+:      004947 lpm_mult_short:
+0x3ccb 004948 jam 0 ,mem_lpm_current_mult 
+0x3ccc 004949 fetch 1 ,mem_lpm_mult_timeout 
+0x3ccd 004950 store 1 ,mem_lpm_mult_cnt 
+0x3cce 004951 rtn 
+:      004953 lpm_mult_long:
+0x3ccf 004954 fetcht 1 ,mem_lpm_mult 
+0x3cd0 004955 storet 1 ,mem_lpm_current_mult 
+0x3cd1 004956 rtn 
+:      004958 lpm_cal_xtal_startup:
+0x3cd2 004959 set0 mark_ext_patch ,mark 
+0x3cd3 004960 bpatch patch16_0 ,mem_patch16 
+0x3cd4 004961 fetch 1 ,mem_lpm_xtalcnt 
+0x3cd5 004962 nrtn blank 
+0x3cd6 004963 hjam clksel_rc ,core_clksel 
+0x3cd7 004964 setarg 0xf0c 
+0x3cd8 004965 call lpm_write_config 
+0x3cd9 004966 setarg 200000 
+0x3cda 004967 call sleep 
+0x3cdb 004968 until null ,lpo_edge 
+0x3cdc 004969 copy lpo_time ,alarm 
+0x3cdd 004970 call xtal_fast_wake 
+0x3cde 004971 hjam clksel_xtal ,core_clksel 
+0x3cdf 004972 nop 10 
+0x3ce0 004973 until null ,lpo_edge 
+0x3ce1 004974 deposit lpo_time 
+0x3ce2 004975 isub alarm ,pdata 
+0x3ce3 004976 increase 0x30 ,pdata 
+0x3ce4 004977 arg 0xff ,temp 
+0x3ce5 004978 call ceiling 
+0x3ce6 004979 store 1 ,mem_lpm_xtalcnt 
+0x3ce7 004980 nop 30000 
+0x3ce8 004981 nop 30000 
+0x3ce9 004982 nop 30000 
+0x3cea 004983 rtn 
+:      004988 lpm_write_config:
+0x3ceb 004989 arg 0xfff ,contw 
+0x3cec 004990 iand contw ,contw 
+0x3ced 004991 fetch 1 ,mem_lpm_config 
+0x3cee 004992 and_into 0xf0 ,pdata 
+0x3cef 004993 lshift8 pdata ,pdata 
+0x3cf0 004994 ior contw ,pdata 
+0x3cf1 004995 hstore 2 ,core_lpm_reg 
+0x3cf2 004996 ifetch 2 ,contr 
+0x3cf3 004997 istore 2 ,contw 
+:      004999 lpm_write_ctrl:
+0x3cf4 005000 setarg lpmreg_sel_ctrl 
+0x3cf5 005001 branch lpm_write 
+:      005003 lpm_write_ctrl2:
+0x3cf6 005004 setarg lpmreg_sel_ctrl2 
+:      005005 lpm_write:
+0x3cf7 005006 until null ,lpo_edge 
+0x3cf8 005007 hstore 1 ,core_lpm_wr 
+0x3cf9 005008 until null ,lpo_edge 
+0x3cfa 005009 until null ,lpo_edge 
+0x3cfb 005010 rtn 
+:      005013 lpm_write_gpio_wakeup:
+0x3cfc 005014 set0 mark_ext_patch ,mark 
+0x3cfd 005015 bpatch patch16_1 ,mem_patch16 
+0x3cfe 005016 fetch 4 ,mem_gpio_wakeup_low 
+0x3cff 005017 hstore 4 ,core_lpm_reg 
+0x3d00 005018 setarg lpmreg_sel_gpiolow 
+0x3d01 005019 call lpm_write 
+0x3d02 005020 fetch 4 ,mem_gpio_wakeup_high 
+0x3d03 005021 hstore 4 ,core_lpm_reg 
+0x3d04 005022 setarg lpmreg_sel_gpiohigh 
+0x3d05 005023 branch lpm_write 
+:      005025 lpm_get_wake_lock:
+0x3d06 005026 fetch 2 ,mem_lpm_wake_lock 
+0x3d07 005027 qset1 pdata 
+0x3d08 005028 store 2 ,mem_lpm_wake_lock 
+0x3d09 005029 rtn 
+:      005031 lpm_put_wake_lock:
+0x3d0a 005032 fetch 2 ,mem_lpm_wake_lock 
+0x3d0b 005033 qset0 pdata 
+0x3d0c 005034 store 2 ,mem_lpm_wake_lock 
+0x3d0d 005035 rtn 
+:      005039 lpm_check_wake_lock:
+0x3d0e 005040 set0 mark_ext_patch ,mark 
+0x3d0f 005041 bpatch patch16_2 ,mem_patch16 
+0x3d10 005042 call app_check_wake_lock 
+0x3d11 005043 fetch 2 ,mem_lpm_wake_lock 
+0x3d12 005044 copy pdata ,rega 
+0x3d13 005045 fetch 1 ,mem_state_map 
+0x3d14 005046 isolate1 smap_rxlmp ,pdata 
+0x3d15 005047 setflag true ,wake_lock_lmp_rx ,rega 
+0x3d16 005048 fetch 1 ,mem_lmo_opcode1 
+0x3d17 005049 fetcht 1 ,mem_lmo_opcode2 
+0x3d18 005050 iadd temp ,pdata 
+0x3d19 005051 fetcht 1 ,mem_lmp_to_send 
+0x3d1a 005052 iadd temp ,pdata 
+0x3d1b 005053 nsetflag blank ,wake_lock_lmp_tx ,rega 
+:      005054 lpm_check_wake_lock0:
+0x3d1c 005055 set0 mark_ext_patch ,mark 
+0x3d1d 005056 bpatch patch16_3 ,mem_patch16 
+0x3d1e 005057 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3d1f 005058 fetcht 2 ,mem_l2cap_rxbuff2_len 
+0x3d20 005059 iadd temp ,pdata 
+0x3d21 005060 nsetflag blank ,wake_lock_l2cap_rx ,rega 
+0x3d22 005061 fetch 5 ,mem_ipc_fifo_bt2c51 
+0x3d23 005062 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+0x3d24 005063 fetch 5 ,mem_ipc_fifo_c512bt 
+0x3d25 005064 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+0x3d26 005065 fetch 1 ,mem_hci_cmd 
+0x3d27 005066 nsetflag blank ,wake_lock_cmd ,rega 
+0x3d28 005067 fetch 1 ,mem_device_option 
+0x3d29 005068 compare dvc_op_module ,pdata ,0xff 
+0x3d2a 005069 call lpm_uart_wake_lock ,true 
+0x3d2b 005070 branch lpm_check_wake_lock_nothci 
+:      005072 lpm_uart_wake_lock:
+0x3d2c 005073 hfetch 2 ,core_uart_rxitems 
+0x3d2d 005074 nsetflag blank ,wake_lock_uart_rx ,rega 
+0x3d2e 005075 hfetch 2 ,core_uart_txitems 
+0x3d2f 005076 nsetflag blank ,wake_lock_uart_tx ,rega 
+0x3d30 005077 rtn 
+:      005079 lpm_check_wake_lock_nothci:
+0x3d31 005080 setarg -8 
+0x3d32 005081 iand rega ,rega 
+:      005082 lpm_check_wake_lock_end:
+0x3d33 005083 copy rega ,pdata 
+0x3d34 005084 store 2 ,mem_lpm_wake_lock 
+0x3d35 005085 rtn blank 
+0x3d36 005086 rtn match 
+0x3d37 005087 enable wake 
+0x3d38 005088 rtn 
+:      005090 lpm_shut_down:
+0x3d39 005091 hfetch 4 ,core_lpm_ctrl 
+0x3d3a 005092 set0 27 ,pdata 
+0x3d3b 005093 hstore 4 ,core_lpm_reg 
+0x3d3c 005094 call lpm_write_ctrl 
+0x3d3d 005095 branch assert 
+:      005097 lpm_disable_exen_output:
+0x3d3e 005098 hfetch 4 ,core_lpm_xtalcnt 
+0x3d3f 005099 set0 20 ,pdata 
+0x3d40 005100 hstore 4 ,core_lpm_reg 
+0x3d41 005101 branch lpm_write_ctrl2 
+:      005103 check_bt_disabled:
+0x3d42 005104 fetch 2 ,mem_chip_functions 
+0x3d43 005105 bbit1 bt_disabled ,assert 
+0x3d44 005106 rtn 
+:      005107 check_ble_disabled:
+0x3d45 005108 fetch 2 ,mem_chip_functions 
+0x3d46 005109 bbit1 ble_disabled ,assert 
+0x3d47 005110 rtn 
+:      005111 check_module_disabled:
+0x3d48 005112 fetch 2 ,mem_chip_functions 
+0x3d49 005113 bbit1 module_disable ,assert 
+0x3d4a 005114 rtn 
+:      005121 app_init:
+0x3d4b 005122 set0 mark_ext_patch ,mark 
+0x3d4c 005123 bpatch patch16_4 ,mem_patch16 
+0x3d4d 005124 fetch 1 ,mem_device_option 
+0x3d4e 005125 branch app_init ,blank 
+0x3d4f 005129 beq dvc_op_kb ,kb_init 
+0x3d50 005130 beq dvc_op_shutter ,shutter_init 
+0x3d51 005131 beq dvc_op_module ,module_init 
+0x3d52 005133 bbit1 dvc_op_mouse ,mouse_init 
+0x3d53 005134 bbit1 dvc_op_keyboard ,kb_init 
+0x3d54 005135 rtn 
+:      005137 app_lpm_init:
+0x3d55 005138 set0 mark_ext_patch ,mark 
+0x3d56 005139 bpatch patch16_5 ,mem_patch16 
+0x3d57 005140 jam 0 ,mem_tester_emulate 
+0x3d58 005141 jam 0 ,mem_debug_config 
+0x3d59 005142 jam 0 ,mem_lch_code 
+0x3d5a 005143 setarg 0 
+0x3d5b 005144 store 5 ,mem_sp_state_start 
+0x3d5c 005145 fetch 1 ,mem_device_option 
+0x3d5d 005146 branch app_lpm_init ,blank 
+0x3d5e 005147 beq dvc_op_module ,module_lpm_init 
+:      005148 app_lpm_init0:
+0x3d5f 005149 rtn 
+:      005152 app_process_idle:
+0x3d60 005153 call ui_dispatch 
+0x3d61 005154 call check_51cmd 
+0x3d62 005155 call app_process_bb_event 
+0x3d63 005156 fetch 2 ,mem_cb_idle_process 
+0x3d64 005157 branch callback_func 
+:      005159 app_process_bt:
+0x3d65 005160 fetch 2 ,mem_cb_bt_process 
+0x3d66 005161 branch callback_func 
+:      005163 app_process_ble:
+0x3d67 005164 fetch 2 ,mem_cb_le_process 
+0x3d68 005165 branch callback_func 
+:      005167 app_process_bb_event:
+0x3d69 005168 set0 mark_ext_patch ,mark 
+0x3d6a 005169 bpatch patch16_6 ,mem_patch16 
+0x3d6b 005171 arg mem_ipc_fifo_bt2c51 ,rega 
+0x3d6c 005172 call fifo_out 
+0x3d6d 005173 rtn blank 
+0x3d6e 005175 copy pdata ,regc 
+0x3d6f 005176 call app_event_normal_process 
+0x3d70 005177 branch app_process_bb_event_priority 
+:      005179 app_discard_event:
+0x3d71 005180 arg 0 ,regc 
+0x3d72 005181 rtn 
+:      005186 app_event_normal_process:
+0x3d73 005187 beq bt_evt_bb_connected ,app_evt_bt_conn 
+0x3d74 005188 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+0x3d75 005189 beq bt_evt_setup_complete ,app_evt_setup_complete 
+0x3d76 005190 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+0x3d77 005191 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+0x3d78 005192 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+0x3d79 005193 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+0x3d7a 005194 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+0x3d7b 005195 beq bt_evt_le_connected ,app_le_event_bb_connected 
+0x3d7c 005196 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+0x3d7d 005197 beq bt_evt_reconn_started ,app_event_reconn_start 
+0x3d7e 005198 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+0x3d7f 005199 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+0x3d80 005201 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+0x3d81 005202 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+0x3d82 005203 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+0x3d83 005204 beq bt_evt_switch_success_master ,app_event_switch_success 
+0x3d84 005206 and pdata ,0x0f ,temp 
+0x3d85 005207 and_into bt_evt_timer_mask ,pdata 
+0x3d86 005208 beq bt_evt_timer_init ,app_evt_timer 
+0x3d87 005209 rtn 
+:      005211 app_evt_bt_conn:
+0x3d88 005212 fetch 2 ,mem_ui_state_map 
+0x3d89 005213 set1 ui_state_bt_connected ,pdata 
+0x3d8a 005214 store 2 ,mem_ui_state_map 
+0x3d8b 005215 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8c 005216 set0 app_disc_by_button ,pdata 
+0x3d8d 005217 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8e 005218 rtn 
+:      005220 app_event_switch_success:
+0x3d8f 005221 jam 0 ,mem_switch_fail_master_count 
+0x3d90 005222 rtn 
+:      005224 app_event_switch_fail_master:
+0x3d91 005225 fetch 1 ,mem_switch_fail_master_count 
+0x3d92 005226 increase 1 ,pdata 
+0x3d93 005227 store 1 ,mem_switch_fail_master_count 
+0x3d94 005228 sub pdata ,1 ,null 
+0x3d95 005229 branch app_bt_role_switch ,positive 
+0x3d96 005230 jam 0 ,mem_switch_fail_master_count 
+0x3d97 005231 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d98 005232 set1 app_disc_switch_fail ,pdata 
+0x3d99 005233 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d9a 005234 branch app_bt_disconnect 
+:      005236 app_process_bb_event_priority:
+0x3d9b 005237 fetch 2 ,mem_cb_bb_event_process 
+0x3d9c 005238 branch callback_func 
+:      005240 app_check_wake_lock:
+0x3d9d 005241 fetch 2 ,mem_cb_check_wakelock 
+0x3d9e 005242 branch callback_func 
+:      005244 app_will_enter_lpm:
+0x3d9f 005245 fetch 2 ,mem_cb_before_lpm 
+0x3da0 005246 branch callback_func 
+:      005248 app_event_linkkey_generate:
+0x3da1 005249 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da2 005250 set1 app_disc_after_pairing ,pdata 
+0x3da3 005251 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da4 005252 branch app_bt_store_reconn_info 
+:      005254 app_event_reconn_start:
+0x3da5 005255 fetch 2 ,mem_ui_state_map 
+0x3da6 005256 set1 ui_state_bt_reconnect ,pdata 
+0x3da7 005257 store 2 ,mem_ui_state_map 
+0x3da8 005258 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da9 005259 set1 app_disc_after_reconn ,pdata 
+0x3daa 005260 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dab 005261 rtn 
+:      005263 app_evt_setup_complete:
+0x3dac 005264 fetch 2 ,mem_ui_state_map 
+0x3dad 005265 set1 ui_state_bt_setup_complete ,pdata 
+0x3dae 005266 store 2 ,mem_ui_state_map 
+0x3daf 005267 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db0 005268 set1 app_disc_after_setup_done ,pdata 
+0x3db1 005269 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db2 005270 rtn 
+:      005272 app_evt_hid_handshake:
+0x3db3 005273 fetch 2 ,mem_ui_state_map 
+0x3db4 005274 set1 ui_state_bt_hid_handshake ,pdata 
+0x3db5 005275 store 2 ,mem_ui_state_map 
+0x3db6 005276 rtn 
+:      005278 app_event_enter_sniff:
+0x3db7 005279 fetch 2 ,mem_ui_state_map 
+0x3db8 005280 set1 ui_state_bt_sniff ,pdata 
+0x3db9 005281 store 2 ,mem_ui_state_map 
+0x3dba 005282 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbb 005283 set1 app_disc_after_sniff ,pdata 
+0x3dbc 005284 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbd 005285 rtn 
+:      005287 app_event_exit_sniff:
+0x3dbe 005288 fetch 2 ,mem_ui_state_map 
+0x3dbf 005289 set0 ui_state_bt_sniff ,pdata 
+0x3dc0 005290 store 2 ,mem_ui_state_map 
+0x3dc1 005291 rtn 
+:      005293 app_le_event_bb_connected:
+0x3dc2 005294 fetch 2 ,mem_ui_state_map 
+0x3dc3 005295 set1 ui_state_ble_connected ,pdata 
+0x3dc4 005296 store 2 ,mem_ui_state_map 
+0x3dc5 005297 rtn 
+:      005299 app_le_event_bb_disconn:
+0x3dc6 005300 fetch 2 ,mem_ui_state_map 
+0x3dc7 005301 set0 ui_state_ble_connected ,pdata 
+0x3dc8 005302 store 2 ,mem_ui_state_map 
+0x3dc9 005303 jam 0 ,mem_le_switch_send_data 
+0x3dca 005304 branch app_lpm_mult_disable 
+:      005306 app_bb_event_hid_connected:
+0x3dcb 005307 fetch 2 ,mem_ui_state_map 
+0x3dcc 005308 set1 ui_state_bt_hid_conn ,pdata 
+0x3dcd 005309 store 2 ,mem_ui_state_map 
+0x3dce 005310 rtn 
+:      005312 app_evt_button_long_pressed:
+0x3dcf 005313 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd0 005314 set1 app_disc_by_button ,pdata 
+0x3dd1 005315 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd2 005316 rtn 
+:      005318 app_event_ml2cap_conn_refused:
+0x3dd3 005319 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd4 005320 set1 app_disc_l2cap_refused ,pdata 
+0x3dd5 005321 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd6 005322 branch app_bt_disconnect 
+:      005325 app_evt_timer:
+0x3dd7 005326 set0 mark_ext_patch ,mark 
+0x3dd8 005327 bpatch patch16_7 ,mem_patch16 
+0x3dd9 005328 storet 1 ,mem_app_evt_timer_count 
+:      005329 app_evt_100ms_loop:
+0x3dda 005330 fetch 1 ,mem_app_evt_timer_count 
+0x3ddb 005331 rtn blank 
+0x3ddc 005332 increase -1 ,pdata 
+0x3ddd 005333 store 1 ,mem_app_evt_timer_count 
+0x3dde 005334 call ui_button_polling 
+0x3ddf 005335 call app_lpm_wake_auto_lock_timer 
+0x3de0 005336 call app_unsniff_delay_timer 
+0x3de1 005337 call app_discovery_timer 
+0x3de2 005338 fetch 2 ,mem_cb_event_timer 
+0x3de3 005339 call callback_func 
+0x3de4 005340 branch app_evt_100ms_loop 
+:      005342 app_unsniff_delay_timer:
+0x3de5 005343 fetch 1 ,mem_unsniff2sniff_timer_count 
+0x3de6 005344 rtn blank 
+0x3de7 005345 increase -1 ,pdata 
+0x3de8 005346 store 1 ,mem_unsniff2sniff_timer_count 
+0x3de9 005347 nrtn blank 
+0x3dea 005348 call context_check_idle 
+0x3deb 005349 branch app_bt_enter_sniff ,zero 
+0x3dec 005350 rtn 
+:      005351 app_discovery_timer:
+0x3ded 005352 fetch 2 ,mem_discovery_timeout_timer_count 
+0x3dee 005353 rtn blank 
+0x3def 005354 increase -1 ,pdata 
+0x3df0 005355 store 2 ,mem_discovery_timeout_timer_count 
+0x3df1 005356 nrtn blank 
+0x3df2 005357 call app_bt_stop_discovery 
+0x3df3 005358 call app_led_off 
+0x3df4 005359 fetch 2 ,mem_cb_discovry_timeout 
+0x3df5 005360 branch callback_func 
+:      005362 app_bb_event_reconn_failed:
+0x3df6 005363 call app_disconn_reason_flag_clear 
+:      005364 app_clear_reconnect_flag:
+0x3df7 005365 fetch 2 ,mem_ui_state_map 
+0x3df8 005366 set0 ui_state_bt_reconnect ,pdata 
+0x3df9 005367 store 2 ,mem_ui_state_map 
+0x3dfa 005368 rtn 
+:      005370 app_bb_event_bb_disconn:
+0x3dfb 005371 jam 0 ,mem_unsniff2sniff_timer_count 
+0x3dfc 005372 fetch 2 ,mem_ui_state_map 
+0x3dfd 005373 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x3dfe 005374 isolate0 ui_state_bt_setup_complete ,pdata 
+0x3dff 005375 call app_discard_event ,true 
+:      005376 app_bb_event_bb_reconn_disconn:
+0x3e00 005377 set0 mark_ext_patch ,mark 
+0x3e01 005378 bpatch patch17_0 ,mem_patch17 
+0x3e02 005379 fetch 2 ,mem_ui_state_map 
+0x3e03 005380 set0 ui_state_bt_connected ,pdata 
+0x3e04 005381 set0 ui_state_bt_setup_complete ,pdata 
+0x3e05 005382 set0 ui_state_bt_hid_conn ,pdata 
+0x3e06 005383 set0 ui_state_bt_hid_handshake ,pdata 
+0x3e07 005384 set0 ui_state_bt_reconnect ,pdata 
+0x3e08 005385 store 2 ,mem_ui_state_map 
+0x3e09 005386 branch app_lpm_mult_disable 
+:      005388 app_bb_hibernate:
+0x3e0a 005389 call app_disconn_reason_clear 
+0x3e0b 005390 branch app_enter_hibernate 
+:      005393 app_disconn_reason_clear:
+0x3e0c 005394 setarg 0 
+0x3e0d 005395 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e0e 005396 rtn 
+:      005397 app_disconn_reason_flag_clear:
+0x3e0f 005398 setarg 0 
+0x3e10 005399 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e11 005400 rtn 
+:      005403 app_disconn_reason_collect_bt:
+0x3e12 005404 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e13 005405 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e14 005406 setarg 0 
+0x3e15 005407 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e16 005408 rtn 
+:      005410 app_disconn_reason_collect_ble:
+0x3e17 005411 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e18 005412 set1 app_disc_ble ,pdata 
+0x3e19 005413 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e1a 005414 setarg 0 
+0x3e1b 005415 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e1c 005416 rtn 
+:      005424 app_check_sniff:
+0x3e1d 005425 fetch 1 ,mem_ui_state_map 
+0x3e1e 005426 isolate1 ui_state_bt_sniff ,pdata 
+0x3e1f 005427 rtn 
+:      005435 app_initflag_store:
+0x3e20 005436 setarg eeprom_init_flag 
+:      005437 app_flag_store:
+0x3e21 005438 store 2 ,mem_timeup 
+0x3e22 005439 set0 mark_ext_patch ,mark 
+0x3e23 005440 bpatch patch17_1 ,mem_patch17 
+0x3e24 005441 arg 2 ,temp 
+0x3e25 005442 arg mem_timeup ,rega 
+0x3e26 005443 arg eeprom_module_init_flag ,regb 
+0x3e27 005444 branch iicd_write_eep_data 
+:      005447 app_initflag_check:
+0x3e28 005448 set0 mark_ext_patch ,mark 
+0x3e29 005449 bpatch patch17_2 ,mem_patch17 
+0x3e2a 005450 arg 2 ,temp 
+0x3e2b 005451 arg mem_pdatatemp ,rega 
+0x3e2c 005452 arg eeprom_module_init_flag ,regb 
+0x3e2d 005453 call iicd_read_eep_data 
+0x3e2e 005454 fetch 2 ,mem_pdatatemp 
+0x3e2f 005455 arg eeprom_init_flag ,temp 
+0x3e30 005456 isub temp ,null 
+0x3e31 005457 rtn 
+:      005460 app_start_auto_sniff:
+0x3e32 005461 fetch 1 ,mem_unsniff2sniff_timer 
+0x3e33 005462 store 1 ,mem_unsniff2sniff_timer_count 
+0x3e34 005463 rtn 
+:      005465 app_get_lpm_wake_lock:
+0x3e35 005466 arg wake_lock_app ,queue 
+0x3e36 005467 branch lpm_get_wake_lock 
+:      005469 app_put_lpm_wake_lock:
+0x3e37 005470 arg wake_lock_app ,queue 
+0x3e38 005471 branch lpm_put_wake_lock 
+:      005473 app_lpm_wake_auto_lock:
+0x3e39 005474 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+0x3e3a 005475 branch app_get_lpm_wake_lock 
+:      005476 app_lpm_wake_auto_lock_timer:
+0x3e3b 005477 fetch 1 ,mem_wake_up_delay_timer 
+0x3e3c 005478 rtn blank 
+0x3e3d 005479 increase -1 ,pdata 
+0x3e3e 005480 store 1 ,mem_wake_up_delay_timer 
+0x3e3f 005481 nrtn blank 
+0x3e40 005482 branch app_put_lpm_wake_lock 
+:      005484 app_l2cap_flow_control_enable:
+0x3e41 005485 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+0x3e42 005486 rtn 
+:      005488 app_l2cap_flow_control_disable:
+0x3e43 005489 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+0x3e44 005490 rtn 
+:      005492 app_bt_set_pincode:
+0x3e45 005493 jam bt_cmd_set_pin_code ,mem_fifo_temp 
+0x3e46 005494 branch ui_ipc_send_cmd 
+:      005496 app_bt_role_switch:
+0x3e47 005497 jam bt_cmd_role_switch ,mem_fifo_temp 
+0x3e48 005498 branch ui_ipc_send_cmd 
+:      005500 app_bt_start_reconnect:
+0x3e49 005501 set0 mark_ext_patch ,mark 
+0x3e4a 005502 bpatch patch17_3 ,mem_patch17 
+0x3e4b 005503 fetch 1 ,mem_app_connection_options 
+0x3e4c 005504 store 1 ,mem_connection_options 
+0x3e4d 005505 jam app_flag_reconnect ,mem_reconnect_flag 
+0x3e4e 005506 jam bt_cmd_reconnect ,mem_fifo_temp 
+0x3e4f 005507 branch ui_ipc_send_cmd 
+:      005509 app_bt_reconnect_cancel:
+0x3e50 005510 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+0x3e51 005511 branch ui_ipc_send_cmd 
+:      005513 app_bt_disconnect:
+0x3e52 005514 jam bt_cmd_disconnect ,mem_fifo_temp 
+0x3e53 005515 branch ui_ipc_send_cmd 
+:      005517 app_bt_start_discovery_short:
+0x3e54 005518 fetch 2 ,mem_discovery_timeout 
+0x3e55 005519 store 2 ,mem_discovery_timeout_timer_count 
+:      005520 app_bt_start_discovery_led_blink:
+0x3e56 005521 call app_led_start_blink 
+:      005522 app_bt_start_discovery:
+0x3e57 005523 jam bt_cmd_start_discovery ,mem_fifo_temp 
+0x3e58 005524 branch ui_ipc_send_cmd 
+:      005526 app_bt_stop_discovery:
+0x3e59 005527 setarg 0 
+0x3e5a 005528 store 2 ,mem_discovery_timeout_timer_count 
+0x3e5b 005529 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+0x3e5c 005530 branch ui_ipc_send_cmd 
+:      005532 app_ble_start_direct_adv:
+0x3e5d 005533 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+0x3e5e 005534 branch ui_ipc_send_cmd 
+:      005536 app_ble_stop_direct_adv:
+0x3e5f 005537 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+0x3e60 005538 branch ui_ipc_send_cmd 
+:      005540 app_ble_stop_adv:
+0x3e61 005541 jam bt_cmd_stop_adv ,mem_fifo_temp 
+0x3e62 005542 branch ui_ipc_send_cmd 
+:      005544 app_ble_start_adv:
+0x3e63 005545 jam bt_cmd_start_adv ,mem_fifo_temp 
+0x3e64 005546 branch ui_ipc_send_cmd 
+:      005548 app_ble_start_scan:
+0x3e65 005549 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+0x3e66 005550 branch ui_ipc_send_cmd 
+:      005552 app_ble_stop_scan:
+0x3e67 005553 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+0x3e68 005554 branch ui_ipc_send_cmd 
+:      005556 app_ble_start_conn:
+0x3e69 005557 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+0x3e6a 005558 branch ui_ipc_send_cmd 
+:      005560 app_ble_disconnect:
+0x3e6b 005561 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+0x3e6c 005562 branch ui_ipc_send_cmd 
+:      005564 app_ble_start_write:
+0x3e6d 005565 jam bt_cmd_le_start_write ,mem_fifo_temp 
+0x3e6e 005566 branch ui_ipc_send_cmd 
+:      005568 app_led_start_blink:
+0x3e6f 005569 jam bt_cmd_led_blink ,mem_fifo_temp 
+0x3e70 005570 branch ui_ipc_send_cmd 
+:      005572 app_led_on:
+0x3e71 005573 jam bt_cmd_led_on ,mem_fifo_temp 
+0x3e72 005574 branch ui_ipc_send_cmd 
+:      005576 app_led_stop_blink:
+:      005577 app_led_off:
+0x3e73 005578 jam bt_cmd_led_off ,mem_fifo_temp 
+0x3e74 005579 branch ui_ipc_send_cmd 
+:      005581 app_enter_hibernate:
+0x3e75 005582 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+0x3e76 005583 branch ui_ipc_send_cmd 
+:      005585 app_bt_sniff_exit:
+0x3e77 005586 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+0x3e78 005587 branch ui_ipc_send_cmd 
+:      005589 app_bt_enter_sniff:
+0x3e79 005590 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+0x3e7a 005591 branch ui_ipc_send_cmd 
+:      005593 app_ble_store_reconn_info:
+0x3e7b 005594 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+0x3e7c 005595 branch ui_ipc_send_cmd 
+:      005597 app_bt_store_reconn_info:
+0x3e7d 005598 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+0x3e7e 005599 branch ui_ipc_send_cmd 
+:      005601 app_lpm_mult_enable:
+0x3e7f 005602 set1 mark_lpm_mult_enable ,mark 
+0x3e80 005603 rtn 
+:      005605 app_lpm_mult_disable:
+0x3e81 005606 set0 mark_lpm_mult_enable ,mark 
+0x3e82 005607 rtn 
+:      005612 hci_rx_h4:
+0x3e83 005613 set0 mark_ext_patch ,mark 
+0x3e84 005614 bpatch patch17_4 ,mem_patch17 
+0x3e85 005615 fetch 1 ,mem_hci_cmd 
+0x3e86 005616 nrtn blank 
+:      005617 hci_rx_h4_1:
+0x3e87 005618 call hci_h4_parse_packet 
+0x3e88 005619 ncall h4_rx_discard_packet ,user 
+0x3e89 005620 rtn 
+:      005622 hci_h4_parse_packet:
+0x3e8a 005623 set0 mark_ext_patch ,mark 
+0x3e8b 005624 bpatch patch17_5 ,mem_patch17 
+0x3e8c 005625 copy contru ,rega 
+0x3e8d 005626 arg 4 ,temp 
+0x3e8e 005627 ifetch 1 ,contru 
+0x3e8f 005628 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+0x3e90 005629 increase 1 ,temp 
+0x3e91 005630 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+0x3e92 005631 copy contru ,pdata 
+0x3e93 005632 hstore 2 ,core_uart_rrptr 
+0x3e94 005633 rtn 
+:      005634 hci_h4_parse_packet_wait_len:
+0x3e95 005635 hfetch 2 ,core_uart_rxitems 
+0x3e96 005636 isub temp ,null 
+0x3e97 005637 nbranch hci_h4_parse_packet_wait_len ,positive 
+0x3e98 005639 disable user 
+0x3e99 005640 copy rega ,contru 
+0x3e9a 005641 call h4_get_rx_payload_len 
+0x3e9b 005642 iadd temp ,temp 
+:      005643 hci_h4_parse_packet_wait:
+0x3e9c 005644 hfetch 2 ,core_uart_rxitems 
+0x3e9d 005645 isub temp ,null 
+0x3e9e 005646 nbranch hci_h4_parse_packet_wait ,positive 
+0x3e9f 005647 copy rega ,contru 
+0x3ea0 005648 ifetch 1 ,contru 
+0x3ea1 005649 beq hci_h4_type_cmd ,process_hci_cmd 
+0x3ea2 005650 branch assert 
+:      005652 h4_rx_discard_packet:
+0x3ea3 005653 set0 mark_ext_patch ,mark 
+0x3ea4 005654 bpatch patch17_6 ,mem_patch17 
+0x3ea5 005655 hfetch 2 ,core_uart_rrptr 
+0x3ea6 005656 iforce contru 
+0x3ea7 005657 call h4_get_rx_payload_len 
+0x3ea8 005658 iadd contru ,contru 
+0x3ea9 005659 deposit contru 
+0x3eaa 005660 hstore 2 ,core_uart_rrptr 
+0x3eab 005661 rtn 
+:      005666 h4_get_rx_payload_len:
+0x3eac 005667 ifetch 1 ,contru 
+0x3ead 005668 increase 2 ,contru 
+0x3eae 005669 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+0x3eaf 005670 ifetch 1 ,contru 
+0x3eb0 005671 rtn 
+:      005672 h4_get_rx_payload_len_acl:
+0x3eb1 005673 ifetch 2 ,contru 
+0x3eb2 005674 rtn 
+:      005676 h4_get_tx_ptr:
+0x3eb3 005677 hfetch 2 ,core_uart_twptr 
+0x3eb4 005678 increase -5 ,contwu 
+0x3eb5 005679 iadd contwu ,contwu 
+0x3eb6 005680 rtn 
+:      005682 h4_send_packet_event:
+0x3eb7 005683 arg hci_h4_type_event ,temp 
+0x3eb8 005684 branch h4_send_packet 
+:      005685 h4_send_packet_acl:
+0x3eb9 005686 arg hci_h4_type_acl ,temp 
+:      005687 h4_send_packet:
+0x3eba 005688 set0 mark_ext_patch ,mark 
+0x3ebb 005689 bpatch patch17_7 ,mem_patch17 
+0x3ebc 005690 increase 1 ,loopcnt 
+0x3ebd 005691 hfetch 2 ,core_uart_twptr 
+0x3ebe 005692 copy pdata ,contwu 
+0x3ebf 005693 copy loopcnt ,pdata 
+0x3ec0 005694 istoret 1 ,contwu 
+0x3ec1 005695 increase -1 ,pdata 
+0x3ec2 005696 iadd contwu ,contwu 
+0x3ec3 005697 copy contwu ,pdata 
+0x3ec4 005698 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec5 005699 copy temp ,pdata 
+0x3ec6 005700 rtneq hci_h4_type_acl 
+0x3ec7 005701 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec8 005702 hstore 2 ,core_uart_twptr 
+0x3ec9 005703 branch h4_send_acl_trigger_clear 
+:      005706 h4_send_acl_trigger_clear:
+0x3eca 005707 setarg 0 
+0x3ecb 005708 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ecc 005709 rtn 
+:      005716 hci_init:
+0x3ecd 005717 set0 mark_ext_patch ,mark 
+0x3ece 005718 bpatch patch18_0 ,mem_patch18 
+0x3ecf 005719 rtn wake 
+0x3ed0 005720 setarg hci_idle_dispatch 
+0x3ed1 005721 store 2 ,mem_cb_idle_process 
+0x3ed2 005723 setarg uart_baud_115200 
+0x3ed3 005724 store uart_baud_len ,mem_baud 
+:      005725 hci_lpm_init:
+0x3ed4 005726 set0 mark_ext_patch ,mark 
+0x3ed5 005727 bpatch patch18_1 ,mem_patch18 
+0x3ed6 005728 setarg mem_h5rx_buf 
+0x3ed7 005729 hstore 2 ,core_uart_rsaddr 
+0x3ed8 005730 setarg mem_h5rx_buf_end 
+0x3ed9 005731 hstore 2 ,core_uart_readdr 
+0x3eda 005732 setarg mem_h5tx_buf 
+0x3edb 005733 hstore 2 ,core_uart_tsaddr 
+0x3edc 005734 call hci_sel_init 
+:      005735 hci_reinit:
+0x3edd 005736 hjam 0x0 ,core_uart_ctrl 
+0x3ede 005737 setarg mem_h5tx_buf 
+0x3edf 005738 hstore 2 ,core_uart_twptr 
+0x3ee0 005739 hstore 2 ,core_uart_trptrp 
+0x3ee1 005740 setarg mem_h5rx_buf 
+0x3ee2 005741 hstore 2 ,core_uart_rrptr 
+0x3ee3 005742 store 2 ,mem_h5rx_rptr 
+:      005743 hci_init_common:
+0x3ee4 005744 set0 mark_ext_patch ,mark 
+0x3ee5 005745 bpatch patch18_2 ,mem_patch18 
+0x3ee6 005746 hfetch 2 ,core_clkoff 
+0x3ee7 005747 set0 clock_off_uart ,pdata 
+0x3ee8 005748 hstore 2 ,core_clkoff 
+0x3ee9 005749 call uart_set_baud_by_mem 
+0x3eea 005750 hjam uartclk_dpll ,core_uart_clksel 
+0x3eeb 005751 hjam uart_ctrl_h4 ,core_uart_ctrl 
+0x3eec 005752 rtn 
+:      005754 hci_sel_init:
+0x3eed 005755 setarg mem_h5tx_buf_end 
+0x3eee 005756 hstore 2 ,core_uart_teaddr 
+0x3eef 005757 hfetch 1 ,core_gpio_sel1 
+0x3ef0 005758 or_into 0x07 ,pdata 
+0x3ef1 005759 hstore 1 ,core_gpio_sel1 
+0x3ef2 005760 jam 0xff ,mem_ucode_id_local 
+0x3ef3 005761 rtn 
+:      005764 hci_rx_packet:
+0x3ef4 005765 set0 mark_ext_patch ,mark 
+0x3ef5 005766 bpatch patch18_3 ,mem_patch18 
+0x3ef6 005767 hfetch 1 ,core_uart_status 
+0x3ef7 005768 iforce regb 
+0x3ef8 005769 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+0x3ef9 005770 hfetch 2 ,core_uart_rxitems 
+0x3efa 005771 iforce regc 
+0x3efb 005772 arg 0x44f ,temp 
+0x3efc 005773 isub temp ,null 
+0x3efd 005774 nrtn zero 
+:      005775 hci_rx_packet_cont:
+0x3efe 005776 hfetch 2 ,core_uart_rrptr 
+0x3eff 005777 iforce contru 
+0x3f00 005778 branch hci_rx_h4 
+:      005780 uart_send_byte:
+0x3f01 005781 hfetcht 1 ,core_uart_status 
+0x3f02 005782 isolate1 6 ,temp 
+0x3f03 005783 branch uart_send_byte ,true 
+0x3f04 005784 hstore 1 ,core_uart_txd 
+0x3f05 005785 rtn 
+:      005787 process_hci_cmd:
+0x3f06 005788 set0 mark_ext_patch ,mark 
+0x3f07 005789 bpatch patch18_4 ,mem_patch18 
+0x3f08 005790 fetch 1 ,mem_hci_cmd 
+0x3f09 005791 branch process_hci_cmd_cont ,blank 
+0x3f0a 005792 enable user 
+0x3f0b 005793 rtn 
+:      005794 process_hci_cmd_cont:
+0x3f0c 005795 ifetch 2 ,contru 
+0x3f0d 005796 iforce alarm 
+0x3f0e 005797 iforce queue 
+0x3f0f 005798 ifetch 1 ,contru 
+0x3f10 005799 iforce temp 
+0x3f11 005800 rshift2 alarm ,pdata 
+0x3f12 005801 rshift8 pdata ,pdata 
+0x3f13 005802 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+0x3f14 005803 rtn 
+:      005806 phci_grp_vendor_specific:
+0x3f15 005807 set0 mark_ext_patch ,mark 
+0x3f16 005808 bpatch patch18_5 ,mem_patch18 
+0x3f17 005809 deposit queue 
+0x3f18 005810 beq hci_vendor_cmd_reset ,hci_normal_reply 
+0x3f19 005811 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+0x3f1a 005812 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+0x3f1b 005813 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+0x3f1c 005814 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+0x3f1d 005815 beq hci_vendor_cmd_echo ,hci_normal_reply 
+0x3f1e 005816 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+0x3f1f 005817 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+0x3f20 005819 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+0x3f21 005820 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+0x3f22 005821 branch hci_normal_reply 
+:      005823 phci_grp_vendor_enter_lpm:
+0x3f23 005824 call hci_normal_reply 
+0x3f24 005825 call wait_uarttx 
+0x3f25 005826 call gpio_pu_uart_tx 
+:      005827 hci_enter_lpm:
+0x3f26 005828 call app_put_lpm_wake_lock 
+0x3f27 005829 call app_l2cap_flow_control_enable 
+0x3f28 005830 branch gpio_rx_config_input_with_pu 
+:      005832 hci_exit_lpm:
+0x3f29 005833 jam hci_rx_ready ,mem_hci_lt_rx_state 
+0x3f2a 005834 call app_get_lpm_wake_lock 
+0x3f2b 005835 call hci_lpm_init 
+0x3f2c 005836 branch app_l2cap_flow_control_disable 
+:      005838 phci_grp_vendor_chipid:
+0x3f2d 005839 call hci_get_cmd_complete_ptr 
+0x3f2e 005840 hfetch 2 ,core_chipid 
+0x3f2f 005841 istore 2 ,contwu 
+0x3f30 005842 force 6 ,loopcnt 
+0x3f31 005843 branch hci_command_complete 
+:      005845 phci_grp_vendor_baud:
+0x3f32 005846 ifetch 2 ,contru 
+0x3f33 005847 store 2 ,mem_baud 
+0x3f34 005848 hstore 2 ,core_uart_baud 
+0x3f35 005849 rtn 
+:      005851 phci_grp_vendor_patch:
+0x3f36 005853 ifetch 1 ,contru 
+0x3f37 005854 copy pdata ,temp 
+0x3f38 005855 hstore 1 ,core_ucode_low 
+0x3f39 005856 ifetch 1 ,contru 
+0x3f3a 005857 iadd temp ,temp 
+0x3f3b 005858 set1 7 ,pdata 
+0x3f3c 005859 hstore 1 ,core_ucode_ctrl 
+0x3f3d 005860 ifetch 1 ,contru 
+0x3f3e 005861 iadd temp ,temp 
+0x3f3f 005862 copy pdata ,loopcnt 
+:      005863 phci_grp_vendor_patch_loop:
+0x3f40 005864 ifetch 1 ,contru 
+0x3f41 005865 hstore 1 ,core_ucode_data 
+0x3f42 005866 iadd temp ,temp 
+0x3f43 005867 loop phci_grp_vendor_patch_loop 
+0x3f44 005868 and temp ,0xff ,temp 
+0x3f45 005869 ifetch 1 ,contru 
+0x3f46 005870 isub temp ,null 
+0x3f47 005871 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f48 005872 branch hci_normal_reply 
+:      005874 phci_grp_vendor_done:
+0x3f49 005875 arg 0x20 ,loopcnt 
+0x3f4a 005876 arg mem_patch00 ,contw 
+0x3f4b 005877 arg 0 ,temp 
+:      005878 phci_grp_vendor_done_loop:
+0x3f4c 005879 ifetch 1 ,contru 
+0x3f4d 005880 istore 1 ,contw 
+0x3f4e 005881 iadd temp ,temp 
+0x3f4f 005882 loop phci_grp_vendor_done_loop 
+0x3f50 005883 and temp ,0xff ,temp 
+0x3f51 005884 ifetch 1 ,contru 
+0x3f52 005885 isub temp ,null 
+0x3f53 005886 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f54 005887 hjam 0 ,core_ucode_ctrl 
+0x3f55 005888 call hci_normal_reply 
+0x3f56 005889 call h4_rx_discard_packet 
+0x3f57 005890 branch soft_reset 
+:      005892 phci_grp_vendor_patch_bad:
+0x3f58 005893 hjam 0 ,core_ucode_ctrl 
+0x3f59 005894 branch start 
+:      005896 phci_grp_vendor_bdaddr:
+0x3f5a 005897 ifetch 6 ,contru 
+0x3f5b 005898 store 6 ,mem_lap 
+0x3f5c 005899 branch hci_normal_reply 
+:      005902 phci_grp_vendor_mem:
+0x3f5d 005903 ifetch 1 ,contru 
+0x3f5e 005904 store 1 ,mem_hci_curr_len 
+0x3f5f 005905 copy pdata ,loopcnt 
+0x3f60 005906 ifetch 2 ,contru 
+0x3f61 005907 store 2 ,mem_hci_curr_target 
+0x3f62 005908 copy pdata ,contw 
+0x3f63 005909 call uart_copy_rx_bytes 
+0x3f64 005910 branch hci_normal_reply 
+:      005913 phci_grp_vendor_eep:
+0x3f65 005914 ifetch 1 ,contru 
+0x3f66 005915 store 1 ,mem_hci_curr_len 
+0x3f67 005916 copy pdata ,loopcnt 
+0x3f68 005917 ifetch 2 ,contru 
+0x3f69 005918 store 2 ,mem_hci_curr_target 
+0x3f6a 005919 arg mem_l2cap_rxbuff1 ,contw 
+0x3f6b 005920 call uart_copy_rx_bytes 
+0x3f6c 005921 fetcht 1 ,mem_hci_curr_len 
+0x3f6d 005922 arg mem_l2cap_rxbuff1 ,rega 
+0x3f6e 005923 fetch 2 ,mem_hci_curr_target 
+0x3f6f 005924 branch iicd_write_ota_data 
+:      005929 hci_normal_reply:
+0x3f70 005930 set0 mark_ext_patch ,mark 
+0x3f71 005931 bpatch patch18_6 ,mem_patch18 
+0x3f72 005932 force 4 ,loopcnt 
+:      005933 hci_command_complete:
+0x3f73 005934 call hci_get_payload_ptr 
+0x3f74 005935 force 0x1 ,pdata 
+0x3f75 005936 istore 1 ,contwu 
+0x3f76 005937 deposit alarm 
+0x3f77 005938 istore 3 ,contwu 
+0x3f78 005939 force hci_event_command_complete ,queue 
+:      005940 hci_send_event:
+0x3f79 005941 set0 mark_ext_patch ,mark 
+0x3f7a 005942 bpatch patch18_7 ,mem_patch18 
+0x3f7b 005943 call hci_get_packet_ptr 
+0x3f7c 005944 deposit queue 
+0x3f7d 005945 istore 1 ,contwu 
+0x3f7e 005946 deposit loopcnt 
+0x3f7f 005947 istore 1 ,contwu 
+:      005948 hci_send_event_raw:
+0x3f80 005949 force 5 ,queue 
+0x3f81 005950 increase 2 ,loopcnt 
+:      005951 hci_send_packet:
+0x3f82 005952 branch h4_send_packet_event 
+:      005954 hci_send_commu_ready_event:
+0x3f83 005955 force hci_event_vendor_specific ,queue 
+0x3f84 005956 call hci_get_payload_ptr 
+0x3f85 005957 setarg hci_vendor_event_commu_ready 
+0x3f86 005958 istore 1 ,contwu 
+0x3f87 005959 force 1 ,loopcnt 
+0x3f88 005960 branch hci_send_event 
+:      005962 hci_get_cmd_complete_ptr:
+0x3f89 005963 force 12 ,contwu 
+0x3f8a 005964 branch hci_get_tx_ptr 
+:      005966 hci_get_payload_ptr:
+0x3f8b 005967 force 8 ,contwu 
+0x3f8c 005968 branch hci_get_tx_ptr 
+:      005970 hci_get_packet_ptr:
+0x3f8d 005971 force 6 ,contwu 
+:      005972 hci_get_tx_ptr:
+0x3f8e 005973 branch h4_get_tx_ptr 
+:      005977 calc_tx_crc16:
+0x3f8f 005978 pulse crc16 
+0x3f90 005979 enable enable_crc 
+:      005980 crcloop:
+0x3f91 005981 ifetch 1 ,contwu 
+0x3f92 005982 inject bucket ,8 
+0x3f93 005983 loop crcloop 
+0x3f94 005984 enable enable_parity 
+0x3f95 005985 inject bucket ,16 
+0x3f96 005986 disable enable_parity 
+0x3f97 005987 disable enable_crc 
+0x3f98 005988 disable crc16 
+0x3f99 005989 byteswap pdata ,pdata 
+0x3f9a 005990 rtn 
+:      005994 cmd_exit:
+0x3f9b 005995 jam 0 ,mem_hci_cmd 
+0x3f9c 005996 rtn 
+:      005997 cmd_check_plap:
+0x3f9d 005998 fetch 6 ,mem_hci_plap 
+0x3f9e 005999 fetcht 6 ,mem_plap 
+0x3f9f 006000 isub temp ,null 
+0x3fa0 006001 rtn 
+:      006006 cmd_pair:
+0x3fa1 006007 fetch 1 ,mem_op 
+0x3fa2 006008 bbit1 op_inrand_req ,cmd_pair_passive 
+0x3fa3 006009 call tid_initiate 
+0x3fa4 006010 jam lmp_in_rand ,mem_lmo_opcode2 
+0x3fa5 006011 branch cmd_exit 
+:      006012 cmd_pair_passive:
+0x3fa6 006013 set0 op_inrand_req ,pdata 
+0x3fa7 006014 store 1 ,mem_op 
+0x3fa8 006015 call lmp_accept_inrand 
+0x3fa9 006016 setarg 0 
+0x3faa 006017 setflag master ,smap_lmptid ,pdata 
+0x3fab 006018 store 1 ,mem_lmo_tid2 
+0x3fac 006019 branch cmd_exit 
+0x3fad 006020 rtn 
+:      006021 cmd_in_sniff:
+0x3fae 006022 jam lmp_sniff_req ,mem_lmo_opcode2 
+0x3faf 006023 arg mem_sniff_payload ,contw 
+0x3fb0 006024 setarg 0 
+0x3fb1 006025 isolate1 27 ,clke_bt 
+0x3fb2 006026 setflag true ,1 ,pdata 
+0x3fb3 006027 istore 1 ,contw 
+0x3fb4 006028 setarg 0 
+0x3fb5 006029 istore 2 ,contw 
+0x3fb6 006030 fetch 2 ,mem_sniff_param_interval 
+0x3fb7 006031 istore 2 ,contw 
+0x3fb8 006032 fetch 1 ,mem_sniff_param_attempt 
+0x3fb9 006033 istore 2 ,contw 
+0x3fba 006034 fetch 1 ,mem_sniff_param_timeout 
+0x3fbb 006035 istore 2 ,contw 
+0x3fbc 006036 branch cmd_exit 
+:      006038 cmd_exit_sniff:
+0x3fbd 006039 jam lmp_unsniff_req ,mem_lmo_opcode2 
+0x3fbe 006040 branch cmd_exit 
+:      006042 hci_idle_dispatch:
+0x3fbf 006043 call gpio_check_uart_state 
+0x3fc0 006044 rtn true 
+0x3fc1 006045 arg uart_wakeup_rx ,temp 
+0x3fc2 006046 call gpio_get_bit 
+0x3fc3 006047 nbranch uart_wake_up ,true 
+0x3fc4 006048 jam hci_rx_wake ,mem_hci_lt_rx_state 
+0x3fc5 006049 rtn 
+:      006050 uart_wake_up:
+0x3fc6 006051 fetch 1 ,mem_hci_lt_rx_state 
+0x3fc7 006052 rtnne hci_rx_wake 
+0x3fc8 006053 call hci_exit_lpm 
+0x3fc9 006054 branch hci_send_commu_ready_event 
+:      006068 hid_rx_process:
+0x3fca 006069 set0 mark_ext_patch ,mark 
+0x3fcb 006070 bpatch patch19_0 ,mem_patch19 
+0x3fcc 006071 fetch 2 ,mem_l2cap_payload_ptr 
+0x3fcd 006072 copy pdata ,contr 
+0x3fce 006073 ifetch 1 ,contr 
+0x3fcf 006074 and pdata ,0x0f ,temp 
+0x3fd0 006075 rshift4 pdata ,pdata 
+0x3fd1 006076 beq hid_type_set_idle ,hid_rx_process_handshake 
+0x3fd2 006077 beq hid_type_set_protocol ,hid_rx_process_handshake 
+0x3fd3 006078 beq hid_type_data ,hid_rx_process_data 
+0x3fd4 006079 beq hid_type_set_report ,hid_rx_process_set_report 
+0x3fd5 006080 beq hid_type_control ,hid_rx_process_hid_control 
+0x3fd6 006081 rtn 
+:      006083 hid_rx_process_hid_control:
+0x3fd7 006084 copy temp ,pdata 
+0x3fd8 006085 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x3fd9 006086 beq hid_control_p_suspend ,hid_rx_process_suspend 
+0x3fda 006087 rtn 
+:      006089 hid_rx_process_virtual_cable_unplug:
+0x3fdb 006090 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+0x3fdc 006091 call ui_ipc_send_event 
+0x3fdd 006092 fetch 1 ,mem_device_option 
+0x3fde 006093 rtnne dvc_op_mouse ,pdata 
+0x3fdf 006094 copy temp ,pdata 
+0x3fe0 006095 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+0x3fe1 006096 rtn 
+:      006097 hid_rx_process_suspend:
+0x3fe2 006098 rtn 
+:      006100 hid_rx_process_set_report:
+0x3fe3 006101 call hid_rx_process_data 
+0x3fe4 006102 arg 0x01 ,rega 
+0x3fe5 006103 call hid_malloc_tx_buff 
+0x3fe6 006104 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fe7 006105 istore 2 ,contw 
+0x3fe8 006106 setarg 0x00 
+0x3fe9 006107 istore 1 ,contw 
+0x3fea 006108 rtn 
+:      006110 hid_rx_process_handshake:
+0x3feb 006111 arg 1 ,rega 
+0x3fec 006112 call hid_malloc_tx_buff 
+0x3fed 006113 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fee 006114 istore 2 ,contw 
+0x3fef 006115 setarg 0 
+0x3ff0 006116 istore 1 ,contw 
+0x3ff1 006117 jam 1 ,mem_ui_data_txbuff_length 
+0x3ff2 006118 fetch 1 ,mem_hid_control_state 
+0x3ff3 006119 set1 l2cap_channel_hid_handshake_done 
+0x3ff4 006120 store 1 ,mem_hid_control_state 
+0x3ff5 006121 jam bt_evt_hid_handshake ,mem_fifo_temp 
+0x3ff6 006122 branch ui_ipc_send_event 
+:      006124 hid_rx_process_data:
+0x3ff7 006125 ifetch 1 ,contr 
+0x3ff8 006126 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+0x3ff9 006127 rtn 
+:      006129 hid_rx_process_data_hid_kb:
+0x3ffa 006130 copy contr ,rega 
+0x3ffb 006131 fetch 1 ,mem_device_option 
+0x3ffc 006132 rtnne dvc_op_kb ,pdata 
+0x3ffd 006133 copy rega ,contr 
+0x3ffe 006134 ifetch 1 ,contr 
+0x3fff 006135 store 1 ,mem_kb_caps_led_status 
+0x4000 006136 store 1 ,mem_hid_rx_data 
+0x4001 006137 fetch 1 ,mem_kb_led_on_timer 
+0x4002 006138 nrtn blank 
+0x4003 006139 jam 2 ,mem_led_cap_delay_timer 
+0x4004 006140 rtn 
+:      006142 hid_malloc_tx_buff:
+0x4005 006143 call l2cap_malloc 
+0x4006 006144 copy rega ,temp 
+0x4007 006145 storet 1 ,mem_ui_data_txbuff_length 
+0x4008 006146 copy pdata ,contw 
+0x4009 006147 copy rega ,pdata 
+0x400a 006148 istore 2 ,contw 
+0x400b 006149 rtn 
+:      006152 kb_init:
+0x400c 006153 call kb_clear_keys 
+0x400d 006154 rtn wake 
+0x400e 006156 call kb_init_common 
+0x400f 006157 call kb_led_int 
+0x4010 006158 setarg kb_process_idle 
+0x4011 006159 store 2 ,mem_cb_idle_process 
+0x4012 006160 setarg kb_send_process 
+0x4013 006161 store 2 ,mem_cb_bt_process 
+0x4014 006162 setarg kb_process_bb_event 
+0x4015 006163 store 2 ,mem_cb_bb_event_process 
+0x4016 006164 setarg kb_process_lpm_before 
+0x4017 006165 store 2 ,mem_cb_before_lpm 
+0x4018 006166 setarg kb_discovery_timeout_sleep 
+0x4019 006167 store 2 ,mem_cb_discovry_timeout 
+0x401a 006168 setarg kb_before_hibernate 
+0x401b 006169 store 2 ,mem_cb_before_hibernate 
+0x401c 006170 jam 0 ,mem_sp_flag 
+0x401d 006171 jam 0 ,mem_master_sp_flag 
+0x401e 006172 call kb_init_environment 
+0x401f 006173 fetch 2 ,mem_ui_state_map 
+0x4020 006174 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+:      006175 kb_check_reconn_target:
+0x4021 006176 fetch 1 ,mem_xrecord_mode 
+0x4022 006177 beq rec_3_mode ,kb_3_check_reconn_target 
+0x4023 006178 branch kb_start_discovery 
+:      006179 kb_3_check_reconn_target:
+0x4024 006180 fetch 6 ,mem_hci_plap 
+0x4025 006181 branch app_bt_start_discovery_short ,blank 
+0x4026 006182 branch app_bt_start_reconnect 
+:      006184 kb_init_environment:
+0x4027 006185 call app_initflag_check 
+0x4028 006186 branch kb_load_eeprom_param ,zero 
+0x4029 006187 setarg kb_map2_status_win 
+0x402a 006188 store 1 ,mem_kb_current_status 
+0x402b 006189 call store_current_status 
+0x402c 006190 fetch 6 ,mem_master_addr 
+0x402d 006191 store 6 ,mem_plap 
+0x402e 006192 store 6 ,mem_hci_plap 
+0x402f 006193 call eeprom_store_bd_reconn_info 
+0x4030 006194 jam rec_3_mode ,mem_xrecord_mode 
+0x4031 006195 branch app_initflag_store 
+:      006197 kb_load_eeprom_param:
+0x4032 006198 call read_current_status 
+0x4033 006199 branch eeprom_load_reconn_info 
+:      006202 kb_init_common:
+0x4034 006203 set0 mark_ext_patch ,mark 
+0x4035 006204 bpatch patch19_1 ,mem_patch19 
+0x4036 006205 hjam 0 ,core_gpio_oe0 
+0x4037 006206 hjam 0xff ,core_gpio_pu0 
+0x4038 006207 hjam 0xff ,core_gpio_oe1 
+0x4039 006208 hjam 0xff ,core_gpio_oe2 
+0x403a 006209 hfetch 1 ,core_gpio_oe3 
+0x403b 006210 or_into 0x07 ,pdata 
+0x403c 006211 hstore 1 ,core_gpio_oe3 
+0x403d 006212 hjam 0x00 ,core_gpio_sel 
+0x403e 006213 hjam 0x00 ,core_gpio_sel1 
+0x403f 006214 hjam 0x00 ,core_kscn_rowmask 
+0x4040 006215 setarg kb_kscan_col_1 
+0x4041 006216 lshift3 pdata ,pdata 
+0x4042 006217 add pdata ,kb_kscan_row_1 ,pdata 
+0x4043 006218 hstore 1 ,core_kscn_rctc 
+0x4044 006219 hjam 0xff ,core_gpio_key0 
+0x4045 006220 hjam 0xFf ,core_gpio_key1 
+0x4046 006221 hfetch 1 ,core_gpio_key2 
+0x4047 006222 or_into 0x01 ,pdata 
+0x4048 006223 hstore 1 ,core_gpio_key2 
+0x4049 006225 hfetch 1 ,core_config 
+0x404a 006226 set1 2 ,pdata 
+0x404b 006227 hstore 1 ,core_config 
+0x404c 006228 hjam 0x0c ,core_kscn_ksctrl 
+0x404d 006229 hjam 0x30 ,core_kscn_scancycle_timer_h 
+0x404e 006230 hfetch 1 ,core_clkoff + 1 
+0x404f 006231 set0 1 ,pdata 
+0x4050 006232 hstore 1 ,core_clkoff + 1 
+0x4051 006233 hfetch 1 ,core_kscn_ksctrl 
+0x4052 006234 set1 0 ,pdata 
+0x4053 006235 hstore 1 ,core_kscn_ksctrl 
+0x4054 006236 rtn 
+:      006237 kb_led_int:
+0x4055 006238 call kb_led_cap_init 
+0x4056 006239 call kb_led_num_init 
+0x4057 006240 branch kb_led_scl_init 
+:      006241 kb_led_cap_init:
+0x4058 006242 fetch 1 ,mem_led_cap_gpio 
+0x4059 006243 rtneq 0xff 
+0x405a 006244 fetcht 1 ,mem_led_cap_gpio 
+0x405b 006245 branch gpio_config_output 
+:      006246 kb_led_num_init:
+0x405c 006247 fetch 1 ,mem_led_num_gpio 
+0x405d 006248 rtneq 0xff 
+0x405e 006249 fetcht 1 ,mem_led_num_gpio 
+0x405f 006250 branch gpio_config_output 
+:      006251 kb_led_scl_init:
+0x4060 006252 fetch 1 ,mem_led_scl_gpio 
+0x4061 006253 rtneq 0xff 
+0x4062 006254 fetcht 1 ,mem_led_scl_gpio 
+0x4063 006255 branch gpio_config_output 
+:      006257 kb_led_cap_delay_timer:
+0x4064 006258 fetch 1 ,mem_led_cap_delay_timer 
+0x4065 006259 rtn blank 
+0x4066 006260 increase -1 ,pdata 
+0x4067 006261 store 1 ,mem_led_cap_delay_timer 
+0x4068 006262 nrtn blank 
+:      006263 kb_led_capslock:
+0x4069 006264 set0 mark_ext_patch ,mark 
+0x406a 006265 bpatch patch19_2 ,mem_patch19 
+0x406b 006266 fetch 1 ,mem_hid_rx_data 
+0x406c 006267 copy pdata ,rega 
+0x406d 006268 fetcht 1 ,mem_led_num_gpio 
+0x406e 006269 isolate1 kb_num_lock_selected ,rega 
+0x406f 006270 call gpio_out_flag 
+0x4070 006271 fetcht 1 ,mem_led_cap_gpio 
+0x4071 006272 isolate1 kb_caps_lock_selected ,rega 
+0x4072 006273 call gpio_out_flag 
+0x4073 006274 fetcht 1 ,mem_led_scl_gpio 
+0x4074 006275 isolate1 kb_scroll_lock_selected ,rega 
+0x4075 006276 call gpio_out_flag 
+0x4076 006277 branch kb_auto_disable_mult 
+:      006278 kb_enble_mult_timer:
+0x4077 006279 fetch 1 ,mem_auto_enable_mult_timer 
+0x4078 006280 rtn blank 
+0x4079 006281 increase -1 ,pdata 
+0x407a 006282 store 1 ,mem_auto_enable_mult_timer 
+0x407b 006283 nrtn blank 
+0x407c 006284 branch app_lpm_mult_enable 
+:      006285 kb_auto_disable_mult:
+0x407d 006286 fetch 1 ,mem_auto_enable_mult_timer_init 
+0x407e 006287 store 1 ,mem_auto_enable_mult_timer 
+0x407f 006288 branch app_lpm_mult_disable 
+:      006290 kb_led_cap_status:
+0x4080 006291 jam 1 ,mem_led_cap_flag 
+0x4081 006292 branch bt_send_kb_data_by_report0 + 8 
+:      006295 kb_send_process:
+0x4082 006296 call l2cap_malloc_is_fifo_nearly_full 
+0x4083 006297 nrtn blank 
+0x4084 006298 fetch 6 ,mem_master_addr 
+0x4085 006299 fetcht 6 ,mem_plap 
+0x4086 006300 isub temp ,null 
+0x4087 006301 branch kb_debug_send_keydata ,zero 
+0x4088 006302 fetch 1 ,mem_pincode_state 
+0x4089 006303 beq pincode_state_wait_pincode ,kb_pincode 
+0x408a 006304 fetch 1 ,mem_hid_interrupt_state 
+0x408b 006305 rtnne l2cap_channel_setup_complete 
+0x408c 006306 fetcht 8 ,mem_table_last_repory_data0 
+0x408d 006307 fetch 8 ,mem_map2_out_report0 
+0x408e 006308 store 8 ,mem_table_last_repory_data0 
+0x408f 006309 isub temp ,null 
+0x4090 006310 ncall bt_send_kb_data_by_report0 ,zero 
+0x4091 006312 fetcht 8 ,mem_table_last_repory_data1 
+0x4092 006313 fetch 8 ,mem_map2_out_report1 
+0x4093 006314 store 8 ,mem_table_last_repory_data1 
+0x4094 006315 isub temp ,null 
+0x4095 006316 ncall bt_send_kb_data_by_report1 ,zero 
+0x4096 006317 rtn 
+:      006319 kb_debug_send_keydata:
+0x4097 006320 fetch 1 ,mem_kb_down 
+0x4098 006321 beq 0x7f ,fn_test 
+0x4099 006322 fetcht 8 ,mem_table_last_repory_data0 
+0x409a 006323 fetch 8 ,mem_map2_out_report0 
+0x409b 006324 store 8 ,mem_table_last_repory_data0 
+0x409c 006325 isub temp ,null 
+0x409d 006326 rtn zero 
+0x409e 006327 arg mem_map2_out_report0 ,contr 
+0x409f 006328 arg mem_table_temp ,rega 
+0x40a0 006329 call fill_kb_send_data 
+0x40a1 006330 arg 10 ,rega 
+0x40a2 006331 call hid_malloc_tx_buff 
+0x40a3 006332 setarg l2cap_hid_interrupt_channel 
+0x40a4 006333 istore 2 ,contw 
+0x40a5 006334 setarg 0x01a1 
+0x40a6 006335 istore 2 ,contw 
+0x40a7 006336 fetch 8 ,mem_table_temp 
+0x40a8 006337 istore 8 ,contw 
+0x40a9 006338 rtn 
+:      006339 fn_test:
+0x40aa 006340 store 8 ,mem_map2_out_report0 
+0x40ab 006341 branch kb_debug_send_keydata + 2 
+:      006344 bt_send_kb_data_by_report0:
+0x40ac 006345 call l2cap_malloc_is_fifo_nearly_full 
+0x40ad 006346 nrtn blank 
+0x40ae 006347 fetch 1 ,mem_kb_temp_flag 
+0x40af 006348 rtnbit1 key_search_m_key_flag 
+0x40b0 006349 call init_kb_no_data_timer 
+0x40b1 006350 fetch 1 ,mem_map2_out_report0 
+0x40b2 006351 beq caps_lock_data ,kb_led_cap_status 
+0x40b3 006352 jam 0 ,mem_led_cap_flag 
+0x40b4 006353 arg mem_map2_out_report0 ,contr 
+0x40b5 006354 arg mem_table_temp ,rega 
+0x40b6 006355 call fill_kb_send_data 
+0x40b7 006356 call bt_send_kb_data_by_report0_ptr 
+0x40b8 006357 fetch 8 ,mem_table_temp 
+0x40b9 006358 istore 8 ,contw 
+0x40ba 006359 rtn 
+:      006361 fill_kb_send_data:
+0x40bb 006362 arg 0 ,temp 
+0x40bc 006363 add rega ,2 ,contw 
+0x40bd 006364 arg kb_map2_report_length ,loopcnt 
+:      006365 store_key:
+0x40be 006366 ifetch 1 ,contr 
+0x40bf 006367 bbit0 7 ,not_key_status 
+0x40c0 006368 and pdata ,7 ,queue 
+0x40c1 006369 qset1 temp 
+0x40c2 006370 branch store_key_next 
+:      006371 not_key_status:
+0x40c3 006372 istore 1 ,contw 
+:      006373 store_key_next:
+0x40c4 006374 loop store_key 
+0x40c5 006375 istoret 2 ,rega 
+0x40c6 006376 rtn 
+:      006378 bt_send_kb_data_by_report1:
+0x40c7 006379 call l2cap_malloc_is_fifo_nearly_full 
+0x40c8 006380 nrtn blank 
+0x40c9 006381 call init_kb_no_data_timer 
+0x40ca 006382 fetch 1 ,mem_map2_out_report1 
+0x40cb 006383 beq sfk_android_map ,android_search_m_key 
+0x40cc 006384 beq sfk_ios_screenshot ,ios_screenshot 
+0x40cd 006385 setarg 0 
+0x40ce 006386 store 8 ,mem_table_temp 
+0x40cf 006387 call fill_kb_send_report1_data 
+0x40d0 006389 fetch 1 ,mem_kb_temp_flag 
+0x40d1 006390 bbit1 key_search_m_key_flag ,android_search_m_key_releas 
+0x40d2 006391 call bt_send_kb_data_by_report1_ptr 
+0x40d3 006392 fetch 4 ,mem_table_temp 
+0x40d4 006393 istore 4 ,contw 
+0x40d5 006394 rtn 
+:      006396 fill_kb_send_report1_data:
+0x40d6 006397 fetch 1 ,mem_map2_out_report1 
+0x40d7 006398 rtn blank 
+0x40d8 006399 enable true 
+0x40d9 006400 fetch 1 ,mem_map2_out_report1 
+0x40da 006401 copy pdata ,queue 
+0x40db 006402 fetch 8 ,mem_table_temp 
+0x40dc 006403 qsetflag true ,pdata 
+0x40dd 006404 store 8 ,mem_table_temp 
+0x40de 006405 disable true 
+0x40df 006406 rtn 
+:      006408 init_kb_no_data_timer:
+0x40e0 006409 fetch 2 ,mem_kb_no_data_timeout 
+0x40e1 006410 store 2 ,mem_kb_no_data_timer 
+0x40e2 006411 rtn 
+:      006412 kb_check_no_data_timer:
+0x40e3 006413 fetch 2 ,mem_kb_no_data_timer 
+0x40e4 006414 rtn blank 
+0x40e5 006415 fetch 2 ,mem_kb_no_data_timer 
+0x40e6 006416 increase -1 ,pdata 
+0x40e7 006417 store 2 ,mem_kb_no_data_timer 
+0x40e8 006418 nrtn blank 
+0x40e9 006419 branch kb_disconnect 
+:      006420 kb_disconnect:
+0x40ea 006421 setarg 0 
+0x40eb 006422 store 2 ,mem_kb_no_data_timer 
+0x40ec 006423 fetch 2 ,mem_ui_state_map 
+0x40ed 006424 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x40ee 006425 fetch 2 ,mem_ui_state_map 
+0x40ef 006426 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x40f0 006427 rtn 
+:      006429 bt_send_kb_data_by_report0_ptr:
+0x40f1 006430 arg 10 ,rega 
+0x40f2 006431 call hid_malloc_tx_buff 
+0x40f3 006432 fetch 2 ,mem_hid_int_remote_cid 
+0x40f4 006433 istore 2 ,contw 
+0x40f5 006434 setarg 0x01a1 
+0x40f6 006435 istore 2 ,contw 
+0x40f7 006436 rtn 
+:      006437 bt_send_kb_data_by_report1_ptr:
+0x40f8 006438 arg 6 ,rega 
+0x40f9 006439 call hid_malloc_tx_buff 
+0x40fa 006440 fetch 2 ,mem_hid_int_remote_cid 
+0x40fb 006441 istore 2 ,contw 
+0x40fc 006442 setarg 0x02a1 
+0x40fd 006443 istore 2 ,contw 
+0x40fe 006444 rtn 
+:      006446 android_search_m_key_releas:
+0x40ff 006447 call bt_send_kb_data_by_report0_ptr 
+0x4100 006448 setarg 0 
+0x4101 006449 istore 8 ,contw 
+0x4102 006450 call bt_send_kb_data_by_report1_ptr 
+0x4103 006451 setarg 0 
+0x4104 006452 istore 4 ,contw 
+0x4105 006453 fetch 1 ,mem_kb_temp_flag 
+0x4106 006454 set0 key_search_m_key_flag ,pdata 
+0x4107 006455 store 1 ,mem_kb_temp_flag 
+0x4108 006456 rtn 
+:      006457 ios_screenshot:
+0x4109 006458 call bt_send_kb_data_by_report1_ptr 
+0x410a 006459 setarg 0x2002 
+0x410b 006460 istore 4 ,contw 
+0x410c 006461 rtn 
+:      006463 android_search_m_key:
+0x410d 006464 call bt_send_kb_data_by_report1_ptr 
+0x410e 006465 setarg 0x40 
+0x410f 006466 istore 4 ,contw 
+0x4110 006467 call bt_send_kb_data_by_report0_ptr 
+0x4111 006468 setarg 0 
+0x4112 006469 istore 2 ,contw 
+0x4113 006470 setarg 0x10 
+0x4114 006471 istore 7 ,contw 
+0x4115 006472 fetch 1 ,mem_kb_temp_flag 
+0x4116 006473 set1 key_search_m_key_flag ,pdata 
+0x4117 006474 store 1 ,mem_kb_temp_flag 
+0x4118 006475 rtn 
+:      006478 kb_pincode:
+0x4119 006479 set0 mark_ext_patch ,mark 
+0x411a 006480 bpatch patch19_3 ,mem_patch19 
+0x411b 006481 fetch 1 ,mem_kb_temp_flag 
+0x411c 006482 rtnbit0 key_event_flag 
+0x411d 006483 set0 key_event_flag ,pdata 
+0x411e 006484 store 1 ,mem_kb_temp_flag 
+0x411f 006485 fetcht 1 ,mem_pin_length 
+0x4120 006486 setarg mem_pin 
+0x4121 006487 iadd temp ,contw 
+0x4122 006488 fetch 1 ,mem_kb_down 
+0x4123 006489 branch kb_pincode_rtn ,blank 
+0x4124 006490 beq kb_kcode_bksp ,kb_pincode_bksp 
+0x4125 006491 bne kb_kcode_enter ,kb_pincode_data 
+0x4126 006492 storet 1 ,mem_pin_length 
+0x4127 006493 branch app_bt_set_pincode 
+:      006495 kb_pincode_rtn:
+0x4128 006496 storet 1 ,mem_pin_length 
+0x4129 006497 rtn 
+:      006498 kb_pincode_bksp:
+0x412a 006499 fetch 1 ,mem_pin_length 
+0x412b 006500 rtn blank 
+0x412c 006501 increase -1 ,pdata 
+0x412d 006502 store 1 ,mem_pin_length 
+0x412e 006503 arg mem_pin ,contw 
+0x412f 006504 iadd contw ,contw 
+0x4130 006505 setarg 0 
+0x4131 006506 istore 1 ,contw 
+0x4132 006507 enable user2 
+0x4133 006508 branch kb_send_pin 
+:      006509 kb_pincode_data:
+0x4134 006510 sub pdata ,kb_kcode_1_m1 ,null 
+0x4135 006511 rtn positive 
+0x4136 006512 arg 0x30 ,temp 
+0x4137 006513 sub pdata ,kb_kcode_0 ,null 
+0x4138 006514 nrtn positive 
+0x4139 006515 branch kb_pincode_0 ,zero 
+0x413a 006516 arg kb_kcode_1_m1 ,temp 
+0x413b 006517 isub temp ,temp 
+0x413c 006518 or_into 0x30 ,temp 
+:      006519 kb_pincode_0:
+0x413d 006520 istoret 1 ,contw 
+0x413e 006521 fetch 1 ,mem_pin_length 
+0x413f 006522 increase 1 ,pdata 
+0x4140 006523 store 1 ,mem_pin_length 
+0x4141 006524 disable user2 
+0x4142 006525 branch kb_send_pin 
+:      006527 kb_send_pin:
+0x4143 006528 fetch 2 ,mem_hid_int_remote_cid 
+0x4144 006529 rtn blank 
+0x4145 006530 arg 3 ,rega 
+0x4146 006531 call hid_malloc_tx_buff 
+0x4147 006532 fetch 2 ,mem_hid_int_remote_cid 
+0x4148 006533 istore 2 ,contw 
+0x4149 006534 setarg 0xffa1 
+0x414a 006535 istore 2 ,contw 
+0x414b 006536 setarg 0 
+0x414c 006537 setflag user2 ,0 ,pdata 
+0x414d 006538 istore 1 ,contw 
+0x414e 006539 rtn 
+:      006543 kb_kscan_check_if_empty:
+0x414f 006544 disable user 
+0x4150 006545 disable user2 
+0x4151 006546 hfetch 1 ,core_kscn_kstat 
+0x4152 006547 rtnbit1 kb_kscan_stat_empty 
+:      006549 kb_kscan_check_ghost:
+0x4153 006550 hfetch 1 ,core_kscn_event_num 
+0x4154 006551 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+0x4155 006552 hfetch 1 ,core_kscn_kstat 
+0x4156 006553 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+0x4157 006554 hfetch 1 ,core_kscn_event 
+0x4158 006555 branch kb_kscan_check_if_empty 
+:      006557 kb_kscan_process_event:
+0x4159 006558 enable user 
+0x415a 006559 enable user2 
+0x415b 006560 hfetch 1 ,core_kscn_event_num 
+0x415c 006561 isolate0 kb_kscan_key_event_stat ,pdata 
+0x415d 006562 hfetch 1 ,core_kscn_event 
+0x415e 006563 arg mem_kb_map ,contr 
+0x415f 006564 iadd contr ,contr 
+0x4160 006565 ifetch 1 ,contr 
+0x4161 006566 bbit1 7 ,kb_kscan_read_statekey 
+0x4162 006567 nbranch kb_kscan_release_a_key_data ,true 
+0x4163 006568 disable user2 
+0x4164 006569 iforce temp 
+0x4165 006570 fetch 1 ,mem_kb_keys 
+0x4166 006571 sub pdata ,4 ,null 
+0x4167 006572 nrtn positive 
+0x4168 006573 copy pdata ,rega 
+0x4169 006574 arg 3 ,loopcnt 
+0x416a 006575 arg mem_kb_report_data ,contr 
+:      006576 kb_kscan_check_report_data:
+0x416b 006577 ifetch 1 ,contr 
+0x416c 006578 isub temp ,null 
+0x416d 006579 branch kb_kscan_check_if_empty ,zero 
+0x416e 006580 loop kb_kscan_check_report_data 
+:      006581 kb_kscan_store_a_key_data:
+0x416f 006582 copy rega ,pdata 
+0x4170 006583 arg mem_kb_report_data ,contw 
+0x4171 006584 iadd contw ,contw 
+0x4172 006585 istoret 1 ,contw 
+0x4173 006586 increase 1 ,pdata 
+0x4174 006587 store 1 ,mem_kb_keys 
+0x4175 006588 hfetch 1 ,core_kscn_event_num 
+0x4176 006589 rshift3 pdata ,pdata 
+0x4177 006590 nbranch kb_kscan_check_nextevent ,blank 
+0x4178 006591 branch kb_kscan_prepare_send 
+:      006593 kb_kscan_check_nextevent:
+0x4179 006594 increase -1 ,pdata 
+0x417a 006595 branch kb_kscan_prepare_send ,zero 
+0x417b 006596 hfetch 1 ,core_kscn_event_num 
+0x417c 006597 and_into 0x01 ,pdata 
+0x417d 006598 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+0x417e 006599 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+0x417f 006600 rtn 
+:      006601 kb_kscan_prepare_send:
+0x4180 006602 enable user2 
+0x4181 006603 rtn 
+:      006605 kb_kscan_release_a_key_data:
+0x4182 006606 and pdata ,0xff ,temp 
+0x4183 006607 fetch 1 ,mem_kb_keys 
+0x4184 006608 rtn blank 
+0x4185 006609 iforce loopcnt 
+0x4186 006610 arg mem_kb_report_data ,contr 
+:      006611 kb_kscan_find_same_key_data:
+0x4187 006612 ifetch 1 ,contr 
+0x4188 006613 isub temp ,null 
+0x4189 006614 branch kb_kscan_release_foundkey ,zero 
+0x418a 006615 loop kb_kscan_find_same_key_data 
+0x418b 006616 rtn 
+:      006619 kb_kscan_check_nextevent2:
+0x418c 006620 hfetch 1 ,core_kscn_event_num 
+0x418d 006621 and_into 0x01 ,pdata 
+0x418e 006622 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+0x418f 006623 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+0x4190 006624 rtn 
+:      006626 kb_kscan_read_statekey:
+0x4191 006627 and pdata ,7 ,queue 
+0x4192 006628 fetch 1 ,mem_kb_state 
+0x4193 006629 qsetflag true ,pdata 
+0x4194 006630 store 1 ,mem_kb_state 
+0x4195 006631 rtn 
+:      006633 kb_clear_keys:
+0x4196 006634 setarg 0 
+0x4197 006635 store 8 ,mem_kb_down 
+0x4198 006636 store 1 ,mem_kb_keys 
+0x4199 006637 rtn 
+:      006639 kb_clean_kscan_fifo:
+0x419a 006640 hfetch 1 ,core_kscn_event_num 
+0x419b 006641 hfetch 1 ,core_kscn_event 
+0x419c 006642 hfetch 1 ,core_kscn_kstat 
+0x419d 006643 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+0x419e 006644 setarg 0xff 
+0x419f 006645 enable user 
+0x41a0 006646 rtn 
+:      006648 kb_process_idle:
+0x41a1 006649 call kb_ui_check_paring_button 
+0x41a2 006650 rtn wake 
+:      006651 kb_process:
+0x41a3 006652 fetch 1 ,mem_kb_get_fn_flag 
+0x41a4 006653 call kb_recover_kb_down_data ,blank 
+0x41a5 006654 call kb_kscan_fn 
+0x41a6 006655 fetch 1 ,mem_kb_keys 
+0x41a7 006656 rtn blank 
+0x41a8 006657 call kb_read_gpio 
+0x41a9 006658 fetch 4 ,mem_kb_gpio_val 
+0x41aa 006659 store 4 ,mem_kb_gpio_last_val 
+0x41ab 006660 rtn 
+:      006662 kb_ui_check_paring_button:
+0x41ac 006663 fetch 2 ,mem_ui_state_map 
+0x41ad 006664 rtnbit0 ui_state_bt_reconnect 
+0x41ae 006665 fetch 1 ,mem_kb_temp_flag 
+0x41af 006666 rtnbit1 cacel_reconn_flag ,pdata 
+0x41b0 006667 fetch 2 ,mem_kb_down 
+0x41b1 006668 fetcht 2 ,mem_kb_fn_c 
+0x41b2 006669 isub temp ,null 
+0x41b3 006670 branch check_bb_reconn_cancel ,zero 
+0x41b4 006671 fetch 2 ,mem_kb_down 
+0x41b5 006672 fetcht 2 ,mem_kb_c_fn 
+0x41b6 006673 isub temp ,null 
+0x41b7 006674 branch check_bb_reconn_cancel ,zero 
+0x41b8 006675 fetch 2 ,mem_ui_state_map 
+0x41b9 006676 bbit1 ui_state_btn_down ,check_bb_reconn_cancel 
+0x41ba 006677 rtn 
+:      006679 check_bb_reconn_cancel:
+0x41bb 006680 fetch 1 ,mem_kb_temp_flag 
+0x41bc 006681 set1 cacel_reconn_flag ,pdata 
+0x41bd 006682 store 1 ,mem_kb_temp_flag 
+0x41be 006683 branch check_51cmd_bb_reconn_cancel 
+:      006686 kb_read_gpio:
+0x41bf 006687 hfetch 3 ,core_gpio_key0 
+0x41c0 006688 iforce regb 
+0x41c1 006689 hfetch 4 ,core_gpio_pu0 
+0x41c2 006690 iforce rega 
+0x41c3 006691 hfetcht 8 ,core_gpio_oe0 
+0x41c4 006692 setarg 0 
+0x41c5 006693 hstore 3 ,core_gpio_key0 
+0x41c6 006694 nop 100 
+0x41c7 006695 hfetch 1 ,core_gpio_in 
+0x41c8 006696 store 1 ,mem_kb_gpio_val 
+0x41c9 006697 hjam 0 ,core_gpio_pu0 
+0x41ca 006698 hfetch 1 ,core_gpio_oe3 
+0x41cb 006699 and_into 0xf0 ,pdata 
+0x41cc 006700 hstore 1 ,core_gpio_oe3 
+0x41cd 006701 xor_into 0xff ,pdata 
+0x41ce 006702 hstore 1 ,core_gpio_pu3 
+0x41cf 006703 setarg 0xff 
+0x41d0 006704 hstore 3 ,core_gpio_oe0 
+0x41d1 006705 setarg 0xffff 
+0x41d2 006706 hstore 2 ,core_gpio_pu1 
+0x41d3 006707 nop 100 
+0x41d4 006708 hfetch 3 ,core_gpio_in1 
+0x41d5 006709 iand regb ,pdata 
+0x41d6 006710 store 3 ,mem_kb_gpio_val + 1 
+0x41d7 006711 deposit rega 
+0x41d8 006712 hstore 4 ,core_gpio_pu0 
+0x41d9 006713 hstoret 8 ,core_gpio_oe0 
+0x41da 006714 deposit regb 
+0x41db 006715 hstore 3 ,core_gpio_key0 
+0x41dc 006716 rtn 
+:      006718 kb_pairing_button_check:
+0x41dd 006719 fetch 1 ,mem_scan_mode 
+0x41de 006720 nrtn blank 
+0x41df 006721 fetch 1 ,mem_app_handshake_flag 
+0x41e0 006722 nrtn blank 
+0x41e1 006723 fetch 1 ,mem_ui_button_timer 
+0x41e2 006724 rtn blank 
+0x41e3 006725 fetch 1 ,mem_ui_button_last_state 
+0x41e4 006726 nrtn blank 
+0x41e5 006727 branch app_enter_hibernate 
+:      006729 kb_process_bb_event:
+0x41e6 006730 copy regc ,pdata 
+0x41e7 006731 beq bt_evt_hid_connected ,kb_hid_connected 
+0x41e8 006732 beq bt_evt_pincode_req ,kb_process_pincode 
+0x41e9 006733 beq bt_evt_hid_handshake ,kb_bt_hid_handshake 
+0x41ea 006734 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+0x41eb 006735 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x41ec 006736 beq bt_evt_bb_connected ,kb_stop_discovery 
+0x41ed 006737 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+0x41ee 006738 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+0x41ef 006739 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+0x41f0 006740 and pdata ,0x0f ,temp 
+0x41f1 006741 and_into bt_evt_timer_mask ,pdata 
+0x41f2 006742 beq bt_evt_timer_init ,kb_bb_event_timer 
+0x41f3 006743 rtn 
+:      006746 kb_bb_event_timer:
+0x41f4 006747 set0 mark_ext_patch ,mark 
+0x41f5 006748 bpatch patch19_4 ,mem_patch19 
+0x41f6 006749 storet 1 ,mem_app_evt_timer_count 
+:      006750 kb_bb_event_100ms_loop:
+0x41f7 006751 fetch 1 ,mem_app_evt_timer_count 
+0x41f8 006752 rtn blank 
+0x41f9 006753 increase -1 ,pdata 
+0x41fa 006754 store 1 ,mem_app_evt_timer_count 
+0x41fb 006755 call kb_led_cap_delay_timer 
+0x41fc 006756 call kb_check_hid_handshake_timer 
+0x41fd 006757 call kb_enble_mult_timer 
+0x41fe 006758 call kb_check_no_data_timer 
+0x41ff 006759 call select_system_led_timer 
+0x4200 006760 branch kb_bb_event_100ms_loop 
+:      006762 kb_bb_event_reconn_failed:
+0x4201 006763 fetch 2 ,mem_ui_state_map 
+0x4202 006764 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4203 006765 fetch 1 ,mem_kb_temp_flag 
+0x4204 006766 bbit0 ,cacel_reconn_flag ,app_bb_hibernate 
+0x4205 006767 fetch 1 ,mem_kb_temp_flag 
+0x4206 006768 set0 cacel_reconn_flag ,pdata 
+0x4207 006769 store 1 ,mem_kb_temp_flag 
+0x4208 006770 fetch 2 ,mem_ui_state_map 
+0x4209 006771 set0 ui_state_bt_reconnect ,pdata 
+0x420a 006772 store 2 ,mem_ui_state_map 
+0x420b 006773 rtn 
+:      006775 kb_bb_disconnected:
+0x420c 006776 set0 mark_ext_patch ,mark 
+0x420d 006777 bpatch patch19_5 ,mem_patch19 
+0x420e 006778 call kb_bb_discon_clear_stack 
+0x420f 006779 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x4210 006780 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x4211 006781 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+0x4212 006782 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+0x4213 006783 branch kb_start_discovery 
+:      006784 kb_event_light_state_pairing:
+0x4214 006785 bbit1 app_disc_after_handshake ,kb_event_light_state_hibernate 
+0x4215 006786 bbit1 app_disc_after_sniff ,kb_event_light_state_hibernate 
+0x4216 006787 branch kb_start_discovery 
+:      006788 kb_event_light_state_reconn:
+:      006789 kb_event_light_state_hibernate:
+0x4217 006790 fetch 2 ,mem_ui_state_map 
+0x4218 006791 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4219 006792 branch app_bb_hibernate 
+:      006794 kb_bb_discon_clear_stack:
+0x421a 006795 jam app_handshake_null ,mem_app_handshake_flag 
+0x421b 006796 jam 0 ,mem_kb_debug_sm 
+0x421c 006797 rtn 
+:      006800 kb_check_hid_handshake_timer:
+0x421d 006801 fetch 1 ,mem_hid_handshake_timer_count 
+0x421e 006802 rtn blank 
+0x421f 006803 increase -1 ,pdata 
+0x4220 006804 store 1 ,mem_hid_handshake_timer_count 
+0x4221 006805 nrtn blank 
+0x4222 006806 branch kb_bt_hid_handshake 
+:      006809 kb_bb_event_discovery_btn:
+0x4223 006810 setarg 0 
+0x4224 006811 store 2 ,mem_kb_direct_timer 
+0x4225 006812 store 1 ,mem_pin_length 
+0x4226 006813 call led_cap_darking 
+0x4227 006814 call kb_3_0_bb_event_discovery_btn 
+0x4228 006815 call app_lpm_mult_disable 
+0x4229 006816 branch kb_start_discovery 
+:      006818 led_cap_darking:
+0x422a 006819 jam 1 ,mem_led_cap_gpio_status 
+0x422b 006820 fetcht 1 ,mem_led_cap_gpio 
+0x422c 006821 branch gpio_out_inactive 
+:      006823 kb_3_0_bb_event_discovery_btn:
+0x422d 006824 set0 mark_ext_patch ,mark 
+0x422e 006825 bpatch patch19_6 ,mem_patch19 
+0x422f 006826 fetch 2 ,mem_ui_state_map 
+0x4230 006827 isolate1 ui_state_bt_reconnect ,pdata 
+0x4231 006828 call app_bt_reconnect_cancel ,true 
+0x4232 006829 fetch 2 ,mem_discovery_timeout 
+0x4233 006830 store 2 ,mem_discovery_timeout_timer_count 
+0x4234 006831 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4235 006832 set1 app_disc_by_button ,pdata 
+0x4236 006833 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4237 006834 fetch 2 ,mem_ui_state_map 
+0x4238 006835 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x4239 006836 rtn 
+:      006839 kb_stop_discovery:
+0x423a 006840 call app_led_stop_blink 
+0x423b 006841 setarg 0 
+0x423c 006842 store 2 ,mem_kb_discovery_timer 
+0x423d 006843 branch app_bt_stop_discovery 
+:      006845 kb_start_discovery:
+0x423e 006846 call app_lpm_mult_disable 
+0x423f 006847 fetch 2 ,mem_discovery_timeout 
+0x4240 006848 store 2 ,mem_kb_discovery_timer 
+0x4241 006849 call app_bt_start_discovery 
+0x4242 006850 jam 0 ,mem_kb_led_on_timer 
+0x4243 006852 call app_led_start_blink 
+0x4244 006853 call kb_clean_kscan_fifo 
+0x4245 006854 branch kb_clear_keys 
+:      006856 kb_discovery_timeout_sleep:
+0x4246 006857 branch app_enter_hibernate 
+:      006859 kb_process_pincode:
+0x4247 006860 jam 0 ,mem_hid_handshake_timer_count 
+0x4248 006861 jam 0 ,mem_pin_length 
+0x4249 006862 call kb_clear_keys 
+0x424a 006863 branch kb_clean_kscan_fifo 
+:      006866 kb_before_hibernate:
+0x424b 006867 fetch 1 ,mem_kb_led_on_timer 
+0x424c 006868 branch kb_before_hibernate_cont ,blank 
+0x424d 006869 arg 320 ,temp 
+0x424e 006870 imul32 temp ,temp 
+0x424f 006871 copy clkn_bt ,pdata 
+0x4250 006872 iadd temp ,temp 
+:      006873 kb_before_hibernate_wait:
+0x4251 006874 copy clkn_bt ,pdata 
+0x4252 006875 isub temp ,null 
+0x4253 006876 nbranch kb_before_hibernate_wait ,positive 
+:      006877 kb_before_hibernate_cont:
+0x4254 006878 fetcht 1 ,mem_led_power_gpio 
+0x4255 006879 call gpio_out_inactive 
+0x4256 006880 enable user 
+0x4257 006881 hfetch 4 ,0x8138 
+0x4258 006882 setflag user ,26 ,pdata 
+0x4259 006883 hstore 4 ,core_lpm_reg 
+0x425a 006884 call lpm_write_ctrl 
+:      006885 kb_wake_common:
+0x425b 006886 hjam 0x00 ,core_gpio_key0 
+0x425c 006887 hjam 0x00 ,core_gpio_key1 
+0x425d 006888 hfetch 1 ,core_gpio_key2 
+0x425e 006889 and_into 0xf0 ,pdata 
+0x425f 006890 hstore 1 ,core_gpio_key2 
+0x4260 006891 setarg 0x00 
+0x4261 006892 store 4 ,mem_gpio_wakeup_high 
+0x4262 006893 setarg 0xff 
+0x4263 006894 fetcht 1 ,mem_ui_button_gpio 
+0x4264 006895 copy temp ,queue 
+0x4265 006896 qset1 pdata 
+0x4266 006897 store 4 ,mem_gpio_wakeup_low 
+0x4267 006898 rtn 
+:      006899 kb_process_lpm_before:
+0x4268 006900 call kb_wake_common 
+0x4269 006901 fetch 1 ,mem_lpm_current_mult 
+0x426a 006902 nrtn blank 
+0x426b 006903 jam 0 ,mem_gpio_wakeup_low 
+0x426c 006904 rtn 
+:      006906 kb_hid_connected:
+0x426d 006907 setarg hid_handshake_timeout 
+0x426e 006908 store 1 ,mem_hid_handshake_timer_count 
+0x426f 006909 call kb_clean_kscan_fifo 
+0x4270 006910 branch kb_clear_keys 
+:      006913 kb_bt_hid_handshake:
+0x4271 006914 set0 mark_ext_patch ,mark 
+0x4272 006915 bpatch patch19_7 ,mem_patch19 
+0x4273 006916 call ui_led_off 
+0x4274 006917 jam app_handshake_done ,mem_app_handshake_flag 
+0x4275 006918 call kb_clean_kscan_fifo 
+0x4276 006919 call kb_clear_keys 
+0x4277 006920 call app_lpm_mult_enable 
+0x4278 006921 call app_bt_store_reconn_info 
+0x4279 006922 setarg 0 
+0x427a 006923 store 2 ,mem_discovery_timeout_timer_count 
+0x427b 006924 store 1 ,mem_hid_handshake_timer_count 
+0x427c 006925 branch app_bt_enter_sniff 
+:      006928 store_current_status:
+0x427d 006929 fetch 1 ,mem_kb_current_status 
+0x427e 006930 and_into 0x7 ,pdata 
+0x427f 006931 store 1 ,mem_store_current_status 
+0x4280 006932 arg 1 ,temp 
+0x4281 006933 arg mem_store_current_status ,rega 
+0x4282 006934 setarg eeprom_system_falg 
+0x4283 006935 branch iicd_write_eep 
+:      006938 read_current_status:
+0x4284 006939 arg 1 ,temp 
+0x4285 006940 arg mem_store_current_status ,rega 
+0x4286 006941 setarg eeprom_system_falg 
+0x4287 006942 byteswap pdata ,pdata 
+0x4288 006943 store 2 ,mem_addr_mi 
+0x4289 006944 call iicd_read_eep 
+0x428a 006945 fetch 1 ,mem_store_current_status 
+0x428b 006946 copy pdata ,regb 
+0x428c 006947 and_into 0x0f ,pdata 
+0x428d 006948 beq 0x0f ,kb_current_status_regroup 
+0x428e 006949 copy regb ,pdata 
+0x428f 006950 store 1 ,mem_kb_current_status 
+0x4290 006951 rtn 
+:      006954 kb_kscan_release_foundkey:
+0x4291 006955 add contr ,-1 ,contw 
+0x4292 006956 call memcpy 
+0x4293 006957 fetch 1 ,mem_kb_keys 
+0x4294 006958 increase -1 ,pdata 
+0x4295 006959 store 1 ,mem_kb_keys 
+0x4296 006960 fetch 1 ,mem_kb_release_fn_data 
+0x4297 006961 beq 0x7f ,kb_clear_fn_lock_flag 
+0x4298 006962 branch kb_kscan_check 
+:      006964 kb_recover_kb_down_data:
+0x4299 006965 fetch 8 ,mem_kb_down 
+0x429a 006966 store 8 ,mem_kb_down_test 
+0x429b 006967 branch kb_kscan_check 
+:      006969 kb_kscan_fn:
+0x429c 006970 fetch 1 ,mem_kb_keys 
+0x429d 006971 branch kb_kscan_no_data ,blank 
+0x429e 006972 copy pdata ,regb 
+0x429f 006973 fetch 5 ,mem_kb_down 
+0x42a0 006974 copy pdata ,temp 
+:      006975 kb_kscan_fn_loop:
+0x42a1 006976 copy temp ,pdata 
+0x42a2 006977 compare 0x7f ,pdata ,0xff 
+0x42a3 006978 branch kb_get_fn ,true 
+0x42a4 006979 increase -1 ,regb 
+0x42a5 006980 setarg mem_kb_down_regroup 
+0x42a6 006981 iadd regb ,contw 
+0x42a7 006982 copy temp ,pdata 
+0x42a8 006983 istore 1 ,contw 
+0x42a9 006984 copy temp ,pdata 
+0x42aa 006985 rshift8 pdata ,pdata 
+0x42ab 006986 copy pdata ,temp 
+0x42ac 006987 nbranch kb_kscan_fn_loop ,blank 
+0x42ad 006988 fetch 5 ,mem_kb_down_regroup 
+0x42ae 006989 call kb_down_data ,blank 
+0x42af 006990 branch kb_kscan_check 
+:      006991 kb_get_fn:
+0x42b0 006992 setarg 1 
+0x42b1 006993 store 1 ,mem_kb_get_fn_flag 
+0x42b2 006994 branch kb_kscan_fn_loop + 8 
+:      006996 select_system_led_timer:
+0x42b3 006997 fetch 1 ,mem_select_system_led_timer 
+0x42b4 006998 rtn blank 
+0x42b5 006999 increase -1 ,pdata 
+0x42b6 007000 store 1 ,mem_select_system_led_timer 
+0x42b7 007001 nrtn blank 
+0x42b8 007002 branch ui_led_blink_stop 
+:      007005 kb_current_status_regroup:
+0x42b9 007006 copy regb ,pdata 
+0x42ba 007007 and_into kb_map2_status_win ,pdata 
+0x42bb 007008 store 1 ,mem_kb_current_status 
+0x42bc 007009 rtn 
+:      007010 kb_clear_fn_lock_flag:
+0x42bd 007011 jam 0 ,mem_kb_get_fn_flag 
+0x42be 007012 call kb_down_data 
+0x42bf 007013 branch kb_kscan_check 
+:      007016 kb_kscan_check:
+0x42c0 007017 set0 mark_ext_patch ,mark 
+0x42c1 007018 bpatch patch1a_1 ,mem_patch1a 
+0x42c2 007019 hfetch 1 ,core_kscn_kstat 
+0x42c3 007020 rtnbit1 kb_kscan_stat_empty 
+0x42c4 007021 hfetch 1 ,core_kscn_event_num 
+0x42c5 007022 bbit1 kb_kscan_key_event_stat ,kb_kscan_read_event 
+0x42c6 007023 hfetch 1 ,core_kscn_kstat 
+0x42c7 007024 bbit0 kb_kscan_stat_ghost ,kb_kscan_read_event 
+0x42c8 007025 hfetch 1 ,core_kscn_event 
+0x42c9 007026 branch kb_kscan_check 
+:      007028 kb_kscan_no_data:
+0x42ca 007029 call kb_clear_data 
+0x42cb 007030 branch kb_kscan_check 
+:      007032 kb_down_data:
+0x42cc 007033 fetch 8 ,mem_kb_down 
+0x42cd 007034 store 8 ,mem_kb_down_test 
+0x42ce 007035 rtn 
+:      007037 kb_clear_data:
+0x42cf 007038 setarg 0 
+0x42d0 007039 store 1 ,mem_kb_get_fn_flag 
+0x42d1 007040 store 5 ,mem_kb_down_regroup 
+0x42d2 007041 store 8 ,mem_kb_down 
+0x42d3 007042 rtn 
+:      007044 kb_kscan_read_event:
+0x42d4 007045 fetch 1 ,mem_kb_temp_flag 
+0x42d5 007046 set1 key_event_flag ,pdata 
+0x42d6 007047 store 1 ,mem_kb_temp_flag 
+0x42d7 007049 hfetch 1 ,core_kscn_event_num 
+0x42d8 007050 isolate1 kb_kscan_key_event_stat ,pdata 
+0x42d9 007051 store 1 ,mem_kscan_event_num_last 
+0x42da 007052 hfetch 1 ,core_kscn_event 
+0x42db 007053 store 1 ,mem_kscn_event_last 
+0x42dc 007054 arg mem_kb_map ,contr 
+0x42dd 007055 iadd contr ,contr 
+0x42de 007056 ifetch 1 ,contr 
+0x42df 007057 fetcht 1 ,mem_kb_keys 
+0x42e0 007058 sub temp ,4 ,null 
+0x42e1 007059 nbranch kb_kscan_check ,positive 
+0x42e2 007060 iforce contr 
+0x42e3 007061 setarg mem_kb_down 
+0x42e4 007062 iadd temp ,contw 
+0x42e5 007063 deposit contr 
+0x42e6 007064 istore 1 ,contw 
+0x42e7 007065 increase 1 ,temp 
+0x42e8 007066 storet 1 ,mem_kb_keys 
+0x42e9 007067 branch kb_kscan_fn 
+:      007083 l2cap_init:
+0x42ea 007084 branch l2cap_init_wake ,wake 
+:      007085 l2cap_init_work:
+0x42eb 007086 setarg mem_l2cap_xmem_end 
+0x42ec 007087 arg mem_l2cap_xmem_start ,contw 
+0x42ed 007088 isub contw ,loopcnt 
+0x42ee 007089 call clear_mem 
+:      007090 l2cap_init_wake:
+0x42ef 007091 set0 mark_ext_patch ,mark 
+0x42f0 007092 bpatch patch1a_2 ,mem_patch1a 
+0x42f1 007093 setarg mem_sdp_mem_end 
+0x42f2 007094 arg mem_sdp_mem_start ,contw 
+0x42f3 007095 isub contw ,loopcnt 
+0x42f4 007096 call clear_mem 
+0x42f5 007097 setarg mem_l2cap_mem_end 
+0x42f6 007098 arg mem_l2cap_mem_start ,contw 
+0x42f7 007099 isub contw ,loopcnt 
+0x42f8 007100 call clear_mem 
+0x42f9 007101 branch l2cap_lpm_load_txbuf 
+:      007103 process_rx_l2cap_pkt:
+0x42fa 007104 set0 mark_ext_patch ,mark 
+0x42fb 007105 bpatch patch1a_3 ,mem_patch1a 
+0x42fc 007106 copy contr ,temp 
+0x42fd 007109 copy temp ,contr 
+0x42fe 007110 ifetch 2 ,contr 
+0x42ff 007111 store 2 ,mem_l2cap_rx_pkt_length 
+0x4300 007112 ifetch 2 ,contr 
+0x4301 007113 store 2 ,mem_l2cap_rx_cid 
+0x4302 007114 deposit contr 
+0x4303 007115 store 2 ,mem_l2cap_payload_ptr 
+0x4304 007116 fetch 1 ,memui_reconnect_mode 
+0x4305 007117 beq no_reconnection ,l2cap_rx_multiplexing 
+0x4306 007118 branch ml2cap_rx_multiplexing 
+:      007120 l2cap_rx_multiplexing:
+0x4307 007121 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4308 007122 branch l2cap_rx_reset_state ,blank 
+0x4309 007123 set0 mark_ext_patch ,mark 
+0x430a 007124 bpatch patch1a_4 ,mem_patch1a 
+0x430b 007125 fetch 1 ,mem_l2cap_rx_cid 
+0x430c 007126 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+:      007127 l2cap_rx_multiplexing0:
+0x430d 007128 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x430e 007129 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x430f 007130 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x4310 007131 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x4311 007132 branch l2cap_rx_reset_state 
+:      007134 l2cap_check_map:
+0x4312 007137 set0 mark_ext_patch ,mark 
+0x4313 007138 bpatch patch1a_5 ,mem_patch1a 
+0x4314 007139 call l2cap_malloc_get_full_map 
+0x4315 007140 fetch 1 ,mem_used_map 
+0x4316 007141 beq 0 ,set_pdata_0 
+0x4317 007142 beq 1 ,set_pdata_0 
+0x4318 007143 beq 2 ,set_pdata_0 
+0x4319 007144 beq 3 ,set_pdata_0 
+0x431a 007145 beq 0x81 ,set_pdata_0 
+0x431b 007146 beq 0xc0 ,set_pdata_0 
+0x431c 007147 beq 0x80 ,set_pdata_0 
+0x431d 007148 beq 0x40 ,set_pdata_0 
+0x431e 007149 rtn 
+:      007151 set_pdata_0:
+0x431f 007152 setarg 0 
+0x4320 007153 rtn 
+:      007156 l2cap_call_proc_signal:
+0x4321 007157 call l2cap_check_map 
+0x4322 007158 nrtn blank 
+:      007159 l2cap_call_proc_signal0:
+0x4323 007160 call l2cap_malloc_signal_channel 
+0x4324 007161 call l2cap_process_signal_pkt 
+0x4325 007162 fetcht 2 ,mem_l2cap_signal_tx_length 
+0x4326 007163 branch l2cap_call_proc_no_reply ,blank 
+0x4327 007164 call l2cap_get_signal_tx_buff 
+0x4328 007165 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4329 007166 istore 2 ,contw 
+0x432a 007167 force l2cap_signal_channel ,pdata 
+0x432b 007168 istore 2 ,contw 
+0x432c 007169 branch l2cap_rx_reset_state 
+:      007171 l2cap_call_proc_sigal_pending:
+0x432d 007172 fetch 1 ,mem_l2cap_pending_item 
+0x432e 007173 rtn blank 
+0x432f 007174 copy pdata ,rega 
+0x4330 007175 set0 mark_ext_patch ,mark 
+0x4331 007176 bpatch patch1a_6 ,mem_patch1a 
+0x4332 007177 fetch 4 ,mem_l2cap_sdpres_delay_time 
+0x4333 007178 arg 0x100 ,temp 
+0x4334 007179 iadd temp ,temp 
+0x4335 007180 copy clkn_bt ,pdata 
+0x4336 007181 isub temp ,null 
+0x4337 007182 nrtn positive 
+0x4338 007183 jam 0 ,mem_l2cap_pending_item 
+0x4339 007184 copy rega ,pdata 
+0x433a 007185 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x433b 007186 branch assert 
+:      007187 l2cap_sdp_conn_succ:
+0x433c 007188 arg 0 ,debug 
+0x433d 007189 call l2cap_malloc_signal_channel 
+0x433e 007190 call restore_l2cap_req_param 
+0x433f 007191 call l2cap_get_signal_tx_payload 
+0x4340 007192 call save_cont_pointers 
+0x4341 007193 call send_connection_sdp_res 
+0x4342 007194 call l2cap_get_signal_tx_buff 
+0x4343 007196 setarg 0x000c 
+0x4344 007197 istore 2 ,contw 
+0x4345 007198 force l2cap_signal_channel ,pdata 
+0x4346 007199 istore 2 ,contw 
+0x4347 007200 branch l2cap_rx_reset_state 
+:      007204 l2cap_reset_sdp_map:
+0x4348 007205 set0 mark_ext_patch ,mark 
+0x4349 007206 bpatch patch1a_7 ,mem_patch1a 
+0x434a 007207 fetch 2 ,mem_sdp_tx_pkt_length 
+0x434b 007208 increase 4 ,pdata 
+0x434c 007209 rshift4 pdata ,pdata 
+0x434d 007210 rshift3 pdata ,pdata 
+0x434e 007211 add pdata ,1 ,temp 
+0x434f 007212 arg mem_tx_fifo3 ,contr 
+0x4350 007213 ifetch 3 ,contr 
+0x4351 007214 rtn blank 
+0x4352 007215 store 3 ,mem_tx_fifo_map_temp 
+0x4353 007216 fetch 1 ,mem_tx_fifo_map_temp 
+0x4354 007217 copy pdata ,rega 
+0x4355 007218 call check_l2cap_map 
+0x4356 007219 copy regb ,pdata 
+0x4357 007220 store 1 ,mem_tx_fifo3 
+0x4358 007221 rtn 
+:      007223 check_l2cap_map:
+0x4359 007224 arg 0 ,queue 
+0x435a 007225 arg 0 ,regb 
+:      007227 check_l2cap_map_loop:
+0x435b 007228 sub queue ,7 ,null 
+0x435c 007229 nrtn positive 
+0x435d 007230 qisolate1 rega 
+0x435e 007231 branch check_l2cap_map_used ,true 
+0x435f 007232 branch check_l2cap_map_used2 
+:      007234 check_l2cap_map_used:
+0x4360 007235 copy temp ,pdata 
+0x4361 007236 branch check_l2cap_map_used2 ,blank 
+0x4362 007237 qset1 regb 
+0x4363 007238 increase -1 ,temp 
+:      007240 check_l2cap_map_used2:
+0x4364 007241 increase 1 ,queue 
+0x4365 007242 branch check_l2cap_map_loop 
+:      007244 l2cap_call_proc_sdp:
+0x4366 007245 call l2cap_malloc_is_fifo_empty 
+0x4367 007246 nrtn blank 
+0x4368 007247 call l2cap_check_map 
+0x4369 007248 nrtn blank 
+0x436a 007249 call l2cap_malloc_sdp_channel 
+0x436b 007250 call sdp_process 
+0x436c 007251 call l2cap_reset_sdp_map 
+0x436d 007252 branch l2cap_call_proc_sdp_common 
+:      007255 ml2cap_call_proc_sdp:
+0x436e 007256 call l2cap_malloc_is_fifo_empty 
+0x436f 007257 nrtn blank 
+0x4370 007258 call l2cap_malloc_sdp_channel 
+0x4371 007259 call sdp_process 
+:      007260 l2cap_call_proc_sdp_common:
+0x4372 007261 call l2cap_get_sdp_tx_buff 
+0x4373 007262 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4374 007263 branch l2cap_call_proc_no_reply ,blank 
+0x4375 007264 istore 2 ,contw 
+0x4376 007265 fetch 2 ,mem_sdp_remote_cid 
+0x4377 007266 istore 2 ,contw 
+0x4378 007267 branch l2cap_rx_reset_state 
+:      007269 l2cap_call_proc_hid:
+0x4379 007270 call hid_rx_process 
+0x437a 007271 branch l2cap_rx_reset_state 
+:      007273 l2cap_call_proc_rfcomm:
+0x437b 007274 set0 mark_ext_patch ,mark 
+0x437c 007275 bpatch patch1b_0 ,mem_patch1b 
+0x437d 007276 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x437e 007277 call rfcomm_rx_process 
+0x437f 007278 fetch 1 ,mem_rfcomm_malloc_fail_flag 
+0x4380 007279 rtneq rfcomm_malloc_fail 
+0x4381 007280 branch l2cap_rx_reset_state 
+:      007281 l2cap_call_proc_no_reply:
+0x4382 007282 call l2cap_malloc_discard 
+:      007284 l2cap_rx_reset_state:
+0x4383 007285 setarg 0 
+0x4384 007286 store 2 ,mem_l2cap_rx_pkt_length 
+0x4385 007287 store 2 ,mem_l2cap_rx_cid 
+0x4386 007288 jam l2cap_rx_done ,mem_l2cap_rx_done 
+0x4387 007289 rtn 
+:      007291 l2cap_process_signal_pkt:
+0x4388 007292 set0 mark_ext_patch ,mark 
+0x4389 007293 bpatch patch1b_1 ,mem_patch1b 
+0x438a 007294 call l2cap_get_signal_tx_payload 
+0x438b 007295 force 0 ,regb 
+0x438c 007296 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x438d 007297 copy pdata ,regc 
+0x438e 007298 fetch 2 ,mem_l2cap_payload_ptr 
+0x438f 007299 iforce contr 
+:      007300 l2cap_process_signal_pkt_loop:
+0x4390 007301 call l2cap_process_one_signal 
+0x4391 007302 deposit regc 
+0x4392 007303 increase -4 ,regc 
+0x4393 007304 increase -4 ,pdata 
+0x4394 007305 nbranch l2cap_process_signal_pkt_loop ,blank 
+0x4395 007306 copy regb ,pdata 
+0x4396 007307 store 2 ,mem_l2cap_signal_tx_length 
+0x4397 007308 rtn 
+:      007310 l2cap_process_one_signal:
+0x4398 007311 set0 mark_ext_patch ,mark 
+0x4399 007312 bpatch patch1b_2 ,mem_patch1b 
+0x439a 007313 ifetch 1 ,contr 
+0x439b 007314 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+0x439c 007315 beq signal_connect_req ,l2cap_proc_signal_connect_req 
+0x439d 007316 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+0x439e 007317 beq signal_config_req ,l2cap_proc_signal_config_req 
+0x439f 007318 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+0x43a0 007319 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+0x43a1 007320 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+0x43a2 007321 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x43a3 007322 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+0x43a4 007323 beq signal_info_req ,l2cap_proc_signal_info_req 
+0x43a5 007324 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+0x43a6 007325 call l2cap_reject_command 
+:      007326 l2cap_process_one_signal_rtn:
+0x43a7 007327 rtn 
+:      007329 l2cap_proc_signal_info_req:
+0x43a8 007330 ifetch 1 ,contr 
+0x43a9 007331 copy pdata ,queue 
+0x43aa 007332 ifetch 2 ,contr 
+0x43ab 007333 copy pdata ,rega 
+0x43ac 007334 copy regc ,pdata 
+0x43ad 007335 isub rega ,regc 
+0x43ae 007336 setarg signal_info_rsp 
+0x43af 007337 istore 1 ,contw 
+0x43b0 007338 copy queue ,pdata 
+0x43b1 007339 istore 1 ,contw 
+0x43b2 007340 ifetch 2 ,contr 
+:      007341 l2cap_proc_signal_info_req_reply:
+0x43b3 007342 beq l2cap_sig_ext_featrue ,l2cap_proc_signal_info_req_ext 
+0x43b4 007343 beq l2cap_sig_fix_featrue ,l2cap_proc_signal_info_req_fix 
+0x43b5 007344 rtn 
+:      007345 l2cap_proc_signal_info_req_ext:
+0x43b6 007346 setarg 0x020008 
+0x43b7 007347 istore 6 ,contw 
+0x43b8 007348 setarg 0x0280 
+0x43b9 007349 istore 4 ,contw 
+0x43ba 007350 force 12 ,pdata 
+0x43bb 007351 branch l2cap_proc_signal_info_req_common 
+:      007352 l2cap_proc_signal_info_req_fix:
+0x43bc 007353 setarg 0x3000c 
+0x43bd 007354 istore 6 ,contw 
+0x43be 007355 setarg 0x0006 
+0x43bf 007356 istore 8 ,contw 
+0x43c0 007357 force 16 ,pdata 
+:      007358 l2cap_proc_signal_info_req_common:
+0x43c1 007359 iadd regb ,regb 
+0x43c2 007360 branch l2cap_process_one_signal_rtn 
+:      007362 ml2cap_proc_signal_info_req:
+0x43c3 007363 ifetch 1 ,contr 
+0x43c4 007364 copy pdata ,queue 
+0x43c5 007365 ifetch 2 ,contr 
+0x43c6 007366 copy pdata ,rega 
+0x43c7 007367 ifetch 2 ,contr 
+0x43c8 007368 store 2 ,mem_temp 
+0x43c9 007369 copy regc ,pdata 
+0x43ca 007370 isub rega ,regc 
+0x43cb 007371 call l2cap_get_signal_tx_payload 
+0x43cc 007372 setarg signal_info_rsp 
+0x43cd 007373 istore 1 ,contw 
+0x43ce 007374 copy queue ,pdata 
+0x43cf 007375 istore 1 ,contw 
+0x43d0 007376 fetch 2 ,mem_temp 
+0x43d1 007377 branch l2cap_proc_signal_info_req_reply 
+:      007381 l2cap_proc_signal_cmd_reject:
+0x43d2 007382 ifetch 1 ,contr 
+0x43d3 007383 copy pdata ,queue 
+0x43d4 007384 ifetch 2 ,contr 
+0x43d5 007385 copy pdata ,rega 
+0x43d6 007386 iadd contr ,contr 
+0x43d7 007387 copy regc ,pdata 
+0x43d8 007388 isub rega ,regc 
+:      007389 l2cap_proc_signal_cmd_reject_rtn:
+0x43d9 007390 branch l2cap_process_one_signal_rtn 
+:      007392 l2cap_proc_signal_connect_req:
+0x43da 007393 call save_cont_pointers 
+0x43db 007396 call load_cont_pointers 
+0x43dc 007397 arg 0 ,debug 
+0x43dd 007398 ifetch 1 ,contr 
+0x43de 007399 copy pdata ,queue 
+0x43df 007400 ifetch 2 ,contr 
+0x43e0 007401 copy pdata ,rega 
+0x43e1 007402 ifetch 2 ,contr 
+0x43e2 007403 copy pdata ,temp 
+0x43e3 007404 ifetch 2 ,contr 
+0x43e4 007405 copy pdata ,timeup 
+0x43e5 007406 set0 mark_ext_patch ,mark 
+0x43e6 007407 bpatch patch1b_3 ,mem_patch1b 
+0x43e7 007408 copy temp ,pdata 
+0x43e8 007409 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+0x43e9 007410 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+0x43ea 007411 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+0x43eb 007412 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+0x43ec 007413 call l2cap_reject_command 
+0x43ed 007414 branch l2cap_proc_signal_connect_req_rtn 
+:      007416 l2cap_proc_signal_connect_req_sdp:
+0x43ee 007417 call save_cont_pointers 
+0x43ef 007418 arg l2cap_sdp_channel ,temp 
+0x43f0 007419 fetch 2 ,mem_sdp_remote_cid 
+0x43f1 007420 nbranch already_connected ,blank 
+0x43f2 007421 copy timeup ,pdata 
+0x43f3 007422 store 2 ,mem_sdp_remote_cid 
+0x43f4 007423 copy clkn_bt ,pdata 
+0x43f5 007424 store 4 ,mem_l2cap_sdpres_delay_time 
+0x43f6 007425 call store_l2cap_req_param 
+0x43f7 007426 branch send_connection_pending 
+:      007428 store_l2cap_req_param:
+0x43f8 007429 storet 2 ,mem_psm 
+0x43f9 007430 deposit timeup 
+0x43fa 007431 store 2 ,mem_scid 
+0x43fb 007432 deposit rega 
+0x43fc 007433 store 2 ,mem_cmd_length 
+0x43fd 007434 deposit regb 
+0x43fe 007435 store 2 ,mem_tt2 
+0x43ff 007436 deposit regc 
+0x4400 007437 store 2 ,mem_tt3 
+0x4401 007438 deposit queue 
+0x4402 007439 store 2 ,mem_id 
+0x4403 007440 rtn 
+:      007442 restore_l2cap_req_param:
+0x4404 007443 fetcht 2 ,mem_psm 
+0x4405 007444 fetch 2 ,mem_scid 
+0x4406 007445 copy pdata ,timeup 
+0x4407 007446 fetch 2 ,mem_cmd_length 
+0x4408 007447 copy pdata ,rega 
+0x4409 007448 fetch 2 ,mem_tt2 
+0x440a 007449 copy pdata ,regb 
+0x440b 007450 fetch 2 ,mem_tt3 
+0x440c 007451 copy pdata ,regc 
+0x440d 007452 fetch 2 ,mem_id 
+0x440e 007453 copy pdata ,queue 
+0x440f 007454 rtn 
+:      007456 l2cap_proc_signal_connect_req_rfcomm:
+0x4410 007457 call save_cont_pointers 
+0x4411 007458 setarg l2cap_rfcomm_channel 
+0x4412 007459 arg l2cap_rfcomm_channel ,temp 
+0x4413 007460 fetch 2 ,mem_rfcomm_remote_cid 
+0x4414 007461 nbranch already_connected ,blank 
+0x4415 007462 copy timeup ,pdata 
+0x4416 007463 store 2 ,mem_rfcomm_remote_cid 
+0x4417 007464 fetch 1 ,mem_rfcomm_state 
+0x4418 007465 set1 l2cap_channel_state_conn_req ,pdata 
+0x4419 007466 set1 l2cap_channel_state_conn_res ,pdata 
+0x441a 007467 store 1 ,mem_rfcomm_state 
+0x441b 007468 branch send_connection_res 
+:      007469 l2cap_proc_signal_connect_req_hid_ctrl:
+0x441c 007470 call save_cont_pointers 
+0x441d 007471 arg l2cap_hid_control_channel ,temp 
+0x441e 007472 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x441f 007473 nbranch already_connected ,blank 
+0x4420 007474 copy timeup ,pdata 
+0x4421 007475 store 2 ,mem_hid_ctrl_remote_cid 
+0x4422 007476 fetch 1 ,mem_hid_control_state 
+0x4423 007477 set1 l2cap_channel_state_conn_req ,pdata 
+0x4424 007478 set1 l2cap_channel_state_conn_res ,pdata 
+0x4425 007479 store 1 ,mem_hid_control_state 
+0x4426 007480 branch send_connection_res 
+:      007481 l2cap_proc_signal_connect_req_hid_int:
+0x4427 007482 call save_cont_pointers 
+0x4428 007483 deposit clke 
+0x4429 007484 arg l2cap_hid_interrupt_channel ,temp 
+0x442a 007485 fetch 2 ,mem_hid_int_remote_cid 
+0x442b 007486 nbranch already_connected ,blank 
+0x442c 007487 copy timeup ,pdata 
+0x442d 007488 store 2 ,mem_hid_int_remote_cid 
+0x442e 007489 fetch 1 ,mem_hid_interrupt_state 
+0x442f 007490 set1 l2cap_channel_state_conn_req ,pdata 
+0x4430 007491 set1 l2cap_channel_state_conn_res ,pdata 
+0x4431 007492 store 1 ,mem_hid_interrupt_state 
+0x4432 007493 branch send_connection_res 
+:      007495 send_connection_pending:
+0x4433 007496 setarg l2cap_connect_pending 
+0x4434 007497 store 2 ,meml2cap_t1 
+0x4435 007498 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+0x4436 007499 branch send_connection_res0 
+:      007500 send_connection_sdp_res:
+0x4437 007501 fetch 1 ,mem_sdp_state 
+0x4438 007502 set1 l2cap_channel_state_conn_req ,pdata 
+0x4439 007503 set1 l2cap_channel_state_conn_res ,pdata 
+0x443a 007504 store 1 ,mem_sdp_state 
+:      007505 send_connection_res:
+0x443b 007506 setarg l2cap_connect_successful 
+0x443c 007507 store 2 ,meml2cap_t1 
+:      007508 send_connection_res0:
+0x443d 007509 set0 mark_ext_patch ,mark 
+0x443e 007510 bpatch patch1b_4 ,mem_patch1b 
+0x443f 007511 call load_cont_pointers 
+0x4440 007512 setarg signal_connect_rsp 
+0x4441 007513 istore 1 ,contw 
+0x4442 007514 copy queue ,pdata 
+0x4443 007515 istore 1 ,contw 
+0x4444 007516 setarg 0x0008 
+0x4445 007517 istore 2 ,contw 
+0x4446 007518 copy temp ,pdata 
+0x4447 007519 istore 2 ,contw 
+0x4448 007520 copy timeup ,pdata 
+0x4449 007521 istore 2 ,contw 
+0x444a 007522 fetch 2 ,meml2cap_t1 
+0x444b 007523 beq l2cap_connect_pending ,connect_pending 
+0x444c 007524 isolate0 0 ,debug 
+0x444d 007525 branch connect_suc ,true 
+0x444e 007526 setarg l2cap_connect_refused_no_resources 
+:      007527 connect_suc:
+0x444f 007528 istore 2 ,contw 
+0x4450 007529 force 0x0000 ,pdata 
+0x4451 007530 istore 2 ,contw 
+0x4452 007531 setarg 12 
+0x4453 007532 branch connect_req_update_byte_counts 
+:      007533 connect_pending:
+0x4454 007534 istore 2 ,contw 
+0x4455 007535 force 0x0002 ,pdata 
+0x4456 007536 istore 2 ,contw 
+0x4457 007537 setarg 12 
+0x4458 007538 branch connect_req_update_byte_counts 
+:      007540 already_connected:
+0x4459 007541 set1 0 ,debug 
+0x445a 007542 branch send_connection_res 
+:      007543 connect_req_update_byte_counts:
+0x445b 007544 iadd regb ,regb 
+0x445c 007545 copy regc ,pdata 
+0x445d 007546 isub rega ,regc 
+0x445e 007547 branch l2cap_proc_signal_connect_req_rtn 
+:      007548 l2cap_proc_signal_connect_req_rtn:
+0x445f 007549 branch l2cap_process_one_signal_rtn 
+:      007551 l2cap_proc_signal_connect_rsp:
+0x4460 007552 ifetch 1 ,contr 
+0x4461 007553 copy pdata ,queue 
+0x4462 007554 ifetch 2 ,contr 
+0x4463 007555 copy pdata ,rega 
+0x4464 007556 copy regc ,pdata 
+0x4465 007557 isub rega ,regc 
+0x4466 007558 ifetch 2 ,contr 
+0x4467 007559 copy pdata ,timeup 
+0x4468 007560 ifetch 2 ,contr 
+0x4469 007561 copy pdata ,temp 
+0x446a 007562 set0 mark_ext_patch ,mark 
+0x446b 007563 bpatch patch1b_5 ,mem_patch1b 
+0x446c 007564 setarg l2cap_sdp_channel 
+0x446d 007565 isub temp ,null 
+0x446e 007566 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+0x446f 007567 setarg l2cap_rfcomm_channel 
+0x4470 007568 isub temp ,null 
+0x4471 007569 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x4472 007570 setarg l2cap_hid_control_channel 
+0x4473 007571 isub temp ,null 
+0x4474 007572 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x4475 007573 setarg l2cap_hid_interrupt_channel 
+0x4476 007574 isub temp ,null 
+0x4477 007575 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x4478 007576 rtn 
+:      007578 l2cap_proc_signal_connect_rsp_sdp:
+0x4479 007579 copy timeup ,pdata 
+0x447a 007580 store 2 ,mem_sdp_remote_cid 
+0x447b 007581 fetch 1 ,mem_sdp_state 
+0x447c 007582 set1 l2cap_channel_state_conn_res ,pdata 
+0x447d 007583 store 1 ,mem_sdp_state 
+0x447e 007584 branch l2cap_process_one_signal_rtn 
+:      007585 l2cap_proc_signal_connect_rsp_rfcomm:
+0x447f 007586 copy timeup ,pdata 
+0x4480 007587 store 2 ,mem_rfcomm_remote_cid 
+0x4481 007588 fetch 1 ,mem_rfcomm_state 
+0x4482 007589 set1 l2cap_channel_state_conn_res ,pdata 
+0x4483 007590 store 1 ,mem_rfcomm_state 
+0x4484 007591 rtn 
+:      007592 l2cap_proc_signal_connect_rsp_hid_int:
+0x4485 007593 copy timeup ,pdata 
+0x4486 007594 store 2 ,mem_hid_ctrl_remote_cid 
+0x4487 007595 fetch 1 ,mem_hid_interrupt_state 
+0x4488 007596 set1 l2cap_channel_state_conn_res ,pdata 
+0x4489 007597 store 1 ,mem_hid_interrupt_state 
+0x448a 007598 rtn 
+:      007599 l2cap_proc_signal_connect_rsp_hid_ctrl:
+0x448b 007600 copy timeup ,pdata 
+0x448c 007601 store 2 ,mem_hid_int_remote_cid 
+0x448d 007602 fetch 1 ,mem_hid_control_state 
+0x448e 007603 set1 l2cap_channel_state_conn_res ,pdata 
+0x448f 007604 store 1 ,mem_hid_control_state 
+0x4490 007605 rtn 
+:      007607 l2cap_proc_signal_config_req:
+0x4491 007608 ifetch 1 ,contr 
+0x4492 007609 copy pdata ,queue 
+0x4493 007610 ifetch 2 ,contr 
+0x4494 007611 copy pdata ,rega 
+0x4495 007612 copy regc ,pdata 
+0x4496 007613 isub rega ,regc 
+0x4497 007614 ifetch 2 ,contr 
+0x4498 007615 copy pdata ,temp 
+0x4499 007616 copy temp ,rega 
+0x449a 007617 set0 mark_ext_patch ,mark 
+0x449b 007618 bpatch patch1b_6 ,mem_patch1b 
+0x449c 007619 setarg l2cap_sdp_channel 
+0x449d 007620 isub temp ,null 
+0x449e 007621 branch l2cap_proc_signal_config_req_sdp ,zero 
+0x449f 007622 setarg l2cap_rfcomm_channel 
+0x44a0 007623 isub temp ,null 
+0x44a1 007624 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+0x44a2 007625 setarg l2cap_hid_control_channel 
+0x44a3 007626 isub temp ,null 
+0x44a4 007627 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x44a5 007628 setarg l2cap_hid_interrupt_channel 
+0x44a6 007629 isub temp ,null 
+0x44a7 007630 branch l2cap_proc_signal_config_req_hid_int ,zero 
+0x44a8 007631 branch l2cap_reject_command 
+:      007633 l2cap_proc_signal_config_req_sdp:
+0x44a9 007634 copy contw ,timeup 
+0x44aa 007635 fetch 1 ,mem_sdp_state 
+0x44ab 007636 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ac 007637 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44ad 007639 store 1 ,mem_sdp_state 
+0x44ae 007640 copy timeup ,contw 
+0x44af 007641 arg l2cap_sdp_channel ,timeup 
+0x44b0 007642 fetch 2 ,mem_sdp_remote_cid 
+0x44b1 007643 copy pdata ,temp 
+0x44b2 007644 branch l2cap_send_config_rsp 
+:      007645 l2cap_proc_signal_config_req_hid_ctrl:
+0x44b3 007646 copy contw ,timeup 
+0x44b4 007647 fetch 1 ,mem_hid_control_state 
+0x44b5 007648 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44b6 007649 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44b7 007651 store 1 ,mem_hid_control_state 
+0x44b8 007652 copy timeup ,contw 
+0x44b9 007653 arg l2cap_hid_control_channel ,timeup 
+0x44ba 007654 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x44bb 007655 copy pdata ,temp 
+0x44bc 007656 branch l2cap_send_config_rsp 
+:      007657 l2cap_proc_signal_config_req_hid_int:
+0x44bd 007658 copy contw ,timeup 
+0x44be 007659 fetch 1 ,mem_hid_interrupt_state 
+0x44bf 007660 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44c0 007661 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44c1 007663 store 1 ,mem_hid_interrupt_state 
+0x44c2 007664 copy timeup ,contw 
+0x44c3 007665 arg l2cap_hid_interrupt_channel ,timeup 
+0x44c4 007666 fetch 2 ,mem_hid_int_remote_cid 
+0x44c5 007667 copy pdata ,temp 
+0x44c6 007668 branch l2cap_send_config_rsp 
+:      007669 l2cap_proc_signal_config_req_rfcomm:
+0x44c7 007670 copy contw ,timeup 
+0x44c8 007671 fetch 1 ,mem_rfcomm_state 
+0x44c9 007672 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ca 007673 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44cb 007675 store 1 ,mem_rfcomm_state 
+0x44cc 007677 copy timeup ,contw 
+0x44cd 007678 arg l2cap_rfcomm_channel ,timeup 
+0x44ce 007679 fetch 2 ,mem_rfcomm_remote_cid 
+0x44cf 007680 copy pdata ,temp 
+:      007681 l2cap_send_config_rsp:
+0x44d0 007682 set0 mark_ext_patch ,mark 
+0x44d1 007683 bpatch patch1b_7 ,mem_patch1b 
+0x44d2 007684 setarg signal_config_rsp 
+0x44d3 007685 istore 1 ,contw 
+0x44d4 007686 copy queue ,pdata 
+0x44d5 007687 istore 1 ,contw 
+0x44d6 007688 setarg 0x0006 
+0x44d7 007689 istore 2 ,contw 
+0x44d8 007690 copy temp ,pdata 
+0x44d9 007691 istore 2 ,contw 
+0x44da 007692 force 0x00 ,pdata 
+0x44db 007693 istore 2 ,contw 
+0x44dc 007694 force l2cap_config_success ,pdata 
+0x44dd 007695 istore 2 ,contw 
+0x44de 007696 force 10 ,pdata 
+0x44df 007697 iadd regb ,regb 
+0x44e0 007699 storet 2 ,mem_config_req_dest_cid 
+0x44e1 007700 copy queue ,pdata 
+0x44e2 007701 store 1 ,mem_config_identifier 
+0x44e3 007702 force l2cap_sdp_channel ,pdata 
+0x44e4 007703 icompare 0xff ,timeup 
+0x44e5 007704 branch l2cap_send_config_rsp_is_sdp ,true 
+0x44e6 007705 increase 1 ,pdata 
+:      007706 l2cap_send_config_rsp_is_sdp:
+0x44e7 007708 rtn 
+:      007709 l2cap_check_channel_state:
+0x44e8 007710 disable user 
+0x44e9 007711 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ea 007712 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+0x44eb 007713 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+0x44ec 007714 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ed 007715 copy contr ,contw 
+0x44ee 007716 increase -1 ,contw 
+0x44ef 007717 istore 1 ,contw 
+0x44f0 007718 enable user 
+0x44f1 007719 rtn 
+:      007720 l2cap_send_config_req:
+:      007721 l2cap_send_config_req_sdp:
+0x44f2 007722 fetch 1 ,mem_sdp_state 
+0x44f3 007723 call l2cap_check_channel_state 
+0x44f4 007724 nbranch l2cap_send_config_req_rfcomm ,user 
+0x44f5 007725 jam l2cap_sdp_channel ,mem_send_config_req 
+0x44f6 007726 fetch 2 ,mem_sdp_remote_cid 
+0x44f7 007727 store 2 ,mem_config_req_dest_cid 
+0x44f8 007728 branch l2cap_generate_config_req 
+:      007729 l2cap_send_config_req_rfcomm:
+0x44f9 007730 fetch 1 ,mem_rfcomm_state 
+0x44fa 007731 call l2cap_check_channel_state 
+0x44fb 007732 nbranch l2cap_send_config_req_hid_ctrl ,user 
+0x44fc 007733 jam l2cap_rfcomm_channel ,mem_send_config_req 
+0x44fd 007734 fetch 2 ,mem_rfcomm_remote_cid 
+0x44fe 007735 store 2 ,mem_config_req_dest_cid 
+0x44ff 007736 branch l2cap_generate_config_req 
+:      007737 l2cap_send_config_req_hid_ctrl:
+0x4500 007738 fetch 1 ,mem_hid_control_state 
+0x4501 007739 call l2cap_check_channel_state 
+0x4502 007740 nbranch l2cap_send_config_req_hid_int ,user 
+0x4503 007741 jam l2cap_hid_control_channel ,mem_send_config_req 
+0x4504 007742 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4505 007743 store 2 ,mem_config_req_dest_cid 
+0x4506 007744 branch l2cap_generate_config_req 
+:      007745 l2cap_send_config_req_hid_int:
+0x4507 007746 fetch 1 ,mem_hid_interrupt_state 
+0x4508 007747 call l2cap_check_channel_state 
+0x4509 007748 nrtn user 
+0x450a 007749 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+0x450b 007750 fetch 2 ,mem_hid_int_remote_cid 
+0x450c 007751 store 2 ,mem_config_req_dest_cid 
+:      007754 l2cap_generate_config_req:
+0x450d 007755 set0 mark_ext_patch ,mark 
+0x450e 007756 bpatch patch1c_0 ,mem_patch1c 
+0x450f 007757 call l2cap_get_req_id 
+0x4510 007758 call l2cap_malloc_signal_channel 
+0x4511 007759 force 0 ,regb 
+0x4512 007760 call l2cap_get_signal_tx_payload 
+0x4513 007761 force signal_config_req ,pdata 
+0x4514 007762 istore 1 ,contw 
+0x4515 007763 fetch 1 ,mem_ml2cap_comm_id 
+0x4516 007764 istore 1 ,contw 
+0x4517 007765 setarg 0x0008 
+0x4518 007766 istore 2 ,contw 
+0x4519 007767 fetch 2 ,mem_config_req_dest_cid 
+0x451a 007768 istore 2 ,contw 
+0x451b 007769 setarg 0x0000 
+0x451c 007770 istore 2 ,contw 
+0x451d 007771 force 1 ,pdata 
+0x451e 007772 istore 1 ,contw 
+0x451f 007773 force 2 ,pdata 
+0x4520 007774 istore 1 ,contw 
+0x4521 007775 fetch 1 ,mem_send_config_req 
+0x4522 007776 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+0x4523 007777 setarg l2cap_config_mtu_sdp 
+0x4524 007778 istore 2 ,contw 
+0x4525 007779 branch l2cap_generate_config_req_done 
+:      007780 l2cap_generate_config_req_rfcomm:
+0x4526 007781 setarg l2cap_config_mtu_rfcomm 
+0x4527 007782 istore 2 ,contw 
+:      007783 l2cap_generate_config_req_done:
+0x4528 007784 arg 0x0c ,temp 
+0x4529 007785 storet 2 ,mem_l2cap_signal_tx_length 
+0x452a 007786 call l2cap_get_signal_tx_buff 
+0x452b 007787 fetch 2 ,mem_l2cap_signal_tx_length 
+0x452c 007788 istore 2 ,contw 
+0x452d 007789 force l2cap_signal_channel ,pdata 
+0x452e 007790 istore 2 ,contw 
+0x452f 007791 jam 0 ,mem_send_config_req 
+:      007792 l2cap_proc_signal_config_req_rtn:
+0x4530 007793 branch l2cap_process_one_signal_rtn 
+:      007795 l2cap_proc_signal_config_rsp:
+0x4531 007796 increase 1 ,contr 
+0x4532 007797 ifetch 2 ,contr 
+0x4533 007798 copy pdata ,rega 
+0x4534 007799 copy regc ,pdata 
+0x4535 007800 isub rega ,regc 
+0x4536 007801 ifetch 2 ,contr 
+0x4537 007802 copy pdata ,rega 
+0x4538 007803 set0 mark_ext_patch ,mark 
+0x4539 007804 bpatch patch1c_1 ,mem_patch1c 
+0x453a 007805 setarg l2cap_sdp_channel 
+0x453b 007806 isub rega ,null 
+0x453c 007807 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+0x453d 007808 setarg l2cap_rfcomm_channel 
+0x453e 007809 isub rega ,null 
+0x453f 007810 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4540 007811 setarg l2cap_hid_control_channel 
+0x4541 007812 isub rega ,null 
+0x4542 007813 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x4543 007814 setarg l2cap_hid_interrupt_channel 
+0x4544 007815 isub rega ,null 
+0x4545 007816 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+0x4546 007817 increase 2 ,contr 
+0x4547 007818 ifetch 2 ,contr 
+0x4548 007819 iforce null 
+0x4549 007820 branch l2cap_process_one_signal_rtn 
+:      007821 l2cap_proc_signal_config_rsp_sdp:
+0x454a 007822 fetch 1 ,mem_sdp_state 
+0x454b 007823 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x454c 007824 store 1 ,mem_sdp_state 
+0x454d 007825 branch l2cap_process_one_signal_rtn 
+:      007826 l2cap_proc_signal_config_rsp_rfcomm:
+0x454e 007827 fetch 1 ,mem_rfcomm_state 
+0x454f 007828 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4550 007829 store 1 ,mem_rfcomm_state 
+0x4551 007830 branch l2cap_process_one_signal_rtn 
+:      007831 l2cap_proc_signal_config_rsp_hid_ctrl:
+0x4552 007832 fetch 1 ,mem_hid_control_state 
+0x4553 007833 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4554 007834 store 1 ,mem_hid_control_state 
+0x4555 007835 branch l2cap_process_one_signal_rtn 
+:      007836 l2cap_proc_signal_config_rsp_hid_int:
+0x4556 007837 fetch 1 ,mem_hid_interrupt_state 
+0x4557 007838 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4558 007839 store 1 ,mem_hid_interrupt_state 
+0x4559 007840 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x455a 007841 branch ui_ipc_send_event 
+:      007845 l2cap_proc_signal_disconnect_req:
+0x455b 007846 ifetch 1 ,contr 
+0x455c 007847 copy pdata ,queue 
+0x455d 007848 ifetch 2 ,contr 
+0x455e 007849 copy pdata ,rega 
+0x455f 007850 copy regc ,pdata 
+0x4560 007851 isub rega ,regc 
+0x4561 007852 ifetch 2 ,contr 
+0x4562 007853 copy pdata ,rega 
+0x4563 007854 ifetch 2 ,contr 
+0x4564 007855 copy pdata ,timeup 
+0x4565 007856 copy rega ,temp 
+0x4566 007857 call save_cont_pointers 
+0x4567 007858 set0 mark_ext_patch ,mark 
+0x4568 007859 bpatch patch1c_2 ,mem_patch1c 
+0x4569 007860 setarg l2cap_sdp_channel 
+0x456a 007861 isub temp ,null 
+0x456b 007862 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+0x456c 007863 setarg l2cap_rfcomm_channel 
+0x456d 007864 isub temp ,null 
+0x456e 007865 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+0x456f 007866 setarg l2cap_hid_control_channel 
+0x4570 007867 isub temp ,null 
+0x4571 007868 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+0x4572 007869 setarg l2cap_hid_interrupt_channel 
+0x4573 007870 isub temp ,null 
+0x4574 007871 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+0x4575 007872 call l2cap_reject_command 
+0x4576 007873 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007874 l2cap_proc_signal_disconnect_req_hid_ctrl:
+0x4577 007875 copy timeup ,temp 
+0x4578 007876 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4579 007877 isub temp ,null 
+0x457a 007878 branch l2cap_disconnect_hid_control_now ,zero 
+0x457b 007879 call l2cap_reject_command 
+0x457c 007880 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007881 l2cap_proc_signal_disconnect_req_hid_int:
+0x457d 007882 copy timeup ,temp 
+0x457e 007883 fetch 2 ,mem_hid_int_remote_cid 
+0x457f 007884 isub temp ,null 
+0x4580 007885 branch l2cap_disconnect_hid_interrupt_now ,zero 
+0x4581 007886 call l2cap_reject_command 
+0x4582 007887 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007889 l2cap_proc_signal_disconnect_req_sdp:
+0x4583 007890 copy timeup ,temp 
+0x4584 007891 fetch 2 ,mem_sdp_remote_cid 
+0x4585 007892 isub temp ,null 
+0x4586 007893 branch l2cap_disconnect_sdp_now ,zero 
+0x4587 007894 call l2cap_reject_command 
+0x4588 007895 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007896 l2cap_disconnect_hid_control_now:
+0x4589 007897 call l2cap_reset_hid_ctrl_state 
+0x458a 007898 branch l2cap_send_disconnect_rsp_pkt 
+:      007899 l2cap_disconnect_hid_interrupt_now:
+0x458b 007900 call l2cap_reset_hid_int_state 
+0x458c 007901 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x458d 007902 branch l2cap_send_disconnect_rsp_pkt ,blank 
+0x458e 007910 branch l2cap_send_disconnect_rsp_pkt 
+:      007912 l2cap_disconnect_sdp_now:
+0x458f 007913 call l2cap_reset_sdp_channel_state 
+0x4590 007914 fetch 1 ,mem_upper_sm_ss 
+0x4591 007915 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+0x4592 007918 branch l2cap_send_disconnect_rsp_pkt 
+:      007919 l2cap_proc_signal_disconnect_req_rfcomm:
+0x4593 007920 copy timeup ,temp 
+0x4594 007921 fetch 2 ,mem_rfcomm_remote_cid 
+0x4595 007922 isub temp ,null 
+0x4596 007923 branch l2cap_disconnect_rfcomm_now ,zero 
+0x4597 007924 call l2cap_reject_command 
+0x4598 007925 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007926 l2cap_disconnect_rfcomm_now:
+0x4599 007927 call l2cap_reset_rfcomm_channel_state 
+0x459a 007928 branch l2cap_send_disconnect_rsp_pkt 
+:      007929 l2cap_send_disconnect_rsp_pkt:
+0x459b 007930 call load_cont_pointers 
+0x459c 007931 setarg signal_disconnect_rsp 
+0x459d 007932 istore 1 ,contw 
+0x459e 007933 copy queue ,pdata 
+0x459f 007934 istore 1 ,contw 
+0x45a0 007935 setarg 0x0004 
+0x45a1 007936 istore 2 ,contw 
+0x45a2 007937 copy rega ,pdata 
+0x45a3 007938 istore 2 ,contw 
+0x45a4 007939 copy timeup ,pdata 
+0x45a5 007940 istore 2 ,contw 
+0x45a6 007941 force 8 ,pdata 
+0x45a7 007942 branch l2cap_proc_signal_disconnect_req_rtn 
+:      007943 l2cap_proc_signal_disconnect_req_err_rtn:
+0x45a8 007944 call load_cont_pointers 
+0x45a9 007945 branch l2cap_proc_signal_disconnect_req_rtn 
+:      007946 l2cap_proc_signal_disconnect_req_rtn:
+0x45aa 007947 iadd regb ,regb 
+0x45ab 007948 branch l2cap_process_one_signal_rtn 
+:      007949 l2cap_proc_signal_disconnect_rsp:
+0x45ac 007950 ifetch 1 ,contr 
+0x45ad 007951 copy pdata ,queue 
+0x45ae 007952 ifetch 2 ,contr 
+0x45af 007953 copy pdata ,rega 
+0x45b0 007954 copy regc ,pdata 
+0x45b1 007955 isub rega ,regc 
+0x45b2 007956 ifetch 2 ,contr 
+0x45b3 007957 copy pdata ,timeup 
+0x45b4 007958 ifetch 2 ,contr 
+0x45b5 007959 copy pdata ,temp 
+0x45b6 007960 call save_cont_pointers 
+0x45b7 007961 set0 mark_ext_patch ,mark 
+0x45b8 007962 bpatch patch1c_3 ,mem_patch1c 
+0x45b9 007963 setarg l2cap_sdp_channel 
+0x45ba 007964 isub temp ,null 
+0x45bb 007965 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+0x45bc 007966 setarg l2cap_rfcomm_channel 
+0x45bd 007967 isub temp ,null 
+0x45be 007968 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+0x45bf 007969 setarg l2cap_hid_control_channel 
+0x45c0 007970 isub temp ,null 
+0x45c1 007971 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+0x45c2 007972 setarg l2cap_hid_interrupt_channel 
+0x45c3 007973 isub temp ,null 
+0x45c4 007974 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+0x45c5 007975 call l2cap_reject_command 
+0x45c6 007976 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+:      007977 l2cap_proc_signal_disconnect_rsp_sdp:
+0x45c7 007978 copy temp ,rega 
+0x45c8 007979 copy timeup ,temp 
+0x45c9 007980 fetch 2 ,mem_sdp_remote_cid 
+0x45ca 007981 isub temp ,null 
+0x45cb 007982 call l2cap_reset_sdp_channel_state ,zero 
+0x45cc 007983 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      007984 l2cap_proc_signal_disconnect_rsp_rfcomm:
+0x45cd 007985 copy temp ,rega 
+0x45ce 007986 copy timeup ,temp 
+0x45cf 007987 fetch 2 ,mem_rfcomm_remote_cid 
+0x45d0 007988 isub temp ,null 
+0x45d1 007989 call l2cap_reset_rfcomm_channel_state ,zero 
+0x45d2 007990 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      007991 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+0x45d3 007992 copy temp ,rega 
+0x45d4 007993 copy timeup ,temp 
+0x45d5 007994 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x45d6 007995 isub temp ,null 
+0x45d7 007996 call l2cap_reset_hid_ctrl_state ,zero 
+0x45d8 007997 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      007998 l2cap_proc_signal_disconnect_rsp_hid_int:
+0x45d9 007999 copy temp ,rega 
+0x45da 008000 copy timeup ,temp 
+0x45db 008001 fetch 2 ,mem_hid_int_remote_cid 
+0x45dc 008002 isub temp ,null 
+0x45dd 008003 call l2cap_reset_hid_int_state ,zero 
+0x45de 008004 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      008005 l2cap_proc_signal_disconnect_rsp_rtn:
+0x45df 008006 call load_cont_pointers 
+0x45e0 008007 branch l2cap_process_one_signal_rtn 
+:      008008 l2cap_proc_signal_disconnect_rsp_err_rtn:
+0x45e1 008009 branch l2cap_process_one_signal_rtn 
+:      008012 l2cap_proc_signal_echo_req:
+0x45e2 008013 ifetch 1 ,contr 
+0x45e3 008014 copy pdata ,queue 
+0x45e4 008015 ifetch 2 ,contr 
+0x45e5 008016 copy pdata ,rega 
+0x45e6 008017 iadd contr ,contr 
+0x45e7 008018 setarg 9 
+0x45e8 008019 istore 1 ,contw 
+0x45e9 008020 copy queue ,pdata 
+0x45ea 008021 istore 1 ,contw 
+0x45eb 008022 force 0x0000 ,pdata 
+0x45ec 008023 istore 2 ,contw 
+0x45ed 008024 force 4 ,pdata 
+0x45ee 008025 iadd regb ,regb 
+0x45ef 008026 copy regc ,pdata 
+0x45f0 008027 isub rega ,regc 
+0x45f1 008028 branch l2cap_process_one_signal_rtn 
+:      008029 l2cap_proc_signal_echo_rsp:
+0x45f2 008030 branch l2cap_process_one_signal_rtn 
+:      008032 l2cap_proc_signal_info_rsp:
+0x45f3 008033 branch l2cap_process_one_signal_rtn 
+:      008034 l2cap_reject_command:
+0x45f4 008035 force 0 ,regb 
+0x45f5 008036 call l2cap_get_signal_tx_payload 
+0x45f6 008037 setarg signal_cmd_reject 
+0x45f7 008038 istore 1 ,contw 
+0x45f8 008039 copy queue ,pdata 
+0x45f9 008040 istore 1 ,contw 
+0x45fa 008041 setarg 2 
+0x45fb 008042 istore 2 ,contw 
+0x45fc 008043 setarg cmd_not_understood 
+0x45fd 008044 istore 2 ,contw 
+0x45fe 008045 increase 6 ,regb 
+0x45ff 008046 arg 4 ,regc 
+0x4600 008047 branch l2cap_process_one_signal_rtn 
+:      008051 l2cap_reset_rfcomm_channel_state:
+0x4601 008052 setarg 0 
+0x4602 008053 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4603 008054 store 2 ,mem_rfcomm_remote_cid 
+0x4604 008055 jam 0 ,mem_rfcomm_state 
+0x4605 008056 rtn 
+:      008057 l2cap_reset_sdp_channel_state:
+0x4606 008058 setarg 0 
+0x4607 008059 store 2 ,mem_sdp_tx_pkt_length 
+0x4608 008060 store 2 ,mem_sdp_remote_cid 
+0x4609 008061 jam 0 ,mem_sdp_state 
+0x460a 008062 rtn 
+:      008063 l2cap_reset_hid_ctrl_state:
+0x460b 008064 setarg 0 
+0x460c 008065 store 2 ,mem_hid_ctrl_remote_cid 
+0x460d 008066 jam 0 ,mem_hid_control_state 
+0x460e 008067 fetch 1 ,mem_hid_interrupt_state 
+0x460f 008068 beq 0 ,l2cap_reset_hid_disconnected 
+0x4610 008069 rtn 
+:      008071 l2cap_reset_hid_int_state:
+0x4611 008072 setarg 0 
+0x4612 008073 store 2 ,mem_hid_int_remote_cid 
+0x4613 008074 jam 0 ,mem_hid_interrupt_state 
+0x4614 008075 fetch 1 ,mem_hid_control_state 
+0x4615 008076 beq 0 ,l2cap_reset_hid_disconnected 
+0x4616 008077 rtn 
+:      008079 l2cap_reset_hid_disconnected:
+0x4617 008080 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+0x4618 008081 branch ui_ipc_send_event 
+:      008083 l2cap_disconnect_interrupt_req:
+0x4619 008084 fetch 1 ,mem_control_tasks 
+0x461a 008085 set0 l2cap_disconnect_interrupt ,pdata 
+0x461b 008086 store 1 ,mem_control_tasks 
+0x461c 008087 fetch 2 ,mem_hid_int_remote_cid 
+0x461d 008088 rtn blank 
+0x461e 008089 call l2cap_malloc_signal_channel 
+0x461f 008090 fetch 2 ,mem_hid_int_remote_cid 
+0x4620 008091 copy pdata ,rega 
+0x4621 008092 force l2cap_hid_interrupt_channel ,regb 
+0x4622 008093 branch l2cap_generate_disconnect_req 
+:      008094 l2cap_disconnect_control_req:
+0x4623 008095 fetch 1 ,mem_control_tasks 
+0x4624 008096 set0 l2cap_disconnect_control ,pdata 
+0x4625 008097 store 1 ,mem_control_tasks 
+0x4626 008098 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4627 008099 rtn blank 
+0x4628 008100 call l2cap_malloc_signal_channel 
+0x4629 008101 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x462a 008102 copy pdata ,rega 
+0x462b 008103 force l2cap_hid_control_channel ,regb 
+:      008104 l2cap_generate_disconnect_req:
+0x462c 008105 call l2cap_get_req_id 
+0x462d 008106 call l2cap_get_signal_tx_payload 
+0x462e 008107 force signal_disconnect_req ,pdata 
+0x462f 008108 istore 1 ,contw 
+0x4630 008109 fetch 1 ,mem_ml2cap_comm_id 
+0x4631 008110 istore 1 ,contw 
+0x4632 008111 setarg 0x0004 
+0x4633 008112 istore 2 ,contw 
+0x4634 008113 copy rega ,pdata 
+0x4635 008114 istore 2 ,contw 
+0x4636 008115 copy regb ,pdata 
+0x4637 008116 istore 2 ,contw 
+0x4638 008117 force 0x08 ,temp 
+0x4639 008118 branch ml2cap_send_signal 
+:      008120 ml2cap_send_signal_connect_req:
+0x463a 008121 set0 mark_ext_patch ,mark 
+0x463b 008122 bpatch patch1c_4 ,mem_patch1c 
+0x463c 008123 call l2cap_get_req_id 
+0x463d 008124 call l2cap_get_signal_tx_payload 
+0x463e 008125 setarg signal_connect_req 
+0x463f 008126 istore 1 ,contw 
+0x4640 008127 fetch 1 ,mem_ml2cap_comm_id 
+0x4641 008128 istore 1 ,contw 
+0x4642 008129 setarg 0x0004 
+0x4643 008130 istore 2 ,contw 
+0x4644 008131 copy temp ,pdata 
+0x4645 008132 istore 2 ,contw 
+0x4646 008133 copy timeup ,pdata 
+0x4647 008134 istore 2 ,contw 
+0x4648 008135 arg 8 ,temp 
+0x4649 008136 branch ml2cap_send_signal 
+:      008137 ml2cap_send_signal_config_req:
+0x464a 008138 set0 mark_ext_patch ,mark 
+0x464b 008139 bpatch patch1c_5 ,mem_patch1c 
+0x464c 008140 call l2cap_get_req_id 
+0x464d 008141 call l2cap_get_signal_tx_payload 
+0x464e 008142 setarg signal_config_req 
+0x464f 008143 istore 1 ,contw 
+0x4650 008144 fetch 1 ,mem_ml2cap_comm_id 
+0x4651 008145 istore 1 ,contw 
+0x4652 008146 setarg 0x0008 
+0x4653 008147 istore 2 ,contw 
+0x4654 008149 copy temp ,pdata 
+0x4655 008151 istore 2 ,contw 
+0x4656 008152 setarg 0x0000 
+0x4657 008153 istore 2 ,contw 
+0x4658 008154 setarg 0x01 
+0x4659 008155 istore 1 ,contw 
+0x465a 008156 setarg 0x02 
+0x465b 008157 istore 1 ,contw 
+0x465c 008158 setarg l2cap_config_mtu_rfcomm 
+0x465d 008159 istore 2 ,contw 
+0x465e 008160 arg 0xc ,temp 
+0x465f 008161 branch ml2cap_send_signal 
+:      008162 ml2cap_send_signal_disconn_req:
+0x4660 008163 set0 mark_ext_patch ,mark 
+0x4661 008164 bpatch patch1c_6 ,mem_patch1c 
+0x4662 008165 call l2cap_get_req_id 
+0x4663 008166 call l2cap_get_signal_tx_payload 
+0x4664 008167 setarg signal_disconnect_req 
+0x4665 008168 istore 1 ,contw 
+0x4666 008169 fetch 1 ,mem_ml2cap_comm_id 
+0x4667 008170 increase 1 ,pdata 
+0x4668 008171 copy contw ,rega 
+0x4669 008172 store 1 ,mem_ml2cap_comm_id 
+0x466a 008173 copy rega ,contw 
+0x466b 008174 istore 1 ,contw 
+0x466c 008175 setarg 0x0004 
+0x466d 008176 istore 2 ,contw 
+0x466e 008177 copy temp ,pdata 
+0x466f 008178 istore 2 ,contw 
+0x4670 008179 copy timeup ,pdata 
+0x4671 008180 istore 2 ,contw 
+0x4672 008181 arg 0x8 ,temp 
+:      008184 ml2cap_send_signal:
+0x4673 008185 storet 2 ,mem_l2cap_signal_tx_length 
+0x4674 008186 copy temp ,pdata 
+0x4675 008187 branch l2cap_malloc_discard ,blank 
+0x4676 008188 call l2cap_get_signal_tx_buff 
+0x4677 008189 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4678 008190 istore 2 ,contw 
+0x4679 008191 force l2cap_signal_channel ,pdata 
+0x467a 008192 istore 2 ,contw 
+0x467b 008193 rtn 
+:      008195 msdp_send_req_done:
+0x467c 008196 fetch 2 ,mem_sdp_tx_pkt_length 
+0x467d 008197 branch assert ,blank 
+0x467e 008198 call l2cap_get_sdp_tx_buff 
+0x467f 008199 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4680 008200 istore 2 ,contw 
+0x4681 008201 fetch 2 ,mem_sdp_remote_cid 
+0x4682 008202 istore 2 ,contw 
+0x4683 008203 rtn 
+:      008204 ml2cap_rx_multiplexing:
+0x4684 008205 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4685 008206 branch l2cap_rx_reset_state ,blank 
+0x4686 008207 set0 mark_ext_patch ,mark 
+0x4687 008208 bpatch patch1c_7 ,mem_patch1c 
+0x4688 008209 fetch 1 ,mem_l2cap_rx_cid 
+0x4689 008210 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+0x468a 008211 beq l2cap_sdp_channel ,ml2cap_call_proc_sdp 
+0x468b 008212 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x468c 008213 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x468d 008214 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x468e 008215 branch l2cap_rx_reset_state 
+:      008217 ml2cap_call_proc_signal:
+0x468f 008218 set0 mark_ext_patch ,mark 
+0x4690 008219 bpatch patch1d_0 ,mem_patch1d 
+0x4691 008220 call l2cap_malloc_signal_channel 
+0x4692 008221 force 0 ,regb 
+0x4693 008222 call l2cap_get_signal_tx_payload 
+0x4694 008223 copy pdata ,contw 
+0x4695 008224 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4696 008225 copy pdata ,regc 
+0x4697 008226 fetch 2 ,mem_l2cap_payload_ptr 
+0x4698 008227 iforce contr 
+:      008228 ml2cap_proc_one_comm_loop:
+0x4699 008229 call ml2cap_proc_one_comm 
+0x469a 008230 increase -4 ,regc 
+0x469b 008231 nbranch ml2cap_proc_one_comm_loop ,zero 
+0x469c 008232 copy regb ,temp 
+0x469d 008233 call ml2cap_send_signal 
+0x469e 008234 branch l2cap_rx_reset_state 
+:      008236 ml2cap_proc_one_comm:
+0x469f 008237 ifetch 1 ,contr 
+0x46a0 008238 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+0x46a1 008239 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+0x46a2 008240 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+0x46a3 008241 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+0x46a4 008242 beq signal_config_req ,ml2cap_proc_signal_config_req 
+0x46a5 008243 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+0x46a6 008244 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+0x46a7 008245 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x46a8 008246 beq signal_info_req ,ml2cap_proc_signal_info_req 
+0x46a9 008247 branch ml2cap_proc_send_reject 
+:      008249 ml2cap_proc_signal_connect_req:
+0x46aa 008250 call save_cont_pointers 
+0x46ab 008252 call load_cont_pointers 
+0x46ac 008253 branch l2cap_proc_signal_connect_req 
+:      008254 ml2cap_proc_signal_cmd_reject:
+0x46ad 008255 ifetch 1 ,contr 
+0x46ae 008256 copy pdata ,queue 
+0x46af 008257 ifetch 2 ,contr 
+0x46b0 008258 copy pdata ,rega 
+0x46b1 008259 copy regc ,pdata 
+0x46b2 008260 isub rega ,regc 
+:      008261 mvptr:
+0x46b3 008262 ifetch 1 ,contr 
+0x46b4 008263 increase -1 ,rega 
+0x46b5 008264 nbranch mvptr ,zero 
+0x46b6 008265 rtn 
+:      008266 ml2cap_proc_signal_connect_rsp:
+0x46b7 008267 ifetch 1 ,contr 
+0x46b8 008268 copy pdata ,queue 
+0x46b9 008269 ifetch 2 ,contr 
+0x46ba 008270 copy pdata ,rega 
+0x46bb 008271 ifetch 2 ,contr 
+0x46bc 008272 copy pdata ,timeup 
+0x46bd 008273 ifetch 2 ,contr 
+0x46be 008274 copy pdata ,temp 
+0x46bf 008275 ifetch 2 ,contr 
+0x46c0 008276 sub pdata ,0 ,null 
+0x46c1 008277 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+0x46c2 008278 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+0x46c3 008279 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+0x46c4 008280 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+:      008281 ml2cap_proc_signal_connect_refused_result:
+0x46c5 008282 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+0x46c6 008283 call ui_ipc_send_event 
+:      008284 ml2cap_proc_signal_connect_rsp_mnosucc:
+0x46c7 008285 ifetch 2 ,contr 
+0x46c8 008286 branch mnosucc 
+:      008287 ml2cap_proc_signal_connect_rsp_sucessful:
+0x46c9 008288 call save_cont_pointers 
+0x46ca 008292 set0 mark_ext_patch ,mark 
+0x46cb 008293 bpatch patch1d_1 ,mem_patch1d 
+0x46cc 008294 setarg l2cap_sdp_channel 
+0x46cd 008295 isub temp ,null 
+0x46ce 008296 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+0x46cf 008297 setarg l2cap_rfcomm_channel 
+0x46d0 008298 isub temp ,null 
+0x46d1 008299 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x46d2 008300 setarg l2cap_hid_interrupt_channel 
+0x46d3 008301 isub temp ,null 
+0x46d4 008302 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x46d5 008303 setarg l2cap_hid_control_channel 
+0x46d6 008304 isub temp ,null 
+0x46d7 008305 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x46d8 008306 branch mnosucc 
+:      008307 ml2cap_proc_signal_connect_rsp_sdp:
+0x46d9 008308 copy timeup ,pdata 
+0x46da 008309 store 2 ,mem_sdp_remote_cid 
+0x46db 008310 fetch 1 ,mem_sdp_state 
+0x46dc 008311 set1 l2cap_channel_state_conn_res 
+0x46dd 008312 store 1 ,mem_sdp_state 
+0x46de 008313 branch mnosucc1 
+:      008314 ml2cap_proc_signal_connect_rsp_rfcomm:
+0x46df 008315 copy timeup ,pdata 
+0x46e0 008316 store 2 ,mem_rfcomm_remote_cid 
+0x46e1 008317 fetch 1 ,mem_rfcomm_state 
+0x46e2 008318 set1 l2cap_channel_state_conn_res 
+0x46e3 008319 store 1 ,mem_rfcomm_state 
+0x46e4 008320 branch mnosucc1 
+:      008321 ml2cap_proc_signal_connect_rsp_hid_ctrl:
+0x46e5 008322 copy timeup ,pdata 
+0x46e6 008323 store 2 ,mem_hid_ctrl_remote_cid 
+0x46e7 008324 fetch 1 ,mem_hid_control_state 
+0x46e8 008325 set1 l2cap_channel_state_conn_res 
+0x46e9 008326 store 1 ,mem_hid_control_state 
+0x46ea 008327 branch mnosucc1 
+:      008328 ml2cap_proc_signal_connect_rsp_hid_int:
+0x46eb 008329 copy timeup ,pdata 
+0x46ec 008330 store 2 ,mem_hid_int_remote_cid 
+0x46ed 008331 fetch 1 ,mem_hid_interrupt_state 
+0x46ee 008332 set1 l2cap_channel_state_conn_res 
+0x46ef 008333 store 1 ,mem_hid_interrupt_state 
+:      008336 mnosucc1:
+0x46f0 008337 call load_cont_pointers 
+:      008338 mnosucc:
+0x46f1 008339 copy regc ,pdata 
+0x46f2 008340 isub rega ,regc 
+0x46f3 008341 rtn 
+:      008343 ml2cap_proc_signal_config_rsp:
+0x46f4 008344 ifetch 1 ,contr 
+0x46f5 008345 copy pdata ,queue 
+0x46f6 008346 ifetch 2 ,contr 
+0x46f7 008347 copy pdata ,rega 
+0x46f8 008348 copy regc ,pdata 
+0x46f9 008349 isub rega ,regc 
+0x46fa 008350 ifetch 2 ,contr 
+0x46fb 008351 copy pdata ,timeup 
+0x46fc 008352 ifetch 2 ,contr 
+0x46fd 008353 ifetch 2 ,contr 
+0x46fe 008354 nbranch mcrsdone1 ,blank 
+0x46ff 008355 call save_cont_pointers 
+0x4700 008359 copy timeup ,temp 
+0x4701 008360 set0 mark_ext_patch ,mark 
+0x4702 008361 bpatch patch1d_2 ,mem_patch1d 
+0x4703 008362 setarg l2cap_sdp_channel 
+0x4704 008363 isub temp ,null 
+0x4705 008364 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+0x4706 008365 setarg l2cap_rfcomm_channel 
+0x4707 008366 isub temp ,null 
+0x4708 008367 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4709 008368 setarg l2cap_hid_control_channel 
+0x470a 008369 isub temp ,null 
+0x470b 008370 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x470c 008371 setarg l2cap_hid_interrupt_channel 
+0x470d 008372 isub temp ,null 
+0x470e 008373 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+:      008374 ml2cap_proc_signal_config_rsp_sdp:
+0x470f 008375 fetch 1 ,mem_sdp_state 
+0x4710 008376 set1 l2cap_channel_state_rcv_cfg_res 
+0x4711 008377 store 1 ,mem_sdp_state 
+0x4712 008378 rtn 
+:      008379 ml2cap_proc_signal_config_rsp_rfcomm:
+0x4713 008380 fetch 1 ,mem_rfcomm_state 
+0x4714 008381 set1 l2cap_channel_state_rcv_cfg_res 
+0x4715 008382 store 1 ,mem_rfcomm_state 
+0x4716 008383 rtn 
+:      008384 ml2cap_proc_signal_config_rsp_hid_ctrl:
+0x4717 008385 fetch 1 ,mem_hid_control_state 
+0x4718 008386 set1 l2cap_channel_state_rcv_cfg_res 
+0x4719 008387 store 1 ,mem_hid_control_state 
+0x471a 008388 rtn 
+:      008389 ml2cap_proc_signal_config_rsp_hid_int:
+0x471b 008390 fetch 1 ,mem_hid_interrupt_state 
+0x471c 008391 set1 l2cap_channel_state_rcv_cfg_res 
+0x471d 008392 store 1 ,mem_hid_interrupt_state 
+0x471e 008393 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x471f 008394 branch ui_ipc_send_event 
+:      008397 mcfrsdone:
+0x4720 008398 call load_cont_pointers 
+:      008399 mcrsdone1:
+0x4721 008400 increase -6 ,rega 
+:      008401 mloop2:
+0x4722 008402 branch mcrsdone ,zero 
+0x4723 008403 increase 1 ,contr 
+0x4724 008404 increase -1 ,rega 
+0x4725 008405 branch mloop2 
+:      008406 mcrsdone:
+0x4726 008407 rtn 
+:      008408 ml2cap_proc_signal_config_req:
+0x4727 008409 ifetch 1 ,contr 
+0x4728 008410 copy pdata ,queue 
+0x4729 008411 ifetch 2 ,contr 
+0x472a 008412 copy pdata ,rega 
+0x472b 008413 copy regc ,pdata 
+0x472c 008414 isub rega ,regc 
+0x472d 008415 ifetch 2 ,contr 
+0x472e 008416 increase 2 ,contr 
+0x472f 008417 copy pdata ,temp 
+0x4730 008418 setarg signal_config_rsp 
+0x4731 008419 istore 1 ,contw 
+0x4732 008420 copy queue ,pdata 
+0x4733 008421 istore 1 ,contw 
+0x4734 008422 increase 2 ,rega 
+0x4735 008423 copy rega ,pdata 
+0x4736 008424 istore 2 ,contw 
+0x4737 008425 call save_cont_pointers 
+0x4738 008426 set0 mark_ext_patch ,mark 
+0x4739 008427 bpatch patch1d_3 ,mem_patch1d 
+0x473a 008428 setarg l2cap_sdp_channel 
+0x473b 008429 isub temp ,null 
+0x473c 008430 branch ml2cap_proc_signal_config_req_sdp ,zero 
+0x473d 008431 setarg l2cap_rfcomm_channel 
+0x473e 008432 isub temp ,null 
+0x473f 008433 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+0x4740 008434 setarg l2cap_hid_control_channel 
+0x4741 008435 isub temp ,null 
+0x4742 008436 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x4743 008437 setarg l2cap_hid_interrupt_channel 
+0x4744 008438 isub temp ,null 
+0x4745 008439 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+0x4746 008440 branch mcfgrq_done 
+:      008441 ml2cap_proc_signal_config_req_sdp:
+0x4747 008442 fetch 1 ,mem_sdp_state 
+0x4748 008443 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4749 008444 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x474a 008445 store 1 ,mem_sdp_state 
+0x474b 008446 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+0x474c 008447 fetcht 1 ,mem_control_tasks 
+0x474d 008448 set1 l2cap_init_config_req ,temp 
+0x474e 008449 storet 1 ,mem_control_tasks 
+0x474f 008450 copy queue ,pdata 
+0x4750 008451 increase 1 ,pdata 
+0x4751 008452 store 1 ,mem_config_identifier 
+0x4752 008453 fetch 1 ,mem_sdp_state 
+0x4753 008454 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4754 008455 store 1 ,mem_sdp_state 
+:      008456 ml2cap_proc_signal_config_req_sdp_nsndreq:
+0x4755 008457 fetch 2 ,mem_sdp_remote_cid 
+0x4756 008458 store 2 ,mem_config_req_dest_cid 
+0x4757 008459 branch mcfgrq_done 
+:      008460 ml2cap_proc_signal_config_req_rfcomm:
+0x4758 008461 fetch 1 ,mem_rfcomm_state 
+0x4759 008462 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x475a 008463 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x475b 008464 store 1 ,mem_rfcomm_state 
+0x475c 008465 fetch 2 ,mem_rfcomm_remote_cid 
+0x475d 008466 branch mcfgrq_done 
+:      008467 ml2cap_proc_signal_config_req_hid_ctrl:
+0x475e 008468 fetch 1 ,mem_hid_control_state 
+0x475f 008469 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4760 008470 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4761 008471 store 1 ,mem_hid_control_state 
+0x4762 008472 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4763 008473 branch mcfgrq_done 
+:      008474 ml2cap_proc_signal_config_req_hid_int:
+0x4764 008475 fetch 1 ,mem_hid_interrupt_state 
+0x4765 008476 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4766 008477 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4767 008478 store 1 ,mem_hid_interrupt_state 
+0x4768 008479 fetch 2 ,mem_hid_int_remote_cid 
+:      008482 mcfgrq_done:
+0x4769 008483 copy pdata ,timeup 
+0x476a 008484 call load_cont_pointers 
+0x476b 008486 copy timeup ,pdata 
+0x476c 008488 istore 2 ,contw 
+0x476d 008489 force 0x0000 ,pdata 
+0x476e 008490 istore 2 ,contw 
+0x476f 008491 force 0x0000 ,pdata 
+0x4770 008492 istore 2 ,contw 
+0x4771 008493 force 10 ,pdata 
+0x4772 008494 iadd regb ,regb 
+0x4773 008495 increase -6 ,rega 
+:      008496 mloop1:
+0x4774 008497 branch mcrqdone ,zero 
+0x4775 008498 ifetch 1 ,contr 
+0x4776 008499 istore 1 ,contw 
+0x4777 008500 increase 1 ,regb 
+0x4778 008501 increase -1 ,rega 
+0x4779 008502 branch mloop1 
+:      008503 mcrqdone:
+0x477a 008504 rtn 
+:      008505 ml2cap_proc_signal_disconn_req:
+0x477b 008506 ifetch 1 ,contr 
+0x477c 008507 copy pdata ,queue 
+0x477d 008508 ifetch 2 ,contr 
+0x477e 008509 copy pdata ,rega 
+0x477f 008510 copy regc ,pdata 
+0x4780 008511 isub rega ,regc 
+0x4781 008513 ifetch 2 ,contr 
+0x4782 008514 copy pdata ,rega 
+0x4783 008515 ifetch 2 ,contr 
+0x4784 008516 copy pdata ,timeup 
+0x4785 008517 call save_cont_pointers 
+0x4786 008518 set0 mark_ext_patch ,mark 
+0x4787 008519 bpatch patch1d_4 ,mem_patch1d 
+0x4788 008520 setarg l2cap_sdp_channel 
+0x4789 008521 copy rega ,temp 
+0x478a 008522 isub temp ,null 
+0x478b 008523 branch ml2cap_proc_signal_disconn_sdp ,zero 
+0x478c 008524 setarg l2cap_hid_control_channel 
+0x478d 008525 copy rega ,temp 
+0x478e 008526 isub temp ,null 
+0x478f 008527 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+0x4790 008528 setarg l2cap_hid_interrupt_channel 
+0x4791 008529 copy rega ,temp 
+0x4792 008530 isub temp ,null 
+0x4793 008531 branch ml2cap_proc_signal_disconn_hid_int ,zero 
+0x4794 008532 branch mclsrfc 
+:      008533 ml2cap_proc_signal_disconn_sdp:
+0x4795 008534 setarg 0x0000 
+0x4796 008535 store 2 ,mem_sdp_tx_pkt_length 
+0x4797 008536 store 2 ,mem_sdp_remote_cid 
+0x4798 008537 store 1 ,mem_sdp_state 
+0x4799 008538 branch mclssdp 
+:      008539 ml2cap_proc_signal_disconn_hid_ctrl:
+0x479a 008540 call l2cap_reset_hid_ctrl_state 
+0x479b 008541 branch mclssdp 
+:      008542 ml2cap_proc_signal_disconn_hid_int:
+0x479c 008543 call l2cap_reset_hid_int_state 
+0x479d 008549 branch mclssdp 
+:      008550 mclsrfc:
+0x479e 008551 setarg 0x0000 
+0x479f 008552 store 2 ,mem_rfcomm_tx_pkt_length 
+:      008553 mclssdp:
+0x47a0 008554 call load_cont_pointers 
+0x47a1 008555 setarg signal_disconnect_rsp 
+0x47a2 008556 istore 1 ,contw 
+0x47a3 008557 copy queue ,pdata 
+0x47a4 008558 istore 1 ,contw 
+0x47a5 008559 setarg 0x0004 
+0x47a6 008560 istore 2 ,contw 
+0x47a7 008561 copy rega ,pdata 
+0x47a8 008562 istore 2 ,contw 
+0x47a9 008563 copy timeup ,pdata 
+0x47aa 008564 istore 2 ,contw 
+0x47ab 008565 force 8 ,pdata 
+0x47ac 008566 iadd regb ,regb 
+0x47ad 008567 rtn 
+:      008569 ml2cap_proc_signal_disconn_rsp:
+0x47ae 008570 ifetch 1 ,contr 
+0x47af 008571 copy pdata ,queue 
+0x47b0 008572 ifetch 2 ,contr 
+0x47b1 008573 copy pdata ,rega 
+0x47b2 008574 ifetch 2 ,contr 
+0x47b3 008575 copy pdata ,timeup 
+0x47b4 008576 ifetch 2 ,contr 
+0x47b5 008577 copy pdata ,temp 
+0x47b6 008578 call save_cont_pointers 
+0x47b7 008579 set0 mark_ext_patch ,mark 
+0x47b8 008580 bpatch patch1d_5 ,mem_patch1d 
+0x47b9 008581 fetch 1 ,mem_ml2cap_comm_id 
+0x47ba 008582 icompare 0xff ,queue 
+0x47bb 008583 nbranch mdisdone ,true 
+0x47bc 008584 setarg l2cap_sdp_channel 
+0x47bd 008585 isub temp ,null 
+0x47be 008586 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+0x47bf 008587 setarg l2cap_rfcomm_channel 
+0x47c0 008588 isub temp ,null 
+0x47c1 008589 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+0x47c2 008590 branch mdisdone 
+:      008591 ml2cap_proc_signal_disconn_rsp_sdp:
+0x47c3 008592 jam 0 ,mem_sdp_remote_cid 
+0x47c4 008593 jam 0 ,mem_sdp_state 
+0x47c5 008594 branch mdisdone 
+:      008595 ml2cap_proc_signal_disconn_rsp_rfcomm:
+:      008598 mdisdone:
+0x47c6 008599 call load_cont_pointers 
+0x47c7 008600 copy regc ,pdata 
+0x47c8 008601 isub rega ,regc 
+0x47c9 008602 rtn 
+:      008604 ml2cap_proc_send_reject:
+0x47ca 008605 setarg signal_cmd_reject 
+0x47cb 008606 istore 1 ,contw 
+0x47cc 008607 ifetch 1 ,contr 
+0x47cd 008608 istore 1 ,contw 
+0x47ce 008609 setarg 0x0002 
+0x47cf 008610 istore 2 ,contw 
+0x47d0 008611 setarg 0x0000 
+0x47d1 008612 istore 2 ,contw 
+0x47d2 008613 setarg 0x0006 
+0x47d3 008614 iadd regb ,regb 
+0x47d4 008615 force 4 ,regc 
+0x47d5 008616 rtn 
+:      008619 l2cap_get_req_id:
+0x47d6 008620 fetch 1 ,mem_ml2cap_comm_id 
+0x47d7 008621 increase 1 ,pdata 
+0x47d8 008622 bne 0 ,l2cap_get_req_id_ok 
+0x47d9 008623 increase 1 ,pdata 
+:      008624 l2cap_get_req_id_ok:
+0x47da 008625 store 1 ,mem_ml2cap_comm_id 
+0x47db 008626 rtn 
+:      008636 l2cap_malloc:
+0x47dc 008637 set0 mark_ext_patch ,mark 
+0x47dd 008638 bpatch patch1d_6 ,mem_patch1d 
+0x47de 008639 arg 0 ,regb 
+0x47df 008640 call l2cap_malloc_is_fifo_full 
+0x47e0 008641 nbranch assert ,blank 
+0x47e1 008642 call l2cap_malloc_get_full_map 
+0x47e2 008643 arg mem_tx_buff0 ,regb 
+0x47e3 008644 arg 0 ,queue 
+:      008645 l2cap_malloc_loop:
+0x47e4 008646 fetcht 1 ,mem_used_map 
+0x47e5 008647 qisolate1 temp 
+0x47e6 008648 branch l2cap_malloc_next ,true 
+0x47e7 008649 call l2cap_malloc_enough 
+0x47e8 008650 sub timeup ,0 ,null 
+0x47e9 008651 branch l2cap_malloc_next ,positive 
+0x47ea 008652 call l2cap_malloc_into_fifo 
+0x47eb 008653 branch l2cap_malloc_rtn 
+:      008654 l2cap_malloc_next:
+0x47ec 008655 increase 128 ,regb 
+0x47ed 008656 increase 1 ,queue 
+0x47ee 008657 setarg 8 
+0x47ef 008658 isub queue ,null 
+0x47f0 008659 branch l2cap_malloc_loop ,positive 
+0x47f1 008660 arg 0 ,regb 
+:      008661 l2cap_malloc_rtn:
+0x47f2 008662 copy regb ,pdata 
+0x47f3 008663 branch assert ,blank 
+0x47f4 008664 rtn 
+:      008672 l2cap_malloc_fifo_out:
+0x47f5 008673 set0 mark_ext_patch ,mark 
+0x47f6 008674 bpatch patch1d_7 ,mem_patch1d 
+0x47f7 008675 call l2cap_malloc_fifo_get_first_ptr 
+0x47f8 008676 increase 1 ,contr 
+0x47f9 008677 ifetch 2 ,contr 
+0x47fa 008678 rtn 
+:      008684 l2cap_malloc_free:
+0x47fb 008685 set0 mark_ext_patch ,mark 
+0x47fc 008686 bpatch patch1e_0 ,mem_patch1e 
+0x47fd 008687 call l2cap_malloc_fifo_get_first_ptr 
+0x47fe 008688 copy contr ,contw 
+0x47ff 008689 copy contr ,temp 
+0x4800 008690 setarg 0 
+0x4801 008691 istore 3 ,contw 
+0x4802 008692 rtn 
+:      008697 l2cap_malloc_discard:
+0x4803 008698 set0 mark_ext_patch ,mark 
+0x4804 008699 bpatch patch1e_1 ,mem_patch1e 
+0x4805 008700 call l2cap_malloc_is_fifo_empty 
+0x4806 008701 branch assert ,blank 
+0x4807 008702 fetch 3 ,mem_tx_fifo2 
+0x4808 008703 store 3 ,mem_tx_fifo3 
+0x4809 008704 fetch 3 ,mem_tx_fifo1 
+0x480a 008705 store 3 ,mem_tx_fifo2 
+0x480b 008706 fetch 3 ,mem_tx_fifo0 
+0x480c 008707 store 3 ,mem_tx_fifo1 
+0x480d 008708 rtn 
+:      008714 l2cap_malloc_is_fifo_full:
+0x480e 008715 set0 mark_ext_patch ,mark 
+0x480f 008716 bpatch patch1e_2 ,mem_patch1e 
+0x4810 008717 fetch 3 ,mem_tx_fifo0 
+0x4811 008718 rtn 
+:      008724 l2cap_malloc_is_fifo_nearly_full:
+0x4812 008725 set0 mark_ext_patch ,mark 
+0x4813 008726 bpatch patch1e_3 ,mem_patch1e 
+0x4814 008727 fetch 3 ,mem_tx_fifo1 
+0x4815 008728 rtn 
+:      008734 l2cap_malloc_is_fifo_empty:
+0x4816 008735 set0 mark_ext_patch ,mark 
+0x4817 008736 bpatch patch1e_4 ,mem_patch1e 
+0x4818 008737 fetch 3 ,mem_tx_fifo3 
+0x4819 008738 rtn 
+:      008743 l2cap_malloc_fifo_get_first_ptr:
+0x481a 008744 call l2cap_malloc_is_fifo_empty 
+0x481b 008745 branch assert ,blank 
+0x481c 008746 arg mem_tx_fifo0 ,contr 
+:      008747 l2cap_malloc_free_loop:
+0x481d 008748 ifetch 3 ,contr 
+0x481e 008749 branch l2cap_malloc_free_loop ,blank 
+0x481f 008750 increase -3 ,contr 
+0x4820 008751 rtn 
+:      008758 l2cap_malloc_get_full_map:
+0x4821 008759 set0 mark_ext_patch ,mark 
+0x4822 008760 bpatch patch1e_5 ,mem_patch1e 
+0x4823 008761 arg 4 ,loopcnt 
+0x4824 008762 arg mem_tx_fifo0_map ,contr 
+0x4825 008763 arg 0 ,temp 
+:      008764 l2cap_malloc_get_full_map_loop:
+0x4826 008765 ifetch 3 ,contr 
+0x4827 008766 and pdata ,0xff ,pdata 
+0x4828 008767 ior temp ,temp 
+0x4829 008768 loop l2cap_malloc_get_full_map_loop 
+0x482a 008769 storet 1 ,mem_used_map 
+0x482b 008770 rtn 
+:      008778 l2cap_malloc_into_fifo:
+0x482c 008779 set0 mark_ext_patch ,mark 
+0x482d 008780 bpatch patch1e_6 ,mem_patch1e 
+0x482e 008781 call l2cap_malloc_is_fifo_full 
+0x482f 008782 nbranch assert ,blank 
+0x4830 008783 call l2cap_malloc_is_fifo_empty 
+0x4831 008784 branch l2cap_malloc_into_fifo_no_push ,blank 
+0x4832 008785 fetch 3 ,mem_tx_fifo1 
+0x4833 008786 store 3 ,mem_tx_fifo0 
+0x4834 008787 ifetch 3 ,contr 
+0x4835 008788 istore 3 ,contw 
+0x4836 008789 ifetch 3 ,contr 
+0x4837 008790 istore 3 ,contw 
+0x4838 008791 setarg 0 
+0x4839 008792 istore 3 ,contw 
+:      008793 l2cap_malloc_into_fifo_no_push:
+0x483a 008794 arg 0 ,temp 
+0x483b 008795 copy timeup ,pdata 
+0x483c 008796 iadd queue ,pdata 
+:      008797 l2cap_malloc_into_fifo_loop:
+0x483d 008798 qset1 temp 
+0x483e 008799 increase 1 ,queue 
+0x483f 008800 isub queue ,null 
+0x4840 008801 nbranch l2cap_malloc_into_fifo_loop ,zero 
+0x4841 008803 lshift8 regb ,pdata 
+0x4842 008804 ior temp ,pdata 
+0x4843 008805 store 3 ,mem_tx_fifo3 
+0x4844 008806 rtn 
+:      008816 l2cap_malloc_enough:
+0x4845 008817 set0 mark_ext_patch ,mark 
+0x4846 008818 bpatch patch1e_7 ,mem_patch1e 
+0x4847 008819 call l2cap_malloc_get_full_map 
+0x4848 008820 copy queue ,regc 
+0x4849 008821 arg 0 ,temp 
+0x484a 008822 arg 0 ,timeup 
+:      008824 l2cap_malloc_enough_loop:
+0x484b 008825 copy queue ,pdata 
+0x484c 008826 beq 8 ,l2cap_malloc_enough_end 
+0x484d 008827 fetch 1 ,mem_used_map 
+0x484e 008828 qisolate1 pdata 
+0x484f 008829 branch l2cap_malloc_enough_end ,true 
+0x4850 008830 increase 128 ,temp 
+0x4851 008831 increase 1 ,queue 
+0x4852 008832 copy rega ,pdata 
+0x4853 008833 isub temp ,null 
+0x4854 008834 branch l2cap_malloc_enough_end ,zero 
+0x4855 008835 branch l2cap_malloc_enough_loop ,positive 
+:      008836 l2cap_malloc_enough_end:
+0x4856 008837 copy temp ,pdata 
+0x4857 008838 isub rega ,null 
+0x4858 008839 nbranch l2cap_malloc_enough_rtn ,positive 
+0x4859 008840 copy queue ,pdata 
+0x485a 008841 copy regc ,temp 
+0x485b 008842 isub temp ,timeup 
+:      008843 l2cap_malloc_enough_rtn:
+0x485c 008844 copy regc ,queue 
+0x485d 008845 rtn 
+:      008848 l2cap_malloc_signal_channel:
+0x485e 008849 set0 mark_ext_patch ,mark 
+0x485f 008850 bpatch patch1f_0 ,mem_patch1f 
+0x4860 008851 arg l2cap_signal_malloc_size ,rega 
+0x4861 008852 call l2cap_malloc 
+0x4862 008853 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4863 008854 increase 4 ,pdata 
+0x4864 008855 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x4865 008856 setarg 0 
+0x4866 008857 store 2 ,mem_l2cap_signal_tx_length 
+0x4867 008858 rtn 
+:      008860 l2cap_get_signal_tx_buff:
+0x4868 008861 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4869 008862 branch l2cap_util_pdata_to_contw 
+:      008864 l2cap_get_signal_tx_payload:
+0x486a 008865 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x486b 008866 branch l2cap_util_pdata_to_contw 
+:      008869 l2cap_malloc_sdp_channel:
+0x486c 008870 set0 mark_ext_patch ,mark 
+0x486d 008871 bpatch patch1f_1 ,mem_patch1f 
+0x486e 008872 arg sdp_malloc_size ,rega 
+0x486f 008873 call l2cap_malloc 
+0x4870 008874 store 2 ,mem_sdp_tx_buff_ptr 
+0x4871 008875 increase 4 ,pdata 
+0x4872 008876 store 2 ,mem_sdp_tx_payload_ptr 
+0x4873 008877 setarg 0 
+0x4874 008878 store 2 ,mem_sdp_tx_pkt_length 
+0x4875 008879 rtn 
+:      008881 l2cap_get_sdp_tx_buff:
+0x4876 008882 fetch 2 ,mem_sdp_tx_buff_ptr 
+0x4877 008883 branch l2cap_util_pdata_to_contw 
+:      008885 l2cap_get_sdp_tx_payload:
+0x4878 008886 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x4879 008887 branch l2cap_util_pdata_to_contw 
+:      008890 l2cap_malloc_rfcomm_channel:
+0x487a 008891 set0 mark_ext_patch ,mark 
+0x487b 008892 bpatch patch1f_2 ,mem_patch1f 
+0x487c 008893 call push_stack 
+0x487d 008894 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+0x487e 008895 call l2cap_malloc_is_fifo_full 
+0x487f 008896 nrtn blank 
+0x4880 008897 arg rfcomm_malloc_size ,rega 
+0x4881 008898 call l2cap_malloc 
+0x4882 008899 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x4883 008900 increase 4 ,pdata 
+0x4884 008901 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x4885 008902 setarg 0 
+0x4886 008903 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4887 008904 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x4888 008905 branch pop_stack 
+:      008907 l2cap_get_rfcomm_tx_buff:
+0x4889 008908 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x488a 008909 branch l2cap_util_pdata_to_contw 
+:      008911 l2cap_util_pdata_to_contw:
+0x488b 008912 branch assert ,blank 
+0x488c 008913 copy pdata ,contw 
+0x488d 008914 rtn 
+:      008917 l2cap_lpm_save_calc_len:
+0x488e 008918 set0 mark_ext_patch ,mark 
+0x488f 008919 bpatch patch1f_3 ,mem_patch1f 
+0x4890 008920 arg 0 ,regb 
+0x4891 008921 arg mem_tx_fifo0_map ,rega 
+0x4892 008922 increase -2 ,rega 
+:      008923 l2cap_lpm_save_calc_len_loop:
+0x4893 008924 increase 2 ,rega 
+0x4894 008925 setarg mem_tx_fifo_end 
+0x4895 008926 isub rega ,null 
+0x4896 008927 branch l2cap_lpm_save_calc_len_end ,zero 
+0x4897 008928 ifetch 1 ,rega 
+0x4898 008929 increase 1 ,rega 
+0x4899 008930 branch l2cap_lpm_save_calc_len_loop ,blank 
+0x489a 008931 ifetcht 2 ,rega 
+0x489b 008932 ifetch 2 ,temp 
+0x489c 008933 iadd regb ,regb 
+0x489d 008934 increase 4 ,regb 
+0x489e 008935 branch l2cap_lpm_save_calc_len_loop 
+:      008936 l2cap_lpm_save_calc_len_end:
+0x489f 008937 copy regb ,pdata 
+0x48a0 008938 rtn 
+:      008941 l2cap_lpm_get_wake_lock:
+0x48a1 008942 arg wake_lock_l2cap_tx ,queue 
+0x48a2 008943 branch lpm_get_wake_lock 
+:      008945 l2cap_lpm_put_wake_lock:
+0x48a3 008946 arg wake_lock_l2cap_tx ,queue 
+0x48a4 008947 branch lpm_put_wake_lock 
+:      008949 l2cap_lpm_save_txbuf:
+0x48a5 008950 set0 mark_ext_patch ,mark 
+0x48a6 008951 bpatch patch1f_4 ,mem_patch1f 
+0x48a7 008952 call l2cap_malloc_get_full_map 
+0x48a8 008953 fetch 1 ,mem_used_map 
+0x48a9 008954 rtn blank 
+0x48aa 008955 call l2cap_lpm_save_calc_len 
+0x48ab 008956 arg l2cap_lpm_txbuf_len ,temp 
+0x48ac 008957 isub temp ,null 
+0x48ad 008958 branch l2cap_lpm_get_wake_lock ,positive 
+0x48ae 008959 call l2cap_lpm_put_wake_lock 
+0x48af 008960 arg mem_l2cap_lpm_txbuf ,contw 
+0x48b0 008961 arg mem_tx_fifo0 ,rega 
+:      008962 l2cap_lpm_save_txbuf_loop:
+0x48b1 008963 setarg mem_tx_fifo_end 
+0x48b2 008964 isub rega ,null 
+0x48b3 008965 rtn zero 
+0x48b4 008966 ifetch 1 ,rega 
+0x48b5 008967 increase 1 ,rega 
+0x48b6 008968 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+0x48b7 008969 istore 2 ,contw 
+0x48b8 008970 increase 2 ,rega 
+0x48b9 008971 branch l2cap_lpm_save_txbuf_loop 
+:      008972 l2cap_lpm_save_txbuf_nempty:
+0x48ba 008973 ifetch 2 ,rega 
+0x48bb 008974 increase 2 ,rega 
+0x48bc 008975 copy pdata ,contr 
+0x48bd 008976 ifetch 2 ,contr 
+0x48be 008977 istore 2 ,contw 
+0x48bf 008978 copy pdata ,loopcnt 
+0x48c0 008979 increase 2 ,loopcnt 
+0x48c1 008980 call memcpy 
+0x48c2 008981 branch l2cap_lpm_save_txbuf_loop 
+:      008983 l2cap_lpm_load_txbuf:
+0x48c3 008984 set0 mark_ext_patch ,mark 
+0x48c4 008985 bpatch patch1f_5 ,mem_patch1f 
+0x48c5 008986 call l2cap_malloc_get_full_map 
+0x48c6 008987 fetch 1 ,mem_used_map 
+0x48c7 008988 rtn blank 
+0x48c8 008989 arg mem_tx_fifo0_ptr ,rega 
+0x48c9 008990 increase -3 ,rega 
+0x48ca 008991 arg mem_l2cap_lpm_txbuf ,contr 
+:      008992 l2cap_lpm_load_txbuf_loop:
+0x48cb 008993 increase 3 ,rega 
+0x48cc 008994 setarg mem_tx_fifo_end + 1 
+0x48cd 008995 isub rega ,null 
+0x48ce 008996 rtn zero 
+0x48cf 008997 ifetch 2 ,contr 
+0x48d0 008998 branch l2cap_lpm_load_txbuf_loop ,blank 
+0x48d1 008999 increase 4 ,pdata 
+0x48d2 009000 copy pdata ,loopcnt 
+0x48d3 009001 copy contr ,regb 
+0x48d4 009002 ifetch 2 ,rega 
+0x48d5 009003 copy pdata ,contw 
+0x48d6 009004 copy regb ,contr 
+0x48d7 009005 increase -2 ,contr 
+0x48d8 009006 call memcpy 
+0x48d9 009007 branch l2cap_lpm_load_txbuf_loop 
+:      009017 le_secure_connection_enable:
+0x48da 009018 fetch 1 ,mem_le_pres_auth 
+0x48db 009019 set1 le_auth_secure_connection_pairing_bit ,pdata 
+0x48dc 009020 store 1 ,mem_le_pres_auth 
+0x48dd 009021 rtn 
+:      009022 le_secure_connection_disable:
+0x48de 009023 fetch 1 ,mem_le_pres_auth 
+0x48df 009024 set0 le_auth_secure_connection_pairing_bit ,pdata 
+0x48e0 009025 store 1 ,mem_le_pres_auth 
+0x48e1 009026 rtn 
+:      009029 le_init_conn:
+0x48e2 009030 set0 mark_ext_patch ,mark 
+0x48e3 009031 bpatch patch1f_6 ,mem_patch1f 
+0x48e4 009032 disable wake 
+0x48e5 009033 jam 1 ,mem_le_conn_handle 
+0x48e6 009034 jam 3 ,mem_le_state 
+0x48e7 009035 jam 1 ,mem_le_arq 
+0x48e8 009036 setarg -1 
+0x48e9 009037 store 2 ,mem_le_event_count 
+0x48ea 009038 force 0 ,pdata 
+0x48eb 009039 store 1 ,mem_le_ch 
+0x48ec 009040 store 1 ,mem_le_op 
+0x48ed 009041 store 3 ,mem_sniff_rcv 
+0x48ee 009042 store 3 ,mem_sniff_lost 
+0x48ef 009043 store 5 ,mem_le_pcnt_tx 
+0x48f0 009044 set1 39 ,pdata 
+0x48f1 009045 store 5 ,mem_le_pcnt_rx 
+0x48f2 009046 jam 1 ,mem_le_txheader 
+0x48f3 009047 jam 0 ,mem_le_txlen 
+0x48f4 009048 branch le_supervision_flush 
+:      009050 le_init_master:
+0x48f5 009051 set0 mark_ext_patch ,mark 
+0x48f6 009052 bpatch patch1f_7 ,mem_patch1f 
+0x48f7 009053 enable master 
+0x48f8 009054 jam lemode_master ,mem_le_mode 
+0x48f9 009055 jam 1 ,mem_le_att_handle 
+0x48fa 009056 jam 1 ,mem_le_search_handle_start 
+0x48fb 009057 setarg 0xffff 
+0x48fc 009058 store 2 ,mem_le_search_handle_end 
+0x48fd 009059 force 0 ,pdata 
+0x48fe 009060 store 5 ,mem_le_pcnt_rx 
+0x48ff 009061 set1 39 ,pdata 
+0x4900 009062 store 5 ,mem_le_pcnt_tx 
+0x4901 009063 branch le_init_conn 
+:      009066 le_init_slave:
+0x4902 009067 set1 mark_ext_patch ,mark 
+0x4903 009068 bpatch patch20_0 ,mem_patch20 
+0x4904 009069 disable master 
+0x4905 009070 jam lemode_slave ,mem_le_mode 
+0x4906 009071 jam 0 ,mem_le_adv_enable 
+0x4907 009072 jam 0 ,mem_lpm_current_mult 
+0x4908 009073 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4909 009074 jam flag_le_enc_null ,mem_le_enc_state 
+0x490a 009075 fetch 2 ,mem_le_superto 
+0x490b 009076 store 2 ,mem_le_init_superto 
+0x490c 009077 fetch 2 ,mem_le_tsniff 
+0x490d 009078 mul32 pdata ,5 ,pdata 
+0x490e 009079 rshift4 pdata ,pdata 
+0x490f 009080 store 2 ,mem_le_superto 
+0x4910 009081 branch le_init_conn 
+:      009087 le_dispatch:
+0x4911 009088 call le_enable 
+0x4912 009089 call le_scan 
+0x4913 009090 call le_adv 
+0x4914 009091 branch le_disable 
+:      009093 le_conn_dispatch:
+0x4915 009094 set1 mark_ext_patch ,mark 
+0x4916 009095 bpatch patch20_1 ,mem_patch20 
+0x4917 009096 call le_enable 
+0x4918 009097 call app_process_ble 
+0x4919 009098 fetch 1 ,mem_le_mode 
+0x491a 009099 beq lemode_master ,le_master_dispatch 
+0x491b 009100 branch le_slave_dispatch 
+:      009106 le_master_dispatch:
+0x491c 009107 set1 mark_ext_patch ,mark 
+0x491d 009108 bpatch patch20_2 ,mem_patch20 
+0x491e 009109 enable master 
+0x491f 009110 call le_supervision_update 
+0x4920 009111 branch le_master_disconn ,positive 
+0x4921 009112 call check_ble_disabled 
+0x4922 009113 call le_setup 
+0x4923 009114 call le_prepare_tx 
+0x4924 009115 disable match 
+0x4925 009116 call le_transmit_receive_sifs 
+0x4926 009117 nrtn match 
+0x4927 009118 set1 mark_ext_patch ,mark 
+0x4928 009119 bpatch patch20_3 ,mem_patch20 
+0x4929 009120 fetch 1 ,mem_le_conn_rcv 
+0x492a 009121 increase 1 ,pdata 
+0x492b 009122 store 1 ,mem_le_conn_rcv 
+0x492c 009123 call le_acknowledge 
+0x492d 009124 disable master 
+0x492e 009125 rtn 
+:      009127 le_master_disconn:
+0x492f 009128 call le_disconnect 
+0x4930 009129 disable master 
+0x4931 009130 rtn 
+:      009135 le_slave_dispatch:
+0x4932 009136 set1 mark_ext_patch ,mark 
+0x4933 009137 bpatch patch20_4 ,mem_patch20 
+0x4934 009138 call sp_calc_sequence_256 
+0x4935 009139 call le_secure_connect_sm 
+0x4936 009140 disable attempt 
+0x4937 009141 call le_supervision_update 
+0x4938 009142 branch le_slave_disconn ,positive 
+0x4939 009143 call check_ble_disabled 
+0x493a 009144 call le_setup 
+0x493b 009145 call le_receive_slave 
+0x493c 009146 nbranch le_slave_unsync ,sync 
+0x493d 009147 call le_got_first_packet 
+0x493e 009148 branch le_slave_match ,match 
+0x493f 009149 branch le_slave_transmit_last 
+:      009152 le_slave_match:
+0x4940 009153 set1 mark_ext_patch ,mark 
+0x4941 009154 bpatch patch20_5 ,mem_patch20 
+0x4942 009155 call le_got_first_packet 
+0x4943 009156 call le_acknowledge 
+0x4944 009157 call le_prepare_tx 
+0x4945 009158 fetch 1 ,mem_le_rxbuf 
+0x4946 009159 bbit1 md ,le_slave_more_data 
+0x4947 009160 call le_xtype_fifo_is_empty 
+0x4948 009161 nbranch le_slave_more_data ,blank 
+:      009162 le_slave_transmit_last:
+0x4949 009163 set1 mark_ext_patch ,mark 
+0x494a 009164 bpatch patch20_6 ,mem_patch20 
+0x494b 009165 call le_transmit_norx 
+:      009166 le_slave_cont:
+0x494c 009167 call check_51cmd 
+0x494d 009168 fetch 1 ,mem_le_op 
+0x494e 009169 bbit1 op_disconn ,le_slave_disconn 
+:      009170 le_slave_unsync:
+0x494f 009171 set1 mark_ext_patch ,mark 
+0x4950 009172 bpatch patch20_7 ,mem_patch20 
+0x4951 009173 call le_lpm_set_mult 
+0x4952 009174 call le_update_channel_map 
+0x4953 009175 call le_update_param 
+0x4954 009176 branch calc_clke_offset 
+:      009178 le_slave_more_data:
+0x4955 009179 set1 mark_ext_patch ,mark 
+0x4956 009180 bpatch patch21_0 ,mem_patch21 
+0x4957 009181 enable attempt 
+0x4958 009182 call le_transmit_receive_sifs 
+0x4959 009183 branch le_slave_match ,match 
+0x495a 009184 branch le_slave_cont 
+:      009186 le_slave_disconn:
+:      009189 le_disconnect:
+0x495b 009190 set1 mark_ext_patch ,mark 
+0x495c 009191 bpatch patch21_1 ,mem_patch21 
+:      009192 le_disconnect0:
+0x495d 009193 call le_clear_connection_info 
+0x495e 009194 call app_disconn_reason_collect_ble 
+0x495f 009195 call sp_initialize_256 
+0x4960 009196 jam bt_evt_le_disconnected ,mem_fifo_temp 
+0x4961 009197 branch ui_ipc_send_event 
+:      009199 le_clear_connection_info:
+0x4962 009200 jam 0 ,mem_le_conn_handle 
+0x4963 009201 jam lemode_idle ,mem_le_mode 
+0x4964 009202 jam 0 ,mem_le_state 
+0x4965 009203 jam flag_le_enc_null ,mem_le_enc_state 
+0x4966 009204 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4967 009205 rtn 
+:      009207 le_got_first_packet:
+0x4968 009208 set1 mark_ext_patch ,mark 
+0x4969 009209 bpatch patch21_2 ,mem_patch21 
+0x496a 009210 fetch 1 ,mem_le_conn_rcv 
+0x496b 009211 increase 1 ,pdata 
+0x496c 009212 store 1 ,mem_le_conn_rcv 
+0x496d 009213 fetch 1 ,mem_le_state 
+0x496e 009214 rtnbit1 lestate_got_first_packet 
+0x496f 009215 set1 lestate_got_first_packet 
+0x4970 009216 store 1 ,mem_le_state 
+0x4971 009217 fetch 2 ,mem_le_init_superto 
+0x4972 009218 store 2 ,mem_le_superto 
+0x4973 009219 setarg 0 
+0x4974 009220 store 4 ,mem_le_transmit_window 
+0x4975 009221 rtn 
+:      009226 le_enable:
+0x4976 009227 set1 mark_ext_patch ,mark 
+0x4977 009228 bpatch patch21_3 ,mem_patch21 
+0x4978 009229 hjam 0x36 ,0x90f 
+0x4979 009230 hjam 0x5f ,0x90b 
+0x497a 009231 enable le 
+0x497b 009232 hjam 7 ,rfen_ulp 
+0x497c 009233 branch check_ble_disabled 
+:      009235 le_disable:
+0x497d 009236 set1 mark_ext_patch ,mark 
+0x497e 009237 bpatch patch21_4 ,mem_patch21 
+0x497f 009238 hjam 0x2e ,0x90f 
+0x4980 009239 hjam 0xff ,0x90b 
+0x4981 009240 disable le 
+0x4982 009241 hjam 3 ,rfen_ulp 
+0x4983 009242 arg 0 ,stop_watch 
+0x4984 009243 rtn 
+:      009245 le_prep:
+0x4985 009246 disable enable_crc 
+0x4986 009247 disable enable_white 
+0x4987 009248 fetch 3 ,mem_le_crcinit 
+0x4988 009249 iforce crc24_init 
+0x4989 009250 fetch 1 ,mem_le_ch_mapped 
+0x498a 009251 reverse pdata ,temp 
+0x498b 009252 set1 1 ,temp 
+0x498c 009253 rshift temp ,white_init 
+0x498d 009254 rtn 
+:      009257 lerx_setfreq:
+0x498e 009258 call le_setfreq 
+0x498f 009259 call set_freq_rx 
+0x4990 009260 setarg param_pll_setup 
+0x4991 009261 call sleep 
+0x4992 009262 branch rf_rx_enable 
+:      009264 letx_setfreq:
+0x4993 009265 branch txon ,match 
+:      009266 letx_setfreq0:
+0x4994 009267 call le_setfreq 
+0x4995 009268 branch set_freq_tx 
+:      009269 le_setfreq:
+0x4996 009270 set1 mark_ext_patch ,mark 
+0x4997 009271 bpatch patch21_5 ,mem_patch21 
+0x4998 009272 call set_sync_on 
+0x4999 009273 fetch 1 ,mem_le_testtype 
+0x499a 009274 nbranch le_ctf_test ,blank 
+0x499b 009275 fetch 1 ,mem_le_ch_mapped 
+0x499c 009276 sub pdata ,36 ,null 
+0x499d 009277 branch le_ctf_normal ,positive 
+0x499e 009278 force 0 ,temp 
+0x499f 009279 rtneq 37 
+0x49a0 009280 force 24 ,temp 
+0x49a1 009281 rtneq 38 
+0x49a2 009282 force 78 ,temp 
+0x49a3 009283 rtn 
+:      009285 le_ctf_normal:
+0x49a4 009286 sub pdata ,10 ,null 
+0x49a5 009287 branch le_ctf_low ,positive 
+0x49a6 009288 increase 1 ,pdata 
+:      009290 le_ctf_low:
+0x49a7 009291 lshift pdata ,pdata 
+0x49a8 009292 add pdata ,2 ,temp 
+0x49a9 009293 rtn 
+:      009295 le_ctf_test:
+0x49aa 009296 fetch 1 ,mem_le_ch_mapped 
+0x49ab 009297 lshift pdata ,temp 
+0x49ac 009298 rtn 
+:      009300 le_sca_map:
+0x49ad 009301 arg 500 ,temp 
+0x49ae 009302 rtn blank 
+0x49af 009303 arg 250 ,temp 
+0x49b0 009304 rtneq 1 
+0x49b1 009305 arg 150 ,temp 
+0x49b2 009306 rtneq 2 
+0x49b3 009307 arg 100 ,temp 
+0x49b4 009308 rtneq 3 
+0x49b5 009309 arg 75 ,temp 
+0x49b6 009310 rtneq 4 
+0x49b7 009311 arg 50 ,temp 
+0x49b8 009312 rtneq 5 
+0x49b9 009313 arg 40 ,temp 
+0x49ba 009314 rtneq 6 
+0x49bb 009315 arg 20 ,temp 
+0x49bc 009316 rtn 
+:      009320 le_adv_access:
+0x49bd 009321 setarg 0x8e89be 
+0x49be 009322 lshift8 pdata ,pdata 
+0x49bf 009323 or_into 0xd6 ,pdata 
+0x49c0 009324 iforce access 
+0x49c1 009325 setarg 0x555555 
+0x49c2 009326 store 3 ,mem_le_crcinit 
+0x49c3 009327 rtn 
+:      009329 le_setup:
+0x49c4 009330 set1 mark_ext_patch ,mark 
+0x49c5 009331 bpatch patch21_6 ,mem_patch21 
+0x49c6 009332 enable swfine 
+0x49c7 009333 fetch 4 ,mem_le_access 
+0x49c8 009334 iforce access 
+0x49c9 009335 call le_map_channel 
+0x49ca 009336 setarg 0x200 
+0x49cb 009337 branch le_setup_master ,master 
+0x49cc 009338 fetch 2 ,mem_le_receive_window 
+0x49cd 009339 rshift pdata ,pdata 
+:      009340 le_setup_master:
+0x49ce 009341 arg param_pll_setup ,temp 
+0x49cf 009342 iadd temp ,pdata 
+0x49d0 009343 call ahead_window 
+0x49d1 009344 deposit clke 
+0x49d2 009345 store 6 ,mem_le_rxon_ts 
+0x49d3 009346 rtn 
+:      009348 le_next_adv_channel:
+0x49d4 009349 set1 mark_ext_patch ,mark 
+0x49d5 009350 bpatch patch21_7 ,mem_patch21 
+0x49d6 009351 fetch 1 ,mem_le_ch_mapped 
+0x49d7 009352 increase 1 ,pdata 
+0x49d8 009353 store 1 ,mem_le_ch_mapped 
+0x49d9 009354 rtnne 40 
+0x49da 009355 jam 37 ,mem_le_ch_mapped 
+0x49db 009356 rtn 
+:      009358 le_context_nexthop:
+0x49dc 009359 set1 mark_ext_patch ,mark 
+0x49dd 009360 bpatch patch22_0 ,mem_patch22 
+0x49de 009361 add rega ,coffset_mode ,contr 
+0x49df 009362 ifetch 1 ,contr 
+0x49e0 009363 rtnbit0 mode_le 
+0x49e1 009364 add rega ,coffset_le_event_cnt ,contw 
+0x49e2 009365 ifetch 2 ,contw 
+0x49e3 009366 increase 1 ,pdata 
+0x49e4 009367 istore 2 ,contw 
+0x49e5 009368 add rega ,coffset_le_hop ,contr 
+0x49e6 009369 ifetch 1 ,contr 
+0x49e7 009370 add rega ,coffset_le_ch ,contw 
+0x49e8 009371 ifetcht 1 ,contw 
+0x49e9 009372 iadd temp ,pdata 
+0x49ea 009373 sub pdata ,36 ,null 
+0x49eb 009374 branch le_nexthop_nowrap ,positive 
+0x49ec 009375 increase -37 ,pdata 
+:      009376 le_nexthop_nowrap:
+0x49ed 009377 istore 1 ,contw 
+0x49ee 009378 rtn 
+:      009381 le_calc_channel_map:
+0x49ef 009382 set1 mark_ext_patch ,mark 
+0x49f0 009383 bpatch patch22_1 ,mem_patch22 
+0x49f1 009384 fetch 5 ,mem_le_channel_map 
+0x49f2 009385 force 0 ,temp 
+0x49f3 009386 force 37 ,loopcnt 
+:      009387 le_count_channels_loop:
+0x49f4 009388 bbit0 0 ,le_count_channels_notused 
+0x49f5 009389 increase 1 ,temp 
+:      009390 le_count_channels_notused:
+0x49f6 009391 rshift pdata ,pdata 
+0x49f7 009392 loop le_count_channels_loop 
+0x49f8 009393 add temp ,-1 ,pdata 
+0x49f9 009394 store 1 ,mem_le_channels 
+0x49fa 009395 rtn 
+:      009397 le_map_channel:
+0x49fb 009398 set1 mark_ext_patch ,mark 
+0x49fc 009399 bpatch patch22_2 ,mem_patch22 
+0x49fd 009400 fetch 1 ,mem_le_ch 
+0x49fe 009401 iforce queue 
+0x49ff 009402 fetcht 5 ,mem_le_channel_map 
+0x4a00 009403 qisolate1 temp 
+0x4a01 009404 branch le_map_channel_end ,true 
+:      009405 le_map_channel_next:
+0x4a02 009406 set1 mark_ext_patch ,mark 
+0x4a03 009407 bpatch patch22_3 ,mem_patch22 
+0x4a04 009408 fetch 1 ,mem_le_channels 
+0x4a05 009409 isub queue ,pdata 
+0x4a06 009410 branch le_map_channel_cont ,positive 
+0x4a07 009411 sub pdata ,-1 ,queue 
+0x4a08 009412 branch le_map_channel_next 
+:      009413 le_map_channel_cont:
+0x4a09 009414 copy queue ,loopcnt 
+0x4a0a 009415 force 0 ,queue 
+:      009416 le_map_channel_loop:
+0x4a0b 009417 qisolate1 temp 
+0x4a0c 009418 branch le_map_channel_skip ,true 
+0x4a0d 009419 increase 1 ,loopcnt 
+:      009420 le_map_channel_skip:
+0x4a0e 009421 deposit loopcnt 
+0x4a0f 009422 branch le_map_channel_end ,blank 
+0x4a10 009423 increase 1 ,queue 
+0x4a11 009424 increase -1 ,loopcnt 
+0x4a12 009425 branch le_map_channel_loop 
+:      009426 le_map_channel_end:
+0x4a13 009427 deposit queue 
+0x4a14 009428 store 1 ,mem_le_ch_mapped 
+0x4a15 009429 rtn 
+:      009432 le_wait_tx:
+0x4a16 009433 branch le_wait_master ,master 
+0x4a17 009434 until null ,timeout 
+0x4a18 009435 rtn 
+:      009437 le_wait_master:
+0x4a19 009438 arg 0xea0 ,timeup 
+0x4a1a 009439 until clkn_rt ,meet 
+0x4a1b 009440 rtn 
+:      009442 le_receive_adv:
+0x4a1c 009443 disable swfine 
+0x4a1d 009444 fetch 2 ,mem_le_scan_window 
+0x4a1e 009445 copy pdata ,timeup 
+0x4a1f 009446 branch le_receive_packet 
+:      009449 le_receive_slave:
+0x4a20 009450 set1 mark_ext_patch ,mark 
+0x4a21 009451 bpatch patch22_4 ,mem_patch22 
+0x4a22 009452 enable swfine 
+0x4a23 009453 fetch 2 ,mem_le_receive_window 
+0x4a24 009454 fetcht 4 ,mem_le_transmit_window 
+0x4a25 009455 iadd temp ,timeup 
+:      009456 le_receive_packet:
+0x4a26 009457 call lerx_setfreq 
+:      009458 le_receive_rxon:
+0x4a27 009459 set1 mark_ext_patch ,mark 
+0x4a28 009460 bpatch patch22_5 ,mem_patch22 
+0x4a29 009461 call le_prep 
+0x4a2a 009462 disable match 
+0x4a2b 009463 enable decode_fec0 
+0x4a2c 009464 enable is_rx 
+0x4a2d 009465 disable is_tx 
+0x4a2e 009466 copy timeup ,stop_watch 
+0x4a2f 009467 correlate null ,timeout 
+0x4a30 009468 branch le_receive_on_attempt ,attempt 
+0x4a31 009469 copy clke ,temp 
+0x4a32 009470 storet 6 ,mem_sync_clke 
+:      009471 le_receive_on_attempt:
+0x4a33 009472 nbranch end_of_packet ,sync 
+0x4a34 009473 branch le_receive_skip ,attempt 
+0x4a35 009474 arg param_clke_cal_le ,clke_rt 
+0x4a36 009475 copy bt_clk ,clke_bt 
+0x4a37 009476 fetch 1 ,mem_le_state 
+0x4a38 009477 bbit0 lestate_got_first_packet ,le_receive_skip 
+0x4a39 009478 call lpm_adjust_clk ,wake 
+:      009479 le_receive_skip:
+0x4a3a 009480 set1 mark_ext_patch ,mark 
+0x4a3b 009481 bpatch patch22_6 ,mem_patch22 
+0x4a3c 009482 call save_rssi 
+0x4a3d 009483 enable enable_white 
+0x4a3e 009484 enable enable_crc 
+0x4a3f 009485 parse demod ,bucket ,8 
+0x4a40 009486 rshift3 pwindow ,pdata 
+0x4a41 009487 store 1 ,mem_le_rxbuf 
+0x4a42 009488 parse demod ,bucket ,8 
+0x4a43 009489 rshift3 pwindow ,pdata 
+0x4a44 009490 istore 1 ,contw 
+0x4a45 009491 and pdata ,0x3f ,loopcnt 
+0x4a46 009492 branch lerx_nopayload ,zero 
+:      009494 lerx_loop:
+0x4a47 009495 parse demod ,bucket ,8 
+0x4a48 009496 rshift3 pwindow ,pdata 
+0x4a49 009497 istore 1 ,contw 
+0x4a4a 009498 loop lerx_loop 
+:      009500 lerx_nopayload:
+0x4a4b 009501 set1 mark_ext_patch ,mark 
+0x4a4c 009502 bpatch patch22_7 ,mem_patch22 
+0x4a4d 009503 parse demod ,bucket ,24 
+0x4a4e 009504 enable swfine 
+0x4a4f 009505 arg param_sifs ,stop_watch 
+0x4a50 009506 rshift32 pdata ,pdata 
+0x4a51 009507 rshift16 pdata ,pdata 
+0x4a52 009508 istore 3 ,contw 
+0x4a53 009509 branch end_of_packet ,crc_failed 
+0x4a54 009510 enable match 
+0x4a55 009511 fetch 1 ,mem_last_freq 
+0x4a56 009512 add pdata ,0 ,rega 
+0x4a57 009513 call rf_write_freq 
+0x4a58 009514 disable decode_fec0 
+0x4a59 009515 branch set_sync_on 
+:      009517 le_transmit_receive_sifs:
+0x4a5a 009518 set1 mark_ext_patch ,mark 
+0x4a5b 009519 bpatch patch23_0 ,mem_patch23 
+0x4a5c 009520 call le_transmit 
+0x4a5d 009521 fetcht 1 ,mem_last_freq 
+0x4a5e 009522 call set_freq_rx 
+0x4a5f 009523 call rf_rx_enable 
+0x4a60 009524 enable swfine 
+0x4a61 009525 arg 5500 ,timeup 
+0x4a62 009526 branch le_receive_rxon 
+:      009528 le_transmit_norx:
+0x4a63 009529 call le_transmit 
+0x4a64 009530 branch end_of_packet 
+:      009532 le_transmit:
+0x4a65 009533 set1 mark_ext_patch ,mark 
+0x4a66 009534 bpatch patch23_1 ,mem_patch23 
+0x4a67 009535 call le_prep 
+0x4a68 009536 call letx_setfreq 
+0x4a69 009537 call le_transmit0 
+0x4a6a 009538 fetch 1 ,mem_device_option 
+0x4a6b 009539 beq dvc_op_module ,module_le_transmit 
+0x4a6c 009540 rtn 
+:      009541 le_transmit0:
+0x4a6d 009542 set1 txgfsk ,radio_ctrl 
+0x4a6e 009543 enable encode_fec0 
+0x4a6f 009544 enable is_tx 
+0x4a70 009545 disable is_rx 
+0x4a71 009546 call le_wait_tx 
+0x4a72 009547 rshift16 access ,pdata 
+0x4a73 009548 rshift8 pdata ,pdata 
+0x4a74 009549 rshift4 pdata ,pdata 
+0x4a75 009550 inject mod ,40 
+0x4a76 009551 enable enable_white 
+0x4a77 009552 enable enable_crc 
+0x4a78 009553 set1 mark_ext_patch ,mark 
+0x4a79 009554 bpatch patch23_2 ,mem_patch23 
+0x4a7a 009555 fetch 1 ,mem_le_txheader 
+0x4a7b 009556 inject mod ,8 
+0x4a7c 009557 ifetch 1 ,contr 
+0x4a7d 009558 and pdata ,0x3f ,loopcnt 
+0x4a7e 009559 inject mod ,8 
+0x4a7f 009560 branch letr_nopayload ,zero 
+:      009561 letr_loop:
+0x4a80 009562 ifetch 1 ,contr 
+0x4a81 009563 inject mod ,8 
+0x4a82 009564 loop letr_loop 
+:      009566 letr_nopayload:
+0x4a83 009567 enable enable_parity 
+0x4a84 009568 inject mod ,24 
+0x4a85 009569 disable enable_parity 
+0x4a86 009570 until null ,tx_clear 
+0x4a87 009571 nop 100 
+0x4a88 009572 disable encode_fec0 
+0x4a89 009573 rtn 
+:      009575 le_send_adv_ind:
+0x4a8a 009576 set1 mark_ext_patch ,mark 
+0x4a8b 009577 bpatch patch23_3 ,mem_patch23 
+0x4a8c 009578 fetch 1 ,mem_le_adv_type 
+0x4a8d 009579 beq adv_direct_ind ,le_send_adv_direct_ind 
+0x4a8e 009580 fetch 1 ,mem_le_adv_own_addr_type 
+0x4a8f 009581 lshift4 pdata ,pdata 
+0x4a90 009582 lshift2 pdata ,pdata 
+0x4a91 009583 store 1 ,mem_le_txheader 
+0x4a92 009584 fetcht 1 ,mem_le_adv_data_len 
+0x4a93 009585 add temp ,6 ,pdata 
+0x4a94 009586 store 1 ,mem_le_txlen 
+0x4a95 009587 fetch 6 ,mem_le_lap 
+0x4a96 009588 store 6 ,mem_le_txpayload 
+0x4a97 009589 copy temp ,loopcnt 
+0x4a98 009590 arg mem_le_adv_data ,contr 
+0x4a99 009591 call memcpy_fast 
+0x4a9a 009592 branch le_send_adv_transmit 
+:      009593 le_send_adv_direct_ind:
+0x4a9b 009594 fetcht 2 ,mem_le_notify_handle 
+0x4a9c 009595 call le_att_check_notification_enable 
+0x4a9d 009596 copy rega ,contw 
+0x4a9e 009597 setarg 1 
+0x4a9f 009598 istore 1 ,contw 
+0x4aa0 009599 fetch 1 ,mem_le_adv_direct_addr_type 
+0x4aa1 009600 lshift4 pdata ,pdata 
+0x4aa2 009601 lshift2 pdata ,pdata 
+0x4aa3 009602 increase 1 ,pdata 
+0x4aa4 009603 store 1 ,mem_le_txheader 
+0x4aa5 009604 setarg 12 
+0x4aa6 009605 store 1 ,mem_le_txlen 
+0x4aa7 009606 fetch 6 ,mem_le_lap 
+0x4aa8 009607 store 6 ,mem_le_txpayload 
+0x4aa9 009608 fetch 6 ,mem_hci_plap 
+0x4aaa 009609 istore 6 ,contw 
+:      009610 le_send_adv_transmit:
+0x4aab 009611 set1 mark_ext_patch ,mark 
+0x4aac 009612 bpatch patch23_4 ,mem_patch23 
+0x4aad 009613 fetch 1 ,mem_le_adv_transmit 
+0x4aae 009614 increase 1 ,pdata 
+0x4aaf 009615 store 1 ,mem_le_adv_transmit 
+0x4ab0 009616 arg 1800 ,stop_watch 
+0x4ab1 009617 disable match 
+0x4ab2 009618 branch le_transmit_receive_sifs 
+:      009620 le_send_scan_request:
+0x4ab3 009621 set1 mark_ext_patch ,mark 
+0x4ab4 009622 bpatch patch23_5 ,mem_patch23 
+0x4ab5 009623 fetch 1 ,mem_le_scan_type 
+0x4ab6 009624 rtnne le_scan_type_active ,pdata 
+0x4ab7 009625 fetch 1 ,mem_le_adv_transmit 
+0x4ab8 009626 increase 1 ,pdata 
+0x4ab9 009627 store 1 ,mem_le_adv_transmit 
+0x4aba 009628 arg 0x0c03 ,temp 
+0x4abb 009629 fetch 1 ,mem_le_scan_own_addr_type 
+0x4abc 009630 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4abd 009631 copy rega ,pdata 
+0x4abe 009632 nsetflag blank ,le_receiver_addr_bit ,temp 
+0x4abf 009633 storet 2 ,mem_le_txheader 
+0x4ac0 009634 fetch 6 ,mem_le_lap 
+0x4ac1 009635 istore 6 ,contw 
+0x4ac2 009636 fetch 6 ,mem_le_plap 
+0x4ac3 009637 istore 6 ,contw 
+0x4ac4 009638 branch le_transmit_receive_sifs 
+:      009641 le_send_scan_response:
+0x4ac5 009642 set1 mark_ext_patch ,mark 
+0x4ac6 009643 bpatch patch23_6 ,mem_patch23 
+0x4ac7 009644 arg scan_rsp ,temp 
+0x4ac8 009645 fetch 1 ,mem_le_adv_own_addr_type 
+0x4ac9 009646 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4aca 009647 storet 1 ,mem_le_txheader 
+0x4acb 009648 fetcht 1 ,mem_le_scan_data_len 
+0x4acc 009649 add temp ,6 ,pdata 
+0x4acd 009650 store 1 ,mem_le_txlen 
+0x4ace 009651 fetch 6 ,mem_le_lap 
+0x4acf 009652 store 6 ,mem_le_txpayload 
+0x4ad0 009653 arg mem_le_scan_data ,contr 
+0x4ad1 009654 copy temp ,loopcnt 
+0x4ad2 009655 call memcpy_fast 
+0x4ad3 009656 branch le_transmit_norx 
+:      009659 le_connect_request:
+0x4ad4 009660 set1 mark_ext_patch ,mark 
+0x4ad5 009661 bpatch patch23_7 ,mem_patch23 
+0x4ad6 009662 force -1 ,pdata 
+0x4ad7 009663 setsect 2 ,1 
+0x4ad8 009664 store 5 ,mem_le_channel_map 
+0x4ad9 009665 call le_calc_channel_map 
+0x4ada 009666 force 4 ,loopcnt 
+0x4adb 009667 arg mem_le_access ,contw 
+0x4adc 009668 call generate_random_loop 
+0x4add 009669 fetch 2 ,mem_le_conn_superto 
+0x4ade 009670 store 2 ,mem_le_superto 
+:      009671 le_con_req_hop_retry:
+0x4adf 009672 random pdata 
+0x4ae0 009673 and_into 0xf ,pdata 
+0x4ae1 009674 sub pdata ,4 ,null 
+0x4ae2 009675 branch le_con_req_hop_retry ,positive 
+0x4ae3 009676 store 1 ,mem_le_hop 
+0x4ae4 009677 store 1 ,mem_tmp1 
+0x4ae5 009678 set1 mark_ext_patch ,mark 
+0x4ae6 009679 bpatch patch24_0 ,mem_patch24 
+0x4ae7 009680 fetcht 2 ,mem_le_conn_interval 
+0x4ae8 009681 storet 2 ,mem_le_tsniff 
+0x4ae9 009682 copy temp ,regc 
+0x4aea 009683 add clkn_bt ,7 ,pdata 
+0x4aeb 009684 idiv regc 
+0x4aec 009685 call wait_div_end 
+0x4aed 009686 remainder rega 
+0x4aee 009687 isub rega ,pdata 
+0x4aef 009688 iadd regc ,pdata 
+0x4af0 009689 fetcht 2 ,mem_le_dsniff 
+0x4af1 009690 iadd temp ,pdata 
+0x4af2 009691 store 4 ,mem_le_anchor 
+0x4af3 009692 isub clkn_bt ,rega 
+0x4af4 009693 increase -6 ,rega 
+0x4af5 009694 arg 0x2205 ,regb 
+0x4af6 009695 fetch 1 ,mem_le_conn_own_addr_type 
+0x4af7 009696 nsetflag blank ,le_sender_addr_bit ,regb 
+0x4af8 009697 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4af9 009698 nsetflag blank ,le_receiver_addr_bit ,regb 
+0x4afa 009699 copy regb ,pdata 
+0x4afb 009700 store 2 ,mem_le_txheader 
+0x4afc 009701 fetch 6 ,mem_le_lap 
+0x4afd 009702 istore 6 ,contw 
+0x4afe 009703 fetch 6 ,mem_le_plap 
+0x4aff 009704 istore 6 ,contw 
+0x4b00 009705 fetch 4 ,mem_le_access 
+0x4b01 009706 istore 4 ,contw 
+0x4b02 009707 random pdata 
+0x4b03 009708 istore 2 ,contw 
+0x4b04 009709 random pdata 
+0x4b05 009710 istore 1 ,contw 
+0x4b06 009711 force 2 ,pdata 
+0x4b07 009712 istore 1 ,contw 
+0x4b08 009713 rshift2 rega ,pdata 
+0x4b09 009714 istore 2 ,contw 
+0x4b0a 009715 rshift2 regc ,pdata 
+0x4b0b 009716 istore 2 ,contw 
+0x4b0c 009717 set1 mark_ext_patch ,mark 
+0x4b0d 009718 bpatch patch24_1 ,mem_patch24 
+0x4b0e 009719 fetch 2 ,mem_le_conn_latency 
+0x4b0f 009720 istore 2 ,contw 
+0x4b10 009721 fetch 2 ,mem_le_conn_superto 
+0x4b11 009722 istore 2 ,contw 
+0x4b12 009723 fetch 5 ,mem_le_channel_map 
+0x4b13 009724 istore 5 ,contw 
+0x4b14 009725 fetch 1 ,mem_le_hop 
+0x4b15 009726 arg param_le_sca ,temp 
+0x4b16 009727 ior temp ,pdata 
+0x4b17 009728 istore 1 ,contw 
+0x4b18 009729 call le_transmit_norx 
+0x4b19 009730 setarg mem_le_txheader 
+0x4b1a 009731 add pdata ,18 ,contr 
+0x4b1b 009732 ifetch 3 ,contr 
+0x4b1c 009733 store 3 ,mem_le_crcinit 
+0x4b1d 009734 rtn 
+:      009736 le_init_adv:
+0x4b1e 009737 set1 mark_ext_patch ,mark 
+0x4b1f 009738 bpatch patch24_2 ,mem_patch24 
+0x4b20 009739 disable master 
+0x4b21 009740 branch le_adv_access 
+:      009744 le_update_param:
+0x4b22 009745 fetch 1 ,mem_le_state 
+0x4b23 009746 rtnbit0 lestate_update_param 
+0x4b24 009747 fetch 2 ,mem_le_event_count 
+0x4b25 009748 fetcht 2 ,mem_le_instant 
+0x4b26 009749 isub temp ,pdata 
+0x4b27 009750 nrtn positive 
+0x4b28 009751 set1 mark_ext_patch ,mark 
+0x4b29 009752 bpatch patch24_3 ,mem_patch24 
+0x4b2a 009753 fetch 1 ,mem_device_option 
+0x4b2b 009754 bne dvc_op_shutter ,le_update_param_common 
+0x4b2c 009755 jam 1 ,mem_lpm_mode 
+:      009756 le_update_param_common:
+0x4b2d 009757 fetch 1 ,mem_le_state 
+0x4b2e 009758 set0 lestate_update_param ,pdata 
+0x4b2f 009759 set0 lestate_got_first_packet ,pdata 
+0x4b30 009760 store 1 ,mem_le_state 
+0x4b31 009761 fetch 4 ,mem_le_anchor 
+0x4b32 009762 fetcht 2 ,mem_le_tsniff 
+0x4b33 009763 isub temp ,rega 
+0x4b34 009764 set1 mark_ext_patch ,mark 
+0x4b35 009765 bpatch patch24_4 ,mem_patch24 
+0x4b36 009766 fetch 1 ,mem_le_new_param 
+0x4b37 009767 store 1 ,mem_le_window_size 
+0x4b38 009768 ifetcht 2 ,contr 
+0x4b39 009769 ifetch 2 ,contr 
+0x4b3a 009770 lshift2 pdata ,pdata 
+0x4b3b 009771 store 2 ,mem_le_tsniff 
+0x4b3c 009772 lshift2 temp ,temp 
+0x4b3d 009773 iadd temp ,pdata 
+0x4b3e 009774 ifetcht 4 ,contr 
+0x4b3f 009775 storet 4 ,mem_le_slave_latency 
+0x4b40 009776 iadd rega ,pdata 
+0x4b41 009777 store 4 ,mem_le_anchor 
+0x4b42 009778 branch le_receive_window_size 
+:      009780 le_update_channel_map:
+0x4b43 009781 set1 mark_ext_patch ,mark 
+0x4b44 009782 bpatch patch24_5 ,mem_patch24 
+0x4b45 009783 fetch 1 ,mem_le_state 
+0x4b46 009784 rtnbit0 lestate_update_map 
+0x4b47 009785 fetch 2 ,mem_le_event_count 
+0x4b48 009786 fetcht 2 ,mem_le_instant 
+0x4b49 009787 isub temp ,pdata 
+0x4b4a 009788 nrtn positive 
+0x4b4b 009789 fetch 1 ,mem_le_state 
+0x4b4c 009790 set0 lestate_update_map ,pdata 
+0x4b4d 009791 store 1 ,mem_le_state 
+0x4b4e 009792 fetch 5 ,mem_le_new_map 
+0x4b4f 009793 store 5 ,mem_le_channel_map 
+0x4b50 009794 branch le_calc_channel_map 
+:      009797 le_acknowledge:
+0x4b51 009798 set1 mark_ext_patch ,mark 
+0x4b52 009799 bpatch patch24_6 ,mem_patch24 
+0x4b53 009800 call le_supervision_flush 
+0x4b54 009801 call le_check_wak 
+0x4b55 009802 fetch 1 ,mem_le_rxbuf 
+0x4b56 009803 rshift pdata ,pdata 
+0x4b57 009804 ixor temp ,pdata 
+0x4b58 009805 isolate1 nesn ,pdata 
+0x4b59 009806 setflag true ,mark_old_packet ,mark 
+0x4b5a 009807 fetch 1 ,mem_le_rxbuf + 1 
+0x4b5b 009808 branch le_ack_unenc ,blank 
+0x4b5c 009809 fetch 1 ,mem_le_state 
+0x4b5d 009810 bbit0 lestate_encryption ,le_ack_unenc 
+0x4b5e 009811 call load_sk 
+0x4b5f 009812 call le_decrypt 
+0x4b60 009813 nrtn blank 
+:      009814 le_ack_unenc:
+0x4b61 009815 rtnmark1 mark_old_packet 
+0x4b62 009816 fetcht 1 ,mem_le_arq 
+0x4b63 009817 setflip nesn ,temp 
+0x4b64 009818 storet 1 ,mem_le_arq 
+0x4b65 009819 branch le_parse 
+:      009821 le_check_wak:
+0x4b66 009822 set1 mark_ext_patch ,mark 
+0x4b67 009823 bpatch patch24_7 ,mem_patch24 
+0x4b68 009824 fetcht 1 ,mem_le_arq 
+0x4b69 009825 isolate0 wak ,temp 
+0x4b6a 009826 rtn true 
+0x4b6b 009827 fetch 1 ,mem_le_rxbuf 
+0x4b6c 009828 lshift pdata ,pdata 
+0x4b6d 009829 ixor temp ,pdata 
+0x4b6e 009830 rtnbit0 sn 
+0x4b6f 009831 set0 wak ,temp 
+0x4b70 009832 setflip sn ,temp 
+0x4b71 009833 storet 1 ,mem_le_arq 
+0x4b72 009834 compare 3 ,temp ,3 
+0x4b73 009835 nrtn true 
+0x4b74 009836 fetch 1 ,mem_le_txpayload 
+0x4b75 009837 beq ll_start_enc_req ,le_set_enc 
+0x4b76 009838 fetch 1 ,mem_le_enc_state 
+0x4b77 009839 beq flag_le_enc_pause ,le_clear_enc 
+0x4b78 009840 rtn 
+:      009843 le_set_enc:
+0x4b79 009844 fetch 1 ,mem_le_state 
+0x4b7a 009845 set1 lestate_encryption ,pdata 
+0x4b7b 009846 store 1 ,mem_le_state 
+0x4b7c 009847 rtn 
+:      009849 le_clear_enc:
+0x4b7d 009850 set1 mark_ext_patch ,mark 
+0x4b7e 009851 bpatch patch25_0 ,mem_patch25 
+0x4b7f 009852 jam flag_le_enc_null ,mem_le_enc_state 
+0x4b80 009853 arg 0 ,pdata 
+0x4b81 009854 store 4 ,mem_le_last_mic 
+0x4b82 009855 store 5 ,mem_le_pcnt_tx 
+0x4b83 009856 set1 39 ,pdata 
+0x4b84 009857 store 5 ,mem_le_pcnt_rx 
+0x4b85 009858 fetch 1 ,mem_le_state 
+0x4b86 009859 set0 lestate_encryption ,pdata 
+0x4b87 009860 store 1 ,mem_le_state 
+0x4b88 009861 rtn 
+:      009865 le_wait_adv:
+0x4b89 009866 set1 mark_ext_patch ,mark 
+0x4b8a 009867 bpatch patch25_1 ,mem_patch25 
+0x4b8b 009868 call le_next_adv_channel 
+0x4b8c 009869 call le_receive_adv 
+0x4b8d 009870 fetch 1 ,mem_le_adv_waitcnt 
+0x4b8e 009871 increase 1 ,pdata 
+0x4b8f 009872 store 1 ,mem_le_adv_waitcnt 
+0x4b90 009873 rtn 
+:      009875 le_scan:
+0x4b91 009876 set1 mark_ext_patch ,mark 
+0x4b92 009877 bpatch patch25_2 ,mem_patch25 
+0x4b93 009878 fetch 1 ,mem_le_scan_enable 
+0x4b94 009879 rtnne le_scan_enable 
+0x4b95 009880 arg le_scan_interval_timer ,queue 
+0x4b96 009881 call timer_check 
+0x4b97 009882 nrtn blank 
+0x4b98 009883 fetch 2 ,mem_le_scan_interval 
+0x4b99 009884 fetcht 2 ,mem_le_scan_window 
+0x4b9a 009885 isub temp ,pdata 
+0x4b9b 009886 arg le_scan_interval_timer ,queue 
+0x4b9c 009887 call timer_init 
+0x4b9d 009888 disable master 
+0x4b9e 009889 call le_init_adv 
+0x4b9f 009890 call le_wait_adv 
+0x4ba0 009891 nrtn match 
+0x4ba1 009892 set1 mark_ext_patch ,mark 
+0x4ba2 009893 bpatch patch25_3 ,mem_patch25 
+0x4ba3 009894 fetch 6 ,mem_le_rxbuf + 2 
+0x4ba4 009895 store 6 ,mem_le_plap 
+0x4ba5 009898 fetch 1 ,mem_le_adv_rcv 
+0x4ba6 009899 increase 1 ,pdata 
+0x4ba7 009900 store 1 ,mem_le_adv_rcv 
+0x4ba8 009901 call le_create_conn 
+0x4ba9 009902 rtn master 
+0x4baa 009903 call le_send_scan_request 
+0x4bab 009904 nrtn match 
+0x4bac 009905 set1 mark_ext_patch ,mark 
+0x4bad 009906 bpatch patch25_4 ,mem_patch25 
+0x4bae 009907 fetch 1 ,mem_le_scanrsp_rcv 
+0x4baf 009908 increase 1 ,pdata 
+0x4bb0 009909 store 1 ,mem_le_scanrsp_rcv 
+0x4bb1 009910 fetch 9 ,mem_le_rxbuf + 8 
+0x4bb2 009911 store 9 ,mem_tmp_buffer 
+0x4bb3 009912 rtn 
+:      009914 le_create_conn:
+0x4bb4 009915 set1 mark_ext_patch ,mark 
+0x4bb5 009916 bpatch patch25_5 ,mem_patch25 
+0x4bb6 009917 fetch 1 ,mem_cmd_le_create_conn 
+0x4bb7 009918 rtnne hci_cmd_le_create_conn ,pdata 
+0x4bb8 009919 fetch 6 ,mem_le_plap 
+0x4bb9 009920 fetcht 6 ,mem_le_conn_peer_addr 
+0x4bba 009921 isub temp ,null 
+0x4bbb 009922 nrtn zero 
+0x4bbc 009923 call context_new 
+0x4bbd 009924 nrtn zero 
+0x4bbe 009925 call le_connect_request 
+0x4bbf 009926 call le_init_master 
+0x4bc0 009927 set1 mark_ext_patch ,mark 
+0x4bc1 009928 bpatch patch25_6 ,mem_patch25 
+0x4bc2 009929 jam 0 ,mem_hci_cmd 
+0x4bc3 009930 jam 0 ,mem_le_peer_sca 
+0x4bc4 009931 jam 0 ,mem_le_scan_enable 
+0x4bc5 009932 jam 0 ,mem_cmd_le_create_conn 
+0x4bc6 009933 jam xt_ll_version_ind ,mem_fifo_temp 
+0x4bc7 009934 call le_xtype_fifo_in 
+0x4bc8 009935 branch context_save 
+:      009937 le_scan_check_sender_addr_type:
+0x4bc9 009938 arg 1 ,rega 
+0x4bca 009939 fetch 1 ,mem_le_rxbuf 
+0x4bcb 009940 rtnbit1 le_sender_addr_bit 
+0x4bcc 009941 arg 0 ,rega 
+0x4bcd 009942 rtn 
+:      009944 le_xtype_fifo_count:
+0x4bce 009945 arg mem_le_xtype_fifo ,contr 
+0x4bcf 009946 branch fifo_content_count 
+:      009948 le_xtype_fifo_is_empty:
+0x4bd0 009949 arg mem_le_xtype_fifo ,rega 
+0x4bd1 009950 branch fifo_is_empty 
+:      009952 le_xtype_fifo_is_full:
+0x4bd2 009953 arg mem_le_xtype_fifo ,rega 
+0x4bd3 009954 branch fifo_is_full 
+:      009956 le_xtype_fifo_is_near_full:
+0x4bd4 009957 arg mem_le_xtype_fifo ,rega 
+0x4bd5 009958 branch fifo_is_near_full 
+:      009960 le_xtype_fifo_in:
+0x4bd6 009961 arg mem_le_xtype_fifo ,rega 
+0x4bd7 009962 branch fifo_in 
+:      009964 le_prepare_tx:
+0x4bd8 009965 set1 mark_ext_patch ,mark 
+0x4bd9 009966 bpatch patch25_7 ,mem_patch25 
+0x4bda 009967 fetch 1 ,mem_le_arq 
+0x4bdb 009968 rtnbit1 wak 
+0x4bdc 009969 fetch 1 ,mem_device_option 
+0x4bdd 009970 beq dvc_op_shutter ,le_prepare_tx_shutter 
+:      009971 le_prepare_tx_1:
+0x4bde 009972 arg mem_le_xtype_fifo ,rega 
+0x4bdf 009973 call fifo_out 
+0x4be0 009974 nbranch le_prepare_tx_cmd ,blank 
+0x4be1 009975 branch le_send_empty 
+:      009977 le_prepare_tx_shutter:
+0x4be2 009978 fetch 1 ,mem_empty_count 
+0x4be3 009979 nbranch le_send_empty_shutter ,blank 
+0x4be4 009980 fetch 1 ,mem_le_state 
+0x4be5 009981 bbit0 lestate_encryption ,le_tx_4 
+0x4be6 009982 fetch 1 ,mem_le_rxbuf + 1 
+0x4be7 009983 branch le_tx_4 ,blank 
+0x4be8 009984 branch le_send_empty 
+:      009985 le_send_empty_shutter:
+0x4be9 009986 fetch 1 ,mem_empty_count 
+0x4bea 009987 increase -1 ,pdata 
+0x4beb 009988 store 1 ,mem_empty_count 
+0x4bec 009989 branch le_send_empty 
+:      009990 le_tx_4:
+0x4bed 009991 fetch 1 ,mem_le_pairing_state 
+0x4bee 009992 bne flag_le_pairing_after_auth ,in_le_tx_4 
+0x4bef 009993 jam 3 ,mem_empty_count 
+:      009994 in_le_tx_4:
+0x4bf0 009995 branch le_prepare_tx_1 
+:      009997 le_prepare_tx_cmd:
+0x4bf1 009998 copy pdata ,temp 
+0x4bf2 009999 set1 mark_ext_patch ,mark 
+0x4bf3 010000 bpatch patch26_0 ,mem_patch26 
+0x4bf4 010001 copy temp ,pdata 
+0x4bf5 010002 bbit0 5 ,le_prepare_l2cap 
+0x4bf6 010003 force 3 ,type 
+0x4bf7 010004 set0 5 ,pdata 
+0x4bf8 010005 store 1 ,mem_le_txpayload 
+0x4bf9 010006 set1 mark_ext_patch ,mark 
+0x4bfa 010007 bpatch patch26_1 ,mem_patch26 
+:      010008 le_prepare_tx_ll:
+0x4bfb 010009 fetch 1 ,mem_le_txpayload 
+0x4bfc 010010 beq ll_connection_update_req ,le_send_connection_update_req 
+0x4bfd 010011 beq ll_channel_map_req ,le_send_channel_map_req 
+0x4bfe 010012 beq ll_terminate_ind ,le_send_terminate_ind 
+0x4bff 010013 beq ll_enc_req ,le_send_enc_req 
+0x4c00 010014 beq ll_enc_rsp ,le_send_enc_rsp 
+0x4c01 010015 beq ll_start_enc_req ,le_send_start_enc_req 
+0x4c02 010016 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+0x4c03 010017 beq ll_unknown_rsp ,le_send_unknown_rsp 
+0x4c04 010018 beq ll_feature_req ,le_send_feature 
+0x4c05 010019 beq ll_feature_rsp ,le_send_feature 
+0x4c06 010020 beq ll_pause_enc_req ,le_send_pause_enc_req 
+0x4c07 010021 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+0x4c08 010022 beq ll_version_ind ,le_send_version_ind 
+0x4c09 010023 beq ll_reject_ind ,le_send_reject_ind 
+0x4c0a 010024 beq ll_connection_param_req ,le_send_conn_param_req 
+0x4c0b 010025 beq ll_ping_rsp ,le_send_ping_response 
+0x4c0c 010026 branch assert 
+:      010028 le_prepare_l2cap:
+0x4c0d 010029 jam 0 ,mem_le_txcid + 1 
+0x4c0e 010030 force 2 ,type 
+0x4c0f 010031 bbit0 6 ,le_prepare_att 
+0x4c10 010032 beq attop_write_command ,le_prepare_att 
+0x4c11 010033 beq attop_signed_write_command ,le_prepare_att 
+0x4c12 010034 jam le_l2cap_cid_smp ,mem_le_txcid 
+0x4c13 010035 set0 6 ,pdata 
+0x4c14 010036 store 1 ,mem_le_l2cap 
+0x4c15 010037 set1 mark_ext_patch ,mark 
+0x4c16 010038 bpatch patch26_2 ,mem_patch26 
+0x4c17 010039 fetch 1 ,mem_le_l2cap 
+:      010040 le_prepare_smp0:
+0x4c18 010041 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x4c19 010042 beq smp_pairing_response ,le_send_smp_pairing_response 
+0x4c1a 010043 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x4c1b 010044 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x4c1c 010045 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x4c1d 010046 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x4c1e 010047 beq smp_master_identification ,le_send_smp_master_identification 
+0x4c1f 010048 beq smp_identity_information ,le_send_smp_identity_information 
+0x4c20 010049 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x4c21 010050 beq smp_signing_information ,le_send_smp_signing_information 
+0x4c22 010051 beq smp_security_request ,le_send_smp_security_request 
+0x4c23 010052 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+0x4c24 010053 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+0x4c25 010054 branch assert 
+:      010056 le_prepare_att:
+0x4c26 010057 jam le_l2cap_cid_att ,mem_le_txcid 
+0x4c27 010058 store 1 ,mem_le_l2cap 
+0x4c28 010059 set1 mark_ext_patch ,mark 
+0x4c29 010060 bpatch patch26_3 ,mem_patch26 
+0x4c2a 010061 fetch 1 ,mem_le_l2cap 
+0x4c2b 010062 beq attop_error_response ,le_send_att_error_response 
+0x4c2c 010063 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu_req 
+0x4c2d 010064 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu_rsp 
+0x4c2e 010065 beq attop_find_information_request ,le_send_att_find_information_request 
+0x4c2f 010066 beq attop_find_information_response ,le_send_att_find_information_response 
+0x4c30 010067 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+0x4c31 010068 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+0x4c32 010069 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+0x4c33 010070 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+0x4c34 010071 beq attop_read_request ,le_send_att_read_request 
+0x4c35 010072 beq attop_read_response ,le_send_att_read_response 
+0x4c36 010073 beq attop_read_blob_request ,le_send_att_read_blob_request 
+0x4c37 010074 beq attop_read_blob_response ,le_send_att_read_blob_response 
+0x4c38 010075 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+0x4c39 010076 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+0x4c3a 010077 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+0x4c3b 010078 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+0x4c3c 010079 beq attop_write_request ,le_send_att_write_request 
+0x4c3d 010080 beq attop_write_response ,le_send_att_write_response 
+0x4c3e 010081 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+0x4c3f 010082 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+0x4c40 010083 beq attop_execute_write_request ,le_send_att_execute_write_request 
+0x4c41 010084 beq attop_execute_write_response ,le_send_att_execute_write_response 
+0x4c42 010085 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+0x4c43 010086 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+0x4c44 010087 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+0x4c45 010088 beq attop_write_command ,le_send_att_write_command 
+0x4c46 010089 beq attop_signed_write_command ,le_send_att_signed_write_command 
+0x4c47 010090 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+0x4c48 010091 beq empty_le_data ,le_send_empty_le_data 
+0x4c49 010092 beq attop_continue ,le_send_att_continue 
+0x4c4a 010093 branch assert 
+:      010095 le_send_empty_le_data_pre:
+0x4c4b 010096 jam attop_read_by_group_type_request ,mem_fifo_temp 
+0x4c4c 010097 call le_xtype_fifo_in 
+:      010099 le_send_empty_le_data:
+0x4c4d 010100 setarg 0x0011 
+0x4c4e 010101 store 2 ,mem_le_txheader 
+0x4c4f 010102 fetch 1 ,mem_le_arq 
+0x4c50 010103 set1 wak ,pdata 
+0x4c51 010104 store 1 ,mem_le_arq 
+0x4c52 010105 jam attop_write_request ,mem_fifo_temp 
+0x4c53 010106 branch le_xtype_fifo_in 
+:      010108 le_send_connection_update_req:
+0x4c54 010109 force 12 ,temp 
+0x4c55 010110 branch le_send_packet 
+:      010112 le_send_channel_map_req:
+0x4c56 010113 force 8 ,temp 
+0x4c57 010114 branch le_send_packet 
+:      010116 le_send_terminate_ind:
+0x4c58 010117 force 2 ,temp 
+0x4c59 010118 branch le_send_packet 
+:      010120 le_send_enc_req:
+0x4c5a 010121 force 0 ,pdata 
+0x4c5b 010122 istore 8 ,contw 
+0x4c5c 010123 istore 2 ,contw 
+0x4c5d 010124 copy contw ,temp 
+0x4c5e 010125 arg mem_le_skdm ,contw 
+0x4c5f 010126 force 8 ,loopcnt 
+0x4c60 010127 call generate_random_loop 
+0x4c61 010128 fetch 8 ,mem_le_skdm 
+0x4c62 010129 istore 8 ,temp 
+0x4c63 010130 copy contw ,temp 
+0x4c64 010131 arg mem_le_ivm ,contw 
+0x4c65 010132 force 4 ,loopcnt 
+0x4c66 010133 call generate_random_loop 
+0x4c67 010134 fetch 4 ,mem_le_ivm 
+0x4c68 010135 istore 4 ,temp 
+0x4c69 010136 force 23 ,temp 
+0x4c6a 010137 branch le_send_packet 
+:      010139 le_send_enc_rsp:
+0x4c6b 010140 copy contw ,temp 
+0x4c6c 010141 arg mem_le_skds ,contw 
+0x4c6d 010142 force 8 ,loopcnt 
+0x4c6e 010143 call generate_random_loop 
+0x4c6f 010144 fetch 8 ,mem_le_skds 
+0x4c70 010145 istore 8 ,temp 
+0x4c71 010146 copy contw ,temp 
+0x4c72 010147 arg mem_le_ivs ,contw 
+0x4c73 010148 force 4 ,loopcnt 
+0x4c74 010149 call generate_random_loop 
+0x4c75 010150 fetch 4 ,mem_le_ivs 
+0x4c76 010151 istore 4 ,temp 
+0x4c77 010152 call generate_sk 
+0x4c78 010153 fetch 1 ,mem_ltk_exists 
+0x4c79 010154 beq 0 ,le_ltk_lost 
+0x4c7a 010155 jam xt_ll_start_enc_req ,mem_fifo_temp 
+0x4c7b 010156 call le_xtype_fifo_in 
+0x4c7c 010157 force 13 ,temp 
+0x4c7d 010158 branch le_send_packet 
+:      010160 le_ltk_lost:
+0x4c7e 010161 jam flag_le_enc_null ,mem_le_enc_state 
+0x4c7f 010162 jam xt_ll_reject_ind ,mem_fifo_temp 
+0x4c80 010163 call le_xtype_fifo_in 
+0x4c81 010164 call check_51cmd_le_smp_sec_req 
+0x4c82 010165 force 13 ,temp 
+0x4c83 010166 branch le_send_packet 
+:      010169 le_send_start_enc_req:
+0x4c84 010170 force 1 ,temp 
+0x4c85 010171 branch le_send_packet 
+:      010173 le_send_start_enc_rsp:
+0x4c86 010174 force 1 ,temp 
+0x4c87 010175 branch le_send_packet ,master 
+0x4c88 010176 fetch 1 ,mem_device_option 
+0x4c89 010177 beq dvc_op_shutter ,le_send_start_enc_rsp_shutter 
+0x4c8a 010178 fetch 1 ,mem_le_pairing_state 
+0x4c8b 010179 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp_end 
+0x4c8c 010180 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c8d 010181 call le_xtype_fifo_in 
+0x4c8e 010182 branch le_send_start_enc_rsp_common 
+:      010183 le_send_start_enc_rsp_end:
+0x4c8f 010184 jam flag_le_enc_end ,mem_le_enc_state 
+:      010185 le_send_start_enc_rsp_common:
+0x4c90 010186 force 1 ,temp 
+0x4c91 010187 branch le_send_packet 
+:      010188 le_send_start_enc_rsp_shutter:
+0x4c92 010189 jam 1 ,mem_lpm_mode 
+0x4c93 010190 fetch 1 ,mem_le_pairing_state 
+0x4c94 010191 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp0 
+0x4c95 010192 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c96 010193 call le_xtype_fifo_in 
+:      010194 le_send_start_enc_rsp0:
+0x4c97 010195 jam flag_le_enc_end ,mem_le_enc_state 
+0x4c98 010196 force 1 ,temp 
+0x4c99 010197 call le_send_packet 
+0x4c9a 010198 jam 1 ,mem_send_updata_le_param_timer 
+0x4c9b 010199 rtn 
+:      010200 le_send_unknown_rsp:
+0x4c9c 010201 fetch 1 ,mem_le_ll_cur_opcode 
+0x4c9d 010202 istore 1 ,contw 
+0x4c9e 010203 force 2 ,temp 
+0x4c9f 010204 branch le_send_packet 
+:      010206 le_send_feature:
+0x4ca0 010207 setarg param_le_features 
+0x4ca1 010208 istore 8 ,contw 
+0x4ca2 010209 force 9 ,temp 
+0x4ca3 010210 branch le_send_packet 
+:      010212 le_send_pause_enc_req:
+:      010215 le_send_pause_enc_rsp:
+:      010216 le_send_ping_response:
+0x4ca4 010217 force 1 ,temp 
+0x4ca5 010218 branch le_send_packet 
+:      010220 le_send_version_ind:
+0x4ca6 010221 fetch 5 ,mem_lmp_version 
+0x4ca7 010222 istore 5 ,contw 
+0x4ca8 010227 force 6 ,temp 
+0x4ca9 010228 branch le_send_packet 
+:      010230 le_send_reject_ind:
+0x4caa 010231 setarg le_err_pin_or_key_missing 
+0x4cab 010232 istore 1 ,contw 
+0x4cac 010233 force 2 ,temp 
+0x4cad 010234 branch le_send_packet 
+:      010236 le_send_conn_param_req:
+0x4cae 010237 increase -1 ,contw 
+0x4caf 010238 setarg 0x000c 
+0x4cb0 010239 istore 2 ,contw 
+0x4cb1 010240 setarg 0x0005 
+0x4cb2 010241 istore 2 ,contw 
+0x4cb3 010242 setarg 0xb412 
+0x4cb4 010243 istore 2 ,contw 
+0x4cb5 010244 setarg 0x0008 
+0x4cb6 010245 istore 2 ,contw 
+0x4cb7 010246 fetch 8 ,mem_le_interal_min 
+0x4cb8 010247 istore 8 ,contw 
+0x4cb9 010248 force 2 ,type 
+0x4cba 010249 branch le_send_autolen 
+:      010251 le_send_smp_pairing_request:
+0x4cbb 010252 setarg 0x1000401 
+0x4cbc 010253 store 4 ,mem_le_preq 
+0x4cbd 010254 setarg 0x070710 
+0x4cbe 010255 istore 3 ,contw 
+0x4cbf 010256 fetch 6 ,mem_le_preq_iocap 
+0x4cc0 010257 store 6 ,mem_le_l2cap_response 
+0x4cc1 010258 force 11 ,temp 
+0x4cc2 010259 branch le_send_packet 
+:      010261 le_send_smp_pairing_response:
+0x4cc3 010262 fetch 1 ,mem_device_option 
+0x4cc4 010263 sub pdata ,dvc_op_module ,null 
+0x4cc5 010264 call le_parse_smp_pairing_request_check_irk ,zero 
+0x4cc6 010266 fetch 1 ,mem_device_option 
+0x4cc7 010267 bne dvc_op_shutter ,le_send_smp_pairing_response_common 
+0x4cc8 010268 jam pair_ing ,mem_pair_state 
+0x4cc9 010269 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cca 010270 bbit1 initator_irk ,le_send_smp_pairing_response_common 
+0x4ccb 010271 setarg param_smp_key_dist2 
+0x4ccc 010272 istore 3 ,contw 
+:      010273 le_send_smp_pairing_response_common:
+0x4ccd 010274 fetch 6 ,mem_le_pres_iocap 
+0x4cce 010275 store 6 ,mem_le_l2cap_response 
+0x4ccf 010276 force 11 ,temp 
+0x4cd0 010277 branch le_send_packet 
+:      010279 le_parse_smp_pairing_request_check_irk:
+0x4cd1 010280 fetcht 1 ,mem_le_pres_init_key_distribution 
+0x4cd2 010281 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cd3 010282 isolate1 le_initator_irk_bit ,pdata 
+0x4cd4 010283 setflag true ,le_initator_irk_bit ,temp 
+0x4cd5 010284 storet 1 ,mem_le_pres_init_key_distribution 
+0x4cd6 010285 fetcht 1 ,mem_le_pres_resp_key_distribution 
+0x4cd7 010286 setflag true ,le_initator_irk_bit ,temp 
+0x4cd8 010287 storet 1 ,mem_le_pres_resp_key_distribution 
+0x4cd9 010288 rtn 
+:      010291 le_send_smp_pairing_confirm:
+0x4cda 010292 fetch 1 ,mem_le_secure_connect_enable 
+0x4cdb 010293 beq 1 ,le_send_smp_pairing_confirm_sc 
+0x4cdc 010294 call generate_confirm 
+0x4cdd 010295 arg mem_le_l2cap_response ,contw 
+0x4cde 010296 call store_aes_result 
+0x4cdf 010297 force 21 ,temp 
+0x4ce0 010298 branch le_send_packet 
+:      010299 le_send_smp_pairing_confirm_sc:
+0x4ce1 010300 arg mem_le_srand ,contw 
+0x4ce2 010301 call generate_random 
+0x4ce3 010302 call function_f4_cb 
+0x4ce4 010303 arg mem_le_l2cap_response ,contw 
+0x4ce5 010304 call load_inverse_result 
+0x4ce6 010305 force 21 ,temp 
+0x4ce7 010306 branch le_send_packet 
+:      010308 le_send_smp_pairing_random:
+0x4ce8 010309 fetch 8 ,mem_le_mrand 
+0x4ce9 010310 branch le_send_smp_mrandom ,master 
+0x4cea 010311 fetch 8 ,mem_le_srand 
+:      010313 le_send_smp_mrandom:
+0x4ceb 010314 call le_send_smp_128 
+0x4cec 010315 branch le_send_packet 
+:      010317 le_send_smp_pairing_failed:
+0x4ced 010318 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4cee 010319 arg pairing_failed_unspecified_reason ,pdata 
+0x4cef 010320 istore 1 ,contw 
+0x4cf0 010321 force 6 ,temp 
+0x4cf1 010322 branch le_send_packet 
+:      010324 le_send_smp_encryption_information:
+0x4cf2 010325 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x4cf3 010326 call ui_ipc_send_event 
+0x4cf4 010327 jam xt_smp_master_identification ,mem_fifo_temp 
+0x4cf5 010328 call le_xtype_fifo_in 
+0x4cf6 010329 fetch 1 ,mem_device_option 
+0x4cf7 010330 beq dvc_op_shutter ,le_send_smp_encryption_information_shutter 
+0x4cf8 010331 fetch 8 ,mem_le_ltk 
+0x4cf9 010332 call le_send_smp_128 
+0x4cfa 010333 call le_send_packet 
+0x4cfb 010334 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4cfc 010335 beq master_public_addr ,app_ble_store_reconn_info 
+0x4cfd 010336 fetch 1 ,mem_le_plap + 5 
+0x4cfe 010337 compare 0xc0 ,pdata ,0xc0 
+0x4cff 010338 branch app_ble_store_reconn_info ,true 
+0x4d00 010339 rtn 
+:      010341 le_send_smp_encryption_information_shutter:
+0x4d01 010342 setarg 0x112233 
+0x4d02 010343 store 3 ,mem_le_ltk 
+0x4d03 010344 setarg 0x445566 
+0x4d04 010345 istore 3 ,contw 
+0x4d05 010346 setarg 0x778899 
+0x4d06 010347 istore 3 ,contw 
+0x4d07 010348 setarg 0x001122 
+0x4d08 010349 istore 3 ,contw 
+0x4d09 010350 setarg 0x334455 
+0x4d0a 010351 istore 3 ,contw 
+0x4d0b 010352 setarg 0x66 
+0x4d0c 010353 istore 1 ,contw 
+0x4d0d 010355 fetch 8 ,mem_le_ltk 
+0x4d0e 010356 call le_send_smp_128 
+0x4d0f 010357 branch le_send_packet 
+:      010360 le_send_smp_master_identification:
+0x4d10 010361 fetch 1 ,mem_device_option 
+0x4d11 010362 beq dvc_op_shutter ,le_send_smp_master_identification_shutter 
+0x4d12 010364 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4d13 010365 bbit0 le_initator_irk_bit ,le_send_smp_master_identification_only 
+0x4d14 010366 jam xt_smp_identity_information ,mem_fifo_temp 
+0x4d15 010367 call le_xtype_fifo_in 
+0x4d16 010368 branch le_send_smp_master_identification_common 
+:      010370 le_send_smp_master_identification_only:
+0x4d17 010371 jam flag_le_enc_end ,mem_le_enc_state 
+0x4d18 010372 jam flag_le_pairing_end ,mem_le_pairing_state 
+:      010373 le_send_smp_master_identification_common:
+0x4d19 010374 arg mem_le_ediv ,contw 
+0x4d1a 010375 force 10 ,loopcnt 
+0x4d1b 010376 call generate_random_loop 
+0x4d1c 010377 fetch 2 ,mem_le_ediv 
+0x4d1d 010378 store 2 ,mem_le_l2cap_response 
+0x4d1e 010379 fetch 8 ,mem_le_rand 
+0x4d1f 010380 istore 8 ,contw 
+0x4d20 010381 force 15 ,temp 
+0x4d21 010382 branch le_send_packet 
+:      010384 le_send_smp_master_identification_shutter:
+0x4d22 010385 arg mem_le_l2cap_response ,contw 
+0x4d23 010386 force 8 ,loopcnt 
+0x4d24 010387 call generate_random_loop 
+0x4d25 010388 force 15 ,temp 
+0x4d26 010389 branch le_send_packet 
+:      010391 le_send_smp_identity_information:
+0x4d27 010392 jam xt_smp_identity_address_information ,mem_fifo_temp 
+0x4d28 010393 call le_xtype_fifo_in 
+0x4d29 010394 setarg 0 
+0x4d2a 010395 store 8 ,mem_le_l2cap_response 
+0x4d2b 010396 istore 8 ,contw 
+0x4d2c 010397 branch le_send_autolen 
+:      010399 le_send_smp_identity_address_information:
+0x4d2d 010402 fetch 1 ,mem_le_conn_own_addr_type 
+0x4d2e 010403 store 1 ,mem_le_l2cap_response 
+0x4d2f 010404 fetch 6 ,mem_le_lap 
+0x4d30 010405 istore 6 ,contw 
+0x4d31 010406 branch le_send_autolen 
+:      010408 le_send_smp_signing_information:
+0x4d32 010409 arg mem_le_l2cap_response ,contw 
+0x4d33 010410 call generate_random 
+0x4d34 010411 branch le_send_autolen 
+:      010413 le_send_smp_security_request:
+0x4d35 010414 fetch 1 ,mem_le_pres_auth 
+0x4d36 010415 store 1 ,mem_le_l2cap_response 
+0x4d37 010416 force 6 ,temp 
+0x4d38 010417 branch le_send_packet 
+:      010419 le_send_smp_pairing_public_key:
+0x4d39 010421 fetch 1 ,mem_le_continue_type 
+0x4d3a 010422 beq le_continue_type_public_key ,le_send_public_key_continue 
+0x4d3b 010425 arg 65 ,temp 
+0x4d3c 010426 storet 2 ,mem_le_txpayload 
+0x4d3d 010427 set1 mark_ext_patch ,mark 
+0x4d3e 010428 bpatch patch26_4 ,mem_patch26 
+0x4d3f 010429 arg 0x02 ,type 
+0x4d40 010430 setarg le_l2cap_cid_smp 
+0x4d41 010431 store 2 ,mem_le_txcid 
+0x4d42 010433 arg mem_le_l2cap_response ,contw 
+0x4d43 010434 arg 22 ,loopcnt 
+0x4d44 010435 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d45 010436 call memcpy_fast 
+0x4d46 010437 jam 22 ,mem_le_public_length 
+0x4d47 010439 jam 27 ,mem_le_txlen 
+0x4d48 010441 fetcht 1 ,mem_le_arq 
+0x4d49 010442 set1 md ,temp 
+0x4d4a 010443 storet 1 ,mem_le_arq 
+0x4d4b 010448 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d4c 010449 fetcht 1 ,mem_le_arq 
+0x4d4d 010450 branch le_send_non_l2cap2 
+:      010453 le_send_public_key_continue:
+0x4d4e 010454 jam le_continue_type_null ,mem_le_continue_type 
+0x4d4f 010456 fetch 1 ,mem_le_public_length 
+0x4d50 010457 beq 22 ,le_send_public_key_continue2 
+0x4d51 010459 arg 15 ,loopcnt 
+0x4d52 010460 jam 15 ,mem_le_txlen 
+0x4d53 010461 call le_send_smp_publickey_continue_common 
+0x4d54 010462 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x4d55 010463 jam le_sc_stat_send_public_key ,mem_le_secure_connect_state 
+0x4d56 010464 jam 0 ,mem_le_public_length 
+0x4d57 010465 rtn 
+:      010466 le_send_smp_publickey_continue_common:
+0x4d58 010467 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d59 010468 iadd contr ,contr 
+0x4d5a 010469 arg mem_le_txpayload ,contw 
+0x4d5b 010470 call memcpy_fast 
+0x4d5c 010471 arg 1 ,type 
+0x4d5d 010472 branch le_send_non_l2cap 
+:      010475 le_send_public_key_continue2:
+0x4d5e 010476 jam 49 ,mem_le_public_length 
+0x4d5f 010477 arg 27 ,loopcnt 
+0x4d60 010478 jam 27 ,mem_le_txlen 
+0x4d61 010479 call le_send_smp_publickey_continue_common 
+0x4d62 010481 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d63 010485 rtn 
+:      010487 le_send_smp_pairing_dhkey_check:
+0x4d64 010488 call function_f6_eb 
+0x4d65 010489 arg mem_le_l2cap_response ,contw 
+0x4d66 010490 call load_inverse_result 
+0x4d67 010491 force 21 ,temp 
+0x4d68 010492 branch le_send_packet 
+:      010494 le_send_smp_128:
+0x4d69 010495 store 8 ,mem_le_l2cap_response 
+0x4d6a 010496 ifetch 8 ,contr 
+0x4d6b 010497 istore 8 ,contw 
+0x4d6c 010498 force 21 ,temp 
+0x4d6d 010499 rtn 
+:      010501 le_send_att_error_response_notfound:
+0x4d6e 010502 jam att_err_attribute_not_found ,mem_le_err_code 
+:      010503 le_send_att_error_response:
+0x4d6f 010504 jam attop_error_response ,mem_le_l2cap 
+0x4d70 010505 fetch 3 ,mem_le_att_opcode 
+0x4d71 010506 store 3 ,mem_le_l2cap_response 
+0x4d72 010507 fetch 1 ,mem_le_err_code 
+0x4d73 010508 istore 1 ,contw 
+0x4d74 010509 branch le_send_autolen 
+:      010511 le_send_att_exchange_mtu_rsp:
+:      010512 le_send_att_exchange_mtu_req:
+0x4d75 010513 fetch 2 ,mem_le_local_mtu 
+0x4d76 010514 istore 2 ,contw 
+0x4d77 010515 branch le_send_autolen 
+:      010517 le_send_att_find_information_request:
+0x4d78 010518 fetch 2 ,mem_le_search_handle_start 
+0x4d79 010519 store 2 ,mem_le_l2cap_response 
+0x4d7a 010520 fetch 2 ,mem_le_search_handle_end 
+0x4d7b 010521 istore 2 ,contw 
+0x4d7c 010522 branch le_send_autolen 
+:      010526 le_send_att_find_information_response:
+0x4d7d 010527 arg 2 ,timeup 
+0x4d7e 010528 force 1 ,pdata 
+0x4d7f 010529 store 1 ,mem_le_l2cap_response 
+0x4d80 010530 call le_init_attlist_search 
+:      010531 le_send_att_find_information_res_loop:
+0x4d81 010532 call le_att_handle_inrange 
+0x4d82 010533 branch le_send_att_find_information_res_end ,blank 
+0x4d83 010534 nbranch le_send_att_find_information_res_next ,positive 
+0x4d84 010535 disable user 
+0x4d85 010536 istore 2 ,contw 
+0x4d86 010537 ifetch 1 ,contr 
+0x4d87 010538 copy pdata ,loopcnt 
+0x4d88 010539 call memcpy_fast 
+0x4d89 010540 increase -1 ,timeup 
+0x4d8a 010541 branch le_send_att_find_information_res_end ,zero 
+:      010542 le_send_att_find_information_res_cont:
+0x4d8b 010543 ifetch 1 ,contr 
+0x4d8c 010544 iadd contr ,contr 
+0x4d8d 010545 branch le_send_att_find_information_res_loop 
+:      010546 le_send_att_find_information_res_next:
+0x4d8e 010547 ifetch 1 ,contr 
+0x4d8f 010548 iadd contr ,contr 
+0x4d90 010549 branch le_send_att_find_information_res_cont 
+:      010550 le_send_att_find_information_res_end:
+0x4d91 010551 branch le_send_att_error_response_notfound ,user 
+0x4d92 010552 branch le_send_autolen 
+:      010555 le_send_att_find_by_type_value_request:
+0x4d93 010556 fetch 2 ,mem_le_search_handle_start 
+0x4d94 010557 branch le_send_empty_le_data ,blank 
+0x4d95 010558 store 2 ,mem_le_l2cap_response 
+0x4d96 010559 fetch 2 ,mem_le_search_handle_end 
+0x4d97 010561 istore 2 ,contw 
+0x4d98 010562 fetch 2 ,mem_le_search_uuid 
+0x4d99 010564 istore 2 ,contw 
+0x4d9a 010565 fetch 2 ,mem_le_search_att_type 
+0x4d9b 010567 istore 2 ,contw 
+0x4d9c 010568 branch le_send_autolen 
+:      010571 le_start_end_handle_check_1:
+0x4d9d 010572 disable user 
+0x4d9e 010573 fetcht 2 ,mem_le_search_handle_start 
+0x4d9f 010574 fetch 2 ,mem_le_search_handle_end 
+0x4da0 010575 isub temp ,null 
+0x4da1 010576 nbranch le_start_end_handle_check_1_fail ,positive 
+0x4da2 010577 deposit temp 
+0x4da3 010578 rtnne 0 
+:      010579 le_start_end_handle_check_1_fail:
+0x4da4 010580 enable user 
+0x4da5 010581 jam att_err_invalid_handle ,mem_le_err_code 
+0x4da6 010582 branch le_send_att_error_response 
+:      010584 le_send_att_find_by_type_value_response:
+0x4da7 010585 call le_start_end_handle_check_1 
+0x4da8 010586 rtn user 
+0x4da9 010587 fetcht 2 ,mem_le_search_uuid 
+0x4daa 010588 setarg uuid_gatt_primary_service 
+0x4dab 010589 isub temp ,null 
+0x4dac 010590 branch le_send_att_find_by_type_value_res_primary ,zero 
+0x4dad 010591 setarg uuid_gatt_secondary_service 
+0x4dae 010592 isub temp ,null 
+0x4daf 010593 branch le_send_att_error_response_notfound ,zero 
+0x4db0 010594 setarg uuid_gatt_include 
+0x4db1 010595 isub temp ,null 
+0x4db2 010596 branch le_send_att_error_response_notfound ,zero 
+0x4db3 010597 setarg uuid_gatt_characteristic 
+0x4db4 010598 isub temp ,null 
+0x4db5 010599 branch le_send_att_error_response_notfound ,zero 
+0x4db6 010600 branch le_send_att_error_response_notfound 
+:      010602 le_send_att_find_by_type_value_res_primary:
+0x4db7 010603 jam le_find_by_type_val_res_not_found ,mem_le_search_res 
+0x4db8 010604 fetcht 2 ,mem_le_search_handle_start 
+0x4db9 010605 storet 2 ,mem_temp 
+0x4dba 010606 call le_att_get_handle_info 
+0x4dbb 010607 nbranch le_send_att_error_response_notfound ,blank 
+:      010608 le_send_att_find_primary_search_loop:
+0x4dbc 010609 fetcht 2 ,mem_temp 
+0x4dbd 010610 call le_att_get_handle_info 
+0x4dbe 010611 nbranch le_send_att_error_response_notfound2 ,blank 
+0x4dbf 010612 copy contr ,rega 
+0x4dc0 010613 fetch 1 ,mem_le_search_len 
+0x4dc1 010614 copy pdata ,loopcnt 
+0x4dc2 010615 fetcht 1 ,mem_le_search_att_type_length 
+0x4dc3 010616 isub temp ,null 
+0x4dc4 010617 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dc5 010618 arg mem_le_search_att_type ,regb 
+0x4dc6 010619 call string_compare 
+0x4dc7 010621 branch le_send_att_find_primary_search_end_start_handle_found ,zero 
+0x4dc8 010623 fetch 2 ,mem_le_cur_uuid 
+0x4dc9 010624 fetcht 2 ,mem_le_search_uuid 
+0x4dca 010625 isub temp ,null 
+0x4dcb 010626 branch le_send_att_find_primary_search_end_ending_handle_found ,zero 
+:      010627 le_send_att_find_primary_search_loop1:
+0x4dcc 010628 fetch 2 ,mem_temp 
+0x4dcd 010629 increase 1 ,pdata 
+0x4dce 010630 store 2 ,mem_temp 
+0x4dcf 010631 branch le_send_att_find_primary_search_loop 
+:      010633 le_send_att_error_response_notfound2:
+0x4dd0 010634 fetch 1 ,mem_le_search_res 
+0x4dd1 010635 beq le_find_by_type_val_res_found_starting_handle ,le_send_att_find_primary_search_end_ending_handle_found 
+0x4dd2 010636 branch le_send_att_error_response_notfound 
+:      010639 le_send_att_find_primary_search_end_start_handle_found:
+0x4dd3 010640 fetch 2 ,mem_le_cur_uuid 
+0x4dd4 010641 fetcht 2 ,mem_le_search_uuid 
+0x4dd5 010642 isub temp ,null 
+0x4dd6 010643 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dd7 010644 jam le_find_by_type_val_res_found_starting_handle ,mem_le_search_res 
+0x4dd8 010646 fetcht 2 ,mem_temp 
+0x4dd9 010647 storet 2 ,mem_le_cur_handle_start 
+0x4dda 010648 branch le_send_att_find_primary_search_loop1 
+:      010650 le_send_att_find_primary_search_end_ending_handle_found:
+0x4ddb 010651 fetch 1 ,mem_le_search_res 
+0x4ddc 010652 beq le_find_by_type_val_res_not_found ,le_send_att_find_primary_search_loop1 
+0x4ddd 010653 jam le_find_by_type_val_res_found_ending_handle ,mem_le_search_res 
+0x4dde 010654 fetcht 2 ,mem_temp 
+0x4ddf 010655 increase -1 ,temp 
+0x4de0 010656 storet 2 ,mem_le_cur_handle_end 
+:      010657 le_send_att_find_primary_search_end:
+0x4de1 010658 fetch 2 ,mem_le_cur_handle_start 
+0x4de2 010659 icopy rega 
+0x4de3 010660 fetch 2 ,mem_le_cur_handle_end 
+0x4de4 010661 icopy regb 
+0x4de5 010662 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x4de6 010663 deposit rega 
+0x4de7 010664 store 2 ,mem_le_l2cap_response 
+0x4de8 010665 deposit regb 
+0x4de9 010666 istore 2 ,contw 
+0x4dea 010667 force 9 ,temp 
+0x4deb 010668 branch le_send_packet 
+:      010671 le_send_att_read_by_type_request:
+0x4dec 010672 fetch 2 ,mem_le_search_handle_start 
+0x4ded 010674 istore 2 ,contw 
+0x4dee 010675 fetch 2 ,mem_le_search_handle_end 
+0x4def 010677 istore 2 ,contw 
+0x4df0 010678 fetch 2 ,mem_le_search_att_type 
+0x4df1 010679 istore 2 ,contw 
+0x4df2 010680 force 11 ,temp 
+0x4df3 010681 branch le_send_packet 
+:      010685 le_send_att_read_by_type_response:
+0x4df4 010686 fetcht 2 ,mem_le_search_handle_start 
+0x4df5 010687 storet 2 ,mem_temp 
+0x4df6 010688 call le_init_attlist_search 
+0x4df7 010689 call le_att_get_handle_ptr2 
+0x4df8 010690 increase -2 ,contr 
+0x4df9 010691 copy contr ,pdata 
+0x4dfa 010692 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4dfb 010694 fetcht 2 ,mem_le_search_uuid 
+0x4dfc 010695 setarg uuid_gatt_characteristic 
+0x4dfd 010696 isub temp ,null 
+0x4dfe 010697 nbranch le_send_att_read_by_type_res_not_characteristic ,zero 
+0x4dff 010698 arg 2 ,timeup 
+0x4e00 010699 set1 mark_ext_patch ,mark 
+0x4e01 010700 bpatch patch26_5 ,mem_patch26 
+:      010701 le_send_att_read_by_type_response_loop:
+0x4e02 010702 call le_att_check_handle_end 
+0x4e03 010703 nbranch le_send_att_read_by_type_response_end ,positive 
+0x4e04 010704 fetcht 2 ,mem_temp 
+0x4e05 010705 call le_att_get_handle_info_from_ptr 
+0x4e06 010706 beq 1 ,le_send_att_read_by_type_response_end 
+0x4e07 010707 call le_att_same_uuid 
+0x4e08 010708 nbranch le_send_att_read_by_type_response_next_handle ,zero 
+0x4e09 010709 nbranch le_send_att_read_by_type_res_found_next ,user 
+0x4e0a 010710 disable user 
+0x4e0b 010712 call le_send_att_read_by_type_write_properties 
+0x4e0c 010713 call le_att_next_handle 
+0x4e0d 010714 call le_att_get_handle_info_from_ptr 
+0x4e0e 010715 call le_send_att_read_by_type_write_uuid 
+0x4e0f 010716 increase -1 ,timeup 
+0x4e10 010717 branch le_send_att_read_by_type_response_end ,zero 
+:      010718 le_send_att_read_by_type_response_next_handle:
+0x4e11 010719 call le_att_next_handle 
+0x4e12 010720 branch le_send_att_read_by_type_response_loop 
+:      010721 le_send_att_read_by_type_response_end:
+0x4e13 010722 branch le_send_att_error_response_notfound ,user 
+0x4e14 010723 branch le_send_auto_len_by_mem 
+:      010725 le_send_att_read_by_type_res_found_next:
+0x4e15 010726 call le_store_att_record 
+0x4e16 010727 call le_att_next_handle 
+0x4e17 010728 call le_att_get_handle_info_from_ptr 
+0x4e18 010729 fetch 1 ,mem_le_l2cap_response 
+0x4e19 010730 beq 21 ,le_send_att_read_by_type_response_end 
+0x4e1a 010731 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e1b 010732 increase 5 ,pdata 
+0x4e1c 010733 fetcht 1 ,mem_le_l2cap_response 
+0x4e1d 010734 isub temp ,null 
+0x4e1e 010735 nbranch le_send_att_read_by_type_response_end ,zero 
+0x4e1f 010737 call get_contw 
+0x4e20 010738 fetch 2 ,mem_temp 
+0x4e21 010739 increase -1 ,pdata 
+0x4e22 010740 istore 2 ,contw 
+0x4e23 010741 call le_write_att_record_common 
+0x4e24 010742 call le_send_att_read_by_type_write_uuid 
+0x4e25 010743 increase -1 ,timeup 
+0x4e26 010744 branch le_send_att_read_by_type_response_end ,zero 
+0x4e27 010745 branch le_send_att_read_by_type_response_next_handle 
+:      010746 le_send_att_read_by_type_write_properties:
+0x4e28 010747 fetch 2 ,mem_temp 
+0x4e29 010748 store 2 ,mem_le_l2cap_response + 1 
+0x4e2a 010750 fetch 1 ,mem_le_search_len 
+0x4e2b 010751 copy pdata ,loopcnt 
+0x4e2c 010752 call get_contr 
+0x4e2d 010753 call memcpy_fast 
+0x4e2e 010754 branch store_contw 
+:      010755 le_send_att_read_by_type_write_uuid:
+0x4e2f 010756 call get_contw 
+0x4e30 010757 fetch 2 ,mem_temp 
+0x4e31 010758 istore 2 ,contw 
+0x4e32 010759 call store_contw 
+0x4e33 010760 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e34 010761 copy pdata ,loopcnt 
+0x4e35 010762 increase 5 ,pdata 
+0x4e36 010763 store 1 ,mem_le_l2cap_response 
+0x4e37 010764 call get_contw 
+0x4e38 010765 call get_contr 
+0x4e39 010766 isub loopcnt ,contr 
+0x4e3a 010767 increase -1 ,contr 
+0x4e3b 010768 call memcpy_fast 
+0x4e3c 010769 branch store_contw 
+:      010773 le_send_att_read_by_type_res_not_characteristic:
+0x4e3d 010774 fetcht 2 ,mem_le_search_handle_start 
+0x4e3e 010775 storet 2 ,mem_temp 
+:      010776 le_send_att_read_by_type_res_not_char_loop:
+0x4e3f 010777 call le_att_check_handle_end 
+0x4e40 010778 nbranch le_send_att_error_response_notfound ,positive 
+0x4e41 010779 call le_att_get_handle_info_from_ptr 
+0x4e42 010780 beq 1 ,le_send_att_error_response_notfound 
+0x4e43 010781 call le_att_same_uuid 
+0x4e44 010782 nbranch le_send_att_read_by_type_res_not_char_next ,zero 
+:      010783 le_check_if_name_uuid:
+0x4e45 010784 fetch 1 ,mem_le_search_uuid_length 
+0x4e46 010785 bne 2 ,le_send_att_read_by_type_res_not_name 
+0x4e47 010786 fetch 2 ,mem_le_search_uuid 
+0x4e48 010787 arg uuid_chrctr_device_name ,temp 
+0x4e49 010788 isub temp ,null 
+0x4e4a 010789 nbranch le_send_att_read_by_type_res_not_name ,zero 
+0x4e4b 010790 fetch 1 ,mem_le_name_len 
+0x4e4c 010791 branch le_send_att_read_by_type_res_not_char_common 
+:      010792 le_send_att_read_by_type_res_not_name:
+0x4e4d 010793 fetch 1 ,mem_le_search_len 
+:      010794 le_send_att_read_by_type_res_not_char_common:
+0x4e4e 010795 copy pdata ,loopcnt 
+0x4e4f 010796 increase 2 ,pdata 
+0x4e50 010797 store 1 ,mem_le_l2cap_response 
+0x4e51 010798 fetch 2 ,mem_temp 
+0x4e52 010799 istore 2 ,contw 
+0x4e53 010800 call get_contr 
+0x4e54 010801 call memcpy_fast 
+0x4e55 010802 branch le_send_autolen 
+:      010803 le_send_att_read_by_type_res_not_char_next:
+0x4e56 010804 call le_att_next_handle 
+0x4e57 010805 branch le_send_att_read_by_type_res_not_char_loop 
+:      010808 le_send_att_read_request:
+0x4e58 010809 fetch 1 ,mem_le_temp 
+0x4e59 010811 increase -1 ,pdata 
+0x4e5a 010812 store 1 ,mem_le_temp 
+0x4e5b 010813 lshift pdata ,pdata 
+0x4e5c 010815 iadd contr ,contr 
+0x4e5d 010816 ifetcht 2 ,contr 
+0x4e5e 010817 storet 2 ,mem_le_l2cap_response 
+0x4e5f 010818 branch le_send_autolen 
+:      010820 le_send_att_read_response:
+0x4e60 010821 fetch 1 ,mem_le_flag 
+0x4e61 010822 bbit0 flag_ble_insufficient_authentication ,le_send_att_read_response_common 
+0x4e62 010823 fetch 2 ,mem_le_att_handle 
+0x4e63 010824 fetcht 2 ,mem_le_pairing_handle 
+0x4e64 010825 isub temp ,null 
+0x4e65 010826 branch le_send_att_read_response_error_insufficient_authentication ,zero 
+:      010827 le_send_att_read_response_common:
+0x4e66 010828 fetcht 2 ,mem_le_att_handle 
+0x4e67 010829 call le_att_get_handle_ptr 
+0x4e68 010830 branch le_send_att_error_response_notfound ,blank 
+0x4e69 010831 ifetch 1 ,contr 
+0x4e6a 010832 branch le_send_autolen ,blank 
+0x4e6b 010833 sub pdata ,22 ,null 
+0x4e6c 010834 branch le_send_att_read_response_less ,positive 
+0x4e6d 010835 force 22 ,pdata 
+:      010836 le_send_att_read_response_less:
+0x4e6e 010837 icopy loopcnt 
+0x4e6f 010838 call memcpy_fast 
+0x4e70 010839 branch le_send_autolen 
+:      010841 le_send_att_read_response_error_insufficient_authentication:
+0x4e71 010842 fetch 1 ,mem_le_pairing_mode 
+0x4e72 010843 branch le_send_att_read_response_common ,blank 
+0x4e73 010844 fetch 1 ,mem_le_state 
+0x4e74 010845 bbit1 lestate_encryption ,le_send_att_read_response_common 
+0x4e75 010846 jam att_err_insufficient_authentication ,mem_le_err_code 
+0x4e76 010847 branch le_send_att_error_response 
+:      010849 le_send_att_read_blob_request:
+0x4e77 010850 setarg 0x0003 
+0x4e78 010851 store 2 ,mem_le_l2cap_response 
+0x4e79 010852 setarg 0x0008 
+0x4e7a 010853 istore 2 ,contw 
+0x4e7b 010854 branch le_send_autolen 
+:      010856 le_send_att_read_blob_response:
+0x4e7c 010857 fetch 2 ,mem_le_att_offset 
+0x4e7d 010858 iforce rega 
+0x4e7e 010859 fetcht 2 ,mem_le_att_handle 
+0x4e7f 010860 call le_att_get_handle_ptr 
+0x4e80 010861 branch le_send_att_error_response_notfound ,blank 
+0x4e81 010862 ifetch 1 ,contr 
+0x4e82 010863 isub rega ,loopcnt 
+0x4e83 010864 nbranch le_send_att_error_response_notfound ,positive 
+0x4e84 010865 sub loopcnt ,22 ,null 
+0x4e85 010866 branch le_send_att_read_blob_response_less ,positive 
+0x4e86 010867 force 22 ,loopcnt 
+:      010868 le_send_att_read_blob_response_less:
+0x4e87 010869 deposit rega 
+0x4e88 010870 iadd contr ,contr 
+0x4e89 010871 call memcpy_fast 
+0x4e8a 010872 branch le_send_autolen 
+:      010874 le_send_att_read_multiple_request:
+0x4e8b 010875 setarg 0x0003 
+0x4e8c 010876 istore 2 ,contw 
+0x4e8d 010877 setarg 0x0007 
+0x4e8e 010878 istore 2 ,contw 
+0x4e8f 010879 setarg 0x0009 
+0x4e90 010880 istore 2 ,contw 
+0x4e91 010881 branch le_send_autolen 
+:      010883 le_send_att_read_multiple_response:
+0x4e92 010884 fetch 1 ,mem_le_temp 
+0x4e93 010885 icopy regc 
+0x4e94 010887 arg mem_le_rxbuf + 7 ,rega 
+0x4e95 010888 arg mem_le_l2cap_response ,regb 
+0x4e96 010889 arg 0 ,timeup 
+0x4e97 010890 disable user7 
+:      010892 le_send_att_read_multiple_response_loop:
+0x4e98 010893 copy rega ,contr 
+0x4e99 010894 ifetcht 2 ,contr 
+0x4e9a 010895 copy contr ,rega 
+0x4e9b 010896 call le_att_get_handle_ptr 
+0x4e9c 010897 branch le_send_att_read_multiple_response_end ,blank 
+0x4e9d 010898 ifetch 1 ,contr 
+0x4e9e 010899 icopy loopcnt 
+0x4e9f 010900 iadd timeup ,timeup 
+0x4ea0 010904 sub timeup ,24 ,null 
+0x4ea1 010905 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+0x4ea2 010906 copy regb ,contw 
+:      010908 le_copy_att_value_loop_3:
+0x4ea3 010909 ifetch 1 ,contr 
+0x4ea4 010910 istore 1 ,contw 
+0x4ea5 010911 loop le_copy_att_value_loop_3 
+0x4ea6 010912 copy contw ,regb 
+0x4ea7 010913 enable user7 
+0x4ea8 010914 increase -1 ,regc 
+0x4ea9 010915 branch le_send_att_read_multiple_response_end ,zero 
+0x4eaa 010916 branch le_send_att_read_multiple_response_loop 
+:      010918 le_send_att_read_multiple_response_end:
+0x4eab 010919 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eac 010920 disable user7 
+0x4ead 010921 copy timeup ,temp 
+0x4eae 010922 increase 5 ,temp 
+0x4eaf 010923 branch le_send_packet 
+:      010925 le_send_att_read_multiple_response_end_1:
+0x4eb0 010926 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eb1 010927 disable user7 
+0x4eb2 010928 deposit timeup 
+0x4eb3 010929 isub loopcnt ,temp 
+0x4eb4 010930 increase 5 ,temp 
+0x4eb5 010931 branch le_send_packet 
+:      010933 le_send_att_read_multiple_response_fail:
+0x4eb6 010934 jam att_err_unsupported_group_type ,mem_le_err_code 
+0x4eb7 010935 branch le_send_att_error_response 
+:      010938 le_send_att_read_by_group_type_request:
+0x4eb8 010939 fetch 2 ,mem_le_att_handle 
+0x4eb9 010940 branch le_send_empty_le_data ,blank 
+0x4eba 010941 istore 2 ,contw 
+0x4ebb 010942 setarg 0xffff 
+0x4ebc 010943 istore 2 ,contw 
+0x4ebd 010944 setarg 0x2800 
+0x4ebe 010945 istore 2 ,contw 
+0x4ebf 010946 branch le_send_autolen 
+:      010952 le_send_att_read_by_group_type_response:
+0x4ec0 010953 arg 2 ,timeup 
+0x4ec1 010954 fetch 2 ,mem_le_search_handle_start 
+0x4ec2 010955 store 2 ,mem_temp 
+0x4ec3 010956 jam 0 ,mem_le_search_res 
+0x4ec4 010958 fetcht 2 ,mem_le_search_handle_start 
+0x4ec5 010959 storet 2 ,mem_temp 
+0x4ec6 010960 call le_init_attlist_search 
+0x4ec7 010961 call le_att_get_handle_ptr2 
+0x4ec8 010962 increase -2 ,contr 
+0x4ec9 010963 copy contr ,pdata 
+0x4eca 010964 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4ecb 010965 set1 mark_ext_patch ,mark 
+0x4ecc 010966 bpatch patch26_6 ,mem_patch26 
+:      010967 le_send_att_read_by_group_type_response_loop:
+0x4ecd 010968 call le_att_check_handle_end 
+0x4ece 010969 nbranch le_send_att_read_by_group_type_end0 ,positive 
+0x4ecf 010970 fetcht 2 ,mem_temp 
+0x4ed0 010971 call le_att_get_handle_info_from_ptr 
+0x4ed1 010972 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed2 010974 call le_att_same_type 
+0x4ed3 010975 nbranch le_send_att_read_by_group_type_next_handle ,zero 
+0x4ed4 010976 fetch 1 ,mem_le_search_res 
+0x4ed5 010977 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed6 010978 nbranch le_send_att_read_by_group_type_store_write_record ,user 
+0x4ed7 010979 disable user 
+0x4ed8 010980 fetch 1 ,mem_le_search_len 
+0x4ed9 010981 increase 4 ,pdata 
+0x4eda 010982 store 1 ,mem_le_l2cap_response 
+0x4edb 010983 call store_contw 
+0x4edc 010984 branch le_send_att_read_by_group_type_store_record 
+:      010985 le_send_att_read_by_group_type_store_write_record:
+0x4edd 010986 fetch 1 ,mem_le_l2cap_response 
+0x4ede 010987 beq 20 ,le_send_att_read_by_group_type_end1 
+0x4edf 010988 fetch 1 ,mem_le_search_len 
+0x4ee0 010989 increase 4 ,pdata 
+0x4ee1 010990 fetcht 1 ,mem_le_l2cap_response 
+0x4ee2 010991 isub temp ,null 
+0x4ee3 010992 nbranch le_send_att_read_by_group_type_end1 ,zero 
+0x4ee4 010996 fetch 2 ,mem_temp 
+0x4ee5 010997 increase -1 ,pdata 
+0x4ee6 010998 store 2 ,mem_le_cur_handle_end 
+0x4ee7 010999 call le_write_att_record 
+:      011000 le_send_att_read_by_group_type_store_record:
+0x4ee8 011001 fetch 2 ,mem_temp 
+0x4ee9 011002 store 2 ,mem_le_cur_handle_start 
+0x4eea 011003 call le_store_att_record 
+0x4eeb 011004 increase -1 ,timeup 
+0x4eec 011005 branch le_send_att_read_by_group_type_last_find ,zero 
+:      011006 le_send_att_read_by_group_type_next_handle:
+0x4eed 011007 call le_att_next_handle 
+0x4eee 011008 branch le_send_att_read_by_group_type_response_loop 
+:      011009 le_send_att_read_by_group_type_last_find:
+0x4eef 011010 jam 1 ,mem_le_search_res 
+0x4ef0 011011 branch le_send_att_read_by_group_type_next_handle 
+:      011012 le_send_att_read_by_group_type_end0:
+0x4ef1 011013 fetch 2 ,mem_temp 
+0x4ef2 011014 store 2 ,mem_le_cur_handle_end 
+0x4ef3 011015 branch le_send_att_read_by_group_type_end_common 
+:      011016 le_send_att_read_by_group_type_end1:
+0x4ef4 011017 fetch 2 ,mem_temp 
+0x4ef5 011018 increase -1 ,pdata 
+0x4ef6 011019 store 2 ,mem_le_cur_handle_end 
+0x4ef7 011020 branch le_send_att_read_by_group_type_end_common 
+:      011021 le_send_att_read_by_group_type_end_common:
+0x4ef8 011022 branch le_send_att_error_response_notfound ,user 
+0x4ef9 011023 call le_write_att_record 
+0x4efa 011024 branch le_send_auto_len_by_mem 
+:      011027 le_att_next_handle:
+0x4efb 011028 fetcht 2 ,mem_temp 
+0x4efc 011029 increase 1 ,temp 
+0x4efd 011030 storet 2 ,mem_temp 
+0x4efe 011031 rtn 
+:      011033 le_att_check_handle_end:
+0x4eff 011034 fetcht 2 ,mem_temp 
+0x4f00 011035 fetch 2 ,mem_le_search_handle_end 
+0x4f01 011036 isub temp ,null 
+0x4f02 011037 rtn 
+:      011039 le_att_same_type:
+0x4f03 011040 fetcht 1 ,mem_le_search_att_type_length 
+0x4f04 011041 arg mem_le_search_att_type ,rega 
+:      011042 le_att_check_same_common:
+0x4f05 011043 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4f06 011044 copy pdata ,loopcnt 
+0x4f07 011045 isub temp ,null 
+0x4f08 011046 nrtn zero 
+0x4f09 011047 arg mem_le_cur_uuid ,regb 
+0x4f0a 011048 branch string_compare 
+:      011050 le_att_same_uuid:
+0x4f0b 011051 fetcht 1 ,mem_le_search_uuid_length 
+0x4f0c 011052 arg mem_le_search_uuid ,rega 
+0x4f0d 011053 branch le_att_check_same_common 
+:      011056 le_store_att_record:
+0x4f0e 011057 fetch 1 ,mem_le_search_len 
+0x4f0f 011058 store 1 ,mem_tmp_buffer 
+0x4f10 011059 copy pdata ,loopcnt 
+0x4f11 011060 call get_contr 
+0x4f12 011061 branch memcpy_fast 
+:      011063 le_send_auto_len_by_mem:
+0x4f13 011064 call get_contw 
+0x4f14 011065 branch le_send_autolen 
+:      011067 le_write_att_record:
+0x4f15 011068 call get_contw 
+0x4f16 011069 fetch 2 ,mem_le_cur_handle_start 
+0x4f17 011070 istore 2 ,contw 
+0x4f18 011071 fetch 2 ,mem_le_cur_handle_end 
+0x4f19 011072 istore 2 ,contw 
+:      011073 le_write_att_record_common:
+0x4f1a 011074 fetch 1 ,mem_tmp_buffer 
+0x4f1b 011075 copy pdata ,loopcnt 
+0x4f1c 011076 call memcpy_fast 
+0x4f1d 011077 branch store_contw 
+:      011079 le_send_att_write_request:
+0x4f1e 011080 fetch 2 ,mem_le_notify_handle 
+0x4f1f 011081 store 2 ,mem_le_l2cap_response 
+0x4f20 011082 fetch 1 ,mem_le_handle_data_len 
+0x4f21 011083 copy pdata ,loopcnt 
+0x4f22 011084 arg mem_le_handle_data ,contr 
+0x4f23 011085 call memcpy_fast 
+0x4f24 011086 branch le_send_autolen 
+:      011089 le_send_att_write_response:
+0x4f25 011090 force 5 ,temp 
+0x4f26 011091 branch le_send_packet 
+:      011093 le_send_att_prepare_write_request:
+0x4f27 011094 force 6 ,temp 
+0x4f28 011095 branch le_send_packet 
+:      011097 le_send_att_continue:
+0x4f29 011098 fetch 1 ,mem_le_continue_type 
+0x4f2a 011099 beq le_continue_type_notification ,le_send_att_notify_continue 
+0x4f2b 011100 beq le_continue_type_prepare_write_response ,le_send_att_prepare_write_response_continue 
+0x4f2c 011101 jam le_continue_type_null ,mem_le_continue_type 
+0x4f2d 011102 rtn 
+:      011104 le_send_att_notify_continue:
+0x4f2e 011105 fetch 2 ,mem_cb_update_notify_continue 
+0x4f2f 011106 branch callback_func 
+:      011108 le_send_att_prepare_write_response_continue:
+0x4f30 011109 fetch 2 ,mem_prepare_write_len 
+0x4f31 011110 branch assert ,blank 
+0x4f32 011111 fetcht 2 ,mem_prepare_write_offest 
+0x4f33 011112 branch assert ,blank 
+0x4f34 011113 isub temp ,pdata 
+0x4f35 011114 arg 27 ,temp 
+0x4f36 011115 call not_greater_than 
+0x4f37 011116 copy pdata ,loopcnt 
+0x4f38 011121 arg mem_temp_prepare_write_request ,rega 
+0x4f39 011122 fetch 2 ,mem_prepare_write_offest 
+0x4f3a 011123 iadd rega ,rega 
+0x4f3b 011124 iadd loopcnt ,pdata 
+0x4f3c 011125 store 2 ,mem_prepare_write_offest 
+0x4f3d 011126 fetcht 2 ,mem_prepare_write_len 
+0x4f3e 011127 isub temp ,temp 
+0x4f3f 011128 ncall le_send_att_insert_continue ,zero 
+0x4f40 011129 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f41 011130 arg mem_le_txpayload ,contw 
+0x4f42 011131 copy rega ,contr 
+0x4f43 011132 call memcpy_fast 
+0x4f44 011133 arg 1 ,type 
+0x4f45 011134 branch le_send_not_fill_l2cap_len 
+:      011137 le_send_att_prepare_write_response:
+0x4f46 011138 fetch 2 ,mem_prepare_write_len 
+0x4f47 011139 branch assert ,blank 
+0x4f48 011140 add pdata ,5 ,temp 
+0x4f49 011141 storet 2 ,mem_le_txpayload 
+0x4f4a 011142 arg 18 ,temp 
+0x4f4b 011143 call not_greater_than 
+0x4f4c 011144 copy pdata ,loopcnt 
+0x4f4d 011145 store 2 ,mem_prepare_write_offest 
+0x4f4e 011148 fetcht 2 ,mem_prepare_write_len 
+0x4f4f 011149 isub temp ,temp 
+0x4f50 011150 ncall le_send_att_insert_continue ,zero 
+0x4f51 011151 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f52 011152 arg 0x02 ,type 
+0x4f53 011156 fetch 2 ,mem_prepare_handle 
+0x4f54 011157 store 2 ,mem_le_l2cap + 1 
+0x4f55 011158 fetch 2 ,mem_le_prepare_write_req_offset 
+0x4f56 011159 istore 2 ,contw 
+0x4f57 011164 arg mem_temp_prepare_write_request ,contr 
+0x4f58 011165 call memcpy_fast 
+:      011166 le_send_not_fill_l2cap_len:
+0x4f59 011167 setarg mem_le_txpayload 
+0x4f5a 011168 isub contw ,pdata 
+0x4f5b 011169 sub pdata ,0 ,temp 
+0x4f5c 011170 storet 1 ,mem_le_txlen 
+0x4f5d 011171 branch le_send_non_l2cap 
+:      011174 le_send_att_insert_continue:
+0x4f5e 011175 fetch 3 ,mem_le_xtype_fifo 
+0x4f5f 011176 nbranch le_send_att_insert_cont_next ,blank 
+0x4f60 011177 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x4f61 011178 rtn 
+:      011179 le_send_att_insert_cont_next:
+0x4f62 011180 call le_xtype_fifo_is_near_full 
+0x4f63 011181 nbranch assert ,blank 
+0x4f64 011182 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x4f65 011183 rtn 
+:      011187 le_send_att_execute_write_request:
+0x4f66 011188 force 6 ,temp 
+0x4f67 011189 branch le_send_packet 
+:      011191 le_send_att_execute_write_response:
+0x4f68 011192 force 5 ,temp 
+0x4f69 011193 branch le_send_packet 
+:      011195 le_att_check_notification_enable:
+0x4f6a 011196 set1 mark_ext_patch ,mark 
+0x4f6b 011197 bpatch patch26_7 ,mem_patch26 
+0x4f6c 011198 increase 1 ,temp 
+0x4f6d 011199 call le_att_get_handle_ptr 
+0x4f6e 011200 increase -2 ,contr 
+0x4f6f 011201 ifetch 2 ,contr 
+0x4f70 011202 arg client_charactertic_configuration ,temp 
+0x4f71 011203 isub temp ,null 
+0x4f72 011204 nrtn zero 
+0x4f73 011205 increase 1 ,contr 
+0x4f74 011206 copy contr ,rega 
+0x4f75 011207 ifetch 1 ,contr 
+0x4f76 011208 rtn 
+:      011210 le_send_att_handle_value_notification:
+0x4f77 011211 fetch 2 ,mem_cb_update_notify_value 
+0x4f78 011212 branch callback_func 
+:      011214 le_send_att_handle_value_indication:
+0x4f79 011215 force 6 ,temp 
+0x4f7a 011216 branch le_send_packet 
+:      011218 le_send_att_handle_value_confirmation:
+0x4f7b 011219 force 6 ,temp 
+0x4f7c 011220 branch le_send_packet 
+:      011222 le_send_att_write_command:
+0x4f7d 011223 force 6 ,temp 
+0x4f7e 011224 branch le_send_packet 
+:      011226 le_send_att_signed_write_command:
+0x4f7f 011227 force 6 ,temp 
+0x4f80 011228 branch le_send_packet 
+:      011231 le_send_autolen:
+0x4f81 011232 set1 mark_ext_patch ,mark 
+0x4f82 011233 bpatch patch27_0 ,mem_patch27 
+0x4f83 011234 setarg mem_le_txpayload 
+0x4f84 011235 isub contw ,pdata 
+0x4f85 011236 sub pdata ,0 ,temp 
+0x4f86 011237 branch le_send_packet 
+:      011240 le_send_empty:
+0x4f87 011241 force 0 ,temp 
+0x4f88 011242 force 1 ,type 
+:      011244 le_send_packet:
+0x4f89 011245 set1 mark_ext_patch ,mark 
+0x4f8a 011246 bpatch patch27_1 ,mem_patch27 
+0x4f8b 011247 storet 1 ,mem_le_txlen 
+0x4f8c 011248 compare 2 ,type ,3 
+0x4f8d 011249 nbranch le_send_non_l2cap ,true 
+0x4f8e 011250 add temp ,-4 ,pdata 
+0x4f8f 011251 store 2 ,mem_le_txpayload 
+:      011253 le_send_non_l2cap:
+0x4f90 011254 fetcht 1 ,mem_le_arq 
+0x4f91 011255 call le_xtype_fifo_is_empty 
+:      011256 le_send_non_l2cap1:
+0x4f92 011257 nsetflag blank ,md ,temp 
+:      011258 le_send_non_l2cap2:
+0x4f93 011259 set1 wak ,temp 
+0x4f94 011260 and temp ,0xfc ,pdata 
+0x4f95 011261 ior type ,pdata 
+0x4f96 011262 store 1 ,mem_le_arq 
+0x4f97 011263 and_into 0x1f ,pdata 
+0x4f98 011264 store 1 ,mem_le_txheader 
+0x4f99 011265 set1 mark_ext_patch ,mark 
+0x4f9a 011266 bpatch patch27_2 ,mem_patch27 
+0x4f9b 011267 fetch 1 ,mem_le_txheader 
+0x4f9c 011268 compare 1 ,type ,3 
+0x4f9d 011269 nbranch le_send_no_txlen ,true 
+0x4f9e 011270 fetch 1 ,mem_le_txlen 
+0x4f9f 011271 rtn blank 
+:      011272 le_send_no_txlen:
+0x4fa0 011273 fetch 7 ,mem_le_txheader + 1 
+0x4fa1 011274 fetch 1 ,mem_le_state 
+0x4fa2 011275 rtnbit0 lestate_encryption 
+0x4fa3 011276 call load_sk 
+0x4fa4 011277 branch le_encrypt 
+:      011279 le_parse:
+0x4fa5 011280 set1 mark_ext_patch ,mark 
+0x4fa6 011281 bpatch patch27_3 ,mem_patch27 
+0x4fa7 011282 call le_xtype_fifo_is_full 
+0x4fa8 011283 nbranch assert ,blank 
+0x4fa9 011284 nrtn blank 
+0x4faa 011285 fetch 1 ,mem_le_rxbuf + 1 
+0x4fab 011286 rtn blank 
+0x4fac 011287 fetch 1 ,mem_le_rxbuf 
+0x4fad 011288 compare 1 ,pdata ,3 
+0x4fae 011289 branch le_parse_continue ,true 
+0x4faf 011290 fetch 7 ,mem_le_rxbuf + 1 
+0x4fb0 011291 fetch 1 ,mem_le_rxbuf 
+0x4fb1 011292 compare 2 ,pdata ,3 
+0x4fb2 011293 branch le_parse_l2cap ,true 
+:      011294 le_parse0:
+0x4fb3 011295 fetch 1 ,mem_le_rxbuf + 2 
+0x4fb4 011296 store 1 ,mem_le_rx_ll_opcode 
+0x4fb5 011297 copy pdata ,regc 
+0x4fb6 011298 set1 mark_ext_patch ,mark 
+0x4fb7 011299 bpatch patch27_4 ,mem_patch27 
+0x4fb8 011300 copy regc ,pdata 
+0x4fb9 011301 beq ll_connection_update_req ,le_parse_connection_update_req 
+0x4fba 011302 beq ll_channel_map_req ,le_parse_channel_map_req 
+0x4fbb 011303 beq ll_terminate_ind ,le_parse_terminate_ind 
+0x4fbc 011304 beq ll_enc_req ,le_parse_enc_req 
+0x4fbd 011305 beq ll_enc_rsp ,le_parse_enc_rsp 
+0x4fbe 011306 beq ll_start_enc_req ,le_parse_start_enc_req 
+0x4fbf 011307 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+0x4fc0 011308 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+0x4fc1 011309 beq ll_feature_req ,le_parse_feature_req 
+0x4fc2 011310 beq ll_feature_rsp ,le_parse_feature_rsp 
+0x4fc3 011311 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+0x4fc4 011312 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+0x4fc5 011313 beq ll_version_ind ,le_parse_version_ind 
+0x4fc6 011314 beq ll_reject_ind ,le_parse_reject_ind 
+0x4fc7 011315 beq ll_ping_req ,le_parse_ping_req 
+0x4fc8 011316 store 1 ,mem_le_ll_cur_opcode 
+0x4fc9 011317 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+0x4fca 011318 branch le_xtype_fifo_in 
+:      011320 le_parse_l2cap:
+0x4fcb 011321 fetch 1 ,mem_le_rxbuf + 1 
+0x4fcc 011322 and pdata ,0x1f ,pdata 
+0x4fcd 011323 rtn blank 
+0x4fce 011324 fetch 2 ,mem_le_rxbuf + 2 
+0x4fcf 011325 store 2 ,mem_le_l2cap_pdu_length 
+0x4fd0 011326 fetch 2 ,mem_le_rxbuf + 4 
+0x4fd1 011327 beq le_l2cap_cid_att ,le_parse_att 
+0x4fd2 011328 beq le_l2cap_cid_smp ,le_parse_smp 
+0x4fd3 011329 rtn 
+:      011331 le_parse_continue_att:
+0x4fd4 011332 jam le_continue_flag_rx ,mem_le_continue_flag 
+0x4fd5 011333 fetch 1 ,mem_le_att_opcode 
+0x4fd6 011334 beq attop_write_request ,le_parse_l2cap_continue_write_request 
+0x4fd7 011335 beq attop_prepare_write_request ,le_parse_l2cap_continue_prepare_write_request 
+0x4fd8 011336 beq attop_write_command ,le_parse_l2cap_continue_write_command 
+0x4fd9 011337 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fda 011338 rtn 
+:      011341 le_parse_l2cap_continue_common:
+0x4fdb 011342 fetch 1 ,mem_le_rxbuf + 1 
+0x4fdc 011343 icopy regb 
+0x4fdd 011344 arg mem_le_rxbuf + 2 ,rega 
+0x4fde 011345 call le_writeatt_cb 
+0x4fdf 011347 fetch 1 ,mem_le_rxbuf + 1 
+0x4fe0 011348 fetcht 2 ,mem_le_buff_len 
+0x4fe1 011349 iadd temp ,pdata 
+0x4fe2 011351 store 2 ,mem_le_buff_len 
+0x4fe3 011352 fetcht 2 ,mem_le_buff_len_all 
+0x4fe4 011353 isub temp ,null 
+0x4fe5 011354 rtn 
+:      011356 le_parse_l2cap_continue_write_command:
+0x4fe6 011357 call le_parse_l2cap_continue_common 
+0x4fe7 011358 nrtn zero 
+0x4fe8 011359 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fe9 011360 rtn 
+:      011362 le_parse_l2cap_continue_write_request:
+0x4fea 011363 call le_parse_l2cap_continue_common 
+0x4feb 011364 nrtn zero 
+0x4fec 011365 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fed 011366 branch le_parse_att_write_request_end 
+:      011368 le_parse_l2cap_continue_prepare_write_request:
+0x4fee 011369 fetcht 2 ,mem_prepare_write_len 
+0x4fef 011370 fetch 1 ,mem_le_rxbuf + 1 
+0x4ff0 011371 icopy loopcnt 
+0x4ff1 011372 iadd temp ,pdata 
+0x4ff2 011373 store 2 ,mem_prepare_write_len 
+0x4ff3 011375 arg mem_temp_prepare_write_request ,pdata 
+0x4ff4 011376 iadd temp ,contw 
+0x4ff5 011377 arg mem_le_rxbuf + 2 ,contr 
+0x4ff6 011378 call memcpy_fast 
+0x4ff7 011380 call le_parse_l2cap_continue_common 
+0x4ff8 011381 nrtn zero 
+0x4ff9 011382 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4ffa 011383 branch le_parse_att_prepare_write_request_end 
+:      011389 le_parse_smp:
+0x4ffb 011390 set1 mark_ext_patch ,mark 
+0x4ffc 011391 bpatch patch27_5 ,mem_patch27 
+0x4ffd 011392 ifetch 1 ,contr 
+0x4ffe 011393 beq smp_pairing_request ,le_parse_smp_pairing_request 
+0x4fff 011394 beq smp_pairing_response ,le_parse_smp_pairing_response 
+0x5000 011395 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+0x5001 011396 beq smp_pairing_random ,le_parse_smp_pairing_random 
+0x5002 011397 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+0x5003 011398 beq smp_encryption_information ,le_parse_smp_encryption_information 
+0x5004 011399 beq smp_master_identification ,le_parse_smp_master_identification 
+0x5005 011400 beq smp_identity_information ,le_parse_smp_identity_information 
+0x5006 011401 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+0x5007 011402 beq smp_signing_information ,le_parse_smp_signing_information 
+0x5008 011403 beq smp_security_request ,le_parse_smp_security_request 
+0x5009 011404 beq smp_pairing_public_key ,le_parse_smp_public_key 
+0x500a 011405 beq smp_pairing_dhkey_check ,le_parse_smp_dhkey_check 
+0x500b 011406 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x500c 011407 branch le_xtype_fifo_in 
+:      011409 le_parse_att:
+0x500d 011410 set1 mark_ext_patch ,mark 
+0x500e 011411 bpatch patch27_6 ,mem_patch27 
+0x500f 011412 ifetch 3 ,contr 
+0x5010 011413 store 3 ,mem_le_att_opcode 
+0x5011 011415 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+0x5012 011416 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+0x5013 011417 beq attop_find_information_request ,le_parse_att_find_information_request 
+0x5014 011419 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+0x5015 011421 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+0x5016 011423 beq attop_read_request ,le_parse_att_read_request 
+0x5017 011425 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+0x5018 011427 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+0x5019 011429 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+0x501a 011431 beq attop_write_request ,le_parse_att_write_request 
+0x501b 011433 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+0x501c 011435 beq attop_execute_write_request ,le_parse_att_execute_write_request 
+0x501d 011440 beq attop_write_command ,le_parse_att_write_command 
+0x501e 011442 rtn 
+:      011445 le_parse_connection_update_req:
+0x501f 011446 ifetch 9 ,contr 
+0x5020 011447 store 9 ,mem_le_new_param 
+0x5021 011448 ifetch 2 ,contr 
+0x5022 011449 store 2 ,mem_le_instant 
+0x5023 011450 fetch 1 ,mem_le_state 
+0x5024 011451 set1 lestate_update_param ,pdata 
+0x5025 011452 store 1 ,mem_le_state 
+0x5026 011453 fetch 1 ,mem_device_option 
+0x5027 011454 rtnne dvc_op_shutter 
+0x5028 011455 jam 0 ,mem_lpm_mode 
+0x5029 011456 jam 30 ,mem_shutter_conn_update_timer 
+0x502a 011457 rtn 
+:      011459 le_parse_channel_map_req:
+0x502b 011460 ifetch 5 ,contr 
+0x502c 011461 store 5 ,mem_le_new_map 
+0x502d 011462 ifetch 2 ,contr 
+0x502e 011463 store 2 ,mem_le_instant 
+0x502f 011464 fetch 1 ,mem_le_state 
+0x5030 011465 set1 lestate_update_map ,pdata 
+0x5031 011466 store 1 ,mem_le_state 
+0x5032 011467 rtn 
+:      011469 le_parse_terminate_ind:
+0x5033 011470 fetch 1 ,mem_device_option 
+0x5034 011471 bne dvc_op_shutter ,le_parse_terminate_ind_common 
+0x5035 011472 jam 1 ,mem_shutter_key_data_flag_1 
+:      011473 le_parse_terminate_ind_common:
+0x5036 011474 setarg 20 
+0x5037 011475 store 2 ,mem_le_superto 
+0x5038 011476 rtn 
+:      011478 le_parse_enc_req:
+0x5039 011479 ifetch 8 ,contr 
+0x503a 011480 store 8 ,mem_le_rand 
+0x503b 011481 ifetch 2 ,contr 
+0x503c 011482 store 2 ,mem_le_ediv 
+0x503d 011483 ifetch 8 ,contr 
+0x503e 011484 store 8 ,mem_le_skdm 
+0x503f 011485 ifetch 4 ,contr 
+0x5040 011486 store 4 ,mem_le_ivm 
+0x5041 011487 jam xt_ll_enc_rsp ,mem_fifo_temp 
+0x5042 011488 call le_xtype_fifo_in 
+0x5043 011489 jam flag_le_enc_start ,mem_le_enc_state 
+0x5044 011490 fetch 1 ,mem_le_pairing_state 
+0x5045 011491 rtneq flag_le_pairing_after_auth 
+0x5046 011492 fetch 1 ,mem_device_option 
+0x5047 011493 beq dvc_op_shutter ,load_device_list_mode_4_shutter 
+0x5048 011494 rtnne dvc_op_module 
+0x5049 011495 branch load_device_list_mode_4 
+:      011497 le_parse_enc_rsp:
+0x504a 011498 ifetch 8 ,contr 
+0x504b 011499 store 8 ,mem_le_skds 
+0x504c 011500 ifetch 4 ,contr 
+0x504d 011501 store 4 ,mem_le_ivs 
+0x504e 011502 branch generate_sk 
+:      011504 le_parse_start_enc_req:
+0x504f 011505 fetch 1 ,mem_le_state 
+0x5050 011506 set1 lestate_encryption ,pdata 
+0x5051 011507 store 1 ,mem_le_state 
+0x5052 011508 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5053 011509 branch le_xtype_fifo_in 
+:      011511 le_parse_start_enc_rsp:
+0x5054 011512 rtn master 
+0x5055 011513 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5056 011514 call le_xtype_fifo_in 
+0x5057 011515 jam bt_evt_le_start_enc ,mem_fifo_temp 
+0x5058 011516 branch ui_ipc_send_event 
+:      011518 le_parse_unknown_rsp:
+0x5059 011519 rtn 
+:      011521 le_parse_feature_req:
+0x505a 011522 jam xt_ll_feature_rsp ,mem_fifo_temp 
+0x505b 011523 branch le_xtype_fifo_in 
+:      011525 le_parse_feature_rsp:
+0x505c 011526 rtn 
+:      011528 le_parse_pause_enc_req:
+0x505d 011529 jam flag_le_enc_pause ,mem_le_enc_state 
+0x505e 011530 jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+0x505f 011531 call le_xtype_fifo_in 
+0x5060 011532 jam bt_evt_le_pause_enc ,mem_fifo_temp 
+0x5061 011533 branch ui_ipc_send_event 
+:      011536 le_parse_pause_enc_rsp:
+0x5062 011537 rtn 
+:      011539 le_parse_ping_req:
+0x5063 011540 jam xt_ll_ping_rsp ,mem_fifo_temp 
+0x5064 011541 branch le_xtype_fifo_in 
+:      011543 le_parse_version_ind:
+0x5065 011544 rtn master 
+0x5066 011545 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5067 011546 branch le_xtype_fifo_in 
+:      011548 le_parse_reject_ind:
+0x5068 011549 rtn 
+:      011552 le_parse_smp_pairing_request:
+0x5069 011553 store 1 ,mem_le_preq 
+0x506a 011554 ifetch 6 ,contr 
+0x506b 011555 istore 6 ,contw 
+0x506c 011556 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x506d 011557 call le_xtype_fifo_in 
+0x506e 011558 fetch 1 ,mem_device_option 
+0x506f 011559 beq dvc_op_shutter ,le_parse_smp_pairing_request_shutter 
+0x5070 011560 call le_check_master_support_secure_connect 
+0x5071 011561 jam flag_le_pairing_start ,mem_le_pairing_state 
+0x5072 011562 fetch 1 ,mem_le_preq_iocap 
+0x5073 011563 beq flag_iocap_displayonly ,le_set_tk_0 
+0x5074 011564 beq flag_iocap_displayyesno ,le_set_tk_0 
+0x5075 011565 beq flag_iocap_noinputnooutput ,le_set_tk_0 
+0x5076 011566 fetch 1 ,mem_le_pairing_mode 
+0x5077 011567 beq le_pairing_mode_lagacy_passkey ,le_genernate_tk 
+:      011568 le_set_tk_0:
+0x5078 011569 arg 0 ,pdata 
+0x5079 011570 store 4 ,mem_le_tk 
+0x507a 011571 rtn 
+:      011572 le_parse_smp_pairing_request_shutter:
+0x507b 011573 jam 1 ,mem_shutter_key_data_flag 
+0x507c 011574 rtn 
+:      011576 le_genernate_tk:
+0x507d 011577 arg mem_le_tk ,rega 
+0x507e 011578 copy rega ,contw 
+0x507f 011579 arg 3 ,loopcnt 
+0x5080 011580 call generate_random_loop 
+0x5081 011581 fetch 2 ,mem_le_tk + 2 
+0x5082 011582 and_into 0x7 ,pdata 
+0x5083 011583 store 2 ,mem_le_tk + 2 
+0x5084 011584 jam bt_evt_le_tk_generate ,mem_fifo_temp 
+0x5085 011585 branch ui_ipc_send_event 
+:      011587 le_check_master_support_secure_connect:
+0x5086 011588 fetch 1 ,mem_le_preq_auth 
+0x5087 011589 rtnbit1 le_auth_secure_connection_pairing_bit 
+0x5088 011590 fetch 1 ,mem_le_pairing_mode 
+0x5089 011591 rtnbit0 le_pairing_mode_secure_connect_bit 
+0x508a 011592 branch app_ble_disconnect 
+:      011595 le_parse_smp_pairing_response:
+0x508b 011596 store 1 ,mem_le_pres 
+0x508c 011597 ifetch 6 ,contr 
+0x508d 011598 istore 6 ,contw 
+0x508e 011599 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x508f 011600 branch le_xtype_fifo_in 
+:      011602 le_parse_smp_pairing_confirm:
+0x5090 011603 copy contr ,rega 
+0x5091 011604 fetch 1 ,mem_le_pairing_mode 
+0x5092 011605 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_confirm_secure_passkey 
+0x5093 011606 copy rega ,contr 
+0x5094 011607 arg mem_le_rconfirm ,contw 
+0x5095 011608 call memcpy16 
+0x5096 011609 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x5097 011610 branch le_xtype_fifo_in ,master 
+0x5098 011611 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x5099 011612 branch le_xtype_fifo_in 
+:      011613 le_parse_smp_pairing_confirm_secure_passkey:
+0x509a 011614 copy rega ,contr 
+0x509b 011615 arg mem_le_rconfirm ,contw 
+0x509c 011616 call memcpy16 
+0x509d 011617 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x509e 011618 jam le_sc_stat_passkey_wait_confirm ,mem_le_secure_connect_state 
+0x509f 011619 rtn 
+:      011621 le_parse_smp_pairing_random:
+0x50a0 011622 copy contr ,rega 
+0x50a1 011623 fetch 1 ,mem_le_secure_connect_enable 
+0x50a2 011624 beq 1 ,le_parse_smp_pairing_random_sc 
+0x50a3 011625 copy rega ,contr 
+0x50a4 011626 call authenticate_rconfirm 
+0x50a5 011627 branch le_parse_smp_pairing_random_success ,zero 
+:      011628 le_pairing_failed:
+0x50a6 011629 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x50a7 011630 call le_xtype_fifo_in 
+:      011631 le_parse_smp_pairing_failed:
+0x50a8 011632 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x50a9 011633 jam bt_evt_le_pairing_fail ,mem_fifo_temp 
+0x50aa 011634 branch ui_ipc_send_event 
+:      011636 le_parse_smp_pairing_random_sc:
+0x50ab 011637 arg mem_le_mrand ,contw 
+0x50ac 011638 copy rega ,contr 
+0x50ad 011639 call memcpy16 
+0x50ae 011640 fetch 1 ,mem_le_pairing_mode 
+0x50af 011641 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_random_sc_passkey 
+0x50b0 011642 call function_g2 
+0x50b1 011645 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50b2 011646 call le_xtype_fifo_in 
+0x50b3 011647 fetch 1 ,mem_le_pairing_mode 
+0x50b4 011648 beq le_pairing_mode_secure_connect_numeric ,module_hci_event_le_gkey 
+0x50b5 011649 rtn 
+:      011651 le_parse_smp_pairing_random_sc_passkey:
+0x50b6 011652 call function_f4_ca 
+0x50b7 011653 arg mem_aes_cmac_temp ,contw 
+0x50b8 011654 call load_inverse_result 
+0x50b9 011655 arg mem_aes_cmac_temp ,rega 
+0x50ba 011656 arg mem_le_rconfirm ,regb 
+0x50bb 011657 arg 16 ,loopcnt 
+0x50bc 011658 call string_compare 
+0x50bd 011659 nbranch le_dhkey_check_fail ,zero 
+0x50be 011660 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50bf 011661 branch le_xtype_fifo_in 
+:      011663 le_parse_smp_pairing_random_success:
+0x50c0 011664 call generate_stk 
+0x50c1 011665 jam bt_evt_le_pairing_success ,mem_fifo_temp 
+0x50c2 011666 call ui_ipc_send_event 
+0x50c3 011667 jam 1 ,mem_ltk_exists 
+0x50c4 011668 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x50c5 011669 jam xt_ll_enc_req ,mem_fifo_temp 
+0x50c6 011670 branch le_xtype_fifo_in ,master 
+0x50c7 011671 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50c8 011672 branch le_xtype_fifo_in 
+:      011676 le_parse_smp_public_key:
+0x50c9 011677 fetch 1 ,mem_le_rxbuf + 1 
+0x50ca 011678 increase -5 ,pdata 
+0x50cb 011679 store 1 ,mem_le_public_length 
+0x50cc 011680 copy pdata ,loopcnt 
+0x50cd 011681 arg mem_le_pubkey_remote_x_256 ,contw 
+0x50ce 011682 increase 5 ,contr 
+0x50cf 011683 branch memcpy_fast 
+:      011685 le_parse_smp_dhkey_check:
+0x50d0 011686 arg mem_sp_confirm_remote ,contw 
+0x50d1 011687 call memcpy16 
+0x50d2 011688 jam le_sc_stat_receive_dhkey ,mem_le_secure_connect_state 
+0x50d3 011689 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x50d4 011690 rtn 
+:      011691 le_parse_smp_encryption_information:
+0x50d5 011692 arg mem_le_peer_ltk ,contw 
+0x50d6 011693 branch memcpy16 
+:      011695 le_parse_smp_master_identification:
+0x50d7 011696 rtn 
+:      011698 le_parse_smp_identity_information:
+0x50d8 011699 arg mem_le_irk ,contw 
+0x50d9 011700 call memcpy16 
+0x50da 011701 fetch 1 ,mem_le_conn_peer_addr_type 
+0x50db 011702 rtneq master_public_addr 
+0x50dc 011703 fetch 1 ,mem_le_plap + 5 
+0x50dd 011704 compare 0xc0 ,pdata ,0xc0 
+0x50de 011705 rtn true 
+0x50df 011706 branch app_ble_store_reconn_info 
+:      011708 le_parse_smp_identity_address_information:
+0x50e0 011709 jam flag_le_enc_end ,mem_le_enc_state 
+0x50e1 011710 jam flag_le_pairing_end ,mem_le_pairing_state 
+0x50e2 011711 rtn 
+:      011713 le_parse_smp_signing_information:
+0x50e3 011714 rtn 
+:      011716 le_parse_smp_security_request:
+0x50e4 011717 rtn 
+:      011720 le_parse_att_exchange_mtu_response:
+0x50e5 011721 fetch 2 ,mem_le_rxbuf + 7 
+0x50e6 011722 store 2 ,mem_le_remote_mtu 
+0x50e7 011723 rtn 
+:      011725 le_parse_att_exchange_mtu_request:
+0x50e8 011726 call le_parse_att_exchange_mtu_response 
+0x50e9 011727 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x50ea 011728 branch le_xtype_fifo_in 
+:      011730 le_parse_att_find_information_request:
+0x50eb 011731 call le_get_search_handle_start_end_common 
+0x50ec 011732 jam attop_find_information_response ,mem_fifo_temp 
+0x50ed 011733 branch le_xtype_fifo_in 
+:      011737 le_parse_att_find_by_type_value_request:
+0x50ee 011738 call le_get_search_handle_start_end_common 
+0x50ef 011739 ifetch 2 ,contr 
+0x50f0 011740 store 2 ,mem_le_search_uuid 
+0x50f1 011741 call store_contr 
+0x50f2 011742 arg mem_le_search_att_type_length ,contw 
+0x50f3 011743 fetch 2 ,mem_le_l2cap_pdu_length 
+0x50f4 011744 increase -7 ,pdata 
+0x50f5 011745 call le_get_search_common2 
+0x50f6 011746 jam attop_find_by_type_value_response ,mem_fifo_temp 
+0x50f7 011747 branch le_xtype_fifo_in 
+:      011751 le_parse_att_read_by_type_request:
+0x50f8 011752 call le_get_search_handle_start_end_common 
+0x50f9 011753 call le_get_search_att_uuid 
+0x50fa 011754 jam attop_read_by_type_response ,mem_fifo_temp 
+0x50fb 011755 branch le_xtype_fifo_in 
+:      011758 le_get_search_handle_start_end_common:
+0x50fc 011759 rshift8 pdata ,pdata 
+0x50fd 011760 store 2 ,mem_le_search_handle_start 
+0x50fe 011761 ifetch 2 ,contr 
+0x50ff 011762 store 2 ,mem_le_search_handle_end 
+0x5100 011763 rtn 
+:      011765 le_get_search_att_type:
+0x5101 011766 call store_contr 
+0x5102 011767 arg mem_le_search_att_type_length ,contw 
+:      011768 le_get_search_common:
+0x5103 011769 fetch 2 ,mem_le_l2cap_pdu_length 
+0x5104 011770 increase -5 ,pdata 
+:      011771 le_get_search_common2:
+0x5105 011772 istore 1 ,contw 
+0x5106 011773 copy pdata ,loopcnt 
+0x5107 011774 call get_contr 
+0x5108 011775 branch memcpy_fast 
+:      011777 le_get_search_att_uuid:
+0x5109 011778 call store_contr 
+0x510a 011779 arg mem_le_search_uuid_length ,contw 
+0x510b 011780 branch le_get_search_common 
+:      011785 le_parse_att_read_request:
+0x510c 011786 fetch 2 ,mem_le_rxbuf + 7 
+0x510d 011787 store 2 ,mem_le_att_handle 
+0x510e 011788 jam attop_read_response ,mem_fifo_temp 
+0x510f 011789 branch le_xtype_fifo_in 
+:      011793 le_parse_att_read_blob_request:
+0x5110 011794 ifetch 2 ,contr 
+0x5111 011795 store 2 ,mem_le_att_offset 
+0x5112 011796 jam attop_read_blob_response ,mem_fifo_temp 
+0x5113 011797 branch le_xtype_fifo_in 
+:      011800 le_parse_att_read_multiple_request:
+0x5114 011801 fetch 1 ,mem_le_rxbuf + 1 
+0x5115 011802 increase -5 ,pdata 
+0x5116 011803 rshift pdata ,pdata 
+0x5117 011804 store 1 ,mem_le_temp 
+0x5118 011805 jam attop_read_multiple_response ,mem_fifo_temp 
+0x5119 011806 branch le_xtype_fifo_in 
+:      011809 le_parse_att_read_by_group_type_request:
+0x511a 011810 call le_get_search_handle_start_end_common 
+0x511b 011811 call le_get_search_att_type 
+0x511c 011813 jam attop_read_by_group_type_response ,mem_fifo_temp 
+0x511d 011814 branch le_xtype_fifo_in 
+:      011816 le_parse_att_write_command:
+0x511e 011817 call le_parse_att_write_common 
+0x511f 011818 branch le_check_long_packet_patch 
+:      011820 le_parse_att_write_request:
+0x5120 011821 call le_parse_att_write_common 
+0x5121 011822 call le_check_long_packet_patch 
+0x5122 011823 nrtn zero 
+:      011824 le_parse_att_write_request_end:
+0x5123 011825 jam attop_write_response ,mem_fifo_temp 
+0x5124 011826 branch le_xtype_fifo_in 
+:      011828 le_check_long_packet_patch:
+0x5125 011829 fetch 1 ,mem_le_rxbuf + 1 
+0x5126 011830 increase -4 ,pdata 
+0x5127 011831 store 2 ,mem_le_buff_len 
+0x5128 011832 increase -3 ,pdata 
+0x5129 011834 ifetcht 2 ,contr 
+0x512a 011835 storet 2 ,mem_le_buff_len_all 
+0x512b 011836 storet 2 ,mem_le_buff_data_len_all 
+0x512c 011837 increase -3 ,temp 
+0x512d 011838 isub temp ,null 
+0x512e 011839 rtn 
+:      011841 le_parse_att_write_common:
+0x512f 011842 fetch 1 ,mem_le_rxbuf + 1 
+0x5130 011843 increase -7 ,pdata 
+0x5131 011844 icopy loopcnt 
+0x5132 011845 copy loopcnt ,regb 
+0x5133 011846 fetch 1 ,mem_le_flag 
+0x5134 011847 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_write_common1 
+0x5135 011848 fetcht 2 ,mem_le_att_handle 
+0x5136 011849 call le_att_get_handle_ptr 
+0x5137 011850 rtn blank 
+0x5138 011851 ifetch 1 ,contr 
+0x5139 011852 isub loopcnt ,null 
+0x513a 011853 branch le_parse_att_write_common0 ,positive 
+0x513b 011854 copy pdata ,loopcnt 
+:      011855 le_parse_att_write_common0:
+0x513c 011856 copy contr ,contw 
+0x513d 011857 copy loopcnt ,regb 
+0x513e 011858 arg mem_le_rxbuf + 9 ,contr 
+0x513f 011859 call memcpy_fast 
+:      011860 le_parse_att_write_common1:
+0x5140 011861 arg mem_le_rxbuf + 9 ,rega 
+0x5141 011862 branch le_writeatt_cb 
+:      011865 le_parse_att_prepare_write_request:
+0x5142 011866 fetch 1 ,mem_le_rxbuf + 1 
+0x5143 011867 increase -4 ,pdata 
+0x5144 011868 store 2 ,mem_le_buff_len 
+0x5145 011869 ifetcht 2 ,contr 
+0x5146 011870 storet 2 ,mem_le_buff_len_all 
+0x5147 011871 increase -2 ,temp 
+0x5148 011872 storet 2 ,mem_le_buff_data_len_all 
+0x5149 011874 fetch 1 ,mem_le_rxbuf + 1 
+0x514a 011875 increase -9 ,pdata 
+0x514b 011876 store 2 ,mem_prepare_write_len 
+0x514c 011878 icopy loopcnt 
+0x514d 011879 copy loopcnt ,regb 
+0x514e 011880 fetch 1 ,mem_le_flag 
+0x514f 011881 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_prepare_write_request1 
+0x5150 011882 fetcht 2 ,mem_le_att_handle 
+0x5151 011883 call le_att_get_handle_ptr 
+0x5152 011884 branch le_parse_att_prepare_write_request_end ,blank 
+0x5153 011885 ifetch 1 ,contr 
+0x5154 011886 isub loopcnt ,null 
+0x5155 011887 branch le_parse_att_prepare_write_request0 ,positive 
+0x5156 011888 copy pdata ,loopcnt 
+:      011889 le_parse_att_prepare_write_request0:
+0x5157 011890 copy contr ,contw 
+0x5158 011891 copy loopcnt ,regb 
+0x5159 011892 arg mem_le_rxbuf + 11 ,contr 
+0x515a 011893 call memcpy_fast 
+:      011895 le_parse_att_prepare_write_request1:
+0x515b 011896 copy regb ,loopcnt 
+0x515c 011897 arg mem_temp_prepare_write_request ,contw 
+0x515d 011898 arg mem_le_rxbuf + 11 ,contr 
+0x515e 011899 call memcpy_fast 
+0x515f 011901 arg mem_le_rxbuf + 11 ,rega 
+0x5160 011902 fetch 2 ,mem_le_rxbuf + 9 
+0x5161 011903 store 2 ,mem_le_prepare_write_req_offset 
+0x5162 011904 fetcht 2 ,mem_le_att_handle 
+0x5163 011905 storet 2 ,mem_prepare_handle 
+0x5164 011907 call le_writeatt_cb 
+0x5165 011909 fetch 2 ,mem_le_buff_len 
+0x5166 011910 fetcht 2 ,mem_le_buff_len_all 
+0x5167 011911 isub temp ,null 
+0x5168 011912 nrtn zero 
+:      011913 le_parse_att_prepare_write_request_end:
+0x5169 011914 jam attop_prepare_write_response ,mem_fifo_temp 
+0x516a 011915 branch le_xtype_fifo_in 
+:      011919 le_parse_att_execute_write_request:
+0x516b 011920 jam attop_execute_write_response ,mem_fifo_temp 
+0x516c 011921 branch le_xtype_fifo_in 
+:      011924 le_writeatt_cb:
+0x516d 011925 fetch 2 ,mem_cb_att_write 
+0x516e 011926 rtn blank 
+0x516f 011927 iforce pc 
+:      011929 le_supervision_update:
+0x5170 011930 fetcht 4 ,mem_le_supervision_timer 
+0x5171 011931 call get_clkbt 
+0x5172 011932 isub temp ,timeup 
+0x5173 011933 deposit timeup 
+0x5174 011934 fetcht 2 ,mem_le_superto 
+0x5175 011935 lshift4 temp ,temp 
+0x5176 011936 lshift temp ,temp 
+0x5177 011937 isub temp ,pdata 
+0x5178 011938 rtn 
+:      011940 le_supervision_flush:
+0x5179 011941 call get_clkbt 
+0x517a 011942 store 4 ,mem_le_supervision_timer 
+0x517b 011943 rtn 
+:      011947 le_adv:
+0x517c 011948 jam 36 ,mem_le_ch_mapped 
+:      011949 le_adv_loop:
+0x517d 011950 set1 mark_ext_patch ,mark 
+0x517e 011951 bpatch patch27_7 ,mem_patch27 
+0x517f 011952 fetch 1 ,mem_le_adv_enable 
+0x5180 011953 rtn blank 
+0x5181 011954 arg le_adv_interval_timer ,queue 
+0x5182 011955 call timer_check 
+0x5183 011956 nrtn blank 
+0x5184 011957 disable master 
+0x5185 011958 enable swfine 
+0x5186 011959 call le_init_adv 
+0x5187 011960 call le_next_adv_channel 
+0x5188 011961 call le_send_adv_ind 
+0x5189 011962 nbranch le_adv_not_match ,match 
+0x518a 011963 fetch 1 ,mem_le_req_rcv 
+0x518b 011964 increase 1 ,pdata 
+0x518c 011965 store 1 ,mem_le_req_rcv 
+0x518d 011966 set1 mark_ext_patch ,mark 
+0x518e 011967 bpatch patch28_0 ,mem_patch28 
+0x518f 011968 fetch 1 ,mem_le_rxbuf 
+0x5190 011969 and pdata ,0x0f ,pdata 
+0x5191 011970 beq scan_req ,le_send_scan_response 
+0x5192 011971 beq connect_req ,le_parse_connect_req 
+:      011972 le_adv_not_match:
+0x5193 011973 nop 10000 
+0x5194 011974 fetch 1 ,mem_le_ch_mapped 
+0x5195 011975 bne 39 ,le_adv_loop 
+0x5196 011976 arg le_adv_interval_timer ,queue 
+0x5197 011977 fetch 2 ,mem_le_adv_interval_max 
+0x5198 011978 branch timer_init 
+:      011981 le_receive_window_size:
+0x5199 011982 set1 mark_ext_patch ,mark 
+0x519a 011983 bpatch patch28_1 ,mem_patch28 
+0x519b 011984 fetch 1 ,mem_le_peer_sca 
+0x519c 011985 call le_sca_map 
+0x519d 011986 fetch 2 ,mem_le_tsniff 
+0x519e 011987 imul32 temp ,pdata 
+0x519f 011988 arg 375 ,temp 
+0x51a0 011989 imul32 temp ,pdata 
+0x51a1 011990 arg 100000 ,temp 
+0x51a2 011991 idiv temp 
+0x51a3 011992 fetch 1 ,mem_le_window_size 
+0x51a4 011993 arg 20000 ,temp 
+0x51a5 011994 imul32 temp ,pdata 
+0x51a6 011995 store 4 ,mem_le_transmit_window 
+0x51a7 011996 set1 mark_ext_patch ,mark 
+0x51a8 011997 bpatch patch28_2 ,mem_patch28 
+0x51a9 011998 fetch 2 ,mem_rx_window_sniff 
+0x51aa 011999 call wait_div_end 
+0x51ab 012000 quotient temp 
+0x51ac 012001 iadd temp ,pdata 
+0x51ad 012002 store 2 ,mem_le_receive_window 
+0x51ae 012003 rtn 
+:      012005 le_parse_connect_req:
+0x51af 012006 set1 mark_ext_patch ,mark 
+0x51b0 012007 bpatch patch28_3 ,mem_patch28 
+0x51b1 012008 fetch 6 ,mem_le_rxbuf + 8 
+0x51b2 012009 fetcht 6 ,mem_le_lap 
+0x51b3 012010 isub temp ,null 
+0x51b4 012011 nrtn zero 
+0x51b5 012012 call le_scan_check_sender_addr_type 
+0x51b6 012013 copy rega ,pdata 
+0x51b7 012014 store 1 ,mem_le_conn_peer_addr_type 
+0x51b8 012015 fetch 7 ,mem_le_rxbuf + 21 
+0x51b9 012016 store 7 ,mem_tmp_buffer 
+0x51ba 012017 ifetch 8 ,contr 
+0x51bb 012018 istore 8 ,contw 
+0x51bc 012019 fetch 6 ,mem_le_rxbuf + 2 
+0x51bd 012020 store 6 ,mem_le_plap 
+0x51be 012021 set1 mark_ext_patch ,mark 
+0x51bf 012022 bpatch patch28_4 ,mem_patch28 
+0x51c0 012023 increase 6 ,contr 
+0x51c1 012024 ifetch 8 ,contr 
+0x51c2 012025 store 8 ,mem_le_access 
+0x51c3 012026 ifetcht 2 ,contr 
+0x51c4 012027 lshift2 temp ,temp 
+0x51c5 012028 ifetch 2 ,contr 
+0x51c6 012029 lshift2 pdata ,pdata 
+0x51c7 012030 store 2 ,mem_le_tsniff 
+0x51c8 012031 store 4 ,mem_le_anchor 
+0x51c9 012032 isub temp ,pdata 
+0x51ca 012033 add pdata ,-2 ,clke_bt 
+0x51cb 012034 ifetch 9 ,contr 
+0x51cc 012035 store 9 ,mem_le_slave_latency 
+0x51cd 012036 set1 mark_ext_patch ,mark 
+0x51ce 012037 bpatch patch28_5 ,mem_patch28 
+0x51cf 012038 ifetch 1 ,contr 
+0x51d0 012039 rshift4 pdata ,temp 
+0x51d1 012040 rshift temp ,temp 
+0x51d2 012041 storet 1 ,mem_le_peer_sca 
+0x51d3 012042 and_into 0x1f ,pdata 
+0x51d4 012043 store 1 ,mem_le_hop 
+0x51d5 012044 call le_receive_window_size 
+0x51d6 012045 call le_calc_channel_map 
+0x51d7 012046 call le_init_slave 
+0x51d8 012047 call context_new 
+0x51d9 012048 nrtn zero 
+0x51da 012049 set1 mark_ext_patch ,mark 
+0x51db 012050 bpatch patch28_6 ,mem_patch28 
+0x51dc 012051 call calc_clke_offset 
+0x51dd 012052 jam bt_evt_le_connected ,mem_fifo_temp 
+0x51de 012053 call ui_ipc_send_event 
+0x51df 012055 branch context_save 
+:      012058 le_init_attlist_search:
+0x51e0 012059 set1 mark_ext_patch ,mark 
+0x51e1 012060 bpatch patch28_7 ,mem_patch28 
+0x51e2 012061 fetch 2 ,mem_le_search_handle_start 
+0x51e3 012062 iforce regb 
+0x51e4 012063 fetch 2 ,mem_le_search_handle_end 
+0x51e5 012064 iforce regc 
+0x51e6 012065 fetch 2 ,mem_ui_le_uuid_table 
+0x51e7 012066 iforce contr 
+0x51e8 012067 enable user 
+0x51e9 012068 rtn 
+:      012071 le_att_handle_inrange:
+0x51ea 012072 ifetch 2 ,contr 
+0x51eb 012073 rtn blank 
+0x51ec 012074 isub regb ,null 
+0x51ed 012075 nrtn positive 
+0x51ee 012076 isub regc ,null 
+0x51ef 012077 rtn zero 
+0x51f0 012078 branch le_att_handle_blank ,positive 
+0x51f1 012079 force 1 ,null 
+0x51f2 012080 rtn 
+:      012081 le_att_handle_blank:
+0x51f3 012082 force 0 ,pdata 
+0x51f4 012083 rtn 
+:      012087 le_att_get_handle_ptr:
+0x51f5 012088 call le_att_get_handle_ptr2 
+0x51f6 012089 branch le_att_get_handle_ptr_found ,zero 
+0x51f7 012090 rtn 
+:      012092 le_att_get_handle_ptr2:
+0x51f8 012093 set1 mark_ext_patch ,mark 
+0x51f9 012094 bpatch patch29_0 ,mem_patch29 
+0x51fa 012095 fetch 2 ,mem_ui_le_uuid_table 
+0x51fb 012096 iforce contr 
+:      012097 le_att_get_handle_loop1:
+0x51fc 012098 ifetch 2 ,contr 
+0x51fd 012099 rtn blank 
+0x51fe 012100 isub temp ,null 
+0x51ff 012101 rtn zero 
+0x5200 012102 ifetch 1 ,contr 
+0x5201 012103 iadd contr ,contr 
+0x5202 012104 ifetch 1 ,contr 
+0x5203 012105 iadd contr ,contr 
+0x5204 012106 branch le_att_get_handle_loop1 
+:      012107 le_att_get_handle_ptr_found:
+0x5205 012108 ifetch 1 ,contr 
+0x5206 012109 iadd contr ,contr 
+0x5207 012110 rtn 
+:      012114 le_att_get_short_uuid_ptr:
+0x5208 012115 set1 mark_ext_patch ,mark 
+0x5209 012116 bpatch patch29_1 ,mem_patch29 
+0x520a 012117 fetch 2 ,mem_ui_le_uuid_table 
+0x520b 012118 iforce contr 
+:      012119 le_att_get_short_uuid_loop:
+0x520c 012120 ifetch 2 ,contr 
+0x520d 012121 rtn blank 
+0x520e 012122 ifetch 1 ,contr 
+0x520f 012123 iadd contr ,contr 
+0x5210 012124 increase -2 ,contr 
+0x5211 012125 ifetch 2 ,contr 
+0x5212 012126 isub temp ,null 
+0x5213 012127 rtn zero 
+0x5214 012128 ifetch 1 ,contr 
+0x5215 012129 iadd contr ,contr 
+0x5216 012130 branch le_att_get_short_uuid_loop 
+:      012134 le_att_get_handle_info_from_ptr:
+0x5217 012135 fetch 2 ,mem_le_cur_attlist_start_ptr 
+0x5218 012136 copy pdata ,contr 
+0x5219 012137 branch le_att_get_handle_info + 1 
+:      012139 le_att_get_handle_info:
+0x521a 012140 set1 mark_ext_patch ,mark 
+0x521b 012141 bpatch patch29_2 ,mem_patch29 
+0x521c 012142 fetch 2 ,mem_ui_le_uuid_table 
+0x521d 012143 iforce contr 
+0x521e 012144 copy temp ,rega 
+:      012145 le_att_get_handle_loop:
+0x521f 012146 ifetch 2 ,contr 
+0x5220 012147 branch le_att_unfind_handle ,blank 
+0x5221 012148 isub rega ,null 
+0x5222 012149 branch le_att_finded_handle ,zero 
+0x5223 012150 ifetch 1 ,contr 
+0x5224 012151 iadd contr ,contr 
+0x5225 012152 ifetch 1 ,contr 
+0x5226 012153 iadd contr ,contr 
+0x5227 012154 branch le_att_get_handle_loop 
+:      012155 le_att_unfind_handle:
+0x5228 012156 setarg 1 
+0x5229 012157 rtn 
+:      012158 le_att_finded_handle:
+0x522a 012159 ifetch 1 ,contr 
+0x522b 012160 store 1 ,mem_le_cur_uuid_lenth 
+0x522c 012161 copy pdata ,loopcnt 
+0x522d 012162 arg mem_le_cur_uuid ,contw 
+0x522e 012163 call memcpy_fast 
+0x522f 012164 ifetch 1 ,contr 
+0x5230 012165 store 1 ,mem_le_search_len 
+0x5231 012166 call store_contr 
+0x5232 012167 setarg 0 
+0x5233 012168 rtn 
+:      012172 le_modified_name:
+0x5234 012173 set1 mark_ext_patch ,mark 
+0x5235 012174 bpatch patch29_3 ,mem_patch29 
+0x5236 012175 call le_modified_name_att_list 
+0x5237 012176 branch le_modified_name_adv 
+:      012178 le_modified_name_att_list:
+0x5238 012179 arg uuid_chrctr_device_name ,temp 
+0x5239 012180 call le_att_get_short_uuid_ptr 
+0x523a 012181 rtn blank 
+0x523b 012182 ifetch 1 ,contr 
+0x523c 012183 copy contr ,contw 
+0x523d 012184 fetcht 1 ,mem_le_name_len 
+0x523e 012185 copy temp ,loopcnt 
+0x523f 012186 isub temp ,null 
+0x5240 012187 nbranch le_name_length_longer_than_att ,positive 
+0x5241 012188 isub temp ,temp 
+0x5242 012189 arg mem_le_name ,contr 
+0x5243 012190 call memcpy 
+0x5244 012191 copy temp ,loopcnt 
+0x5245 012192 ncall memcpy_empty ,zero 
+0x5246 012193 rtn 
+:      012194 le_name_length_longer_than_att:
+0x5247 012195 copy pdata ,loopcnt 
+0x5248 012196 arg mem_le_name ,contr 
+0x5249 012197 branch memcpy_fast 
+:      012200 le_modified_name_adv:
+0x524a 012201 arg mem_le_adv_data_len + 32 ,regc 
+0x524b 012202 arg mem_le_adv_data ,rega 
+0x524c 012203 call le_modified_name_adv_and_scan 
+0x524d 012204 setarg 0 
+0x524e 012205 setflag user ,0 ,pdata 
+0x524f 012206 store 1 ,mem_pdatatemp 
+0x5250 012207 arg mem_le_scan_data_len + 32 ,regc 
+0x5251 012208 arg mem_le_scan_data ,rega 
+0x5252 012209 call le_modified_name_adv_and_scan 
+0x5253 012210 rtn user 
+0x5254 012211 fetch 1 ,mem_pdatatemp 
+0x5255 012212 branch assert ,blank 
+0x5256 012213 rtn 
+:      012216 le_modified_name_adv_and_scan:
+0x5257 012217 set1 mark_ext_patch ,mark 
+0x5258 012218 bpatch patch29_4 ,mem_patch29 
+0x5259 012219 call enable_usr 
+0x525a 012220 call clear_temp_block 
+0x525b 012221 arg 0 ,regb 
+0x525c 012222 arg mem_le_data_temp ,contw 
+0x525d 012223 call le_modified_name_adv_loop 
+0x525e 012224 fetch 1 ,mem_le_name_len 
+0x525f 012225 add pdata ,1 ,temp 
+0x5260 012226 iadd regb ,rega 
+0x5261 012227 increase 2 ,rega 
+0x5262 012228 sub rega ,0x1f ,null 
+0x5263 012229 nbranch le_modified_name_adv_and_scan_name_overflow ,positive 
+0x5264 012230 istoret 1 ,contw 
+0x5265 012231 arg 0x09 ,temp 
+0x5266 012232 istoret 1 ,contw 
+0x5267 012233 iforce loopcnt 
+0x5268 012234 call memcpy_fast 
+0x5269 012235 copy rega ,regb 
+:      012236 le_modified_name_adv_and_scan_store_data:
+0x526a 012237 deposit regb 
+0x526b 012238 store 1 ,mem_le_data_len_temp 
+0x526c 012239 arg mem_le_data_len_temp ,contr 
+0x526d 012240 setarg -32 
+0x526e 012241 iadd regc ,contw 
+0x526f 012242 branch memcpy32 
+:      012244 le_modified_name_adv_and_scan_name_overflow:
+0x5270 012245 call disable_usr 
+0x5271 012246 branch le_modified_name_adv_and_scan_store_data 
+:      012248 le_modified_name_adv_loop:
+0x5272 012249 ifetch 1 ,rega 
+0x5273 012250 rtn blank 
+0x5274 012251 pincrease 1 
+0x5275 012252 ifetcht 1 ,contr 
+0x5276 012253 sub temp ,0x09 ,null 
+0x5277 012254 branch le_modified_name_adv_found_name ,zero 
+0x5278 012255 iadd regb ,regb 
+0x5279 012256 copy rega ,contr 
+0x527a 012257 iforce loopcnt 
+0x527b 012258 call memcpy_fast 
+0x527c 012259 copy contr ,rega 
+:      012260 le_modified_name_adv_loop2:
+0x527d 012261 deposit rega 
+0x527e 012262 isub regc ,null 
+0x527f 012263 rtn positive 
+0x5280 012264 branch le_modified_name_adv_loop 
+:      012266 le_modified_name_adv_found_name:
+0x5281 012267 iadd rega ,rega 
+0x5282 012268 branch le_modified_name_adv_loop2 
+:      012271 memcpy_empty:
+0x5283 012272 setarg space 
+0x5284 012273 istore 1 ,contw 
+0x5285 012274 loop memcpy_empty 
+0x5286 012275 rtn 
+:      012278 le_lpm_set_mult:
+0x5287 012279 set1 mark_ext_patch ,mark 
+0x5288 012280 bpatch patch29_5 ,mem_patch29 
+0x5289 012281 disable wake 
+0x528a 012282 branch le_lpm_set_mult_attempt ,attempt 
+0x528b 012283 nbranch le_lpm_lost ,match 
+:      012284 le_lpm_set_mult_attempt:
+0x528c 012285 call lpm_match 
+0x528d 012286 fetch 2 ,mem_rx_window_sniff 
+0x528e 012287 store 2 ,mem_le_receive_window 
+0x528f 012288 fetch 1 ,mem_le_rxbuf 
+0x5290 012289 compare 1 ,pdata ,3 
+0x5291 012290 nbranch lpm_mult_short ,true 
+0x5292 012291 fetch 1 ,mem_le_txheader 
+0x5293 012292 compare 1 ,pdata ,3 
+0x5294 012293 nbranch lpm_mult_short ,true 
+0x5295 012294 fetch 2 ,mem_cb_le_set_mult 
+0x5296 012295 call callback_func 
+0x5297 012296 fetch 1 ,mem_le_state 
+0x5298 012297 bbit1 lestate_update_param ,lpm_mult_short 
+0x5299 012298 branch lpm_mult_wait_timeout 
+:      012300 le_lpm_lost:
+0x529a 012301 fetcht 2 ,mem_rx_window_sniff 
+0x529b 012302 rshift temp ,temp 
+0x529c 012303 fetch 2 ,mem_le_receive_window 
+0x529d 012304 iadd temp ,pdata 
+0x529e 012305 store 2 ,mem_le_receive_window 
+0x529f 012306 branch lpm_lost 
+:      012308 le_clean_att_list_handle_enable:
+0x52a0 012309 set1 mark_ext_patch ,mark 
+0x52a1 012310 bpatch patch29_6 ,mem_patch29 
+0x52a2 012311 jam 0 ,mem_le_switch_send_data 
+0x52a3 012312 fetcht 2 ,mem_le_notify_handle 
+0x52a4 012313 call le_att_check_notification_enable 
+0x52a5 012314 copy rega ,contw 
+0x52a6 012315 setarg 0 
+0x52a7 012316 istore 1 ,contw 
+0x52a8 012317 rtn 
+:      012322 le_secure_connect_sm:
+0x52a9 012323 fetch 1 ,mem_le_secure_connect_enable 
+0x52aa 012324 rtneq 0 
+0x52ab 012325 fetch 1 ,mem_le_secure_connect_flag 
+0x52ac 012326 rtnne le_sp_flag_commit_256 
+0x52ad 012327 set1 mark_ext_patch ,mark 
+0x52ae 012328 bpatch patch2a_0 ,mem_patch2a 
+0x52af 012329 jam sp_flag_standby ,mem_le_secure_connect_flag 
+0x52b0 012330 fetch 1 ,mem_le_secure_connect_state 
+0x52b1 012331 beq le_sc_stat_receive_public_key ,le_sc_receive_public_key 
+0x52b2 012332 beq le_sc_stat_wait_send_public_key ,le_sc_wait_send_public_key 
+0x52b3 012333 beq le_sc_stat_send_public_key ,le_sc_send_public_key 
+0x52b4 012334 beq le_sc_stat_receive_dhkey ,le_sc_receive_dhkey 
+0x52b5 012335 beq le_sc_stat_wait_confirm_gkey ,le_sc_wait_confirm_gkey 
+0x52b6 012336 beq le_sc_stat_passkey_wait_confirm ,le_sc_passkey_wait_confirm 
+0x52b7 012337 rtn 
+:      012340 le_sc_passkey_wait_confirm:
+0x52b8 012341 fetch 1 ,mem_authentication_passkey_times 
+0x52b9 012342 copy pdata ,queue 
+0x52ba 012343 increase 1 ,pdata 
+0x52bb 012344 store 1 ,mem_authentication_passkey_times 
+0x52bc 012345 fetch 4 ,mem_le_tk 
+0x52bd 012346 qisolate1 pdata 
+0x52be 012347 setarg 0x80 
+0x52bf 012348 setflag true ,0 ,pdata 
+0x52c0 012349 store 1 ,mem_passkey_1bit 
+0x52c1 012350 branch le_sc_ready_send_pairing_confirm 
+:      012352 le_sc_wait_confirm_gkey:
+0x52c2 012353 fetch 1 ,mem_le_sc_confirm_gkey_flag 
+0x52c3 012354 jam flag_le_sc_confrim_null ,mem_le_sc_confirm_gkey_flag 
+0x52c4 012355 beq flag_le_sc_confrim_gkey_ok ,le_sc_confirm_gkey_ok 
+0x52c5 012356 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52c6 012357 rtn 
+:      012359 le_sc_confirm_gkey_ok:
+0x52c7 012360 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x52c8 012361 jam xt_smp_pairing_dhkey_check ,mem_fifo_temp 
+0x52c9 012362 branch le_xtype_fifo_in 
+:      012364 le_sc_receive_dhkey:
+0x52ca 012365 fetch 1 ,mem_sp_dhkey_invalid 
+0x52cb 012366 beq sp_key_valid_256 ,le_dhkey_ready 
+0x52cc 012367 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52cd 012368 rtn 
+:      012370 le_dhkey_ready:
+0x52ce 012371 call function_f5 
+0x52cf 012375 fetch 1 ,mem_le_pairing_mode 
+0x52d0 012376 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok_passkey 
+0x52d1 012377 call le_set_tk_0 
+:      012378 le_dhkey_ready_common:
+0x52d2 012379 call function_f6_ea 
+0x52d3 012380 arg mem_aes_cmac_temp ,rega 
+0x52d4 012381 arg mem_sp_confirm_remote ,regb 
+0x52d5 012382 arg 16 ,loopcnt 
+0x52d6 012383 call string_compare 
+0x52d7 012384 branch le_dhkey_check_ok ,zero 
+:      012385 le_dhkey_check_fail:
+0x52d8 012386 branch le_pairing_failed 
+:      012387 le_sc_confirm_gkey_ok_passkey:
+0x52d9 012390 branch le_dhkey_ready_common 
+:      012392 le_dhkey_check_ok:
+0x52da 012393 jam 1 ,mem_ltk_exists 
+0x52db 012394 fetch 1 ,mem_le_pairing_mode 
+0x52dc 012395 beq le_pairing_mode_secure_connect_justwork ,le_sc_confirm_gkey_ok 
+0x52dd 012396 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok 
+0x52de 012397 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52df 012398 jam le_sc_stat_wait_confirm_gkey ,mem_le_secure_connect_state 
+0x52e0 012399 rtn 
+:      012401 le_sc_send_public_key:
+0x52e1 012402 fetch 1 ,mem_le_pairing_mode 
+0x52e2 012403 beq le_pairing_mode_secure_connect_passkey ,le_sc_send_public_key_passkey 
+0x52e3 012404 jam 0 ,mem_passkey_1bit 
+:      012405 le_sc_ready_send_pairing_confirm:
+0x52e4 012406 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x52e5 012407 branch le_xtype_fifo_in 
+:      012409 le_sc_send_public_key_passkey:
+0x52e6 012413 jam 0 ,mem_authentication_passkey_times 
+0x52e7 012415 branch le_genernate_tk 
+:      012417 le_sc_receive_public_key:
+0x52e8 012419 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52e9 012420 fetch 1 ,mem_le_sc_local_key_invalid 
+0x52ea 012421 beq sp_key_valid_256 ,le_public_key_ready 
+0x52eb 012423 rtn 
+:      012425 le_public_key_ready:
+0x52ec 012426 jam sp_key_invalid ,mem_sp_dhkey_invalid 
+0x52ed 012427 call sp_dhkey_calc_256 
+0x52ee 012428 jam le_sc_stat_wait_send_public_key ,mem_le_secure_connect_state 
+0x52ef 012429 rtn 
+:      012433 le_sc_wait_send_public_key:
+0x52f0 012434 call le_xtype_fifo_is_empty 
+0x52f1 012435 branch le_public_key_ready_send ,blank 
+0x52f2 012436 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52f3 012437 rtn 
+:      012438 le_public_key_ready_send:
+0x52f4 012439 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f5 012440 call le_xtype_fifo_in 
+0x52f6 012441 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f7 012442 call le_xtype_fifo_in 
+0x52f8 012443 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f9 012444 branch le_xtype_fifo_in 
+:      012450 le_pairing_public_key_continue:
+0x52fa 012451 arg mem_le_pubkey_remote_x_256 ,pdata 
+0x52fb 012452 fetcht 1 ,mem_le_public_length 
+0x52fc 012453 iadd temp ,contw 
+0x52fd 012455 fetch 1 ,mem_le_rxbuf + 1 
+0x52fe 012456 copy pdata ,loopcnt 
+0x52ff 012457 iadd temp ,temp 
+0x5300 012458 call memcpy_fast 
+0x5301 012459 storet 1 ,mem_le_public_length 
+0x5302 012460 copy temp ,pdata 
+0x5303 012462 rtnne 64 
+0x5304 012463 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x5305 012464 jam le_sc_stat_receive_public_key ,mem_le_secure_connect_state 
+0x5306 012465 rtn 
+:      012466 le_parse_continue:
+0x5307 012467 set1 mark_ext_patch ,mark 
+0x5308 012468 bpatch patch2a_1 ,mem_patch2a 
+0x5309 012469 fetch 1 ,mem_le_public_length 
+0x530a 012470 bne 0 ,le_pairing_public_key_continue 
+0x530b 012471 branch le_parse_continue_att 
+:      012477 init_lmp:
+0x530c 012478 rtn wake 
+:      012479 init_lmp_work:
+0x530d 012480 set1 mark_ext_patch ,mark 
+0x530e 012481 bpatch patch2a_2 ,mem_patch2a 
+0x530f 012482 setarg 0 
+0x5310 012483 store 1 ,mem_lmp_to_send 
+0x5311 012484 store 1 ,mem_conn_sm 
+0x5312 012485 store 1 ,mem_lmo_opcode1 
+0x5313 012486 store 1 ,mem_lmo_opcode2 
+0x5314 012487 store 1 ,mem_esco_addr 
+0x5315 012488 store 1 ,mem_auth_enable 
+0x5316 012489 store 1 ,mem_connection_options 
+0x5317 012490 store 1 ,mem_pairing_auth 
+0x5318 012491 jam switch_flag_init ,mem_switch_flag 
+0x5319 012492 jam 0 ,mem_switch_fail_master_count 
+0x531a 012493 jam null_encryp ,mem_wait_encryption 
+:      012494 init_lmp_reinit:
+0x531b 012495 jam 0 ,mem_pairing_auth 
+0x531c 012496 jam 0 ,mem_sp_localsm 
+0x531d 012497 jam 0 ,mem_lmp_conn_state 
+:      012499 parse_rx_done:
+0x531e 012500 rtn 
+:      012502 parse_lmp:
+0x531f 012503 set1 mark_ext_patch ,mark 
+0x5320 012504 bpatch patch2a_3 ,mem_patch2a 
+0x5321 012505 call setlocalsm_master ,master 
+0x5322 012506 ncall setlocalsm_slave ,master 
+0x5323 012507 call lmo_fifo_check 
+0x5324 012508 nrtn blank 
+0x5325 012509 fetch 1 ,mem_state_map 
+0x5326 012510 rtnbit0 smap_rxlmp 
+0x5327 012511 set0 smap_rxlmp ,pdata 
+0x5328 012512 set0 mark_rxbuf_inuse ,mark 
+0x5329 012513 store 1 ,mem_state_map 
+0x532a 012514 fetch 1 ,mem_rxbuf 
+0x532b 012515 fetcht 1 ,mem_state_map 
+0x532c 012516 isolate1 smap_lmptidinit ,pdata 
+0x532d 012517 setflag true ,smap_lmptid ,temp 
+0x532e 012518 storet 1 ,mem_state_map 
+0x532f 012519 and_into 0x2 ,temp 
+0x5330 012520 storet 1 ,mem_lmo_tid2 
+0x5331 012521 fetcht 1 ,mem_state_map 
+0x5332 012522 rshift pdata ,pdata 
+0x5333 012523 store 1 ,mem_lmi_opcode2 
+0x5334 012524 set1 mark_ext_patch ,mark 
+0x5335 012525 bpatch patch2a_4 ,mem_patch2a 
+0x5336 012526 fetch 1 ,mem_lmi_opcode2 
+0x5337 012527 beq lmp_escape ,parse_lmp_escape 
+0x5338 012528 beq lmp_accepted ,parse_lmp_accepted 
+0x5339 012529 beq lmp_not_accepted ,parse_lmp_not_accepted 
+0x533a 012530 beq lmp_set_afh ,parse_lmp_set_afh 
+0x533b 012531 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+0x533c 012532 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+0x533d 012533 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+0x533e 012534 beq lmp_auto_rate ,parse_lmp_auto_rate 
+0x533f 012535 beq lmp_test_control ,parse_lmp_test_control 
+0x5340 012536 beq lmp_test_activate ,parse_lmp_test_activate 
+0x5341 012537 beq lmp_setup_complete ,parse_lmp_setup_complete 
+0x5342 012538 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+0x5343 012539 beq lmp_features_req ,parse_lmp_features_req 
+0x5344 012540 beq lmp_host_connection_req ,parse_lmp_conn_req 
+0x5345 012541 beq lmp_version_req ,parse_lmp_version_req 
+0x5346 012542 beq lmp_version_res ,parse_lmp_version_res 
+0x5347 012543 beq lmp_detach ,parse_lmp_detach 
+0x5348 012544 beq lmp_max_slot ,parse_lmp_max_slot 
+0x5349 012545 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+0x534a 012546 beq lmp_name_req ,parse_lmp_name_req 
+0x534b 012547 beq lmp_name_res ,parse_lmp_name_res 
+0x534c 012548 beq lmp_features_res ,parse_lmp_features_res 
+0x534d 012549 beq lmp_comb_key ,parse_lmp_comb_key 
+0x534e 012550 beq lmp_au_rand ,parse_lmp_au_rand 
+0x534f 012551 beq lmp_in_rand ,parse_lmp_in_rand 
+0x5350 012552 beq lmp_sres ,parse_lmp_sres 
+0x5351 012553 beq lmp_incr_power_req ,parse_lmp_incr_power 
+0x5352 012554 beq lmp_decr_power_req ,parse_lmp_decr_power 
+0x5353 012555 beq lmp_max_power ,parse_lmp_max_power 
+0x5354 012556 beq lmp_min_power ,parse_lmp_min_power 
+0x5355 012557 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+0x5356 012558 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+0x5357 012559 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+0x5358 012560 beq lmp_slot_offset ,parse_lmp_slot_offset 
+0x5359 012561 beq lmp_sniff_req ,parse_lmp_sniff_req 
+0x535a 012562 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+0x535b 012563 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+0x535c 012564 beq lmp_switch_req ,parse_lmp_switch_req 
+0x535d 012565 beq lmp_temp_rand ,parse_lmp_temp_rand 
+0x535e 012566 beq lmp_temp_key ,parse_lmp_temp_key 
+0x535f 012567 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+0x5360 012568 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+0x5361 012569 beq lmp_unit_key ,parse_lmp_unit_key 
+0x5362 012570 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+0x5363 012571 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+0x5364 012572 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+0x5365 012573 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+0x5366 012574 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+0x5367 012575 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+0x5368 012576 beq lmp_dhkey_check ,parse_dhkey_check 
+0x5369 012577 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+0x536a 012578 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+:      012581 reject_unknown_packet:
+0x536b 012582 jam unknown_lmp_pdu ,mem_lmo_reason2 
+:      012583 reject_lmp_packet:
+0x536c 012584 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x536d 012585 rtn 
+:      012587 parse_lmp_clkoffset_req:
+0x536e 012588 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+0x536f 012589 rtn 
+:      012591 parse_enc_key_size_mask_req:
+0x5370 012592 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+0x5371 012593 rtn 
+:      012595 parse_lmp_set_afh:
+0x5372 012596 fetch 4 ,mem_rxbuf + 1 
+0x5373 012597 lshift pdata ,pdata 
+0x5374 012598 store 4 ,mem_afh_instant 
+0x5375 012599 fetch 1 ,mem_rxbuf + 5 
+0x5376 012600 store 1 ,mem_afh_new_mod 
+0x5377 012601 fetch 5 ,mem_rxbuf + 6 
+0x5378 012602 store 5 ,mem_afh_map_new 
+0x5379 012603 fetch 5 ,mem_rxbuf + 11 
+0x537a 012604 istore 5 ,contw 
+0x537b 012605 fetch 1 ,mem_mode 
+0x537c 012606 set1 afh_change ,pdata 
+0x537d 012607 store 1 ,mem_mode 
+0x537e 012608 rtn 
+:      012609 parse_lmp_escape:
+0x537f 012610 set1 mark_ext_patch ,mark 
+0x5380 012611 bpatch patch2a_5 ,mem_patch2a 
+0x5381 012612 fetch 1 ,mem_rxbuf + 1 
+0x5382 012613 set1 7 ,pdata 
+0x5383 012614 store 1 ,mem_lmi_opcode2 
+0x5384 012615 beq lmp_ext_accepted ,parse_lmpext_accepted 
+0x5385 012616 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+0x5386 012617 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+0x5387 012618 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+0x5388 012619 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+0x5389 012620 beq lmp_ext_features_req ,parse_lmpext_features_req 
+0x538a 012621 beq lmp_ext_features_res ,parse_lmpext_features_res 
+0x538b 012622 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+0x538c 012623 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+0x538d 012624 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+0x538e 012625 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+0x538f 012626 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+0x5390 012627 rtneq lmp_ext_features_res 
+:      012630 reject_unknown_ext_packet:
+0x5391 012631 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5392 012632 jam unknown_lmp_pdu ,mem_lmo_reason2 
+0x5393 012634 rtn 
+:      012635 parse_lmpext_chn_classification_req:
+0x5394 012636 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5395 012637 jam not_support_chn_classification ,mem_lmo_reason2 
+0x5396 012638 rtn 
+:      012640 parse_lmpext_iocap_req:
+0x5397 012641 call iocap_lmpext_load 
+0x5398 012642 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x5399 012643 rtn 
+:      012645 parse_lmpext_iocap_res:
+0x539a 012646 call iocap_lmpext_load 
+0x539b 012647 branch iocap_lmpext_common 
+:      012649 iocap_lmpext_load:
+0x539c 012650 arg mem_sp_iocap_remote ,contw 
+0x539d 012651 fetch 3 ,mem_rxbuf + 2 
+0x539e 012652 istore 3 ,contw 
+0x539f 012653 rtn 
+:      012655 iocap_lmpext_common:
+0x53a0 012656 branch master_set_mem_master_sp_flag ,true 
+0x53a1 012657 rtn 
+:      012658 parse_lmpext_accepted:
+0x53a2 012659 fetch 1 ,mem_rxbuf + 3 
+0x53a3 012660 set1 7 ,pdata 
+0x53a4 012661 store 1 ,mem_lmi_accepted_opcode 
+0x53a5 012662 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+0x53a6 012663 rtn 
+:      012666 parse_lmpext_not_accepted:
+0x53a7 012667 fetch 1 ,mem_rxbuf + 3 
+0x53a8 012668 set1 7 ,pdata 
+0x53a9 012669 store 1 ,mem_lmi_accepted_opcode 
+0x53aa 012670 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+0x53ab 012671 rtn 
+:      012673 parse_lmpext_accepted_ptt:
+0x53ac 012674 fetch 1 ,mem_ptt 
+0x53ad 012675 fetcht 1 ,mem_state_map 
+0x53ae 012676 nsetflag blank ,smap_edr ,temp 
+0x53af 012677 storet 1 ,mem_state_map 
+:      012678 parse_lmpext_not_accepted_ptt:
+0x53b0 012679 fetch 1 ,mem_state 
+0x53b1 012680 rtnbit0 state_init_seq 
+0x53b2 012681 set0 state_init_seq ,pdata 
+0x53b3 012682 store 1 ,mem_state 
+0x53b4 012683 fetch 1 ,mem_auth_enable 
+0x53b5 012684 nrtn blank 
+0x53b6 012685 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x53b7 012686 rtn 
+:      012688 parse_lmpext_pause_encrypt:
+0x53b8 012689 nbranch parse_lmpext_pause_encrypt_slave ,master 
+0x53b9 012690 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x53ba 012691 branch tid_reply 
+:      012693 parse_lmpext_pause_encrypt_slave:
+0x53bb 012694 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+0x53bc 012695 rtn 
+:      012697 parse_lmpext_resume_encrypt:
+0x53bd 012700 call tid_reply 
+0x53be 012701 branch lmp_start_encryption 
+:      012703 parse_lmpext_features_req:
+0x53bf 012704 jam lmp_ext_features_res ,mem_lmo_opcode2 
+0x53c0 012705 rtn 
+:      012707 parse_lmpext_features_res:
+0x53c1 012708 fetcht 1 ,mem_rxbuf + 4 
+0x53c2 012709 and temp ,0x1 ,temp 
+0x53c3 012710 storet 1 ,mem_remote_sppcap 
+0x53c4 012711 fetch 1 ,mem_hci_cmd 
+0x53c5 012712 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+0x53c6 012713 jam 0 ,mem_hci_cmd 
+:      012714 parse_lmpext_features_res_not_hci:
+0x53c7 012715 fetch 1 ,mem_conn_sm 
+0x53c8 012716 rtnne conn_sm_wait_features_ext 
+0x53c9 012717 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x53ca 012718 branch process_conn_sm 
+:      012720 parse_lmp_accepted:
+0x53cb 012721 set1 mark_ext_patch ,mark 
+0x53cc 012722 bpatch patch2a_6 ,mem_patch2a 
+0x53cd 012723 fetch 1 ,mem_rxbuf + 1 
+0x53ce 012724 store 1 ,mem_lmi_accepted_opcode 
+0x53cf 012725 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+0x53d0 012726 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+0x53d1 012727 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+0x53d2 012728 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+0x53d3 012729 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+0x53d4 012730 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+0x53d5 012731 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+0x53d6 012732 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+0x53d7 012733 beq lmp_switch_req ,parse_lmp_accepted_switch 
+0x53d8 012735 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+0x53d9 012736 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+0x53da 012737 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+0x53db 012738 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+0x53dc 012739 rtn 
+:      012741 parse_lmp_not_accepted:
+0x53dd 012742 set1 mark_ext_patch ,mark 
+0x53de 012743 bpatch patch2a_7 ,mem_patch2a 
+0x53df 012744 fetch 1 ,mem_rxbuf + 1 
+0x53e0 012745 store 1 ,mem_lmi_accepted_opcode 
+0x53e1 012746 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+0x53e2 012747 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+0x53e3 012748 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+0x53e4 012749 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+0x53e5 012750 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+0x53e6 012752 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+0x53e7 012753 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+0x53e8 012754 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+0x53e9 012755 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+0x53ea 012756 rtn 
+:      012758 parse_lmp_accepted_switch:
+0x53eb 012759 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x53ec 012760 call ui_ipc_send_event 
+0x53ed 012761 branch role_switch_prepare0 
+:      012762 parse_lmp_not_accepted_switch:
+0x53ee 012763 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+0x53ef 012764 call ui_ipc_send_event 
+0x53f0 012765 jam switch_flag_not_accept ,mem_switch_flag 
+0x53f1 012766 setarg timer_switch_waite 
+0x53f2 012767 arg switch_wait_timer ,queue 
+0x53f3 012768 branch timer_init 
+:      012771 parse_lmp_accepted_hostconn:
+0x53f4 012774 fetch 1 ,mem_lmp_conn_state 
+0x53f5 012775 set1 received_conn_req ,pdata 
+0x53f6 012776 store 1 ,mem_lmp_conn_state 
+0x53f7 012777 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x53f8 012778 call ui_ipc_send_event 
+0x53f9 012779 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+:      012781 parse_lmp_accepted_hostconn_ctn:
+0x53fa 012783 fetch 1 ,mem_conn_sm 
+0x53fb 012784 bne conn_sm_wait_conn_accept ,parse_rx_done 
+0x53fc 012787 jam conn_sm_auth_pair ,mem_conn_sm 
+0x53fd 012788 rtn 
+:      012796 parse_lmp_not_accepted_hostconn:
+0x53fe 012797 jam acl_connection_already_exists ,mem_disconn_reason_send 
+0x53ff 012798 jam lmp_detach ,mem_lmo_opcode2 
+0x5400 012800 jam conn_sm_standby ,mem_conn_sm 
+0x5401 012802 branch parse_rx_done ,true 
+0x5402 012803 rtn 
+:      012805 parse_lmp_accepted_inrand:
+0x5403 012806 fetch 1 ,mem_link_key_exists 
+0x5404 012807 nrtn blank 
+0x5405 012808 call clear_linkkey 
+0x5406 012809 call lmp_generate_key 
+0x5407 012810 rtn master 
+0x5408 012811 set1 mark_slave_in_rand_accepted ,mark 
+0x5409 012812 rtn 
+:      012814 parse_lmp_accepted_enc_mode:
+0x540a 012815 nrtn master 
+0x540b 012816 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x540c 012817 fetch 1 ,mem_state_map 
+0x540d 012818 rtnbit0 smap_encryption 
+0x540e 012819 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x540f 012820 rtn 
+:      012822 parse_lmp_accepted_enc_keysize:
+0x5410 012823 branch lmp_start_encryption 
+:      012825 parse_lmp_accepted_start_enc:
+0x5411 012826 call send_create_conn_start_l2cap_timer_sm 
+0x5412 012827 fetch 1 ,mem_state 
+0x5413 012828 rtnbit1 state_conn_comp 
+0x5414 012829 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5415 012830 fetch 1 ,mem_conn_sm 
+0x5416 012831 rtnne conn_sm_encrypt_wait 
+0x5417 012832 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+0x5418 012833 rtn 
+:      012835 parse_lmp_accepted_stop_enc:
+0x5419 012843 rtn 
+:      012845 parse_lmp_not_accepted_aurand:
+:      012846 parse_lmp_not_accepted_aurand_send_detach:
+0x541a 012847 jam lmp_detach ,mem_lmo_opcode2 
+0x541b 012848 jam other_end_terminated ,mem_disconn_reason_send 
+0x541c 012849 rtn 
+:      012851 parse_lmp_not_accepted_inrand:
+0x541d 012852 fetch 1 ,mem_rxbuf + 2 
+0x541e 012853 beq key_missing ,parse_lmp_inrand_key_missing 
+0x541f 012854 rtnne pairing_not_allowed 
+0x5420 012855 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x5421 012856 jam lmp_detach ,mem_lmo_opcode2 
+0x5422 012857 rtn 
+:      012858 parse_lmp_inrand_key_missing:
+0x5423 012859 jam key_missing ,mem_disconn_reason_send 
+0x5424 012860 jam lmp_detach ,mem_lmo_opcode2 
+0x5425 012861 rtn 
+:      012863 parse_lmp_not_accepted_name_req:
+0x5426 012864 rtn 
+:      012866 parse_lmp_not_accepted_simple_pairing_number:
+0x5427 012867 jam sp_stat_null ,mem_sp_state 
+0x5428 012868 jam lmp_detach ,mem_lmo_opcode2 
+0x5429 012869 branch parse_rx_done 
+:      012871 parse_lmp_not_accepted_dhkey_check:
+0x542a 012872 jam sp_stat_null ,mem_sp_state 
+0x542b 012873 jam lmp_detach ,mem_lmo_opcode2 
+0x542c 012874 branch parse_rx_done 
+:      012875 parse_lmp_not_accepted_unsniff_req:
+0x542d 012876 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+0x542e 012877 branch ui_ipc_send_event 
+:      012879 parse_lmp_accepted_unsniff_req:
+0x542f 012880 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+0x5430 012881 call ui_ipc_send_event 
+0x5431 012882 branch sniff_exit 
+:      012884 parse_lmp_accepted_sniff_req:
+0x5432 012885 jam bt_evt_sniff_accept ,mem_fifo_temp 
+0x5433 012886 call ui_ipc_send_event 
+0x5434 012887 setarg 0 
+0x5435 012888 store 2 ,mem_dsniff 
+0x5436 012889 fetch 2 ,mem_sniff_param_interval 
+0x5437 012890 lshift pdata ,pdata 
+0x5438 012891 store 2 ,mem_tsniff 
+0x5439 012892 fetch 1 ,mem_sniff_param_attempt 
+0x543a 012893 store 1 ,mem_sniff_attempt 
+0x543b 012894 fetch 1 ,mem_sniff_param_timeout 
+0x543c 012895 store 1 ,mem_sniff_timeout 
+0x543d 012896 branch sniff_init 
+:      012898 parse_lmp_not_acdcept_sniff_req:
+0x543e 012899 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+0x543f 012900 branch ui_ipc_send_event 
+:      012902 parse_lmp_crypt_key:
+0x5440 012903 fetcht 1 ,mem_rxbuf + 1 
+0x5441 012904 storet 1 ,mem_key_size 
+0x5442 012905 branch accept_lmp_msg 
+:      012907 parse_lmp_setup_complete:
+0x5443 012908 fetch 1 ,mem_lmp_conn_state 
+0x5444 012909 set1 received_setup_complete ,pdata 
+0x5445 012910 store 1 ,mem_lmp_conn_state 
+0x5446 012911 rtnbit1 sent_setup_complete 
+0x5447 012912 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5448 012913 branch parse_rx_done 
+:      012915 parse_lmp_max_slot:
+0x5449 012918 rtn 
+:      012920 parse_lmp_max_slot_req:
+0x544a 012921 fetch 1 ,mem_max_slot 
+0x544b 012922 fetcht 1 ,mem_rxbuf + 1 
+0x544c 012923 isub temp ,null 
+0x544d 012925 branch accept_lmp_msg ,positive 
+0x544e 012926 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x544f 012927 jam unspecified_error ,mem_lmo_reason2 
+0x5450 012928 jam lmp_max_slot_req ,mem_lmi_opcode2 
+0x5451 012929 rtn 
+:      012931 parse_lmp_detach:
+0x5452 012932 call prepare_disconnect 
+0x5453 012933 branch accept_lmp_msg 
+:      012935 accept_lmp_msg:
+0x5454 012936 jam lmp_accepted ,mem_lmo_opcode2 
+0x5455 012937 rtn 
+:      012939 parse_lmp_incr_power:
+0x5456 012940 jam lmp_max_power ,mem_lmo_opcode2 
+0x5457 012941 rtn 
+:      012943 parse_lmp_decr_power:
+0x5458 012944 jam lmp_min_power ,mem_lmo_opcode2 
+0x5459 012945 rtn 
+:      012947 parse_lmp_version_res:
+0x545a 012948 fetch 1 ,mem_conn_sm 
+0x545b 012949 rtneq conn_sm_wait_version 
+0x545c 012951 jam conn_sm_send_features ,mem_conn_sm 
+0x545d 012953 rtn 
+:      012956 parse_lmp_auto_rate:
+0x545e 012957 rtn 
+:      012959 parse_lmp_in_rand:
+0x545f 012960 call lmp_copy_rand 
+0x5460 012961 jam pincode_state_wait_pincode ,mem_pincode_state 
+0x5461 012962 jam bt_evt_pincode_req ,mem_fifo_temp 
+0x5462 012963 call ui_ipc_send_event 
+0x5463 012965 call tid_check 
+0x5464 012966 nbranch lmp_accept_inrand ,true 
+0x5465 012968 nbranch parse_lmp_inrand_res ,master 
+0x5466 012969 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5467 012970 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5468 012971 jam transaction_collision ,mem_lmo_reason2 
+0x5469 012972 rtn 
+:      012973 parse_lmp_inrand_res:
+0x546a 012974 fetch 1 ,mem_op 
+0x546b 012975 set1 op_inrand_req ,pdata 
+0x546c 012976 store 1 ,mem_op 
+0x546d 012977 rtn 
+:      012980 pop_tid_follow:
+0x546e 012981 fetcht 1 ,mem_state_map 
+0x546f 012982 nsetflag blank ,smap_lmptid ,temp 
+0x5470 012983 storet 1 ,mem_state_map 
+0x5471 012984 rtn 
+:      012987 push_tid_follow:
+0x5472 012988 fetch 1 ,mem_lmo_tid2 
+0x5473 012989 rshift pdata ,pdata 
+0x5474 012990 and_into 1 ,pdata 
+0x5475 012991 rtn 
+:      012993 parse_lmp_au_rand_moudle:
+0x5476 012994 fetch 1 ,mem_device_option 
+0x5477 012995 rtnne dvc_op_module 
+0x5478 012996 fetch 1 ,mem_pairing_auth 
+0x5479 012997 call load_device_list ,blank 
+0x547a 012998 rtn 
+:      013000 parse_lmp_au_rand:
+0x547b 013001 call parse_lmp_au_rand_moudle 
+0x547c 013002 call push_tid_follow 
+0x547d 013003 store 1 ,mem_sres_tid 
+0x547e 013004 call lmp_copy_rand 
+0x547f 013005 jam lmp_sres ,mem_lmo_opcode2 
+0x5480 013006 fetch 1 ,mem_link_key_exists 
+0x5481 013007 nrtn blank 
+0x5482 013008 fetch 1 ,mem_state 
+0x5483 013009 rtnbit1 state_combkey 
+0x5484 013010 jam key_missing ,mem_lmo_reason2 
+0x5485 013011 branch reject_lmp_packet 
+:      013013 parse_lmp_sres:
+0x5486 013014 arg mem_plap ,rega 
+0x5487 013015 call function_e1 
+0x5488 013016 fetch 4 ,mem_rxbuf + 1 
+0x5489 013017 fetcht 4 ,mem_input_store 
+0x548a 013018 isub temp ,null 
+0x548b 013019 branch authentication_ok ,zero 
+0x548c 013020 jam lmp_detach ,mem_lmo_opcode2 
+0x548d 013021 jam authentication_failure_error ,mem_disconn_reason_send 
+0x548e 013022 rtn 
+:      013023 authentication_ok:
+0x548f 013024 call authentication_ok_common 
+0x5490 013025 fetch 1 ,mem_ssp_enable 
+0x5491 013026 branch pairing_success ,blank 
+0x5492 013027 rtn 
+:      013030 authentication_ok_common:
+0x5493 013031 call copy_aco 
+0x5494 013032 call linkkey_ready 
+0x5495 013033 fetch 1 ,mem_op 
+0x5496 013034 isolate1 op_auth_req ,pdata 
+0x5497 013035 set0 op_auth_req ,pdata 
+0x5498 013036 store 1 ,mem_op 
+0x5499 013037 fetch 1 ,mem_conn_sm 
+0x549a 013038 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+0x549b 013039 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+0x549c 013040 rtn 
+:      013041 authentication_ok_conn_sm:
+0x549d 013042 fetch 1 ,mem_pairing_auth 
+0x549e 013043 rtnne defalt_pairing_auth 
+0x549f 013044 fetch 1 ,mem_state_map 
+0x54a0 013045 rtnbit1 smap_encryption 
+0x54a1 013046 branch host_create_conn_encrypt 
+:      013048 parse_lmp_comb_key:
+0x54a2 013049 arg mem_rxbuf + 1 ,rega 
+0x54a3 013050 arg mem_kinit ,regb 
+0x54a4 013051 arg mem_random_number ,contw 
+0x54a5 013052 call xor16 
+0x54a6 013053 arg mem_plap ,rega 
+0x54a7 013054 call generate_linkkey 
+0x54a8 013055 jam lmp_au_rand ,mem_lmo_opcode2 
+0x54a9 013056 fetch 1 ,mem_state 
+0x54aa 013057 bbit0 state_combkey ,lmp_generate_key 
+0x54ab 013058 rtn 
+:      013060 parse_lmp_name_res:
+0x54ac 013061 fetch 2 ,mem_len 
+0x54ad 013062 add pdata ,-3 ,loopcnt 
+0x54ae 013063 fetcht 1 ,mem_rxbuf + 1 
+0x54af 013064 setarg mem_tmp_buffer 
+0x54b0 013065 iadd temp ,contw 
+0x54b1 013066 arg mem_rxbuf + 3 ,contr 
+0x54b2 013067 call memcpy 
+0x54b3 013068 fetcht 1 ,mem_name_offset 
+0x54b4 013069 fetch 1 ,mem_rxbuf + 2 
+0x54b5 013070 isub temp ,pdata 
+0x54b6 013071 sub pdata ,14 ,null 
+0x54b7 013072 branch parse_lmp_name_res_end ,positive 
+0x54b8 013073 add temp ,14 ,pdata 
+0x54b9 013074 store 1 ,mem_name_offset 
+0x54ba 013075 jam lmp_name_req ,mem_lmo_opcode2 
+0x54bb 013076 rtn 
+:      013077 parse_lmp_name_res_end:
+0x54bc 013078 fetch 1 ,mem_state_map 
+0x54bd 013079 set1 smap_name_res ,pdata 
+0x54be 013080 store 1 ,mem_state_map 
+0x54bf 013081 bbit1 smap_name_req ,lmp_disconnect 
+0x54c0 013082 rtn 
+:      013083 parse_lmp_name_req:
+0x54c1 013084 fetch 1 ,mem_rxbuf + 1 
+0x54c2 013085 store 1 ,mem_lmi_opcode2 
+0x54c3 013086 jam lmp_name_res ,mem_lmo_opcode2 
+0x54c4 013087 rtn 
+:      013089 parse_lmp_conn_req:
+0x54c5 013090 branch accept_lmp_msg 
+:      013092 parse_lmp_timing_accuracy_req:
+0x54c6 013093 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+0x54c7 013094 rtn 
+:      013096 parse_lmp_features_req:
+0x54c8 013097 jam lmp_features_res ,mem_lmo_opcode2 
+0x54c9 013098 rtn 
+:      013100 parse_lmp_version_req:
+0x54ca 013101 jam lmp_version_res ,mem_lmo_opcode2 
+0x54cb 013102 rtn 
+:      013104 parse_lmp_supervision_timeout:
+0x54cc 013107 rtn 
+:      013111 parse_lmp_sniff_subrating_req:
+0x54cd 013112 fetch 2 ,mem_tsniff 
+0x54ce 013113 iforce temp 
+0x54cf 013114 fetch 1 ,mem_rxbuf + 2 
+0x54d0 013115 store 1 ,mem_subsniff_rate 
+0x54d1 013116 imul32 temp ,temp 
+0x54d2 013117 fetch 2 ,mem_rxbuf + 3 
+0x54d3 013118 lshift pdata ,pdata 
+0x54d4 013119 store 2 ,mem_subsniff_tcmax 
+0x54d5 013120 fetch 4 ,mem_rxbuf + 5 
+0x54d6 013121 lshift pdata ,pdata 
+0x54d7 013122 store 4 ,mem_subsniff_instant 
+0x54d8 013124 deposit temp 
+0x54d9 013125 store 2 ,mem_subsniff_tsniff 
+0x54da 013126 rtn 
+:      013127 parse_lmpext_packet_type_table_req:
+0x54db 013128 fetcht 1 ,mem_ptt 
+0x54dc 013129 fetch 1 ,mem_rxbuf + 2 
+0x54dd 013130 ixor temp ,null 
+0x54de 013131 nbranch reject_unknown_ext_packet ,zero 
+0x54df 013132 isolate1 0 ,pdata 
+0x54e0 013133 fetch 1 ,mem_state_map 
+0x54e1 013134 setflag true ,smap_edr ,pdata 
+0x54e2 013135 store 1 ,mem_state_map 
+0x54e3 013136 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x54e4 013137 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+0x54e5 013138 rtn 
+:      013141 parse_lmp_sniff_subrating_res:
+:      013142 parse_lmp_preferred_rate:
+:      013143 parse_lmp_max_power:
+:      013144 parse_lmp_min_power:
+0x54e6 013145 rtn 
+:      013146 parse_lmp_page_mode_req:
+0x54e7 013148 branch accept_lmp_msg 
+:      013149 parse_lmp_page_scan_mode_req:
+0x54e8 013152 branch accept_lmp_msg 
+:      013156 parse_lmp_slot_offset:
+0x54e9 013157 fetch 2 ,mem_rxbuf + 1 
+0x54ea 013158 store 2 ,mem_slot_offset 
+0x54eb 013159 rtn 
+:      013161 parse_lmp_sniff_req_check_sniff_para:
+0x54ec 013162 fetch 2 ,mem_rxbuf + 4 
+0x54ed 013163 fetcht 1 ,mem_lpm_mult 
+0x54ee 013164 imul32 temp ,pdata 
+0x54ef 013165 arg 0x640 ,temp 
+0x54f0 013166 isub temp ,null 
+0x54f1 013168 rtn 
+:      013170 parse_lmp_sniff_req:
+0x54f2 013171 call parse_lmp_sniff_req_check_sniff_para 
+0x54f3 013172 branch lmp_reject_sniff ,positive 
+0x54f4 013173 fetch 1 ,mem_state 
+0x54f5 013174 bbit1 state_insniff ,lmp_reject_sniff 
+0x54f6 013175 fetch 2 ,mem_rxbuf + 2 
+0x54f7 013176 lshift pdata ,pdata 
+0x54f8 013177 store 2 ,mem_dsniff 
+0x54f9 013178 fetch 2 ,mem_rxbuf + 4 
+0x54fa 013179 lshift pdata ,pdata 
+0x54fb 013180 store 2 ,mem_tsniff 
+0x54fc 013181 fetch 2 ,mem_rxbuf + 6 
+0x54fd 013182 store 1 ,mem_sniff_attempt 
+0x54fe 013183 iforce temp 
+0x54ff 013184 fetch 2 ,mem_rxbuf + 8 
+0x5500 013185 store 1 ,mem_sniff_timeout 
+0x5501 013186 isub temp ,null 
+0x5502 013187 nbranch set_big_value_to_attempt ,positive 
+0x5503 013188 store 1 ,mem_sniff_attempt 
+:      013189 set_big_value_to_attempt:
+0x5504 013191 jam lmp_accepted ,mem_lmo_opcode2 
+0x5505 013192 jam lmp_sniff_req ,mem_lmi_opcode2 
+0x5506 013193 rtn 
+:      013195 lmp_reject_sniff:
+0x5507 013196 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5508 013197 branch reject_lmp_packet 
+:      013199 parse_lmp_start_encryption_req:
+0x5509 013200 call accept_lmp_msg 
+0x550a 013201 call lmp_copy_rand 
+0x550b 013202 call function_e3 
+0x550c 013203 branch start_encryption 
+:      013205 parse_lmp_stop_encryption_req:
+0x550d 013206 call accept_lmp_msg 
+0x550e 013207 branch stop_encryption 
+:      013210 parse_lmp_switch_req:
+0x550f 013211 fetch 4 ,mem_rxbuf + 1 
+0x5510 013212 lshift pdata ,pdata 
+0x5511 013214 branch parse_lmp_switch_accept ,master 
+0x5512 013215 fetcht 1 ,mem_link_key_exists 
+0x5513 013216 nbranch parse_lmp_switch_req_clear_mark ,blank 
+:      013217 parse_lmp_switch_req_not_accept:
+0x5514 013218 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5515 013219 jam lmp_switch_req ,mem_lmi_opcode2 
+0x5516 013220 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5517 013221 rtn 
+:      013222 parse_lmp_switch_req_clear_mark:
+0x5518 013223 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x5519 013224 jam 0 ,mem_conn_sm 
+0x551a 013225 branch role_switch_prepare 
+:      013227 parse_lmp_switch_accept:
+0x551b 013228 call role_switch_prepare 
+0x551c 013229 set1 mark_reconn_recieve_switch ,mark 
+0x551d 013230 fetch 1 ,mem_connection_options 
+0x551e 013231 set0 connection_switch ,pdata 
+0x551f 013232 store 1 ,mem_connection_options 
+0x5520 013233 branch accept_lmp_msg 
+:      013237 parse_lmp_temp_rand:
+:      013238 parse_lmp_temp_key:
+:      013239 parse_lmp_timing_accuracy_res:
+:      013240 parse_lmp_unit_key:
+:      013241 parse_lmp_use_semi_permanend_key:
+0x5521 013242 rtn 
+:      013245 parse_lmp_unsniff_req:
+0x5522 013246 jam lmp_accepted ,mem_lmo_opcode2 
+0x5523 013247 jam lmp_unsniff_req ,mem_lmi_opcode2 
+0x5524 013248 jam bt_evt_remote_unsniff ,mem_fifo_temp 
+0x5525 013249 call ui_ipc_send_event 
+0x5526 013250 branch sniff_exit 
+:      013252 parse_lmp_encapsulated_header:
+0x5527 013253 fetch 1 ,mem_rxbuf + 1 
+0x5528 013254 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5529 013255 fetch 1 ,mem_rxbuf + 2 
+0x552a 013256 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x552b 013257 fetch 1 ,mem_rxbuf + 3 
+0x552c 013258 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+0x552d 013259 call check_localsm 
+0x552e 013260 branch parse_lmp_encapsulated_header_master ,true 
+0x552f 013261 jam sp_stat_key_recv ,mem_sp_state 
+:      013262 parse_lmp_encapsulated_header_master:
+0x5530 013263 jam lmp_accepted ,mem_lmo_opcode2 
+0x5531 013264 jam lmp_encapsulated_header ,mem_lmi_opcode2 
+0x5532 013265 branch parse_rx_done 
+:      013267 parse_lmp_encapsulated_header_reject:
+0x5533 013268 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5534 013269 branch reject_lmp_packet 
+:      013271 parse_lmp_accepted_encapsulated_header:
+0x5535 013274 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5536 013276 rtn 
+:      013277 parse_lmp_accepted_simple_pairing_number:
+0x5537 013278 fetch 1 ,mem_ssp_mode_flag 
+0x5538 013279 beq ssp_mode_ssp_pin_flag ,parse_lmp_accepted_simple_pairing_number_ssp_pin 
+0x5539 013280 beq ssp_mode_passkey_entry_flag ,parse_lmp_accepted_simple_pairing_number_passkey 
+:      013281 parse_lmp_accepted_simple_pairing_number_common:
+0x553a 013282 call check_localsm 
+0x553b 013283 rtn true 
+0x553c 013284 jam sp_stat_confirm_recv ,mem_sp_state 
+0x553d 013285 rtn 
+:      013287 parse_lmp_accepted_simple_pairing_number_ssp_pin:
+0x553e 013288 call g_noninit_number_confirm 
+0x553f 013289 jam bt_evt_bt_gkey_generate ,mem_fifo_temp 
+0x5540 013290 call ui_ipc_send_event 
+0x5541 013291 branch parse_lmp_accepted_simple_pairing_number_common 
+:      013294 parse_lmp_accepted_simple_pairing_number_passkey:
+0x5542 013295 call check_localsm 
+0x5543 013296 rtn true 
+0x5544 013297 fetch 1 ,mem_authentication_passkey_times 
+0x5545 013298 beq 19 ,authentication_passkey_end 
+0x5546 013299 increase 1 ,pdata 
+0x5547 013300 store 1 ,mem_authentication_passkey_times 
+:      013303 authentication_passkey:
+0x5548 013304 jam sp_flag_commit ,mem_sp_flag 
+0x5549 013305 jam sp_stat_commit_calc ,mem_sp_state 
+0x554a 013306 fetch 1 ,mem_authentication_passkey_times 
+0x554b 013307 copy pdata ,queue 
+0x554c 013308 fetch 6 ,mem_pin 
+0x554d 013309 qisolate1 pdata 
+0x554e 013310 setarg 0x80 
+0x554f 013311 setflag true ,0 ,pdata 
+0x5550 013312 store 1 ,mem_passkey_1bit 
+0x5551 013313 rtn 
+:      013315 authentication_passkey_end:
+0x5552 013316 jam sp_stat_confirm_recv ,mem_sp_state 
+0x5553 013317 rtn 
+:      013319 parse_lmp_accepted_dhkey_check:
+0x5554 013320 call parse_lmp_accepted_dhkey_check_common 
+:      013321 pairing_success:
+0x5555 013322 fetch 1 ,mem_flag_pairing_state 
+0x5556 013323 rtn blank 
+0x5557 013324 jam flag_pairing_state_not_pairing ,mem_flag_pairing_state 
+0x5558 013325 jam bt_evt_bt_pairing_success ,mem_fifo_temp 
+0x5559 013326 branch ui_ipc_send_event 
+:      013329 parse_lmp_accepted_dhkey_check_common:
+0x555a 013331 call check_localsm 
+0x555b 013332 ncall g_noninit ,true 
+0x555c 013333 call g_init ,true 
+0x555d 013334 call check_localsm 
+0x555e 013335 rtn true 
+0x555f 013336 jam sp_stat_link_key_calc ,mem_sp_state 
+0x5560 013337 jam sp_flag_commit ,mem_sp_flag 
+0x5561 013338 rtn 
+:      013340 parse_simple_pairing_confirm:
+0x5562 013341 arg mem_sp_confirm_remote ,contw 
+0x5563 013342 arg mem_rxbuf + 1 ,contr 
+0x5564 013343 call memcpy16 
+0x5565 013344 fetch 1 ,mem_ssp_mode_flag 
+0x5566 013345 rtneq ssp_mode_passkey_entry_flag 
+0x5567 013346 branch master_set_mem_master_sp_flag 
+:      013348 parse_lmp_encapsulated_payload:
+0x5568 013349 fetch 1 ,mem_master_sp_state 
+0x5569 013350 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+0x556a 013351 fetch 1 ,mem_sp_state 
+0x556b 013352 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+:      013353 parse_encapsulated_payload_master:
+0x556c 013354 fetch 1 ,mem_sp_remote_key_recv_count 
+0x556d 013355 sub pdata ,0x20 ,contw 
+0x556e 013356 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+0x556f 013357 arg mem_sp_pubkey_remote ,contw 
+0x5570 013358 iadd contw ,contw 
+0x5571 013359 fetch 8 ,mem_rxbuf + 1 
+0x5572 013360 istore 8 ,contw 
+0x5573 013361 fetch 8 ,mem_rxbuf + 9 
+0x5574 013362 istore 8 ,contw 
+0x5575 013363 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5576 013364 increase 16 ,pdata 
+0x5577 013365 store 1 ,mem_sp_remote_key_recv_count 
+0x5578 013366 bne encapsulated_len_p192 ,accept_lmp_msg 
+:      013367 parse_lmp_encapsulated_payload_completed:
+0x5579 013368 call check_localsm 
+0x557a 013369 branch accept_lmp_msg ,true 
+0x557b 013370 jam sp_key_valid ,mem_sp_remote_key_invalid 
+0x557c 013371 jam sp_stat_key_generate ,mem_sp_state 
+0x557d 013372 jam sp_flag_commit ,mem_sp_flag 
+0x557e 013373 branch accept_lmp_msg 
+:      013374 parse_lmp_encapsulated_payload_reject:
+0x557f 013375 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5580 013376 branch reject_lmp_packet 
+:      013377 parse_lmp_accepted_encapsulated_payload:
+0x5581 013378 fetch 1 ,mem_sp_local_key_send_count 
+0x5582 013379 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+0x5583 013380 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5584 013381 branch parse_rx_done 
+:      013383 parse_lmp_encapsulated_payload_all_accepted:
+0x5585 013384 call check_localsm 
+0x5586 013385 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+0x5587 013386 fetch 1 ,mem_ssp_mode_flag 
+0x5588 013387 beq ssp_mode_passkey_entry_flag ,parse_lmp_encapsulated_payload_all_accepted_get_passkey 
+0x5589 013388 jam sp_flag_commit ,mem_sp_flag 
+0x558a 013389 jam sp_stat_commit_calc ,mem_sp_state 
+0x558b 013390 branch parse_rx_done 
+:      013392 parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+0x558c 013393 jam bt_evt_bt_get_passkey ,mem_fifo_temp 
+0x558d 013394 branch ui_ipc_send_event 
+:      013397 parse_lmp_encapsulated_payload_all_accepted_master:
+0x558e 013399 branch parse_rx_done 
+:      013401 parse_lmp_simple_pairing_number:
+0x558f 013402 fetch 1 ,mem_master_sp_state 
+0x5590 013403 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+0x5591 013404 fetch 1 ,mem_sp_state 
+0x5592 013405 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+:      013406 parse_lmp_simple_pairing_number_master:
+0x5593 013407 arg mem_sp_random_remote ,contw 
+0x5594 013408 fetch 8 ,mem_rxbuf + 1 
+0x5595 013409 istore 8 ,contw 
+0x5596 013410 fetch 8 ,mem_rxbuf + 9 
+0x5597 013411 istore 8 ,contw 
+0x5598 013412 call check_localsm 
+0x5599 013413 branch parse_lmp_simple_pairing_number_master0 ,true 
+0x559a 013414 jam sp_stat_random_send ,mem_sp_state 
+0x559b 013415 jam sp_flag_commit ,mem_sp_flag 
+0x559c 013416 branch accept_lmp_msg 
+:      013417 parse_lmp_simple_pairing_number_master0:
+0x559d 013418 jam sp_stat_commit_calc ,mem_master_sp_state 
+0x559e 013419 branch master_set_mem_master_sp_flag 
+:      013422 parse_lmp_simple_pairing_number_reject:
+0x559f 013423 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55a0 013424 branch reject_lmp_packet 
+:      013426 parse_dhkey_check:
+0x55a1 013427 fetch 1 ,mem_master_sp_state 
+0x55a2 013428 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+0x55a3 013429 fetch 1 ,mem_sp_state 
+0x55a4 013430 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+:      013431 parse_dhkey_check_master:
+0x55a5 013432 arg mem_sp_check_result ,contw 
+0x55a6 013433 arg mem_rxbuf + 1 ,contr 
+0x55a7 013434 call memcpy16 
+0x55a8 013435 call check_localsm 
+0x55a9 013436 branch parse_dhkey_check_master0 ,true 
+0x55aa 013437 fetch 1 ,mem_ssp_mode_flag 
+0x55ab 013438 beq ssp_mode_ssp_pin_flag ,number_comparison_mode 
+:      013439 number_comparison_successed:
+0x55ac 013440 jam 0 ,mem_flag_mode_ssp_pin 
+0x55ad 013441 jam sp_stat_confirm_check ,mem_sp_state 
+0x55ae 013442 jam sp_flag_commit ,mem_sp_flag 
+0x55af 013443 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x55b0 013444 branch parse_rx_done 
+:      013446 parse_dhkey_check_master0:
+0x55b1 013447 jam sp_stat_confirm_check ,mem_master_sp_state 
+0x55b2 013448 jam sp_flag_commit ,mem_master_sp_flag 
+0x55b3 013449 branch parse_rx_done 
+:      013450 parse_lmp_dhkey_check_reject:
+0x55b4 013451 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55b5 013452 branch reject_lmp_packet 
+:      013454 number_comparison_mode:
+0x55b6 013455 fetch 1 ,mem_flag_mode_ssp_pin 
+0x55b7 013456 bbit1 flag_mode_ssp_pin_reviceve_comparison_bit ,comparison_result 
+0x55b8 013457 set1 flag_mode_ssp_pin_recieve_dhkey_bit ,pdata 
+0x55b9 013458 store 1 ,mem_flag_mode_ssp_pin 
+0x55ba 013459 rtn 
+:      013461 comparison_result:
+0x55bb 013462 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x55bc 013463 jam 0 ,mem_flag_mode_ssp_pin 
+0x55bd 013464 branch parse_lmp_dhkey_check_reject 
+:      013467 parse_lmp_clkoffset_res:
+0x55be 013468 branch parse_rx_done 
+:      013470 parse_lmp_encryption_mode_req:
+0x55bf 013471 fetch 1 ,mem_connection_options 
+0x55c0 013472 set0 connection_encrypt 
+0x55c1 013473 store 1 ,mem_connection_options 
+0x55c2 013474 call accept_lmp_msg 
+0x55c3 013475 nrtn master 
+0x55c4 013476 fetch 1 ,mem_rxbuf + 1 
+0x55c5 013477 fetcht 1 ,mem_op 
+0x55c6 013478 setflag blank ,op_stop_enc ,temp 
+0x55c7 013479 nsetflag blank ,op_start_enc ,temp 
+0x55c8 013480 storet 1 ,mem_op 
+0x55c9 013481 rtn 
+:      013483 parse_lmp_features_res:
+0x55ca 013484 fetcht 8 ,mem_rxbuf + 1 
+:      013485 parse_lmp_features_res_not_hci:
+0x55cb 013486 fetch 1 ,mem_conn_sm 
+0x55cc 013487 rtnne conn_sm_wait_features_res 
+0x55cd 013489 fetch 1 ,mem_connection_options 
+0x55ce 013490 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+0x55cf 013492 jam conn_sm_send_features_ext ,mem_conn_sm 
+0x55d0 013493 rtn 
+:      013494 parse_lmp_send_conn:
+0x55d1 013495 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x55d2 013496 rtn 
+:      013497 parse_lmp_test_activate:
+0x55d3 013498 fetch 1 ,mem_debug_config 
+0x55d4 013499 store 1 ,mem_test_mode_old_debug_config 
+0x55d5 013500 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d6 013501 jam lmp_test_activate ,mem_lmi_opcode2 
+0x55d7 013502 rtn 
+:      013503 parse_lmp_test_control:
+0x55d8 013506 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d9 013507 jam lmp_test_control ,mem_lmi_opcode2 
+0x55da 013508 force 9 ,loopcnt 
+0x55db 013509 arg mem_rxbuf + 1 ,contr 
+0x55dc 013510 arg mem_temp_payload ,contw 
+:      013511 parse_lmp_test_xor:
+0x55dd 013512 ifetch 1 ,contr 
+0x55de 013513 xor_into 0x55 ,pdata 
+0x55df 013514 istore 1 ,contw 
+0x55e0 013515 loop parse_lmp_test_xor 
+0x55e1 013516 fetch 1 ,test_mode_scenario 
+0x55e2 013517 fetcht 1 ,mem_tester_emulate 
+0x55e3 013518 set0 tester_no_whitening ,temp 
+0x55e4 013519 set0 tester_pattern_test ,temp 
+0x55e5 013520 beq exit_test_mode ,parse_lmp_test_control_exit 
+0x55e6 013521 beq pause_test_mode ,parse_lmp_test_control_pause 
+0x55e7 013522 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+0x55e8 013523 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55e9 013524 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+0x55ea 013525 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55eb 013526 beq zero_pattern ,parse_lmp_test_control_pattern 
+0x55ec 013527 beq one_pattern ,parse_lmp_test_control_pattern 
+0x55ed 013528 beq alt_pattern ,parse_lmp_test_control_pattern 
+0x55ee 013529 beq alt2_pattern ,parse_lmp_test_control_pattern 
+0x55ef 013530 beq pseudorandom ,parse_lmp_test_control_pattern 
+0x55f0 013531 rtn 
+:      013532 parse_lmp_test_control_exit:
+0x55f1 013534 fetch 1 ,mem_tester_emulate 
+0x55f2 013535 set1 tester_exit ,pdata 
+0x55f3 013536 set1 tester_change ,pdata 
+0x55f4 013537 store 1 ,mem_tester_emulate 
+0x55f5 013538 rtn 
+:      013539 parse_lmp_test_control_pattern:
+0x55f6 013540 set1 tester_pattern_test ,temp 
+0x55f7 013541 jam 5 ,mem_lch_code 
+0x55f8 013542 fetch 2 ,test_mode_data_length 
+0x55f9 013543 iforce loopcnt 
+0x55fa 013544 store 2 ,mem_len 
+0x55fb 013545 arg mem_rxbuf ,contw 
+0x55fc 013546 call pn9 
+:      013547 parse_lmp_test_control_loopback_nowhite:
+0x55fd 013548 set1 tester_no_whitening ,temp 
+:      013549 parse_lmp_test_control_loopback:
+0x55fe 013550 set1 tester_change ,temp 
+0x55ff 013551 force 0 ,pdata 
+0x5600 013552 store 1 ,mem_slave_rcvcnt 
+0x5601 013553 store 2 ,mem_tst_pktcnt_crc 
+0x5602 013554 store 2 ,mem_tst_pktcnt_dmh 
+0x5603 013555 store 2 ,mem_tst_pktcnt_hec 
+0x5604 013556 store 2 ,mem_tst_pktcnt_sync 
+0x5605 013557 fetch 1 ,test_mode_hopping_mode 
+0x5606 013558 compare fixed_freq ,pdata ,0xff 
+0x5607 013559 setflag true ,tester_fixed_freq ,temp 
+0x5608 013560 storet 1 ,mem_tester_emulate 
+0x5609 013561 rtn 
+:      013563 parse_lmp_test_control_pause:
+0x560a 013564 set0 mark_testmode ,mark 
+0x560b 013565 jam 0 ,mem_tester_emulate 
+0x560c 013566 fetch 1 ,mem_debug_config 
+0x560d 013567 set0 debug_tx_pattern ,pdata 
+0x560e 013568 store 1 ,mem_debug_config 
+0x560f 013569 rtn 
+:      013575 lmp_copy_rand:
+0x5610 013576 arg mem_rxbuf + 1 ,contr 
+0x5611 013577 arg mem_random_number ,contw 
+0x5612 013578 branch memcpy16 
+:      013580 lmp_generate_key:
+0x5613 013581 jam lmp_comb_key ,mem_lmo_opcode2 
+0x5614 013582 rtn 
+:      013584 lmp_start_encryption:
+0x5615 013585 nrtn master 
+0x5616 013586 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+0x5617 013587 rtn 
+:      013589 lmp_accept_inrand:
+0x5618 013590 arg mem_lap ,rega 
+0x5619 013591 call generate_kinit 
+0x561a 013592 jam lmp_accepted ,mem_lmo_opcode2 
+0x561b 013593 jam lmp_in_rand ,mem_lmi_opcode2 
+0x561c 013594 rtn 
+:      013596 lmp_disconnect:
+0x561d 013597 jam 10 ,mem_conn_timer 
+0x561e 013598 jam lmp_detach ,mem_lmo_opcode2 
+0x561f 013599 jam local_host ,mem_disconn_reason_send 
+0x5620 013600 rtn 
+:      013606 send_lmp:
+0x5621 013607 set1 mark_ext_patch ,mark 
+0x5622 013608 bpatch patch2b_0 ,mem_patch2b 
+0x5623 013609 disable user 
+0x5624 013610 call lmo_fifo_process 
+0x5625 013611 fetch 1 ,mem_lmp_to_send 
+0x5626 013612 rtn blank 
+0x5627 013617 bbit1 7 ,send_lmp_escape 
+:      013618 send_lmp0:
+0x5628 013619 beq lmp_name_req ,send_lmp_name_req 
+0x5629 013620 beq lmp_name_res ,send_lmp_name_res 
+0x562a 013621 beq lmp_accepted ,send_lmp_accepted 
+0x562b 013622 beq lmp_not_accepted ,send_lmp_not_accepted 
+0x562c 013623 beq lmp_features_req ,send_lmp_features_req 
+0x562d 013624 beq lmp_features_res ,send_lmp_features_res 
+0x562e 013625 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+0x562f 013626 beq lmp_version_req ,send_lmp_version_req 
+0x5630 013627 beq lmp_version_res ,send_lmp_version_res 
+0x5631 013628 beq lmp_setup_complete ,send_lmp_setup_complete 
+0x5632 013629 beq lmp_supervision_timeout ,send_lmp_superto 
+0x5633 013630 beq lmp_host_connection_req ,send_lmp_no_payload 
+0x5634 013631 beq lmp_in_rand ,send_lmp_inrand 
+0x5635 013632 beq lmp_comb_key ,send_lmp_comb_key 
+0x5636 013633 beq lmp_au_rand ,send_lmp_aurand 
+0x5637 013634 beq lmp_sres ,send_lmp_sres 
+0x5638 013635 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+0x5639 013636 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+0x563a 013637 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+0x563b 013638 beq lmp_detach ,send_lmp_detach 
+0x563c 013639 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+0x563d 013640 beq lmp_unit_key ,send_lmp_unit_key 
+0x563e 013642 beq lmp_incr_power_req ,send_lmp_inc_power 
+0x563f 013643 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+0x5640 013644 beq lmp_max_power ,send_lmp_nopayload_reply 
+0x5641 013645 beq lmp_max_slot ,send_lmp_max_slot 
+0x5642 013646 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+0x5643 013647 beq lmp_min_power ,send_lmp_nopayload_reply 
+0x5644 013648 beq lmp_slot_offset ,send_lmp_slot_offset 
+0x5645 013649 beq lmp_switch_req ,send_lmp_switch_req 
+0x5646 013650 beq lmp_sniff_req ,send_lmp_sniff_req 
+0x5647 013651 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+0x5648 013652 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+0x5649 013653 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+0x564a 013654 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+0x564b 013655 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+0x564c 013656 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+0x564d 013657 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+0x564e 013658 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+0x564f 013659 beq lmp_auto_rate ,send_lmp_auto_rate 
+0x5650 013660 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+0x5651 013662 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+0x5652 013663 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+0x5653 013664 beq lmp_test_activate ,send_lmp_test_activate 
+0x5654 013665 beq lmp_test_control ,send_lmp_test_control 
+:      013666 send_lmp_error:
+0x5655 013667 branch assert 
+0x5656 013668 rtn 
+:      013669 send_lmp_escape:
+0x5657 013670 beq lmp_ext_accepted ,send_lmpext_accepted 
+0x5658 013671 beq lmp_ext_features_res ,send_lmpext_features_res 
+0x5659 013672 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+0x565a 013673 beq lmp_ext_features_req ,send_lmpext_features_req 
+0x565b 013674 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+0x565c 013675 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+0x565d 013676 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+0x565e 013677 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+0x565f 013678 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+0x5660 013679 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+0x5661 013680 branch assert 
+:      013686 send_lmp_accepted:
+0x5662 013687 force 2 ,pdata 
+0x5663 013688 call msg_send_lmp 
+0x5664 013689 fetch 1 ,mem_lmi_opcode 
+0x5665 013690 istore 1 ,contw 
+0x5666 013691 call send_lmp_follow 
+0x5667 013692 set1 mark_ext_patch ,mark 
+0x5668 013693 bpatch patch2b_1 ,mem_patch2b 
+0x5669 013694 fetch 1 ,mem_lmi_opcode 
+0x566a 013695 beq lmp_in_rand ,send_lmp_accepted_inrand 
+0x566b 013696 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+0x566c 013697 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+0x566d 013698 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+0x566e 013699 beq lmp_host_connection_req ,send_lmp_accepted_connection 
+0x566f 013700 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+0x5670 013701 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+0x5671 013702 rtn 
+:      013704 send_create_conn_start_l2cap_timer_sm:
+0x5672 013705 fetch 1 ,mem_conn_sm 
+0x5673 013706 rtn blank 
+0x5674 013707 jam conn_sm_wait_done ,mem_conn_sm 
+0x5675 013708 setarg timer_enpt_waite 
+0x5676 013709 arg enpt_delay_timer ,queue 
+0x5677 013710 branch timer_init 
+:      013712 send_lmp_accept_sniff_req:
+0x5678 013713 branch sniff_init 
+:      013714 send_lmp_not_accepted:
+0x5679 013715 force 3 ,pdata 
+0x567a 013716 call msg_send_lmp 
+0x567b 013717 fetch 1 ,mem_lmi_opcode 
+0x567c 013718 beq lmp_au_rand ,send_not_accept_aurand 
+0x567d 013719 istore 1 ,contw 
+0x567e 013720 fetch 1 ,mem_lmo_reason 
+0x567f 013721 istore 1 ,contw 
+0x5680 013722 branch send_lmp_follow 
+:      013724 send_not_accept_aurand:
+0x5681 013725 istore 1 ,contw 
+0x5682 013726 fetch 1 ,mem_lmo_reason 
+0x5683 013727 istore 1 ,contw 
+0x5684 013728 arg mem_sres_tid ,temp 
+0x5685 013729 branch special_tid_store 
+:      013731 send_lmpext_accepted:
+0x5686 013732 force 4 ,queue 
+0x5687 013733 call send_lmpext 
+0x5688 013734 setarg lmp_escape 
+0x5689 013735 istore 1 ,contw 
+0x568a 013736 fetch 1 ,mem_lmi_opcode 
+0x568b 013737 set0 7 ,pdata 
+0x568c 013738 istore 1 ,contw 
+0x568d 013739 fetch 1 ,mem_lmi_opcode 
+0x568e 013740 branch send_lmp_follow 
+:      013742 send_lmpext_not_accepted:
+0x568f 013743 force 5 ,queue 
+0x5690 013744 call send_lmpext 
+0x5691 013745 setarg lmp_escape 
+0x5692 013746 istore 1 ,contw 
+0x5693 013747 fetch 1 ,mem_lmi_opcode 
+0x5694 013748 set0 7 ,pdata 
+0x5695 013749 istore 1 ,contw 
+0x5696 013750 fetch 1 ,mem_lmo_reason 
+0x5697 013751 istore 1 ,contw 
+0x5698 013752 branch send_lmp_follow 
+:      013755 send_lmp_accepted_inrand:
+0x5699 013756 call clear_linkkey 
+0x569a 013757 call tid_check 
+0x569b 013758 rtn true 
+0x569c 013759 branch lmp_generate_key 
+:      013761 send_lmp_accepted_enc_mode:
+0x569d 013762 fetch 1 ,mem_op 
+0x569e 013763 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+0x569f 013764 rtnbit0 op_stop_enc 
+0x56a0 013765 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x56a1 013766 set0 op_stop_enc ,pdata 
+0x56a2 013767 call tid_reply 
+0x56a3 013768 branch send_lmp_accepted_enc_exit 
+:      013769 send_lmp_accepted_enc_start:
+0x56a4 013770 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x56a5 013771 set0 op_start_enc ,pdata 
+:      013772 send_lmp_accepted_enc_exit:
+0x56a6 013773 store 1 ,mem_op 
+0x56a7 013774 rtn 
+:      013776 send_lmp_accepted_enc_key:
+0x56a8 013777 call check_localsm 
+0x56a9 013778 branch lmp_start_encryption ,true 
+0x56aa 013779 rtn 
+:      013781 send_lmp_accepted_connection:
+0x56ab 013782 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+0x56ac 013784 fetch 1 ,mem_lmp_conn_state 
+0x56ad 013785 set1 received_conn_req ,pdata 
+0x56ae 013786 store 1 ,mem_lmp_conn_state 
+0x56af 013787 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x56b0 013788 branch ui_ipc_send_event 
+:      013791 send_lmp_accept_dhkey_check:
+0x56b1 013792 rtn 
+:      013796 send_lmpext_features_res:
+0x56b2 013797 force 12 ,queue 
+0x56b3 013798 call send_lmpext 
+0x56b4 013799 setarg 0x01 
+0x56b5 013800 istore 1 ,contw 
+0x56b6 013801 fetch 2 ,mem_lmpext_ssp_enable 
+0x56b7 013802 istore 2 ,contw 
+0x56b8 013803 setarg 0 
+0x56b9 013804 istore 3 ,contw 
+0x56ba 013805 setarg 0x00 
+0x56bb 013806 istore 4 ,contw 
+0x56bc 013807 branch send_lmp_reply 
+:      013808 send_lmpext_io_cap_res:
+0x56bd 013809 force 5 ,queue 
+0x56be 013810 call send_lmpext 
+0x56bf 013811 fetch 3 ,mem_sp_iocap_local 
+0x56c0 013812 istore 3 ,contw 
+0x56c1 013813 call send_lmp_reply 
+0x56c2 013814 jam flag_pairing_state_pairing ,mem_flag_pairing_state 
+0x56c3 013815 fetch 1 ,mem_sp_iocap_local 
+0x56c4 013816 beq display_yesno ,responder_iocap_display_yesno 
+0x56c5 013817 beq keyboard_only ,responder_iocap_keyboard_only 
+0x56c6 013818 beq no_input_no_output ,responder_iocap_no_input_no_output 
+0x56c7 013819 rtn 
+:      013821 responder_iocap_keyboard_only:
+0x56c8 013822 fetch 1 ,mem_sp_iocap_remote 
+0x56c9 013823 beq display_only ,responder_iocap_keyboard_only_initiator_iocap_display_only 
+0x56ca 013824 beq display_yesno ,responder_iocap_keyboard_only_initiator_iocap_display_yesno 
+0x56cb 013825 beq keyboard_only ,responder_iocap_keyboard_only_initiator_iocap_keyboard_only 
+0x56cc 013826 beq no_input_no_output ,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output 
+0x56cd 013827 rtn 
+:      013830 responder_iocap_display_yesno:
+0x56ce 013831 fetch 1 ,mem_sp_iocap_remote 
+0x56cf 013832 beq display_only ,responder_iocap_display_yesno_initiator_iocap_display_only 
+0x56d0 013833 beq display_yesno ,responder_iocap_display_yesno_initiator_iocap_display_yesno 
+0x56d1 013834 beq keyboard_only ,responder_iocap_display_yesno_initiator_iocap_keyboard_only 
+0x56d2 013835 beq no_input_no_output ,responder_iocap_display_yesno_initiator_iocap_no_input_no_output 
+0x56d3 013836 rtn 
+:      013839 responder_iocap_no_input_no_output:
+0x56d4 013840 fetch 1 ,mem_sp_iocap_remote 
+0x56d5 013841 beq display_only ,responder_iocap_no_input_no_output_initiator_iocap_display_only 
+0x56d6 013842 beq display_yesno ,responder_iocap_no_input_no_output_initiator_iocap_display_yesno 
+0x56d7 013843 beq keyboard_only ,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only 
+0x56d8 013844 beq no_input_no_output ,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output 
+0x56d9 013845 rtn 
+:      013847 responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+:      013848 responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+:      013849 responder_iocap_display_yesno_initiator_iocap_display_only:
+:      013850 responder_iocap_no_input_no_output_initiator_iocap_display_only:
+:      013851 responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+:      013852 responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+:      013853 responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+:      013854 set_ssp_mode_justwork:
+0x56da 013855 jam ssp_mode_just_work_flag ,mem_ssp_mode_flag 
+0x56db 013856 rtn 
+:      013858 responder_iocap_display_yesno_initiator_iocap_display_yesno:
+:      013859 set_ssp_mode_numeric_comparison:
+0x56dc 013860 jam ssp_mode_ssp_pin_flag ,mem_ssp_mode_flag 
+0x56dd 013861 rtn 
+:      013863 responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+:      013864 responder_iocap_keyboard_only_initiator_iocap_keyboard_only:
+:      013865 responder_iocap_keyboard_only_initiator_iocap_display_only:
+:      013866 responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+:      013867 set_ssp_mode_passkey:
+0x56de 013868 jam ssp_mode_passkey_entry_flag ,mem_ssp_mode_flag 
+0x56df 013869 rtn 
+:      013874 send_lmp_io_cap_req:
+0x56e0 013875 force 5 ,queue 
+0x56e1 013876 call send_lmpext 
+0x56e2 013877 fetch 3 ,mem_sp_iocap_local 
+0x56e3 013878 istore 3 ,contw 
+0x56e4 013879 branch send_lmp_request 
+:      013882 send_lmpext_sniff_subrating_req:
+0x56e5 013884 rtn 
+:      013885 send_lmpext_sniff_subrating_res:
+0x56e6 013886 force 9 ,queue 
+0x56e7 013887 call send_lmpext 
+0x56e8 013888 fetch 1 ,mem_subsniff_rate 
+0x56e9 013889 istore 1 ,contw 
+0x56ea 013890 fetch 2 ,mem_subsniff_tcmax 
+0x56eb 013891 istore 2 ,contw 
+0x56ec 013892 fetch 4 ,mem_subsniff_instant 
+0x56ed 013893 istore 4 ,contw 
+0x56ee 013894 branch send_lmp_reply 
+:      013896 send_lmp_name_res:
+0x56ef 013897 force 17 ,pdata 
+0x56f0 013898 call msg_send_lmp 
+0x56f1 013899 fetch 1 ,mem_lmi_opcode 
+0x56f2 013900 copy pdata ,temp 
+0x56f3 013901 beq 0x00 ,send_lmp_name_res_offset_ok 
+0x56f4 013902 beq 0x0e ,send_lmp_name_res_offset_ok 
+0x56f5 013903 beq 0x1c ,send_lmp_name_res_offset_ok 
+0x56f6 013904 rtn 
+:      013905 send_lmp_name_res_offset_ok:
+0x56f7 013906 istore 1 ,contw 
+0x56f8 013907 fetch 1 ,mem_local_name_length 
+0x56f9 013908 istore 1 ,contw 
+0x56fa 013909 arg 14 ,loopcnt 
+0x56fb 013910 setarg mem_local_name 
+0x56fc 013911 iadd temp ,contr 
+0x56fd 013912 call memcpy 
+0x56fe 013913 branch send_lmp_reply 
+:      013916 send_lmp_timing_accuracy_res:
+0x56ff 013917 force 3 ,pdata 
+0x5700 013918 call msg_send_lmp 
+0x5701 013919 setarg 0x0114 
+0x5702 013920 istore 2 ,contw 
+0x5703 013921 branch send_lmp_reply 
+:      013923 send_lmp_clkoffset_res:
+0x5704 013925 force 3 ,pdata 
+0x5705 013926 call msg_send_lmp 
+0x5706 013927 fetch 4 ,mem_clke_bt 
+0x5707 013928 isub clkn_bt ,pdata 
+0x5708 013929 branch send_lmp_clkoffset_res_master ,master 
+0x5709 013930 sub pdata ,0 ,pdata 
+:      013931 send_lmp_clkoffset_res_master:
+0x570a 013933 rshift2 pdata ,pdata 
+0x570b 013934 set0 15 ,pdata 
+0x570c 013935 istore 2 ,contw 
+0x570d 013936 branch send_lmp_reply 
+:      013938 send_lmp_version_res:
+0x570e 013939 force 6 ,pdata 
+0x570f 013940 call msg_send_lmp 
+0x5710 013941 fetch 5 ,mem_lmp_version 
+0x5711 013942 istore 5 ,contw 
+0x5712 013943 branch send_lmp_reply 
+:      013945 send_lmp_features_res:
+0x5713 013946 force 9 ,pdata 
+0x5714 013947 call msg_send_lmp 
+0x5715 013948 fetch 8 ,mem_features 
+0x5716 013949 istore 8 ,contw 
+0x5717 013950 branch send_lmp_reply 
+:      013957 send_lmpext_features_req:
+0x5718 013958 force 12 ,queue 
+0x5719 013959 call send_lmpext 
+0x571a 013960 setarg 0x01 
+0x571b 013961 istore 1 ,contw 
+0x571c 013962 fetch 2 ,mem_lmpext_ssp_enable 
+0x571d 013963 istore 2 ,contw 
+0x571e 013964 setarg 0 
+0x571f 013965 istore 3 ,contw 
+0x5720 013966 setarg 0x00 
+0x5721 013967 istore 4 ,contw 
+0x5722 013968 branch send_lmp_request 
+:      013970 send_lmpext_packet_type_table_req:
+0x5723 013971 force 3 ,queue 
+0x5724 013972 call send_lmpext 
+0x5725 013973 fetch 1 ,mem_ptt 
+0x5726 013974 istore 1 ,contw 
+0x5727 013975 disable user 
+0x5728 013976 call send_lmp_request 
+0x5729 013977 nrtn user 
+0x572a 013978 nrtn master 
+0x572b 013979 fetch 1 ,mem_afh_cfg 
+0x572c 013980 rtnbit0 afh_cfg_on 
+0x572d 013981 call afh_init 
+0x572e 013982 branch afh_open_all_channels 
+:      013985 ssp_enable:
+0x572f 013986 set1 mark_ext_patch ,mark 
+0x5730 013987 bpatch patch2b_2 ,mem_patch2b 
+0x5731 013988 fetch 1 ,mem_features + 6 
+0x5732 013989 set1 param_featrue_ssp ,pdata 
+0x5733 013990 store 1 ,mem_features + 6 
+0x5734 013991 setarg param_lmpext_ssp_enable 
+0x5735 013992 store 2 ,mem_lmpext_ssp_enable 
+0x5736 013993 rtn 
+:      013995 ssp_disable:
+0x5737 013996 set1 mark_ext_patch ,mark 
+0x5738 013997 bpatch patch2b_3 ,mem_patch2b 
+0x5739 013998 fetch 1 ,mem_features + 6 
+0x573a 013999 set0 param_featrue_ssp ,pdata 
+0x573b 014000 store 1 ,mem_features + 6 
+0x573c 014001 setarg 0 
+0x573d 014002 store 2 ,mem_lmpext_ssp_enable 
+0x573e 014003 rtn 
+:      014005 afh_init:
+0x573f 014006 jam 0x3 ,mem_afh_cfg 
+0x5740 014007 setarg 0 
+0x5741 014008 store 4 ,mem_afh_timer 
+0x5742 014009 arg mem_afh_map_lo ,contw 
+0x5743 014010 call afh_reset_map 
+0x5744 014011 arg mem_afh_map_new ,contw 
+0x5745 014012 call afh_reset_map 
+0x5746 014013 arg mem_afh_classify_channel_map ,contw 
+0x5747 014014 call afh_reset_map 
+0x5748 014015 branch afh_clear_error_counter 
+:      014016 afh_open_all_channels:
+0x5749 014017 arg mem_afh_map_new ,contw 
+0x574a 014018 call afh_reset_map 
+0x574b 014019 call afh_clear_error_counter 
+0x574c 014020 branch afh_set_send_flag 
+:      014023 afh_reset_map:
+0x574d 014024 setarg 0xffffff 
+0x574e 014025 istore 3 ,contw 
+0x574f 014026 istore 3 ,contw 
+0x5750 014027 istore 3 ,contw 
+0x5751 014028 setarg 0x7f 
+0x5752 014029 istore 1 ,contw 
+0x5753 014030 rtn 
+:      014031 afh_clear_error_counter:
+0x5754 014032 setarg 0 
+0x5755 014033 store 2 ,mem_afh_error_total 
+0x5756 014034 rtn 
+:      014035 afh_set_send_flag:
+0x5757 014036 fetch 1 ,mem_afh_cfg 
+0x5758 014037 set1 send_lmp_set_afh ,pdata 
+0x5759 014038 store 1 ,mem_afh_cfg 
+0x575a 014039 rtn 
+:      014042 send_lmpext_pause_encryption_req:
+0x575b 014043 force 2 ,queue 
+0x575c 014044 call send_lmpext 
+0x575d 014045 nbranch send_lmp_reply ,master 
+0x575e 014047 branch send_lmp_request 
+:      014051 send_lmp_detach:
+0x575f 014052 force 2 ,pdata 
+0x5760 014053 call msg_send_lmp 
+0x5761 014054 fetch 1 ,mem_disconn_reason_send 
+0x5762 014055 istore 1 ,contw 
+0x5763 014056 call send_lmp_request 
+:      014057 prepare_disconnect:
+0x5764 014058 fetch 1 ,mem_op 
+0x5765 014059 set1 op_disconn ,pdata 
+0x5766 014060 store 1 ,mem_op 
+0x5767 014061 jam 50 ,mem_conn_timer 
+0x5768 014062 rtn 
+:      014065 send_lmp_no_payload:
+0x5769 014066 force 1 ,pdata 
+0x576a 014067 call msg_send_lmp 
+0x576b 014068 branch send_lmp_request 
+:      014069 send_lmp_nopayload_reply:
+0x576c 014070 force 1 ,pdata 
+0x576d 014071 call msg_send_lmp 
+0x576e 014072 branch send_lmp_reply 
+:      014075 send_lmp_encryption_mode_req:
+0x576f 014076 force 2 ,pdata 
+0x5770 014077 call msg_send_lmp 
+0x5771 014078 fetch 1 ,mem_state_map 
+0x5772 014079 isolate0 smap_encryption ,pdata 
+0x5773 014080 setflag true ,0 ,pdata 
+0x5774 014081 and_into 1 ,pdata 
+0x5775 014082 istore 1 ,contw 
+0x5776 014083 branch send_lmp_request 
+:      014086 send_lmp_superto:
+0x5777 014087 force 3 ,pdata 
+0x5778 014088 call msg_send_lmp 
+0x5779 014089 fetch 2 ,mem_supervision_to 
+0x577a 014090 istore 2 ,contw 
+0x577b 014091 branch send_lmp_request 
+:      014093 send_lmp_name_req:
+0x577c 014094 jam 250 ,mem_conn_timer 
+0x577d 014095 force 2 ,pdata 
+0x577e 014096 call msg_send_lmp 
+0x577f 014097 fetch 1 ,mem_name_offset 
+0x5780 014098 istore 1 ,contw 
+0x5781 014099 branch send_lmp_request 
+:      014101 send_lmp_test_control:
+0x5782 014102 force 10 ,pdata 
+0x5783 014103 call msg_send_lmp 
+0x5784 014104 arg mem_temp_payload ,contr 
+0x5785 014105 force 9 ,loopcnt 
+:      014106 send_lmp_test_control_loop:
+0x5786 014107 ifetch 1 ,contr 
+0x5787 014108 xor_into 0x55 ,pdata 
+0x5788 014109 istore 1 ,contw 
+0x5789 014110 loop send_lmp_test_control_loop 
+0x578a 014111 branch send_lmp_request 
+:      014113 send_lmp_quality_of_service_req:
+0x578b 014114 branch send_lmp_request 
+:      014115 send_lmp_unit_key:
+0x578c 014116 branch send_lmp_request 
+:      014118 send_lmp_slot_offset:
+0x578d 014119 rtn master 
+0x578e 014120 call calc_slot_offset 
+0x578f 014121 force 9 ,pdata 
+0x5790 014122 call msg_send_lmp 
+0x5791 014123 fetch 2 ,mem_slot_offset 
+0x5792 014124 istore 2 ,contw 
+0x5793 014125 fetch 3 ,mem_lap 
+0x5794 014126 istore 3 ,contw 
+0x5795 014127 fetch 1 ,mem_uap 
+0x5796 014128 istore 1 ,contw 
+0x5797 014129 fetch 2 ,mem_nap 
+0x5798 014130 istore 2 ,contw 
+0x5799 014131 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+0x579a 014132 set0 mark_switch_initiated ,mark 
+0x579b 014133 call send_lmp_request 
+0x579c 014134 jam lmp_switch_req ,mem_lmo_opcode2 
+0x579d 014135 rtn 
+:      014136 send_lmp_slot_offset_reply:
+0x579e 014137 call send_lmp_reply 
+0x579f 014138 jam lmp_accepted ,mem_lmo_opcode2 
+0x57a0 014139 jam lmp_switch_req ,mem_lmi_opcode2 
+0x57a1 014140 rtn 
+:      014142 send_lmp_switch_req:
+0x57a2 014143 arg 0x200 ,temp 
+0x57a3 014144 branch switch_on_native ,master 
+0x57a4 014145 deposit clke_bt 
+0x57a5 014146 branch switch_slack 
+:      014147 switch_on_native:
+0x57a6 014148 deposit clkn_bt 
+:      014149 switch_slack:
+0x57a7 014150 deposit bt_clk 
+0x57a8 014151 iadd temp ,pdata 
+0x57a9 014152 and_into 0x1fc ,pdata 
+0x57aa 014153 store 4 ,mem_sniff_anchor 
+0x57ab 014154 force 5 ,pdata 
+0x57ac 014155 call msg_send_lmp 
+0x57ad 014156 fetch 4 ,mem_sniff_anchor 
+0x57ae 014157 rshift pdata ,pdata 
+0x57af 014158 istore 4 ,contw 
+0x57b0 014159 branch send_lmp_request 
+:      014161 send_lmp_sniff_req:
+0x57b1 014162 force 10 ,pdata 
+0x57b2 014163 call msg_send_lmp 
+0x57b3 014164 arg mem_sniff_payload ,contr 
+0x57b4 014165 ifetch 9 ,contr 
+0x57b5 014166 istore 9 ,contw 
+0x57b6 014167 branch send_lmp_request 
+:      014170 send_lmp_timing_accuracy_req:
+0x57b7 014172 force 3 ,pdata 
+0x57b8 014173 call msg_send_lmp 
+0x57b9 014174 setarg 0x0114 
+0x57ba 014175 istore 2 ,contw 
+0x57bb 014176 branch send_lmp_request 
+:      014178 send_lmp_unsniff_req:
+0x57bc 014180 force 1 ,pdata 
+0x57bd 014181 call msg_send_lmp 
+0x57be 014190 branch send_lmp_request 
+:      014193 send_lmp_max_slot:
+0x57bf 014194 force 2 ,pdata 
+0x57c0 014195 call msg_send_lmp 
+0x57c1 014196 fetch 1 ,mem_max_slot 
+0x57c2 014197 istore 1 ,contw 
+0x57c3 014198 branch send_lmp_request 
+:      014201 send_lmp_max_slot_req:
+0x57c4 014202 force 2 ,pdata 
+0x57c5 014203 call msg_send_lmp 
+0x57c6 014204 setarg 0x05 
+0x57c7 014205 istore 1 ,contw 
+0x57c8 014206 branch send_lmp_request 
+:      014209 send_lmp_inc_power:
+0x57c9 014210 force 2 ,pdata 
+0x57ca 014211 call msg_send_lmp 
+0x57cb 014212 setarg 0x00 
+0x57cc 014213 istore 1 ,contw 
+0x57cd 014214 branch send_lmp_request 
+:      014218 send_lmp_setup_complete:
+0x57ce 014219 jam lmp_max_slot_req ,mem_lmo_opcode2 
+0x57cf 014220 fetch 1 ,mem_state 
+0x57d0 014221 set1 state_conn_comp ,pdata 
+0x57d1 014222 store 1 ,mem_state 
+0x57d2 014223 copy clkn_bt ,pdata 
+0x57d3 014224 store 4 ,mem_aurand_send_delay_time 
+0x57d4 014225 fetch 1 ,mem_lmp_conn_state 
+0x57d5 014226 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+0x57d6 014227 set1 sent_setup_complete ,pdata 
+0x57d7 014228 store 1 ,mem_lmp_conn_state 
+0x57d8 014229 jam bt_evt_setup_complete ,mem_fifo_temp 
+0x57d9 014230 call ui_ipc_send_event 
+0x57da 014231 force 1 ,pdata 
+0x57db 014232 call msg_send_lmp 
+0x57dc 014233 branch send_lmp_request 
+:      014234 send_lmp_setup_complete_has_sent:
+0x57dd 014235 jam 0 ,mem_lmp_to_send 
+0x57de 014236 rtn 
+:      014238 send_lmp_version_req:
+0x57df 014239 force 6 ,pdata 
+0x57e0 014240 call msg_send_lmp 
+0x57e1 014241 fetch 5 ,mem_lmp_version 
+0x57e2 014242 istore 5 ,contw 
+0x57e3 014243 branch send_lmp_request 
+:      014245 send_lmp_features_req:
+0x57e4 014246 force 9 ,pdata 
+0x57e5 014247 call msg_send_lmp 
+0x57e6 014248 fetch 8 ,mem_features 
+0x57e7 014249 istore 8 ,contw 
+0x57e8 014250 branch send_lmp_request 
+:      014252 sp_master_send_io_cap_get:
+0x57e9 014253 jam sp_flag_commit ,mem_master_sp_flag 
+0x57ea 014254 fetch 1 ,mem_sp_local_key_invalid 
+0x57eb 014255 rtnne sp_key_valid 
+0x57ec 014256 jam sp_master_stat_start_done ,mem_master_sp_state 
+0x57ed 014257 rtn 
+:      014259 sp_master_send_io_cap_send:
+0x57ee 014260 call tid_initiate 
+0x57ef 014261 jam lmp_io_cap_req ,mem_lmo_opcode2 
+0x57f0 014262 jam sp_stat_key_send ,mem_master_sp_state 
+0x57f1 014263 rtn 
+:      014266 sp_master_send_lmp_encapsulated_header:
+0x57f2 014267 call tid_initiate 
+0x57f3 014268 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x57f4 014269 jam sp_stat_random_send ,mem_master_sp_state 
+0x57f5 014270 rtn 
+:      014272 sp_master_commitment_compare:
+0x57f6 014273 arg mem_sp_calc_result_high ,rega 
+0x57f7 014274 arg mem_sp_confirm_remote ,regb 
+0x57f8 014275 arg 16 ,loopcnt 
+0x57f9 014276 call string_compare 
+0x57fa 014277 branch sp_master_commitment_compare_success ,zero 
+0x57fb 014278 jam sp_stat_null ,mem_master_sp_state 
+0x57fc 014279 call master_clear_mem_master_sp_flag 
+0x57fd 014280 jam pdu_not_allowed ,mem_lmo_reason2 
+0x57fe 014281 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x57ff 014282 branch reject_lmp_packet 
+:      014283 sp_master_commitment_compare_success:
+0x5800 014284 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x5801 014285 call master_set_mem_master_sp_flag 
+0x5802 014286 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x5803 014287 branch accept_lmp_msg 
+:      014291 sp_master_send_lmp_simple_pairing_number:
+0x5804 014292 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x5805 014293 rtn 
+:      014297 sp_send_lmp_encapsulated_header:
+0x5806 014300 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x5807 014302 rtn 
+:      014308 send_lmp_encapsulated_header:
+0x5808 014309 jam 0 ,mem_sp_local_key_send_count 
+0x5809 014310 force 4 ,pdata 
+0x580a 014311 call msg_send_lmp 
+0x580b 014312 force encapsulated_major_type_p192 ,pdata 
+0x580c 014313 istore 1 ,contw 
+0x580d 014314 force encapsulated_minor_type_p192 ,pdata 
+0x580e 014315 istore 1 ,contw 
+0x580f 014316 force encapsulated_len_p192 ,pdata 
+0x5810 014317 istore 1 ,contw 
+0x5811 014318 call check_localsm 
+0x5812 014319 branch send_lmp_request ,true 
+0x5813 014320 branch send_lmp_reply 
+:      014322 send_lmp_encapsulated_payload:
+0x5814 014324 force 17 ,pdata 
+0x5815 014325 call msg_send_lmp 
+0x5816 014326 fetch 1 ,mem_sp_local_key_send_count 
+0x5817 014327 arg mem_sp_pubkey_local ,contr 
+0x5818 014328 iadd contr ,contr 
+0x5819 014329 ifetch 8 ,contr 
+0x581a 014330 istore 8 ,contw 
+0x581b 014331 ifetch 8 ,contr 
+0x581c 014332 istore 8 ,contw 
+0x581d 014333 fetch 1 ,mem_sp_local_key_send_count 
+0x581e 014334 increase 16 ,pdata 
+0x581f 014335 store 1 ,mem_sp_local_key_send_count 
+0x5820 014336 call check_localsm 
+0x5821 014337 branch send_lmp_request ,true 
+0x5822 014338 branch send_lmp_reply 
+:      014341 sp_send_lmp_simple_pairing_comfirm:
+0x5823 014342 jam sp_stat_random_recv ,mem_sp_state 
+0x5824 014343 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+0x5825 014344 rtn 
+:      014345 send_lmp_simple_pairing_comfirm:
+0x5826 014348 force 17 ,pdata 
+0x5827 014349 call msg_send_lmp 
+0x5828 014350 arg mem_sp_calc_result_high ,contr 
+0x5829 014351 ifetch 8 ,contr 
+0x582a 014352 istore 8 ,contw 
+0x582b 014353 ifetch 8 ,contr 
+0x582c 014354 istore 8 ,contw 
+0x582d 014355 branch send_lmp_reply 
+:      014357 sp_send_lmp_simple_pairing_number:
+0x582e 014358 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x582f 014359 rtn 
+:      014361 send_lmp_simple_pairing_number:
+0x5830 014363 call check_localsm 
+0x5831 014364 call sp_local_random_key_generator ,true 
+0x5832 014365 force 17 ,pdata 
+0x5833 014366 call msg_send_lmp 
+0x5834 014367 arg mem_sp_random_local ,contr 
+0x5835 014368 ifetch 8 ,contr 
+0x5836 014369 istore 8 ,contw 
+0x5837 014370 ifetch 8 ,contr 
+0x5838 014371 istore 8 ,contw 
+0x5839 014372 call check_localsm 
+0x583a 014373 nbranch send_lmp_reply ,true 
+0x583b 014374 branch send_lmp_request ,true 
+:      014376 master_sp_sm_end:
+0x583c 014378 jam sp_stat_done ,mem_master_sp_state 
+:      014379 sp_aurand_send:
+0x583d 014380 call tid_initiate 
+0x583e 014381 jam lmp_au_rand ,mem_lmo_opcode2 
+0x583f 014382 call check_localsm_master 
+0x5840 014383 branch sp_master_key_prarm_push ,true 
+0x5841 014384 branch sp_link_key_prarm_push 
+:      014385 master_sp_send_lmp_dhkey_check:
+0x5842 014386 call tid_reply 
+:      014387 sp_send_lmp_dhkey_check:
+0x5843 014388 jam lmp_dhkey_check ,mem_lmo_opcode2 
+0x5844 014389 rtn 
+:      014390 send_lmp_dhkey_check:
+0x5845 014392 force 17 ,pdata 
+0x5846 014393 call msg_send_lmp 
+0x5847 014394 arg mem_sp_calc_result_high ,contr 
+0x5848 014395 ifetch 8 ,contr 
+0x5849 014396 istore 8 ,contw 
+0x584a 014397 ifetch 8 ,contr 
+0x584b 014398 istore 8 ,contw 
+0x584c 014399 call check_localsm 
+0x584d 014400 nbranch send_lmp_reply ,true 
+0x584e 014401 branch send_lmp_request ,true 
+:      014403 send_lmp_enc_key_size_mask_res:
+0x584f 014404 force 3 ,pdata 
+0x5850 014405 call msg_send_lmp 
+0x5851 014406 setarg 0xfffe 
+0x5852 014407 istore 2 ,contw 
+0x5853 014408 branch send_lmp_reply 
+:      014410 send_lmp_auto_rate:
+0x5854 014411 branch send_lmp_request 
+:      014412 send_lmp_clkoffset_req:
+0x5855 014413 branch send_lmp_request 
+:      014414 send_lmp_quality_of_service:
+0x5856 014415 branch send_lmp_request 
+:      014416 send_lmp_test_activate:
+0x5857 014417 branch send_lmp_request 
+:      014422 send_lmp_comb_key:
+0x5858 014423 call generate_random_number 
+0x5859 014424 arg mem_lap ,rega 
+0x585a 014425 call generate_linkkey 
+0x585b 014426 force 17 ,pdata 
+0x585c 014427 call msg_send_lmp 
+0x585d 014428 arg mem_kinit ,rega 
+0x585e 014429 arg mem_random_number ,regb 
+0x585f 014430 call xor16 
+0x5860 014431 nbranch send_lmp_follow ,master 
+0x5861 014432 branch send_lmp_tid 
+:      014434 send_lmp_inrand:
+0x5862 014435 call generate_random_number 
+0x5863 014436 arg mem_plap ,rega 
+0x5864 014437 call generate_kinit 
+:      014438 send_lmp_rand:
+0x5865 014439 force 17 ,pdata 
+0x5866 014440 call msg_send_lmp 
+0x5867 014441 arg mem_random_number ,contr 
+0x5868 014442 call memcpy16 
+0x5869 014443 fetch 1 ,mem_conn_sm 
+0x586a 014444 beq conn_sm_auth_wait ,send_lmp_request 
+0x586b 014445 beq conn_sm_pairing_wait ,send_lmp_request 
+0x586c 014446 branch send_lmp_tid 
+:      014448 send_lmp_aurand:
+0x586d 014449 fetch 1 ,mem_pairing_auth 
+0x586e 014450 branch send_lmp_aurand_notpairing ,blank 
+0x586f 014451 call check_localsm 
+0x5870 014452 call tid_initiate ,true 
+0x5871 014453 ncall tid_reply ,true 
+0x5872 014454 branch send_lmp_aurand_common 
+:      014455 send_lmp_aurand_notpairing:
+0x5873 014456 call tid_initiate 
+:      014457 send_lmp_aurand_common:
+0x5874 014458 call generate_random_number 
+0x5875 014459 branch send_lmp_rand 
+:      014461 send_lmp_sres:
+0x5876 014462 arg mem_lap ,rega 
+0x5877 014463 call function_e1 
+0x5878 014464 force 5 ,pdata 
+0x5879 014465 call msg_send_lmp 
+0x587a 014466 fetch 4 ,mem_input_store 
+0x587b 014467 istore 4 ,contw 
+0x587c 014468 arg mem_sres_tid ,temp 
+0x587d 014469 call special_tid_store 
+0x587e 014470 call copy_aco 
+0x587f 014471 call check_localsm 
+0x5880 014472 branch send_lmp_sres_master ,true 
+0x5881 014473 jam done_encryp ,mem_wait_encryption 
+0x5882 014474 fetch 1 ,mem_pairing_auth 
+0x5883 014475 rtn blank 
+0x5884 014476 jam lmp_au_rand ,mem_lmo_opcode2 
+:      014477 send_lmp_sres_master:
+0x5885 014478 fetch 1 ,mem_link_key_exists 
+0x5886 014479 rtn blank 
+:      014480 send_lmp_sres_startenc:
+0x5887 014481 call check_localsm 
+0x5888 014482 nbranch send_lmp_sres_startenc_slave ,true 
+0x5889 014483 fetch 1 ,mem_auth_enable 
+0x588a 014484 rtn blank 
+0x588b 014485 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x588c 014486 rtn 
+:      014487 send_lmp_sres_startenc_slave:
+0x588d 014488 rtnmark0 mark_slave_in_rand_accepted 
+0x588e 014489 set0 mark_slave_in_rand_accepted ,mark 
+0x588f 014490 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x5890 014491 rtn 
+:      014495 send_lmp_start_encryption:
+0x5891 014496 call generate_random_number 
+0x5892 014497 call function_e3 
+0x5893 014498 force 17 ,pdata 
+0x5894 014499 call msg_send_lmp 
+0x5895 014500 arg mem_random_number ,contr 
+0x5896 014501 call memcpy16 
+0x5897 014502 branch send_lmp_tid 
+:      014504 send_lmp_stop_encryption_req:
+0x5898 014505 force 1 ,pdata 
+0x5899 014506 call msg_send_lmp 
+0x589a 014507 branch send_lmp_tid 
+:      014509 send_lmp_encryption_key_size_req:
+0x589b 014510 force 2 ,pdata 
+0x589c 014511 call msg_send_lmp 
+0x589d 014512 force 16 ,pdata 
+0x589e 014513 istore 1 ,contw 
+0x589f 014514 store 1 ,mem_key_size 
+0x58a0 014515 branch send_lmp_tid 
+:      014517 msg_send_lmp:
+0x58a1 014519 lshift3 pdata ,pdata 
+0x58a2 014520 or_into 0x07 ,pdata 
+0x58a3 014521 store 1 ,mem_lmo_header_length 
+0x58a4 014522 arg 17 ,loopcnt 
+0x58a5 014523 arg mem_lmo_payload ,contw 
+0x58a6 014524 call clear_mem 
+0x58a7 014525 arg mem_lmo_payload ,contw 
+0x58a8 014526 rtn 
+:      014528 send_lmpext:
+0x58a9 014529 and pdata ,0x7f ,rega 
+0x58aa 014530 jam lmp_escape ,mem_lmp_to_send 
+0x58ab 014531 deposit queue 
+0x58ac 014532 call msg_send_lmp 
+0x58ad 014533 deposit rega 
+0x58ae 014534 istore 1 ,contw 
+0x58af 014535 rtn 
+:      014537 send_lmp_follow:
+0x58b0 014538 fetch 1 ,mem_lmp_to_send 
+0x58b1 014539 lshift pdata ,pdata 
+0x58b2 014540 fetcht 1 ,mem_state_map 
+0x58b3 014541 isolate1 smap_lmptid ,temp 
+0x58b4 014542 setflag true ,0 ,pdata 
+0x58b5 014543 branch send_lmp_exit 
+:      014546 send_lmp_tid:
+0x58b6 014547 fetcht 1 ,mem_state_map 
+0x58b7 014548 and_into 1 ,temp 
+0x58b8 014549 branch send_lmp_end 
+:      014551 send_lmp_reply:
+0x58b9 014552 force 0 ,temp 
+0x58ba 014553 branch send_lmp_end 
+:      014555 send_lmp_request:
+0x58bb 014556 force 1 ,temp 
+:      014557 send_lmp_end:
+0x58bc 014558 fetch 1 ,mem_lmp_to_send 
+0x58bd 014559 lshift pdata ,pdata 
+0x58be 014560 setflag master ,0 ,pdata 
+0x58bf 014561 ixor temp ,pdata 
+:      014562 send_lmp_exit:
+0x58c0 014563 store 1 ,mem_lmo_header_opcode 
+0x58c1 014564 jam 0 ,mem_lmp_to_send 
+0x58c2 014565 call lmo_fifo_process_lmo0empty 
+0x58c3 014566 enable user 
+0x58c4 014567 rtn 
+:      014570 lmo_fifo_check:
+0x58c5 014571 fetch 1 ,mem_lmo_opcode2 
+0x58c6 014572 rtn blank 
+0x58c7 014573 call lmo_fifo_process 
+0x58c8 014574 fetch 1 ,mem_lmo_opcode2 
+0x58c9 014575 rtn 
+:      014577 lmo_fifo_process:
+0x58ca 014578 set1 mark_ext_patch ,mark 
+0x58cb 014579 bpatch patch2b_4 ,mem_patch2b 
+0x58cc 014580 fetch 1 ,mem_lmp_to_send 
+0x58cd 014581 branch lmo_fifo_process_lmo0empty ,blank 
+0x58ce 014582 fetch 1 ,mem_lmo_opcode1 
+0x58cf 014583 nrtn blank 
+0x58d0 014584 branch lmo_fifo_process_lmo2to1 
+:      014585 lmo_fifo_process_lmo0empty:
+0x58d1 014586 fetch 1 ,mem_lmo_opcode1 
+0x58d2 014587 branch lmo_fifo_process_lmo1_empty ,blank 
+0x58d3 014588 fetch 3 ,mem_lmo_opcode1 
+0x58d4 014589 store 3 ,mem_lmp_to_send 
+0x58d5 014590 fetcht 1 ,mem_lmo_tid1 
+0x58d6 014591 fetch 1 ,mem_state_map 
+0x58d7 014592 set0 smap_lmptid ,pdata 
+0x58d8 014593 ior temp ,pdata 
+0x58d9 014594 store 1 ,mem_state_map 
+0x58da 014595 jam 0 ,mem_lmo_opcode1 
+:      014596 lmo_fifo_process_lmo2to1:
+0x58db 014597 fetch 1 ,mem_lmo_opcode2 
+0x58dc 014598 rtn blank 
+0x58dd 014599 fetch 4 ,mem_lmo_opcode2 
+0x58de 014600 store 4 ,mem_lmo_opcode1 
+0x58df 014601 jam 0 ,mem_lmo_opcode2 
+0x58e0 014602 rtn 
+:      014603 lmo_fifo_process_lmo1_empty:
+0x58e1 014604 fetch 1 ,mem_lmo_opcode2 
+0x58e2 014605 rtn blank 
+0x58e3 014606 fetch 3 ,mem_lmo_opcode2 
+0x58e4 014607 store 3 ,mem_lmp_to_send 
+0x58e5 014608 fetcht 1 ,mem_lmo_tid2 
+0x58e6 014609 fetch 1 ,mem_state_map 
+0x58e7 014610 set0 smap_lmptid ,pdata 
+0x58e8 014611 ior temp ,pdata 
+0x58e9 014612 store 1 ,mem_state_map 
+0x58ea 014613 jam 0 ,mem_lmo_opcode2 
+0x58eb 014614 rtn 
+:      014617 special_tid_store:
+0x58ec 014618 set1 mark_ext_patch ,mark 
+0x58ed 014619 bpatch patch2b_5 ,mem_patch2b 
+0x58ee 014620 fetch 1 ,mem_state_map 
+0x58ef 014621 copy pdata ,regc 
+0x58f0 014622 ifetch 1 ,temp 
+0x58f1 014623 call pop_tid_follow 
+0x58f2 014624 call send_lmp_follow 
+0x58f3 014625 copy regc ,pdata 
+0x58f4 014626 store 1 ,mem_state_map 
+0x58f5 014627 rtn 
+:      014629 tid_reply:
+0x58f6 014630 fetcht 1 ,mem_state_map 
+0x58f7 014631 set0 smap_lmptidinit ,temp 
+0x58f8 014632 storet 1 ,mem_state_map 
+0x58f9 014633 rtn 
+:      014635 tid_initiate:
+0x58fa 014636 fetcht 1 ,mem_state_map 
+0x58fb 014637 set1 smap_lmptidinit ,temp 
+0x58fc 014638 storet 1 ,mem_state_map 
+0x58fd 014639 rtn 
+:      014642 tid_check:
+0x58fe 014643 nsetflag master ,smap_lmptid ,pdata 
+0x58ff 014644 fetcht 1 ,mem_state_map 
+0x5900 014645 ixor temp ,pdata 
+0x5901 014646 isolate1 smap_lmptid ,pdata 
+0x5902 014647 rtn 
+:      014650 tid_set_reply:
+0x5903 014651 fetch 1 ,mem_state_map 
+0x5904 014652 setflag master ,smap_lmptid ,pdata 
+0x5905 014653 store 1 ,mem_state_map 
+0x5906 014654 rtn 
+:      014657 check_localsm:
+0x5907 014658 fetch 1 ,mem_sp_localsm 
+0x5908 014659 compare local_statemachine ,pdata ,0x7f 
+0x5909 014660 rtn 
+:      014661 setlocalsm_master:
+0x590a 014662 fetch 1 ,mem_sp_localsm 
+0x590b 014663 set1 7 ,pdata 
+0x590c 014664 store 1 ,mem_sp_localsm 
+0x590d 014665 rtn 
+:      014666 setlocalsm_slave:
+0x590e 014667 fetch 1 ,mem_sp_localsm 
+0x590f 014668 set0 7 ,pdata 
+0x5910 014669 store 1 ,mem_sp_localsm 
+0x5911 014670 rtn 
+:      014671 check_localsm_master:
+0x5912 014672 fetch 1 ,mem_sp_localsm 
+0x5913 014673 isolate1 7 ,pdata 
+0x5914 014674 store 1 ,mem_sp_localsm 
+0x5915 014675 rtn 
+:      014677 generate_random_number:
+0x5916 014679 arg mem_random_number ,contw 
+:      014680 generate_random:
+0x5917 014681 force 16 ,loopcnt 
+:      014682 generate_random_another:
+:      014683 generate_random_loop:
+0x5918 014684 random pdata 
+0x5919 014685 istore 1 ,contw 
+0x591a 014686 loop generate_random_another 
+0x591b 014687 rtn 
+:      014689 generate_linkkey:
+0x591c 014690 call function_e21 
+0x591d 014691 arg mem_link_key ,rega 
+0x591e 014692 arg mem_input_store ,regb 
+0x591f 014693 ifetch 8 ,rega 
+0x5920 014694 fetcht 1 ,mem_state 
+0x5921 014695 nsetflag blank ,state_combkey ,temp 
+0x5922 014696 storet 1 ,mem_state 
+0x5923 014697 copy rega ,contw 
+0x5924 014698 call xor16 
+0x5925 014699 branch generate_linkkey_continue 
+:      014705 process_conn_sm:
+0x5926 014707 set1 mark_ext_patch ,mark 
+0x5927 014708 bpatch patch2b_6 ,mem_patch2b 
+0x5928 014710 call lmo_fifo_check 
+0x5929 014711 nrtn blank 
+:      014712 process_conn_sm_continue:
+0x592a 014713 fetch 1 ,mem_conn_sm 
+0x592b 014714 rtn blank 
+0x592c 014718 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+0x592d 014719 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+0x592e 014720 beq conn_sm_send_features ,host_create_conn_send_features 
+0x592f 014721 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+0x5930 014722 beq conn_sm_send_switch ,host_create_conn_send_switch 
+0x5931 014723 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+0x5932 014724 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+0x5933 014725 beq conn_sm_encrypt ,host_create_conn_encrypt 
+0x5934 014726 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+0x5935 014727 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+0x5936 014728 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+0x5937 014729 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+0x5938 014730 beq conn_sm_detach_delay ,host_create_conn_master_detach 
+0x5939 014731 beq conn_sm_send_version ,host_create_conn_send_version 
+0x593a 014732 beq conn_sm_wait_version ,host_create_conn_waiting 
+0x593b 014733 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+0x593c 014734 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+0x593d 014735 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+0x593e 014736 beq conn_sm_pairing ,host_create_conn_pairing 
+0x593f 014737 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+0x5940 014738 beq conn_sm_auth ,host_create_conn_auth 
+0x5941 014739 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+0x5942 014740 beq conn_sm_done ,host_create_conn_done 
+0x5943 014741 beq conn_sm_wait_done ,host_create_conn_done_wait 
+0x5944 014742 jam conn_sm_standby ,mem_conn_sm 
+0x5945 014744 rtn 
+:      014745 host_create_conn_done:
+0x5946 014746 fetch 1 ,mem_lmp_conn_state 
+0x5947 014747 rtnbit0 received_setup_complete 
+0x5948 014748 rtnbit0 sent_setup_complete 
+0x5949 014749 jam conn_sm_standby ,mem_conn_sm 
+0x594a 014750 call host_conn_judge_encrypt 
+0x594b 014751 branch scheduler_start_upper_sm 
+:      014753 host_conn_judge_encrypt:
+0x594c 014754 fetch 1 ,mem_connection_options 
+0x594d 014755 rtnbit0 connection_encrypt 
+0x594e 014756 jam conn_sm_encrypt_wait ,mem_conn_sm 
+0x594f 014757 rtn 
+:      014759 host_create_conn_done_wait:
+0x5950 014760 arg enpt_delay_timer ,queue 
+0x5951 014761 call timer_check 
+0x5952 014762 nrtn blank 
+0x5953 014763 jam conn_sm_done ,mem_conn_sm 
+0x5954 014764 rtn 
+:      014766 host_create_conn_auth:
+0x5955 014767 fetch 1 ,mem_connection_options 
+0x5956 014768 set0 connection_auth ,pdata 
+0x5957 014769 store 1 ,mem_connection_options 
+0x5958 014770 jam conn_sm_auth_wait ,mem_conn_sm 
+0x5959 014771 jam lmp_au_rand ,mem_lmo_opcode2 
+0x595a 014772 rtn 
+:      014773 host_create_conn_auth_wait:
+0x595b 014774 rtn 
+:      014775 host_create_conn_pairing:
+0x595c 014776 fetch 1 ,mem_pincode_state 
+0x595d 014777 rtnne pincode_state_pincode_ready 
+0x595e 014778 call host_auth 
+0x595f 014779 jam conn_sm_pairing_wait ,mem_conn_sm 
+0x5960 014780 rtn 
+:      014782 host_create_conn_pairing_wait:
+0x5961 014783 rtn 
+:      014784 host_creat_conn_send_feat_ext:
+0x5962 014785 jam conn_sm_wait_features_ext ,mem_conn_sm 
+0x5963 014786 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x5964 014787 rtn 
+:      014788 host_create_conn_send_version:
+0x5965 014789 jam conn_sm_wait_version ,mem_conn_sm 
+0x5966 014790 jam lmp_version_req ,mem_lmo_opcode2 
+0x5967 014791 rtn 
+:      014793 host_creat_conn_wait_switch:
+0x5968 014794 fetch 1 ,mem_switch_flag 
+0x5969 014795 rtneq switch_flag_init 
+0x596a 014796 beq switch_flag_accept ,host_create_conn_switch_accept 
+0x596b 014797 arg switch_wait_timer ,queue 
+0x596c 014798 call timer_check 
+0x596d 014799 nrtn blank 
+0x596e 014800 jam switch_flag_init ,mem_switch_flag 
+0x596f 014801 branch host_create_conn_switch 
+:      014802 host_create_conn_switch_accept:
+0x5970 014803 rtn master 
+0x5971 014804 branch host_create_conn_auth_pair 
+:      014806 host_create_conn_send_features:
+0x5972 014807 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x5973 014808 jam lmp_features_req ,mem_lmo_opcode2 
+0x5974 014809 rtn 
+:      014810 host_create_conn_send_switch:
+0x5975 014811 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5976 014812 set1 mark_switch_initiated ,mark 
+0x5977 014813 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x5978 014814 setarg 0x1ff 
+0x5979 014815 store 2 ,mem_soft_timer 
+0x597a 014816 rtn 
+:      014817 host_create_conn_send_conn_req:
+0x597b 014818 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x597c 014819 jam 0xff ,mem_soft_timer 
+0x597d 014820 set0 mark_reconn_recieve_switch ,mark 
+0x597e 014821 jam lmp_host_connection_req ,mem_lmo_opcode2 
+0x597f 014822 branch init_lmp_reinit 
+:      014823 host_create_conn_wait_accept:
+0x5980 014824 rtnmark1 mark_reconn_recieve_switch 
+0x5981 014825 fetch 2 ,mem_soft_timer 
+0x5982 014826 sub pdata ,1 ,pdata 
+0x5983 014827 branch host_create_conn_resend ,zero 
+0x5984 014828 store 2 ,mem_soft_timer 
+0x5985 014829 rtn 
+:      014830 host_create_conn_resend:
+0x5986 014831 jam conn_sm_send_switch ,mem_conn_sm 
+0x5987 014832 rtn 
+:      014833 host_create_conn_waiting:
+0x5988 014835 rtn 
+:      014837 host_create_conn_switch:
+0x5989 014838 fetch 1 ,mem_lmp_conn_state 
+0x598a 014839 rtnbit0 sent_setup_complete 
+0x598b 014840 rtnbit0 received_setup_complete 
+0x598c 014841 fetch 1 ,mem_connection_options 
+0x598d 014842 set0 connection_switch ,pdata 
+0x598e 014843 store 1 ,mem_connection_options 
+0x598f 014844 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5990 014845 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+0x5991 014846 rtn 
+:      014848 host_create_conn_send_setup_complete:
+0x5992 014849 jam conn_sm_wait_setup_complete ,mem_conn_sm 
+0x5993 014850 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5994 014851 rtn 
+:      014853 host_create_conn_wait_setup_complete:
+0x5995 014854 fetch 1 ,mem_lmp_conn_state 
+0x5996 014855 rtnbit0 received_setup_complete 
+0x5997 014856 jam conn_sm_standby ,mem_conn_sm 
+0x5998 014858 rtn 
+:      014859 host_create_conn_wait_setup_complete_rtn:
+0x5999 014860 jam conn_sm_auth_pair ,mem_conn_sm 
+0x599a 014861 rtn 
+:      014863 host_create_conn_master_detach:
+0x599b 014864 fetch 1 ,mem_soft_timer 
+0x599c 014865 increase -1 ,pdata 
+0x599d 014866 branch host_create_conn_send_detach ,blank 
+0x599e 014867 store 1 ,mem_soft_timer 
+0x599f 014868 rtn 
+:      014869 host_create_conn_send_detach:
+0x59a0 014870 jam lmp_detach ,mem_lmo_opcode2 
+0x59a1 014871 jam local_host ,mem_disconn_reason_send 
+0x59a2 014872 jam 0 ,mem_conn_sm 
+0x59a3 014873 rtn 
+:      014874 host_create_conn_auth_pair:
+0x59a4 014876 fetch 1 ,mem_connection_options 
+0x59a5 014877 bbit1 connection_switch ,host_create_conn_switch 
+0x59a6 014878 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+:      014879 host_create_conn_sm_done:
+0x59a7 014880 jam conn_sm_done ,mem_conn_sm 
+0x59a8 014881 rtn 
+:      014882 host_create_conn_auth_pair_true:
+0x59a9 014883 fetch 1 ,mem_link_key_exists 
+0x59aa 014884 branch host_create_conn_auth_pair_nokey ,blank 
+0x59ab 014885 fetch 1 ,mem_lmp_conn_state 
+0x59ac 014886 rtnbit0 sent_setup_complete 
+0x59ad 014887 rtnbit0 received_setup_complete 
+0x59ae 014888 fetch 4 ,mem_aurand_send_delay_time 
+0x59af 014889 arg 100 ,temp 
+0x59b0 014890 iadd temp ,temp 
+0x59b1 014891 copy clkn_bt ,pdata 
+0x59b2 014892 isub temp ,null 
+0x59b3 014893 nrtn positive 
+0x59b4 014894 branch host_create_conn_auth 
+:      014898 host_create_conn_auth_pair_nokey:
+0x59b5 014899 jam conn_sm_pairing ,mem_conn_sm 
+0x59b6 014900 jam 4 ,mem_pin_length 
+0x59b7 014901 setarg 0x3030 
+0x59b8 014902 store 2 ,mem_pin 
+0x59b9 014903 istore 2 ,contw 
+0x59ba 014904 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x59bb 014905 branch host_create_conn_pairing 
+:      014907 host_create_conn_auth_pair_wait:
+0x59bc 014908 rtn 
+:      014909 host_create_conn_encrypt:
+0x59bd 014910 fetch 1 ,mem_connection_options 
+0x59be 014911 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+0x59bf 014912 jam conn_sm_done ,mem_conn_sm 
+0x59c0 014913 rtn 
+:      014915 host_create_conn_encrypt_start:
+0x59c1 014916 fetch 1 ,mem_connection_options 
+0x59c2 014917 set0 connection_encrypt ,pdata 
+0x59c3 014918 store 1 ,mem_connection_options 
+0x59c4 014919 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x59c5 014920 rtn 
+:      014922 host_create_conn_encrypt_wait:
+0x59c6 014923 fetch 1 ,mem_wait_encryption 
+0x59c7 014924 rtn blank 
+0x59c8 014925 jam conn_sm_standby ,mem_conn_sm 
+0x59c9 014926 branch host_create_conn_encrypt_start 
+:      014928 host_create_conn_encrypt_wait_clear:
+0x59ca 014929 jam conn_sm_send_setup_complete ,mem_conn_sm 
+0x59cb 014930 rtn 
+:      014932 host_auth:
+0x59cc 014933 fetch 1 ,mem_op 
+0x59cd 014934 bbit1 op_inrand_req ,remote_auth 
+0x59ce 014935 call tid_initiate 
+0x59cf 014936 jam lmp_in_rand ,mem_lmo_opcode2 
+0x59d0 014937 branch cmd_exit 
+:      014938 remote_auth:
+0x59d1 014939 fetch 1 ,mem_op 
+0x59d2 014940 set0 op_inrand_req ,pdata 
+0x59d3 014941 store 1 ,mem_op 
+0x59d4 014942 call lmp_accept_inrand 
+0x59d5 014943 call tid_set_reply 
+0x59d6 014944 branch cmd_exit 
+:      014946 pincode_reinit:
+0x59d7 014947 setarg 4 
+0x59d8 014948 store 1 ,mem_pin_length 
+0x59d9 014949 setarg 0x3030 
+0x59da 014950 istore 2 ,contw 
+0x59db 014951 istore 2 ,contw 
+0x59dc 014952 rtn 
+:      014960 module_init:
+0x59dd 014961 rtn wake 
+0x59de 014962 jam 0 ,mem_module_task 
+0x59df 014963 call le_modified_name 
+0x59e0 014964 call adc_init_data 
+0x59e1 014965 setarg module_process_idle 
+0x59e2 014966 store 2 ,mem_cb_idle_process 
+0x59e3 014967 setarg module_conn_process 
+0x59e4 014968 store 2 ,mem_cb_bt_process 
+0x59e5 014969 setarg module_process_bb_event 
+0x59e6 014970 store 2 ,mem_cb_bb_event_process 
+0x59e7 014971 setarg module_conn_process 
+0x59e8 014972 store 2 ,mem_cb_le_process 
+0x59e9 014973 setarg module_lpm_lock 
+0x59ea 014974 store 2 ,mem_cb_check_wakelock 
+0x59eb 014975 setarg module_le_tx_update_data 
+0x59ec 014976 store 2 ,mem_cb_update_notify_value 
+0x59ed 014977 setarg module_le_tx_update_notify_continue 
+0x59ee 014978 store 2 ,mem_cb_update_notify_continue 
+0x59ef 014979 setarg module_hci_event_receive_spp_data 
+0x59f0 014980 store 2 ,mem_cb_receive_spp_data 
+0x59f1 014981 setarg module_le_receive_data 
+0x59f2 014982 store 2 ,mem_cb_att_write 
+0x59f3 014983 set1 mark_ext_patch ,mark 
+0x59f4 014984 bpatch patch2b_7 ,mem_patch2b 
+0x59f5 014985 call module_lpm_uart_init 
+0x59f6 014986 call module_gpio_init 
+0x59f7 014987 call check_module_disabled 
+0x59f8 014988 call eeprom_load_reconn_info 
+0x59f9 014989 branch module_hci_event_enter_standby_mode 
+:      014992 module_lpm_uart_init:
+0x59fa 014993 fetch 4 ,mem_module_uart_rx_buffer 
+0x59fb 014994 hstore 4 ,core_uart_rsaddr 
+0x59fc 014996 fetch 4 ,mem_module_uart_tx_buffer 
+0x59fd 014997 hstore 4 ,core_uart_tsaddr 
+0x59fe 014999 hfetch 1 ,core_gpio_sel1 
+0x59ff 015000 or_into 0x04 ,pdata 
+0x5a00 015001 hstore 1 ,core_gpio_sel1 
+0x5a01 015002 jam 0xff ,mem_ucode_id_local 
+0x5a02 015003 hjam 0x0 ,core_uart_ctrl 
+0x5a03 015005 fetch 2 ,mem_module_uart_rx_buffer 
+0x5a04 015006 hstore 2 ,core_uart_rrptr 
+0x5a05 015007 fetch 2 ,mem_module_uart_tx_buffer 
+0x5a06 015008 hstore 2 ,core_uart_twptr 
+0x5a07 015009 hstore 2 ,core_uart_trptrp 
+0x5a08 015011 hfetch 4 ,core_gpio_pu0 
+0x5a09 015012 set1 7 ,pdata 
+0x5a0a 015013 hstore 4 ,core_gpio_pu0 
+0x5a0b 015015 call hci_init_common 
+0x5a0c 015016 fetch 1 ,mem_module_flag 
+0x5a0d 015017 isolate1 module_flag_uart_flow_control ,pdata 
+0x5a0e 015018 hfetcht 1 ,core_uart_ctrl 
+0x5a0f 015019 setflag true ,4 ,temp 
+0x5a10 015020 hstoret 1 ,core_uart_ctrl 
+0x5a11 015021 rtn 
+:      015025 module_lpm_init:
+0x5a12 015026 call module_lpm_uart_init 
+:      015029 module_gpio_init:
+0x5a13 015034 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a14 015035 call gpio_config_output 
+0x5a15 015036 call module_set_conn_pin_low 
+0x5a16 015038 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a17 015039 branch gpio_config_input 
+:      015041 module_lpm_lock:
+0x5a18 015042 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a19 015043 call gpio_get_bit 
+0x5a1a 015044 nbranch app_put_lpm_wake_lock ,true 
+0x5a1b 015045 branch app_get_lpm_wake_lock 
+:      015049 module_process_idle:
+:      015050 module_conn_process:
+:      015051 module_app_dispatch:
+0x5a1c 015052 set1 mark_ext_patch ,mark 
+0x5a1d 015053 bpatch patch2c_0 ,mem_patch2c 
+0x5a1e 015054 call module_control_air_flow 
+0x5a1f 015055 call l2cap_malloc_is_fifo_full 
+0x5a20 015056 nrtn blank 
+0x5a21 015057 branch module_process 
+:      015058 module_process_bb_event:
+0x5a22 015059 copy regc ,pdata 
+0x5a23 015060 beq bt_evt_bb_connected ,module_process_bb_conn 
+0x5a24 015061 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+0x5a25 015062 beq bt_evt_reconn_failed ,module_process_reconn_fail 
+0x5a26 015063 beq bt_evt_setup_complete ,module_process_setup_complete 
+0x5a27 015064 beq bt_evt_spp_connected ,module_process_spp_connected 
+0x5a28 015065 beq bt_evt_spp_disconnected ,module_process_spp_disconnected 
+0x5a29 015066 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+0x5a2a 015067 beq bt_evt_enter_sniff ,module_process_enter_sniff 
+0x5a2b 015068 beq bt_evt_exit_sniff ,module_process_exit_sniff 
+0x5a2c 015069 beq bt_evt_reconn_page_timeout ,module_process_page_time_out 
+0x5a2d 015070 beq bt_evt_le_connected ,module_process_le_conn 
+0x5a2e 015071 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+0x5a2f 015072 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+0x5a30 015073 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+0x5a31 015074 beq bt_evt_le_pairing_fail ,module_hci_event_le_pairing_fail 
+0x5a32 015075 beq bt_evt_le_pairing_success ,module_hci_event_le_pairing_success 
+0x5a33 015076 beq bt_evt_le_start_enc ,module_hci_event_start_enc 
+0x5a34 015077 beq bt_evt_le_pause_enc ,module_hci_event_pause_enc 
+0x5a35 015078 beq bt_evt_le_tk_generate ,module_hci_event_le_tk 
+0x5a36 015079 beq bt_evt_bt_gkey_generate ,module_hci_event_gkey_generate 
+0x5a37 015080 beq bt_evt_bt_get_passkey ,module_hci_event_passkey_entry_mode 
+0x5a38 015081 beq bt_evt_bt_pairing_fail ,module_hci_event_bt_pairing_fail 
+0x5a39 015082 beq bt_evt_bt_pairing_success ,module_hci_event_bt_pairing_success 
+0x5a3a 015083 and pdata ,0x0f ,temp 
+0x5a3b 015084 and_into bt_evt_timer_mask ,pdata 
+0x5a3c 015085 beq bt_evt_timer_init ,module_bb_event_timer 
+0x5a3d 015086 rtn 
+:      015089 module_process_bb_event_disconned:
+0x5a3e 015090 fetch 1 ,mem_flag_pairing_state 
+0x5a3f 015091 ncall module_hci_event_bt_pairing_fail ,blank 
+0x5a40 015092 call module_disconn_start 
+0x5a41 015093 fetch 2 ,mem_ui_state_map 
+0x5a42 015094 rtnbit0 ui_state_bt_spp_conn 
+0x5a43 015095 branch module_spp_disconnected 
+:      015097 module_process_spp_connected:
+0x5a44 015098 fetch 2 ,mem_ui_state_map 
+0x5a45 015099 set1 ui_state_bt_spp_conn ,pdata 
+0x5a46 015101 store 2 ,mem_ui_state_map 
+0x5a47 015102 fetch 1 ,mem_module_spp_lpm_mult 
+0x5a48 015103 store 1 ,mem_lpm_mult 
+0x5a49 015104 call module_set_conn_pin_low 
+0x5a4a 015105 branch module_hci_event_spp_connect 
+:      015107 module_process_spp_disconnected:
+:      015109 module_spp_disconnected:
+0x5a4b 015110 fetch 2 ,mem_ui_state_map 
+0x5a4c 015111 set0 ui_state_bt_spp_conn ,pdata 
+0x5a4d 015112 store 2 ,mem_ui_state_map 
+0x5a4e 015113 branch module_hci_event_spp_disconnect 
+:      015116 module_process_enter_sniff:
+:      015118 module_sniff_param_check:
+0x5a4f 015121 fetch 2 ,mem_context + coffset_tsniff 
+0x5a50 015122 rshift pdata ,pdata 
+0x5a51 015123 fetcht 2 ,mem_sniff_param_interval 
+0x5a52 015124 isub temp ,null 
+0x5a53 015125 nbranch module_sniff_param_check_unsniff ,zero 
+0x5a54 015126 branch app_lpm_mult_enable 
+:      015127 module_sniff_param_check_unsniff:
+0x5a55 015128 fetch 1 ,mem_module_task 
+0x5a56 015129 rtnbit1 moudle_task_unsinff 
+0x5a57 015130 hfetch 2 ,core_uart_rxitems 
+0x5a58 015131 ncall module_set_unsniff_task_flag ,blank 
+0x5a59 015132 branch app_bt_sniff_exit 
+:      015134 module_process_exit_sniff:
+0x5a5a 015135 branch app_lpm_mult_disable 
+:      015137 module_process_setup_complete:
+0x5a5b 015138 branch module_conn_start 
+:      015140 module_process_bb_even_le_disconn:
+0x5a5c 015141 call module_disconn_start 
+0x5a5d 015142 branch module_hci_event_le_disconnect 
+:      015144 module_process_evt_pincode_req:
+0x5a5e 015145 branch app_bt_set_pincode 
+:      015149 module_process_unsniff_accept:
+0x5a5f 015150 fetch 1 ,mem_module_task 
+0x5a60 015151 bbit0 moudle_task_unsinff ,app_bt_enter_sniff 
+0x5a61 015152 branch module_clear_unsniff_task_flag 
+:      015154 module_process_unsniff_not_accept:
+0x5a62 015155 branch module_clear_unsniff_task_flag 
+:      015158 module_process_le_conn:
+0x5a63 015159 call module_conn_start 
+0x5a64 015160 fetch 1 ,mem_module_le_lpm_mult 
+0x5a65 015161 store 1 ,mem_lpm_mult 
+0x5a66 015162 branch module_hci_event_le_connect 
+:      015165 module_process_bb_conn:
+0x5a67 015166 jam 0 ,mem_flag_mode_ssp_pin 
+0x5a68 015167 rtn 
+:      015169 module_process_page_time_out:
+:      015170 module_process_reconn_fail:
+:      015171 module_disconn_start:
+0x5a69 015172 call module_start_adv_discovery_by_command 
+0x5a6a 015173 branch module_set_conn_pin_high 
+:      015176 module_set_conn_pin_high:
+0x5a6b 015177 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a6c 015178 branch gpio_out_active 
+:      015180 module_conn_start:
+0x5a6d 015181 call module_stop_adv_discovery 
+0x5a6e 015182 branch module_set_conn_pin_low 
+:      015184 module_stop_adv_discovery:
+0x5a6f 015185 fetch 1 ,mem_module_state 
+0x5a70 015186 isolate1 moudle_state_bt_bit ,pdata 
+0x5a71 015187 call app_bt_stop_discovery ,true 
+0x5a72 015188 fetch 1 ,mem_module_state 
+0x5a73 015189 isolate1 moudle_state_ble_bit ,pdata 
+0x5a74 015190 call app_ble_stop_adv ,true 
+0x5a75 015191 rtn 
+:      015192 module_set_conn_pin_low:
+0x5a76 015193 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a77 015194 branch gpio_out_inactive 
+:      015196 module_process_with_credit:
+0x5a78 015197 fetch 1 ,mem_credit_flag 
+0x5a79 015198 rtneq credit_disable 
+0x5a7a 015199 branch rfcomm_send_uih_without_payload 
+:      015201 module_process:
+0x5a7b 015202 set1 mark_ext_patch ,mark 
+0x5a7c 015203 bpatch patch2c_1 ,mem_patch2c 
+0x5a7d 015204 hfetch 1 ,core_uart_status 
+0x5a7e 015205 bbit1 uart_status_rx_fifo_empty ,module_process_with_credit 
+0x5a7f 015206 call get_uart_rrptr 
+0x5a80 015207 ifetch 1 ,contru 
+0x5a81 015208 bne 0x01 ,module_hci_in_excp 
+0x5a82 015209 hfetch 2 ,core_uart_rxitems 
+0x5a83 015210 sub pdata ,2 ,null 
+0x5a84 015211 rtn positive 
+0x5a85 015212 ifetch 1 ,contru 
+0x5a86 015213 store 1 ,mem_uart_opcode 
+0x5a87 015214 ifetcht 1 ,contru 
+0x5a88 015215 copy contru ,rega 
+0x5a89 015216 storet 1 ,mem_uart_len 
+0x5a8a 015217 add temp ,3 ,temp 
+0x5a8b 015218 hfetch 2 ,core_uart_rxitems 
+0x5a8c 015219 isub temp ,temp 
+0x5a8d 015220 nrtn positive 
+0x5a8e 015221 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5a8f 015222 call module_hci_cmd_control 
+0x5a90 015223 fetch 1 ,mem_module_temp_nl_discard_packet 
+0x5a91 015224 rtneq hci_not_discard_packet 
+0x5a92 015225 branch module_hci_dicard_packet 
+:      015227 module_hci_in_excp:
+0x5a93 015228 call module_hci_event_invalid_packet 
+0x5a94 015229 call wait_uarttx 
+0x5a95 015230 branch module_hci_release_except 
+:      015233 module_hci_release_except:
+0x5a96 015234 set1 mark_ext_patch ,mark 
+0x5a97 015235 bpatch patch2c_2 ,mem_patch2c 
+0x5a98 015236 hfetch 2 ,core_uart_rxitems 
+0x5a99 015237 rtn blank 
+0x5a9a 015238 call get_uart_rrptr 
+0x5a9b 015239 ifetch 1 ,contru 
+0x5a9c 015240 sub pdata ,0x01 ,null 
+0x5a9d 015241 ncall module_hci_dicard_bytes ,zero 
+0x5a9e 015242 nbranch module_hci_release_except ,zero 
+0x5a9f 015243 ifetch 1 ,contru 
+0x5aa0 015244 rtneq hci_cmd_spp_data_req 
+0x5aa1 015245 rtneq hci_cmd_set_credit_given 
+0x5aa2 015246 increase -1 ,contru 
+0x5aa3 015247 call module_hci_dicard_bytes 
+0x5aa4 015248 branch module_hci_release_except 
+:      015250 module_hci_dicard_packet:
+0x5aa5 015251 call get_uart_rrptr 
+0x5aa6 015252 increase 2 ,contru 
+0x5aa7 015253 ifetch 1 ,contru 
+0x5aa8 015254 iadd contru ,contru 
+:      015255 module_hci_dicard_bytes:
+0x5aa9 015256 branch uartd_rxdone 
+:      015260 module_hci_cmd_control:
+0x5aaa 015261 set1 mark_ext_patch ,mark 
+0x5aab 015262 bpatch patch2c_3 ,mem_patch2c 
+0x5aac 015263 fetch 1 ,mem_uart_opcode 
+0x5aad 015264 beq hci_cmd_set_bt_addr_req ,module_hci_cmd_set_bt_addr 
+0x5aae 015265 beq hci_cmd_set_le_addr_req ,module_hci_cmd_set_le_addr 
+0x5aaf 015266 beq hci_cmd_set_visibility_req ,module_hci_cmd_set_visibility 
+0x5ab0 015267 beq hci_cmd_set_bt_name_req ,module_hci_cmd_set_bt_name 
+0x5ab1 015268 beq hci_cmd_set_le_name_req ,module_hci_cmd_set_le_name 
+0x5ab2 015269 beq hci_cmd_spp_data_req ,module_hci_cmd_receive_spp_data 
+0x5ab3 015270 beq hci_cmd_le_data_req ,module_hci_cmd_receive_le_data 
+0x5ab4 015271 beq hci_cmd_status_irq ,module_hci_cmd_inquire_status 
+0x5ab5 015272 beq hci_cmd_set_pairing_req ,module_hci_cmd_set_pairing_mode 
+0x5ab6 015273 beq hci_cmd_set_pincode_req ,module_hci_cmd_set_pincode 
+0x5ab7 015274 beq hci_cmd_set_uartcontrol_req ,module_hci_cmd_set_uart_control_mode 
+0x5ab8 015275 beq hci_cmd_set_uart_baud_req ,module_hci_cmd_set_uart_baud 
+0x5ab9 015276 beq hci_cmd_version_req ,module_hci_cmd_version_request 
+0x5aba 015277 beq hci_cmd_bt_disconnect ,module_hci_cmd_bt_disconnect 
+0x5abb 015278 beq hci_cmd_ble_disconnect ,module_hci_cmd_ble_disconnect 
+0x5abc 015279 beq hci_cmd_set_nvram_req ,module_hci_cmd_set_nvram 
+0x5abd 015280 beq hci_cmd_confirm_gkey ,module_hci_cmd_confirm_gkey 
+0x5abe 015281 beq hci_cmd_set_credit_given ,module_hci_cmd_set_credit_given 
+0x5abf 015282 beq hci_cmd_auto_adv_scan ,module_hci_cmd_auto_adv 
+0x5ac0 015283 beq hci_cmd_power_req ,module_hci_cmd_power_request 
+0x5ac1 015284 beq hci_cmd_power_set ,module_hci_cmd_power_set 
+0x5ac2 015285 beq hci_cmd_passkey_entry ,module_hci_cmd_passkey_entry 
+0x5ac3 015286 beq hci_cmd_set_gpio ,module_hci_cmd_set_gpio 
+0x5ac4 015287 beq hci_cmd_read_gpio ,module_hci_cmd_read_gpio 
+0x5ac5 015288 beq hci_cmd_le_set_pairing ,module_hci_cmd_le_set_pairing_mode 
+0x5ac6 015289 beq hci_cmd_le_set_adv_data ,module_hci_cmd_le_set_adv_data 
+0x5ac7 015290 beq hci_cmd_le_set_scan_data ,module_hci_cmd_le_set_scan_data 
+0x5ac8 015291 beq hci_cmd_le_send_conn_update_req ,module_hci_cmd_le_send_conn_update_req 
+0x5ac9 015292 beq hci_cmd_le_start_pairing ,module_hci_cmd_le_start_pairing 
+0x5aca 015293 beq hci_cmd_le_confirm_gkey ,module_hci_cmd_le_confirm_gkey 
+0x5acb 015294 branch module_hci_event_receive_invalid_cmd 
+:      015299 module_hci_cmd_set_bt_addr:
+0x5acc 015300 fetch 1 ,mem_uart_len 
+0x5acd 015301 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ace 015302 ifetch 6 ,contru 
+0x5acf 015303 store 6 ,mem_lap 
+0x5ad0 015304 branch module_hci_event_receive_valid_cmd 
+:      015307 module_hci_cmd_set_le_addr:
+0x5ad1 015308 fetch 1 ,mem_uart_len 
+0x5ad2 015309 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ad3 015310 ifetch 6 ,contru 
+0x5ad4 015311 store 6 ,mem_le_lap 
+0x5ad5 015312 branch module_hci_event_receive_valid_cmd 
+:      015316 module_hci_cmd_set_visibility:
+0x5ad6 015317 fetch 1 ,mem_uart_len 
+0x5ad7 015318 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5ad8 015319 copy rega ,contru 
+0x5ad9 015320 call module_hci_event_receive_valid_cmd 
+0x5ada 015321 ifetcht 1 ,contru 
+0x5adb 015322 storet 1 ,mem_module_bluetooth_stauts_by_command 
+0x5adc 015323 fetch 2 ,mem_ui_state_map 
+0x5add 015324 rtnbit1 ui_state_ble_connected 
+0x5ade 015325 rtnbit1 ui_state_bt_connected 
+:      015326 module_start_adv_discovery_by_command:
+0x5adf 015327 fetch 1 ,mem_module_state 
+0x5ae0 015328 isolate1 moudle_state_bt_bit ,pdata 
+0x5ae1 015329 nbranch moudle_start_adv_by_command ,true 
+0x5ae2 015330 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae3 015331 and temp ,0x03 ,pdata 
+0x5ae4 015332 store 1 ,mem_scan_mode 
+:      015333 moudle_start_adv_by_command:
+0x5ae5 015334 fetch 1 ,mem_module_state 
+0x5ae6 015335 isolate1 moudle_state_ble_bit ,pdata 
+0x5ae7 015336 nrtn true 
+0x5ae8 015337 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae9 015338 isolate1 2 ,temp 
+0x5aea 015339 branch app_ble_start_adv ,true 
+0x5aeb 015340 branch app_ble_stop_adv 
+:      015343 module_hci_cmd_set_bt_name:
+0x5aec 015344 fetch 1 ,mem_uart_len 
+0x5aed 015345 sub pdata ,32 ,null 
+0x5aee 015346 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5aef 015347 store 1 ,mem_local_name_length 
+0x5af0 015348 copy pdata ,loopcnt 
+0x5af1 015349 copy rega ,contru 
+0x5af2 015350 arg mem_local_name ,contw 
+0x5af3 015351 call uart_copy_rx_bytes_fast 
+0x5af4 015352 branch module_hci_event_receive_valid_cmd 
+:      015356 module_hci_cmd_set_le_name:
+0x5af5 015357 fetch 1 ,mem_uart_len 
+0x5af6 015358 sub pdata ,0x13 ,null 
+0x5af7 015359 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5af8 015360 store 1 ,mem_le_name_len 
+0x5af9 015361 copy pdata ,loopcnt 
+0x5afa 015362 copy rega ,contru 
+0x5afb 015363 arg mem_le_name ,contw 
+0x5afc 015364 call uart_copy_rx_bytes_fast 
+0x5afd 015365 call le_modified_name 
+0x5afe 015366 branch module_hci_event_receive_valid_cmd 
+:      015370 module_hci_cmd_receive_spp_data:
+0x5aff 015371 fetch 1 ,mem_ui_state_map 
+0x5b00 015372 bbit0 ui_state_bt_spp_conn ,module_hci_event_receive_invalid_cmd 
+0x5b01 015373 call app_check_sniff 
+0x5b02 015374 branch module_hci_cmd_spp_exut_sniff ,true 
+0x5b03 015375 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b04 015377 fetch 1 ,mem_remote_credits 
+0x5b05 015378 rtn blank 
+0x5b06 015379 fetch 2 ,mem_nl_rx_len_all 
+0x5b07 015380 bne 0 ,module_hci_cmd_pass_init_ng_rx_len_all 
+0x5b08 015381 fetch 1 ,mem_uart_len 
+0x5b09 015382 store 2 ,mem_nl_rx_len_all 
+0x5b0a 015384 copy rega ,contru 
+0x5b0b 015387 copy contru ,pdata 
+0x5b0c 015388 store 2 ,mem_nl_rx_data_src 
+:      015389 module_hci_cmd_pass_init_ng_rx_len_all:
+0x5b0d 015390 call module_hci_cmd_get_current_packet_len_and_remain_len 
+0x5b0e 015391 branch spp_tx_rfcomm_packet 
+:      015392 module_hci_cmd_spp_exut_sniff:
+0x5b0f 015393 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b10 015394 branch module_exit_sniff 
+:      015396 module_hci_cmd_get_current_packet_len_and_remain_len:
+0x5b11 015397 call module_hci_cmd_get_current_patcket_len 
+0x5b12 015398 fetch 2 ,mem_nl_rx_len_all 
+0x5b13 015399 fetcht 2 ,mem_current_packet_length 
+0x5b14 015400 isub temp ,pdata 
+0x5b15 015401 store 2 ,mem_nl_rx_len_all 
+0x5b16 015402 rtn 
+:      015404 module_hci_cmd_get_current_patcket_len:
+0x5b17 015405 fetch 2 ,mem_nl_rx_len_all 
+0x5b18 015406 arg dm_refcom_buff_len ,temp 
+0x5b19 015407 call not_greater_than 
+0x5b1a 015408 fetcht 2 ,mem_rfcomm_max_frame_size 
+0x5b1b 015409 call not_greater_than 
+0x5b1c 015410 fetcht 2 ,mem_pn_max_frame_size 
+0x5b1d 015411 call not_greater_than 
+0x5b1e 015412 store 2 ,mem_current_packet_length 
+0x5b1f 015413 rtn 
+:      015416 module_hci_command_tx_spp_tx_complete:
+0x5b20 015417 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b21 015418 jam hci_cmd_spp_data_req ,mem_uart_opcode 
+0x5b22 015419 branch module_hci_event_receive_valid_cmd 
+:      015422 module_hci_cmd_receive_le_data:
+0x5b23 015423 fetch 2 ,mem_ui_state_map 
+0x5b24 015424 rtnbit0 ui_state_ble_connected 
+0x5b25 015426 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b26 015427 fetch 1 ,mem_le_continue_flag 
+0x5b27 015428 nrtn blank 
+0x5b28 015429 fetch 2 ,mem_module_hci_notify_len 
+0x5b29 015430 branch module_hci_cmd_gatt_notify_start_packet ,blank 
+0x5b2a 015431 fetcht 2 ,mem_module_hci_notify_offset 
+0x5b2b 015432 isub temp ,null 
+0x5b2c 015433 nrtn zero 
+0x5b2d 015434 set1 mark_ext_patch ,mark 
+0x5b2e 015435 bpatch patch2c_4 ,mem_patch2c 
+0x5b2f 015436 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b30 015437 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b31 015438 fetcht 2 ,mem_module_hci_notify_len 
+0x5b32 015439 isub temp ,regb 
+0x5b33 015440 nbranch assert ,positive 
+0x5b34 015441 nbranch module_hci_cmd_gatt_notify_seperate ,zero 
+0x5b35 015442 call module_hci_cmd_gatt_notify_clear_len 
+0x5b36 015443 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b37 015444 branch module_set_le_tx_data_flag 
+:      015448 module_hci_cmd_gatt_notify_seperate:
+0x5b38 015449 fetch 1 ,mem_module_flag 
+0x5b39 015450 rtnbit1 module_flag_ble_send_mtu23 
+0x5b3a 015451 hfetch 2 ,core_uart_rrptr 
+0x5b3b 015452 iforce contru 
+0x5b3c 015453 fetch 2 ,mem_module_hci_notify_len 
+0x5b3d 015454 iadd contru ,contru 
+0x5b3e 015455 copy contru ,rega 
+0x5b3f 015456 setarg 0x0901 
+0x5b40 015457 istore 2 ,contru 
+0x5b41 015458 add regb ,2 ,pdata 
+0x5b42 015459 istore 1 ,contru 
+0x5b43 015460 fetch 2 ,mem_module_hci_notify_att 
+0x5b44 015461 istore 2 ,contru 
+0x5b45 015462 copy rega ,pdata 
+0x5b46 015463 hstore 2 ,core_uart_rrptr 
+:      015464 module_hci_cmd_gatt_notify_clear_len:
+0x5b47 015465 setarg 0 
+0x5b48 015466 store 2 ,mem_module_hci_notify_len 
+0x5b49 015467 rtn 
+:      015469 module_hci_cmd_gatt_notify_start_packet:
+0x5b4a 015470 copy rega ,contru 
+0x5b4b 015471 ifetch 2 ,contru 
+0x5b4c 015472 store 2 ,mem_module_hci_notify_att 
+0x5b4d 015473 fetch 1 ,mem_uart_len 
+0x5b4e 015474 increase -2 ,pdata 
+0x5b4f 015476 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5b50 015477 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5b51 015478 store 2 ,mem_module_hci_notify_original_len 
+0x5b52 015480 fetch 1 ,mem_module_flag 
+0x5b53 015481 bbit1 module_flag_ble_send_mtu23 ,module_hci_cmd_notify_start_packet_mtu23 
+0x5b54 015483 fetcht 2 ,mem_le_remote_mtu 
+:      015484 module_hci_cmd_gatt_notify_start_packet1:
+0x5b55 015485 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b56 015486 call not_greater_than 
+0x5b57 015488 store 2 ,mem_module_hci_notify_len 
+0x5b58 015489 copy contru ,pdata 
+0x5b59 015490 store 2 ,mem_module_hci_notify_start 
+0x5b5a 015491 setarg 0 
+0x5b5b 015492 store 2 ,mem_module_hci_notify_offset 
+0x5b5c 015493 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b5d 015494 branch le_xtype_fifo_in 
+:      015496 module_hci_cmd_notify_start_packet_mtu23:
+0x5b5e 015497 arg 20 ,temp 
+0x5b5f 015498 branch module_hci_cmd_gatt_notify_start_packet1 
+:      015501 module_le_tx_update_data:
+0x5b60 015502 fetch 1 ,mem_le_notify_type 
+0x5b61 015503 jam 0 ,mem_le_notify_type 
+0x5b62 015504 nbranch module_le_send_md_notify ,blank 
+0x5b63 015506 fetch 2 ,mem_module_hci_notify_len 
+0x5b64 015507 branch assert ,blank 
+0x5b65 015508 add pdata ,3 ,temp 
+0x5b66 015509 storet 2 ,mem_le_txpayload 
+0x5b67 015510 arg 20 ,temp 
+0x5b68 015511 call not_greater_than 
+0x5b69 015512 copy pdata ,loopcnt 
+0x5b6a 015513 store 2 ,mem_module_hci_notify_offset 
+0x5b6b 015516 fetcht 2 ,mem_module_hci_notify_len 
+0x5b6c 015517 isub temp ,temp 
+0x5b6d 015518 fetch 1 ,mem_module_flag 
+0x5b6e 015519 bbit1 module_flag_ble_send_mtu23 ,module_le_tx_no_continue 
+0x5b6f 015520 ncall module_le_send_att_insert_continue ,zero 
+0x5b70 015521 jam le_continue_type_notification ,mem_le_continue_type 
+:      015522 module_le_tx_no_continue:
+0x5b71 015523 set1 mark_ext_patch ,mark 
+0x5b72 015524 bpatch patch2c_5 ,mem_patch2c 
+0x5b73 015525 arg 0x02 ,type 
+0x5b74 015526 fetch 2 ,mem_module_hci_notify_att 
+0x5b75 015527 store 2 ,mem_le_l2cap + 1 
+0x5b76 015528 fetch 2 ,mem_module_hci_notify_start 
+0x5b77 015529 copy pdata ,contru 
+:      015530 module_le_send_att_notify_common:
+0x5b78 015533 call uart_copy_rx_bytes_fast 
+0x5b79 015534 fetch 1 ,mem_module_flag 
+0x5b7a 015535 bbit0 module_flag_ble_send_mtu23 ,module_le_send_not_fill_l2cap_len 
+0x5b7b 015536 setarg mem_le_txpayload 
+0x5b7c 015537 isub contw ,pdata 
+0x5b7d 015538 sub pdata ,0 ,temp 
+0x5b7e 015539 storet 1 ,mem_le_txlen 
+0x5b7f 015540 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b80 015541 fetcht 2 ,mem_module_hci_notify_len 
+0x5b81 015542 call module_le_check_if_send_once_more 
+0x5b82 015543 fetcht 1 ,mem_le_arq 
+0x5b83 015544 fetch 1 ,mem_module_le_md_flag 
+0x5b84 015545 branch module_le_send_non_l2cap_last ,blank 
+0x5b85 015546 nsetflag blank ,md ,temp 
+0x5b86 015547 storet 1 ,mem_le_arq 
+0x5b87 015548 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b88 015549 call le_xtype_fifo_in 
+0x5b89 015550 jam 1 ,mem_le_notify_type 
+0x5b8a 015551 fetcht 1 ,mem_le_arq 
+0x5b8b 015552 branch le_send_non_l2cap1 
+:      015554 module_le_send_non_l2cap_last:
+0x5b8c 015555 call module_set_le_tx_data_flag 
+0x5b8d 015556 branch le_send_non_l2cap 
+:      015558 module_set_le_tx_data_flag:
+0x5b8e 015559 fetch 1 ,mem_module_flag 
+0x5b8f 015560 set1 module_flag_ble_send_data ,pdata 
+0x5b90 015561 branch module_store_moule_flag 
+:      015563 module_clear_le_tx_data_flag:
+0x5b91 015564 fetch 1 ,mem_module_flag 
+0x5b92 015565 set0 module_flag_ble_send_data ,pdata 
+0x5b93 015566 branch module_store_moule_flag 
+:      015568 module_le_check_if_send_once_more:
+0x5b94 015569 jam 0 ,mem_module_le_md_flag 
+0x5b95 015570 isub temp ,null 
+0x5b96 015571 rtn zero 
+0x5b97 015572 nrtn positive 
+0x5b98 015573 jam 1 ,mem_module_le_md_flag 
+0x5b99 015574 rtn 
+:      015576 module_le_send_att_insert_continue:
+0x5b9a 015577 fetch 3 ,mem_le_xtype_fifo 
+0x5b9b 015578 nbranch module_le_send_att_insert_cont_next ,blank 
+0x5b9c 015579 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x5b9d 015580 rtn 
+:      015581 module_le_send_att_insert_cont_next:
+0x5b9e 015582 call le_xtype_fifo_is_near_full 
+0x5b9f 015583 nbranch assert ,blank 
+0x5ba0 015584 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x5ba1 015585 rtn 
+:      015588 module_le_tx_update_notify_continue:
+0x5ba2 015589 set1 mark_ext_patch ,mark 
+0x5ba3 015590 bpatch patch2c_6 ,mem_patch2c 
+0x5ba4 015591 fetch 2 ,mem_module_hci_notify_len 
+0x5ba5 015592 branch assert ,blank 
+0x5ba6 015593 fetcht 2 ,mem_module_hci_notify_offset 
+0x5ba7 015594 branch assert ,blank 
+0x5ba8 015595 isub temp ,pdata 
+0x5ba9 015596 arg 27 ,temp 
+0x5baa 015597 call not_greater_than 
+0x5bab 015598 copy pdata ,loopcnt 
+0x5bac 015599 fetch 2 ,mem_module_hci_notify_start 
+0x5bad 015600 copy pdata ,contru 
+0x5bae 015601 fetch 2 ,mem_module_hci_notify_offset 
+0x5baf 015602 iadd contru ,contru 
+0x5bb0 015603 iadd loopcnt ,pdata 
+0x5bb1 015604 store 2 ,mem_module_hci_notify_offset 
+0x5bb2 015605 fetcht 2 ,mem_module_hci_notify_len 
+0x5bb3 015606 isub temp ,temp 
+0x5bb4 015607 ncall module_le_send_att_insert_continue ,zero 
+0x5bb5 015608 jam le_continue_type_notification ,mem_le_continue_type 
+0x5bb6 015609 arg mem_le_txpayload ,contw 
+0x5bb7 015610 call uart_copy_rx_bytes_fast 
+0x5bb8 015611 arg 1 ,type 
+:      015612 module_le_send_not_fill_l2cap_len:
+0x5bb9 015613 setarg mem_le_txpayload 
+0x5bba 015614 isub contw ,pdata 
+0x5bbb 015615 sub pdata ,0 ,temp 
+0x5bbc 015616 storet 1 ,mem_le_txlen 
+0x5bbd 015617 branch le_send_non_l2cap 
+:      015620 module_le_send_md_notify:
+0x5bbe 015621 fetch 2 ,mem_module_hci_notify_original_len 
+0x5bbf 015622 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc0 015623 isub temp ,pdata 
+0x5bc1 015624 arg 20 ,temp 
+0x5bc2 015625 call not_greater_than 
+0x5bc3 015626 copy pdata ,loopcnt 
+0x5bc4 015627 add pdata ,3 ,temp 
+0x5bc5 015628 storet 2 ,mem_le_txpayload 
+0x5bc6 015630 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc7 015631 iadd temp ,pdata 
+0x5bc8 015632 store 2 ,mem_module_hci_notify_len 
+0x5bc9 015634 fetch 2 ,mem_module_hci_notify_start 
+0x5bca 015635 copy pdata ,contru 
+0x5bcb 015636 fetch 2 ,mem_module_hci_notify_offset 
+0x5bcc 015637 iadd contru ,contru 
+0x5bcd 015638 iadd loopcnt ,pdata 
+0x5bce 015639 store 2 ,mem_module_hci_notify_offset 
+0x5bcf 015640 arg 0x02 ,type 
+0x5bd0 015641 fetch 2 ,mem_module_hci_notify_att 
+0x5bd1 015642 store 2 ,mem_le_l2cap + 1 
+0x5bd2 015643 branch module_le_send_att_notify_common 
+:      015646 module_hci_cmd_inquire_status:
+0x5bd3 015647 branch module_hci_event_status_res 
+:      015651 module_hci_cmd_set_pairing_mode:
+0x5bd4 015652 copy rega ,contru 
+0x5bd5 015653 ifetch 1 ,contru 
+0x5bd6 015654 beq pairing_pincode ,module_hci_pairing_pincode_mode 
+0x5bd7 015655 beq pairing_justwork ,module_hci_pairing_just_work_mode 
+0x5bd8 015656 beq pairing_passkey ,module_hci_pairing_passkey 
+0x5bd9 015657 beq pairing_confirm ,module_hci_pairing_numeric_comparison 
+0x5bda 015658 branch module_hci_event_receive_invalid_cmd 
+:      015659 module_hci_pairing_pincode_mode:
+0x5bdb 015660 call ssp_disable 
+0x5bdc 015661 jam 0 ,mem_ssp_enable 
+0x5bdd 015662 branch module_hci_event_receive_valid_cmd 
+:      015663 module_hci_pairing_just_work_mode:
+0x5bde 015664 setarg ssp_mode_just_work_io_cap_data 
+:      015665 module_hci_sspairing_mode:
+0x5bdf 015666 store 3 ,mem_sp_iocap_local 
+0x5be0 015667 store 1 ,mem_ssp_mode_flag 
+0x5be1 015668 call ssp_enable 
+0x5be2 015669 jam 1 ,mem_ssp_enable 
+0x5be3 015670 branch module_hci_event_receive_valid_cmd 
+:      015671 module_hci_pairing_passkey:
+0x5be4 015672 setarg ssp_mode_passkey_io_cap_data 
+0x5be5 015673 branch module_hci_sspairing_mode 
+:      015675 module_hci_pairing_numeric_comparison:
+0x5be6 015676 setarg ssp_mode_ssp_pin_io_cap_data 
+0x5be7 015677 branch module_hci_sspairing_mode 
+:      015680 module_hci_cmd_set_pincode:
+0x5be8 015681 fetch 1 ,mem_uart_len 
+0x5be9 015682 sub pdata ,16 ,null 
+0x5bea 015683 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5beb 015684 store 1 ,mem_pin_length 
+0x5bec 015685 copy pdata ,loopcnt 
+0x5bed 015686 arg mem_pin ,contw 
+0x5bee 015687 call uart_copy_rx_bytes 
+0x5bef 015688 branch module_hci_event_receive_valid_cmd 
+:      015692 module_hci_cmd_set_uart_control_mode:
+0x5bf0 015693 copy rega ,contru 
+0x5bf1 015694 ifetch 1 ,contru 
+0x5bf2 015695 hfetcht 1 ,core_uart_ctrl 
+0x5bf3 015696 nsetflag blank ,4 ,temp 
+0x5bf4 015697 hstoret 1 ,core_uart_ctrl 
+0x5bf5 015698 branch module_hci_event_receive_valid_cmd 
+:      015702 module_hci_cmd_set_uart_baud:
+0x5bf6 015703 fetch 1 ,mem_uart_len 
+0x5bf7 015704 copy pdata ,loopcnt 
+0x5bf8 015705 copy rega ,contru 
+0x5bf9 015706 call string2dec_from_uart 
+0x5bfa 015707 setarg uart_clk 
+0x5bfb 015708 idiv temp 
+0x5bfc 015709 call wait_div_end 
+0x5bfd 015710 quotient pdata 
+:      015711 module_hci_cmd_set_uart_baud_ok:
+0x5bfe 015712 store uart_baud_len ,mem_baud 
+0x5bff 015713 call module_hci_event_receive_valid_cmd 
+0x5c00 015714 call wait_uarttx 
+0x5c01 015715 branch uart_set_baud_by_mem 
+:      015719 module_hci_cmd_version_request:
+0x5c02 015720 arg 2 ,rega 
+0x5c03 015721 arg mem_soft_version_num ,regb 
+0x5c04 015722 arg 0 ,temp 
+0x5c05 015723 branch module_hci_event_set_cmd 
+:      015724 module_hci_event_set_cmd_send_response:
+0x5c06 015725 store 2 ,mem_event_cmd_response_content 
+0x5c07 015726 arg mem_event_cmd_response_content ,regb 
+0x5c08 015727 arg 0 ,temp 
+0x5c09 015728 branch module_hci_event_set_cmd 
+:      015732 module_hci_cmd_bt_disconnect:
+0x5c0a 015733 fetch 2 ,mem_ui_state_map 
+0x5c0b 015734 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+:      015735 module_hci_cmd_bt_disconnect_doing:
+0x5c0c 015736 call module_hci_event_receive_valid_cmd 
+0x5c0d 015737 branch app_bt_disconnect 
+:      015741 module_hci_cmd_ble_disconnect:
+0x5c0e 015742 fetch 2 ,mem_ui_state_map 
+0x5c0f 015743 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+:      015744 module_hci_cmd_ble_disconnect_doing:
+0x5c10 015745 call module_hci_event_receive_valid_cmd 
+0x5c11 015746 branch app_ble_disconnect 
+:      015752 module_hci_cmd_set_nvram:
+0x5c12 015753 fetch 1 ,mem_uart_len 
+0x5c13 015754 copy pdata ,loopcnt 
+0x5c14 015755 copy rega ,contru 
+0x5c15 015756 fetch 2 ,mem_nv_data_ptr 
+0x5c16 015757 icopy contw 
+0x5c17 015758 call uart_copy_rx_bytes_fast 
+0x5c18 015759 branch module_hci_event_receive_valid_cmd 
+:      015763 module_hci_cmd_confirm_gkey:
+0x5c19 015764 fetch 1 ,mem_ui_state_map 
+0x5c1a 015765 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+0x5c1b 015766 ifetch 1 ,contru 
+0x5c1c 015767 fetcht 1 ,mem_flag_mode_ssp_pin 
+0x5c1d 015768 setflag blank ,flag_mode_ssp_pin_comparison_result_bit ,temp 
+0x5c1e 015769 set1 flag_mode_ssp_pin_reviceve_comparison_bit ,temp 
+0x5c1f 015770 storet 1 ,mem_flag_mode_ssp_pin 
+0x5c20 015772 call module_hci_event_receive_valid_cmd 
+0x5c21 015774 fetch 1 ,mem_flag_mode_ssp_pin 
+0x5c22 015775 bbit1 flag_mode_ssp_pin_recieve_dhkey_bit ,module_hci_cmd_spp_number_comparison_result_is1 
+0x5c23 015776 rtn 
+:      015778 dhkey_not_accept:
+0x5c24 015779 jam 0 ,mem_flag_mode_ssp_pin 
+0x5c25 015780 jam bt_cmd_dhkey_not_accept ,mem_fifo_temp 
+0x5c26 015781 branch ui_ipc_send_cmd 
+:      015784 module_hci_cmd_spp_number_comparison_result_is1:
+0x5c27 015785 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x5c28 015786 branch dhkey_not_accept 
+:      015790 module_hci_cmd_set_credit_given:
+0x5c29 015791 fetch 1 ,mem_ui_state_map 
+0x5c2a 015792 rtnbit0 ui_state_bt_spp_conn 
+0x5c2b 015793 fetch 1 ,mem_credit_flag 
+0x5c2c 015794 rtneq credit_disable 
+0x5c2d 015795 ifetch 1 ,contru 
+0x5c2e 015796 fetcht 1 ,mem_credit_given 
+0x5c2f 015797 iadd temp ,temp 
+0x5c30 015798 storet 1 ,mem_credit_given 
+0x5c31 015799 rtn 
+:      015803 module_hci_cmd_auto_adv:
+0x5c32 015804 arg 0x40 ,loopcnt 
+0x5c33 015805 arg mem_le_adv_data_len ,contw 
+0x5c34 015806 call clear_mem 
+0x5c35 015807 setarg 0 
+0x5c36 015808 store 1 ,mem_regb 
+0x5c37 015809 copy rega ,contru 
+:      015810 module_hci_cmd_auto_adv_loop:
+0x5c38 015811 copy contru ,pdata 
+0x5c39 015812 store 2 ,mem_regc 
+0x5c3a 015813 call module_hci_cmd_auto_adv_adv_analys 
+0x5c3b 015815 fetch 1 ,mem_regb 
+0x5c3c 015816 fetcht 1 ,mem_temp 
+0x5c3d 015817 increase 1 ,temp 
+0x5c3e 015818 iadd temp ,pdata 
+0x5c3f 015819 store 1 ,mem_regb 
+0x5c40 015821 sub pdata ,32 ,null 
+0x5c41 015822 nbranch module_hci_cmd_auto_adv_store_scan ,positive 
+:      015823 module_hci_cmd_auto_adv_store_adv:
+0x5c42 015824 fetcht 1 ,mem_le_adv_data_len 
+0x5c43 015825 setarg mem_le_adv_data 
+0x5c44 015826 iadd temp ,pdata 
+0x5c45 015827 store 2 ,mem_contw 
+0x5c46 015828 fetcht 1 ,mem_temp 
+0x5c47 015829 increase 1 ,temp 
+0x5c48 015830 fetch 1 ,mem_le_adv_data_len 
+0x5c49 015831 iadd temp ,pdata 
+0x5c4a 015832 store 1 ,mem_le_adv_data_len 
+0x5c4b 015833 branch module_hci_cmd_auto_adv_store_common 
+:      015834 module_hci_cmd_auto_adv_store_scan:
+0x5c4c 015835 fetcht 1 ,mem_le_scan_data_len 
+0x5c4d 015836 setarg mem_le_scan_data 
+0x5c4e 015837 iadd temp ,pdata 
+0x5c4f 015838 store 2 ,mem_contw 
+0x5c50 015839 fetcht 1 ,mem_temp 
+0x5c51 015840 increase 1 ,temp 
+0x5c52 015841 fetch 1 ,mem_le_scan_data_len 
+0x5c53 015842 iadd temp ,pdata 
+0x5c54 015843 store 1 ,mem_le_scan_data_len 
+:      015844 module_hci_cmd_auto_adv_store_common:
+0x5c55 015845 fetch 2 ,mem_contw 
+0x5c56 015846 copy pdata ,contw 
+0x5c57 015847 fetch 2 ,mem_regc 
+0x5c58 015848 copy pdata ,contru 
+0x5c59 015850 copy temp ,loopcnt 
+0x5c5a 015851 call uart_copy_rx_bytes_fast 
+0x5c5b 015853 fetch 1 ,mem_uart_len 
+0x5c5c 015854 fetcht 1 ,mem_regb 
+0x5c5d 015855 isub temp ,null 
+0x5c5e 015856 nbranch module_hci_cmd_auto_adv_loop ,zero 
+0x5c5f 015857 jam 0x1f ,mem_le_adv_data_len 
+0x5c60 015858 jam 0x1f ,mem_le_scan_data_len 
+0x5c61 015859 branch module_hci_event_receive_valid_cmd 
+:      015862 module_hci_cmd_auto_adv_adv_analys:
+0x5c62 015863 ifetch 1 ,contru 
+0x5c63 015864 store 1 ,mem_temp 
+0x5c64 015865 ifetch 1 ,contru 
+0x5c65 015866 store 1 ,mem_rega 
+0x5c66 015867 rtn 
+:      015871 module_hci_cmd_power_request:
+0x5c67 015872 arg 0 ,temp 
+0x5c68 015873 arg 2 ,rega 
+0x5c69 015874 fetch 2 ,mem_module_vdd_quotient 
+0x5c6a 015875 store 2 ,mem_event_cmd_response_content 
+0x5c6b 015876 arg mem_event_cmd_response_content ,regb 
+0x5c6c 015877 branch module_hci_event_set_cmd 
+:      015881 module_hci_cmd_power_set:
+0x5c6d 015882 fetch 1 ,mem_uart_len 
+0x5c6e 015883 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c6f 015884 ifetch 1 ,contru 
+0x5c70 015885 store 1 ,mem_module_read_vdd_flag 
+0x5c71 015886 setarg 0x00 
+0x5c72 015887 store 2 ,mem_module_vdd_quotient 
+0x5c73 015888 branch module_hci_event_receive_valid_cmd 
+:      015892 module_hci_cmd_passkey_entry:
+0x5c74 015893 ifetch 4 ,contru 
+0x5c75 015894 store 4 ,mem_pin 
+0x5c76 015895 jam 4 ,mem_pin_length 
+0x5c77 015896 jam 0 ,mem_authentication_passkey_times 
+0x5c78 015897 call module_hci_event_receive_valid_cmd 
+0x5c79 015898 branch authentication_passkey 
+:      015902 module_hci_cmd_set_gpio:
+0x5c7a 015903 fetch 1 ,mem_uart_len 
+0x5c7b 015904 bne 3 ,module_hci_event_receive_invalid_cmd 
+0x5c7c 015905 ifetch 1 ,contru 
+0x5c7d 015906 beq 0x00 ,module_set_gpio_input 
+0x5c7e 015907 beq 0x01 ,module_set_gpio_output 
+0x5c7f 015908 branch module_hci_event_receive_invalid_cmd 
+:      015909 module_set_gpio_input:
+0x5c80 015910 ifetcht 1 ,contru 
+0x5c81 015911 ifetch 1 ,contru 
+0x5c82 015912 nsetflag blank ,7 ,temp 
+0x5c83 015913 call gpio_config_input 
+0x5c84 015914 branch module_hci_event_receive_valid_cmd 
+:      015916 module_set_gpio_output:
+0x5c85 015917 ifetcht 1 ,contru 
+0x5c86 015918 call gpio_config_output0 
+0x5c87 015919 ifetch 1 ,contru 
+0x5c88 015920 isolate1 0 ,pdata 
+0x5c89 015921 call gpio_out_flag 
+0x5c8a 015922 branch module_hci_event_receive_valid_cmd 
+:      015926 module_hci_cmd_read_gpio:
+0x5c8b 015927 fetch 1 ,mem_uart_len 
+0x5c8c 015928 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c8d 015929 ifetcht 1 ,contru 
+0x5c8e 015930 call gpio_get_bit 
+0x5c8f 015931 setarg 0x0 
+0x5c90 015932 nsetflag true ,0 ,pdata 
+0x5c91 015933 arg 1 ,rega 
+0x5c92 015934 branch module_hci_event_set_cmd_send_response 
+:      015938 module_hci_cmd_le_set_pairing_mode:
+0x5c93 015939 copy rega ,contru 
+0x5c94 015940 ifetch 1 ,contru 
+0x5c95 015941 store 1 ,mem_le_pairing_mode 
+0x5c96 015942 arg 0 ,temp 
+0x5c97 015943 isolate1 le_pairing_mode_secure_connect_bit ,pdata 
+0x5c98 015944 setflag true ,0 ,temp 
+0x5c99 015945 storet 1 ,mem_le_secure_connect_enable 
+0x5c9a 015946 beq le_pairing_mode_none ,module_le_set_no_pairing 
+0x5c9b 015947 beq le_pairing_mode_lagacy_justwork ,module_le_set_pairing_mode_lagacy_just_work 
+0x5c9c 015948 beq le_pairing_mode_lagacy_passkey ,module_le_set_pairing_mode_lagacy_passkey 
+0x5c9d 015949 beq le_pairing_mode_secure_connect_justwork ,module_le_set_pairing_mode_secure_justwork 
+0x5c9e 015950 beq le_pairing_mode_secure_connect_numeric ,module_le_set_pairing_mode_secure_numeric 
+0x5c9f 015951 beq le_pairing_mode_secure_connect_passkey ,module_le_set_pairing_mode_secure_passkey 
+0x5ca0 015952 jam 0 ,mem_le_secure_connect_enable 
+0x5ca1 015953 branch module_hci_event_receive_invalid_cmd 
+:      015955 module_le_set_pairing_mode_secure_justwork:
+0x5ca2 015956 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca3 015957 branch module_le_set_noinputnooutput 
+:      015958 module_le_set_pairing_mode_secure_numeric:
+0x5ca4 015959 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca5 015960 jam flag_iocap_displayyesno ,mem_le_pres_iocap 
+0x5ca6 015961 branch module_hci_event_receive_valid_cmd 
+:      015962 module_le_set_pairing_mode_secure_passkey:
+0x5ca7 015963 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca8 015964 branch module_le_set_displayonly 
+:      015965 module_le_set_no_pairing:
+0x5ca9 015966 jam flag_le_no_bonding_no_mitm ,mem_le_pres_auth 
+:      015967 module_le_set_noinputnooutput:
+0x5caa 015968 jam flag_iocap_noinputnooutput ,mem_le_pres_iocap 
+0x5cab 015969 branch module_hci_event_receive_valid_cmd 
+:      015970 module_le_set_pairing_mode_lagacy_just_work:
+0x5cac 015971 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+0x5cad 015972 branch module_le_set_noinputnooutput 
+:      015973 module_le_set_pairing_mode_lagacy_passkey:
+0x5cae 015974 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+:      015975 module_le_set_displayonly:
+0x5caf 015976 jam flag_iocap_displayonly ,mem_le_pres_iocap 
+0x5cb0 015977 branch module_hci_event_receive_valid_cmd 
+:      015981 module_hci_cmd_le_set_adv_data:
+0x5cb1 015982 fetch 1 ,mem_uart_len 
+0x5cb2 015983 sub pdata ,31 ,null 
+0x5cb3 015984 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cb4 015985 copy pdata ,loopcnt 
+0x5cb5 015986 copy rega ,contru 
+0x5cb6 015987 arg mem_le_adv_data ,contw 
+0x5cb7 015988 call uart_copy_rx_bytes_fast 
+0x5cb8 015989 branch module_hci_event_receive_valid_cmd 
+:      015993 module_hci_cmd_le_set_scan_data:
+0x5cb9 015994 fetch 1 ,mem_uart_len 
+0x5cba 015995 sub pdata ,31 ,null 
+0x5cbb 015996 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cbc 015997 copy pdata ,loopcnt 
+0x5cbd 015998 copy rega ,contru 
+0x5cbe 015999 arg mem_le_scan_data ,contw 
+0x5cbf 016000 call uart_copy_rx_bytes_fast 
+0x5cc0 016001 branch module_hci_event_receive_valid_cmd 
+:      016005 module_hci_cmd_le_send_conn_update_req:
+0x5cc1 016006 fetch 2 ,mem_ui_state_map 
+0x5cc2 016007 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+0x5cc3 016008 fetch 1 ,mem_uart_len 
+0x5cc4 016009 bne 0x08 ,module_hci_event_receive_invalid_cmd 
+0x5cc5 016010 copy rega ,contru 
+0x5cc6 016011 ifetch 8 ,contru 
+0x5cc7 016012 store 8 ,mem_le_interal_min 
+0x5cc8 016013 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x5cc9 016014 call ui_ipc_send_cmd 
+0x5cca 016015 branch module_hci_event_receive_valid_cmd 
+:      016019 module_hci_cmd_le_start_pairing:
+0x5ccb 016020 fetch 1 ,mem_le_pairing_mode 
+0x5ccc 016021 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5ccd 016022 fetch 1 ,mem_le_pairing_state 
+0x5cce 016023 bne flag_le_pairing_null ,module_hci_event_receive_invalid_cmd 
+0x5ccf 016024 fetch 1 ,mem_le_enc_state 
+0x5cd0 016025 bne flag_le_enc_null ,module_hci_event_receive_invalid_cmd 
+0x5cd1 016026 call check_51cmd_le_smp_sec_req 
+0x5cd2 016027 branch module_hci_event_receive_valid_cmd 
+:      016031 module_hci_cmd_le_confirm_gkey:
+0x5cd3 016032 ifetch 1 ,contru 
+0x5cd4 016033 beq 0x01 ,module_hci_cmd_le_confirm_gkey_fail 
+0x5cd5 016034 fetch 1 ,mem_le_secure_connect_state 
+0x5cd6 016035 beq le_sc_stat_send_public_key ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd7 016036 beq le_sc_stat_receive_dhkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd8 016037 beq le_sc_stat_wait_confirm_gkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd9 016038 branch module_hci_event_receive_invalid_cmd 
+:      016039 module_hci_cmd_le_confirm_gkey_ok:
+0x5cda 016040 jam flag_le_sc_confrim_gkey_ok ,mem_le_sc_confirm_gkey_flag 
+0x5cdb 016041 branch module_hci_event_receive_valid_cmd 
+:      016043 module_hci_cmd_le_confirm_gkey_fail:
+0x5cdc 016044 call le_pairing_failed 
+0x5cdd 016045 branch module_hci_event_receive_valid_cmd 
+:      016048 module_hci_event_receive_invalid_cmd:
+0x5cde 016049 arg 1 ,temp 
+0x5cdf 016050 arg 0 ,rega 
+0x5ce0 016051 branch module_hci_event_set_cmd 
+:      016053 module_hci_event_receive_valid_cmd:
+0x5ce1 016054 arg 0 ,temp 
+0x5ce2 016055 arg 0 ,rega 
+0x5ce3 016056 branch module_hci_event_set_cmd 
+:      016060 module_hci_event_spp_connect:
+0x5ce4 016061 jam hci_event_spp_conn_rep ,mem_uart_opcode 
+0x5ce5 016062 branch module_hci_event_enter_standby_mode_len0 
+:      016065 module_hci_event_le_connect:
+0x5ce6 016066 jam hci_event_le_conn_rep ,mem_uart_opcode 
+0x5ce7 016067 branch module_hci_event_enter_standby_mode_len0 
+:      016070 module_hci_event_spp_disconnect:
+0x5ce8 016071 jam hci_event_spp_dis_rep ,mem_uart_opcode 
+0x5ce9 016072 branch module_hci_event_enter_standby_mode_len0 
+:      016074 module_hci_event_le_disconnect:
+0x5cea 016075 jam hci_event_le_dis_rep ,mem_uart_opcode 
+0x5ceb 016076 branch module_hci_event_enter_standby_mode_len0 
+:      016086 module_hci_event_set_cmd:
+0x5cec 016087 fetch 1 ,mem_uart_opcode 
+0x5ced 016088 copy pdata ,regc 
+0x5cee 016089 jam hci_event_cmd_res ,mem_uart_opcode 
+0x5cef 016090 setarg 2 
+0x5cf0 016091 iadd rega ,pdata 
+0x5cf1 016092 call module_hci_prepare_tx 
+0x5cf2 016093 copy regc ,pdata 
+0x5cf3 016094 istore 1 ,contwu 
+0x5cf4 016095 istoret 1 ,contwu 
+0x5cf5 016096 copy rega ,loopcnt 
+0x5cf6 016097 copy regb ,contr 
+0x5cf7 016098 call uart_copy_tx_bytes 
+0x5cf8 016099 branch uartd_send 
+:      016102 module_hci_event_receive_spp_data:
+0x5cf9 016104 jam hci_event_spp_data_rep ,mem_uart_opcode 
+0x5cfa 016105 fetch 1 ,mem_current_length 
+0x5cfb 016106 rtn blank 
+0x5cfc 016107 call module_hci_prepare_tx 
+0x5cfd 016108 fetch 1 ,mem_current_length 
+0x5cfe 016109 copy pdata ,loopcnt 
+0x5cff 016110 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x5d00 016111 copy pdata ,contr 
+0x5d01 016112 call uart_copy_tx_bytes_fast 
+0x5d02 016113 branch uartd_send 
+:      016117 module_hci_event_receive_le_data:
+0x5d03 016118 jam hci_event_le_data_rep ,mem_uart_opcode 
+0x5d04 016119 fetch 1 ,mem_module_le_rx_data_len 
+0x5d05 016120 icopy loopcnt 
+0x5d06 016121 increase 2 ,pdata 
+0x5d07 016122 call module_hci_prepare_tx 
+0x5d08 016123 fetch 2 ,mem_module_le_rx_data_handle 
+0x5d09 016124 istore 2 ,contwu 
+0x5d0a 016125 fetch 2 ,mem_module_le_rx_data_address 
+0x5d0b 016126 icopy contr 
+0x5d0c 016127 call uart_copy_tx_bytes_fast 
+0x5d0d 016128 branch uartd_send 
+:      016132 module_hci_event_enter_standby_mode:
+0x5d0e 016133 jam hci_event_standby_rep ,mem_uart_opcode 
+:      016134 module_hci_event_enter_standby_mode_len0:
+0x5d0f 016135 setarg 0 
+0x5d10 016136 call module_hci_prepare_tx 
+0x5d11 016137 branch uartd_send 
+:      016141 module_hci_event_status_res:
+0x5d12 016142 jam hci_event_status_res ,mem_uart_opcode 
+0x5d13 016143 setarg 1 
+0x5d14 016144 call module_hci_prepare_tx 
+0x5d15 016146 call module_hci_read_bt_status 
+0x5d16 016148 fetch 2 ,mem_ui_state_map 
+0x5d17 016149 arg ui_state_bt_hid_conn ,queue 
+0x5d18 016150 qisolate1 pdata 
+0x5d19 016151 setflag true ,3 ,temp 
+0x5d1a 016153 arg ui_state_ble_connected ,queue 
+0x5d1b 016154 qisolate1 pdata 
+0x5d1c 016155 setflag true ,5 ,temp 
+0x5d1d 016157 fetch 1 ,mem_ui_state_map 
+0x5d1e 016158 arg ui_state_bt_spp_conn ,queue 
+0x5d1f 016159 qisolate1 pdata 
+0x5d20 016160 setflag true ,4 ,temp 
+0x5d21 016162 istoret 1 ,contwu 
+0x5d22 016163 branch uartd_send 
+:      016167 module_hci_read_bt_status:
+0x5d23 016168 arg 0 ,temp 
+0x5d24 016169 fetch 1 ,mem_scan_mode 
+0x5d25 016170 arg inq_scan_mode ,queue 
+0x5d26 016171 qisolate1 pdata 
+0x5d27 016172 setflag true ,0 ,temp 
+0x5d28 016173 arg page_scan_mode ,queue 
+0x5d29 016174 qisolate1 pdata 
+0x5d2a 016175 setflag true ,1 ,temp 
+0x5d2b 016177 fetch 1 ,mem_le_adv_enable 
+0x5d2c 016178 arg 0 ,queue 
+0x5d2d 016179 qisolate1 pdata 
+0x5d2e 016180 setflag true ,2 ,temp 
+0x5d2f 016181 rtn 
+:      016186 module_hci_event_store_device:
+0x5d30 016187 jam hci_event_nvram_rep ,mem_uart_opcode 
+0x5d31 016188 fetch 1 ,mem_nv_data_number 
+0x5d32 016189 mul32 pdata ,34 ,pdata 
+0x5d33 016190 icopy loopcnt 
+0x5d34 016191 call module_hci_prepare_tx 
+0x5d35 016192 fetch 2 ,mem_nv_data_ptr 
+0x5d36 016193 icopy contr 
+0x5d37 016194 call uart_copy_tx_bytes_fast 
+0x5d38 016195 branch uartd_send 
+:      016200 module_hci_event_gkey_generate:
+0x5d39 016201 jam hci_event_gkey ,mem_uart_opcode 
+0x5d3a 016202 setarg 4 
+0x5d3b 016203 call module_hci_prepare_tx 
+0x5d3c 016204 fetch 4 ,mem_gkey 
+0x5d3d 016205 istore 4 ,contwu 
+0x5d3e 016206 branch uartd_send 
+:      016209 module_hci_event_invalid_packet:
+0x5d3f 016210 jam hci_event_invalid_packet ,mem_uart_opcode 
+0x5d40 016211 branch module_hci_event_enter_standby_mode_len0 
+:      016215 module_hci_event_passkey_entry_mode:
+0x5d41 016216 jam hci_event_get_passkey ,mem_uart_opcode 
+0x5d42 016217 branch module_hci_event_enter_standby_mode_len0 
+:      016220 module_hci_event_le_tk:
+0x5d43 016221 jam hci_event_le_tk ,mem_uart_opcode 
+0x5d44 016222 setarg 4 
+0x5d45 016223 call module_hci_prepare_tx 
+0x5d46 016224 fetch 4 ,mem_le_tk 
+0x5d47 016225 istore 4 ,contwu 
+0x5d48 016226 branch uartd_send 
+:      016229 module_hci_event_le_pairing_fail:
+0x5d49 016230 arg flag_ble_pairing_fail ,rega 
+0x5d4a 016231 branch module_hci_event_pairing_completed 
+:      016232 module_hci_event_le_pairing_success:
+0x5d4b 016233 arg flag_ble_pairing_success ,rega 
+0x5d4c 016234 branch module_hci_event_pairing_completed 
+:      016235 module_hci_event_bt_pairing_fail:
+0x5d4d 016236 arg flag_bt_pairing_fail ,rega 
+0x5d4e 016237 branch module_hci_event_pairing_completed 
+:      016238 module_hci_event_bt_pairing_success:
+0x5d4f 016239 arg flag_bt_pairing_success ,rega 
+:      016240 module_hci_event_pairing_completed:
+0x5d50 016241 jam 0 ,mem_flag_mode_ssp_pin 
+0x5d51 016242 jam hci_event_le_pairing_state ,mem_uart_opcode 
+0x5d52 016243 setarg 2 
+0x5d53 016244 call module_hci_prepare_tx 
+0x5d54 016245 copy rega ,pdata 
+0x5d55 016246 istore 2 ,contwu 
+0x5d56 016247 branch uartd_send 
+:      016250 module_hci_event_pause_enc:
+0x5d57 016251 arg flag_event_pause_enc ,regc 
+0x5d58 016252 branch module_hci_event_enc 
+:      016253 module_hci_event_start_enc:
+0x5d59 016254 arg flag_event_start_enc ,regc 
+:      016255 module_hci_event_enc:
+0x5d5a 016256 jam hci_event_le_encryption_state ,mem_uart_opcode 
+0x5d5b 016257 setarg 1 
+0x5d5c 016258 call module_hci_prepare_tx 
+0x5d5d 016259 copy regc ,pdata 
+0x5d5e 016260 istore 1 ,contwu 
+0x5d5f 016261 branch uartd_send 
+:      016264 module_hci_event_le_gkey:
+0x5d60 016265 jam hci_event_le_gkey ,mem_uart_opcode 
+0x5d61 016266 setarg 4 
+0x5d62 016267 call module_hci_prepare_tx 
+0x5d63 016268 fetch 4 ,mem_gkey 
+0x5d64 016269 istore 4 ,contwu 
+0x5d65 016270 branch uartd_send 
+:      016281 module_hci_prepare_tx:
+0x5d66 016282 jam 0x02 ,mem_uart_cmd 
+0x5d67 016283 store 1 ,mem_uart_len 
+0x5d68 016284 storet 8 ,mem_temp 
+0x5d69 016285 set1 mark_ext_patch ,mark 
+0x5d6a 016286 bpatch patch2c_7 ,mem_patch2c 
+0x5d6b 016287 call module_set_mcu_wake_pin_high_delay 
+0x5d6c 016288 fetcht 8 ,mem_temp 
+0x5d6d 016289 call uartd_prepare_tx 
+0x5d6e 016290 fetch 3 ,mem_uart_cmd 
+0x5d6f 016291 istore 3 ,contwu 
+0x5d70 016292 rtn 
+:      016296 module_set_mcu_wake_pin_high_delay:
+0x5d71 016297 call module_check_mcu_wake_pin_high 
+0x5d72 016298 rtn true 
+:      016299 module_set_mcu_wake_pin_h_delay:
+0x5d73 016300 call module_set_mcu_wake_pin_high 
+0x5d74 016301 fetch 4 ,mem_module_mcu_wake_delay_us 
+0x5d75 016302 rshift2 pdata ,pdata 
+0x5d76 016303 rtn blank 
+0x5d77 016304 branch delay 
+:      016305 module_set_mcu_wake_pin_high:
+0x5d78 016307 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d79 016308 branch gpio_out_active 
+:      016309 module_check_mcu_wake_pin_high:
+0x5d7a 016310 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7b 016311 branch gpio_check_active 
+:      016312 module_set_mcu_wake_pin_low:
+0x5d7c 016313 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7d 016314 branch gpio_out_inactive 
+:      016317 delay:
+0x5d7e 016318 increase -1 ,pdata 
+0x5d7f 016319 nbranch delay ,blank 
+0x5d80 016320 rtn 
+:      016330 module_le_receive_data:
+0x5d81 016331 copy rega ,pdata 
+0x5d82 016332 store 2 ,mem_module_le_rx_data_address 
+0x5d83 016333 copy regb ,pdata 
+0x5d84 016334 store 1 ,mem_module_le_rx_data_len 
+0x5d85 016335 fetch 2 ,mem_le_att_handle 
+0x5d86 016336 fetcht 2 ,mem_module_data_write_handle 
+0x5d87 016337 isub temp ,null 
+0x5d88 016338 branch module_le_receive_data_ok ,zero 
+0x5d89 016339 fetcht 2 ,mem_module_data_write_handle2 
+0x5d8a 016340 isub temp ,null 
+0x5d8b 016341 nrtn zero 
+:      016342 module_le_receive_data_ok:
+0x5d8c 016343 store 2 ,mem_module_le_rx_data_handle 
+0x5d8d 016344 branch module_set_le_rx_data_flag 
+:      016347 module_le_transmit:
+0x5d8e 016348 fetch 1 ,mem_module_flag 
+0x5d8f 016349 bbit1 module_flag_ble_send_data ,module_hci_event_send_le_data 
+:      016350 module_le_transmit1:
+0x5d90 016351 fetch 1 ,mem_module_flag 
+0x5d91 016352 rtnbit0 module_flag_ble_received_data 
+0x5d92 016353 call module_hci_event_receive_le_data 
+0x5d93 016354 branch module_clear_le_rx_data_flag 
+:      016356 module_hci_event_send_le_data:
+0x5d94 016357 jam hci_cmd_le_data_req ,mem_uart_opcode 
+0x5d95 016358 call module_hci_event_receive_valid_cmd 
+0x5d96 016359 call module_clear_le_tx_data_flag 
+0x5d97 016360 branch module_le_transmit1 
+:      016363 module_set_le_rx_data_flag:
+0x5d98 016364 fetch 1 ,mem_module_flag 
+0x5d99 016365 set1 module_flag_ble_received_data ,pdata 
+:      016366 module_store_moule_flag:
+0x5d9a 016367 store 1 ,mem_module_flag 
+0x5d9b 016368 rtn 
+:      016370 module_clear_le_rx_data_flag:
+0x5d9c 016371 fetch 1 ,mem_module_flag 
+0x5d9d 016372 set0 module_flag_ble_received_data ,pdata 
+0x5d9e 016373 branch module_store_moule_flag 
+:      016378 module_exit_sniff:
+0x5d9f 016379 fetch 1 ,mem_module_task 
+0x5da0 016380 rtnbit1 moudle_task_unsinff 
+0x5da1 016381 call module_set_unsniff_task_flag 
+0x5da2 016382 branch app_bt_sniff_exit 
+:      016387 module_bb_event_timer:
+0x5da3 016388 storet 1 ,mem_app_evt_timer_count 
+:      016389 module_bb_event_100ms_loop:
+0x5da4 016390 fetch 1 ,mem_app_evt_timer_count 
+0x5da5 016391 rtn blank 
+0x5da6 016392 increase -1 ,pdata 
+0x5da7 016393 store 1 ,mem_app_evt_timer_count 
+0x5da8 016394 set1 mark_ext_patch ,mark 
+0x5da9 016395 bpatch patch2d_0 ,mem_patch2d 
+0x5daa 016396 call module_read_vdd_timer 
+0x5dab 016397 branch module_bb_event_100ms_loop 
+:      016399 module_read_vdd_timer:
+0x5dac 016400 fetch 1 ,mem_module_read_vdd_flag 
+0x5dad 016401 rtn blank 
+0x5dae 016402 fetch 1 ,mem_module_read_vdd_count 
+0x5daf 016403 rtn blank 
+0x5db0 016404 increase -1 ,pdata 
+0x5db1 016405 store 1 ,mem_module_read_vdd_count 
+0x5db2 016406 nrtn blank 
+0x5db3 016407 jam flag_module_read_vdd_count ,mem_module_read_vdd_count 
+0x5db4 016408 call adc_set_mode 
+0x5db5 016409 call vdd_calculate_by_mode 
+0x5db6 016410 div pdata ,0x64 
+0x5db7 016411 call wait_div_end 
+0x5db8 016412 quotient pdata 
+0x5db9 016413 remainder temp 
+0x5dba 016414 store 1 ,mem_module_vdd_quotient 
+0x5dbb 016415 storet 1 ,mem_module_vdd_remainder 
+0x5dbc 016416 rtn 
+:      016420 module_set_unsniff_task_flag:
+0x5dbd 016421 fetch 1 ,mem_module_task 
+0x5dbe 016422 set1 moudle_task_unsinff ,pdata 
+0x5dbf 016423 store 1 ,mem_module_task 
+0x5dc0 016424 rtn 
+:      016426 module_clear_unsniff_task_flag:
+0x5dc1 016427 fetch 1 ,mem_module_task 
+0x5dc2 016428 set0 moudle_task_unsinff ,pdata 
+0x5dc3 016429 store 1 ,mem_module_task 
+0x5dc4 016430 rtn 
+:      016432 module_control_air_flow:
+0x5dc5 016433 set1 mark_ext_patch ,mark 
+0x5dc6 016434 bpatch patch2d_1 ,mem_patch2d 
+0x5dc7 016435 call check_uart_tx_buff 
+0x5dc8 016436 branch app_l2cap_flow_control_enable ,positive 
+0x5dc9 016437 branch app_l2cap_flow_control_disable 
+:      016444 mouse_init:
+0x5dca 016445 set1 mark_ext_patch ,mark 
+0x5dcb 016446 bpatch patch2d_2 ,mem_patch2d 
+0x5dcc 016447 setarg le_mouse 
+0x5dcd 016448 store 2 ,mem_cb_le_process 
+0x5dce 016449 setarg mouse_send_process 
+0x5dcf 016450 store 2 ,mem_cb_bt_process 
+0x5dd0 016451 setarg mouse_process_lpm_before 
+0x5dd1 016452 store 2 ,mem_cb_before_lpm 
+0x5dd2 016453 setarg mouse_priority_bb_event 
+0x5dd3 016454 store 2 ,mem_cb_bb_event_process 
+0x5dd4 016455 setarg mouse_idle 
+0x5dd5 016456 store 2 ,mem_cb_idle_process 
+0x5dd6 016457 setarg mouse_le_notify_update_data 
+0x5dd7 016458 store 2 ,mem_cb_update_notify_value 
+0x5dd8 016459 jam 0 ,mem_sp_flag 
+0x5dd9 016460 jam 0 ,mem_master_sp_flag 
+0x5dda 016461 set1 mark_ext_patch ,mark 
+0x5ddb 016462 bpatch patch2d_3 ,mem_patch2d 
+0x5ddc 016463 call mouse_init_common 
+0x5ddd 016464 rtn wake 
+0x5dde 016465 call mouse_init_environment 
+0x5ddf 016466 call mouse_dpi_init 
+0x5de0 016467 setarg mouse_before_hibernate 
+0x5de1 016468 store 2 ,mem_cb_before_hibernate 
+0x5de2 016469 fetch 2 ,mem_ui_state_map 
+0x5de3 016470 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5de4 016471 branch mouse_check_reconn_target 
+:      016473 mouse_init_environment:
+0x5de5 016474 call app_initflag_check 
+0x5de6 016475 branch mouse_load_eeprom_param ,zero 
+0x5de7 016476 call eeprom_store_le_local_addr 
+0x5de8 016477 call eeprom_store_mouse_dpi 
+0x5de9 016478 branch app_initflag_store 
+:      016479 mouse_load_eeprom_param:
+0x5dea 016480 call eeprom_load_reconn_info 
+0x5deb 016481 call eeprom_load_le_loacal_addr 
+0x5dec 016482 branch eeprom_load_mouse_dpi 
+:      016484 mouse_dpi_init:
+0x5ded 016485 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dee 016486 branch mouse_modified_dpi 
+:      016488 mouse_idle:
+0x5def 016489 call ui_check_paring_button 
+0x5df0 016490 call mouse_check_dpi 
+0x5df1 016491 branch mouse_wheel_check 
+:      016493 mouse_check_dpi:
+0x5df2 016494 fetcht 1 ,mem_dpi_button_gpio 
+0x5df3 016495 call gpio_get_bit 
+0x5df4 016496 nbranch mouse_dpi_up ,true 
+:      016497 mouse_dpi_down:
+0x5df5 016498 fetch 1 ,mem_mouse_dpi_button_state 
+0x5df6 016499 rtneq dpi_button_state_down 
+0x5df7 016500 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+0x5df8 016501 rtn 
+:      016502 mouse_dpi_up:
+0x5df9 016503 fetch 1 ,mem_mouse_dpi_button_state 
+0x5dfa 016504 rtneq dpi_button_state_up 
+0x5dfb 016505 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dfc 016506 fetch 1 ,mem_mouse_dpi 
+0x5dfd 016507 increase 1 ,pdata 
+0x5dfe 016508 and pdata ,0x03 ,pdata 
+0x5dff 016509 store 1 ,mem_mouse_dpi 
+0x5e00 016510 branch mouse_modified_dpi 
+:      016511 mouse_modified_dpi:
+0x5e01 016512 setarg mouse_dpi_address 
+0x5e02 016513 call twspi_read 
+0x5e03 016514 and pdata ,0xfc ,temp 
+0x5e04 016515 fetch 1 ,mem_mouse_dpi 
+0x5e05 016516 iadd temp ,pdata 
+0x5e06 016517 lshift8 pdata ,pdata 
+0x5e07 016518 add pdata ,mouse_dpi_address ,pdata 
+0x5e08 016519 call twspi_write 
+0x5e09 016520 branch eeprom_store_mouse_dpi 
+:      016522 mouse_init_common:
+0x5e0a 016523 call mouse_init_sunt 
+0x5e0b 016524 call mouse_gpio_init 
+0x5e0c 016525 hfetch 2 ,core_clkoff 
+0x5e0d 016526 set0 clock_off_qdecoder ,pdata 
+0x5e0e 016527 hstore 2 ,core_clkoff 
+0x5e0f 016528 rtn 
+:      016530 mouse_gpio_init:
+0x5e10 016531 rtn wake 
+0x5e11 016532 call lpm_disable_exen_output 
+0x5e12 016533 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e13 016534 call gpio_config_input 
+0x5e14 016535 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e15 016536 call gpio_config_input 
+0x5e16 016537 fetcht 1 ,mem_lbutton_gpio 
+0x5e17 016538 call gpio_config_input 
+0x5e18 016539 fetcht 1 ,mem_rbutton_gpio 
+0x5e19 016540 call gpio_config_input 
+0x5e1a 016541 fetcht 1 ,mem_mbutton_gpio 
+0x5e1b 016542 call gpio_config_input 
+0x5e1c 016543 fetcht 1 ,mem_sbutton1_gpio 
+0x5e1d 016544 call gpio_config_input 
+0x5e1e 016545 fetcht 1 ,mem_sbutton2_gpio 
+0x5e1f 016546 call gpio_config_input 
+0x5e20 016547 fetcht 1 ,mem_sensor_data_gpio 
+0x5e21 016548 call gpio_config_input 
+0x5e22 016549 fetcht 1 ,mem_dpi_button_gpio 
+0x5e23 016550 branch gpio_config_input 
+:      016553 mouse_before_hibernate:
+0x5e24 016554 setarg 0xbc05 
+0x5e25 016555 call twspi_write 
+0x5e26 016556 jam 1 ,mem_lpm_current_mult 
+:      016558 mouse_process_lpm_before:
+0x5e27 016559 call mouse_wheel_check 
+0x5e28 016560 arg 25 ,temp 
+0x5e29 016561 call gpio_config_output 
+0x5e2a 016562 hjam 0 ,core_gpio_sel1 
+0x5e2b 016563 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e2c 016564 call gpio_set_wake_by_current_state 
+0x5e2d 016565 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e2e 016566 call gpio_set_wake_by_current_state 
+0x5e2f 016567 fetcht 1 ,mem_lbutton_gpio 
+0x5e30 016568 call gpio_set_wake_by_current_state 
+0x5e31 016569 fetcht 1 ,mem_rbutton_gpio 
+0x5e32 016570 call gpio_set_wake_by_current_state 
+0x5e33 016571 fetcht 1 ,mem_mbutton_gpio 
+0x5e34 016572 call gpio_set_wake_by_current_state 
+0x5e35 016573 fetcht 1 ,mem_sbutton1_gpio 
+0x5e36 016574 call gpio_set_wake_by_current_state 
+0x5e37 016575 fetcht 1 ,mem_sbutton2_gpio 
+0x5e38 016576 call gpio_set_wake_by_current_state 
+0x5e39 016577 fetcht 1 ,mem_sensor_data_gpio 
+0x5e3a 016578 call gpio_set_wake 
+0x5e3b 016579 fetch 1 ,mem_lpm_current_mult 
+0x5e3c 016580 nrtn blank 
+0x5e3d 016581 branch gpio_clr_wake 
+:      016583 mouse_wheel_check:
+0x5e3e 016584 set1 mark_ext_patch ,mark 
+0x5e3f 016585 bpatch patch2d_4 ,mem_patch2d 
+0x5e40 016586 call mouse_t_wheel_scan 
+0x5e41 016587 call mouse_wheel_scan 
+0x5e42 016588 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e43 016589 fetcht 1 ,mem_wheel_tb_old_pinlevel 
+0x5e44 016590 store 1 ,mem_wheel_tb_old_pinlevel 
+0x5e45 016591 isub temp ,null 
+0x5e46 016592 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e47 016593 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5e48 016594 fetcht 1 ,mem_mwheel_b_old_pinlevel 
+0x5e49 016595 store 1 ,mem_mwheel_b_old_pinlevel 
+0x5e4a 016596 isub temp ,null 
+0x5e4b 016597 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e4c 016598 rtn 
+:      016599 mouse_t_wheel_scan:
+0x5e4d 016600 arg 0 ,rega 
+0x5e4e 016601 fetcht 1 ,mem_whee_ta_data_gpio 
+0x5e4f 016602 call gpio_get_bit 
+0x5e50 016603 setflag true ,0 ,rega 
+0x5e51 016604 fetcht 1 ,mem_whee_tb_data_gpio 
+0x5e52 016605 call gpio_get_bit 
+0x5e53 016606 setflag true ,1 ,rega 
+0x5e54 016607 copy rega ,pdata 
+0x5e55 016608 store 1 ,mem_wheel_tb_new_pinlevel 
+0x5e56 016609 beq 0x01 ,p_mouse_t_wheel_scan_judge1 
+0x5e57 016610 beq 0x02 ,p_mouse_t_wheel_scan_judge2 
+0x5e58 016611 fetch 1 ,mem_wheel_tog 
+0x5e59 016612 bbit1 7 ,p_mouse_t_wheel_scan_judge3 
+0x5e5a 016613 rtn 
+:      016615 p_mouse_t_wheel_scan_judge1:
+0x5e5b 016616 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e5c 016617 beq 0 ,p_mouse_t_wheel_scan_judge11 
+0x5e5d 016618 beq 3 ,p_mouse_t_wheel_scan_judge12 
+0x5e5e 016619 rtn 
+:      016620 p_mouse_t_wheel_scan_judge2:
+0x5e5f 016621 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e60 016622 beq 0 ,p_mouse_t_wheel_scan_judge21 
+0x5e61 016623 beq 3 ,p_mouse_t_wheel_scan_judge22 
+0x5e62 016624 rtn 
+:      016625 p_mouse_t_wheel_scan_judge11:
+0x5e63 016626 jam 0x82 ,mem_wheel_tog 
+0x5e64 016627 rtn 
+:      016628 p_mouse_t_wheel_scan_judge12:
+0x5e65 016629 jam 0x81 ,mem_wheel_tog 
+0x5e66 016630 rtn 
+:      016631 p_mouse_t_wheel_scan_judge21:
+0x5e67 016632 jam 0x80 ,mem_wheel_tog 
+0x5e68 016633 rtn 
+:      016634 p_mouse_t_wheel_scan_judge22:
+0x5e69 016635 jam 0x83 ,mem_wheel_tog 
+0x5e6a 016636 rtn 
+:      016637 p_mouse_t_wheel_scan_judge3:
+0x5e6b 016638 fetch 1 ,mem_wheel_tog 
+0x5e6c 016639 set0 7 ,pdata 
+0x5e6d 016640 store 1 ,mem_wheel_tog 
+0x5e6e 016641 fetch 1 ,mem_wheel_tog 
+0x5e6f 016642 beq 0 ,p_mouse_t_wheel_scan_judge30 
+0x5e70 016643 beq 1 ,p_mouse_t_wheel_scan_judge31 
+0x5e71 016644 beq 2 ,p_mouse_t_wheel_scan_judge32 
+0x5e72 016645 beq 3 ,p_mouse_t_wheel_scan_judge33 
+0x5e73 016646 rtn 
+:      016647 p_mouse_t_wheel_scan_judge30:
+0x5e74 016648 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e75 016649 beq 3 ,p_mouse_wheel_t_forward 
+0x5e76 016650 rtn 
+:      016651 p_mouse_t_wheel_scan_judge31:
+0x5e77 016652 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e78 016653 beq 0 ,p_mouse_wheel_t_forward 
+0x5e79 016654 rtn 
+:      016655 p_mouse_t_wheel_scan_judge32:
+0x5e7a 016656 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7b 016657 beq 3 ,p_mouse_wheel_t_back 
+0x5e7c 016658 rtn 
+:      016659 p_mouse_t_wheel_scan_judge33:
+0x5e7d 016660 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7e 016661 beq 0 ,p_mouse_wheel_t_back 
+0x5e7f 016662 rtn 
+:      016663 p_mouse_wheel_t_forward:
+0x5e80 016664 fetch 1 ,mem_mouse_tz_data_count1 
+0x5e81 016665 increase 1 ,pdata 
+0x5e82 016666 store 1 ,mem_mouse_tz_data_count1 
+0x5e83 016667 sub pdata ,1 ,null 
+0x5e84 016668 rtn positive 
+0x5e85 016669 jam 0 ,mem_mouse_tz_data_count1 
+0x5e86 016670 fetch 1 ,mem_mouse_tz_data 
+0x5e87 016671 increase 1 ,pdata 
+0x5e88 016672 store 1 ,mem_mouse_tz_data 
+0x5e89 016673 rtn 
+:      016674 p_mouse_wheel_t_back:
+0x5e8a 016675 fetch 1 ,mem_mouse_tz_data_count 
+0x5e8b 016676 increase 1 ,pdata 
+0x5e8c 016677 store 1 ,mem_mouse_tz_data_count 
+0x5e8d 016678 sub pdata ,1 ,null 
+0x5e8e 016679 rtn positive 
+0x5e8f 016680 jam 0 ,mem_mouse_tz_data_count 
+0x5e90 016681 fetch 1 ,mem_mouse_tz_data 
+0x5e91 016682 increase -1 ,pdata 
+0x5e92 016683 store 1 ,mem_mouse_tz_data 
+0x5e93 016684 rtn 
+:      016687 mouse_wheel_scan:
+0x5e94 016688 arg 0 ,rega 
+0x5e95 016689 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e96 016690 call gpio_get_bit 
+0x5e97 016691 setflag true ,0 ,rega 
+0x5e98 016692 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e99 016693 call gpio_get_bit 
+0x5e9a 016694 setflag true ,1 ,rega 
+0x5e9b 016695 copy rega ,pdata 
+0x5e9c 016696 store 1 ,mem_mwheel_b_new_pinlevel 
+0x5e9d 016697 beq 0x01 ,mouse_wheel_scan_judge1 
+0x5e9e 016698 beq 0x02 ,mouse_wheel_scan_judge2 
+0x5e9f 016699 fetch 1 ,mem_mwheel_tog 
+0x5ea0 016700 bbit1 7 ,mouse_wheel_scan_judge3 
+0x5ea1 016701 rtn 
+:      016703 mouse_wheel_scan_judge1:
+0x5ea2 016704 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea3 016705 beq 0 ,mouse_wheel_scan_judge11 
+0x5ea4 016706 beq 3 ,mouse_wheel_scan_judge12 
+0x5ea5 016707 rtn 
+:      016708 mouse_wheel_scan_judge2:
+0x5ea6 016709 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea7 016710 beq 0 ,mouse_wheel_scan_judge21 
+0x5ea8 016711 beq 3 ,mouse_wheel_scan_judge22 
+0x5ea9 016712 rtn 
+:      016713 mouse_wheel_scan_judge11:
+0x5eaa 016714 jam 0x82 ,mem_mwheel_tog 
+0x5eab 016715 rtn 
+:      016716 mouse_wheel_scan_judge12:
+0x5eac 016717 jam 0x81 ,mem_mwheel_tog 
+0x5ead 016718 rtn 
+:      016719 mouse_wheel_scan_judge21:
+0x5eae 016720 jam 0x80 ,mem_mwheel_tog 
+0x5eaf 016721 rtn 
+:      016722 mouse_wheel_scan_judge22:
+0x5eb0 016723 jam 0x83 ,mem_mwheel_tog 
+0x5eb1 016724 rtn 
+:      016725 mouse_wheel_scan_judge3:
+0x5eb2 016726 fetch 1 ,mem_mwheel_tog 
+0x5eb3 016727 set0 7 ,pdata 
+0x5eb4 016728 store 1 ,mem_mwheel_tog 
+0x5eb5 016729 fetch 1 ,mem_mwheel_tog 
+0x5eb6 016730 beq 0 ,mouse_wheel_scan_judge30 
+0x5eb7 016731 beq 1 ,mouse_wheel_scan_judge31 
+0x5eb8 016732 beq 2 ,mouse_wheel_scan_judge32 
+0x5eb9 016733 beq 3 ,mouse_wheel_scan_judge33 
+0x5eba 016734 rtn 
+:      016735 mouse_wheel_scan_judge30:
+0x5ebb 016736 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebc 016737 beq 3 ,mouse_wheel_forward 
+0x5ebd 016738 rtn 
+:      016739 mouse_wheel_scan_judge31:
+0x5ebe 016740 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebf 016741 beq 0 ,mouse_wheel_forward 
+0x5ec0 016742 rtn 
+:      016743 mouse_wheel_scan_judge32:
+0x5ec1 016744 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec2 016745 beq 3 ,mouse_wheel_back 
+0x5ec3 016746 rtn 
+:      016747 mouse_wheel_scan_judge33:
+0x5ec4 016748 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec5 016749 beq 0 ,mouse_wheel_back 
+0x5ec6 016750 rtn 
+:      016751 mouse_wheel_forward:
+0x5ec7 016752 fetch 1 ,mem_mouse_z_data_count1 
+0x5ec8 016753 increase 1 ,pdata 
+0x5ec9 016754 store 1 ,mem_mouse_z_data_count1 
+0x5eca 016755 sub pdata ,1 ,null 
+0x5ecb 016756 rtn positive 
+0x5ecc 016757 jam 0 ,mem_mouse_z_data_count1 
+0x5ecd 016758 fetch 1 ,mem_mouse_z_data 
+0x5ece 016759 increase 1 ,pdata 
+0x5ecf 016760 store 1 ,mem_mouse_z_data 
+0x5ed0 016761 rtn 
+:      016762 mouse_wheel_back:
+0x5ed1 016763 fetch 1 ,mem_mouse_z_data_count 
+0x5ed2 016764 increase 1 ,pdata 
+0x5ed3 016765 store 1 ,mem_mouse_z_data_count 
+0x5ed4 016766 sub pdata ,1 ,null 
+0x5ed5 016767 rtn positive 
+0x5ed6 016768 jam 0 ,mem_mouse_z_data_count 
+0x5ed7 016769 fetch 1 ,mem_mouse_z_data 
+0x5ed8 016770 increase -1 ,pdata 
+0x5ed9 016771 store 1 ,mem_mouse_z_data 
+0x5eda 016772 rtn 
+:      016775 le_mouse_bb_event_write_request:
+0x5edb 016776 call app_ble_store_reconn_info 
+0x5edc 016777 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+0x5edd 016778 call app_lpm_mult_enable 
+:      016779 le_mouse_bb_event_enc_info:
+0x5ede 016780 branch app_ble_start_write 
+:      016783 mouse_hid_connected:
+0x5edf 016784 setarg hid_handshake_timeout 
+0x5ee0 016785 store 1 ,mem_hid_handshake_timer_count 
+0x5ee1 016786 rtn 
+:      016788 mouse_send_process:
+0x5ee2 016789 fetch 1 ,mem_app_handshake_flag 
+0x5ee3 016790 rtn blank 
+0x5ee4 016791 call l2cap_malloc_is_fifo_nearly_full 
+0x5ee5 016792 nrtn blank 
+0x5ee6 016793 call mouse_motion 
+0x5ee7 016794 nrtn user 
+0x5ee8 016795 call mouse_no_data_timer_init 
+:      016796 mouse_send_data:
+0x5ee9 016797 arg 9 ,rega 
+0x5eea 016798 call hid_malloc_tx_buff 
+0x5eeb 016799 fetch 2 ,mem_hid_int_remote_cid 
+0x5eec 016800 istore 2 ,contw 
+0x5eed 016801 setarg 0x02a1 
+0x5eee 016802 istore 2 ,contw 
+0x5eef 016803 fetch 7 ,mem_mouse_key 
+0x5ef0 016804 istore 7 ,contw 
+0x5ef1 016805 rtn 
+:      016806 bt_send_empty_data:
+0x5ef2 016807 setarg 0 
+0x5ef3 016808 store 6 ,mem_mouse_x 
+0x5ef4 016809 store 1 ,mem_mouse_tz 
+0x5ef5 016810 branch mouse_send_data 
+:      016811 p_le_send_empty_data:
+0x5ef6 016812 setarg 0 
+0x5ef7 016813 store 6 ,mem_mouse_x 
+0x5ef8 016814 store 1 ,mem_mouse_tz 
+0x5ef9 016815 branch mouse_fill_data_le 
+:      016817 mouse_no_data_timer_init:
+0x5efa 016818 fetch 2 ,mem_mouse_no_data_timeout 
+0x5efb 016819 store 2 ,mem_mouse_no_data_timer 
+0x5efc 016820 rtn 
+:      016823 mouse_le_notify_update_data:
+0x5efd 016824 fetcht 2 ,mem_le_notify_handle 
+0x5efe 016825 call le_att_get_handle_ptr 
+0x5eff 016826 ifetch 1 ,contr 
+0x5f00 016827 store 1 ,mem_le_notify_len 
+0x5f01 016828 arg mem_le_l2cap ,contw 
+0x5f02 016829 increase 1 ,contw 
+0x5f03 016830 fetcht 2 ,mem_le_notify_handle 
+0x5f04 016831 istoret 2 ,contw 
+0x5f05 016832 call le_att_get_handle_ptr 
+0x5f06 016833 ifetch 1 ,contr 
+0x5f07 016834 icopy loopcnt 
+0x5f08 016835 call memcpy 
+0x5f09 016836 fetcht 1 ,mem_le_notify_len 
+0x5f0a 016837 increase 7 ,temp 
+0x5f0b 016838 branch le_send_packet 
+:      016841 mouse_fill_data_le:
+0x5f0c 016842 set1 mark_ext_patch ,mark 
+0x5f0d 016843 bpatch patch2d_5 ,mem_patch2d 
+0x5f0e 016844 fetcht 2 ,mem_le_notify_handle 
+0x5f0f 016845 call le_att_get_handle_ptr 
+0x5f10 016846 add contr ,1 ,contw 
+:      016847 mouse_fill_data:
+0x5f11 016848 fetch 7 ,mem_mouse_key 
+0x5f12 016849 istore 7 ,contw 
+0x5f13 016850 rtn 
+:      016852 mouse_motion:
+0x5f14 016853 set1 mark_ext_patch ,mark 
+0x5f15 016854 bpatch patch2d_6 ,mem_patch2d 
+0x5f16 016855 disable user 
+0x5f17 016856 setarg 0 
+0x5f18 016857 store 6 ,mem_mouse_x 
+0x5f19 016858 call sensor_motion 
+0x5f1a 016859 call mouse_sensor_sdio_low 
+0x5f1b 016860 call mouse_zwheel 
+0x5f1c 016861 call mouse_t_zwheel 
+0x5f1d 016862 branch mouse_key 
+:      016864 sensor_motion:
+0x5f1e 016865 fetch 1 ,mem_mouse_move_flag 
+0x5f1f 016866 call mouse_read_sensor_common ,blank 
+0x5f20 016867 jam 1 ,mem_mouse_move_flag 
+0x5f21 016868 disable user 
+0x5f22 016869 fetcht 1 ,mem_sensor_data_gpio 
+0x5f23 016870 call gpio_get_bit 
+0x5f24 016871 nrtn true 
+0x5f25 016872 setarg 0 
+0x5f26 016873 call twspi_read 
+0x5f27 016875 setarg 2 
+0x5f28 016876 call twspi_read 
+0x5f29 016877 rtnbit0 7 
+0x5f2a 016878 setarg 3 
+0x5f2b 016879 call twspi_read 
+0x5f2c 016880 call extsign 
+0x5f2d 016881 store 2 ,mem_mouse_x 
+0x5f2e 016882 setarg 4 
+0x5f2f 016883 call twspi_read 
+0x5f30 016884 call extsign 
+0x5f31 016885 sub pdata ,0 ,pdata 
+0x5f32 016886 store 2 ,mem_mouse_y 
+0x5f33 016887 fetch 4 ,mem_mouse_x 
+0x5f34 016888 enable user 
+0x5f35 016889 rtn 
+:      016891 mouse_read_sensor3610_data:
+0x5f36 016892 call spi_ncs_enable 
+0x5f37 016893 call mouse_read_sensor_common 
+0x5f38 016894 arg 5 ,pdata 
+0x5f39 016895 call twspi_read 
+0x5f3a 016896 store 1 ,mem_mouse_xy_h 
+0x5f3b 016897 arg 7 ,pdata 
+0x5f3c 016898 call twspi_read 
+0x5f3d 016899 store 1 ,mem_sensor_shutter_hi 
+0x5f3e 016900 arg 8 ,pdata 
+0x5f3f 016901 call twspi_read 
+0x5f40 016902 store 1 ,mem_sensor_shutter_lo 
+0x5f41 016903 branch spi_ncs_disable 
+:      016906 mouse_3610_smart_enable:
+0x5f42 016907 fetch 1 ,mem_sensor_shutter_hi 
+0x5f43 016908 rtnne 0 
+0x5f44 016909 fetch 1 ,mem_sensor_shutter_lo 
+0x5f45 016910 sub pdata ,45 ,null 
+0x5f46 016911 rtn positive 
+0x5f47 016912 jam 0 ,mem_sensor_smart_flag 
+0x5f48 016913 setarg 0xba41 
+0x5f49 016914 call sensor_write 
+0x5f4a 016915 setarg 0x0032 
+0x5f4b 016916 call sensor_write 
+0x5f4c 016917 setarg 0xb541 
+0x5f4d 016918 branch sensor_write 
+:      016919 mouse_3610_smart_disable:
+0x5f4e 016920 fetch 1 ,mem_sensor_shutter_hi 
+0x5f4f 016921 rtnne 0 
+0x5f50 016922 fetch 1 ,mem_sensor_shutter_lo 
+0x5f51 016923 sub pdata ,45 ,null 
+0x5f52 016924 nrtn positive 
+0x5f53 016925 jam 1 ,mem_sensor_smart_flag 
+0x5f54 016926 setarg 0xba41 
+0x5f55 016927 call sensor_write 
+0x5f56 016928 setarg 0x8032 
+0x5f57 016929 call sensor_write 
+0x5f58 016930 setarg 0xb541 
+0x5f59 016931 branch sensor_write 
+:      016935 mouse_read_sensor_common:
+0x5f5a 016936 arg 3 ,pdata 
+0x5f5b 016937 call twspi_read 
+0x5f5c 016938 store 2 ,mem_mouse_x 
+0x5f5d 016939 arg 4 ,pdata 
+0x5f5e 016940 call twspi_read 
+0x5f5f 016941 store 2 ,mem_mouse_y 
+0x5f60 016942 rtn 
+:      016944 mouse_zwheel:
+0x5f61 016945 fetch 1 ,mem_mouse_z_data 
+0x5f62 016946 rtn blank 
+0x5f63 016947 store 1 ,mem_mouse_z 
+0x5f64 016948 jam 0 ,mem_mouse_z_data 
+0x5f65 016949 enable user 
+0x5f66 016950 rtn 
+:      016951 mouse_t_zwheel:
+0x5f67 016952 fetch 1 ,mem_mouse_tz_data 
+0x5f68 016953 rtn blank 
+0x5f69 016954 store 1 ,mem_mouse_tz 
+0x5f6a 016955 jam 0 ,mem_mouse_tz_data 
+0x5f6b 016956 enable user 
+0x5f6c 016957 rtn 
+:      016958 mouse_check_key_gpio:
+0x5f6d 016959 arg 0 ,rega 
+0x5f6e 016960 fetcht 1 ,mem_lbutton_gpio 
+0x5f6f 016961 call gpio_get_bit 
+0x5f70 016962 setflag true ,0 ,rega 
+0x5f71 016963 fetcht 1 ,mem_rbutton_gpio 
+0x5f72 016964 call gpio_get_bit 
+0x5f73 016965 setflag true ,1 ,rega 
+0x5f74 016966 fetcht 1 ,mem_mbutton_gpio 
+0x5f75 016967 call gpio_get_bit 
+0x5f76 016968 setflag true ,2 ,rega 
+0x5f77 016969 fetcht 1 ,mem_sbutton1_gpio 
+0x5f78 016970 call gpio_get_bit 
+0x5f79 016971 setflag true ,3 ,rega 
+0x5f7a 016972 fetcht 1 ,mem_sbutton2_gpio 
+0x5f7b 016973 call gpio_get_bit 
+0x5f7c 016974 setflag true ,4 ,rega 
+0x5f7d 016975 copy rega ,pdata 
+0x5f7e 016976 rtn 
+:      016977 mouse_key:
+0x5f7f 016978 call mouse_check_key_gpio 
+0x5f80 016979 fetcht 1 ,mem_mouse_key 
+0x5f81 016980 store 1 ,mem_mouse_key 
+0x5f82 016981 ixor temp ,pdata 
+0x5f83 016982 sub pdata ,0 ,null 
+0x5f84 016983 rtn zero 
+0x5f85 016984 enable user 
+0x5f86 016985 rtn 
+:      016990 mouse_sensor_sdio_low:
+0x5f87 016991 arg 26 ,temp 
+0x5f88 016992 call gpio_get_bit 
+0x5f89 016993 rtn true 
+0x5f8a 016994 setarg 0x0a 
+0x5f8b 016995 call twspi_read 
+0x5f8c 016996 nop 1000 
+0x5f8d 016997 branch mouse_sensor_sdio_low 
+:      016999 mouse_init_sunt:
+0x5f8e 017000 call spid_init 
+0x5f8f 017001 rtn wake 
+:      017002 mouse_init_p3204:
+0x5f90 017003 setarg 0 
+0x5f91 017004 call twspi_read 
+0x5f92 017005 store 1 ,mem_sensor_id 
+0x5f93 017006 beq p3204_id ,mouse_init_p3204_cont 
+0x5f94 017008 beq p3065_id ,mouse_init_p3204_cont 
+0x5f95 017009 call twspi_reset 
+0x5f96 017010 nop 1000 
+0x5f97 017011 branch mouse_init_p3204 
+:      017012 mouse_init_p3204_cont:
+0x5f98 017013 setarg 0x8006 
+0x5f99 017014 call twspi_write 
+0x5f9a 017015 nop 1000 
+0x5f9b 017016 rtn 
+:      017018 mouse_init_sensor_reset:
+0x5f9c 017019 fetcht 1 ,mem_sensor_reset_gpio 
+0x5f9d 017020 call gpio_out_active 
+0x5f9e 017021 call delay_10ms 
+0x5f9f 017022 fetcht 1 ,mem_sensor_reset_gpio 
+0x5fa0 017023 call gpio_out_inactive 
+0x5fa1 017024 branch delay_10ms 
+:      017026 mouse_init_p3610:
+0x5fa2 017027 setarg 0xba41 
+0x5fa3 017028 call sensor_write 
+0x5fa4 017029 setarg 0x0d11 
+0x5fa5 017030 call sensor_write 
+0x5fa6 017031 setarg 0x041b 
+0x5fa7 017032 call sensor_write 
+0x5fa8 017033 setarg 0x041c 
+0x5fa9 017034 call sensor_write 
+0x5faa 017035 setarg 0x0f1d 
+0x5fab 017036 call sensor_write 
+0x5fac 017037 setarg 0x0032 
+0x5fad 017038 call sensor_write 
+0x5fae 017039 setarg 0xb541 
+0x5faf 017040 branch sensor_write 
+:      017044 set_sensor_reg:
+0x5fb0 017045 setarg 0xba41 
+0x5fb1 017046 call sensor_write 
+0x5fb2 017047 nop 4000 
+0x5fb3 017048 setarg 0xff7f 
+0x5fb4 017049 call sensor_write 
+0x5fb5 017050 copy rega ,pdata 
+0x5fb6 017051 call sensor_write 
+0x5fb7 017052 setarg 0x007f 
+0x5fb8 017053 call sensor_write 
+0x5fb9 017054 setarg 0xb541 
+0x5fba 017055 branch sensor_write 
+:      017057 extsign:
+0x5fbb 017058 rtnbit0 7 
+0x5fbc 017059 arg 0xff00 ,temp 
+0x5fbd 017060 ior temp ,pdata 
+0x5fbe 017061 rtn 
+:      017063 extsign_bit3:
+0x5fbf 017064 rtnbit0 3 
+0x5fc0 017065 arg 0xf0 ,temp 
+0x5fc1 017066 ior temp ,pdata 
+0x5fc2 017067 rtn 
+:      017069 le_mouse:
+0x5fc3 017070 call le_xtype_fifo_is_near_full 
+0x5fc4 017071 nrtn blank 
+0x5fc5 017072 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fc6 017073 store 1 ,mem_le_notify_handle 
+0x5fc7 017074 fetcht 2 ,mem_le_notify_handle 
+0x5fc8 017075 call le_att_check_notification_enable 
+0x5fc9 017076 rtnbit0 0 
+0x5fca 017077 fetch 1 ,mem_le_switch_send_data 
+0x5fcb 017078 rtnbit0 0 
+0x5fcc 017079 call mouse_motion 
+0x5fcd 017080 nrtn user 
+0x5fce 017081 call mouse_no_data_timer_init 
+0x5fcf 017082 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fd0 017083 store 1 ,mem_le_notify_handle 
+0x5fd1 017084 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5fd2 017085 call le_xtype_fifo_in 
+0x5fd3 017086 branch mouse_fill_data_le 
+:      017088 mouse_priority_bb_event:
+0x5fd4 017089 copy regc ,pdata 
+0x5fd5 017090 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+0x5fd6 017091 beq bt_evt_bb_connected ,mouse_stop_discovery 
+0x5fd7 017092 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+0x5fd8 017093 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+0x5fd9 017094 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+0x5fda 017095 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+0x5fdb 017096 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+0x5fdc 017097 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x5fdd 017098 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+0x5fde 017099 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+0x5fdf 017100 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+0x5fe0 017101 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+0x5fe1 017102 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+0x5fe2 017103 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x5fe3 017104 and pdata ,0x0f ,temp 
+0x5fe4 017105 and_into bt_evt_timer_mask ,pdata 
+0x5fe5 017106 beq bt_evt_timer_init ,mouse_bb_event_timer 
+0x5fe6 017107 rtn 
+:      017109 le_mouse_bb_event_connected:
+0x5fe7 017110 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fe8 017111 set0 app_disc_by_button ,pdata 
+0x5fe9 017112 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fea 017113 setarg 0 
+0x5feb 017114 store 2 ,mem_mouse_direct_timer 
+0x5fec 017115 call mouse_no_data_timer_init 
+0x5fed 017116 branch mouse_stop_discovery 
+:      017118 mouse_bb_event_pincode:
+0x5fee 017119 call pincode_reinit 
+0x5fef 017120 branch app_bt_set_pincode 
+:      017122 mouse_bb_event_reconn_failed:
+0x5ff0 017123 fetch 2 ,mem_ui_state_map 
+0x5ff1 017124 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5ff2 017125 branch app_bb_hibernate 
+:      017128 mouse_bt_hid_connected:
+0x5ff3 017129 call mouse_hid_connected 
+0x5ff4 017130 rtn 
+:      017131 mouse_bt_event_setup_complete:
+0x5ff5 017132 rtn 
+:      017134 mouse_bb_disconnected:
+0x5ff6 017135 set1 mark_ext_patch ,mark 
+0x5ff7 017136 bpatch patch2d_7 ,mem_patch2d 
+0x5ff8 017137 call mouse_bb_discon_clear_stack 
+0x5ff9 017138 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x5ffa 017139 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+0x5ffb 017140 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x5ffc 017141 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+0x5ffd 017142 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+0x5ffe 017143 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x5fff 017144 branch mouse_start_discovery 
+:      017145 mouse_bb_discon_clear_stack:
+0x6000 017146 setarg 0 
+0x6001 017147 store 8 ,mem_whee_ta_data_gpio 
+0x6002 017148 istore 8 ,contw 
+0x6003 017149 jam 0 ,mem_mouse_send_blank_timer 
+0x6004 017150 jam 0 ,mem_mouse_move_flag 
+0x6005 017151 jam app_handshake_null ,mem_app_handshake_flag 
+0x6006 017152 jam 0 ,mem_ltk_exists 
+0x6007 017153 jam 0 ,mem_mouse_mode_state 
+0x6008 017154 jam 0 ,mem_reconnect_timeout 
+0x6009 017155 rtn 
+:      017157 mouse_event_light_state_pairing:
+0x600a 017158 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+0x600b 017159 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x600c 017160 branch mouse_start_discovery 
+:      017161 mouse_event_light_state_hibernate:
+0x600d 017162 fetch 2 ,mem_ui_state_map 
+0x600e 017163 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x600f 017164 branch app_bb_hibernate 
+:      017166 mouse4_0_event_bb_disconn:
+0x6010 017167 call le_clean_att_list_handle_enable 
+0x6011 017168 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x6012 017169 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x6013 017170 branch app_bb_hibernate 
+:      017172 mouse_bb_event_timer:
+0x6014 017173 set1 mark_ext_patch ,mark 
+0x6015 017174 bpatch patch2e_0 ,mem_patch2e 
+0x6016 017175 storet 1 ,mem_app_evt_timer_count 
+:      017176 mouse_bb_event_100ms_loop:
+0x6017 017177 fetch 1 ,mem_app_evt_timer_count 
+0x6018 017178 rtn blank 
+0x6019 017179 increase -1 ,pdata 
+0x601a 017180 store 1 ,mem_app_evt_timer_count 
+0x601b 017181 call mouse_check_hid_handshake_timer 
+0x601c 017182 call mouse_check_discovery_timeout_timer 
+0x601d 017183 call mouse_check_direct_timeout_timer 
+0x601e 017184 call mouse_check_no_data_timeout_timer 
+0x601f 017185 call mouse_check_mouse_state_timer 
+0x6020 017186 branch mouse_bb_event_100ms_loop 
+:      017188 mouse_check_mouse_state_timer:
+0x6021 017189 fetch 1 ,mem_mouse_statue_led_timer 
+0x6022 017190 rtn blank 
+0x6023 017191 pincrease -1 
+0x6024 017192 store 1 ,mem_mouse_statue_led_timer 
+0x6025 017193 nrtn blank 
+0x6026 017194 branch mouse_devce_led_off 
+:      017197 mouse_check_hid_handshake_timer:
+0x6027 017198 fetch 1 ,mem_hid_handshake_timer_count 
+0x6028 017199 rtn blank 
+0x6029 017200 increase -1 ,pdata 
+0x602a 017201 store 1 ,mem_hid_handshake_timer_count 
+0x602b 017202 nrtn blank 
+0x602c 017203 branch mouse_bt_hid_handshake 
+:      017205 mouse_check_discovery_timeout_timer:
+0x602d 017206 fetch 2 ,mem_mouse_discovery_timer 
+0x602e 017207 rtn blank 
+0x602f 017208 increase -1 ,pdata 
+0x6030 017209 store 2 ,mem_mouse_discovery_timer 
+0x6031 017210 nrtn blank 
+0x6032 017211 call mouse_stop_discovery 
+0x6033 017212 branch app_enter_hibernate 
+:      017214 mouse_check_direct_timeout_timer:
+0x6034 017215 fetch 2 ,mem_mouse_direct_timer 
+0x6035 017216 rtn blank 
+0x6036 017217 increase -1 ,pdata 
+0x6037 017218 store 2 ,mem_mouse_direct_timer 
+0x6038 017219 nrtn blank 
+0x6039 017220 call app_ble_stop_direct_adv 
+0x603a 017221 branch app_enter_hibernate 
+:      017223 mouse_check_blank_data_timeout_timer:
+0x603b 017224 fetch 2 ,mem_mouse_blank_data_timer 
+0x603c 017225 rtn blank 
+0x603d 017226 increase -1 ,pdata 
+0x603e 017227 store 2 ,mem_mouse_blank_data_timer 
+0x603f 017228 nrtn blank 
+0x6040 017229 jam 0 ,mem_mouse_send_blank_timer 
+0x6041 017230 rtn 
+:      017232 mouse_check_no_data_timeout_timer:
+0x6042 017233 fetch 2 ,mem_mouse_no_data_timer 
+0x6043 017234 rtn blank 
+0x6044 017235 increase -1 ,pdata 
+0x6045 017236 store 2 ,mem_mouse_no_data_timer 
+0x6046 017237 nrtn blank 
+0x6047 017238 branch mouse_disconnect 
+:      017240 mouse_bb_event_discovery_btn:
+0x6048 017241 set1 mark_ext_patch ,mark 
+0x6049 017242 bpatch patch2e_1 ,mem_patch2e 
+0x604a 017243 jam 0 ,mem_mouse_send_blank_timer 
+0x604b 017244 jam 1 ,mem_reconnect_timeout 
+0x604c 017245 setarg 0 
+0x604d 017246 store 2 ,mem_mouse_direct_timer 
+0x604e 017247 call mouse_disconnect 
+0x604f 017248 fetch 1 ,mem_device_option 
+0x6050 017249 isolate1 mode_4_mouse ,pdata 
+0x6051 017250 call mouse4_0_bb_event_discovery_btn ,true 
+0x6052 017251 fetch 1 ,mem_device_option 
+0x6053 017252 isolate1 mode_3_mouse ,pdata 
+0x6054 017253 call mouse3_0_bb_event_discovery_btn ,true 
+0x6055 017254 call app_lpm_mult_disable 
+0x6056 017255 branch mouse_start_discovery 
+:      017259 mouse3_0_check_reconn_target:
+0x6057 017260 fetch 6 ,mem_hci_plap 
+0x6058 017261 branch app_bt_start_discovery_short ,blank 
+0x6059 017262 branch app_bt_start_reconnect 
+:      017264 mouse4_0_check_reconn_target:
+0x605a 017265 fetch 6 ,mem_hci_plap 
+0x605b 017266 branch mouse4_0_no_reconn_target ,blank 
+0x605c 017267 fetch 2 ,mem_mouse_direct_timeout 
+0x605d 017268 store 2 ,mem_mouse_direct_timer 
+0x605e 017269 call app_lpm_mult_enable 
+0x605f 017270 branch app_ble_start_direct_adv 
+:      017271 mouse4_0_no_reconn_target:
+0x6060 017272 call app_led_start_blink 
+0x6061 017273 branch app_ble_start_adv 
+:      017275 mouse3_0_bb_event_discovery_btn:
+0x6062 017276 fetch 2 ,mem_ui_state_map 
+0x6063 017277 isolate1 ui_state_bt_reconnect ,pdata 
+0x6064 017278 call app_bt_reconnect_cancel ,true 
+0x6065 017279 rtn 
+:      017280 mouse4_0_bb_event_discovery_btn:
+0x6066 017281 call le_clean_att_list_handle_enable 
+0x6067 017282 rtn 
+:      017284 mouse_bt_hid_handshake:
+0x6068 017285 jam app_handshake_done ,mem_app_handshake_flag 
+0x6069 017286 call app_lpm_mult_enable 
+0x606a 017287 call app_bt_store_reconn_info 
+0x606b 017288 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+0x606c 017289 setarg 0 
+0x606d 017290 store 2 ,mem_discovery_timeout_timer_count 
+0x606e 017291 store 1 ,mem_hid_handshake_timer_count 
+0x606f 017292 branch app_bt_enter_sniff 
+:      017294 mouse_check_reconn_target:
+0x6070 017295 fetch 1 ,mem_xrecord_mode 
+0x6071 017296 beq rec_3_mode ,mouse3_0_check_reconn_target 
+0x6072 017297 beq rec_4_mode ,mouse4_0_check_reconn_target 
+0x6073 017298 branch mouse_start_discovery 
+:      017300 mouse_start_discovery:
+0x6074 017301 set1 mark_ext_patch ,mark 
+0x6075 017302 bpatch patch2e_2 ,mem_patch2e 
+0x6076 017303 fetch 2 ,mem_ui_state_map 
+0x6077 017304 bbit1 ui_state_ble_adv ,mouse_start_discovery_norandom 
+0x6078 017305 random pdata 
+0x6079 017306 store 1 ,mem_le_lap + 1 
+:      017307 mouse_start_discovery_norandom:
+0x607a 017308 call app_lpm_mult_disable 
+0x607b 017309 fetch 2 ,mem_discovery_timeout 
+0x607c 017310 store 2 ,mem_mouse_discovery_timer 
+0x607d 017311 fetch 1 ,mem_device_option 
+0x607e 017312 isolate1 mode_4_mouse ,pdata 
+0x607f 017313 call app_ble_start_adv ,true 
+0x6080 017314 fetch 1 ,mem_device_option 
+0x6081 017315 isolate1 mode_3_mouse ,pdata 
+0x6082 017316 call app_bt_start_discovery ,true 
+0x6083 017317 branch app_led_start_blink 
+:      017319 mouse_stop_discovery:
+0x6084 017320 set1 mark_ext_patch ,mark 
+0x6085 017321 bpatch patch2e_3 ,mem_patch2e 
+0x6086 017322 setarg 0 
+0x6087 017323 store 2 ,mem_mouse_discovery_timer 
+0x6088 017324 fetch 1 ,mem_device_option 
+0x6089 017325 isolate1 mode_4_mouse ,pdata 
+0x608a 017326 call app_ble_stop_adv ,true 
+0x608b 017327 fetch 1 ,mem_device_option 
+0x608c 017328 isolate1 mode_3_mouse ,pdata 
+0x608d 017329 call app_bt_stop_discovery ,true 
+0x608e 017330 branch app_led_stop_blink 
+:      017332 mouse_disconnect:
+0x608f 017333 set1 mark_ext_patch ,mark 
+0x6090 017334 bpatch patch2e_4 ,mem_patch2e 
+0x6091 017335 setarg 0 
+0x6092 017336 store 2 ,mem_mouse_no_data_timer 
+0x6093 017337 fetch 2 ,mem_ui_state_map 
+0x6094 017338 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x6095 017339 fetch 2 ,mem_ui_state_map 
+0x6096 017340 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x6097 017341 rtn 
+:      017343 eeprom_store_mouse_dpi:
+0x6098 017344 set1 mark_ext_patch ,mark 
+0x6099 017345 bpatch patch2e_5 ,mem_patch2e 
+0x609a 017346 arg 1 ,temp 
+0x609b 017347 arg mem_mouse_dpi ,rega 
+0x609c 017348 arg mouse_dpi_eeprom_addr ,regb 
+0x609d 017349 branch iicd_write_eep_data 
+:      017351 eeprom_load_mouse_dpi:
+0x609e 017352 set1 mark_ext_patch ,mark 
+0x609f 017353 bpatch patch2e_6 ,mem_patch2e 
+0x60a0 017354 arg 1 ,temp 
+0x60a1 017355 arg mem_mouse_dpi ,rega 
+0x60a2 017356 arg mouse_dpi_eeprom_addr ,regb 
+0x60a3 017357 branch iicd_read_eep_data 
+:      017361 mouse_check_mouse_statue:
+0x60a4 017362 set1 mark_ext_patch ,mark 
+0x60a5 017363 bpatch patch2e_7 ,mem_patch2e 
+0x60a6 017364 fetch 1 ,mem_sensor_squal_reg 
+0x60a7 017365 call sensor_read 
+0x60a8 017366 beq 0x0 ,mouse_statue_up 
+0x60a9 017367 rtn 
+:      017369 mouse_devce_led_off:
+0x60aa 017370 fetcht 1 ,mem_device1_led_gpio 
+0x60ab 017371 call gpio_out_inactive 
+0x60ac 017372 fetcht 1 ,mem_device2_led_gpio 
+0x60ad 017373 call gpio_out_inactive 
+0x60ae 017374 fetcht 1 ,mem_device3_led_gpio 
+0x60af 017375 branch gpio_out_inactive 
+:      017376 mouse_statue_up:
+0x60b0 017377 fetch 1 ,mem_reconn_mode 
+0x60b1 017378 rtn blank 
+0x60b2 017379 jam 0 ,mem_reconn_mode 
+0x60b3 017380 jam 60 ,mem_mouse_statue_led_timer 
+0x60b4 017381 call mouse_devce_led_off 
+0x60b5 017382 fetch 1 ,mem_device_flag 
+0x60b6 017383 beq 0x01 ,mouse_device1_led_on 
+0x60b7 017384 beq 0x02 ,mouse_device2_led_on 
+0x60b8 017385 beq 0x03 ,mouse_device3_led_on 
+0x60b9 017386 rtn 
+:      017387 mouse_device1_led_on:
+0x60ba 017388 fetcht 1 ,mem_device1_led_gpio 
+0x60bb 017389 branch gpio_out_active 
+:      017390 mouse_device2_led_on:
+0x60bc 017391 fetcht 1 ,mem_device2_led_gpio 
+0x60bd 017392 branch gpio_out_active 
+:      017393 mouse_device3_led_on:
+0x60be 017394 fetcht 1 ,mem_device3_led_gpio 
+0x60bf 017395 branch gpio_out_active 
+:      017405 twspi_reset:
+0x60c0 017406 set1 mark_ext_patch ,mark 
+0x60c1 017407 bpatch patch2f_0 ,mem_patch2f 
+0x60c2 017408 hfetch 1 ,core_gpio_oe3 
+0x60c3 017409 arg 0x06 ,temp 
+0x60c4 017410 ior temp ,pdata 
+0x60c5 017411 hstore 1 ,core_gpio_oe3 
+0x60c6 017412 hfetch 1 ,core_gpio_out3 
+0x60c7 017413 ior temp ,pdata 
+0x60c8 017414 hstore 1 ,core_gpio_out3 
+0x60c9 017415 hjam 0 ,core_gpio_sel1 
+0x60ca 017416 hfetch 1 ,core_gpio_out3 
+0x60cb 017417 set0 1 ,pdata 
+0x60cc 017418 set0 2 ,pdata 
+0x60cd 017419 hstore 1 ,core_gpio_out3 
+0x60ce 017420 nop 30 
+0x60cf 017421 hjam 1 ,core_gpio_sel1 
+0x60d0 017422 rtn 
+:      017426 sensor_read:
+0x60d1 017427 copy pdata ,regb 
+0x60d2 017428 call spi_ncs_enable 
+0x60d3 017429 nop 100 
+0x60d4 017430 copy regb ,pdata 
+0x60d5 017431 call twspi_read 
+0x60d6 017432 copy pdata ,regb 
+0x60d7 017433 call spi_ncs_disable 
+0x60d8 017434 nop 100 
+0x60d9 017435 copy regb ,pdata 
+0x60da 017436 rtn 
+:      017438 sensor_write:
+0x60db 017439 copy pdata ,regb 
+0x60dc 017440 call spi_ncs_enable 
+0x60dd 017441 nop 100 
+0x60de 017442 copy regb ,pdata 
+0x60df 017443 call twspi_write 
+0x60e0 017444 call spi_ncs_disable 
+0x60e1 017445 nop 100 
+0x60e2 017446 rtn 
+:      017449 spi_ncs_gpio_init:
+0x60e3 017450 fetch 1 ,mem_spi_ncs_gpio 
+0x60e4 017451 rtneq 0xff 
+0x60e5 017452 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e6 017453 branch gpio_config_output 
+:      017456 spi_ncs_enable:
+0x60e7 017457 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e8 017458 branch gpio_out_active 
+:      017461 spi_ncs_disable:
+0x60e9 017462 fetcht 1 ,mem_spi_ncs_gpio 
+0x60ea 017463 branch gpio_out_inactive 
+:      017466 twspi_write:
+0x60eb 017467 branch spid_write_reg 
+:      017471 twspi_read:
+0x60ec 017472 branch spid_read_reg 
+:      017479 read_function_aes:
+0x60ed 017480 nbranch read_function ,user 
+0x60ee 017481 hfetch 1 ,core_gpio_key2 
+0x60ef 017482 or_into 0x20 ,pdata 
+0x60f0 017483 hstore 1 ,core_gpio_key2 
+:      017484 read_function:
+0x60f1 017485 copy temp ,null 
+0x60f2 017486 branch read_fuction_zero ,zero 
+0x60f3 017487 copy regc ,pc 
+:      017488 read_fuction_zero:
+0x60f4 017489 isolate0 0 ,null 
+0x60f5 017490 branch set_ucode_status 
+:      017493 get_block_header:
+0x60f6 017494 force 4 ,temp 
+:      017495 get_block_header0:
+0x60f7 017496 arg mem_ucode_buf ,rega 
+0x60f8 017497 hfetch 1 ,core_gpio_key2 
+0x60f9 017498 and_into 0xdf ,pdata 
+0x60fa 017499 hstore 1 ,core_gpio_key2 
+0x60fb 017500 call read_function 
+0x60fc 017501 arg 0x55aa ,rega 
+0x60fd 017502 fetch 2 ,mem_ucode_buf 
+0x60fe 017503 ifetcht 2 ,contr 
+0x60ff 017504 isub rega ,null 
+0x6100 017505 rtn 
+:      017507 read_first_block:
+0x6101 017508 arg 2 ,temp 
+0x6102 017509 arg mem_ucode_ptr ,rega 
+0x6103 017510 call read_function 
+0x6104 017511 fetch 2 ,mem_ucode_ptr 
+0x6105 017512 store 2 ,mem_addr_mi 
+0x6106 017513 call get_iv ,user 
+0x6107 017514 rtn 
+:      017516 get_iv:
+0x6108 017517 arg 16 ,temp 
+0x6109 017518 arg mem_ucode_keybuf ,rega 
+0x610a 017519 hfetch 1 ,core_gpio_key2 
+0x610b 017520 and_into 0xdf ,pdata 
+0x610c 017521 hstore 1 ,core_gpio_key2 
+0x610d 017522 call read_function 
+0x610e 017523 arg mem_ucode_keybuf ,contr 
+0x610f 017524 arg 16 ,loopcnt 
+0x6110 017525 call aes_load_data 
+0x6111 017526 call aes_init 
+0x6112 017527 call aes_clear_data 
+0x6113 017528 branch do_aes_cbc 
+:      017530 load_storage:
+0x6114 017531 disable match 
+0x6115 017532 call get_block_header 
+0x6116 017533 nrtn zero 
+0x6117 017534 enable match 
+0x6118 017535 hjam 0x80 ,core_ucode_ctrl 
+0x6119 017536 hjam 0 ,core_ucode_hi 
+0x611a 017537 hjam 0 ,core_ucode_low 
+0x611b 017538 arg core_ucode_data ,rega 
+0x611c 017539 call read_function_aes 
+0x611d 017540 hjam 0x0 ,core_ucode_ctrl 
+0x611e 017541 call get_block_header 
+0x611f 017542 nrtn zero 
+0x6120 017543 force 0 ,pdata 
+0x6121 017544 hstore 2 ,core_docd_paddr 
+0x6122 017545 arg core_docd_pdata ,rega 
+0x6123 017546 call read_function_aes 
+:      017547 load_storage_loop:
+0x6124 017548 arg 6 ,temp 
+0x6125 017549 call get_block_header0 
+0x6126 017550 nrtn zero 
+0x6127 017551 ifetch 2 ,contr 
+0x6128 017552 iforce rega 
+0x6129 017553 call read_function 
+0x612a 017554 branch load_storage_loop 
+:      017560 reload_eeprom:
+0x612b 017561 set1 mark_ext_patch ,mark 
+0x612c 017562 bpatch patch2f_1 ,mem_patch2f 
+0x612d 017563 call clean_mem 
+0x612e 017564 setarg 0x1000 
+0x612f 017565 store 2 ,mem_addr_mi 
+0x6130 017566 arg iicd_read_eep ,regc 
+0x6131 017567 arg 2 ,loopcnt 
+:      017568 reload_eeprom_loop:
+0x6132 017569 call get_block_header 
+0x6133 017570 nrtn zero 
+0x6134 017571 fetch 2 ,mem_addr_mi 
+0x6135 017572 byteswap pdata ,pdata 
+0x6136 017573 iadd temp ,pdata 
+0x6137 017574 byteswap pdata ,pdata 
+0x6138 017575 store 2 ,mem_addr_mi 
+0x6139 017576 loop reload_eeprom_loop 
+0x613a 017577 branch load_storage_loop 
+:      017579 loadcode:
+0x613b 017580 hjam 0x25 ,core_clkoff 
+0x613c 017581 hjam 5 ,core_docd_ctrl 
+0x613d 017582 call clean_mem 
+0x613e 017583 set1 mark_ext_patch ,mark 
+0x613f 017584 bpatch patch2f_2 ,mem_patch2f 
+:      017585 loadcode_lpm:
+0x6140 017586 disable user 
+0x6141 017587 call otp_enable_chgpump 
+0x6142 017588 setarg otp_ucode_flag 
+0x6143 017589 arg mem_otp_ucode_flag ,rega 
+0x6144 017590 arg 2 ,temp 
+0x6145 017591 call otpd_read_data 
+0x6146 017592 fetch 2 ,mem_otp_ucode_flag 
+0x6147 017593 bbit0 otp_uflag_aes ,loadcode_otp 
+0x6148 017594 setarg otp_ucode_aeskey 
+0x6149 017595 arg mem_ucode_keybuf ,rega 
+0x614a 017596 arg 16 ,temp 
+0x614b 017597 call otpd_read_data 
+0x614c 017598 hjam lock_otp ,core_misc_ctrl 
+0x614d 017599 arg mem_ucode_keybuf ,contr 
+0x614e 017600 call load_key 
+0x614f 017601 enable user 
+:      017602 loadcode_otp:
+0x6150 017603 set1 mark_ext_patch ,mark 
+0x6151 017604 bpatch patch2f_3 ,mem_patch2f 
+0x6152 017605 fetch 2 ,mem_otp_ucode_flag 
+0x6153 017606 byteswap pdata ,pdata 
+0x6154 017607 arg 0x7ff ,temp 
+0x6155 017608 iand temp ,pdata 
+0x6156 017609 branch loadcode_spi ,zero 
+0x6157 017610 call otp_set_addr 
+0x6158 017611 arg otpd_read_code ,regc 
+0x6159 017612 call get_iv ,user 
+0x615a 017613 call load_storage 
+0x615b 017614 fetch 1 ,mem_ucode_status 
+0x615c 017615 compare 3 ,pdata ,3 
+0x615d 017616 nbranch loadcode_otp ,true 
+:      017617 loadcode_spi:
+0x615e 017618 set1 mark_ext_patch ,mark 
+0x615f 017619 bpatch patch2f_4 ,mem_patch2f 
+0x6160 017620 call otp_disable_chgpump 
+0x6161 017621 fetch 1 ,mem_otp_ucode_flag 
+0x6162 017622 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+0x6163 017623 setarg 0x0 
+0x6164 017624 store 3 ,mem_addr_hi 
+0x6165 017625 call spid_init_flash 
+0x6166 017626 arg spid_read_flash ,regc 
+0x6167 017627 call read_first_block 
+0x6168 017628 call load_storage 
+0x6169 017629 nbranch loadcode_iic ,match 
+0x616a 017630 fetch 1 ,mem_ucode_status 
+0x616b 017631 compare 3 ,pdata ,3 
+0x616c 017632 nbranch loadcode_spi ,true 
+:      017633 loadcode_iic:
+0x616d 017634 set1 mark_ext_patch ,mark 
+0x616e 017635 bpatch patch2f_5 ,mem_patch2f 
+0x616f 017636 call clear_eeprom_size_2k 
+0x6170 017637 fetch 1 ,mem_otp_ucode_flag 
+0x6171 017638 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x6172 017639 call loadcode_iic_by_eeprom 
+0x6173 017640 nbranch loadcode_iic_eeprom_2k ,match 
+0x6174 017641 fetch 1 ,mem_ucode_status 
+0x6175 017642 compare 3 ,pdata ,3 
+0x6176 017643 nbranch loadcode_iic ,true 
+0x6177 017644 branch loadcode_hci 
+:      017645 loadcode_iic_eeprom_2k:
+0x6178 017646 call set_eeprom_size_2k 
+0x6179 017647 fetch 1 ,mem_otp_ucode_flag 
+0x617a 017648 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x617b 017649 call loadcode_iic_by_eeprom 
+0x617c 017650 nbranch loadcode_hci ,match 
+0x617d 017651 fetch 1 ,mem_ucode_status 
+0x617e 017652 compare 3 ,pdata ,3 
+0x617f 017653 nbranch loadcode_iic_eeprom_2k ,true 
+:      017654 loadcode_hci:
+0x6180 017655 force regidx_key ,regext_index 
+0x6181 017656 call aes_clear 
+0x6182 017657 hjam 0x21 ,core_clkoff 
+0x6183 017658 fetch 1 ,mem_otp_ucode_flag 
+0x6184 017659 rtnbit0 otp_uflag_hci 
+0x6185 017660 call hci_init 
+:      017661 loadcode_hci_loop:
+0x6186 017662 call hci_rx_packet 
+0x6187 017663 branch loadcode_hci_loop 
+:      017666 loadcode_iic_by_eeprom:
+0x6188 017667 setarg 0x0 
+0x6189 017668 store 2 ,mem_addr_mi 
+0x618a 017669 arg iicd_read_eep ,regc 
+0x618b 017670 call iicd_init_12m 
+0x618c 017671 call read_first_block 
+0x618d 017672 branch load_storage 
+:      017677 set_ucode_status:
+0x618e 017678 fetch 1 ,mem_ucode_status 
+0x618f 017679 lshift pdata ,pdata 
+0x6190 017680 setflag true ,0 ,pdata 
+0x6191 017681 isolate0 15 ,rega 
+0x6192 017682 rtn true 
+0x6193 017683 store 1 ,mem_ucode_status 
+0x6194 017684 rtn 
+:      017687 decrypt_code:
+0x6195 017688 hfetch 1 ,core_gpio_key2 
+0x6196 017689 rtnbit0 5 
+0x6197 017690 branch decrypt_code_skip 
+:      017691 decrypt_code_loop:
+0x6198 017692 hfetch 1 ,core_dma_status 
+0x6199 017693 qisolate1 pdata 
+0x619a 017694 rtn true 
+:      017695 decrypt_code_skip:
+0x619b 017696 hfetch 1 ,core_misc_status 
+0x619c 017697 bbit0 1 ,decrypt_code_loop 
+0x619d 017698 call do_aes_cbc 
+0x619e 017699 branch decrypt_code_loop 
+:      017703 load_ucode:
+0x619f 017704 fetch 2 ,mem_patch_ptr 
+0x61a0 017705 rtn blank 
+0x61a1 017706 hjam 0x80 ,core_ucode_ctrl 
+0x61a2 017707 hjam 0 ,core_ucode_hi 
+0x61a3 017708 hjam 0 ,core_ucode_low 
+0x61a4 017709 fetcht 2 ,mem_patch_len 
+0x61a5 017710 lshift2 temp ,loopcnt 
+0x61a6 017711 iforce contr 
+:      017712 load_ucode_loop:
+0x61a7 017713 ifetch 1 ,contr 
+0x61a8 017714 hstore 1 ,core_ucode_data 
+0x61a9 017715 loop load_ucode_loop 
+0x61aa 017716 hjam 0x0 ,core_ucode_ctrl 
+0x61ab 017717 rtn 
+:      017722 spid_init:
+0x61ac 017723 set1 mark_ext_patch ,mark 
+0x61ad 017724 bpatch patch2f_6 ,mem_patch2f 
+0x61ae 017725 fetch 1 ,mem_spi_init_clk 
+0x61af 017726 hstore 1 ,core_spid_ctrl 
+0x61b0 017727 fetch 1 ,mem_spi_init_delay_time 
+0x61b1 017728 hstore 1 ,core_spid_delay 
+0x61b2 017729 setarg mem_spid_tbuf 
+0x61b3 017730 hstore 2 ,core_spid_txaddr 
+0x61b4 017731 setarg mem_spid_rbuf 
+0x61b5 017732 hstore 2 ,core_spid_rxaddr 
+0x61b6 017733 hfetch 1 ,core_gpio_sel1 
+0x61b7 017734 set1 0 ,pdata 
+0x61b8 017735 set0 1 ,pdata 
+0x61b9 017736 hstore 1 ,core_gpio_sel1 
+0x61ba 017737 rtn 
+:      017739 spid_reset:
+0x61bb 017740 hfetch 1 ,core_spid_ctrl 
+0x61bc 017741 set1 7 ,pdata 
+0x61bd 017742 hstore 1 ,core_spid_ctrl 
+0x61be 017743 set0 7 ,pdata 
+0x61bf 017744 hstore 1 ,core_spid_ctrl 
+0x61c0 017745 rtn 
+:      017749 spid_write_reg:
+0x61c1 017750 set1 7 ,pdata 
+0x61c2 017751 store 2 ,mem_spid_tbuf 
+0x61c3 017752 set1 mark_ext_patch ,mark 
+0x61c4 017753 bpatch patch2f_7 ,mem_patch2f 
+0x61c5 017754 hjam 2 ,core_spid_txlen 
+0x61c6 017755 hjam 0 ,core_spid_rxlen 
+0x61c7 017756 hjam spid_start ,core_misc_ctrl 
+0x61c8 017757 branch wait_spid_done 
+:      017760 spid_read_reg:
+0x61c9 017761 force 1 ,temp 
+:      017763 spid_read_regs:
+0x61ca 017765 store 1 ,mem_spid_tbuf 
+0x61cb 017766 set1 mark_ext_patch ,mark 
+0x61cc 017767 bpatch patch30_0 ,mem_patch30 
+0x61cd 017768 hjam 1 ,core_spid_txlen 
+0x61ce 017769 hstoret 2 ,core_spid_rxlen 
+0x61cf 017770 hjam spid_start ,core_misc_ctrl 
+0x61d0 017771 call wait_spid_done 
+0x61d1 017772 fetch 1 ,mem_spid_rbuf 
+0x61d2 017773 rtn 
+:      017775 wait_spid_done:
+0x61d3 017776 fetch 2 ,mem_afh_error_total 
+0x61d4 017777 increase 1 ,pdata 
+0x61d5 017778 store 2 ,mem_afh_error_total 
+0x61d6 017779 hfetch 1 ,core_dma_status 
+0x61d7 017780 bbit0 spid_done ,wait_spid_done 
+0x61d8 017781 rtn 
+:      017783 spid_init_flash:
+0x61d9 017784 hjam 0x40 ,core_spid_ctrl 
+0x61da 017785 hjam 0x0 ,core_spid_delay 
+0x61db 017786 hfetch 1 ,core_gpio_sel1 
+0x61dc 017787 set0 0 ,pdata 
+0x61dd 017788 set1 1 ,pdata 
+0x61de 017789 hstore 1 ,core_gpio_sel1 
+0x61df 017790 setarg 0 
+0x61e0 017791 store 4 ,mem_spid_tbuf 
+0x61e1 017792 rtn 
+:      017794 spid_unlock_flash:
+0x61e2 017795 setarg 0 
+0x61e3 017796 hstore 2 ,core_spid_rxlen 
+0x61e4 017797 setarg 1 
+0x61e5 017798 hstore 1 ,core_spid_txlen 
+0x61e6 017799 setarg mem_spid_tbuf 
+0x61e7 017800 hstore 2 ,core_spid_txaddr 
+0x61e8 017801 jam 6 ,mem_spid_tbuf 
+0x61e9 017802 hjam spid_start ,core_misc_ctrl 
+0x61ea 017803 branch wait_spid_done 
+:      017807 spid_write_flash:
+0x61eb 017808 increase 4 ,temp 
+0x61ec 017809 hstoret 2 ,core_spid_txlen 
+0x61ed 017810 increase -4 ,rega 
+0x61ee 017811 arg 2 ,temp 
+0x61ef 017812 istoret 1 ,rega 
+0x61f0 017813 rshift16 pdata ,temp 
+0x61f1 017814 istoret 1 ,contw 
+0x61f2 017815 rshift8 pdata ,temp 
+0x61f3 017816 istoret 1 ,contw 
+0x61f4 017817 istore 1 ,contw 
+0x61f5 017818 deposit rega 
+0x61f6 017819 hstore 2 ,core_spid_txaddr 
+0x61f7 017820 setarg 0 
+0x61f8 017821 hstore 2 ,core_spid_rxlen 
+0x61f9 017822 hjam spid_start ,core_misc_ctrl 
+0x61fa 017823 branch wait_spid_done 
+:      017827 spid_read_flash:
+0x61fb 017828 hstoret 2 ,core_spid_rxlen 
+0x61fc 017829 setarg 4 
+0x61fd 017830 hstore 2 ,core_spid_txlen 
+0x61fe 017831 jam 3 ,mem_spid_tbuf 
+0x61ff 017832 setarg mem_spid_tbuf 
+0x6200 017833 hstore 2 ,core_spid_txaddr 
+0x6201 017834 deposit rega 
+0x6202 017835 hstore 2 ,core_spid_rxaddr 
+0x6203 017836 hfetch 1 ,core_spid_ctrl 
+0x6204 017837 isolate0 15 ,rega 
+0x6205 017838 setflag true ,6 ,pdata 
+0x6206 017839 hstore 1 ,core_spid_ctrl 
+0x6207 017840 hjam spid_start ,core_misc_ctrl 
+:      017841 spi_read_flash_wait:
+0x6208 017842 hfetch 1 ,core_dma_status 
+0x6209 017843 bbit1 7 ,spi_read_flash_wait 
+0x620a 017844 arg spid_done ,queue 
+0x620b 017845 call decrypt_code 
+0x620c 017846 call wait_spid_done 
+0x620d 017847 isolate1 spid_crcok ,pdata 
+0x620e 017848 call set_ucode_status 
+0x620f 017849 fetch 1 ,mem_addr_hi 
+0x6210 017850 lshift16 pdata ,regb 
+0x6211 017851 fetch 1 ,mem_addr_mi 
+0x6212 017852 lshift8 pdata ,pdata 
+0x6213 017853 ior regb ,regb 
+0x6214 017854 fetch 1 ,mem_addr_lo 
+0x6215 017855 ior regb ,pdata 
+0x6216 017856 iadd temp ,pdata 
+0x6217 017857 store 1 ,mem_addr_lo 
+0x6218 017858 rshift8 pdata ,pdata 
+0x6219 017859 store 1 ,mem_addr_mi 
+0x621a 017860 rshift8 pdata ,pdata 
+0x621b 017861 store 1 ,mem_addr_hi 
+0x621c 017862 rtn 
+:      017877 iicd_init_12m:
+0x621d 017878 hjam 5 ,core_iicd_scl_low 
+0x621e 017879 hjam 7 ,core_iicd_scl_high 
+0x621f 017880 hjam 7 ,core_iicd_start_setup 
+0x6220 017881 hjam 7 ,core_iicd_start_hold 
+0x6221 017882 hjam 7 ,core_iicd_stop_setup 
+0x6222 017883 hjam 5 ,core_iicd_data_setup 
+0x6223 017884 rtn 
+:      017888 wait_iicd_done:
+0x6224 017889 hfetch 1 ,core_dma_status 
+0x6225 017890 bbit0 iicd_done ,wait_iicd_done 
+0x6226 017891 rtn 
+:      017899 iicd_read_data:
+0x6227 017900 hstore 2 ,core_iicd_txlen 
+0x6228 017901 deposit rega 
+0x6229 017902 hstore 2 ,core_iicd_txaddr 
+0x622a 017903 deposit regb 
+0x622b 017904 hstore 2 ,core_iicd_rxaddr 
+0x622c 017905 deposit temp 
+0x622d 017906 hstore 2 ,core_iicd_rxlen 
+0x622e 017907 arg 1 ,temp 
+0x622f 017908 nsetflag blank ,1 ,temp 
+0x6230 017909 hstore 1 ,core_iicd_ctrl 
+0x6231 017910 hjam iicd_start ,core_misc_ctrl 
+0x6232 017911 branch wait_iicd_done 
+:      017914 set_eeprom_size_2k:
+0x6233 017915 set1 mark_eeprom_size ,mark 
+0x6234 017916 jam 0x08 ,mem_eeprom_block_size 
+0x6235 017917 rtn 
+:      017919 clear_eeprom_size_2k:
+0x6236 017920 set0 mark_eeprom_size ,mark 
+0x6237 017921 jam 0x20 ,mem_eeprom_block_size 
+0x6238 017922 rtn 
+:      017925 iicd_read_eep_data_size_2k:
+0x6239 017926 fetch 1 ,mem_eeprom_base 
+0x623a 017927 iadd regb ,pdata 
+0x623b 017928 store 1 ,mem_addr_mi 
+0x623c 017929 branch iicd_read_eep_size_2k 
+:      017931 iicd_read_eep_size_2k_lcadcode:
+0x623d 017932 fetch 2 ,mem_addr_mi 
+0x623e 017933 byteswap pdata ,pdata 
+0x623f 017934 store 1 ,mem_addr_mi 
+:      017939 iicd_read_eep_size_2k:
+0x6240 017940 setarg 3 
+0x6241 017941 hstore 2 ,core_iicd_txlen 
+0x6242 017942 jam 0xa0 ,mem_iicd_tbuf 
+0x6243 017943 jam 0xa1 ,mem_iicd_tbuf + 2 
+0x6244 017944 branch iicd_read_eep_common 
+:      017949 iicd_read_eep_data:
+0x6245 017950 set1 mark_ext_patch ,mark 
+0x6246 017951 bpatch patch30_1 ,mem_patch30 
+0x6247 017952 bmark1 mark_eeprom_size ,iicd_read_eep_data_size_2k 
+0x6248 017953 fetch 2 ,mem_eeprom_base 
+0x6249 017954 iadd regb ,pdata 
+0x624a 017955 byteswap pdata ,pdata 
+0x624b 017956 store 2 ,mem_addr_mi 
+:      017959 iicd_read_eep:
+0x624c 017960 set1 mark_ext_patch ,mark 
+0x624d 017961 bpatch patch30_2 ,mem_patch30 
+0x624e 017962 bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+0x624f 017963 nop 30000 
+0x6250 017964 setarg 4 
+0x6251 017965 hstore 2 ,core_iicd_txlen 
+0x6252 017966 jam 0xa0 ,mem_iicd_tbuf 
+0x6253 017967 jam 0xa1 ,mem_iicd_tbuf + 3 
+:      017968 iicd_read_eep_common:
+0x6254 017969 setarg mem_iicd_tbuf 
+0x6255 017970 hstore 2 ,core_iicd_txaddr 
+0x6256 017971 hstoret 2 ,core_iicd_rxlen 
+0x6257 017972 deposit rega 
+0x6258 017973 hstore 2 ,core_iicd_rxaddr 
+0x6259 017974 setarg 2 
+0x625a 017975 isolate0 15 ,rega 
+0x625b 017976 setflag true ,0 ,pdata 
+0x625c 017977 hstore 1 ,core_iicd_ctrl 
+0x625d 017978 hjam iicd_start ,core_misc_ctrl 
+0x625e 017979 arg iicd_done ,queue 
+0x625f 017980 call decrypt_code 
+0x6260 017981 call wait_iicd_done 
+0x6261 017982 isolate1 iicd_crcok ,pdata 
+0x6262 017983 call set_ucode_status 
+0x6263 017984 bmark1 mark_eeprom_size ,iicd_read_eep_load_code_size_2k 
+0x6264 017985 fetch 2 ,mem_addr_mi 
+0x6265 017986 byteswap pdata ,pdata 
+0x6266 017987 iadd temp ,pdata 
+0x6267 017988 byteswap pdata ,pdata 
+0x6268 017989 store 2 ,mem_addr_mi 
+0x6269 017990 rtn 
+:      017992 iicd_read_eep_load_code_size_2k:
+0x626a 017993 fetch 1 ,mem_addr_mi 
+0x626b 017994 iadd temp ,pdata 
+0x626c 017995 byteswap pdata ,pdata 
+0x626d 017996 store 2 ,mem_addr_mi 
+0x626e 017997 rtn 
+:      018004 iicd_write_eep_data:
+0x626f 018005 fetch 2 ,mem_eeprom_base 
+0x6270 018006 iadd regb ,pdata 
+:      018009 iicd_write_ota_data:
+0x6271 018010 store 2 ,mem_pdatatemp 
+0x6272 018011 set1 mark_ext_patch ,mark 
+0x6273 018012 bpatch patch30_3 ,mem_patch30 
+0x6274 018013 storet 2 ,mem_temp 
+0x6275 018014 copy rega ,pdata 
+0x6276 018015 store 2 ,mem_contr 
+:      018016 iicd_write_eep_loop:
+0x6277 018017 call iicd_eep_transparency 
+0x6278 018019 fetcht 2 ,mem_regb 
+0x6279 018020 fetch 2 ,mem_contr 
+0x627a 018021 copy pdata ,rega 
+0x627b 018022 fetch 2 ,mem_pdatatemp 
+0x627c 018024 call iicd_write_eep 
+0x627d 018028 fetch 2 ,mem_regb 
+0x627e 018029 fetcht 2 ,mem_contr 
+0x627f 018030 iadd temp ,temp 
+0x6280 018031 storet 2 ,mem_contr 
+0x6281 018032 fetcht 2 ,mem_pdatatemp 
+0x6282 018033 iadd temp ,temp 
+0x6283 018034 storet 2 ,mem_pdatatemp 
+0x6284 018035 fetch 2 ,mem_temp 
+0x6285 018036 nbranch iicd_write_eep_loop ,blank 
+0x6286 018037 rtn 
+:      018045 iicd_eep_transparency:
+0x6287 018046 set1 mark_ext_patch ,mark 
+0x6288 018047 bpatch patch30_4 ,mem_patch30 
+0x6289 018048 fetch 2 ,mem_eeprom_block_size 
+0x628a 018049 increase -1 ,pdata 
+0x628b 018050 fetcht 2 ,mem_pdatatemp 
+0x628c 018051 ior temp ,pdata 
+0x628d 018052 increase 1 ,pdata 
+0x628e 018053 store 3 ,mem_regc 
+0x628f 018055 fetch 2 ,mem_temp 
+0x6290 018056 iadd temp ,pdata 
+0x6291 018058 fetcht 3 ,mem_regc 
+0x6292 018059 isub temp ,pdata 
+0x6293 018060 nbranch iicd_eep_deal_short_packet ,positive 
+0x6294 018061 store 2 ,mem_temp 
+0x6295 018062 fetch 3 ,mem_regc 
+0x6296 018063 fetcht 2 ,mem_pdatatemp 
+0x6297 018064 isub temp ,pdata 
+0x6298 018065 store 2 ,mem_regb 
+0x6299 018066 rtn 
+:      018067 iicd_eep_deal_short_packet:
+0x629a 018068 fetch 2 ,mem_temp 
+0x629b 018069 store 2 ,mem_regb 
+0x629c 018070 setarg 0 
+0x629d 018071 store 2 ,mem_temp 
+0x629e 018072 rtn 
+:      018074 iicd_write_eep_size_2k:
+0x629f 018075 increase 2 ,temp 
+0x62a0 018076 hstoret 2 ,core_iicd_txlen 
+0x62a1 018077 increase -2 ,rega 
+0x62a2 018078 ifetcht 3 ,rega 
+0x62a3 018079 copy temp ,regb 
+0x62a4 018080 arg 0xa0 ,temp 
+0x62a5 018081 istoret 1 ,rega 
+0x62a6 018083 istore 1 ,contw 
+0x62a7 018084 branch iicd_write_eep_common 
+:      018087 iicd_write_eep:
+0x62a8 018088 copy pdata ,regb 
+0x62a9 018089 set1 mark_ext_patch ,mark 
+0x62aa 018090 bpatch patch30_5 ,mem_patch30 
+0x62ab 018091 nop 30000 
+0x62ac 018092 bmark1 mark_eeprom_size ,iicd_write_eep_size_2k 
+0x62ad 018093 copy regb ,pdata 
+0x62ae 018094 increase 3 ,temp 
+0x62af 018095 hstoret 2 ,core_iicd_txlen 
+0x62b0 018096 increase -3 ,rega 
+0x62b1 018097 ifetcht 3 ,rega 
+0x62b2 018098 copy temp ,regb 
+0x62b3 018099 arg 0xa0 ,temp 
+0x62b4 018100 istoret 1 ,rega 
+0x62b5 018101 byteswap pdata ,pdata 
+0x62b6 018102 istore 2 ,contw 
+:      018103 iicd_write_eep_common:
+0x62b7 018104 deposit rega 
+0x62b8 018105 hstore 2 ,core_iicd_txaddr 
+0x62b9 018106 setarg 0 
+0x62ba 018107 hstore 2 ,core_iicd_rxlen 
+0x62bb 018108 hjam 1 ,core_iicd_ctrl 
+0x62bc 018109 hjam iicd_start ,core_misc_ctrl 
+0x62bd 018110 call wait_iicd_done 
+0x62be 018111 copy regb ,pdata 
+0x62bf 018112 istore 3 ,rega 
+0x62c0 018113 nop 10000 
+0x62c1 018114 nop 10000 
+0x62c2 018115 nop 10000 
+0x62c3 018116 rtn 
+:      018120 otp_enable_chgpump:
+0x62c4 018121 hjam 0x70 ,rfen_chgpump 
+0x62c5 018122 nop param_chgpump_delay 
+0x62c6 018123 rtn 
+:      018125 otp_disable_chgpump:
+0x62c7 018126 hjam 0x30 ,rfen_chgpump 
+0x62c8 018127 rtn 
+:      018129 otp_set_addr:
+0x62c9 018130 lshift3 pdata ,pdata 
+0x62ca 018131 hstore 2 ,core_otp_addr 
+0x62cb 018132 hjam 0 ,core_otpd_ctrl 
+0x62cc 018133 rtn 
+:      018136 otp_write:
+0x62cd 018137 call otp_set_addr 
+0x62ce 018138 call otp_ce 
+:      018139 otp_program:
+0x62cf 018140 ifetcht 1 ,rega 
+0x62d0 018141 increase 1 ,rega 
+0x62d1 018142 force 0 ,queue 
+:      018143 otp_program_bit:
+0x62d2 018144 qisolate0 temp 
+0x62d3 018145 branch otp_skip_0 ,true 
+0x62d4 018146 hfetch 1 ,core_otp_din 
+0x62d5 018147 set1 6 ,pdata 
+0x62d6 018148 set1 7 ,pdata 
+0x62d7 018149 hstore 1 ,core_otp_din 
+0x62d8 018150 hjam 0x02 ,core_otp_ctrl 
+0x62d9 018151 hjam 0x82 ,core_otp_ctrl 
+0x62da 018152 set0 7 ,pdata 
+0x62db 018153 hstore 1 ,core_otp_din 
+0x62dc 018154 hjam 0x8a ,core_otp_ctrl 
+0x62dd 018155 nop 11 
+0x62de 018156 hjam 0xca ,core_otp_ctrl 
+0x62df 018157 nop 33 
+0x62e0 018158 hjam 0x4a ,core_otp_ctrl 
+0x62e1 018159 nop 44 
+0x62e2 018160 hjam 0xca ,core_otp_ctrl 
+0x62e3 018161 nop 22 
+0x62e4 018162 hjam 0x8a ,core_otp_ctrl 
+0x62e5 018163 nop 33 
+0x62e6 018164 hjam 0x82 ,core_otp_ctrl 
+0x62e7 018165 nop 1 
+0x62e8 018166 hjam 0x92 ,core_otp_ctrl 
+0x62e9 018167 nop 10 
+0x62ea 018168 hjam 0xb2 ,core_otp_ctrl 
+0x62eb 018169 hfetch 1 ,core_otp_rdata 
+0x62ec 018170 hjam 0x92 ,core_otp_ctrl 
+0x62ed 018171 nop 1 
+0x62ee 018172 hjam 0x82 ,core_otp_ctrl 
+0x62ef 018173 qisolate0 pdata 
+0x62f0 018174 branch otp_program_bit ,true 
+:      018175 otp_skip_0:
+0x62f1 018176 hfetch 2 ,core_otp_addr 
+0x62f2 018177 increase 1 ,pdata 
+0x62f3 018178 hstore 2 ,core_otp_addr 
+0x62f4 018179 increase 1 ,queue 
+0x62f5 018180 compare 8 ,queue ,0xf 
+0x62f6 018181 nbranch otp_program_bit ,true 
+0x62f7 018182 loop otp_program 
+0x62f8 018183 hjam 0x83 ,core_otp_ctrl 
+0x62f9 018184 rtn 
+:      018186 otp_ce:
+0x62fa 018187 hjam 0x82 ,core_otp_ctrl 
+0x62fb 018188 nop 12 
+0x62fc 018189 hjam 0x80 ,core_otp_ctrl 
+0x62fd 018190 hjam 0x82 ,core_otp_ctrl 
+0x62fe 018191 nop 150 
+0x62ff 018192 rtn 
+:      018195 otpd_read_init:
+0x6300 018196 call otp_ce 
+0x6301 018197 hjam 0xa2 ,core_otp_ctrl 
+0x6302 018198 deposit rega 
+0x6303 018199 hstore 2 ,core_otpd_addr 
+0x6304 018200 set1 11 ,temp 
+0x6305 018201 isolate0 15 ,pdata 
+0x6306 018202 setflag true ,15 ,temp 
+0x6307 018203 hstoret 2 ,core_otpd_len 
+0x6308 018204 hjam otpd_start ,core_misc_ctrl 
+0x6309 018205 rtn 
+:      018207 otpd_wait_end:
+0x630a 018208 hfetch 1 ,core_dma_status 
+0x630b 018209 bbit0 otpd_done ,otpd_wait_end 
+0x630c 018210 rtn 
+:      018213 otpd_read_data:
+0x630d 018214 call otp_set_addr 
+0x630e 018215 call otpd_read_init 
+0x630f 018216 call otpd_wait_end 
+0x6310 018217 hjam 0x83 ,core_otp_ctrl 
+0x6311 018218 rtn 
+:      018223 otpd_read_code:
+0x6312 018224 hfetch 2 ,core_current_otp_addr 
+0x6313 018225 hstore 2 ,core_otp_addr 
+0x6314 018226 call otpd_read_init 
+0x6315 018227 arg otpd_done ,queue 
+0x6316 018228 call decrypt_code 
+0x6317 018229 call otpd_wait_end 
+0x6318 018230 isolate1 otpd_crcok ,pdata 
+0x6319 018231 call set_ucode_status 
+0x631a 018232 hjam 0x83 ,core_otp_ctrl 
+0x631b 018233 rtn 
+:      018236 uartd_prepare_tx:
+0x631c 018237 hfetch 2 ,core_uart_twptr 
+0x631d 018238 iforce contwu 
+0x631e 018239 rtn 
+:      018241 uartd_send:
+0x631f 018242 deposit contwu 
+0x6320 018243 hstore 2 ,core_uart_twptr 
+0x6321 018244 rtn 
+:      018246 uartd_rxdone:
+0x6322 018247 deposit contru 
+0x6323 018248 hstore 2 ,core_uart_rrptr 
+0x6324 018249 rtn 
+:      018251 uart_set_baud_by_mem:
+0x6325 018252 fetch uart_baud_len ,mem_baud 
+0x6326 018253 hstore uart_baud_len ,core_uart_baud 
+0x6327 018254 rtn 
+:      018256 uart_copy_tx_bytes_fast:
+0x6328 018257 deposit loopcnt 
+0x6329 018258 rtn blank 
+:      018259 uart_copy_tx_bytes_fast_loop:
+0x632a 018260 increase -8 ,loopcnt 
+0x632b 018261 call uart_tx_8_bytes ,positive 
+0x632c 018262 rtn zero 
+0x632d 018263 branch uart_copy_tx_bytes_fast_loop ,positive 
+0x632e 018264 increase 8 ,loopcnt 
+:      018265 uart_copy_tx_bytes_fast_loop_four:
+0x632f 018266 increase -4 ,loopcnt 
+0x6330 018267 call uart_tx_4_bytes ,positive 
+0x6331 018268 rtn zero 
+0x6332 018269 branch uart_copy_tx_bytes_fast_loop_four ,positive 
+0x6333 018270 increase 4 ,loopcnt 
+0x6334 018271 branch uart_copy_tx_bytes 
+:      018273 uart_tx_8_bytes:
+0x6335 018274 ifetch 8 ,contr 
+0x6336 018275 istore 8 ,contwu 
+0x6337 018276 rtn 
+:      018278 uart_tx_4_bytes:
+0x6338 018279 ifetch 4 ,contr 
+0x6339 018280 istore 4 ,contwu 
+0x633a 018281 rtn 
+:      018283 uart_copy_tx_bytes:
+0x633b 018284 deposit loopcnt 
+0x633c 018285 rtn blank 
+:      018286 uart_copy_tx_bytes_loop:
+0x633d 018287 ifetch 1 ,contr 
+0x633e 018288 istore 1 ,contwu 
+0x633f 018289 loop uart_copy_tx_bytes_loop 
+0x6340 018290 rtn 
+:      018292 uart_copy_rx_bytes_fast:
+0x6341 018293 deposit loopcnt 
+0x6342 018294 rtn blank 
+:      018295 uart_copy_rx_bytes_fast_loop:
+0x6343 018296 increase -8 ,loopcnt 
+0x6344 018297 call uart_rx_8_bytes ,positive 
+0x6345 018298 rtn zero 
+0x6346 018299 branch uart_copy_rx_bytes_fast_loop ,positive 
+0x6347 018300 increase 8 ,loopcnt 
+:      018301 uart_copy_rx_bytes_fast_loop_four:
+0x6348 018302 increase -4 ,loopcnt 
+0x6349 018303 call uart_rx_4_bytes ,positive 
+0x634a 018304 rtn zero 
+0x634b 018305 branch uart_copy_rx_bytes_fast_loop_four ,positive 
+0x634c 018306 increase 4 ,loopcnt 
+0x634d 018307 branch uart_copy_rx_bytes 
+:      018309 uart_rx_8_bytes:
+0x634e 018310 ifetch 8 ,contru 
+0x634f 018311 istore 8 ,contw 
+0x6350 018312 rtn 
+:      018314 uart_rx_4_bytes:
+0x6351 018315 ifetch 4 ,contru 
+0x6352 018316 istore 4 ,contw 
+0x6353 018317 rtn 
+:      018320 uart_copy_rx_bytes:
+0x6354 018321 deposit loopcnt 
+0x6355 018322 rtn blank 
+:      018323 uart_copy_rx_bytes_loop:
+0x6356 018324 ifetch 1 ,contru 
+0x6357 018325 istore 1 ,contw 
+0x6358 018326 loop uart_copy_rx_bytes_loop 
+0x6359 018327 rtn 
+:      018332 check_51cmd_update_device_record:
+0x635a 018333 set1 mark_ext_patch ,mark 
+0x635b 018334 bpatch patch30_6 ,mem_patch30 
+0x635c 018335 fetch 1 ,mem_nv_data_number 
+0x635d 018336 rtn blank 
+0x635e 018337 call check_nvram 
+0x635f 018338 call init_device_list ,zero 
+0x6360 018339 call nvram_find_addr_from_bd_list 
+:      018340 write_device_record:
+0x6361 018341 fetch 1 ,mem_nv_data_number 
+0x6362 018342 icopy regc 
+0x6363 018343 fetcht 2 ,mem_nv_data_ptr 
+0x6364 018344 storet 2 ,mem_list_item_ptr 
+:      018345 write_device_loop_find:
+0x6365 018346 copy regc ,pdata 
+0x6366 018347 branch module_hci_event_store_device ,blank 
+0x6367 018348 increase -1 ,regc 
+0x6368 018349 copy temp ,rega 
+0x6369 018350 ifetch 1 ,rega 
+0x636a 018351 fetcht 1 ,mem_select_list_item 
+0x636b 018352 isub temp ,null 
+0x636c 018353 call set_index_finded_device ,zero 
+0x636d 018354 branch write_device_loop_find0 ,positive 
+0x636e 018355 ifetch 1 ,rega 
+0x636f 018356 increase 1 ,pdata 
+0x6370 018357 istore 1 ,rega 
+:      018358 write_device_loop_find0:
+0x6371 018359 fetcht 2 ,mem_list_item_ptr 
+0x6372 018360 increase nv_data_len ,temp 
+0x6373 018361 storet 2 ,mem_list_item_ptr 
+0x6374 018362 branch write_device_loop_find 
+:      018364 set_index_finded_device:
+0x6375 018365 setarg 0 
+0x6376 018366 istore 1 ,rega 
+0x6377 018367 fetch 1 ,mem_temp_reconn_record 
+0x6378 018368 istore 1 ,contw 
+0x6379 018369 bne rec_3_mode ,set_index_finded_device_ble_mode 
+0x637a 018370 arg mem_link_key ,regb 
+:      018371 set_index_find_device_master_addr:
+0x637b 018372 ifetch 6 ,contr 
+0x637c 018373 istore 8 ,contw 
+0x637d 018374 setarg 0 
+0x637e 018375 istore 8 ,contw 
+0x637f 018376 copy regb ,contr 
+:      018377 store_rec_data_common:
+0x6380 018378 call memcpy16 
+0x6381 018379 force 1 ,null 
+0x6382 018380 rtn 
+:      018382 set_index_finded_device_ble_mode:
+0x6383 018383 beq rec_4_mode_random_resolvable_private_address ,set_index_finded_device_irk 
+0x6384 018384 beq rec_4_mode_random_non_resolvable_private_address ,set_index_finded_device_ediv 
+0x6385 018385 arg mem_le_ltk ,regb 
+0x6386 018386 branch set_index_find_device_master_addr 
+:      018388 set_index_finded_device_irk:
+0x6387 018389 arg mem_le_irk ,contr 
+0x6388 018390 call memcpy16 
+:      018391 store_ble_rec_data_common:
+0x6389 018392 arg mem_le_ltk ,contr 
+0x638a 018393 branch store_rec_data_common 
+:      018395 set_index_finded_device_ediv:
+0x638b 018396 arg mem_le_rand ,contr 
+0x638c 018397 call memcpy16 
+0x638d 018398 branch store_ble_rec_data_common 
+:      018401 nvram_find_addr_from_bd_list:
+0x638e 018402 call disable_usr 
+0x638f 018403 fetch 1 ,mem_nv_data_number 
+0x6390 018404 rtn blank 
+0x6391 018405 fetch 2 ,mem_ui_state_map 
+0x6392 018406 bbit1 ui_state_bt_connected ,find_addr_from_bd_list_spp_mode 
+:      018408 find_addr_from_bd_list_ble_mode:
+0x6393 018409 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6394 018410 beq master_public_addr ,find_addr_from_bd_list_static_addr 
+0x6395 018411 fetch 1 ,mem_le_plap + 5 
+0x6396 018412 compare 0xc0 ,pdata ,0xc0 
+0x6397 018413 branch find_addr_from_bd_list_static_addr ,true 
+0x6398 018414 compare 0x40 ,pdata ,0xc0 
+0x6399 018415 branch find_addr_from_bd_list_random_addr ,true 
+0x639a 018416 compare 0x00 ,pdata ,0xc0 
+0x639b 018417 branch find_addr_from_bd_list_random_non_resolvable_private_address ,true 
+:      018418 find_addr_from_bd_list_static_addr:
+0x639c 018419 jam rec_4_mode_static_address ,mem_temp_reconn_record 
+0x639d 018420 fetch 6 ,mem_le_plap 
+0x639e 018421 branch find_addr_from_bd_list_common 
+:      018423 find_addr_from_bd_list_random_non_resolvable_private_address:
+0x639f 018424 jam rec_4_mode_random_non_resolvable_private_address ,mem_temp_reconn_record 
+0x63a0 018425 branch find_addr_from_bd_list_common 
+:      018428 find_addr_from_bd_list_random_addr:
+0x63a1 018429 jam rec_4_mode_random_resolvable_private_address ,mem_temp_reconn_record 
+0x63a2 018430 branch find_addr_from_bd_list_common 
+:      018433 find_addr_from_bd_list_spp_mode:
+0x63a3 018434 set1 mark_ext_patch ,mark 
+0x63a4 018435 bpatch patch30_7 ,mem_patch30 
+0x63a5 018436 jam rec_3_mode ,mem_temp_reconn_record 
+0x63a6 018437 fetch 6 ,mem_plap 
+:      018438 find_addr_from_bd_list_common:
+0x63a7 018439 store 6 ,mem_temp_reconn_record + 1 
+0x63a8 018440 fetch 2 ,mem_nv_data_ptr 
+0x63a9 018441 ifetcht 1 ,pdata 
+0x63aa 018442 pincrease 1 
+0x63ab 018443 store 2 ,mem_list_item_ptr 
+0x63ac 018444 storet 1 ,mem_select_list_item 
+0x63ad 018445 fetch 1 ,mem_nv_data_number 
+0x63ae 018446 icopy regc 
+:      018447 nvram_find_addr_from_list:
+0x63af 018448 fetch 2 ,mem_list_item_ptr 
+0x63b0 018449 copy pdata ,rega 
+0x63b1 018450 call nvram_find_addr_from_list_compare 
+0x63b2 018451 rtn user 
+0x63b3 018452 fetcht 2 ,mem_list_item_ptr 
+0x63b4 018453 increase nv_data_len ,temp 
+0x63b5 018454 storet 2 ,mem_list_item_ptr 
+0x63b6 018455 increase -1 ,temp 
+0x63b7 018456 ifetch 1 ,temp 
+0x63b8 018457 store 1 ,mem_select_list_item 
+0x63b9 018458 increase -1 ,regc 
+0x63ba 018459 nbranch nvram_find_addr_from_list ,zero 
+0x63bb 018460 fetch 1 ,mem_nv_data_number 
+0x63bc 018461 pincrease decreased_one 
+0x63bd 018462 store 1 ,mem_select_list_item 
+0x63be 018463 rtn 
+:      018464 nvram_find_addr_from_list_compare:
+0x63bf 018465 fetch 1 ,mem_temp_reconn_record 
+0x63c0 018466 bne rec_3_mode ,find_addr_from_list_compare_ble_mode 
+:      018467 find_master_addr_from_list_compare:
+0x63c1 018468 arg mem_temp_reconn_record ,regb 
+0x63c2 018469 arg 7 ,loopcnt 
+0x63c3 018470 call string_compare 
+0x63c4 018471 branch enable_usr ,zero 
+0x63c5 018472 rtn 
+:      018474 find_addr_from_list_compare_ble_mode:
+0x63c6 018475 beq rec_4_mode_random_resolvable_private_address ,find_irk_form_list_compare 
+0x63c7 018476 beq rec_4_mode_random_non_resolvable_private_address ,find_ediv_form_list_compare 
+0x63c8 018477 branch find_master_addr_from_list_compare 
+:      018479 find_irk_form_list_compare:
+0x63c9 018480 ifetcht 1 ,rega 
+0x63ca 018481 isub temp ,null 
+0x63cb 018482 nrtn zero 
+0x63cc 018483 arg mem_le_prand ,contw 
+0x63cd 018484 arg 16 ,loopcnt 
+0x63ce 018485 call clear_mem 
+0x63cf 018486 fetch 3 ,mem_le_plap + 3 
+0x63d0 018487 store 3 ,mem_le_prand 
+0x63d1 018488 call genernate_master_macaddress 
+0x63d2 018489 fetch 2 ,mem_le_aes_128 + 13 
+0x63d3 018490 byteswap pdata ,pdata 
+0x63d4 018491 lshift8 pdata ,temp 
+0x63d5 018492 ifetch 1 ,contr 
+0x63d6 018493 iadd temp ,pdata 
+0x63d7 018494 fetcht 3 ,mem_le_plap 
+0x63d8 018495 isub temp ,null 
+0x63d9 018496 branch enable_usr ,zero 
+0x63da 018497 rtn 
+:      018500 genernate_master_macaddress:
+0x63db 018501 arg mem_le_prand ,contr 
+0x63dc 018502 call load_data128 
+0x63dd 018504 ifetch 1 ,rega 
+0x63de 018505 call load_regext 
+0x63df 018506 force 0x38 ,aes_ctrl 
+0x63e0 018507 force 0x0 ,aes_ctrl 
+0x63e1 018508 call wait_aes 
+0x63e2 018509 arg mem_le_aes_128 ,contw 
+0x63e3 018510 branch store_aes_result 
+:      018512 find_ediv_form_list_compare:
+0x63e4 018513 ifetcht 1 ,rega 
+0x63e5 018514 isub temp ,null 
+0x63e6 018515 nrtn zero 
+0x63e7 018516 copy contr ,rega 
+0x63e8 018517 add contr ,8 ,regc 
+0x63e9 018518 arg mem_le_rand ,regb 
+0x63ea 018519 arg 8 ,loopcnt 
+0x63eb 018520 call string_compare 
+0x63ec 018521 branch enable_usr ,zero 
+0x63ed 018522 copy regc ,rega 
+0x63ee 018523 arg mem_le_irk ,regb 
+0x63ef 018524 arg 8 ,loopcnt 
+0x63f0 018525 call string_compare 
+0x63f1 018526 branch enable_usr ,zero 
+0x63f2 018527 rtn 
+:      018529 check_nvram:
+0x63f3 018530 fetch 2 ,mem_nv_data_ptr 
+0x63f4 018531 ifetcht 1 ,pdata 
+0x63f5 018532 pincrease nv_data_len 
+0x63f6 018533 ifetch 1 ,pdata 
+0x63f7 018534 isub temp ,null 
+0x63f8 018535 rtn 
+:      018537 init_device_list:
+0x63f9 018538 fetch 1 ,mem_nv_data_number 
+0x63fa 018539 icopy loopcnt 
+0x63fb 018540 fetcht 2 ,mem_nv_data_ptr 
+0x63fc 018541 setarg 0 
+:      018542 init_device_list_loop:
+0x63fd 018543 istore 1 ,temp 
+0x63fe 018544 increase nv_data_len ,temp 
+0x63ff 018545 pincrease 1 
+0x6400 018546 loop init_device_list_loop 
+0x6401 018547 rtn 
+:      018549 load_device_list:
+0x6402 018550 set1 mark_ext_patch ,mark 
+0x6403 018551 bpatch patch31_0 ,mem_patch31 
+0x6404 018552 call nvram_find_addr_from_bd_list 
+0x6405 018553 nbranch clear_key_exists ,user 
+0x6406 018554 add rega ,10 ,contr 
+0x6407 018556 arg mem_link_key ,contw 
+0x6408 018557 call memcpy16 
+0x6409 018558 branch check_link_key_load 
+:      018559 clear_key_exists:
+0x640a 018560 jam 0 ,mem_link_key_exists 
+0x640b 018561 rtn 
+:      018563 load_device_list_mode_4:
+0x640c 018564 fetch 9 ,mem_le_ediv 
+0x640d 018565 branch clear_ltk_exists ,blank 
+0x640e 018566 call nvram_find_addr_from_bd_list 
+0x640f 018567 nbranch clear_ltk_exists ,user 
+0x6410 018568 fetch 2 ,mem_list_item_ptr 
+0x6411 018569 add pdata ,1 ,contr 
+0x6412 018570 arg mem_le_irk ,contw 
+0x6413 018571 call memcpy16 
+0x6414 018572 arg mem_le_ltk ,contw 
+0x6415 018573 call memcpy16 
+0x6416 018574 jam 1 ,mem_ltk_exists 
+0x6417 018575 rtn 
+:      018577 load_device_list_mode_4_shutter:
+0x6418 018578 fetch 2 ,mem_le_ediv 
+0x6419 018579 nbranch load_device_list_mode_4_shutter_label ,blank 
+0x641a 018580 fetch 6 ,mem_le_rand 
+0x641b 018581 branch clear_ltk_exists_iphone_lost_ltk ,blank 
+:      018582 load_device_list_mode_4_shutter_label:
+0x641c 018583 jam ltk_not_lost ,mem_ltk_states 
+0x641d 018584 setarg 0x112233 
+0x641e 018585 store 3 ,mem_le_ltk 
+0x641f 018586 setarg 0x445566 
+0x6420 018587 istore 3 ,contw 
+0x6421 018588 setarg 0x778899 
+0x6422 018589 istore 3 ,contw 
+0x6423 018590 setarg 0x001122 
+0x6424 018591 istore 3 ,contw 
+0x6425 018592 setarg 0x334455 
+0x6426 018593 istore 3 ,contw 
+0x6427 018594 setarg 0x66 
+0x6428 018595 istore 1 ,contw 
+0x6429 018596 jam 1 ,mem_ltk_exists 
+0x642a 018597 rtn 
+:      018599 clear_ltk_exists_iphone_lost_ltk:
+0x642b 018600 jam iphone_lost_ltk ,mem_ltk_states 
+:      018601 clear_ltk_exists:
+0x642c 018602 jam 0 ,mem_ltk_exists 
+0x642d 018603 rtn 
+:      018606 eeprom_store_le_reconn_info:
+0x642e 018607 fetch 6 ,mem_le_plap 
+0x642f 018608 store 6 ,mem_temp_lap 
+0x6430 018609 jam rec_4_mode ,mem_record_bt_mode 
+0x6431 018610 branch eeprom_store_reconn_info 
+:      018611 eeprom_store_bd_reconn_info:
+0x6432 018612 fetch 6 ,mem_plap 
+0x6433 018613 store 6 ,mem_temp_lap 
+0x6434 018614 jam rec_3_mode ,mem_record_bt_mode 
+:      018615 eeprom_store_reconn_info:
+0x6435 018616 set1 mark_ext_patch ,mark 
+0x6436 018617 bpatch patch31_1 ,mem_patch31 
+0x6437 018618 fetch 1 ,mem_device_option 
+0x6438 018619 beq dvc_op_module ,check_51cmd_update_device_record 
+0x6439 018620 call eeprom_store_remote_bdaddr 
+0x643a 018621 call eeprom_store_last_record_index 
+0x643b 018622 fetch 1 ,mem_record_bt_mode 
+0x643c 018623 beq rec_4_mode ,eeprom_store_rec_4_mode 
+0x643d 018624 beq rec_3_mode ,eeprom_store_link_key 
+0x643e 018625 rtn 
+:      018626 eeprom_store_rec_4_mode:
+0x643f 018627 call eeprom_store_le_ltl 
+0x6440 018628 branch eeprom_store_le_local_addr 
+:      018631 eeprom_load_reconn_info:
+0x6441 018632 set1 mark_ext_patch ,mark 
+0x6442 018633 bpatch patch31_2 ,mem_patch31 
+0x6443 018634 call eeprom_load_reconn_bdaddr 
+0x6444 018635 fetch 1 ,mem_select_list_item 
+0x6445 018636 rtneq 0xff 
+0x6446 018637 fetch 6 ,mem_temp_lap 
+0x6447 018638 store 6 ,mem_hci_plap 
+0x6448 018639 fetch 1 ,mem_record_bt_mode 
+0x6449 018640 store 1 ,mem_xrecord_mode 
+0x644a 018641 beq rec_3_mode ,eeprom_load_rec_3_mode 
+0x644b 018642 beq rec_4_mode ,eeprom_load_rec_4_mode 
+0x644c 018643 rtn 
+:      018644 eeprom_load_reconn_bdaddr:
+0x644d 018645 call eeprom_load_last_record_index 
+0x644e 018646 fetch 1 ,mem_select_list_item 
+0x644f 018647 rtneq 0xff 
+0x6450 018648 branch eeprom_load_remote_bdaddr 
+:      018649 eeprom_load_rec_3_mode:
+0x6451 018650 call eeprom_load_link_key 
+0x6452 018651 branch check_link_key_load 
+:      018652 eeprom_load_rec_4_mode:
+0x6453 018653 call eeprom_load_ltk_key 
+0x6454 018654 branch check_ltk_load 
+:      018658 eeprom_erase_reconn_info:
+0x6455 018659 set1 mark_ext_patch ,mark 
+0x6456 018660 bpatch patch31_4 ,mem_patch31 
+0x6457 018661 setarg 0x0 
+0x6458 018662 store 3 ,mem_plap 
+0x6459 018663 istore 3 ,contw 
+0x645a 018664 branch eeprom_store_remote_bdaddr 
+:      018666 eeprom_load_last_record_index:
+0x645b 018667 arg 1 ,temp 
+0x645c 018668 arg mem_select_list_item ,rega 
+0x645d 018669 arg eeprom_last_record ,regb 
+0x645e 018670 branch iicd_read_eep_data 
+:      018672 eeprom_store_last_record_index:
+0x645f 018673 arg 1 ,temp 
+0x6460 018674 arg mem_select_list_item ,rega 
+0x6461 018675 arg eeprom_last_record ,regb 
+0x6462 018676 branch iicd_write_eep_data 
+:      018679 eeprom_store_remote_bdaddr:
+0x6463 018680 set1 mark_ext_patch ,mark 
+0x6464 018681 bpatch patch31_5 ,mem_patch31 
+0x6465 018682 call eeprom_load_bdaddr_list 
+0x6466 018683 disable user 
+0x6467 018684 call find_addr_from_bd_list 
+0x6468 018685 rtn user 
+:      018686 eeprom_store_remote_addr_unfind:
+0x6469 018687 jam 0 ,mem_select_list_item 
+0x646a 018688 fetch 6 ,mem_temp_lap 
+0x646b 018689 store 6 ,mem_bdaddr_list_buff + 1 
+0x646c 018690 fetch 1 ,mem_record_bt_mode 
+0x646d 018691 store 1 ,mem_bdaddr_list_buff 
+0x646e 018692 arg 28 ,temp 
+0x646f 018693 arg mem_bdaddr_list_buff ,rega 
+0x6470 018694 arg eeprom_bdaddr_list ,regb 
+0x6471 018695 branch iicd_write_eep_data 
+:      018698 eeprom_store_le_local_addr:
+0x6472 018699 arg 6 ,temp 
+0x6473 018700 arg mem_le_lap ,rega 
+0x6474 018701 arg eeprom_le_reconn_local_addr ,regb 
+0x6475 018702 branch iicd_write_eep_data 
+:      018704 eeprom_load_le_loacal_addr:
+0x6476 018705 arg 6 ,temp 
+0x6477 018706 arg mem_le_lap ,rega 
+0x6478 018707 arg eeprom_le_reconn_local_addr ,regb 
+0x6479 018708 branch iicd_read_eep_data 
+:      018711 eeprom_load_remote_bdaddr:
+0x647a 018712 set1 mark_ext_patch ,mark 
+0x647b 018713 bpatch patch31_6 ,mem_patch31 
+0x647c 018714 arg 7 ,temp 
+0x647d 018715 arg mem_temp_reconn_record ,rega 
+0x647e 018716 arg eeprom_bdaddr_list ,regb 
+0x647f 018717 fetch 1 ,mem_select_list_item 
+0x6480 018718 mul32 pdata ,7 ,pdata 
+0x6481 018719 iadd regb ,regb 
+0x6482 018720 branch iicd_read_eep_data 
+:      018722 eeprom_linkkey_addr:
+0x6483 018723 arg 0x10 ,temp 
+0x6484 018724 arg eeprom_linkkey_list ,regb 
+0x6485 018725 fetch 1 ,mem_select_list_item 
+0x6486 018726 lshift4 pdata ,pdata 
+0x6487 018727 iadd regb ,regb 
+0x6488 018728 rtn 
+:      018730 eeprom_store_le_ltl:
+0x6489 018731 arg mem_le_ltk ,rega 
+0x648a 018732 branch eeprom_store_link_key_common 
+:      018733 eeprom_store_link_key:
+0x648b 018734 arg mem_link_key ,rega 
+:      018735 eeprom_store_link_key_common:
+0x648c 018736 set1 mark_ext_patch ,mark 
+0x648d 018737 bpatch patch31_7 ,mem_patch31 
+0x648e 018738 call eeprom_linkkey_addr 
+0x648f 018739 branch iicd_write_eep_data 
+:      018741 eeprom_load_ltk_key:
+0x6490 018742 arg mem_le_ltk ,rega 
+0x6491 018743 branch eeprom_load_link_key_common 
+:      018744 eeprom_load_link_key:
+0x6492 018745 arg mem_link_key ,rega 
+:      018746 eeprom_load_link_key_common:
+0x6493 018747 set1 mark_ext_patch ,mark 
+0x6494 018748 bpatch patch32_0 ,mem_patch32 
+0x6495 018749 call eeprom_linkkey_addr 
+0x6496 018750 branch iicd_read_eep_data 
+:      018754 eeprom_load_bdaddr_list:
+0x6497 018755 arg 28 ,temp 
+0x6498 018756 arg mem_bdaddr_list_buff + 7 ,rega 
+0x6499 018757 arg eeprom_bdaddr_list ,regb 
+0x649a 018758 branch iicd_read_eep_data 
+:      018761 find_addr_from_bd_list:
+0x649b 018762 set1 mark_ext_patch ,mark 
+0x649c 018763 bpatch patch32_1 ,mem_patch32 
+0x649d 018764 setarg mem_bdaddr_list_buff + 7 
+0x649e 018765 store 2 ,mem_list_item_ptr 
+0x649f 018766 jam 0 ,mem_select_list_item 
+0x64a0 018767 arg 4 ,loopcnt 
+:      018768 find_addr_from_list:
+0x64a1 018769 copy loopcnt ,pdata 
+0x64a2 018770 store 1 ,mem_pdatatemp 
+0x64a3 018771 fetch 2 ,mem_list_item_ptr 
+0x64a4 018772 copy pdata ,rega 
+0x64a5 018773 call find_addr_from_list_compare 
+0x64a6 018774 rtn user 
+0x64a7 018775 fetch 2 ,mem_list_item_ptr 
+0x64a8 018776 increase 7 ,pdata 
+0x64a9 018777 store 2 ,mem_list_item_ptr 
+0x64aa 018778 fetch 1 ,mem_select_list_item 
+0x64ab 018779 increase 1 ,pdata 
+0x64ac 018780 store 1 ,mem_select_list_item 
+0x64ad 018781 fetch 1 ,mem_pdatatemp 
+0x64ae 018782 copy pdata ,loopcnt 
+0x64af 018783 loop find_addr_from_list 
+0x64b0 018784 rtn 
+:      018787 check_link_key_load:
+0x64b1 018788 fetch 8 ,mem_link_key 
+0x64b2 018789 fetcht 8 ,mem_link_key + 8 
+0x64b3 018790 ior temp ,pdata 
+0x64b4 018791 rtn blank 
+0x64b5 018792 jam 1 ,mem_link_key_exists 
+0x64b6 018793 rtn 
+:      018794 check_ltk_load:
+0x64b7 018795 fetch 6 ,mem_hci_plap 
+0x64b8 018796 rtn blank 
+0x64b9 018797 jam 1 ,mem_ltk_exists 
+0x64ba 018798 rtn 
+:      018800 find_addr_from_list_compare:
+0x64bb 018801 arg mem_temp_reconn_record ,regb 
+0x64bc 018802 arg 7 ,loopcnt 
+0x64bd 018803 call string_compare 
+0x64be 018804 branch enable_usr ,zero 
+0x64bf 018805 rtn 
+:      018806 enable_usr:
+0x64c0 018807 enable user 
+0x64c1 018808 rtn 
+:      018815 gpio_set_wake_by_current_state:
+0x64c2 018816 set1 mark_ext_patch ,mark 
+0x64c3 018817 bpatch patch32_2 ,mem_patch32 
+0x64c4 018818 set1 7 ,temp 
+0x64c5 018819 call gpio_get_bit 
+0x64c6 018820 nsetflag true ,7 ,temp 
+:      018825 gpio_set_wake:
+0x64c7 018826 set1 mark_ext_patch ,mark 
+0x64c8 018827 bpatch patch32_3 ,mem_patch32 
+0x64c9 018828 isolate0 7 ,temp 
+0x64ca 018829 and temp ,0x1f ,queue 
+0x64cb 018830 fetch 4 ,mem_gpio_wakeup_low 
+0x64cc 018831 qsetflag true ,pdata 
+0x64cd 018832 store 4 ,mem_gpio_wakeup_low 
+0x64ce 018833 fetch 4 ,mem_gpio_wakeup_high 
+0x64cf 018834 nqsetflag true ,pdata 
+0x64d0 018835 store 4 ,mem_gpio_wakeup_high 
+0x64d1 018836 rtn 
+:      018839 gpio_clr_wake:
+0x64d2 018840 set1 mark_ext_patch ,mark 
+0x64d3 018841 bpatch patch32_4 ,mem_patch32 
+0x64d4 018842 isolate0 7 ,temp 
+0x64d5 018843 and temp ,0x1f ,queue 
+0x64d6 018844 fetch 4 ,mem_gpio_wakeup_low 
+0x64d7 018845 qset0 pdata 
+0x64d8 018846 store 4 ,mem_gpio_wakeup_low 
+0x64d9 018847 fetch 4 ,mem_gpio_wakeup_high 
+0x64da 018848 qset0 pdata 
+0x64db 018849 store 4 ,mem_gpio_wakeup_high 
+0x64dc 018850 rtn 
+:      018853 gpio_config_input_nowake:
+0x64dd 018854 call gpio_clr_wake 
+0x64de 018855 branch gpio_config_input_without_wake 
+:      018858 gpio_config_input:
+0x64df 018859 ncall gpio_set_wake ,wake 
+:      018861 gpio_config_input_without_wake:
+0x64e0 018862 arg core_gpio_pd0 ,contw 
+0x64e1 018863 call gpio_set_bit 
+0x64e2 018864 setflip gpio_active_bit ,temp 
+0x64e3 018865 arg core_gpio_pu0 ,contw 
+0x64e4 018866 call gpio_set_bit 
+0x64e5 018867 set0 gpio_active_bit ,temp 
+0x64e6 018868 arg core_gpio_oe0 ,contw 
+0x64e7 018869 branch gpio_set_bit 
+:      018872 gpio_config_output:
+0x64e8 018873 setflip gpio_active_bit ,temp 
+0x64e9 018874 call gpio_out 
+:      018875 gpio_config_output0:
+0x64ea 018876 set1 gpio_active_bit ,temp 
+0x64eb 018877 arg core_gpio_oe0 ,contw 
+0x64ec 018878 branch gpio_set_bit 
+:      018880 gpio_common:
+0x64ed 018881 and temp ,0x07 ,queue 
+0x64ee 018882 rshift3 temp ,pdata 
+0x64ef 018883 and_into 3 ,pdata 
+0x64f0 018884 iadd contw ,contw 
+0x64f1 018885 ifetch 1 ,contw 
+0x64f2 018886 rtn 
+:      018888 gpio_check_active:
+0x64f3 018889 arg core_gpio_out0 ,contw 
+0x64f4 018890 branch get_bit_common 
+:      018894 gpio_get_bit:
+0x64f5 018895 arg core_gpio_in ,contw 
+:      018896 get_bit_common:
+0x64f6 018897 call gpio_common 
+0x64f7 018898 isolate1 gpio_active_bit ,temp 
+0x64f8 018899 branch gpio_get_bit_reverse ,true 
+0x64f9 018900 qisolate0 pdata 
+0x64fa 018901 rtn 
+:      018902 gpio_get_bit_reverse:
+0x64fb 018903 qisolate1 pdata 
+0x64fc 018904 rtn 
+:      018906 gpio_out_inactive:
+0x64fd 018907 isolate1 7 ,null 
+0x64fe 018908 branch gpio_out_flag 
+:      018910 gpio_out_active:
+0x64ff 018911 isolate0 7 ,null 
+:      018914 gpio_out_flag:
+0x6500 018915 setarg 0 
+0x6501 018916 nsetflag true ,gpio_active_bit ,pdata 
+0x6502 018917 ixor temp ,temp 
+:      018920 gpio_out:
+0x6503 018921 arg core_gpio_out0 ,contw 
+:      018924 gpio_set_bit:
+0x6504 018925 call gpio_common 
+0x6505 018926 isolate1 gpio_active_bit ,temp 
+0x6506 018927 qsetflag true ,pdata 
+0x6507 018928 istore 1 ,contw 
+0x6508 018929 rtn 
+:      018931 gpio_set_before_lpm_common:
+0x6509 018932 arg -1 ,rega 
+0x650a 018933 hfetch 1 ,core_gpio_sel1 
+0x650b 018934 isolate1 1 ,pdata 
+0x650c 018935 call neglact4_from_23_pin ,true 
+0x650d 018937 and pdata ,0x3 ,regb 
+0x650e 018938 sub regb ,1 ,null 
+0x650f 018939 call neglact2_form_25_pin ,zero 
+0x6510 018941 isolate1 2 ,pdata 
+0x6511 018942 call neglect2_from_6_pin ,true 
+0x6512 018944 isolate1 3 ,pdata 
+0x6513 018945 call neglect4_from_9_pin ,true 
+0x6514 018947 isolate1 5 ,pdata 
+0x6515 018948 call neglact2_form_27_pin ,true 
+0x6516 018950 isolate1 6 ,pdata 
+0x6517 018951 arg 4 ,queue 
+0x6518 018952 call neglact_1_pin ,true 
+0x6519 018953 nsetflag true ,4 ,rega 
+0x651a 018955 isolate1 7 ,pdata 
+0x651b 018956 arg 5 ,queue 
+0x651c 018957 call neglact_1_pin ,true 
+0x651d 018959 hfetch 1 ,core_gpio_sel2 
+0x651e 018960 isolate1 0 ,pdata 
+0x651f 018961 arg 3 ,queue 
+0x6520 018962 call neglact_1_pin ,true 
+0x6521 018964 hfetcht 1 ,core_gpio_sel 
+0x6522 018965 isolate1 0 ,temp 
+0x6523 018966 arg 5 ,queue 
+0x6524 018967 call neglact_1_pin ,true 
+0x6525 018969 ior temp ,pdata 
+0x6526 018971 isolate1 1 ,pdata 
+0x6527 018972 arg 6 ,queue 
+0x6528 018973 call neglact_1_pin ,true 
+0x6529 018975 isolate1 2 ,pdata 
+0x652a 018976 arg 7 ,queue 
+0x652b 018977 call neglact_1_pin ,true 
+0x652c 018979 isolate1 3 ,pdata 
+0x652d 018980 arg 18 ,queue 
+0x652e 018981 call neglact_1_pin ,true 
+0x652f 018983 isolate1 4 ,pdata 
+0x6530 018984 arg 19 ,queue 
+0x6531 018985 call neglact_1_pin ,true 
+0x6532 018987 isolate1 5 ,pdata 
+0x6533 018988 arg 20 ,queue 
+0x6534 018989 call neglact_1_pin ,true 
+0x6535 018991 isolate1 6 ,pdata 
+0x6536 018992 arg 21 ,queue 
+0x6537 018993 call neglact_1_pin ,true 
+0x6538 018995 isolate1 7 ,pdata 
+0x6539 018996 arg 22 ,queue 
+0x653a 018997 call neglact_1_pin ,true 
+0x653b 018999 hfetch 1 ,core_uart_ctrl 
+0x653c 019000 isolate1 4 ,pdata 
+0x653d 019001 call neglact2_form_2_pin ,true 
+0x653e 019002 set1 mark_ext_patch ,mark 
+0x653f 019003 bpatch patch32_5 ,mem_patch32 
+0x6540 019005 hfetch 4 ,core_gpio_pu0 
+0x6541 019006 hfetcht 4 ,core_gpio_pd0 
+0x6542 019007 ior temp ,pdata 
+0x6543 019008 invert pdata ,pdata 
+0x6544 019009 iand rega ,pdata 
+0x6545 019011 hfetcht 4 ,core_gpio_pd0 
+0x6546 019012 ior temp ,pdata 
+0x6547 019013 hstore 4 ,core_gpio_pd0 
+0x6548 019014 rtn 
+:      019015 neglect2_from_6_pin:
+0x6549 019016 arg 6 ,queue 
+0x654a 019017 branch neglect_2_pin 
+:      019018 neglect4_from_9_pin:
+0x654b 019019 arg 9 ,queue 
+0x654c 019020 branch neglact_4_pin 
+:      019021 neglact4_from_23_pin:
+0x654d 019022 arg 23 ,queue 
+0x654e 019023 branch neglact_4_pin 
+:      019024 neglact2_form_25_pin:
+0x654f 019025 arg 25 ,queue 
+0x6550 019026 branch neglect_2_pin 
+:      019027 neglact2_form_27_pin:
+0x6551 019028 arg 27 ,queue 
+0x6552 019029 branch neglect_2_pin 
+:      019030 neglact2_form_2_pin:
+0x6553 019031 arg 2 ,queue 
+0x6554 019032 branch neglect_2_pin 
+:      019033 neglact_1_pin:
+0x6555 019034 arg 1 ,loopcnt 
+0x6556 019035 branch neglect_pin_loop 
+:      019036 neglact_4_pin:
+0x6557 019037 arg 4 ,loopcnt 
+0x6558 019038 branch neglect_pin_loop 
+:      019039 neglect_2_pin:
+0x6559 019040 arg 2 ,loopcnt 
+:      019041 neglect_pin_loop:
+0x655a 019042 qset0 rega 
+0x655b 019043 increase 1 ,queue 
+0x655c 019044 loop neglect_pin_loop 
+0x655d 019045 rtn 
+:      019053 gpio_cfg_uart_tx_output:
+0x655e 019054 call gpio_uart2gpio 
+0x655f 019055 arg uart_wakeup_tx ,temp 
+0x6560 019056 branch gpio_config_output 
+:      019058 gpio_pu_uart_tx:
+0x6561 019059 call gpio_cfg_uart_tx_output 
+0x6562 019060 arg uart_wakeup_tx ,temp 
+0x6563 019061 branch gpio_out_inactive 
+:      019065 gpio_rx_config_input_with_pu:
+0x6564 019066 call gpio_uart2gpio 
+0x6565 019067 hfetch 1 ,core_gpio_pu0 
+0x6566 019068 set1 uart_wakeup_rx ,pdata 
+0x6567 019069 hstore 1 ,core_gpio_pu0 
+0x6568 019070 arg uart_wakeup_rx ,temp 
+0x6569 019071 branch gpio_config_input 
+:      019073 gpio_uart2gpio:
+0x656a 019074 hfetch 1 ,core_gpio_sel1 
+0x656b 019075 and_into 0xfb ,pdata 
+0x656c 019076 hstore 1 ,core_gpio_sel1 
+0x656d 019077 rtn 
+:      019079 gpio_check_uart_state:
+0x656e 019080 hfetch 1 ,core_gpio_sel1 
+0x656f 019081 isolate1 2 ,pdata 
+0x6570 019082 rtn 
+:      019084 load_chip_option:
+0x6571 019085 call otp_enable_chgpump 
+0x6572 019086 setarg otp_chip_functions 
+0x6573 019087 arg mem_chip_functions ,rega 
+0x6574 019088 arg 0x02 ,temp 
+0x6575 019089 call otpd_read_data 
+0x6576 019090 branch otp_disable_chgpump 
+:      019094 adc_init_data:
+0x6577 019095 set1 mark_ext_patch ,mark 
+0x6578 019096 bpatch patch32_6 ,mem_patch32 
+0x6579 019098 call otp_enable_chgpump 
+0x657a 019099 setarg otp_adc_io_0_5v_addr 
+0x657b 019100 arg mem_0_5_adc_io_data ,rega 
+0x657c 019101 arg 14 ,temp 
+0x657d 019102 call otpd_read_data 
+0x657e 019103 call otp_disable_chgpump 
+0x657f 019105 fetch 1 ,mem_adc_config_flag 
+0x6580 019106 bbit1 adc_config_vinlpm ,adc_init_data_vinlpm 
+0x6581 019107 bbit1 adc_config_hvin ,adc_init_data_hvin 
+0x6582 019108 bbit1 adc_config_gpio ,adc_init_data_io 
+0x6583 019109 rtn 
+:      019111 adc_init_data_vinlpm:
+0x6584 019112 fetcht 2 ,mem_otp_adc_flag 
+0x6585 019113 setarg otp_adc_flag 
+0x6586 019114 isub temp ,null 
+0x6587 019115 branch adc_check_data_vinlpm ,zero 
+0x6588 019116 setarg 0x4dfa 
+0x6589 019117 store 2 ,mem_3v_adc_vinlpm_data 
+0x658a 019118 setarg 0x4894 
+0x658b 019119 store 2 ,mem_2v_adc_vinlpm_data 
+0x658c 019120 branch set_vdd_reference_voltage_1v 
+:      019122 adc_check_data_vinlpm:
+0x658d 019123 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x658e 019124 nbranch adc_check_2v_vinlpm ,blank 
+0x658f 019125 setarg 0x4dfa 
+0x6590 019126 store 2 ,mem_3v_adc_vinlpm_data 
+:      019127 adc_check_2v_vinlpm:
+0x6591 019128 fetch 2 ,mem_2v_adc_vinlpm_data 
+0x6592 019129 nbranch set_vdd_reference_voltage_1v ,blank 
+0x6593 019130 setarg 0x4894 
+0x6594 019131 store 2 ,mem_2v_adc_vinlpm_data 
+:      019132 set_vdd_reference_voltage_1v:
+0x6595 019133 setarg 100 
+0x6596 019134 store 2 ,mem_reference_voltage 
+0x6597 019135 rtn 
+:      019137 adc_init_data_hvin:
+0x6598 019138 fetcht 2 ,mem_otp_adc_flag 
+0x6599 019139 setarg otp_adc_flag 
+0x659a 019140 isub temp ,null 
+0x659b 019141 branch adc_check_data_hvin ,zero 
+0x659c 019142 setarg 0x5932 
+0x659d 019143 store 2 ,mem_5v_adc_hvin_data 
+0x659e 019144 setarg 0x4323 
+0x659f 019145 store 2 ,mem_1v_adc_hvin_data 
+0x65a0 019146 branch set_vdd_reference_voltage_4v 
+:      019148 adc_check_data_hvin:
+0x65a1 019149 fetch 2 ,mem_5v_adc_hvin_data 
+0x65a2 019150 nbranch adc_check_1v_hvin ,blank 
+0x65a3 019151 setarg 0x5932 
+0x65a4 019152 store 2 ,mem_5v_adc_hvin_data 
+:      019153 adc_check_1v_hvin:
+0x65a5 019154 fetch 2 ,mem_1v_adc_hvin_data 
+0x65a6 019155 nbranch set_vdd_reference_voltage_4v ,blank 
+0x65a7 019156 setarg 0x4323 
+0x65a8 019157 store 2 ,mem_1v_adc_hvin_data 
+:      019158 set_vdd_reference_voltage_4v:
+0x65a9 019159 setarg 400 
+0x65aa 019160 store 2 ,mem_reference_voltage 
+0x65ab 019161 rtn 
+:      019163 adc_init_data_io:
+0x65ac 019164 fetcht 2 ,mem_otp_adc_flag 
+0x65ad 019165 setarg otp_adc_flag 
+0x65ae 019166 isub temp ,null 
+0x65af 019167 branch adc_check_data_io ,zero 
+0x65b0 019168 setarg 0x6946 
+0x65b1 019169 store 2 ,mem_1v_adc_io_data 
+0x65b2 019170 setarg 0x5377 
+0x65b3 019171 store 2 ,mem_0_5_adc_io_data 
+0x65b4 019172 branch set_vdd_reference_voltage_0_5v 
+:      019174 adc_check_data_io:
+0x65b5 019175 fetch 2 ,mem_1v_adc_io_data 
+0x65b6 019176 nbranch adc_check_0_5v_io ,blank 
+0x65b7 019177 setarg 0x6946 
+0x65b8 019178 store 2 ,mem_1v_adc_io_data 
+:      019179 adc_check_0_5v_io:
+0x65b9 019180 fetch 2 ,mem_0_5_adc_io_data 
+0x65ba 019181 nbranch set_vdd_reference_voltage_0_5v ,blank 
+0x65bb 019182 setarg 0x5377 
+0x65bc 019183 store 2 ,mem_0_5_adc_io_data 
+:      019184 set_vdd_reference_voltage_0_5v:
+0x65bd 019185 setarg 50 
+0x65be 019186 store 2 ,mem_reference_voltage 
+0x65bf 019187 rtn 
+:      019190 adc_set_mode:
+0x65c0 019191 fetch 1 ,mem_adc_config_flag 
+0x65c1 019192 bbit1 adc_config_vinlpm ,adc_check_vinlpm 
+0x65c2 019193 bbit1 adc_config_hvin ,adc_check_hvin 
+0x65c3 019194 bbit1 adc_config_gpio ,adc_check_gpio 
+0x65c4 019195 rtn 
+:      019196 adc_check_vinlpm:
+0x65c5 019197 hjam 0xbf ,rf_adc_mode 
+0x65c6 019198 branch read_adc 
+:      019199 adc_check_hvin:
+0x65c7 019200 hjam 0xaf ,rf_adc_mode 
+0x65c8 019201 branch read_adc 
+:      019202 adc_check_gpio:
+0x65c9 019203 hjam 0x8f ,rf_adc_mode 
+0x65ca 019204 fetch 1 ,mem_adc_channel 
+0x65cb 019205 hstore 1 ,rf_adc_ch 
+0x65cc 019206 branch read_adc 
+:      019207 read_adc:
+0x65cd 019208 set1 mark_ext_patch ,mark 
+0x65ce 019209 bpatch patch32_7 ,mem_patch32 
+0x65cf 019210 hfetch 1 ,core_uart_baud + 1 
+0x65d0 019211 set1 7 ,pdata 
+0x65d1 019212 hstore 1 ,core_uart_baud + 1 
+0x65d2 019213 hfetch 1 ,rf_adc_ch 
+0x65d3 019214 or_into 0x30 ,pdata 
+0x65d4 019215 hstore 1 ,rf_adc_ch 
+0x65d5 019216 hjam 0x7c ,rfen_adc 
+0x65d6 019217 hjam 0xaa ,rf_adc_gc 
+0x65d7 019218 nop 5000 
+0x65d8 019219 hfetcht 2 ,core_adc_sum 
+0x65d9 019220 hfetch 1 ,core_uart_baud + 1 
+0x65da 019221 set0 7 ,pdata 
+0x65db 019222 hstore 1 ,core_uart_baud + 1 
+0x65dc 019223 storet 2 ,mem_adc_current_value 
+0x65dd 019224 rtn 
+:      019226 vdd_calculate_by_mode:
+0x65de 019227 set1 mark_ext_patch ,mark 
+0x65df 019228 bpatch patch33_0 ,mem_patch33 
+0x65e0 019229 fetch 1 ,mem_adc_config_flag 
+0x65e1 019230 bbit1 adc_config_vinlpm ,vdd_calculate_vinlpm 
+0x65e2 019231 bbit1 adc_config_hvin ,vdd_calculate_hvin 
+0x65e3 019232 bbit1 adc_config_gpio ,vdd_calculate_io 
+0x65e4 019233 rtn 
+:      019235 vdd_calculate_vinlpm:
+0x65e5 019236 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x65e6 019237 fetcht 2 ,mem_2v_adc_vinlpm_data 
+0x65e7 019238 arg 200 ,regc 
+0x65e8 019239 branch vdd_calculate 
+:      019241 vdd_calculate_hvin:
+0x65e9 019242 fetch 2 ,mem_5v_adc_hvin_data 
+0x65ea 019243 fetcht 2 ,mem_1v_adc_hvin_data 
+0x65eb 019244 arg 100 ,regc 
+0x65ec 019245 branch vdd_calculate 
+:      019247 vdd_calculate_io:
+0x65ed 019248 fetch 2 ,mem_1v_adc_io_data 
+0x65ee 019249 fetcht 2 ,mem_0_5_adc_io_data 
+0x65ef 019250 arg 50 ,regc 
+0x65f0 019251 branch vdd_calculate 
+:      019253 vdd_calculate:
+0x65f1 019254 isub temp ,rega 
+0x65f2 019255 fetch 2 ,mem_adc_current_value 
+0x65f3 019256 isub temp ,pdata 
+0x65f4 019257 nbranch vdd_calculate1 ,positive 
+0x65f5 019258 fetcht 2 ,mem_reference_voltage 
+0x65f6 019259 imul32 temp ,regb 
+0x65f7 019260 copy regc ,pdata 
+0x65f8 019261 imul32 rega ,pdata 
+0x65f9 019262 iadd regb ,pdata 
+:      019263 vdd_calculate2:
+0x65fa 019264 idiv rega 
+0x65fb 019265 call wait_div_end 
+0x65fc 019266 quotient pdata 
+0x65fd 019267 rtn 
+:      019269 vdd_calculate1:
+0x65fe 019270 copy temp ,pdata 
+0x65ff 019271 fetcht 2 ,mem_adc_current_value 
+0x6600 019272 isub temp ,pdata 
+0x6601 019273 fetcht 2 ,mem_reference_voltage 
+0x6602 019274 imul32 temp ,regb 
+0x6603 019275 copy regc ,pdata 
+0x6604 019276 imul32 rega ,pdata 
+0x6605 019277 isub regb ,pdata 
+0x6606 019278 branch vdd_calculate2 
+:      019283 rfcomm_init:
+0x6607 019284 rtn wake 
+0x6608 019285 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6609 019286 jam bits9600 ,memremoterpnbitrate 
+0x660a 019287 jam databits8 ,memremoteprndatabits 
+0x660b 019288 jam 0x11 ,memremoteprnxon 
+0x660c 019289 jam 0x13 ,memremoteprnxoff 
+0x660d 019290 setarg 0 
+0x660e 019291 store 3 ,memremoteprnstopbit 
+0x660f 019292 store 1 ,mem_spp_state 
+0x6610 019293 jam 0 ,memui_reconnect_mode 
+:      019295 rfcomm_init_spp:
+0x6611 019296 set1 mark_ext_patch ,mark 
+0x6612 019297 bpatch patch33_1 ,mem_patch33 
+0x6613 019298 setarg 0 
+0x6614 019299 store 1 ,mem_spp_state 
+0x6615 019300 store 1 ,mem_remote_spp_channel 
+0x6616 019301 store 1 ,mem_pn_dlci 
+0x6617 019302 fetch 1 ,mem_credit_flag 
+0x6618 019303 beq credit_enable ,rfcomm_init_spp_with_credit 
+0x6619 019304 jam 0x50 ,mem_credit_given 
+0x661a 019305 rtn 
+:      019307 rfcomm_init_spp_with_credit:
+0x661b 019308 jam 0x00 ,mem_credit_given 
+0x661c 019309 rtn 
+:      019311 set_cr_bit:
+0x661d 019312 or_into 0x02 ,temp 
+0x661e 019313 rtn 
+:      019325 rfcomm_calculate_fcs_sabm:
+0x661f 019326 copy temp ,pdata 
+0x6620 019327 reverse pdata ,pdata 
+0x6621 019328 store 1 ,memfcstemp3 
+0x6622 019329 force ini_tx_sabm ,pdata 
+0x6623 019330 reverse pdata ,pdata 
+0x6624 019331 store 1 ,memfcstemp2 
+0x6625 019332 force 0x01 ,pdata 
+0x6626 019333 reverse pdata ,pdata 
+0x6627 019334 store 1 ,memfcstemp1 
+0x6628 019335 call caculate_fcs 
+0x6629 019336 copy temp ,pdata 
+0x662a 019337 rtn 
+:      019338 rfcomm_calculate_fcs_ua:
+0x662b 019339 reverse pdata ,pdata 
+0x662c 019340 store 1 ,memfcstemp3 
+0x662d 019341 force rsp_tx_ua ,pdata 
+0x662e 019342 reverse pdata ,pdata 
+0x662f 019343 store 1 ,memfcstemp2 
+0x6630 019344 force 0x01 ,pdata 
+0x6631 019345 reverse pdata ,pdata 
+0x6632 019346 store 1 ,memfcstemp1 
+0x6633 019347 branch caculate_fcs 
+:      019349 rfcomm_calculate_fcs_dlci0:
+0x6634 019350 fetch 1 ,mem_rfcomm_initiator 
+0x6635 019351 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+0x6636 019352 setarg 0x70 
+0x6637 019353 rtn 
+:      019354 rfcomm_calculate_fcs_dlci0_res:
+0x6638 019355 setarg 0xaa 
+0x6639 019356 rtn 
+:      019358 rfcomm_save_fcs_uih:
+0x663a 019359 reverse pdata ,pdata 
+0x663b 019360 store 1 ,memfcstemp3 
+0x663c 019361 force rsp_rx_uih ,pdata 
+0x663d 019362 call caculate_uihdata_fcs 
+0x663e 019363 fetcht 2 ,mem_contw_temp 
+0x663f 019364 copy temp ,contw 
+0x6640 019365 istore 1 ,contw 
+0x6641 019366 copy contw ,temp 
+0x6642 019367 storet 2 ,mem_contw_temp 
+0x6643 019368 force rsp_rx_uih_wdata ,pdata 
+0x6644 019369 call caculate_uihdata_fcs 
+0x6645 019370 fetcht 2 ,mem_contw_temp 
+0x6646 019371 copy temp ,contw 
+0x6647 019372 istore 1 ,contw 
+0x6648 019373 rtn 
+:      019382 caculate_uihdata_fcs:
+0x6649 019383 reverse pdata ,pdata 
+0x664a 019384 store 1 ,memfcstemp2 
+0x664b 019385 fetch 2 ,memfcstemp2 
+0x664c 019386 lshift8 pdata ,pdata 
+0x664d 019387 store 3 ,mem_mod2div_temp 
+0x664e 019388 arg 0x107 ,rega 
+0x664f 019389 arg 0xf ,regb 
+0x6650 019390 call mod2div 
+0x6651 019391 xor_into 0xd7 ,pdata 
+0x6652 019392 invert pdata ,pdata 
+0x6653 019393 reverse pdata ,pdata 
+0x6654 019394 rtn 
+:      019404 caculate_fcs:
+0x6655 019405 fetch 3 ,memfcstemp1 
+0x6656 019406 store 3 ,mem_mod2div_temp 
+0x6657 019407 arg 0x107 ,rega 
+0x6658 019408 arg 0xf ,regb 
+0x6659 019409 call mod2div 
+0x665a 019410 lshift8 pdata ,pdata 
+0x665b 019411 arg 0x7 ,regb 
+0x665c 019412 call mod2div 
+0x665d 019413 xor_into 0x2b ,pdata 
+0x665e 019414 invert pdata ,pdata 
+0x665f 019415 reverse pdata ,pdata 
+0x6660 019416 copy pdata ,temp 
+0x6661 019417 rtn 
+:      019419 mod2div:
+0x6662 019420 arg 0 ,regc 
+0x6663 019421 copy regb ,loopcnt 
+0x6664 019422 call right_shift_n 
+0x6665 019423 icopy temp 
+:      019424 mod2div_loop:
+0x6666 019429 copy temp ,pdata 
+0x6667 019430 lshift regc ,regc 
+0x6668 019431 bbit0 8 ,mod2div_not_enough_reduction 
+0x6669 019432 ixor rega ,temp 
+0x666a 019433 increase 1 ,regc 
+:      019434 mod2div_not_enough_reduction:
+0x666b 019435 lshift temp ,temp 
+0x666c 019436 fetch 3 ,mem_mod2div_temp 
+0x666d 019437 increase -1 ,regb 
+0x666e 019438 compare 0xff ,regb ,0xff 
+0x666f 019439 branch mod2div_end ,true 
+0x6670 019440 copy regb ,loopcnt 
+0x6671 019441 call right_shift_n 
+0x6672 019442 isolate1 0 ,pdata 
+0x6673 019443 setflag true ,0 ,temp 
+0x6674 019444 branch mod2div_loop 
+:      019445 mod2div_end:
+0x6675 019447 rshift temp ,pdata 
+0x6676 019448 rtn 
+:      019450 get_rfcomm_snd_adss:
+0x6677 019451 fetcht 1 ,mem_pn_dlci 
+:      019452 dlci_to_address_cmd:
+0x6678 019454 lshift2 temp ,temp 
+0x6679 019455 set1 rfcomm_address_ext_len ,temp 
+0x667a 019456 fetch 1 ,mem_rfcomm_initiator 
+0x667b 019457 ncall set_cr_bit ,blank 
+0x667c 019458 storet 1 ,mem_rfcomm_send_adss 
+0x667d 019459 rtn 
+:      019461 channel_to_dlci:
+0x667e 019463 lshift temp ,temp 
+0x667f 019464 fetch 1 ,mem_rfcomm_initiator 
+0x6680 019465 setflag blank ,0 ,temp 
+0x6681 019467 rtn 
+:      019468 rfcomm_rx_process_dlci0_sabm:
+0x6682 019469 fetcht 1 ,mem_current_channel 
+0x6683 019470 jam 0xd7 ,mem_current_fcs 
+0x6684 019471 call rfcomm_send_ua 
+0x6685 019472 fetch 1 ,mem_rfcomm_state 
+0x6686 019473 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6687 019474 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6688 019475 store 1 ,mem_rfcomm_state 
+0x6689 019476 jam 0 ,mem_rfcomm_initiator 
+0x668a 019477 branch rfcomm_rx_process_end 
+:      019478 rfcomm_rx_process_dlci0_ua:
+0x668b 019479 fetch 1 ,mem_rfcomm_state 
+0x668c 019480 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x668d 019481 store 1 ,mem_rfcomm_state 
+0x668e 019482 branch rfcomm_rx_process_end 
+:      019485 rfcomm_rx_process:
+0x668f 019486 set1 mark_ext_patch ,mark 
+0x6690 019487 bpatch patch33_2 ,mem_patch33 
+0x6691 019488 fetch 1 ,memui_reconnect_mode 
+0x6692 019489 beq no_reconnection ,rfcomm_rx_process_remote_page 
+0x6693 019490 branch rfcomm_rx_process_reconn 
+:      019492 rfcomm_rx_process_remote_page:
+0x6694 019493 fetch 2 ,mem_l2cap_payload_ptr 
+0x6695 019494 copy pdata ,contr 
+0x6696 019495 call get_rfcomm_head_struct 
+0x6697 019496 fetch 1 ,mem_current_channel 
+0x6698 019497 beq 0 ,parse_dlci0_rp 
+0x6699 019498 branch parse_uih_rp 
+:      019499 parse_dlci0_rp:
+0x669a 019500 set1 mark_ext_patch ,mark 
+0x669b 019501 bpatch patch33_3 ,mem_patch33 
+0x669c 019502 fetch 1 ,mem_current_frame_type 
+0x669d 019503 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x669e 019504 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x669f 019505 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+0x66a0 019506 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn_send_event 
+0x66a1 019507 rtn 
+:      019510 parse_dlci0_rp_uih:
+0x66a2 019511 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x66a3 019512 copy pdata ,contr 
+0x66a4 019513 call get_rfcomm_uih_head_struct 
+0x66a5 019514 fetch 1 ,mem_uih_cmd_type 
+0x66a6 019515 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+0x66a7 019516 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+0x66a8 019517 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+0x66a9 019518 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+0x66aa 019519 beq uih_param_cmd_remove_port ,parse_dlci0_rp_uih_cmd_port 
+0x66ab 019520 branch rfcomm_rx_process_end 
+:      019522 parse_dlci0_rp_uih_pn_cmd:
+0x66ac 019523 call parse_dlci0_rp_uih_pn_res_common 
+0x66ad 019525 branch parse_dlci0_rp_uih_pn_cmd_spp 
+:      019527 parse_dlci0_rp_uih_pn_cmd_spp:
+0x66ae 019528 fetch 1 ,mem_spp_state 
+0x66af 019529 set1 rfcomm_channel_state_pn_cmd ,pdata 
+0x66b0 019530 set1 rfcomm_channel_state_pn_res ,pdata 
+0x66b1 019531 store 1 ,mem_spp_state 
+0x66b2 019532 call rfcomm_send_param_neg_res 
+0x66b3 019533 branch rfcomm_rx_process_end 
+:      019535 parse_dlci0_rp_uih_pn_res:
+0x66b4 019536 call parse_dlci0_rp_uih_pn_res_common 
+0x66b5 019537 branch rfcomm_rx_process_end 
+:      019539 parse_dlci0_rp_uih_pn_res_common:
+0x66b6 019540 call get_param_payload_ptr 
+0x66b7 019541 branch get_rfcomm_prarmer_negotiation 
+:      019543 get_rfcomm_param_modem_status:
+0x66b8 019544 call get_param_payload_ptr 
+0x66b9 019545 ifetch 1 ,contr 
+0x66ba 019546 rshift3 pdata ,pdata 
+0x66bb 019547 store 1 ,mem_ms_channel 
+0x66bc 019548 ifetch 1 ,contr 
+0x66bd 019549 store 1 ,mem_ms_param 
+0x66be 019550 rtn 
+:      019553 get_rfcomm_head_struct:
+0x66bf 019554 ifetch 1 ,contr 
+0x66c0 019555 store 1 ,mem_current_adss 
+0x66c1 019556 rshift3 pdata ,pdata 
+0x66c2 019557 store 1 ,mem_current_channel 
+0x66c3 019558 ifetch 1 ,contr 
+0x66c4 019559 store 1 ,mem_current_frame_type 
+:      019560 get_rfcomm_current_length:
+0x66c5 019561 call get_rfcomm_length_common 
+0x66c6 019562 storet 2 ,mem_current_length 
+0x66c7 019563 copy contr ,pdata 
+0x66c8 019564 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x66c9 019565 rtn 
+:      019567 get_rfcomm_uih_head_struct:
+0x66ca 019568 ifetch 1 ,contr 
+0x66cb 019569 rshift pdata ,pdata 
+0x66cc 019570 store 1 ,mem_uih_cmd_type 
+0x66cd 019571 call get_rfcomm_length_common 
+0x66ce 019572 storet 2 ,mem_uih_length 
+0x66cf 019573 copy contr ,pdata 
+0x66d0 019574 store 2 ,mem_param_payload_ptr 
+0x66d1 019575 rtn 
+:      019578 get_param_payload_ptr:
+0x66d2 019579 fetch 2 ,mem_param_payload_ptr 
+0x66d3 019580 copy pdata ,contr 
+0x66d4 019581 rtn 
+:      019583 get_rfcomm_length_common:
+0x66d5 019584 ifetch 1 ,contr 
+0x66d6 019585 copy pdata ,temp 
+0x66d7 019586 rshift temp ,temp 
+0x66d8 019587 rtnbit1 0 
+0x66d9 019588 ifetch 1 ,contr 
+0x66da 019589 lshift3 pdata ,pdata 
+0x66db 019590 lshift4 pdata ,pdata 
+0x66dc 019591 iadd temp ,temp 
+0x66dd 019592 rtn 
+:      019594 get_rfcomm_prarmer_negotiation:
+0x66de 019595 ifetch 1 ,contr 
+0x66df 019596 store 1 ,mem_pn_dlci 
+0x66e0 019597 ifetch 1 ,contr 
+0x66e1 019598 store 1 ,mem_pn_credit_flow_type_info 
+0x66e2 019599 ifetch 1 ,contr 
+0x66e3 019600 store 1 ,mem_pn_priority 
+0x66e4 019601 ifetch 1 ,contr 
+0x66e5 019602 store 1 ,mem_pn_acknowledg_timer 
+0x66e6 019603 ifetch 2 ,contr 
+0x66e7 019604 store 2 ,mem_pn_max_frame_size 
+0x66e8 019605 ifetch 1 ,contr 
+0x66e9 019606 store 1 ,mem_pn_max_retrans 
+0x66ea 019607 ifetch 1 ,contr 
+0x66eb 019608 store 1 ,mem_remote_credits 
+0x66ec 019609 rtn 
+:      019612 parse_dlci0_rp_uih_ms_cmd:
+0x66ed 019613 call get_rfcomm_param_modem_status 
+0x66ee 019615 branch parse_dlci0_rp_uih_ms_cmd_spp 
+:      019617 parse_dlci0_rp_uih_ms_cmd_spp:
+0x66ef 019618 fetch 1 ,mem_spp_state 
+0x66f0 019619 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x66f1 019620 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x66f2 019621 store 1 ,mem_spp_state 
+0x66f3 019622 fetcht 1 ,mem_pn_dlci 
+0x66f4 019623 lshift2 temp ,temp 
+0x66f5 019624 or_into 3 ,temp 
+0x66f6 019625 call rfcomm_send_modem_status_res 
+0x66f7 019626 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+0x66f8 019627 branch rfcomm_rx_process_end 
+:      019629 parse_dlci0_rp_uih_ms_res:
+0x66f9 019630 jam bt_evt_spp_connected ,mem_fifo_temp 
+0x66fa 019631 call ui_ipc_send_event 
+0x66fb 019632 call get_rfcomm_param_modem_status 
+0x66fc 019633 fetch 1 ,mem_ms_channel 
+0x66fd 019634 sub pdata ,1 ,null 
+0x66fe 019635 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+0x66ff 019636 branch assert 
+:      019637 parse_dlci0_rp_uih_ms_res_spp:
+0x6700 019638 fetch 1 ,mem_spp_state 
+0x6701 019639 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6702 019640 store 1 ,mem_spp_state 
+0x6703 019641 branch rfcomm_rx_process_end 
+:      019643 parse_dlci0_rp_uih_cmd_port:
+0x6704 019644 call get_param_payload_ptr 
+0x6705 019645 ifetch 1 ,contr 
+0x6706 019646 store 1 ,mem_rpn_dlci 
+0x6707 019647 call l2cap_malloc_rfcomm_channel 
+0x6708 019648 call l2cap_get_rfcomm_tx_buff 
+0x6709 019649 setarg 0x000e 
+0x670a 019650 istore 2 ,contw 
+0x670b 019651 fetch 2 ,mem_rfcomm_remote_cid 
+0x670c 019652 istore 2 ,contw 
+0x670d 019653 fetch 1 ,mem_rfcomm_initiator 
+0x670e 019655 lshift pdata ,pdata 
+0x670f 019656 set1 0 ,pdata 
+0x6710 019657 istore 1 ,contw 
+0x6711 019658 set1 mark_ext_patch ,mark 
+0x6712 019659 bpatch patch33_4 ,mem_patch33 
+0x6713 019660 setarg 0x15ef 
+0x6714 019661 istore 2 ,contw 
+0x6715 019662 setarg 0x1191 
+0x6716 019663 istore 2 ,contw 
+0x6717 019666 fetch 1 ,mem_rpn_dlci 
+0x6718 019667 istore 1 ,contw 
+0x6719 019668 setarg 0x000007 
+0x671a 019669 istore 5 ,contw 
+0x671b 019672 setarg 0x01 
+0x671c 019673 istore 2 ,contw 
+0x671d 019676 call rfcomm_calculate_fcs_dlci0 
+0x671e 019677 istore 1 ,contw 
+0x671f 019678 rtn 
+:      019682 parse_uih_rp:
+0x6720 019683 branch parse_uih_rp_spp 
+:      019685 parse_uih_rp_spp:
+0x6721 019686 set1 mark_ext_patch ,mark 
+0x6722 019687 bpatch patch33_5 ,mem_patch33 
+0x6723 019688 fetch 1 ,mem_current_frame_type 
+0x6724 019689 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+0x6725 019690 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+0x6726 019691 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6727 019692 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6728 019693 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+0x6729 019694 rtn 
+:      019695 parse_uih_rp_spp_ua:
+0x672a 019696 fetch 1 ,mem_spp_state 
+0x672b 019697 set1 rfcomm_channel_state_ua ,pdata 
+0x672c 019698 store 1 ,mem_spp_state 
+0x672d 019699 branch rfcomm_rx_process_end 
+:      019700 parse_uih_rp_spp_sabm:
+0x672e 019701 fetch 1 ,mem_spp_state 
+0x672f 019702 set1 rfcomm_channel_state_ua ,pdata 
+0x6730 019703 set1 rfcomm_channel_state_sabm ,pdata 
+0x6731 019704 store 1 ,mem_spp_state 
+0x6732 019705 fetch 1 ,mem_current_adss 
+0x6733 019706 call rfcomm_calculate_fcs_ua 
+0x6734 019707 store 1 ,mem_current_fcs 
+0x6735 019708 call rfcomm_send_ua 
+0x6736 019709 fetch 1 ,mem_current_adss 
+0x6737 019710 rshift2 pdata ,pdata 
+0x6738 019711 store 1 ,mem_pn_dlci 
+0x6739 019712 lshift2 pdata ,pdata 
+0x673a 019713 set0 rfcomm_address_cr ,pdata 
+0x673b 019714 set1 rfcomm_address_ext_len ,pdata 
+0x673c 019715 arg mem_hiufcs_spp ,temp 
+0x673d 019716 storet 2 ,mem_contw_temp 
+0x673e 019717 call rfcomm_save_fcs_uih 
+0x673f 019718 branch rfcomm_rx_process_end 
+:      019720 parse_uih_spp_uih_credits:
+0x6740 019721 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6741 019722 copy pdata ,contr 
+0x6742 019723 increase 1 ,pdata 
+0x6743 019724 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6744 019725 ifetch 1 ,contr 
+0x6745 019726 fetcht 1 ,mem_remote_credits 
+0x6746 019727 iadd temp ,pdata 
+0x6747 019728 store 1 ,mem_remote_credits 
+:      019729 parse_uih_spp_uih:
+0x6748 019730 call rfcomm_increase_credit_given 
+:      019731 parse_uih_spp_uih_cont:
+0x6749 019732 call get_rfcomm_snd_adss 
+0x674a 019733 call rfcomm_send_uih_without_payload 
+0x674b 019734 call spp_process_rx_data 
+0x674c 019735 branch rfcomm_rx_process_end 
+:      019737 parse_uih_rp_spp_disconn_send_event:
+0x674d 019738 jam bt_evt_spp_disconnected ,mem_fifo_temp 
+0x674e 019739 call ui_ipc_send_event 
+:      019740 parse_uih_rp_spp_disconn:
+0x674f 019741 call rfcomm_init_spp 
+0x6750 019742 fetch 1 ,mem_current_adss 
+0x6751 019743 call rfcomm_calculate_fcs_ua 
+0x6752 019744 store 1 ,mem_current_fcs 
+0x6753 019745 call rfcomm_send_ua 
+0x6754 019746 branch rfcomm_rx_process_end 
+:      019751 rfcomm_rx_process_reconn:
+0x6755 019752 fetch 2 ,mem_l2cap_payload_ptr 
+0x6756 019753 copy pdata ,contr 
+0x6757 019754 call get_rfcomm_head_struct 
+0x6758 019755 fetch 1 ,mem_current_channel 
+0x6759 019756 beq 0 ,parse_dlci0_reconn 
+0x675a 019757 branch parse_uih_reconn 
+:      019759 parse_dlci0_reconn:
+0x675b 019760 set1 mark_ext_patch ,mark 
+0x675c 019761 bpatch patch33_6 ,mem_patch33 
+0x675d 019762 fetch 1 ,mem_current_frame_type 
+0x675e 019763 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x675f 019764 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6760 019765 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+0x6761 019766 branch rfcomm_rx_process_end 
+:      019767 parse_dlci0_reconn_uih:
+0x6762 019768 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6763 019769 copy pdata ,contr 
+0x6764 019770 call get_rfcomm_uih_head_struct 
+0x6765 019771 fetch 1 ,mem_uih_cmd_type 
+0x6766 019772 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+0x6767 019773 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+0x6768 019774 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+0x6769 019775 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+0x676a 019776 branch rfcomm_rx_process_end 
+:      019778 parse_dlci0_reconn_uih_pn_cmd:
+0x676b 019779 call parse_dlci0_rp_uih_pn_res_common 
+0x676c 019780 fetch 1 ,mem_pn_dlci 
+0x676d 019781 rshift pdata ,pdata 
+0x676e 019782 fetcht 1 ,mem_remote_spp_channel 
+0x676f 019783 isub temp ,null 
+0x6770 019784 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+0x6771 019785 branch assert 
+:      019786 parse_dlci0_reconn_uih_pn_cmd_spp:
+0x6772 019787 fetch 1 ,mem_spp_state 
+0x6773 019788 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6774 019789 store 1 ,mem_spp_state 
+0x6775 019790 branch rfcomm_rx_process_end 
+:      019792 parse_dlci0_reconn_uih_ms_cmd:
+0x6776 019793 call get_rfcomm_param_modem_status 
+0x6777 019794 fetch 1 ,mem_ms_channel 
+0x6778 019795 fetcht 1 ,mem_remote_spp_channel 
+0x6779 019796 isub temp ,null 
+0x677a 019797 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+0x677b 019798 branch assert 
+0x677c 019799 branch rfcomm_rx_process_end 
+:      019800 parse_dlci0_reconn_uih_ms_cmd_spp:
+0x677d 019801 fetch 1 ,mem_spp_state 
+0x677e 019802 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x677f 019803 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6780 019804 store 1 ,mem_spp_state 
+0x6781 019805 fetcht 1 ,mem_pn_dlci 
+0x6782 019806 lshift2 temp ,temp 
+0x6783 019807 or_into 3 ,temp 
+0x6784 019808 call rfcomm_send_modem_status_res 
+0x6785 019809 branch rfcomm_rx_process_end 
+:      019811 parse_dlci0_reconn_uih_ms_res:
+0x6786 019812 call get_rfcomm_param_modem_status 
+0x6787 019813 fetch 1 ,mem_ms_channel 
+0x6788 019814 fetcht 1 ,mem_remote_spp_channel 
+0x6789 019815 isub temp ,null 
+0x678a 019816 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+0x678b 019817 branch assert 
+:      019818 parse_dlci0_reconn_uih_ms_res_spp:
+0x678c 019819 fetch 1 ,mem_spp_state 
+0x678d 019820 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x678e 019821 store 1 ,mem_spp_state 
+0x678f 019822 branch rfcomm_rx_process_end 
+:      019824 parse_uih_reconn:
+0x6790 019825 fetch 1 ,mem_current_channel 
+0x6791 019826 fetcht 1 ,mem_remote_spp_channel 
+0x6792 019827 isub temp ,null 
+0x6793 019828 branch parse_uih_reconn_spp ,zero 
+0x6794 019829 branch assert 
+0x6795 019830 branch rfcomm_rx_process_end 
+:      019832 parse_uih_reconn_spp:
+0x6796 019833 fetch 1 ,mem_current_frame_type 
+0x6797 019834 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+0x6798 019835 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6799 019836 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x679a 019837 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+:      019838 parse_uih_reconn_spp_ua:
+0x679b 019839 fetch 1 ,mem_spp_state 
+0x679c 019840 set1 rfcomm_channel_state_ua ,pdata 
+0x679d 019841 store 1 ,mem_spp_state 
+0x679e 019842 branch rfcomm_rx_process_end 
+:      019843 parse_uih_reconn_spp_sabm:
+0x679f 019844 branch parse_uih_reconn_spp_sabm 
+:      019845 parse_uih_reconn_spp_disconn:
+0x67a0 019846 branch parse_uih_rp_spp_disconn 
+:      019847 rfcomm_rx_process_end:
+0x67a1 019848 rtn 
+:      019850 rfcomm_send_more_pkt:
+0x67a2 019851 fetch 1 ,mem_rfcomm_send_more_pkt 
+0x67a3 019852 rtn blank 
+0x67a4 019853 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+0x67a5 019854 branch assert 
+:      019856 rfcomm_send_more_pkt_msc_cmd_spp:
+0x67a6 019857 jam 0 ,mem_rfcomm_send_more_pkt 
+0x67a7 019858 call l2cap_malloc_rfcomm_channel 
+0x67a8 019859 arg spp_slave_channel ,temp 
+0x67a9 019860 fetcht 1 ,mem_pn_dlci 
+0x67aa 019861 lshift2 temp ,temp 
+:      019862 rfcomm_send_more_pkt_msc_cmd_spp0:
+0x67ab 019863 or_into 0x03 ,temp 
+0x67ac 019864 arg 0xaa ,rega 
+0x67ad 019865 call rfcomm_send_modem_status_cmd 
+0x67ae 019866 call l2cap_get_rfcomm_tx_buff 
+0x67af 019867 copy contw ,contr 
+0x67b0 019868 ifetch 2 ,contr 
+0x67b1 019869 branch assert ,blank 
+0x67b2 019870 rtn 
+:      019872 rfcomm_send_sabm:
+0x67b3 019873 call l2cap_get_rfcomm_tx_buff 
+0x67b4 019874 setarg 0x0004 
+0x67b5 019875 istore 2 ,contw 
+0x67b6 019876 fetch 2 ,mem_rfcomm_remote_cid 
+0x67b7 019877 istore 2 ,contw 
+0x67b8 019878 fetch 1 ,mem_current_adss 
+0x67b9 019879 istore 1 ,contw 
+0x67ba 019880 set1 mark_ext_patch ,mark 
+0x67bb 019881 bpatch patch33_7 ,mem_patch33 
+0x67bc 019882 setarg 0x013f 
+0x67bd 019883 istore 2 ,contw 
+0x67be 019884 fetch 1 ,mem_current_fcs 
+0x67bf 019885 istore 1 ,contw 
+0x67c0 019886 rtn 
+:      019887 rfcomm_send_ua:
+0x67c1 019888 call l2cap_malloc_rfcomm_channel 
+0x67c2 019889 call l2cap_get_rfcomm_tx_buff 
+0x67c3 019890 setarg 0x0004 
+0x67c4 019891 istore 2 ,contw 
+0x67c5 019892 fetch 2 ,mem_rfcomm_remote_cid 
+0x67c6 019893 istore 2 ,contw 
+0x67c7 019894 fetch 1 ,mem_current_adss 
+0x67c8 019895 istore 1 ,contw 
+0x67c9 019896 set1 mark_ext_patch ,mark 
+0x67ca 019897 bpatch patch34_0 ,mem_patch34 
+0x67cb 019898 setarg 0x0173 
+0x67cc 019899 istore 2 ,contw 
+0x67cd 019900 fetch 1 ,mem_current_fcs 
+0x67ce 019901 istore 1 ,contw 
+0x67cf 019902 rtn 
+:      019903 rfcomm_send_param_neg_cmd:
+0x67d0 019904 call l2cap_get_rfcomm_tx_buff 
+0x67d1 019905 setarg 0x000e 
+0x67d2 019906 istore 2 ,contw 
+0x67d3 019907 fetch 2 ,mem_rfcomm_remote_cid 
+0x67d4 019908 istore 2 ,contw 
+0x67d5 019909 fetch 1 ,mem_rfcomm_initiator 
+0x67d6 019910 lshift pdata ,pdata 
+0x67d7 019911 set1 0 ,pdata 
+0x67d8 019912 istore 1 ,contw 
+0x67d9 019913 set1 mark_ext_patch ,mark 
+0x67da 019914 bpatch patch34_1 ,mem_patch34 
+0x67db 019915 setarg 0x15ef 
+0x67dc 019916 istore 2 ,contw 
+0x67dd 019917 setarg 0x1183 
+0x67de 019918 istore 2 ,contw 
+0x67df 019919 copy temp ,pdata 
+0x67e0 019920 istore 1 ,contw 
+0x67e1 019921 setarg 0x0000f0 
+0x67e2 019922 istore 3 ,contw 
+0x67e3 019923 setarg rfcomm_max_frame_size 
+0x67e4 019924 istore 2 ,contw 
+0x67e5 019925 setarg 0 
+0x67e6 019926 istore 1 ,contw 
+0x67e7 019927 setarg 0x01 
+0x67e8 019928 istore 1 ,contw 
+0x67e9 019929 call rfcomm_calculate_fcs_dlci0 
+0x67ea 019930 istore 1 ,contw 
+0x67eb 019931 jam 0x10 ,mem_credit_given 
+0x67ec 019932 rtn 
+:      019933 rfcomm_send_param_neg_res:
+0x67ed 019934 call l2cap_malloc_rfcomm_channel 
+0x67ee 019935 call l2cap_get_rfcomm_tx_buff 
+0x67ef 019936 setarg 0x000e 
+0x67f0 019937 istore 2 ,contw 
+0x67f1 019938 fetch 2 ,mem_rfcomm_remote_cid 
+0x67f2 019939 istore 2 ,contw 
+0x67f3 019940 fetch 1 ,mem_rfcomm_initiator 
+0x67f4 019941 lshift pdata ,pdata 
+0x67f5 019942 set1 0 ,pdata 
+0x67f6 019943 istore 1 ,contw 
+0x67f7 019944 set1 mark_ext_patch ,mark 
+0x67f8 019945 bpatch patch34_2 ,mem_patch34 
+0x67f9 019946 setarg 0x15ef 
+0x67fa 019947 istore 2 ,contw 
+0x67fb 019948 setarg 0x1181 
+0x67fc 019949 istore 2 ,contw 
+0x67fd 019950 fetch 1 ,mem_pn_dlci 
+0x67fe 019951 istore 1 ,contw 
+0x67ff 019952 setarg 0x0000e0 
+0x6800 019953 istore 3 ,contw 
+0x6801 019954 fetch 2 ,mem_rfcomm_max_frame_size 
+0x6802 019955 istore 2 ,contw 
+0x6803 019956 setarg 0x00 
+0x6804 019957 istore 1 ,contw 
+0x6805 019958 fetch 1 ,mem_rfcomm_credit_init_data 
+0x6806 019959 istore 1 ,contw 
+0x6807 019960 call rfcomm_calculate_fcs_dlci0 
+0x6808 019961 istore 1 ,contw 
+0x6809 019962 rtn 
+:      019963 rfcomm_send_modem_status_cmd:
+0x680a 019964 call l2cap_get_rfcomm_tx_buff 
+0x680b 019965 setarg 0x0008 
+0x680c 019966 istore 2 ,contw 
+0x680d 019967 fetch 2 ,mem_rfcomm_remote_cid 
+0x680e 019968 istore 2 ,contw 
+0x680f 019969 fetch 1 ,mem_rfcomm_initiator 
+0x6810 019970 lshift pdata ,pdata 
+0x6811 019971 set1 0 ,pdata 
+0x6812 019972 istore 1 ,contw 
+0x6813 019973 set1 mark_ext_patch ,mark 
+0x6814 019974 bpatch patch34_3 ,mem_patch34 
+0x6815 019975 setarg 0x09ef 
+0x6816 019976 istore 2 ,contw 
+0x6817 019977 setarg 0x05e3 
+0x6818 019978 istore 2 ,contw 
+0x6819 019979 copy temp ,pdata 
+0x681a 019980 istore 1 ,contw 
+0x681b 019981 setarg 0x8d 
+0x681c 019982 istore 1 ,contw 
+0x681d 019983 call rfcomm_calculate_fcs_dlci0 
+0x681e 019984 istore 1 ,contw 
+0x681f 019985 rtn 
+:      019987 rfcomm_send_modem_status_res:
+0x6820 019988 call l2cap_malloc_rfcomm_channel 
+0x6821 019989 call l2cap_get_rfcomm_tx_buff 
+0x6822 019990 setarg 0x0008 
+0x6823 019991 istore 2 ,contw 
+0x6824 019992 fetch 2 ,mem_rfcomm_remote_cid 
+0x6825 019993 istore 2 ,contw 
+0x6826 019994 copy temp ,timeup 
+0x6827 019995 fetch 1 ,mem_rfcomm_initiator 
+0x6828 019996 lshift pdata ,pdata 
+0x6829 019997 set1 0 ,pdata 
+0x682a 019998 istore 1 ,contw 
+0x682b 019999 set1 mark_ext_patch ,mark 
+0x682c 020000 bpatch patch34_4 ,mem_patch34 
+0x682d 020001 setarg 0x09ef 
+0x682e 020002 istore 2 ,contw 
+0x682f 020003 setarg 0x05e1 
+0x6830 020004 istore 2 ,contw 
+0x6831 020005 copy timeup ,pdata 
+0x6832 020006 istore 1 ,contw 
+0x6833 020007 setarg 0x8d 
+0x6834 020008 istore 1 ,contw 
+0x6835 020009 call rfcomm_calculate_fcs_dlci0 
+0x6836 020010 istore 1 ,contw 
+0x6837 020011 rtn 
+:      020013 rfcomm_send_uih_without_payload:
+0x6838 020014 set1 mark_ext_patch ,mark 
+0x6839 020015 bpatch patch34_5 ,mem_patch34 
+0x683a 020016 fetch 1 ,mem_credit_given 
+0x683b 020017 rtn blank 
+0x683c 020018 hfetch 2 ,core_uart_rxitems 
+0x683d 020019 nrtn blank 
+0x683e 020020 copy rega ,pdata 
+0x683f 020021 store 1 ,mem_pdatatemp + 1 
+0x6840 020022 storet 1 ,mem_pdatatemp 
+0x6841 020023 call l2cap_malloc_is_fifo_full 
+0x6842 020024 nrtn blank 
+0x6843 020025 call l2cap_malloc_rfcomm_channel 
+0x6844 020026 call l2cap_get_rfcomm_tx_buff 
+0x6845 020027 setarg 0x05 
+0x6846 020028 istore 2 ,contw 
+0x6847 020029 fetch 2 ,mem_rfcomm_remote_cid 
+0x6848 020030 istore 2 ,contw 
+0x6849 020031 fetch 1 ,mem_rfcomm_send_adss 
+0x684a 020032 istore 1 ,contw 
+0x684b 020033 setarg 0x01ff 
+0x684c 020034 istore 2 ,contw 
+0x684d 020035 fetch 1 ,mem_credit_given 
+0x684e 020036 istore 1 ,contw 
+0x684f 020037 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6850 020038 istore 1 ,contw 
+0x6851 020039 jam 0 ,mem_credit_given 
+0x6852 020040 rtn 
+:      020042 rfcomm_increase_credit_given:
+0x6853 020043 set1 mark_ext_patch ,mark 
+0x6854 020044 bpatch patch34_6 ,mem_patch34 
+0x6855 020045 fetch 1 ,mem_credit_flag 
+0x6856 020046 rtneq credit_enable 
+0x6857 020047 fetch 2 ,mem_current_length 
+0x6858 020048 rtn blank 
+0x6859 020049 fetch 1 ,mem_credit_given 
+0x685a 020050 increase 1 ,pdata 
+0x685b 020051 store 1 ,mem_credit_given 
+0x685c 020052 rtn 
+:      020054 spp_process_rx_data:
+0x685d 020055 fetch 2 ,mem_cb_receive_spp_data 
+0x685e 020056 branch callback_func 
+:      020058 spp_tx_rfcomm_packet:
+0x685f 020059 set1 mark_ext_patch ,mark 
+0x6860 020060 bpatch patch34_7 ,mem_patch34 
+0x6861 020062 fetch 1 ,mem_remote_credits 
+0x6862 020063 rtn blank 
+0x6863 020064 increase -1 ,pdata 
+0x6864 020065 store 1 ,mem_remote_credits 
+0x6865 020066 fetch 2 ,mem_pn_max_frame_size 
+0x6866 020067 fetcht 2 ,mem_current_packet_length 
+0x6867 020068 isub temp ,null 
+0x6868 020069 branch ssp_tx_rfcomm_from_uart ,positive 
+0x6869 020070 store 2 ,mem_current_packet_length 
+:      020071 ssp_tx_rfcomm_from_uart:
+0x686a 020072 fetch 1 ,mem_credit_given 
+0x686b 020073 branch ssp_tx_rfcomm_from_uart_without_credit ,blank 
+0x686c 020074 jam 1 ,mem_rfcomm_send_offset 
+0x686d 020075 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x686e 020076 store 1 ,mem_rfcomm_send_fcs 
+0x686f 020077 setarg rsp_rx_uih_wdata 
+0x6870 020078 store 1 ,mem_rfcomm_send_frame_type 
+0x6871 020079 branch ssp_tx_rfcomm_from_uart_common 
+:      020080 ssp_tx_rfcomm_from_uart_without_credit:
+0x6872 020081 jam 0 ,mem_rfcomm_send_offset 
+0x6873 020082 fetch 1 ,mem_hiufcs_spp 
+0x6874 020083 store 1 ,mem_rfcomm_send_fcs 
+0x6875 020084 setarg rsp_tx_uih 
+0x6876 020085 store 1 ,mem_rfcomm_send_frame_type 
+:      020086 ssp_tx_rfcomm_from_uart_common:
+0x6877 020087 set1 mark_ext_patch ,mark 
+0x6878 020088 bpatch patch35_0 ,mem_patch35 
+0x6879 020089 fetch 2 ,mem_current_packet_length 
+0x687a 020090 sub pdata ,127 ,null 
+0x687b 020091 branch ssp_tx_rfcomm_from_uart_common0 ,positive 
+0x687c 020092 fetch 1 ,mem_rfcomm_send_offset 
+0x687d 020093 increase 1 ,pdata 
+0x687e 020094 store 1 ,mem_rfcomm_send_offset 
+:      020095 ssp_tx_rfcomm_from_uart_common0:
+0x687f 020096 call get_rfcomm_snd_adss 
+0x6880 020097 fetch 2 ,mem_current_packet_length 
+0x6881 020098 increase 8 ,pdata 
+0x6882 020099 fetcht 1 ,mem_rfcomm_send_offset 
+0x6883 020100 iadd temp ,rega 
+0x6884 020102 call l2cap_malloc 
+0x6885 020103 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x6886 020104 increase 4 ,pdata 
+0x6887 020105 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x6888 020106 copy pdata ,contw 
+0x6889 020107 fetch 1 ,mem_rfcomm_send_adss 
+0x688a 020108 istore 1 ,contw 
+0x688b 020109 fetch 1 ,mem_rfcomm_send_frame_type 
+0x688c 020110 istore 1 ,contw 
+0x688d 020111 call ssp_tx_write_length 
+0x688e 020112 call ssp_tx_write_given_credit 
+0x688f 020113 set1 mark_ext_patch ,mark 
+0x6890 020114 bpatch patch35_1 ,mem_patch35 
+0x6891 020115 fetch 2 ,mem_nl_rx_data_src 
+0x6892 020116 copy pdata ,contru 
+0x6893 020117 fetch 2 ,mem_current_packet_length 
+0x6894 020118 copy pdata ,loopcnt 
+0x6895 020119 call uart_copy_rx_bytes_fast 
+0x6896 020120 copy contw ,temp 
+0x6897 020121 copy contru ,pdata 
+0x6898 020122 store 2 ,mem_nl_rx_data_src 
+0x6899 020123 copy temp ,contw 
+0x689a 020124 fetch 1 ,mem_rfcomm_send_fcs 
+0x689b 020125 istore 1 ,contw 
+0x689c 020126 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x689d 020127 copy pdata ,contw 
+0x689e 020128 fetch 2 ,mem_current_packet_length 
+0x689f 020129 fetcht 1 ,mem_rfcomm_send_offset 
+0x68a0 020130 iadd temp ,pdata 
+0x68a1 020131 increase 4 ,pdata 
+0x68a2 020132 istore 2 ,contw 
+0x68a3 020133 fetch 2 ,mem_rfcomm_remote_cid 
+0x68a4 020134 istore 2 ,contw 
+0x68a5 020135 jam 0 ,mem_credit_given 
+0x68a6 020136 fetch 2 ,mem_nl_rx_len_all 
+0x68a7 020137 beq 0 ,module_hci_command_tx_spp_tx_complete 
+0x68a8 020138 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x68a9 020139 rtn 
+:      020141 ssp_tx_write_length:
+0x68aa 020142 set1 mark_ext_patch ,mark 
+0x68ab 020143 bpatch patch35_2 ,mem_patch35 
+0x68ac 020144 fetch 2 ,mem_current_packet_length 
+0x68ad 020145 sub pdata ,0x7f ,null 
+0x68ae 020146 nbranch ssp_tx_write_long_packet ,positive 
+0x68af 020147 lshift pdata ,pdata 
+0x68b0 020148 set1 0 ,pdata 
+0x68b1 020149 istore 1 ,contw 
+0x68b2 020150 rtn 
+:      020151 ssp_tx_write_long_packet:
+0x68b3 020152 fetch 2 ,mem_current_packet_length 
+0x68b4 020153 rshift3 pdata ,pdata 
+0x68b5 020154 rshift4 pdata ,temp 
+0x68b6 020155 and_into 0x7f ,pdata 
+0x68b7 020156 lshift pdata ,pdata 
+0x68b8 020157 set0 0 ,pdata 
+0x68b9 020158 istore 1 ,contw 
+0x68ba 020159 istoret 1 ,contw 
+0x68bb 020160 rtn 
+:      020161 ssp_tx_write_given_credit:
+0x68bc 020162 fetch 1 ,mem_credit_given 
+0x68bd 020163 rtn blank 
+0x68be 020164 istore 1 ,contw 
+0x68bf 020165 rtn 
+:      020170 scheduler_process:
+0x68c0 020171 set1 mark_ext_patch ,mark 
+0x68c1 020172 bpatch patch35_3 ,mem_patch35 
+0x68c2 020173 call check_51cmd 
+0x68c3 020174 call app_process_bb_event 
+0x68c4 020175 call process_conn_sm 
+0x68c5 020177 set1 mark_ext_patch ,mark 
+0x68c6 020178 bpatch patch35_4 ,mem_patch35 
+0x68c7 020179 call sp_calc_sequence 
+0x68c8 020180 call simple_pairing_sequence 
+0x68c9 020181 call master_simple_paring_sequence 
+0x68ca 020184 call l2cap_malloc_is_fifo_full 
+0x68cb 020185 nrtn blank 
+0x68cc 020187 call l2cap_call_proc_sigal_pending 
+0x68cd 020188 call l2cap_malloc_is_fifo_full 
+0x68ce 020189 nrtn blank 
+0x68cf 020190 set1 mark_ext_patch ,mark 
+0x68d0 020191 bpatch patch35_5 ,mem_patch35 
+0x68d1 020193 call process_upper_sm 
+0x68d2 020194 call l2cap_send_config_req 
+0x68d3 020195 call rfcomm_send_more_pkt 
+:      020196 scheduler_process0:
+0x68d4 020197 call scheduler_tx_disconnect_hid 
+0x68d5 020198 set1 mark_ext_patch ,mark 
+0x68d6 020199 bpatch patch35_6 ,mem_patch35 
+0x68d7 020202 branch app_process_bt 
+:      020204 scheduler_tx_disconnect_hid:
+0x68d8 020205 fetch 1 ,mem_control_tasks 
+0x68d9 020206 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+0x68da 020207 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+0x68db 020208 rtn 
+:      020210 scheduler_tx_l2cap_pkt:
+0x68dc 020211 set1 mark_ext_patch ,mark 
+0x68dd 020212 bpatch patch35_7 ,mem_patch35 
+0x68de 020213 call l2cap_malloc_is_fifo_empty 
+0x68df 020214 rtn blank 
+0x68e0 020215 fetch 1 ,mem_op 
+0x68e1 020216 rtnbit1 op_txl2cap 
+0x68e2 020217 call l2cap_malloc_fifo_out 
+0x68e3 020218 store 2 ,mem_txptr 
+0x68e4 020219 copy pdata ,contr 
+0x68e5 020220 ifetch 2 ,contr 
+0x68e6 020221 increase 4 ,pdata 
+0x68e7 020222 store 2 ,mem_tx_len 
+0x68e8 020223 jam 6 ,mem_tx_lch 
+0x68e9 020224 set1 mark_ext_patch ,mark 
+0x68ea 020225 bpatch patch36_0 ,mem_patch36 
+0x68eb 020226 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x68ec 020227 branch scheduler_tx_l2cap_start_pkt ,blank 
+0x68ed 020228 fetch 1 ,mem_op 
+0x68ee 020229 rtnbit0 op_pkt_comp 
+0x68ef 020230 set0 op_pkt_comp ,pdata 
+0x68f0 020231 store 1 ,mem_op 
+0x68f1 020232 jam 5 ,mem_tx_lch 
+0x68f2 020233 fetcht 2 ,mem_l2cap_tx_multi_offset 
+0x68f3 020234 fetch 2 ,mem_txptr 
+0x68f4 020235 iadd temp ,pdata 
+0x68f5 020236 store 2 ,mem_txptr 
+0x68f6 020237 fetch 2 ,mem_tx_len 
+0x68f7 020238 isub temp ,pdata 
+0x68f8 020239 store 2 ,mem_tx_len 
+:      020240 scheduler_tx_l2cap_start_pkt:
+0x68f9 020241 set1 mark_ext_patch ,mark 
+0x68fa 020242 bpatch patch36_1 ,mem_patch36 
+0x68fb 020243 fetch 2 ,mem_tx_len 
+0x68fc 020244 branch assert ,blank 
+0x68fd 020245 arg l2cap_max_pkt_len ,temp 
+0x68fe 020246 isub temp ,pdata 
+0x68ff 020247 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+0x6900 020248 set1 mark_ext_patch ,mark 
+0x6901 020249 bpatch patch36_2 ,mem_patch36 
+0x6902 020250 storet 2 ,mem_tx_len 
+0x6903 020251 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6904 020252 iadd temp ,pdata 
+0x6905 020253 store 2 ,mem_l2cap_tx_multi_offset 
+0x6906 020254 branch scheduler_tx_l2cap_pkt_end 
+:      020255 scheduler_tx_l2cap_last_pkt:
+0x6907 020256 setarg 0 
+0x6908 020257 store 2 ,mem_l2cap_tx_multi_offset 
+:      020258 scheduler_tx_l2cap_pkt_end:
+0x6909 020259 fetch 1 ,mem_op 
+0x690a 020260 set1 op_txl2cap ,pdata 
+0x690b 020261 store 1 ,mem_op 
+0x690c 020262 rtn 
+:      020264 scheduler_start_upper_sm:
+0x690d 020265 fetch 1 ,mem_ui_profile_supported 
+0x690e 020266 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+0x690f 020267 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+0x6910 020268 rtn 
+:      020269 scheduler_start_upper_sm_hid:
+0x6911 020270 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6912 020271 rtn 
+:      020273 process_upper_sm:
+0x6913 020274 fetch 1 ,memui_reconnect_mode 
+0x6914 020275 nbranch process_upper_sm_reconn ,blank 
+:      020276 process_upper_sm_remote_page:
+0x6915 020277 fetch 1 ,mem_upper_sm_remote_page 
+0x6916 020279 rtn blank 
+0x6917 020281 jam 0 ,mem_upper_sm_remote_page 
+:      020282 process_upper_sm_rp_wait:
+0x6918 020283 rtn 
+:      020286 process_upper_sm_reconn:
+0x6919 020287 set1 mark_ext_patch ,mark 
+0x691a 020288 bpatch patch36_3 ,mem_patch36 
+0x691b 020289 fetch 1 ,mem_upper_sm_reconn 
+0x691c 020290 rtn blank 
+0x691d 020291 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+0x691e 020292 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+0x691f 020293 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+0x6920 020294 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+0x6921 020295 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+0x6922 020296 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+0x6923 020297 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+0x6924 020298 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+0x6925 020299 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+0x6926 020300 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+0x6927 020301 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+0x6928 020302 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+0x6929 020303 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+0x692a 020304 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+0x692b 020305 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+0x692c 020306 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+0x692d 020307 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+0x692e 020308 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+0x692f 020309 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+0x6930 020310 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+0x6931 020311 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+0x6932 020312 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+0x6933 020313 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+0x6934 020314 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+0x6935 020315 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+0x6936 020316 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+0x6937 020317 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+0x6938 020318 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+:      020319 process_upper_sm_reconn_wait:
+0x6939 020320 rtn 
+:      020321 process_upper_sm_reconn_sdp_conn:
+0x693a 020322 call upper_sm_send_sdp_conn 
+0x693b 020323 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+0x693c 020324 fetch 1 ,mem_sdp_state 
+0x693d 020325 set1 l2cap_channel_state_conn_req ,pdata 
+0x693e 020326 store 1 ,mem_sdp_state 
+0x693f 020327 rtn 
+:      020328 process_upper_sm_reconn_sdp_cfg:
+0x6940 020329 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6941 020330 fetch 1 ,mem_sdp_state 
+0x6942 020331 rtnbit1 l2cap_channel_state_snd_cfg_req 
+0x6943 020332 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6944 020333 call upper_sm_send_sdp_cfg 
+0x6945 020334 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6946 020335 fetch 1 ,mem_sdp_state 
+0x6947 020336 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6948 020337 store 1 ,mem_sdp_state 
+0x6949 020338 rtn 
+:      020339 process_upper_sm_reconn_ss_spp:
+0x694a 020340 call l2cap_malloc_is_fifo_empty 
+0x694b 020341 nrtn blank 
+0x694c 020342 call upper_sm_send_ss_spp 
+0x694d 020343 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+0x694e 020344 rtn 
+:      020345 process_upper_sm_reconn_sdp_disconn:
+0x694f 020346 call upper_sm_send_sdp_disconn 
+0x6950 020347 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+0x6951 020348 rtn 
+:      020349 process_upper_sm_reconn_hid_ctrl_conn:
+0x6952 020350 call upper_sm_send_hid_ctrl_conn 
+0x6953 020351 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+0x6954 020352 fetch 1 ,mem_hid_control_state 
+0x6955 020353 set1 l2cap_channel_state_conn_req ,pdata 
+0x6956 020354 store 1 ,mem_hid_control_state 
+0x6957 020355 rtn 
+:      020356 process_upper_sm_reconn_hid_ctrl_cfg:
+0x6958 020357 call upper_sm_send_hid_ctrl_cfg 
+0x6959 020358 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+0x695a 020359 fetch 1 ,mem_hid_control_state 
+0x695b 020360 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x695c 020361 store 1 ,mem_hid_control_state 
+0x695d 020362 rtn 
+:      020363 process_upper_sm_reconn_hid_int_conn:
+0x695e 020364 call upper_sm_send_hid_int_conn 
+0x695f 020365 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+0x6960 020366 fetch 1 ,mem_hid_interrupt_state 
+0x6961 020367 set1 l2cap_channel_state_conn_req ,pdata 
+0x6962 020368 store 1 ,mem_hid_interrupt_state 
+0x6963 020369 rtn 
+:      020370 process_upper_sm_reconn_hid_int_cfg:
+0x6964 020371 call upper_sm_send_hid_int_cfg 
+0x6965 020372 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+0x6966 020373 fetch 1 ,mem_hid_interrupt_state 
+0x6967 020374 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6968 020375 store 1 ,mem_hid_interrupt_state 
+0x6969 020376 rtn 
+:      020377 process_upper_sm_reconn_rfcomm_conn:
+0x696a 020378 call upper_sm_send_rfcomm_conn 
+0x696b 020379 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+0x696c 020380 fetch 1 ,mem_rfcomm_state 
+0x696d 020381 set1 l2cap_channel_state_conn_req ,pdata 
+0x696e 020382 store 1 ,mem_rfcomm_state 
+0x696f 020383 rtn 
+:      020384 process_upper_sm_reconn_rfcomm_cfg:
+0x6970 020385 call upper_sm_send_rfcomm_cfg 
+0x6971 020386 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+0x6972 020387 fetch 1 ,mem_rfcomm_state 
+0x6973 020388 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6974 020389 store 1 ,mem_rfcomm_state 
+0x6975 020390 rtn 
+:      020391 process_upper_sm_reconn_rfcomm_sabm:
+0x6976 020392 call upper_sm_send_rfcomm_sabm 
+0x6977 020393 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+0x6978 020394 fetch 1 ,mem_rfcomm_state 
+0x6979 020395 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x697a 020396 store 1 ,mem_rfcomm_state 
+0x697b 020397 rtn 
+:      020398 process_upper_sm_reconn_spp_cmd_pn:
+0x697c 020399 call upper_sm_send_spp_cmd_pn 
+0x697d 020400 fetch 1 ,mem_spp_state 
+0x697e 020401 set1 rfcomm_channel_state_pn_cmd 
+0x697f 020402 store 1 ,mem_spp_state 
+0x6980 020403 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+0x6981 020404 rtn 
+:      020405 process_upper_sm_reconn_spp_sabm:
+0x6982 020406 call upper_sm_send_spp_sabm 
+0x6983 020407 fetch 1 ,mem_spp_state 
+0x6984 020408 set1 rfcomm_channel_state_sabm 
+0x6985 020409 store 1 ,mem_spp_state 
+0x6986 020410 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+0x6987 020411 fetch 1 ,mem_remote_spp_channel 
+0x6988 020412 lshift3 pdata ,pdata 
+0x6989 020413 or_into 3 ,pdata 
+0x698a 020414 arg mem_hiufcs_spp ,temp 
+0x698b 020415 storet 2 ,mem_contw_temp 
+0x698c 020416 branch rfcomm_save_fcs_uih 
+:      020417 process_upper_sm_reconn_spp_cmd_ms:
+0x698d 020418 call upper_sm_send_spp_cmd_ms 
+0x698e 020419 fetch 1 ,mem_spp_state 
+0x698f 020420 set1 rfcomm_channel_state_snd_ms_cmd 
+0x6990 020421 store 1 ,mem_spp_state 
+0x6991 020422 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+0x6992 020423 rtn 
+:      020425 process_upper_sm_reconn_sdp_conn_wait:
+0x6993 020426 fetch 1 ,mem_sdp_state 
+0x6994 020427 rtnbit0 l2cap_channel_state_conn_res 
+0x6995 020428 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6996 020429 branch process_upper_sm_reconn 
+:      020430 process_upper_sm_reconn_sdp_cfg_wait:
+0x6997 020431 fetch 1 ,mem_sdp_state 
+0x6998 020432 rtnne l2cap_channel_setup_complete 
+0x6999 020433 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+:      020434 process_upper_sm_reconn_ss_spp_wait:
+0x699a 020435 fetch 1 ,mem_message_to_uppersm 
+0x699b 020436 rtnne recieve_ss_reasult_hf 
+0x699c 020437 jam 0 ,mem_message_to_uppersm 
+0x699d 020438 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+0x699e 020439 branch process_upper_sm_reconn 
+:      020440 process_upper_sm_reconn_sdp_disconn_wait:
+0x699f 020441 fetch 1 ,mem_sdp_state 
+0x69a0 020442 nrtn blank 
+0x69a1 020443 fetch 1 ,mem_ui_profile_supported 
+0x69a2 020444 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+0x69a3 020445 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69a4 020446 branch process_upper_sm_reconn_termination 
+:      020447 process_upper_sm_reconn_hid_ctrl_conn_wait:
+0x69a5 020448 fetch 1 ,mem_hid_control_state 
+0x69a6 020449 rtnbit0 l2cap_channel_state_conn_res 
+0x69a7 020450 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+0x69a8 020451 branch process_upper_sm_reconn 
+:      020452 process_upper_sm_reconn_hid_ctrl_cfg_wait:
+0x69a9 020453 fetch 1 ,mem_hid_control_state 
+0x69aa 020454 rtnne l2cap_channel_setup_complete 
+0x69ab 020455 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+0x69ac 020456 branch process_upper_sm_reconn 
+:      020457 process_upper_sm_reconn_hid_int_conn_wait:
+0x69ad 020458 fetch 1 ,mem_hid_interrupt_state 
+0x69ae 020459 rtnbit0 l2cap_channel_state_conn_res 
+0x69af 020460 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+0x69b0 020461 branch process_upper_sm_reconn 
+:      020462 process_upper_sm_reconn_hid_int_cfg_wait:
+0x69b1 020463 fetch 1 ,mem_hid_interrupt_state 
+0x69b2 020464 rtnne l2cap_channel_setup_complete 
+0x69b3 020465 fetch 1 ,mem_ui_profile_supported 
+0x69b4 020466 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69b5 020467 branch process_upper_sm_reconn_termination 
+:      020468 process_upper_sm_reconn_rfcomm_conn_wait:
+0x69b6 020469 fetch 1 ,mem_rfcomm_state 
+0x69b7 020470 rtnbit0 l2cap_channel_state_conn_res 
+0x69b8 020471 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+0x69b9 020472 branch process_upper_sm_reconn 
+:      020473 process_upper_sm_reconn_rfcomm_cfg_wait:
+0x69ba 020474 fetch 1 ,mem_rfcomm_state 
+0x69bb 020475 rtnne l2cap_channel_setup_complete 
+0x69bc 020476 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+0x69bd 020477 branch process_upper_sm_reconn 
+:      020478 process_upper_sm_reconn_rfcomm_sabm_wait:
+0x69be 020479 fetch 1 ,mem_rfcomm_state 
+0x69bf 020480 rtnne l2cap_channel_rfcomm_dlci0_opened 
+0x69c0 020481 fetch 1 ,mem_ui_profile_supported 
+0x69c1 020482 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+0x69c2 020483 branch process_upper_sm_reconn_termination 
+:      020484 process_upper_sm_reconn_spp_cmd_pn_wait:
+0x69c3 020485 fetch 1 ,mem_spp_state 
+0x69c4 020486 rtnbit0 rfcomm_channel_state_pn_res 
+0x69c5 020487 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+0x69c6 020488 branch process_upper_sm_reconn 
+:      020489 process_upper_sm_reconn_spp_sabm_wait:
+0x69c7 020490 fetch 1 ,mem_spp_state 
+0x69c8 020491 rtnbit0 rfcomm_channel_state_ua 
+0x69c9 020492 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+0x69ca 020493 branch process_upper_sm_reconn 
+:      020494 process_upper_sm_reconn_spp_cmd_ms_wait:
+0x69cb 020495 fetch 1 ,mem_spp_state 
+0x69cc 020496 rtnne rfcomm_channel_setup_complete 
+0x69cd 020497 branch process_upper_sm_reconn_termination 
+:      020499 process_upper_sm_reconn_setup_hid:
+0x69ce 020500 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x69cf 020501 branch process_upper_sm_reconn 
+:      020503 process_upper_sm_reconn_setup_rfcomm:
+0x69d0 020504 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+0x69d1 020505 branch process_upper_sm_reconn 
+:      020506 process_upper_sm_reconn_setup_spp:
+0x69d2 020507 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+0x69d3 020508 branch process_upper_sm_reconn 
+:      020512 process_upper_sm_reconn_termination:
+0x69d4 020513 jam 0 ,mem_upper_sm_reconn 
+0x69d5 020514 rtn 
+:      020515 upper_sm_send_sdp_conn:
+0x69d6 020516 set1 mark_ext_patch ,mark 
+0x69d7 020517 bpatch patch36_4 ,mem_patch36 
+0x69d8 020518 call l2cap_malloc_signal_channel 
+0x69d9 020519 setarg psm_sdp 
+0x69da 020520 copy pdata ,temp 
+0x69db 020521 setarg l2cap_sdp_channel 
+0x69dc 020522 copy pdata ,timeup 
+0x69dd 020523 branch ml2cap_send_signal_connect_req 
+:      020525 upper_sm_send_sdp_cfg:
+0x69de 020526 set1 mark_ext_patch ,mark 
+0x69df 020527 bpatch patch36_5 ,mem_patch36 
+0x69e0 020528 call l2cap_malloc_signal_channel 
+0x69e1 020529 fetch 2 ,mem_sdp_remote_cid 
+0x69e2 020530 copy pdata ,temp 
+0x69e3 020531 branch ml2cap_send_signal_config_req 
+:      020533 upper_sm_send_sdp_disconn:
+0x69e4 020534 set1 mark_ext_patch ,mark 
+0x69e5 020535 bpatch patch36_6 ,mem_patch36 
+0x69e6 020536 call l2cap_malloc_signal_channel 
+0x69e7 020537 fetch 2 ,mem_sdp_remote_cid 
+0x69e8 020538 copy pdata ,temp 
+0x69e9 020539 arg l2cap_sdp_channel ,timeup 
+0x69ea 020540 call ml2cap_send_signal_disconn_req 
+0x69eb 020541 fetch 1 ,mem_sdp_state 
+0x69ec 020542 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x69ed 020543 store 1 ,mem_sdp_state 
+0x69ee 020544 rtn 
+:      020546 upper_sm_send_ss_spp:
+0x69ef 020547 set1 mark_ext_patch ,mark 
+0x69f0 020548 bpatch patch36_7 ,mem_patch36 
+0x69f1 020549 call l2cap_malloc_sdp_channel 
+0x69f2 020550 call sdp_send_spp_request 
+0x69f3 020551 branch msdp_send_req_done 
+:      020553 upper_sm_send_rfcomm_conn:
+0x69f4 020554 set1 mark_ext_patch ,mark 
+0x69f5 020555 bpatch patch37_0 ,mem_patch37 
+0x69f6 020556 call l2cap_malloc_signal_channel 
+0x69f7 020557 setarg psm_rfcomm 
+0x69f8 020558 copy pdata ,temp 
+0x69f9 020559 setarg l2cap_rfcomm_channel 
+0x69fa 020560 copy pdata ,timeup 
+0x69fb 020561 branch ml2cap_send_signal_connect_req 
+:      020563 upper_sm_send_rfcomm_cfg:
+0x69fc 020564 set1 mark_ext_patch ,mark 
+0x69fd 020565 bpatch patch37_1 ,mem_patch37 
+0x69fe 020566 call l2cap_malloc_signal_channel 
+0x69ff 020567 fetch 2 ,mem_rfcomm_remote_cid 
+0x6a00 020568 copy pdata ,temp 
+0x6a01 020569 branch ml2cap_send_signal_config_req 
+:      020571 upper_sm_send_hid_ctrl_conn:
+0x6a02 020572 set1 mark_ext_patch ,mark 
+0x6a03 020573 bpatch patch37_2 ,mem_patch37 
+0x6a04 020574 call l2cap_malloc_signal_channel 
+0x6a05 020575 setarg psm_hid_control 
+0x6a06 020576 copy pdata ,temp 
+0x6a07 020577 setarg l2cap_hid_control_channel 
+0x6a08 020578 copy pdata ,timeup 
+0x6a09 020579 branch ml2cap_send_signal_connect_req 
+:      020581 upper_sm_send_hid_ctrl_cfg:
+0x6a0a 020582 set1 mark_ext_patch ,mark 
+0x6a0b 020583 bpatch patch37_3 ,mem_patch37 
+0x6a0c 020584 call l2cap_malloc_signal_channel 
+0x6a0d 020585 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x6a0e 020586 copy pdata ,temp 
+0x6a0f 020587 branch ml2cap_send_signal_config_req 
+:      020589 upper_sm_send_hid_int_conn:
+0x6a10 020590 set1 mark_ext_patch ,mark 
+0x6a11 020591 bpatch patch37_4 ,mem_patch37 
+0x6a12 020592 call l2cap_malloc_signal_channel 
+0x6a13 020593 setarg psm_hid_interrupt 
+0x6a14 020594 copy pdata ,temp 
+0x6a15 020595 setarg l2cap_hid_interrupt_channel 
+0x6a16 020596 copy pdata ,timeup 
+0x6a17 020597 branch ml2cap_send_signal_connect_req 
+:      020599 upper_sm_send_hid_int_cfg:
+0x6a18 020600 set1 mark_ext_patch ,mark 
+0x6a19 020601 bpatch patch37_5 ,mem_patch37 
+0x6a1a 020602 call l2cap_malloc_signal_channel 
+0x6a1b 020603 fetch 2 ,mem_hid_int_remote_cid 
+0x6a1c 020604 copy pdata ,temp 
+0x6a1d 020605 branch ml2cap_send_signal_config_req 
+:      020607 upper_sm_send_rfcomm_sabm:
+0x6a1e 020608 set1 mark_ext_patch ,mark 
+0x6a1f 020609 bpatch patch37_6 ,mem_patch37 
+0x6a20 020610 call l2cap_malloc_rfcomm_channel 
+0x6a21 020612 jam 3 ,mem_current_adss 
+0x6a22 020613 jam 0x1c ,mem_current_fcs 
+0x6a23 020614 call rfcomm_send_sabm 
+0x6a24 020615 jam 1 ,mem_rfcomm_initiator 
+0x6a25 020616 rtn 
+:      020618 upper_sm_send_spp_cmd_pn:
+0x6a26 020619 set1 mark_ext_patch ,mark 
+0x6a27 020620 bpatch patch37_7 ,mem_patch37 
+0x6a28 020621 call l2cap_malloc_rfcomm_channel 
+0x6a29 020622 fetcht 1 ,mem_remote_spp_channel 
+0x6a2a 020623 call channel_to_dlci 
+0x6a2b 020624 storet 1 ,mem_pn_dlci 
+0x6a2c 020625 branch rfcomm_send_param_neg_cmd 
+:      020627 upper_sm_send_spp_sabm:
+0x6a2d 020628 set1 mark_ext_patch ,mark 
+0x6a2e 020629 bpatch patch38_0 ,mem_patch38 
+0x6a2f 020630 call l2cap_malloc_rfcomm_channel 
+0x6a30 020631 fetcht 1 ,mem_pn_dlci 
+0x6a31 020632 call dlci_to_address_cmd 
+0x6a32 020633 call rfcomm_calculate_fcs_sabm 
+0x6a33 020634 store 1 ,mem_current_fcs 
+0x6a34 020635 fetcht 1 ,mem_pn_dlci 
+0x6a35 020636 call dlci_to_address_cmd 
+0x6a36 020637 storet 1 ,mem_current_adss 
+0x6a37 020638 branch rfcomm_send_sabm 
+:      020640 upper_sm_send_spp_cmd_ms:
+0x6a38 020641 set1 mark_ext_patch ,mark 
+0x6a39 020642 bpatch patch38_1 ,mem_patch38 
+0x6a3a 020643 call l2cap_malloc_rfcomm_channel 
+0x6a3b 020644 fetcht 1 ,mem_pn_dlci 
+0x6a3c 020645 call dlci_to_address_cmd 
+0x6a3d 020646 branch rfcomm_send_modem_status_cmd 
+:      020659 sdp_process:
+0x6a3e 020660 set1 mark_ext_patch ,mark 
+0x6a3f 020661 bpatch patch38_2 ,mem_patch38 
+0x6a40 020662 fetch 2 ,mem_l2cap_payload_ptr 
+0x6a41 020663 iforce contr 
+0x6a42 020664 ifetch 1 ,contr 
+0x6a43 020665 copy pdata ,regb 
+0x6a44 020666 store 1 ,mem_sdp_pduid 
+0x6a45 020667 ifetch 2 ,contr 
+0x6a46 020668 store 2 ,mem_sdp_transactionid 
+0x6a47 020669 ifetch 1 ,contr 
+0x6a48 020670 lshift8 pdata ,timeup 
+0x6a49 020671 ifetch 1 ,contr 
+0x6a4a 020672 iadd timeup ,timeup 
+0x6a4b 020673 set1 mark_ext_patch ,mark 
+0x6a4c 020674 bpatch patch38_3 ,mem_patch38 
+0x6a4d 020675 deposit regb 
+0x6a4e 020676 beq 2 ,servicesearch_req 
+0x6a4f 020677 beq 4 ,patch_serviceattribute_req 
+0x6a50 020678 beq 6 ,patch_servicesearchattribute_req 
+0x6a51 020679 beq 7 ,servicesearchattribute_res 
+0x6a52 020680 branch sdp_insufficient_resource 
+:      020691 servicesearch_req:
+0x6a53 020692 call ask_serviceclassid 
+0x6a54 020693 compare 1 ,temp ,0xff 
+0x6a55 020694 branch empth_sa_rsp ,true 
+0x6a56 020695 compare 0xff ,temp ,0xff 
+0x6a57 020696 branch sdp_invalid_reqest_syntax ,true 
+0x6a58 020698 ifetch 2 ,contr 
+0x6a59 020699 store 2 ,mem_sdp_record_maxcnt 
+0x6a5a 020700 increase -2 ,timeup 
+0x6a5b 020702 increase -1 ,timeup 
+0x6a5c 020703 nbranch sdp_invalid_pdu_size ,zero 
+0x6a5d 020704 arg mem_uuid_search_pat ,timeup 
+0x6a5e 020705 ifetch 2 ,timeup 
+0x6a5f 020706 rtn blank 
+0x6a60 020707 increase 2 ,timeup 
+0x6a61 020708 call search_uuid 
+0x6a62 020709 call l2cap_get_sdp_tx_payload 
+0x6a63 020710 force 3 ,pdata 
+0x6a64 020711 istore 1 ,contw 
+0x6a65 020712 fetch 2 ,mem_sdp_transactionid 
+0x6a66 020713 istore 2 ,contw 
+0x6a67 020714 lshift2 queue ,pdata 
+0x6a68 020715 add pdata ,5 ,pdata 
+0x6a69 020716 add pdata ,5 ,regc 
+0x6a6a 020717 byteswap pdata ,pdata 
+0x6a6b 020718 istore 2 ,contw 
+0x6a6c 020719 deposit queue 
+0x6a6d 020720 byteswap pdata ,pdata 
+0x6a6e 020721 istore 2 ,contw 
+0x6a6f 020722 istore 2 ,contw 
+0x6a70 020723 arg mem_handle_list ,contr 
+0x6a71 020724 copy queue ,loopcnt 
+0x6a72 020725 branch servicesearch_req_blank ,zero 
+:      020726 servicesearch_req_loop:
+0x6a73 020727 ifetch 4 ,contr 
+0x6a74 020728 istore 4 ,contw 
+0x6a75 020729 loop servicesearch_req_loop 
+:      020730 servicesearch_req_blank:
+0x6a76 020731 force 0 ,pdata 
+0x6a77 020732 istore 1 ,contw 
+0x6a78 020733 deposit regc 
+0x6a79 020734 store 1 ,mem_sdp_tx_pkt_length 
+0x6a7a 020735 branch assert ,blank 
+0x6a7b 020736 rtn 
+:      020747 patch_serviceattribute_req:
+0x6a7c 020748 ifetch 4 ,contr 
+0x6a7d 020749 store 4 ,mem_sdp_record_handle 
+0x6a7e 020750 increase -4 ,timeup 
+0x6a7f 020751 iforce temp 
+0x6a80 020752 ifetch 2 ,contr 
+0x6a81 020753 byteswap pdata ,pdata 
+0x6a82 020754 increase -18 ,pdata 
+0x6a83 020755 store 2 ,mem_sdp_attribute_maxbyte 
+0x6a84 020756 increase -2 ,timeup 
+0x6a85 020757 call dataelementtype6 
+0x6a86 020758 branch sdp_invalid_reqest_syntax ,zero 
+0x6a87 020759 compare 5 ,rega ,0xff 
+0x6a88 020761 branch patch_serviceattribute_judge_wholerangle ,true 
+:      020762 patch_serviceattribute_isnot_wholerangle:
+0x6a89 020763 arg mem_attrib_list ,contw 
+0x6a8a 020764 force 0 ,queue 
+0x6a8b 020765 branch patch_serviceattribute_req_loop 
+:      020766 patch_serviceattribute_judge_wholerangle:
+0x6a8c 020767 ifetch 1 ,contr 
+0x6a8d 020768 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6a8e 020769 ifetch 2 ,contr 
+0x6a8f 020770 nbranch patch_serviceattribute_judge_wholerangle_false1 ,blank 
+0x6a90 020771 ifetch 1 ,contr 
+0x6a91 020772 bne 0xff ,patch_serviceattribute_judge_wholerangle_false2 
+0x6a92 020773 ifetch 1 ,contr 
+0x6a93 020774 bne 0xff ,patch_serviceattribute_judge_wholerangle_false3 
+0x6a94 020775 increase -5 ,contr 
+0x6a95 020776 branch serviceattribute_req_all 
+:      020777 patch_serviceattribute_judge_wholerangle_false3:
+0x6a96 020778 increase -5 ,contr 
+0x6a97 020779 branch patch_serviceattribute_isnot_wholerangle 
+:      020780 patch_serviceattribute_judge_wholerangle_false2:
+0x6a98 020781 increase -4 ,contr 
+0x6a99 020782 branch patch_serviceattribute_isnot_wholerangle 
+:      020783 patch_serviceattribute_judge_wholerangle_false1:
+0x6a9a 020784 increase -3 ,contr 
+0x6a9b 020785 branch patch_serviceattribute_isnot_wholerangle 
+:      020786 patch_serviceattribute_req_loop:
+0x6a9c 020787 ifetch 1 ,contr 
+0x6a9d 020788 beq 0x09 ,patch_serviceattribute_req_one_id 
+0x6a9e 020789 beq 0x0a ,patch_serviceattribute_req_range_id 
+:      020790 patch_serviceattribute_req_range_id:
+0x6a9f 020791 ifetch 2 ,contr 
+0x6aa0 020792 istore 2 ,contw 
+0x6aa1 020793 increase 1 ,queue 
+0x6aa2 020794 byteswap pdata ,regb 
+0x6aa3 020795 ifetch 2 ,contr 
+0x6aa4 020796 byteswap pdata ,pdata 
+:      020797 patch_serviceattribute_req_range_id_increase:
+0x6aa5 020798 increase 1 ,regb 
+0x6aa6 020799 isub regb ,null 
+0x6aa7 020800 nbranch patch_serviceattribute_req_range_id_finish ,positive 
+0x6aa8 020801 copy pdata ,regc 
+0x6aa9 020802 byteswap regb ,pdata 
+0x6aaa 020803 istore 2 ,contw 
+0x6aab 020804 increase 1 ,queue 
+0x6aac 020805 copy regc ,pdata 
+0x6aad 020806 branch patch_serviceattribute_req_range_id_increase 
+:      020807 patch_serviceattribute_req_range_id_finish:
+0x6aae 020808 increase -5 ,timeup 
+0x6aaf 020809 increase -5 ,rega 
+0x6ab0 020810 branch patch_serviceattribute_req_check_next_id 
+:      020811 patch_serviceattribute_req_one_id:
+0x6ab1 020812 ifetch 2 ,contr 
+0x6ab2 020813 istore 2 ,contw 
+0x6ab3 020814 increase 1 ,queue 
+0x6ab4 020815 increase -3 ,timeup 
+0x6ab5 020816 increase -3 ,rega 
+:      020817 patch_serviceattribute_req_check_next_id:
+0x6ab6 020818 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6ab7 020819 nbranch patch_serviceattribute_req_loop ,zero 
+0x6ab8 020820 increase -1 ,timeup 
+0x6ab9 020821 nbranch sdp_invalid_reqest_syntax ,zero 
+0x6aba 020823 call l2cap_get_sdp_tx_payload 
+0x6abb 020824 increase 10 ,contw 
+0x6abc 020825 arg mem_attrib_list ,rega 
+:      020826 patch_answer_handle_attributelist_next:
+0x6abd 020827 set1 mark_ext_patch ,mark 
+0x6abe 020828 bpatch patch38_4 ,mem_patch38 
+0x6abf 020829 copy queue ,pdata 
+0x6ac0 020830 branch answer_handle_attributelist_end ,blank 
+0x6ac1 020831 ifetch 2 ,rega 
+0x6ac2 020832 branch answer_handle_attributelist_end ,blank 
+0x6ac3 020833 iforce regb 
+0x6ac4 020834 fetch 4 ,mem_sdp_record_handle 
+0x6ac5 020835 iforce temp 
+0x6ac6 020836 call search_handle_attrib 
+0x6ac7 020837 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6ac8 020838 increase -3 ,contr 
+0x6ac9 020839 ifetch 3 ,contr 
+0x6aca 020840 istore 3 ,contw 
+0x6acb 020841 call patch_sdp_data_len 
+0x6acc 020842 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6acd 020843 iforce loopcnt 
+0x6ace 020844 call memcpy 
+:      020845 patch_answer_handle_attributelist_notfound:
+0x6acf 020846 increase 2 ,rega 
+0x6ad0 020847 increase -1 ,queue 
+0x6ad1 020848 branch patch_answer_handle_attributelist_next 
+:      020850 answer_handle_attributelist_end:
+0x6ad2 020851 set1 mark_ext_patch ,mark 
+0x6ad3 020852 bpatch patch38_5 ,mem_patch38 
+0x6ad4 020853 force 0 ,pdata 
+0x6ad5 020854 istore 1 ,contw 
+0x6ad6 020855 increase -1 ,contw 
+0x6ad7 020856 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ad8 020857 add temp ,10 ,pdata 
+0x6ad9 020858 isub contw ,pdata 
+0x6ada 020859 sub pdata ,0 ,rega 
+0x6adb 020860 byteswap rega ,pdata 
+0x6adc 020861 add temp ,8 ,regb 
+0x6add 020862 istore 2 ,regb 
+0x6ade 020863 increase 3 ,rega 
+0x6adf 020864 byteswap rega ,pdata 
+0x6ae0 020865 add temp ,5 ,regb 
+0x6ae1 020866 istore 2 ,regb 
+0x6ae2 020867 increase 3 ,rega 
+0x6ae3 020868 byteswap rega ,pdata 
+0x6ae4 020869 add temp ,3 ,regb 
+0x6ae5 020870 istore 2 ,regb 
+0x6ae6 020871 increase 5 ,rega 
+0x6ae7 020872 copy rega ,pdata 
+0x6ae8 020873 store 2 ,mem_sdp_tx_pkt_length 
+0x6ae9 020874 setarg 0x36 
+0x6aea 020875 add temp ,7 ,regb 
+0x6aeb 020876 istore 1 ,regb 
+0x6aec 020877 setarg 5 
+0x6aed 020878 istore 1 ,temp 
+0x6aee 020879 fetch 2 ,mem_sdp_transactionid 
+0x6aef 020880 add temp ,1 ,regb 
+0x6af0 020881 istore 2 ,regb 
+0x6af1 020882 rtn 
+:      020883 serviceattribute_req_all:
+0x6af2 020884 ifetch 1 ,contr 
+0x6af3 020885 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6af4 020886 ifetch 2 ,contr 
+0x6af5 020887 nbranch sdp_invalid_reqest_syntax ,blank 
+0x6af6 020888 ifetch 1 ,contr 
+0x6af7 020889 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6af8 020890 ifetch 1 ,contr 
+0x6af9 020891 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6afa 020892 increase -5 ,timeup 
+0x6afb 020893 ifetch 1 ,contr 
+0x6afc 020894 beq 0 ,continue_zero 
+0x6afd 020895 beq 1 ,continue_one_byte 
+0x6afe 020896 beq 2 ,continue_two_byte 
+:      020897 continue_zero:
+0x6aff 020898 store 2 ,mem_sdp_continue_byte 
+0x6b00 020899 increase -1 ,timeup 
+0x6b01 020900 branch continue_end 
+:      020901 continue_one_byte:
+0x6b02 020902 ifetch 1 ,contr 
+0x6b03 020903 store 2 ,mem_sdp_continue_byte 
+0x6b04 020904 increase -2 ,timeup 
+0x6b05 020905 branch continue_end 
+:      020906 continue_two_byte:
+0x6b06 020907 ifetch 2 ,contr 
+0x6b07 020908 byteswap pdata ,pdata 
+0x6b08 020909 store 2 ,mem_sdp_continue_byte 
+0x6b09 020910 increase -3 ,timeup 
+:      020911 continue_end:
+0x6b0a 020912 nbranch sdp_invalid_pdu_size ,zero 
+0x6b0b 020913 set1 mark_ext_patch ,mark 
+0x6b0c 020914 bpatch patch38_6 ,mem_patch38 
+0x6b0d 020915 call search_handle 
+0x6b0e 020916 nbranch sdp_invalid_service_record_handle ,zero 
+0x6b0f 020917 copy contr ,rega 
+0x6b10 020918 call l2cap_get_sdp_tx_payload 
+0x6b11 020919 copy rega ,contr 
+0x6b12 020920 increase 3 ,contw 
+0x6b13 020921 copy contr ,timeup 
+0x6b14 020922 call sdp_get_data 
+0x6b15 020923 copy pdata ,rega 
+0x6b16 020924 fetch 2 ,mem_sdp_continue_byte 
+0x6b17 020925 copy pdata ,regb 
+0x6b18 020926 copy rega ,pdata 
+0x6b19 020927 isub regb ,regb 
+0x6b1a 020928 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b1b 020929 isub regb ,null 
+0x6b1c 020930 nbranch fragment_sdp ,positive 
+0x6b1d 020932 disable user 
+0x6b1e 020933 fetch 2 ,mem_sdp_continue_byte 
+0x6b1f 020934 branch fisrt_fragment ,blank 
+0x6b20 020935 iadd timeup ,contr 
+0x6b21 020936 increase 3 ,regb 
+0x6b22 020937 copy regb ,loopcnt 
+0x6b23 020938 copy loopcnt ,pdata 
+0x6b24 020939 increase 3 ,pdata 
+0x6b25 020940 byteswap pdata ,pdata 
+0x6b26 020941 istore 2 ,contw 
+0x6b27 020942 copy loopcnt ,pdata 
+0x6b28 020943 byteswap pdata ,pdata 
+0x6b29 020944 istore 2 ,contw 
+0x6b2a 020945 branch answer_attributelist_full_loop 
+:      020946 fisrt_fragment:
+0x6b2b 020947 add rega ,6 ,loopcnt 
+0x6b2c 020948 branch parlength_continue_byte ,user 
+0x6b2d 020949 byteswap loopcnt ,pdata 
+0x6b2e 020950 branch parlength_continue_byte_end 
+:      020951 parlength_continue_byte:
+0x6b2f 020952 copy loopcnt ,pdata 
+0x6b30 020953 increase 2 ,pdata 
+0x6b31 020954 byteswap pdata ,pdata 
+:      020955 parlength_continue_byte_end:
+0x6b32 020956 istore 2 ,contw 
+0x6b33 020957 increase -3 ,loopcnt 
+0x6b34 020958 byteswap loopcnt ,pdata 
+0x6b35 020959 istore 2 ,contw 
+0x6b36 020960 copy timeup ,contr 
+0x6b37 020961 branch answer_attributelist_full_loop 
+:      020962 fragment_sdp:
+0x6b38 020963 enable user 
+0x6b39 020964 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b3a 020965 copy pdata ,rega 
+0x6b3b 020966 copy pdata ,loopcnt 
+0x6b3c 020967 fetch 2 ,mem_sdp_continue_byte 
+0x6b3d 020968 branch fisrt_fragment ,blank 
+0x6b3e 020969 iadd timeup ,contr 
+0x6b3f 020970 copy rega ,pdata 
+0x6b40 020971 increase 5 ,pdata 
+0x6b41 020972 byteswap pdata ,pdata 
+0x6b42 020973 istore 2 ,contw 
+0x6b43 020974 copy rega ,pdata 
+0x6b44 020975 byteswap pdata ,pdata 
+0x6b45 020976 istore 2 ,contw 
+:      020977 answer_attributelist_full_loop:
+0x6b46 020978 ifetch 1 ,contr 
+0x6b47 020979 istore 1 ,contw 
+0x6b48 020980 loop answer_attributelist_full_loop 
+0x6b49 020981 nbranch last_frag_continue ,user 
+0x6b4a 020982 force 2 ,pdata 
+0x6b4b 020983 istore 1 ,contw 
+0x6b4c 020984 copy contr ,pdata 
+0x6b4d 020985 isub timeup ,pdata 
+0x6b4e 020986 byteswap pdata ,pdata 
+0x6b4f 020987 istore 2 ,contw 
+0x6b50 020988 branch sdp_frag_end 
+:      020989 last_frag_continue:
+0x6b51 020990 force 0 ,pdata 
+0x6b52 020991 istore 1 ,contw 
+:      020992 sdp_frag_end:
+0x6b53 020993 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x6b54 020994 isub contw ,pdata 
+0x6b55 020995 sub pdata ,0 ,pdata 
+0x6b56 020996 store 2 ,mem_sdp_tx_pkt_length 
+0x6b57 020997 call l2cap_get_sdp_tx_payload 
+0x6b58 020998 setarg 5 
+0x6b59 020999 istore 1 ,contw 
+0x6b5a 021000 fetch 2 ,mem_sdp_transactionid 
+0x6b5b 021001 istore 2 ,contw 
+0x6b5c 021002 rtn 
+:      021012 patch_servicesearchattribute_req:
+0x6b5d 021015 call ask_serviceclassid 
+0x6b5e 021016 compare 0xff ,temp ,0xff 
+0x6b5f 021017 branch patch_servicesearchattribute_req_all ,true 
+0x6b60 021018 ifetch 2 ,contr 
+0x6b61 021019 byteswap pdata ,pdata 
+0x6b62 021020 increase -18 ,pdata 
+0x6b63 021021 store 2 ,mem_sdp_attribute_maxbyte 
+0x6b64 021022 increase -2 ,timeup 
+0x6b65 021023 call dataelementtype6 
+0x6b66 021024 arg mem_attrib_list ,contw 
+0x6b67 021025 force 0 ,queue 
+:      021026 patch_servicesearchattribute_req_loop:
+0x6b68 021027 ifetch 3 ,contr 
+0x6b69 021028 bne 0x09 ,patch_servicesearchattribute_req_all 
+:      021029 patch_servicesearchattribute_req_uuid:
+0x6b6a 021030 rshift8 pdata ,pdata 
+0x6b6b 021031 istore 2 ,contw 
+0x6b6c 021032 increase 1 ,queue 
+0x6b6d 021033 increase -3 ,timeup 
+0x6b6e 021034 increase -3 ,rega 
+0x6b6f 021035 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b70 021036 nbranch patch_servicesearchattribute_req_loop ,zero 
+0x6b71 021037 increase -1 ,timeup 
+0x6b72 021038 nbranch sdp_invalid_reqest_syntax ,zero 
+:      021039 patch_servicesearchattribute_req_search:
+0x6b73 021040 call l2cap_get_sdp_tx_payload 
+0x6b74 021041 increase 13 ,contw 
+0x6b75 021042 fetch 2 ,mem_uuid_search_pat 
+0x6b76 021043 iforce regc 
+0x6b77 021044 arg mem_attrib_list ,rega 
+:      021045 patch_answer_attributelist_next:
+0x6b78 021046 ifetch 4 ,rega 
+0x6b79 021047 branch patch_answer_attributelist_end ,blank 
+0x6b7a 021048 ifetch 2 ,rega 
+0x6b7b 021049 iforce regb 
+0x6b7c 021050 call search_attrib 
+0x6b7d 021051 branch patch_answer_attributelist_notfound ,blank 
+0x6b7e 021052 increase -3 ,contr 
+0x6b7f 021053 ifetch 3 ,contr 
+0x6b80 021054 istore 3 ,contw 
+0x6b81 021055 call patch_sdp_data_len 
+0x6b82 021056 iforce loopcnt 
+:      021057 patch_answer_attributelist_attrib_loop:
+0x6b83 021058 ifetch 1 ,contr 
+0x6b84 021059 istore 1 ,contw 
+0x6b85 021060 loop patch_answer_attributelist_attrib_loop 
+:      021061 patch_answer_attributelist_notfound:
+0x6b86 021062 increase 2 ,rega 
+0x6b87 021063 branch patch_answer_attributelist_next 
+:      021064 patch_servicesearchattribute_req_all:
+0x6b88 021065 set1 mark_ext_patch ,mark 
+0x6b89 021066 bpatch patch38_7 ,mem_patch38 
+0x6b8a 021070 ifetch 1 ,contr 
+0x6b8b 021072 ifetch 1 ,contr 
+0x6b8c 021074 increase -5 ,timeup 
+0x6b8d 021075 increase -5 ,rega 
+0x6b8e 021076 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b8f 021077 ifetch 1 ,contr 
+0x6b90 021078 increase -1 ,timeup 
+0x6b91 021079 jam 0 ,mem_sdp_continue_byte 
+0x6b92 021080 jam 0 ,mem_sdp_continue_byte + 1 
+0x6b93 021081 nbranch patch_servicesearchattribute_req_all_continue ,blank 
+0x6b94 021082 arg mem_uuid_search_pat ,timeup 
+0x6b95 021083 ifetch 2 ,timeup 
+0x6b96 021085 increase 2 ,timeup 
+0x6b97 021086 call search_uuid 
+0x6b98 021087 deposit queue 
+0x6b99 021088 store 1 ,mem_handle_humber 
+0x6b9a 021089 branch empty_ssa_rsp ,blank 
+0x6b9b 021090 arg 0 ,queue 
+0x6b9c 021091 call l2cap_get_sdp_tx_payload 
+0x6b9d 021092 increase 10 ,contw 
+0x6b9e 021093 branch servicesearchattribute_req_next_handle 
+:      021095 patch_servicesearchattribute_req_all_continue:
+0x6b9f 021096 ifetch 2 ,contr 
+0x6ba0 021097 increase -2 ,timeup 
+0x6ba1 021098 byteswap pdata ,pdata 
+0x6ba2 021099 store 2 ,mem_sdp_continue_byte 
+0x6ba3 021100 arg mem_uuid_search_pat ,timeup 
+0x6ba4 021101 ifetch 2 ,timeup 
+0x6ba5 021103 increase 2 ,timeup 
+0x6ba6 021104 call search_uuid 
+0x6ba7 021105 deposit queue 
+0x6ba8 021106 store 1 ,mem_handle_humber 
+0x6ba9 021107 branch empty_ssa_rsp ,blank 
+0x6baa 021108 arg 0 ,queue 
+0x6bab 021109 call l2cap_get_sdp_tx_payload 
+0x6bac 021110 increase 7 ,contw 
+0x6bad 021111 branch servicesearchattribute_req_next_handle_continue 
+:      021113 patch_answer_attributelist_end:
+0x6bae 021114 force 0 ,pdata 
+0x6baf 021115 istore 1 ,contw 
+0x6bb0 021116 increase -1 ,contw 
+0x6bb1 021117 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6bb2 021118 add temp ,13 ,pdata 
+0x6bb3 021119 isub contw ,pdata 
+0x6bb4 021120 branch patch_no_attribute_return ,zero 
+0x6bb5 021121 sub pdata ,0 ,pdata 
+0x6bb6 021122 add temp ,12 ,regb 
+0x6bb7 021123 istore 1 ,regb 
+0x6bb8 021124 increase 3 ,pdata 
+0x6bb9 021125 add temp ,9 ,regb 
+0x6bba 021126 istore 1 ,regb 
+0x6bbb 021127 increase 3 ,pdata 
+0x6bbc 021128 byteswap pdata ,pdata 
+0x6bbd 021129 add temp ,5 ,regb 
+0x6bbe 021130 istore 2 ,regb 
+0x6bbf 021131 rshift8 pdata ,pdata 
+0x6bc0 021132 increase 3 ,pdata 
+0x6bc1 021133 byteswap pdata ,pdata 
+0x6bc2 021134 add temp ,3 ,regb 
+0x6bc3 021135 istore 2 ,regb 
+0x6bc4 021136 rshift8 pdata ,pdata 
+0x6bc5 021137 increase 5 ,pdata 
+0x6bc6 021138 store 1 ,mem_sdp_tx_pkt_length 
+0x6bc7 021140 fetch 2 ,mem_sdp_transactionid 
+0x6bc8 021141 add temp ,1 ,regb 
+0x6bc9 021142 istore 2 ,regb 
+0x6bca 021143 setarg 7 
+0x6bcb 021144 istore 1 ,temp 
+0x6bcc 021149 setarg 0x0036 
+0x6bcd 021150 add temp ,7 ,regb 
+0x6bce 021151 istore 2 ,regb 
+0x6bcf 021152 add temp ,10 ,regb 
+0x6bd0 021153 istore 2 ,regb 
+0x6bd1 021154 rtn 
+:      021155 patch_no_attribute_return:
+0x6bd2 021156 jam 10 ,mem_sdp_tx_pkt_length 
+0x6bd3 021157 call l2cap_get_sdp_tx_payload 
+0x6bd4 021159 setarg 7 
+0x6bd5 021160 istore 1 ,contw 
+0x6bd6 021161 fetch 2 ,mem_sdp_transactionid 
+0x6bd7 021162 istore 2 ,contw 
+0x6bd8 021166 setarg 0x0500 
+0x6bd9 021167 istore 2 ,contw 
+0x6bda 021170 setarg 0x0200 
+0x6bdb 021171 istore 2 ,contw 
+0x6bdc 021175 setarg 0x000035 
+0x6bdd 021176 istore 3 ,contw 
+0x6bde 021177 rtn 
+:      021179 servicesearchattribute_req_attributelist_loop:
+0x6bdf 021180 ifetch 1 ,contr 
+0x6be0 021181 istore 1 ,contw 
+0x6be1 021182 increase 1 ,regb 
+0x6be2 021183 increase -1 ,rega 
+0x6be3 021184 branch servicesearchattribute_req_check_next_ctn ,zero 
+0x6be4 021185 loop servicesearchattribute_req_attributelist_loop 
+:      021186 servicesearchattribute_req_check_next_ctn:
+0x6be5 021187 copy contw ,timeup 
+0x6be6 021188 copy regb ,pdata 
+0x6be7 021189 store 2 ,mem_sdp_continue_byte 
+0x6be8 021190 copy rega ,pdata 
+0x6be9 021191 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bea 021192 branch answer_attributelist_with_ctn_bytes ,blank 
+0x6beb 021193 branch answer_attributelist_with_ctn_end ,user 
+0x6bec 021194 copy timeup ,contw 
+:      021195 servicesearchattribute_req_check_handle:
+0x6bed 021196 increase 1 ,queue 
+0x6bee 021197 fetch 1 ,mem_handle_humber 
+0x6bef 021198 isub queue ,null 
+0x6bf0 021199 nbranch servicesearchattribute_req_next_handle ,zero 
+0x6bf1 021200 branch answer_attributelist_end_long 
+:      021202 servicesearchattribute_req_attributelist_loop_continue:
+0x6bf2 021203 ifetch 1 ,contr 
+0x6bf3 021204 istore 1 ,contw 
+0x6bf4 021205 increase 1 ,regb 
+0x6bf5 021206 increase -1 ,rega 
+0x6bf6 021207 branch servicesearchattribute_req_check_next_ctn_continue ,zero 
+0x6bf7 021208 loop servicesearchattribute_req_attributelist_loop_continue 
+:      021209 servicesearchattribute_req_check_next_ctn_continue:
+0x6bf8 021210 copy contw ,timeup 
+0x6bf9 021211 copy regb ,pdata 
+0x6bfa 021212 store 2 ,mem_sdp_continue_byte 
+0x6bfb 021213 copy rega ,pdata 
+0x6bfc 021214 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bfd 021215 branch answer_attributelist_with_ctn_bytes_continue ,blank 
+0x6bfe 021216 branch answer_attributelist_with_ctn_end ,user 
+0x6bff 021217 copy timeup ,contw 
+:      021218 servicesearchattribute_req_check_handle_continue:
+0x6c00 021219 increase 1 ,queue 
+0x6c01 021220 fetch 1 ,mem_handle_humber 
+0x6c02 021221 isub queue ,null 
+0x6c03 021222 nbranch servicesearchattribute_req_next_handle_continue ,zero 
+0x6c04 021223 branch answer_attributelist_end_long_continue 
+:      021225 servicesearchattribute_req_next_handle:
+0x6c05 021226 arg mem_handle_list ,contr 
+0x6c06 021227 lshift2 queue ,pdata 
+0x6c07 021228 iadd contr ,contr 
+0x6c08 021229 ifetch 4 ,contr 
+0x6c09 021230 iforce temp 
+0x6c0a 021231 call search_handle 
+0x6c0b 021232 copy contr ,timeup 
+0x6c0c 021233 call sdp_get_data 
+0x6c0d 021234 add pdata ,3 ,loopcnt 
+0x6c0e 021235 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c0f 021236 copy pdata ,rega 
+0x6c10 021237 fetch 2 ,mem_sdp_continue_byte 
+0x6c11 021238 copy pdata ,regb 
+0x6c12 021239 copy timeup ,contr 
+0x6c13 021240 branch servicesearchattribute_req_attributelist_loop 
+:      021242 servicesearchattribute_req_next_handle_continue:
+0x6c14 021243 arg mem_handle_list ,contr 
+0x6c15 021244 lshift2 queue ,pdata 
+0x6c16 021245 iadd contr ,contr 
+0x6c17 021246 ifetch 4 ,contr 
+0x6c18 021247 iforce temp 
+0x6c19 021248 call search_handle 
+0x6c1a 021249 copy contr ,timeup 
+0x6c1b 021250 call sdp_get_data 
+0x6c1c 021251 add pdata ,3 ,pdata 
+0x6c1d 021252 fetcht 2 ,mem_sdp_continue_byte 
+0x6c1e 021253 isub temp ,loopcnt 
+0x6c1f 021254 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c20 021255 copy pdata ,rega 
+0x6c21 021256 fetch 2 ,mem_sdp_continue_byte 
+0x6c22 021257 copy pdata ,regb 
+0x6c23 021258 copy timeup ,contr 
+0x6c24 021259 iadd contr ,contr 
+0x6c25 021260 branch servicesearchattribute_req_attributelist_loop_continue 
+:      021262 answer_attributelist_with_ctn_bytes:
+0x6c26 021263 arg 0 ,queue 
+0x6c27 021264 arg 0 ,regb 
+:      021265 answer_attributelist_calc_attribute_length:
+0x6c28 021266 arg mem_handle_list ,contr 
+0x6c29 021267 lshift2 queue ,pdata 
+0x6c2a 021268 iadd contr ,contr 
+0x6c2b 021269 ifetch 4 ,contr 
+0x6c2c 021270 iforce temp 
+0x6c2d 021271 call search_handle 
+0x6c2e 021272 call sdp_get_data 
+0x6c2f 021273 add pdata ,3 ,pdata 
+0x6c30 021274 iadd regb ,regb 
+0x6c31 021275 increase 1 ,queue 
+0x6c32 021276 fetch 1 ,mem_handle_humber 
+0x6c33 021277 isub queue ,null 
+0x6c34 021278 nbranch answer_attributelist_calc_attribute_length ,zero 
+0x6c35 021280 copy timeup ,contw 
+0x6c36 021281 force 2 ,pdata 
+0x6c37 021282 istore 1 ,contw 
+0x6c38 021283 fetch 2 ,mem_sdp_continue_byte 
+0x6c39 021284 byteswap pdata ,pdata 
+0x6c3a 021285 istore 2 ,contw 
+0x6c3b 021286 increase -3 ,contw 
+0x6c3c 021287 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c3d 021288 add temp ,10 ,pdata 
+0x6c3e 021289 isub contw ,pdata 
+0x6c3f 021290 sub pdata ,0 ,pdata 
+0x6c40 021291 iforce rega 
+0x6c41 021293 deposit regb 
+0x6c42 021294 add temp ,9 ,regb 
+0x6c43 021295 istore 1 ,regb 
+0x6c44 021296 rshift8 pdata ,pdata 
+0x6c45 021297 add temp ,8 ,regb 
+0x6c46 021298 istore 1 ,regb 
+0x6c47 021299 increase 3 ,rega 
+0x6c48 021300 deposit rega 
+0x6c49 021301 add temp ,6 ,regb 
+0x6c4a 021302 istore 1 ,regb 
+0x6c4b 021303 rshift8 pdata ,pdata 
+0x6c4c 021304 add temp ,5 ,regb 
+0x6c4d 021305 istore 1 ,regb 
+0x6c4e 021306 increase 5 ,rega 
+0x6c4f 021307 deposit rega 
+0x6c50 021308 add temp ,4 ,regb 
+0x6c51 021309 istore 1 ,regb 
+0x6c52 021310 rshift8 pdata ,pdata 
+0x6c53 021311 add temp ,3 ,regb 
+0x6c54 021312 istore 1 ,regb 
+0x6c55 021313 increase 5 ,rega 
+0x6c56 021314 deposit rega 
+0x6c57 021315 store 2 ,mem_sdp_tx_pkt_length 
+0x6c58 021316 setarg 7 
+0x6c59 021317 istore 1 ,temp 
+0x6c5a 021318 setarg 0x36 
+0x6c5b 021319 add temp ,7 ,regb 
+0x6c5c 021320 istore 1 ,regb 
+0x6c5d 021321 add temp ,1 ,regb 
+0x6c5e 021322 fetch 2 ,mem_sdp_transactionid 
+0x6c5f 021323 istore 2 ,regb 
+0x6c60 021324 rtn 
+:      021326 answer_attributelist_with_ctn_bytes_continue:
+0x6c61 021327 arg 0 ,queue 
+0x6c62 021328 arg 0 ,regb 
+:      021329 answer_attributelist_calc_attribute_length_continue:
+0x6c63 021330 copy timeup ,contw 
+0x6c64 021331 force 2 ,pdata 
+0x6c65 021332 istore 1 ,contw 
+0x6c66 021333 fetch 2 ,mem_sdp_continue_byte 
+0x6c67 021334 byteswap pdata ,pdata 
+0x6c68 021335 istore 2 ,contw 
+0x6c69 021336 increase -3 ,contw 
+0x6c6a 021337 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c6b 021338 add temp ,7 ,pdata 
+0x6c6c 021339 isub contw ,pdata 
+0x6c6d 021340 sub pdata ,0 ,pdata 
+0x6c6e 021341 iforce rega 
+0x6c6f 021343 deposit rega 
+0x6c70 021344 add temp ,6 ,regb 
+0x6c71 021345 istore 1 ,regb 
+0x6c72 021346 rshift8 pdata ,pdata 
+0x6c73 021347 add temp ,5 ,regb 
+0x6c74 021348 istore 1 ,regb 
+0x6c75 021349 increase 5 ,rega 
+0x6c76 021350 deposit rega 
+0x6c77 021351 add temp ,4 ,regb 
+0x6c78 021352 istore 1 ,regb 
+0x6c79 021353 rshift8 pdata ,pdata 
+0x6c7a 021354 add temp ,3 ,regb 
+0x6c7b 021355 istore 1 ,regb 
+0x6c7c 021356 increase 5 ,rega 
+0x6c7d 021357 deposit rega 
+0x6c7e 021358 store 2 ,mem_sdp_tx_pkt_length 
+0x6c7f 021359 setarg 7 
+0x6c80 021360 istore 1 ,temp 
+0x6c81 021361 add temp ,1 ,regb 
+0x6c82 021362 fetch 2 ,mem_sdp_transactionid 
+0x6c83 021363 istore 2 ,regb 
+0x6c84 021364 rtn 
+:      021366 answer_attributelist_with_ctn_end:
+0x6c85 021367 copy timeup ,contw 
+0x6c86 021368 force 0 ,pdata 
+0x6c87 021369 istore 1 ,contw 
+0x6c88 021370 increase -1 ,contw 
+0x6c89 021371 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c8a 021372 add temp ,7 ,pdata 
+0x6c8b 021373 isub contw ,pdata 
+0x6c8c 021374 sub pdata ,0 ,pdata 
+0x6c8d 021375 iforce rega 
+0x6c8e 021377 deposit rega 
+0x6c8f 021378 add temp ,6 ,regb 
+0x6c90 021379 istore 1 ,regb 
+0x6c91 021380 rshift8 pdata ,pdata 
+0x6c92 021381 add temp ,5 ,regb 
+0x6c93 021382 istore 1 ,regb 
+0x6c94 021383 increase 3 ,rega 
+0x6c95 021384 deposit rega 
+0x6c96 021385 add temp ,4 ,regb 
+0x6c97 021386 istore 1 ,regb 
+0x6c98 021387 rshift8 pdata ,pdata 
+0x6c99 021388 add temp ,3 ,regb 
+0x6c9a 021389 istore 1 ,regb 
+0x6c9b 021390 increase 5 ,rega 
+0x6c9c 021391 deposit rega 
+0x6c9d 021392 store 2 ,mem_sdp_tx_pkt_length 
+0x6c9e 021394 setarg 7 
+0x6c9f 021395 istore 1 ,temp 
+0x6ca0 021397 fetch 2 ,mem_sdp_transactionid 
+0x6ca1 021398 add temp ,1 ,regb 
+0x6ca2 021399 istore 2 ,regb 
+0x6ca3 021400 rtn 
+:      021402 answer_attributelist_end_long:
+0x6ca4 021403 force 0 ,pdata 
+0x6ca5 021404 istore 1 ,contw 
+0x6ca6 021405 increase -1 ,contw 
+0x6ca7 021406 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ca8 021407 add temp ,10 ,pdata 
+0x6ca9 021408 isub contw ,pdata 
+0x6caa 021409 sub pdata ,0 ,pdata 
+0x6cab 021410 iforce rega 
+0x6cac 021412 deposit rega 
+0x6cad 021413 add temp ,9 ,regb 
+0x6cae 021414 istore 1 ,regb 
+0x6caf 021415 rshift8 pdata ,pdata 
+0x6cb0 021416 add temp ,8 ,regb 
+0x6cb1 021417 istore 1 ,regb 
+0x6cb2 021419 increase 3 ,rega 
+0x6cb3 021420 deposit rega 
+0x6cb4 021421 add temp ,6 ,regb 
+0x6cb5 021422 istore 1 ,regb 
+0x6cb6 021423 rshift8 pdata ,pdata 
+0x6cb7 021424 add temp ,5 ,regb 
+0x6cb8 021425 istore 1 ,regb 
+0x6cb9 021426 increase 3 ,rega 
+0x6cba 021427 deposit rega 
+0x6cbb 021428 add temp ,4 ,regb 
+0x6cbc 021429 istore 1 ,regb 
+0x6cbd 021430 rshift8 pdata ,pdata 
+0x6cbe 021431 add temp ,3 ,regb 
+0x6cbf 021432 istore 1 ,regb 
+0x6cc0 021433 increase 5 ,rega 
+0x6cc1 021434 deposit rega 
+0x6cc2 021435 store 2 ,mem_sdp_tx_pkt_length 
+0x6cc3 021436 setarg 0x36 
+0x6cc4 021437 add temp ,7 ,regb 
+0x6cc5 021438 istore 1 ,regb 
+0x6cc6 021439 setarg 7 
+0x6cc7 021440 istore 1 ,temp 
+0x6cc8 021441 fetch 2 ,mem_sdp_transactionid 
+0x6cc9 021442 add temp ,1 ,regb 
+0x6cca 021443 istore 2 ,regb 
+0x6ccb 021444 rtn 
+:      021446 answer_attributelist_end_long_continue:
+0x6ccc 021447 force 0 ,pdata 
+0x6ccd 021448 istore 1 ,contw 
+0x6cce 021449 increase -1 ,contw 
+0x6ccf 021450 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6cd0 021451 add temp ,7 ,pdata 
+0x6cd1 021452 isub contw ,pdata 
+0x6cd2 021453 sub pdata ,0 ,pdata 
+0x6cd3 021454 iforce rega 
+0x6cd4 021457 deposit rega 
+0x6cd5 021458 add temp ,6 ,regb 
+0x6cd6 021459 istore 1 ,regb 
+0x6cd7 021460 rshift8 pdata ,pdata 
+0x6cd8 021461 add temp ,5 ,regb 
+0x6cd9 021462 istore 1 ,regb 
+0x6cda 021463 increase 3 ,rega 
+0x6cdb 021464 deposit rega 
+0x6cdc 021465 add temp ,4 ,regb 
+0x6cdd 021466 istore 1 ,regb 
+0x6cde 021467 rshift8 pdata ,pdata 
+0x6cdf 021468 add temp ,3 ,regb 
+0x6ce0 021469 istore 1 ,regb 
+0x6ce1 021470 increase 5 ,rega 
+0x6ce2 021471 deposit rega 
+0x6ce3 021472 store 2 ,mem_sdp_tx_pkt_length 
+0x6ce4 021476 setarg 7 
+0x6ce5 021477 istore 1 ,temp 
+0x6ce6 021478 fetch 2 ,mem_sdp_transactionid 
+0x6ce7 021479 add temp ,1 ,regb 
+0x6ce8 021480 istore 2 ,regb 
+0x6ce9 021481 rtn 
+:      021483 patch_sdp_data_len:
+0x6cea 021484 copy contr ,timeup 
+0x6ceb 021485 ifetch 1 ,contr 
+0x6cec 021486 and pdata ,0x07 ,loopcnt 
+0x6ced 021487 rshift3 pdata ,pdata 
+0x6cee 021488 beq 6 ,patch_sdp_data_len_6 
+0x6cef 021489 beq 1 ,sdp_data_len_1 
+0x6cf0 021490 beq 4 ,sdp_data_len_6 
+0x6cf1 021491 beq 5 ,sdp_data_len_5 
+0x6cf2 021492 branch sdp_data_len_rtn 
+:      021493 patch_sdp_data_len_6:
+0x6cf3 021494 call patch_sdp_get_data_6 
+0x6cf4 021495 branch sdp_data_len_rtn 
+:      021496 patch_sdp_get_data_6:
+0x6cf5 021497 deposit loopcnt 
+0x6cf6 021498 beq 5 ,patch_sdp_get_data_6_8bit 
+0x6cf7 021499 beq 6 ,patch_sdp_get_data_6_16bit 
+0x6cf8 021500 force 3 ,loopcnt 
+0x6cf9 021501 branch sdp_get_data_1 
+:      021502 patch_sdp_get_data_6_8bit:
+0x6cfa 021503 ifetch 1 ,contr 
+0x6cfb 021504 increase 2 ,pdata 
+0x6cfc 021505 rtn 
+:      021506 patch_sdp_get_data_6_16bit:
+0x6cfd 021507 ifetch 2 ,contr 
+0x6cfe 021508 byteswap pdata ,pdata 
+0x6cff 021509 increase 3 ,pdata 
+0x6d00 021510 rtn 
+:      021512 sdp_send_spp_request:
+0x6d01 021513 call l2cap_get_sdp_tx_payload 
+0x6d02 021514 copy pdata ,contw 
+0x6d03 021515 setarg 6 
+0x6d04 021516 istore 1 ,contw 
+0x6d05 021517 setarg sdp_tid_spp 
+0x6d06 021518 istore 2 ,contw 
+0x6d07 021519 setarg 0x0f00 
+0x6d08 021520 istore 2 ,contw 
+0x6d09 021521 setarg 0x1a0535 
+0x6d0a 021522 istore 3 ,contw 
+0x6d0b 021523 setarg 0x0111 
+0x6d0c 021524 lshift16 pdata ,pdata 
+0x6d0d 021525 istore 4 ,contw 
+0x6d0e 021526 setarg 0x2600 
+0x6d0f 021527 istore 2 ,contw 
+0x6d10 021528 setarg 0x0335 
+0x6d11 021529 istore 2 ,contw 
+0x6d12 021530 setarg 0x0009 
+0x6d13 021531 istore 2 ,contw 
+0x6d14 021532 setarg 0x0004 
+0x6d15 021533 istore 2 ,contw 
+0x6d16 021534 jam 0x14 ,mem_sdp_tx_pkt_length 
+0x6d17 021535 rtn 
+:      021545 servicesearchattribute_res:
+0x6d18 021546 copy contr ,temp 
+0x6d19 021547 fetch 2 ,mem_sdp_transactionid 
+0x6d1a 021548 beq sdp_tid_spp ,servicesearchattribute_res_spp 
+0x6d1b 021551 branch srchfail 
+:      021553 servicesearchattribute_res_spp:
+0x6d1c 021554 copy temp ,contr 
+0x6d1d 021555 increase -3 ,timeup 
+0x6d1e 021556 copy timeup ,pdata 
+0x6d1f 021557 beq 2 ,srchfail 
+0x6d20 021558 call find_rfcomm_channel_number 
+0x6d21 021559 rtn user 
+0x6d22 021560 store 1 ,mem_remote_spp_channel 
+0x6d23 021561 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+0x6d24 021562 rtn 
+:      021564 srchfail:
+0x6d25 021565 rtn 
+:      021571 find_rfcomm_channel_number:
+0x6d26 021572 enable user 
+0x6d27 021573 copy pdata ,loopcnt 
+0x6d28 021574 arg 0x0400 ,temp 
+:      021575 find_rfcomm_channel_number_loop:
+0x6d29 021576 ifetch 2 ,contr 
+0x6d2a 021577 isub temp ,null 
+0x6d2b 021578 branch find_rfcomm_channel_number_find_adl ,zero 
+0x6d2c 021579 increase -1 ,contr 
+0x6d2d 021580 loop find_rfcomm_channel_number_loop 
+0x6d2e 021581 rtn 
+:      021582 find_rfcomm_channel_number_find_adl:
+0x6d2f 021583 arg 0x0300 ,temp 
+:      021584 find_rfcomm_channel_number_loop2:
+0x6d30 021585 ifetch 2 ,contr 
+0x6d31 021586 isub temp ,null 
+0x6d32 021587 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+0x6d33 021588 increase -1 ,contr 
+0x6d34 021589 loop find_rfcomm_channel_number_loop2 
+0x6d35 021590 rtn 
+:      021591 find_rfcomm_channel_number_find_rfcomm:
+0x6d36 021592 ifetch 1 ,contr 
+0x6d37 021593 ifetch 1 ,contr 
+0x6d38 021594 disable user 
+0x6d39 021595 rtn 
+:      021597 sdp_invalid_service_record_handle:
+0x6d3a 021598 setarg 0x0200 
+0x6d3b 021599 store 2 ,mem_sdp_error_code 
+0x6d3c 021600 branch sdp_error_response 
+:      021601 sdp_invalid_pdu_size:
+0x6d3d 021602 setarg 0x0400 
+0x6d3e 021603 store 2 ,mem_sdp_error_code 
+0x6d3f 021604 branch sdp_error_response 
+:      021605 sdp_insufficient_resource:
+0x6d40 021606 setarg 0x0600 
+0x6d41 021607 store 2 ,mem_sdp_error_code 
+0x6d42 021608 branch sdp_error_response 
+:      021609 sdp_invalid_reqest_syntax:
+0x6d43 021610 setarg 0x0300 
+0x6d44 021611 store 2 ,mem_sdp_error_code 
+:      021612 sdp_error_response:
+0x6d45 021613 call l2cap_get_sdp_tx_payload 
+0x6d46 021614 istore 1 ,contw 
+0x6d47 021615 fetch 2 ,mem_sdp_transactionid 
+0x6d48 021616 istore 2 ,contw 
+0x6d49 021617 setarg 0x0200 
+0x6d4a 021618 istore 2 ,contw 
+0x6d4b 021619 fetch 2 ,mem_sdp_error_code 
+0x6d4c 021620 istore 2 ,contw 
+0x6d4d 021621 jam 7 ,mem_sdp_tx_pkt_length 
+0x6d4e 021622 rtn 
+:      021624 ask_serviceclassid:
+0x6d4f 021625 set1 mark_ext_patch ,mark 
+0x6d50 021626 bpatch patch39_0 ,mem_patch39 
+0x6d51 021627 force 0 ,temp 
+0x6d52 021628 arg mem_uuid_search_pat ,contw 
+0x6d53 021629 call dataelementtype6 
+0x6d54 021630 branch asksrv_error ,zero 
+:      021631 classidloop:
+0x6d55 021632 ifetch 1 ,contr 
+0x6d56 021633 increase -1 ,rega 
+0x6d57 021634 increase -1 ,timeup 
+0x6d58 021635 compare 0x18 ,pdata ,0xf8 
+0x6d59 021636 nbranch asksrv_error ,true 
+0x6d5a 021637 compare 0x04 ,pdata ,0x07 
+0x6d5b 021638 nbranch cmp032 ,true 
+0x6d5c 021639 force 1 ,temp 
+:      021640 skip2bytes:
+0x6d5d 021641 ifetch 1 ,contr 
+0x6d5e 021642 increase -1 ,rega 
+0x6d5f 021643 increase -1 ,timeup 
+0x6d60 021644 bne 0x00 ,frstbwrong 
+0x6d61 021645 ifetch 1 ,contr 
+0x6d62 021646 increase -1 ,rega 
+0x6d63 021647 increase -1 ,timeup 
+0x6d64 021648 beq 0x00 ,cmpuuid 
+0x6d65 021649 branch scndbwrong 
+:      021650 frstbwrong:
+0x6d66 021651 increase 1 ,contr 
+0x6d67 021652 increase -1 ,rega 
+0x6d68 021653 increase -1 ,timeup 
+:      021654 scndbwrong:
+0x6d69 021655 increase 2 ,contr 
+0x6d6a 021656 increase -2 ,rega 
+0x6d6b 021657 increase -2 ,timeup 
+0x6d6c 021658 compare 0x00 ,temp ,0xff 
+0x6d6d 021659 branch loopornot ,true 
+0x6d6e 021660 increase 12 ,contr 
+0x6d6f 021661 increase -12 ,rega 
+0x6d70 021662 increase -12 ,timeup 
+0x6d71 021663 branch loopornot 
+:      021664 cmp032:
+0x6d72 021665 compare 0x02 ,pdata ,0x07 
+0x6d73 021666 nbranch cmp016 ,true 
+0x6d74 021667 branch skip2bytes 
+:      021668 cmp016:
+0x6d75 021669 compare 0x01 ,pdata ,0x07 
+0x6d76 021670 nbranch asksrv_error ,true 
+:      021671 cmpuuid:
+0x6d77 021672 ifetch 2 ,contr 
+0x6d78 021673 increase -2 ,rega 
+0x6d79 021674 increase -2 ,timeup 
+0x6d7a 021675 istore 2 ,contw 
+:      021676 uuidsize:
+0x6d7b 021677 compare 0x00 ,temp ,0xff 
+0x6d7c 021678 branch loopornot ,true 
+0x6d7d 021679 copy contr ,temp 
+0x6d7e 021680 set1 mark_ext_patch ,mark 
+0x6d7f 021681 bpatch patch39_1 ,mem_patch39 
+0x6d80 021682 ifetch 1 ,contr 
+0x6d81 021683 bne 0x00 ,wrong12b 
+0x6d82 021684 ifetch 1 ,contr 
+0x6d83 021685 bne 0x00 ,wrong12b 
+0x6d84 021686 ifetch 1 ,contr 
+0x6d85 021687 bne 0x10 ,wrong12b 
+0x6d86 021688 ifetch 1 ,contr 
+0x6d87 021689 bne 0x00 ,wrong12b 
+0x6d88 021690 ifetch 1 ,contr 
+0x6d89 021691 bne 0x80 ,wrong12b 
+0x6d8a 021692 ifetch 1 ,contr 
+0x6d8b 021693 bne 0x00 ,wrong12b 
+0x6d8c 021694 ifetch 1 ,contr 
+0x6d8d 021695 bne 0x00 ,wrong12b 
+0x6d8e 021696 ifetch 1 ,contr 
+0x6d8f 021697 bne 0x80 ,wrong12b 
+0x6d90 021698 ifetch 1 ,contr 
+0x6d91 021699 bne 0x5f ,wrong12b 
+0x6d92 021700 ifetch 1 ,contr 
+0x6d93 021701 bne 0x9b ,wrong12b 
+0x6d94 021702 ifetch 1 ,contr 
+0x6d95 021703 bne 0x34 ,wrong12b 
+0x6d96 021704 ifetch 1 ,contr 
+0x6d97 021705 beq 0xfb ,chck12dn 
+:      021706 wrong12b:
+0x6d98 021707 copy temp ,contr 
+:      021708 wrong12b1:
+0x6d99 021709 increase 12 ,contr 
+0x6d9a 021710 force 0x00 ,queue 
+0x6d9b 021711 force 0x00 ,temp 
+0x6d9c 021712 branch chck12dn 
+:      021713 chck12dn:
+0x6d9d 021714 increase -12 ,timeup 
+0x6d9e 021715 increase -12 ,rega 
+:      021716 loopornot:
+0x6d9f 021717 compare 0x00 ,rega ,0xff 
+0x6da0 021718 nbranch classidloop ,true 
+0x6da1 021719 force 0 ,pdata 
+0x6da2 021720 istore 2 ,contw 
+0x6da3 021721 rtn ,
+:      021722 asksrv_error:
+0x6da4 021723 arg 0xff ,temp 
+0x6da5 021724 rtn 
+:      021734 dataelementtype6:
+0x6da6 021735 ifetch 1 ,contr 
+0x6da7 021736 increase -1 ,timeup 
+0x6da8 021737 compare 0x30 ,pdata ,0xf8 
+0x6da9 021738 nbranch dsize_error ,true 
+0x6daa 021739 compare 0x07 ,pdata ,0x07 
+0x6dab 021740 branch dsize32 ,true 
+0x6dac 021741 compare 0x06 ,pdata ,0x07 
+0x6dad 021742 branch dsize16 ,true 
+0x6dae 021743 compare 0x05 ,pdata ,0x07 
+0x6daf 021744 nbranch dsize_error ,true 
+0x6db0 021745 ifetch 1 ,contr 
+0x6db1 021746 copy pdata ,rega 
+0x6db2 021747 increase -1 ,timeup 
+0x6db3 021748 branch dsize 
+:      021749 dsize32:
+0x6db4 021750 increase 2 ,contr 
+0x6db5 021751 increase -2 ,timeup 
+:      021752 dsize16:
+0x6db6 021753 ifetch 2 ,contr 
+0x6db7 021754 byteswap pdata ,rega 
+0x6db8 021755 increase -2 ,timeup 
+:      021756 dsize:
+0x6db9 021757 force 0x01 ,pdata 
+0x6dba 021758 rtn 
+:      021759 dsize_error:
+0x6dbb 021760 force 0x00 ,pdata 
+0x6dbc 021761 rtn 
+:      021771 empth_sa_rsp:
+0x6dbd 021772 setarg 0x03 
+0x6dbe 021773 store 1 ,mem_sdp_pduid 
+0x6dbf 021774 branch empty_response 
+:      021775 empty_ssa_rsp:
+0x6dc0 021776 setarg 0x07 
+0x6dc1 021777 store 1 ,mem_sdp_pduid 
+:      021778 empty_response:
+0x6dc2 021779 call l2cap_get_sdp_tx_payload 
+0x6dc3 021780 fetch 1 ,mem_sdp_pduid 
+0x6dc4 021781 istore 1 ,contw 
+0x6dc5 021782 copy pdata ,regb 
+0x6dc6 021783 fetch 2 ,mem_sdp_transactionid 
+0x6dc7 021784 istore 2 ,contw 
+0x6dc8 021786 setarg 0x0500 
+0x6dc9 021787 istore 2 ,contw 
+0x6dca 021788 compare 0x05 ,regb ,0xff 
+0x6dcb 021789 branch fullsearch ,true 
+0x6dcc 021790 compare 0x07 ,regb ,0xff 
+0x6dcd 021791 branch fullsearch ,true 
+0x6dce 021792 setarg 0x000000 
+0x6dcf 021793 istore 3 ,contw 
+0x6dd0 021794 istore 2 ,contw 
+0x6dd1 021795 branch outempty 
+:      021797 fullsearch:
+0x6dd2 021804 setarg 0x350200 
+0x6dd3 021805 istore 3 ,contw 
+0x6dd4 021810 setarg 0 
+0x6dd5 021811 istore 2 ,contw 
+:      021812 outempty:
+0x6dd6 021813 jam 10 ,mem_sdp_tx_pkt_length 
+0x6dd7 021814 rtn 
+:      021816 sdp_data_len:
+0x6dd8 021817 copy contr ,timeup 
+0x6dd9 021818 ifetch 1 ,contr 
+0x6dda 021819 and pdata ,0x7 ,loopcnt 
+0x6ddb 021820 rshift3 pdata ,pdata 
+0x6ddc 021821 beq 6 ,sdp_data_len_6 
+0x6ddd 021822 beq 1 ,sdp_data_len_1 
+0x6dde 021823 beq 4 ,sdp_data_len_6 
+0x6ddf 021824 beq 5 ,sdp_data_len_5 
+:      021825 sdp_data_len_rtn:
+0x6de0 021826 copy timeup ,contr 
+0x6de1 021827 rtn 
+:      021828 sdp_data_len_1:
+0x6de2 021829 call sdp_data_size 
+0x6de3 021830 increase 1 ,pdata 
+0x6de4 021831 branch sdp_data_len_rtn 
+:      021832 sdp_data_len_5:
+0x6de5 021833 force 2 ,pdata 
+0x6de6 021834 branch sdp_data_len_rtn 
+:      021835 sdp_data_len_6:
+0x6de7 021836 call sdp_get_data_6 
+0x6de8 021837 increase 2 ,pdata 
+0x6de9 021838 branch sdp_data_len_rtn 
+:      021840 sdp_get_data:
+0x6dea 021841 ifetch 1 ,contr 
+0x6deb 021842 and pdata ,0x7 ,loopcnt 
+0x6dec 021843 rshift3 pdata ,pdata 
+0x6ded 021844 beq 6 ,sdp_get_data_6 
+0x6dee 021845 beq 1 ,sdp_get_data_1 
+0x6def 021846 beq 5 ,sdp_get_data_6_8bit 
+0x6df0 021847 rtn 
+:      021848 sdp_get_data_1:
+0x6df1 021849 call sdp_data_size 
+0x6df2 021850 iforce loopcnt 
+0x6df3 021851 force 0 ,temp 
+:      021852 sdp_get_data_1_loop:
+0x6df4 021853 lshift8 temp ,temp 
+0x6df5 021854 ifetch 1 ,contr 
+0x6df6 021855 ior temp ,temp 
+0x6df7 021856 loop sdp_get_data_1_loop 
+0x6df8 021857 rtn 
+:      021858 sdp_get_data_6:
+0x6df9 021859 deposit loopcnt 
+0x6dfa 021860 beq 5 ,sdp_get_data_6_8bit 
+0x6dfb 021861 beq 6 ,sdp_get_data_6_16bit 
+0x6dfc 021862 force 3 ,loopcnt 
+0x6dfd 021863 branch sdp_get_data_1 
+:      021864 sdp_get_data_6_8bit:
+0x6dfe 021865 ifetch 1 ,contr 
+0x6dff 021866 rtn 
+:      021867 sdp_get_data_6_16bit:
+0x6e00 021868 ifetch 2 ,contr 
+0x6e01 021869 byteswap pdata ,pdata 
+0x6e02 021870 rtn 
+:      021873 sdp_data_size:
+0x6e03 021874 force 1 ,pdata 
+0x6e04 021875 copy loopcnt ,null 
+0x6e05 021876 rtn zero 
+:      021877 sdp_data_size_loop:
+0x6e06 021878 lshift pdata ,pdata 
+0x6e07 021879 loop sdp_data_size_loop 
+0x6e08 021880 rtn 
+:      021885 search_uuid:
+0x6e09 021886 iforce regc 
+0x6e0a 021887 set1 mark_ext_patch ,mark 
+0x6e0b 021888 bpatch patch39_2 ,mem_patch39 
+0x6e0c 021889 force 0 ,queue 
+0x6e0d 021890 fetch 2 ,mem_ui_uuid_table 
+0x6e0e 021891 iforce contr 
+0x6e0f 021892 arg mem_handle_list ,contw 
+:      021893 search_uuid_next:
+0x6e10 021894 disable user 
+0x6e11 021895 ifetch 1 ,contr 
+0x6e12 021896 rtn blank 
+0x6e13 021897 iforce loopcnt 
+:      021898 search_uuid_loop:
+0x6e14 021899 ifetch 2 ,contr 
+0x6e15 021900 isub regc ,null 
+0x6e16 021901 nbranch search_uuid_not_found ,zero 
+0x6e17 021902 enable user 
+:      021903 search_uuid_not_found:
+0x6e18 021904 loop search_uuid_loop 
+0x6e19 021905 ifetch 4 ,contr 
+0x6e1a 021906 nbranch search_uuid_nomatch ,user 
+0x6e1b 021907 istore 4 ,contw 
+0x6e1c 021908 increase 1 ,queue 
+:      021909 search_uuid_nomatch:
+0x6e1d 021910 call sdp_get_data 
+0x6e1e 021911 iadd contr ,contr 
+0x6e1f 021912 branch search_uuid_next 
+:      021915 search_handle:
+0x6e20 021916 set1 mark_ext_patch ,mark 
+0x6e21 021917 bpatch patch39_3 ,mem_patch39 
+0x6e22 021918 fetch 2 ,mem_ui_uuid_table 
+0x6e23 021919 iforce contr 
+:      021920 search_handle_loop:
+0x6e24 021921 ifetch 1 ,contr 
+0x6e25 021922 rtn blank 
+0x6e26 021923 lshift pdata ,pdata 
+0x6e27 021924 iadd contr ,contr 
+0x6e28 021925 ifetch 4 ,contr 
+0x6e29 021926 isub temp ,null 
+0x6e2a 021927 rtn zero 
+0x6e2b 021928 call sdp_get_data 
+0x6e2c 021929 iadd contr ,contr 
+0x6e2d 021930 branch search_handle_loop 
+:      021937 search_attrib:
+0x6e2e 021938 set1 mark_ext_patch ,mark 
+0x6e2f 021939 bpatch patch39_4 ,mem_patch39 
+0x6e30 021940 fetch 2 ,mem_ui_uuid_table 
+0x6e31 021941 iforce contr 
+:      021942 search_attrib_next:
+0x6e32 021943 ifetch 1 ,contr 
+0x6e33 021944 branch search_attrib_end ,blank 
+0x6e34 021945 iforce loopcnt 
+:      021946 search_attrib_loop:
+0x6e35 021947 ifetch 2 ,contr 
+0x6e36 021948 isub regc ,null 
+0x6e37 021949 branch search_attrib_found_uuid ,zero 
+0x6e38 021950 loop search_attrib_loop 
+0x6e39 021951 increase 4 ,contr 
+0x6e3a 021952 call sdp_get_data 
+0x6e3b 021953 iadd contr ,contr 
+0x6e3c 021954 branch search_attrib_next 
+:      021955 search_attrib_found_uuid:
+0x6e3d 021956 increase -1 ,loopcnt 
+0x6e3e 021957 lshift loopcnt ,pdata 
+0x6e3f 021958 iadd contr ,contr 
+0x6e40 021959 increase 4 ,contr 
+0x6e41 021960 call sdp_get_data 
+0x6e42 021961 iadd contr ,temp 
+:      021962 search_attrib_loop_attribs:
+0x6e43 021963 increase 1 ,contr 
+0x6e44 021964 ifetch 2 ,contr 
+0x6e45 021965 isub regb ,timeup 
+0x6e46 021967 setflag zero ,0 ,pdata 
+0x6e47 021968 copy timeup ,timeup 
+0x6e48 021969 rtn zero 
+0x6e49 021970 call sdp_data_len 
+0x6e4a 021971 iadd contr ,contr 
+0x6e4b 021972 deposit temp 
+0x6e4c 021973 isub contr ,null 
+0x6e4d 021974 branch search_attrib_end ,zero 
+0x6e4e 021975 branch search_attrib_loop_attribs 
+:      021976 search_attrib_end:
+0x6e4f 021977 force 0 ,contr 
+0x6e50 021978 force 0 ,pdata 
+0x6e51 021979 rtn 
+:      021985 search_handle_attrib:
+0x6e52 021986 set1 mark_ext_patch ,mark 
+0x6e53 021987 bpatch patch39_5 ,mem_patch39 
+0x6e54 021988 fetch 2 ,mem_ui_uuid_table 
+0x6e55 021989 iforce contr 
+:      021990 search_handle_attrib_next:
+0x6e56 021991 ifetch 1 ,contr 
+0x6e57 021992 branch search_handle_attrib_end ,blank 
+0x6e58 021993 lshift pdata ,pdata 
+0x6e59 021994 iadd contr ,contr 
+0x6e5a 021995 ifetch 4 ,contr 
+0x6e5b 021996 isub temp ,null 
+0x6e5c 021997 branch search_handl_attrib_found_handle ,zero 
+0x6e5d 021998 call sdp_get_data 
+0x6e5e 021999 iadd contr ,contr 
+0x6e5f 022000 branch search_handle_attrib_next 
+:      022001 search_handl_attrib_found_handle:
+0x6e60 022002 call sdp_get_data 
+0x6e61 022003 iadd contr ,temp 
+:      022004 search_handle_attrib_loop_attribs:
+0x6e62 022005 increase 1 ,contr 
+0x6e63 022006 ifetch 2 ,contr 
+0x6e64 022007 isub regb ,null 
+0x6e65 022008 rtn zero 
+0x6e66 022009 call sdp_data_len 
+0x6e67 022010 iadd contr ,contr 
+0x6e68 022011 deposit temp 
+0x6e69 022012 isub contr ,null 
+0x6e6a 022013 branch search_handle_attrib_end ,zero 
+0x6e6b 022014 branch search_handle_attrib_loop_attribs 
+:      022015 search_handle_attrib_end:
+0x6e6c 022016 force 0 ,contr 
+0x6e6d 022017 rtn 
+:      022022 function_g2:
+0x6e6e 022023 set1 mark_ext_patch ,mark 
+0x6e6f 022024 bpatch patch39_6 ,mem_patch39 
+0x6e70 022025 jam 80 ,mem_aes_cmac_data_length 
+0x6e71 022026 arg memdat ,contw 
+0x6e72 022027 arg mem_le_srand ,contr 
+0x6e73 022028 call memcpy16 
+0x6e74 022029 arg mem_le_pubkey_local_x_256 ,contr 
+0x6e75 022030 call memcpy32 
+0x6e76 022031 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6e77 022032 call memcpy32 
+0x6e78 022033 call inverse_memdat 
+0x6e79 022034 arg mem_le_mrand ,contr 
+0x6e7a 022035 call store_inverse_k 
+0x6e7b 022036 call function_aes_cmac 
+0x6e7c 022038 arg mem_aes_cmac_temp ,contw 
+0x6e7d 022039 call load_inverse_result 
+0x6e7e 022040 setarg 1000000 
+0x6e7f 022041 copy pdata ,rega 
+0x6e80 022042 fetch 4 ,mem_aes_cmac_temp 
+0x6e81 022043 idiv rega 
+0x6e82 022044 call wait_div_end 
+0x6e83 022045 remainder pdata 
+0x6e84 022046 store 4 ,mem_gkey 
+0x6e85 022048 rtn 
+:      022050 function_f6_eb:
+0x6e86 022051 jam 65 ,mem_aes_cmac_data_length 
+0x6e87 022052 arg memdat ,contw 
+0x6e88 022053 call store_addr_common_a 
+0x6e89 022054 call store_addr_common_b 
+0x6e8a 022055 fetch 3 ,mem_le_pres + 1 
+0x6e8b 022056 istore 3 ,contw 
+0x6e8c 022059 call get_r 
+0x6e8d 022061 arg mem_le_mrand ,contr 
+0x6e8e 022062 call memcpy16 
+0x6e8f 022063 arg mem_le_srand ,contr 
+0x6e90 022064 call memcpy16 
+0x6e91 022065 call inverse_memdat 
+0x6e92 022066 arg mem_le_mackey ,contr 
+0x6e93 022067 arg mem_aes_cmac_k ,contw 
+0x6e94 022068 call memcpy16 
+0x6e95 022070 branch function_aes_cmac 
+:      022074 get_r:
+0x6e96 022075 fetch 4 ,mem_le_tk 
+0x6e97 022076 istore 4 ,contw 
+0x6e98 022077 call memset0_4 
+0x6e99 022078 branch memset0_8 
+:      022080 function_f6_ea:
+0x6e9a 022081 set1 mark_ext_patch ,mark 
+0x6e9b 022082 bpatch patch39_7 ,mem_patch39 
+0x6e9c 022083 jam 65 ,mem_aes_cmac_data_length 
+0x6e9d 022084 arg memdat ,contw 
+0x6e9e 022085 call store_addr_common_b 
+0x6e9f 022086 call store_addr_common_a 
+0x6ea0 022087 fetch 3 ,mem_le_preq + 1 
+0x6ea1 022088 istore 3 ,contw 
+0x6ea2 022091 call get_r 
+0x6ea3 022092 arg mem_le_srand ,contr 
+0x6ea4 022093 call memcpy16 
+0x6ea5 022094 arg mem_le_mrand ,contr 
+0x6ea6 022095 call memcpy16 
+0x6ea7 022096 call inverse_memdat 
+0x6ea8 022097 arg mem_le_mackey ,contr 
+0x6ea9 022098 arg mem_aes_cmac_k ,contw 
+0x6eaa 022099 call memcpy16 
+0x6eab 022101 call function_aes_cmac 
+0x6eac 022102 arg mem_aes_cmac_temp ,contw 
+0x6ead 022103 branch load_inverse_result 
+:      022105 function_f5:
+0x6eae 022106 jam 32 ,mem_aes_cmac_data_length 
+0x6eaf 022107 arg mem_le_dhkey_256 ,contr 
+0x6eb0 022108 arg memdat ,contw 
+0x6eb1 022109 call memcpy32 
+0x6eb2 022110 call inverse_memdat 
+0x6eb3 022111 arg mem_le_slat ,contr 
+0x6eb4 022112 call store_inverse_k 
+0x6eb5 022113 call function_aes_cmac 
+0x6eb6 022114 arg mem_aes_cmac_k ,contw 
+0x6eb7 022115 call store_aes_result 
+0x6eb8 022116 arg 1 ,temp 
+0x6eb9 022117 call function_f5_common 
+0x6eba 022118 arg mem_le_ltk ,contw 
+0x6ebb 022119 call load_inverse_result 
+0x6ebc 022120 arg 0 ,temp 
+0x6ebd 022121 call function_f5_common 
+0x6ebe 022122 arg mem_le_mackey ,contw 
+0x6ebf 022124 branch store_aes_result 
+:      022127 function_f5_common:
+0x6ec0 022128 set1 mark_ext_patch ,mark 
+0x6ec1 022129 bpatch patch3a_0 ,mem_patch3a 
+0x6ec2 022130 jam 53 ,mem_aes_cmac_data_length 
+0x6ec3 022131 setarg 0x100 
+0x6ec4 022132 store 2 ,memdat 
+0x6ec5 022133 call store_addr_common_b 
+0x6ec6 022134 call store_addr_common_a 
+0x6ec7 022135 arg mem_le_srand ,contr 
+0x6ec8 022136 call memcpy16 
+0x6ec9 022137 arg mem_le_mrand ,contr 
+0x6eca 022138 call memcpy16 
+0x6ecb 022140 setarg 0x6c65 
+0x6ecc 022141 istore 2 ,contw 
+0x6ecd 022142 setarg 0x6274 
+0x6ece 022143 istore 2 ,contw 
+0x6ecf 022144 istoret 1 ,contw 
+0x6ed0 022145 call inverse_memdat 
+0x6ed1 022146 branch function_aes_cmac 
+:      022148 store_addr_common_b:
+0x6ed2 022149 fetch 6 ,mem_le_lap 
+0x6ed3 022150 istore 6 ,contw 
+0x6ed4 022151 fetch 1 ,mem_le_conn_own_addr_type 
+0x6ed5 022152 istore 1 ,contw 
+0x6ed6 022153 rtn 
+:      022155 store_addr_common_a:
+0x6ed7 022156 fetch 6 ,mem_le_plap 
+0x6ed8 022157 istore 6 ,contw 
+0x6ed9 022162 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6eda 022163 istore 1 ,contw 
+0x6edb 022164 rtn 
+:      022166 function_f4_ca:
+0x6edc 022167 jam 65 ,mem_aes_cmac_data_length 
+0x6edd 022168 fetch 1 ,mem_passkey_1bit 
+0x6ede 022169 store 1 ,memdat 
+0x6edf 022170 arg mem_le_pubkey_local_x_256 ,contr 
+0x6ee0 022171 call memcpy32 
+0x6ee1 022172 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6ee2 022173 call memcpy32 
+0x6ee3 022174 call inverse_memdat 
+0x6ee4 022175 arg mem_le_mrand ,contr 
+0x6ee5 022176 call store_inverse_k 
+0x6ee6 022177 branch function_aes_cmac 
+:      022180 function_f4_cb:
+0x6ee7 022181 jam 65 ,mem_aes_cmac_data_length 
+0x6ee8 022182 fetch 1 ,mem_passkey_1bit 
+0x6ee9 022183 store 1 ,memdat 
+0x6eea 022184 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6eeb 022185 call memcpy32 
+0x6eec 022186 arg mem_le_pubkey_local_x_256 ,contr 
+0x6eed 022187 call memcpy32 
+0x6eee 022188 call inverse_memdat 
+0x6eef 022189 arg mem_le_srand ,contr 
+0x6ef0 022190 call store_inverse_k 
+0x6ef1 022191 branch function_aes_cmac 
+:      022193 function_aes_cmac:
+0x6ef2 022194 set1 mark_ext_patch ,mark 
+0x6ef3 022195 bpatch patch3a_1 ,mem_patch3a 
+0x6ef4 022196 call function_aes_cmac_generate_subkey 
+0x6ef5 022200 fetch 1 ,mem_aes_cmac_data_length 
+0x6ef6 022201 copy pdata ,temp 
+:      022202 function_ceil16:
+0x6ef7 022203 increase 15 ,pdata 
+0x6ef8 022204 rshift4 pdata ,pdata 
+0x6ef9 022205 copy pdata ,regb 
+0x6efa 022206 branch function_aes_cmac_set_flag_0_balnk ,blank 
+0x6efb 022207 and temp ,0x0f ,pdata 
+0x6efc 022208 nbranch function_aes_cmac_set_flag_0 ,blank 
+0x6efd 022210 arg mem_aes_cmac_k1 ,regc 
+0x6efe 022211 arg memdat ,pdata 
+0x6eff 022212 increase -16 ,pdata 
+0x6f00 022215 iadd temp ,rega 
+0x6f01 022216 arg mem_aes_cmac_m_last ,contw 
+0x6f02 022217 arg 4 ,loopcnt 
+0x6f03 022218 call xor_loop 
+0x6f04 022222 branch function_aes_cmac_aes 
+:      022224 function_aes_cmac_set_flag_0_balnk:
+0x6f05 022225 arg 1 ,regb 
+0x6f06 022226 arg 0 ,rega 
+0x6f07 022228 branch function_aes_cmac_set_flag_0_common 
+:      022231 function_aes_cmac_set_flag_0:
+0x6f08 022233 and temp ,0x0f ,rega 
+:      022234 function_aes_cmac_set_flag_0_common:
+0x6f09 022235 arg memdat ,pdata 
+0x6f0a 022236 iadd temp ,pdata 
+0x6f0b 022237 isub rega ,contr 
+0x6f0c 022239 arg mem_aes_cmac_temp ,contw 
+0x6f0d 022240 call function_aes_cmac_padding 
+0x6f0e 022242 arg mem_aes_cmac_k2 ,regc 
+0x6f0f 022243 arg mem_aes_cmac_temp ,rega 
+0x6f10 022244 arg mem_aes_cmac_m_last ,contw 
+0x6f11 022245 arg 4 ,loopcnt 
+0x6f12 022246 call xor_loop 
+:      022253 function_aes_cmac_aes:
+0x6f13 022258 call aes_clear_data 
+0x6f14 022259 call aes_init 
+0x6f15 022262 arg memdat ,contr 
+:      022263 function_aes_cmac_aes_loop:
+0x6f16 022265 increase -1 ,regb 
+0x6f17 022266 deposit regb 
+0x6f18 022267 branch function_aes_cmac_aes_loop_end ,blank 
+0x6f19 022268 call load_data128 
+0x6f1a 022269 call do_aes_cbc 
+0x6f1b 022270 branch function_aes_cmac_aes_loop 
+:      022272 function_aes_cmac_aes_loop_end:
+0x6f1c 022273 arg mem_aes_cmac_temp ,contw 
+0x6f1d 022274 call store_aes_result 
+0x6f1e 022275 arg mem_aes_cmac_m_last ,contr 
+0x6f1f 022276 call load_data128 
+0x6f20 022277 call aes_init 
+0x6f21 022278 arg mem_aes_cmac_temp ,contr 
+0x6f22 022279 call load_data128 
+0x6f23 022280 branch do_aes_cbc 
+:      022284 load_inverse_result:
+0x6f24 022286 copy contw ,rega 
+0x6f25 022287 call store_aes_result 
+0x6f26 022289 arg 16 ,loopcnt 
+0x6f27 022290 branch inverse_data 
+:      022292 store_inverse_k:
+0x6f28 022293 arg mem_aes_cmac_k ,contw 
+0x6f29 022294 call memcpy16 
+:      022295 inverse_k:
+0x6f2a 022296 arg 16 ,loopcnt 
+0x6f2b 022297 arg mem_aes_cmac_k ,rega 
+0x6f2c 022298 branch inverse_data 
+:      022300 inverse_memdat:
+0x6f2d 022301 fetch 1 ,mem_aes_cmac_data_length 
+0x6f2e 022302 copy pdata ,loopcnt 
+0x6f2f 022303 arg memdat ,rega 
+0x6f30 022304 branch inverse_data 
+:      022306 bn_lshift_0_inverse:
+0x6f31 022307 ifetch 1 ,rega 
+0x6f32 022308 lshift pdata ,pdata 
+0x6f33 022309 isolate1 0 ,regc 
+0x6f34 022310 setflag true ,0 ,pdata 
+0x6f35 022311 isolate1 8 ,pdata 
+0x6f36 022312 setflag true ,0 ,regc 
+0x6f37 022313 istore 1 ,rega 
+0x6f38 022314 increase -1 ,rega 
+0x6f39 022315 loop bn_lshift_0_inverse 
+0x6f3a 022316 rtn 
+:      022318 function_aes_cmac_k1_inverse:
+0x6f3b 022319 arg mem_aes_cmac_k1 ,rega 
+:      022320 function_aes_cmac_inverse_common:
+0x6f3c 022321 increase 15 ,rega 
+0x6f3d 022322 force 16 ,loopcnt 
+0x6f3e 022323 force 0 ,regc 
+0x6f3f 022324 branch bn_lshift_0_inverse 
+:      022326 function_aes_cmac_k2_inverse:
+0x6f40 022327 arg mem_aes_cmac_k2 ,rega 
+0x6f41 022328 branch function_aes_cmac_inverse_common 
+:      022331 function_aes_cmac_generate_subkey:
+0x6f42 022332 arg mem_aes_cmac_k ,contr 
+0x6f43 022333 call load_key 
+0x6f44 022336 force regidx_xor ,regext_index 
+0x6f45 022337 call aes_clear 
+0x6f46 022338 call aes_clear_data 
+0x6f47 022339 call do_aes_ocb 
+0x6f48 022344 arg mem_aes_cmac_k1 ,contw 
+0x6f49 022345 call store_aes_result 
+:      022346 function_aes_cmac_k1:
+0x6f4a 022347 set1 mark_ext_patch ,mark 
+0x6f4b 022348 bpatch patch3a_2 ,mem_patch3a 
+0x6f4c 022349 fetch 1 ,mem_aes_cmac_k1 
+0x6f4d 022350 isolate1 7 ,pdata 
+0x6f4e 022351 nbranch function_aes_cmac_k1_0 ,true 
+0x6f4f 022352 call function_aes_cmac_k1_inverse 
+0x6f50 022355 arg mem_aes_cmac_k1 ,regc 
+0x6f51 022357 arg mem_aes_cmac_k1 ,contw 
+0x6f52 022360 call function_aes_cmac_xor_rb 
+0x6f53 022361 branch function_aes_cmac_k2 
+:      022362 function_aes_cmac_k1_0:
+0x6f54 022363 call function_aes_cmac_k1_inverse 
+:      022364 function_aes_cmac_k2:
+0x6f55 022366 arg mem_aes_cmac_k1 ,contr 
+0x6f56 022367 arg mem_aes_cmac_k2 ,contw 
+0x6f57 022368 call memcpy16 
+0x6f58 022369 fetch 1 ,mem_aes_cmac_k2 
+0x6f59 022370 isolate1 7 ,pdata 
+0x6f5a 022371 nbranch function_aes_cmac_k2_inverse ,true 
+0x6f5b 022372 call function_aes_cmac_k2_inverse 
+0x6f5c 022374 arg mem_aes_cmac_k2 ,regc 
+0x6f5d 022376 arg mem_aes_cmac_k2 ,contw 
+:      022382 function_aes_cmac_xor_rb:
+0x6f5e 022383 arg 3 ,loopcnt 
+:      022384 function_aes_cmac_xor_rb_loop:
+0x6f5f 022385 arg 0 ,temp 
+0x6f60 022386 call function_aes_cmac_xor_loop_common 
+0x6f61 022387 increase 4 ,regc 
+0x6f62 022388 loop function_aes_cmac_xor_rb_loop 
+0x6f63 022389 arg 0x8700 ,temp 
+0x6f64 022390 lshift16 temp ,temp 
+:      022391 function_aes_cmac_xor_loop_common:
+0x6f65 022392 ifetch 4 ,regc 
+0x6f66 022393 ixor temp ,pdata 
+0x6f67 022394 istore 4 ,contw 
+0x6f68 022395 rtn 
+:      022401 function_aes_cmac_padding:
+0x6f69 022402 set1 mark_ext_patch ,mark 
+0x6f6a 022403 bpatch patch3a_3 ,mem_patch3a 
+0x6f6b 022404 arg 16 ,loopcnt 
+0x6f6c 022405 arg 0 ,pdata 
+:      022406 function_aes_cmac_padding_loop:
+0x6f6d 022407 isub rega ,null 
+0x6f6e 022408 branch function_aes_cmac_padding_beq_length ,zero 
+0x6f6f 022409 branch function_aes_cmac_padding_big_length ,positive 
+0x6f70 022410 ifetcht 1 ,contr 
+0x6f71 022411 istoret 1 ,contw 
+:      022412 function_aes_cmac_padding_loop2:
+0x6f72 022413 increase 1 ,pdata 
+0x6f73 022414 loop function_aes_cmac_padding_loop 
+0x6f74 022415 rtn 
+:      022416 function_aes_cmac_padding_beq_length:
+0x6f75 022417 arg 0x80 ,temp 
+:      022418 function_aes_cmac_padding_common:
+0x6f76 022419 istoret 1 ,contw 
+0x6f77 022420 branch function_aes_cmac_padding_loop2 
+:      022422 function_aes_cmac_padding_big_length:
+0x6f78 022423 arg 0 ,temp 
+0x6f79 022424 branch function_aes_cmac_padding_common 
+:      022427 generate_kinit:
+0x6f7a 022428 call function_e22 
+0x6f7b 022429 arg mem_input_store ,contr 
+0x6f7c 022430 arg mem_kinit ,contw 
+0x6f7d 022431 branch memcpy16 
+:      022434 function_e21:
+0x6f7e 022435 disable user 
+0x6f7f 022436 call function_expand 
+0x6f80 022437 arg mem_random_number ,contr 
+0x6f81 022438 arg mem_x ,contw 
+0x6f82 022439 force 15 ,loopcnt 
+0x6f83 022440 call memcpy 
+0x6f84 022441 ifetch 1 ,contr 
+0x6f85 022442 xor_into 6 ,pdata 
+0x6f86 022443 istore 1 ,contw 
+0x6f87 022444 setarg mem_y 
+0x6f88 022445 store 2 ,memp_ar_input 
+0x6f89 022446 setarg mem_x 
+0x6f8a 022447 store 2 ,memp_ar_key 
+0x6f8b 022448 set1 mark_ar2 ,mark 
+0x6f8c 022449 branch function_ar 
+:      022453 function_e22:
+0x6f8d 022454 fetcht 1 ,mem_pin_length 
+0x6f8e 022455 force 16 ,regb 
+0x6f8f 022456 add temp ,6 ,regc 
+0x6f90 022457 sub regc ,16 ,null 
+0x6f91 022458 branch function_e22_pin_init ,positive 
+0x6f92 022459 force 16 ,regc 
+:      022460 function_e22_pin_init:
+0x6f93 022461 arg mem_x ,contw 
+:      022462 function_e22_genx_pin:
+0x6f94 022463 arg mem_pin ,contr 
+0x6f95 022464 copy temp ,loopcnt 
+0x6f96 022465 disable user 
+:      022466 function_e22_genx_loop:
+0x6f97 022467 ifetch 1 ,contr 
+0x6f98 022468 istore 1 ,contw 
+0x6f99 022469 increase -1 ,regb 
+0x6f9a 022470 branch function_e22_genx_end ,zero 
+0x6f9b 022471 loop function_e22_genx_loop 
+0x6f9c 022472 branch function_e22_genx_pin ,user 
+0x6f9d 022473 enable user 
+0x6f9e 022474 force 6 ,loopcnt 
+0x6f9f 022475 copy rega ,contr 
+0x6fa0 022476 branch function_e22_genx_loop 
+:      022477 function_e22_genx_end:
+0x6fa1 022478 arg mem_random_number ,contr 
+0x6fa2 022479 arg mem_y ,contw 
+0x6fa3 022480 call memcpy16 
+0x6fa4 022481 fetch 1 ,mem_y15 
+0x6fa5 022482 ixor regc ,pdata 
+0x6fa6 022483 store 1 ,mem_y15 
+0x6fa7 022484 setarg mem_y 
+0x6fa8 022485 store 2 ,memp_ar_input 
+0x6fa9 022486 setarg mem_x 
+0x6faa 022487 store 2 ,memp_ar_key 
+0x6fab 022488 set1 mark_ar2 ,mark 
+0x6fac 022489 branch function_ar 
+:      022494 function_e1:
+0x6fad 022495 disable user 
+0x6fae 022496 call function_expand 
+0x6faf 022497 branch function_hash 
+:      022499 function_e3:
+0x6fb0 022500 arg mem_aco ,rega 
+0x6fb1 022501 enable user 
+0x6fb2 022502 call function_expand 
+0x6fb3 022503 call function_hash 
+0x6fb4 022504 arg mem_input_store ,contr 
+0x6fb5 022505 arg mem_kc ,contw 
+0x6fb6 022506 branch memcpy16 
+:      022509 function_hash:
+0x6fb7 022510 setarg mem_random_number 
+0x6fb8 022511 store 2 ,memp_ar_input 
+0x6fb9 022512 setarg mem_link_key 
+0x6fba 022513 store 2 ,memp_ar_key 
+0x6fbb 022514 set0 mark_ar2 ,mark 
+0x6fbc 022515 call function_ar 
+0x6fbd 022516 arg mem_input_store ,rega 
+0x6fbe 022517 arg mem_random_number ,regb 
+0x6fbf 022518 arg mem_x ,contw 
+0x6fc0 022519 call xor16 
+0x6fc1 022520 arg mem_x ,rega 
+0x6fc2 022521 arg mem_y ,regb 
+0x6fc3 022522 copy regb ,contw 
+0x6fc4 022523 enable user 
+0x6fc5 022524 call add16 
+0x6fc6 022525 call key_offset 
+0x6fc7 022526 setarg mem_y 
+0x6fc8 022527 store 2 ,memp_ar_input 
+0x6fc9 022528 setarg mem_x 
+0x6fca 022529 store 2 ,memp_ar_key 
+0x6fcb 022530 set1 mark_ar2 ,mark 
+0x6fcc 022531 branch function_ar 
+:      022535 function_ar:
+0x6fcd 022536 jam 0 ,mem_ar_hround 
+0x6fce 022537 fetch 2 ,memp_ar_key 
+0x6fcf 022538 iforce contr 
+0x6fd0 022539 arg mem_key_store ,contw 
+0x6fd1 022540 call memcpy16 
+0x6fd2 022541 fetch 2 ,memp_ar_input 
+0x6fd3 022542 iforce contr 
+0x6fd4 022543 arg mem_input_store ,contw 
+0x6fd5 022544 call memcpy16 
+:      022546 function_ar_loop:
+0x6fd6 022547 call key_scheduling 
+0x6fd7 022548 disable user 
+0x6fd8 022549 bmark0 mark_ar2 ,function_ar_original 
+0x6fd9 022550 fetch 1 ,mem_ar_hround 
+0x6fda 022551 bne 4 ,function_ar_original 
+0x6fdb 022552 fetch 2 ,memp_ar_input 
+0x6fdc 022553 iforce regb 
+0x6fdd 022554 call xor_mod32_ar2 
+:      022555 function_ar_original:
+0x6fde 022556 call xor_mod32 
+0x6fdf 022557 call el_boxes 
+0x6fe0 022558 fetch 1 ,mem_ar_hround 
+0x6fe1 022559 increase 1 ,pdata 
+0x6fe2 022560 store 1 ,mem_ar_hround 
+0x6fe3 022562 call key_scheduling 
+0x6fe4 022563 enable user 
+0x6fe5 022564 call xor_mod32 
+0x6fe6 022565 call pht 
+0x6fe7 022566 call permute 
+0x6fe8 022567 call pht 
+0x6fe9 022568 call permute 
+0x6fea 022569 call pht 
+0x6feb 022570 call permute 
+0x6fec 022571 call pht 
+0x6fed 022572 fetch 1 ,mem_ar_hround 
+0x6fee 022573 increase 1 ,pdata 
+0x6fef 022574 store 1 ,mem_ar_hround 
+0x6ff0 022575 bne 16 ,function_ar_loop 
+0x6ff1 022576 call key_scheduling 
+0x6ff2 022577 disable user 
+0x6ff3 022578 branch xor_mod32 
+:      022582 key_scheduling:
+0x6ff4 022583 fetch 1 ,mem_ar_hround 
+0x6ff5 022584 arg mem_key_store ,contr 
+0x6ff6 022585 branch key_sched_zero ,blank 
+0x6ff7 022586 iforce regb 
+0x6ff8 022587 force 17 ,loopcnt 
+0x6ff9 022588 copy contr ,contw 
+:      022589 key_rotateloop:
+0x6ffa 022590 ifetch 1 ,contr 
+0x6ffb 022591 lshift3 pdata ,temp 
+0x6ffc 022592 rshift2 pdata ,pdata 
+0x6ffd 022593 rshift3 pdata ,pdata 
+0x6ffe 022594 ior temp ,pdata 
+0x6fff 022595 istore 1 ,contw 
+0x7000 022596 loop key_rotateloop 
+0x7001 022597 setarg mem_key_store 
+0x7002 022598 iadd regb ,contr 
+0x7003 022599 force 16 ,loopcnt 
+0x7004 022600 arg mem_round_key ,contw 
+:      022601 key_select_octet_loop:
+0x7005 022602 ifetch 1 ,contr 
+0x7006 022603 istore 1 ,contw 
+0x7007 022604 compare mem_key_store_end ,contr ,0xff 
+0x7008 022605 nbranch key_select_octet_nwrap ,true 
+0x7009 022606 increase -17 ,contr 
+:      022607 key_select_octet_nwrap:
+0x700a 022608 loop key_select_octet_loop 
+0x700b 022609 force 0 ,rega 
+0x700c 022610 add regb ,-1 ,regc 
+0x700d 022611 lshift2 regc ,regc 
+0x700e 022612 lshift2 regc ,regc 
+0x700f 022613 call enable_authrom 
+0x7010 022614 setarg mem_b_box 
+0x7011 022615 iadd regc ,regc 
+0x7012 022616 arg mem_round_key ,contw 
+0x7013 022617 force 16 ,loopcnt 
+:      022618 bias_round_key_loop:
+0x7014 022619 ifetcht 1 ,regc 
+0x7015 022620 ifetch 1 ,contw 
+0x7016 022621 iadd temp ,pdata 
+0x7017 022622 istore 1 ,contw 
+0x7018 022623 increase 1 ,regc 
+0x7019 022624 loop bias_round_key_loop 
+0x701a 022625 branch disable_authrom 
+:      022627 key_sched_zero:
+0x701b 022628 force 16 ,loopcnt 
+0x701c 022629 force 0 ,temp 
+:      022630 create_byte_16_loop:
+0x701d 022631 ifetch 1 ,contr 
+0x701e 022632 ixor temp ,temp 
+0x701f 022633 loop create_byte_16_loop 
+0x7020 022634 deposit temp 
+0x7021 022635 istore 1 ,contr 
+0x7022 022636 arg mem_key_store ,contr 
+0x7023 022637 arg mem_round_key ,contw 
+0x7024 022638 branch memcpy16 
+:      022640 xor_mod32:
+0x7025 022641 arg mem_round_key ,regb 
+:      022642 xor_mod32_ar2:
+0x7026 022643 force 16 ,loopcnt 
+0x7027 022644 arg mem_input_store ,rega 
+0x7028 022645 copy rega ,contw 
+:      022646 xor_mod32_loop:
+0x7029 022647 ifetcht 1 ,rega 
+0x702a 022648 ifetch 1 ,regb 
+0x702b 022649 ixor temp ,alarm 
+0x702c 022650 and loopcnt ,3 ,regc 
+0x702d 022651 nbranch xor_mod32_invert ,user 
+0x702e 022652 xor_into 3 ,regc 
+:      022653 xor_mod32_invert:
+0x702f 022654 sub regc ,1 ,regc 
+0x7030 022655 branch xor_even ,positive 
+0x7031 022656 iadd temp ,alarm 
+:      022657 xor_even:
+0x7032 022658 deposit alarm 
+0x7033 022659 istore 1 ,contw 
+0x7034 022660 increase 1 ,rega 
+0x7035 022661 increase 1 ,regb 
+0x7036 022662 loop xor_mod32_loop 
+0x7037 022663 rtn 
+:      022665 el_boxes:
+0x7038 022666 call enable_authrom 
+0x7039 022667 force 16 ,loopcnt 
+0x703a 022668 arg mem_input_store ,rega 
+:      022669 el_box_loop:
+0x703b 022670 ifetch 1 ,rega 
+0x703c 022671 arg mem_e_box ,contr 
+0x703d 022672 and loopcnt ,3 ,regc 
+0x703e 022673 sub regc ,1 ,null 
+0x703f 022674 branch e_boxes ,positive 
+0x7040 022675 arg mem_l_box ,contr 
+:      022676 e_boxes:
+0x7041 022677 iadd contr ,contr 
+0x7042 022678 ifetch 1 ,contr 
+0x7043 022679 istore 1 ,rega 
+0x7044 022680 increase 1 ,rega 
+0x7045 022681 loop el_box_loop 
+0x7046 022682 branch disable_authrom 
+:      022684 pht:
+0x7047 022685 force 8 ,loopcnt 
+0x7048 022686 arg mem_input_store ,contr 
+0x7049 022687 copy contr ,contw 
+:      022688 pht_loop:
+0x704a 022689 ifetch 1 ,contr 
+0x704b 022690 iforce rega 
+0x704c 022691 ifetch 1 ,contr 
+0x704d 022692 iforce regb 
+0x704e 022693 lshift rega ,pdata 
+0x704f 022694 iadd regb ,pdata 
+0x7050 022695 istore 1 ,contw 
+0x7051 022696 deposit rega 
+0x7052 022697 iadd regb ,pdata 
+0x7053 022698 istore 1 ,contw 
+0x7054 022699 loop pht_loop 
+0x7055 022700 rtn 
+:      022703 permute:
+0x7056 022704 setarg 0x8ae42c 
+0x7057 022705 iforce temp 
+0x7058 022706 force 7 ,loopcnt 
+0x7059 022707 call permute_exchange 
+0x705a 022708 setarg 0xd751b 
+0x705b 022709 iforce temp 
+0x705c 022710 force 5 ,loopcnt 
+0x705d 022711 call permute_exchange 
+0x705e 022712 fetch 1 ,mem_input_store + 15 
+0x705f 022713 iforce rega 
+0x7060 022714 fetch 1 ,mem_input_store + 3 
+0x7061 022715 store 1 ,mem_input_store + 15 
+0x7062 022716 deposit rega 
+0x7063 022717 store 1 ,mem_input_store + 3 
+0x7064 022718 rtn 
+:      022720 permute_exchange:
+0x7065 022721 and temp ,0xf ,regb 
+:      022722 permute_loop:
+0x7066 022723 and temp ,0xf ,pdata 
+0x7067 022724 arg mem_input_store ,contw 
+0x7068 022725 iadd contw ,contw 
+0x7069 022726 ifetch 1 ,contw 
+0x706a 022727 iforce regc 
+0x706b 022728 deposit rega 
+0x706c 022729 istore 1 ,contw 
+0x706d 022730 copy regc ,rega 
+0x706e 022731 rshift4 temp ,temp 
+0x706f 022732 loop permute_loop 
+0x7070 022733 setarg mem_input_store 
+0x7071 022734 iadd regb ,contw 
+0x7072 022735 deposit rega 
+0x7073 022736 istore 1 ,contw 
+0x7074 022737 rtn 
+:      022739 add16:
+0x7075 022740 enable user 
+0x7076 022741 branch xor_add16 
+:      022743 xor16:
+0x7077 022744 disable user 
+:      022745 xor_add16:
+0x7078 022746 force 16 ,loopcnt 
+:      022747 xoradd_loop:
+0x7079 022748 ifetcht 1 ,rega 
+0x707a 022749 ifetch 1 ,regb 
+0x707b 022750 branch xoradd_add ,user 
+0x707c 022751 ixor temp ,pdata 
+0x707d 022752 branch xoradd_store 
+:      022753 xoradd_add:
+0x707e 022754 iadd temp ,pdata 
+:      022755 xoradd_store:
+0x707f 022756 istore 1 ,contw 
+0x7080 022757 increase 1 ,rega 
+0x7081 022758 increase 1 ,regb 
+0x7082 022759 loop xoradd_loop 
+0x7083 022760 rtn 
+:      022763 function_expand:
+0x7084 022764 arg mem_y ,contw 
+0x7085 022765 ifetch 6 ,rega 
+0x7086 022766 istore 6 ,contw 
+0x7087 022767 branch expand_12 ,user 
+0x7088 022768 ifetch 6 ,rega 
+0x7089 022769 branch expand_cont 
+:      022770 expand_12:
+0x708a 022771 ifetch 6 ,contr 
+:      022772 expand_cont:
+0x708b 022773 istore 6 ,contw 
+0x708c 022774 ifetch 4 ,rega 
+0x708d 022775 istore 4 ,contw 
+0x708e 022776 rtn 
+:      022778 key_offset:
+0x708f 022779 arg mem_link_key ,contr 
+0x7090 022780 arg mem_x ,contw 
+0x7091 022781 arg 0 ,temp 
+0x7092 022782 setarg 0x8395a7 
+0x7093 022783 call concatenate_temp24 
+0x7094 022784 setarg 0xb3c1df 
+0x7095 022785 call concatenate_temp24 
+0x7096 022786 setarg 0xe5e9 
+0x7097 022787 call concatenate_temp16 
+0x7098 022788 copy temp ,regab 
+0x7099 022789 disable user 
+0x709a 022790 call key_addxor 
+0x709b 022791 copy regab ,temp 
+0x709c 022792 enable user 
+0x709d 022793 branch key_addxor 
+:      022795 key_addxor:
+0x709e 022796 force 8 ,loopcnt 
+:      022797 key_addxor_loop:
+0x709f 022798 ifetch 1 ,contr 
+0x70a0 022799 compare 1 ,loopcnt ,1 
+0x70a1 022800 branch key_high ,user 
+0x70a2 022801 branch key_xor ,true 
+:      022802 key_add:
+0x70a3 022803 iadd temp ,pdata 
+0x70a4 022804 branch key_store 
+:      022805 key_high:
+0x70a5 022806 branch key_add ,true 
+:      022807 key_xor:
+0x70a6 022808 ixor temp ,pdata 
+:      022809 key_store:
+0x70a7 022810 istore 1 ,contw 
+0x70a8 022811 rshift8 temp ,temp 
+0x70a9 022812 loop key_addxor_loop 
+0x70aa 022813 rtn 
+:      022815 copy_aco:
+0x70ab 022816 fetch 6 ,mem_input_store + 4 
+0x70ac 022817 store 6 ,mem_aco 
+0x70ad 022818 ifetch 6 ,contr 
+0x70ae 022819 istore 6 ,contw 
+0x70af 022820 rtn 
+:      022822 concatenate_temp24:
+0x70b0 022823 lshift8 temp ,temp 
+:      022824 concatenate_temp16:
+0x70b1 022825 lshift16 temp ,temp 
+0x70b2 022826 ior temp ,temp 
+0x70b3 022827 rtn 
+:      022830 loop1:
+0x70b4 022831 branch loop1 
+:      022835 generate_stk:
+0x70b5 022836 set1 mark_ext_patch ,mark 
+0x70b6 022837 bpatch patch3a_4 ,mem_patch3a 
+0x70b7 022838 call function_s1 
+0x70b8 022839 arg mem_le_ltk ,contw 
+0x70b9 022840 branch store_aes_result 
+:      022843 authenticate_rconfirm:
+0x70ba 022844 arg mem_le_srand ,contw 
+0x70bb 022845 branch authenticate_mconfirm ,master 
+0x70bc 022846 arg mem_le_mrand ,contw 
+:      022847 authenticate_mconfirm:
+0x70bd 022848 copy contr ,rega 
+0x70be 022849 call memcpy16 
+0x70bf 022850 call function_c1 
+0x70c0 022851 arg mem_le_rconfirm ,contr 
+0x70c1 022852 branch compare_res 
+:      022854 generate_confirm:
+0x70c2 022855 arg mem_le_mrand ,rega 
+0x70c3 022856 branch generate_mrand ,master 
+0x70c4 022857 arg mem_le_srand ,rega 
+:      022858 generate_mrand:
+0x70c5 022859 copy rega ,contw 
+0x70c6 022860 call generate_random 
+0x70c7 022861 branch function_c1 
+:      022863 generate_sk:
+0x70c8 022864 arg mem_le_skdm ,contr 
+0x70c9 022865 call load_data128 
+0x70ca 022866 arg mem_le_ltk ,contr 
+0x70cb 022867 call load_regext 
+0x70cc 022868 force 0x38 ,aes_ctrl 
+0x70cd 022869 force 0x0 ,aes_ctrl 
+0x70ce 022870 call wait_aes 
+0x70cf 022871 arg mem_le_sk ,contw 
+0x70d0 022872 branch store_aes_result 
+:      022875 first_block_counter:
+0x70d1 022876 force 0x49 ,pdata 
+0x70d2 022877 branch first_block 
+:      022878 first_block_data:
+0x70d3 022879 force 1 ,pdata 
+:      022880 first_block:
+0x70d4 022881 force regidx_data ,regext_index 
+0x70d5 022882 lshift8 temp ,regext 
+0x70d6 022883 ior regext ,regext 
+0x70d7 022884 increase 1 ,regext_index 
+0x70d8 022885 rshift8 temp ,regext 
+0x70d9 022886 rshift16 regext ,regext 
+0x70da 022887 fetch 2 ,mem_le_ivm 
+0x70db 022888 lshift16 ,pdata ,pdata 
+0x70dc 022889 ior regext ,regext 
+0x70dd 022890 increase 1 ,regext_index 
+0x70de 022891 ifetch 4 ,contr 
+0x70df 022892 iforce regext 
+0x70e0 022893 increase 1 ,regext_index 
+0x70e1 022894 ifetch 2 ,contr 
+0x70e2 022895 byteswap rega ,regext 
+0x70e3 022896 lshift16 regext ,regext 
+0x70e4 022897 ior regext ,regext 
+0x70e5 022898 increase 1 ,regext_index 
+0x70e6 022899 rtn 
+:      022903 generate_mic:
+0x70e7 022904 add regc ,1 ,contr 
+0x70e8 022905 ifetch 1 ,contr 
+0x70e9 022906 iforce rega 
+0x70ea 022907 call first_block_counter 
+0x70eb 022908 call do_aes_ocb 
+0x70ec 022910 force regidx_data ,regext_index 
+0x70ed 022911 ifetch 1 ,regc 
+0x70ee 022912 and_into 0x3 ,pdata 
+0x70ef 022913 lshift16 pdata ,regext 
+0x70f0 022914 set1 8 ,regext 
+0x70f1 022915 call clear_hidata 
+0x70f2 022916 call do_aes_cbc 
+0x70f3 022918 copy rega ,loopcnt 
+0x70f4 022919 add regc ,2 ,contr 
+0x70f5 022920 call padding_data 
+:      022921 generate_mic_loop:
+0x70f6 022922 call aes_load_data 
+0x70f7 022923 call do_aes_cbc 
+0x70f8 022924 deposit loopcnt 
+0x70f9 022925 branch generate_mic_end ,blank 
+0x70fa 022926 branch generate_mic_loop 
+:      022927 generate_mic_end:
+0x70fb 022928 force regidx_result ,regext_index 
+0x70fc 022929 deposit regext 
+0x70fd 022930 store 4 ,mem_le_mic 
+0x70fe 022931 rtn 
+:      022933 aes_crypt_data:
+0x70ff 022934 increase 1 ,rega 
+0x7100 022935 call first_block_data 
+0x7101 022936 copy regc ,contr 
+0x7102 022937 call aes_load_xor 
+0x7103 022938 call do_aes_ctr 
+0x7104 022939 call store_enc_data 
+0x7105 022940 increase 16 ,regc 
+0x7106 022941 increase -16 ,regb 
+0x7107 022942 branch aes_crypt_data ,positive 
+0x7108 022943 rtn 
+:      022945 le_encrypt:
+0x7109 022946 set1 mark_ext_patch ,mark 
+0x710a 022947 bpatch patch3a_5 ,mem_patch3a 
+0x710b 022948 arg mem_le_txheader ,regc 
+0x710c 022949 fetcht 5 ,mem_le_pcnt_tx 
+0x710d 022950 call generate_mic 
+0x710e 022951 force regidx_xor ,regext_index 
+0x710f 022952 iforce regext 
+0x7110 022953 force 0 ,rega 
+0x7111 022954 call first_block_data 
+0x7112 022955 call do_aes_ctr 
+0x7113 022956 arg mem_le_txpayload ,regc 
+0x7114 022957 fetch 1 ,mem_le_txlen 
+0x7115 022958 add pdata ,-1 ,regb 
+0x7116 022959 iadd regc ,contw 
+0x7117 022960 force regidx_result ,regext_index 
+0x7118 022961 deposit regext 
+0x7119 022962 istore 4 ,contw 
+0x711a 022963 call aes_crypt_data 
+0x711b 022964 fetch 1 ,mem_le_txlen 
+0x711c 022965 increase 4 ,pdata 
+0x711d 022966 store 1 ,mem_le_txlen 
+0x711e 022967 fetcht 5 ,mem_le_pcnt_tx 
+0x711f 022968 increase 1 ,temp 
+0x7120 022969 storet 5 ,mem_le_pcnt_tx 
+0x7121 022970 rtn 
+:      022972 le_decrypt:
+0x7122 022973 set1 mark_ext_patch ,mark 
+0x7123 022974 bpatch patch3a_6 ,mem_patch3a 
+0x7124 022975 fetch 1 ,mem_le_rxbuf + 1 
+0x7125 022976 sub pdata ,20 ,null 
+0x7126 022977 branch le_dec_cont ,positive 
+:      022978 le_dec_cont:
+0x7127 022979 arg mem_le_rxbuf + 2 ,regc 
+0x7128 022980 add pdata ,-1 ,regb 
+0x7129 022981 increase -4 ,pdata 
+0x712a 022982 store 1 ,mem_le_rxbuf + 1 
+0x712b 022983 iadd regc ,contr 
+0x712c 022984 ifetch 4 ,contr 
+0x712d 022985 force regidx_xor ,regext_index 
+0x712e 022986 iforce regext 
+0x712f 022987 force 0 ,rega 
+0x7130 022988 fetcht 5 ,mem_le_pcnt_rx 
+0x7131 022989 call first_block_data 
+0x7132 022990 call do_aes_ctr 
+0x7133 022991 force regidx_result ,regext_index 
+0x7134 022992 deposit regext 
+0x7135 022993 store 4 ,mem_le_peer_mic 
+0x7136 022994 call aes_crypt_data 
+0x7137 022995 arg mem_le_rxbuf ,regc 
+0x7138 022996 call generate_mic 
+0x7139 022997 fetcht 4 ,mem_le_peer_mic 
+0x713a 022998 isub temp ,pdata 
+0x713b 022999 nrtn blank 
+0x713c 023000 fetch 4 ,mem_le_last_mic 
+0x713d 023001 isub temp ,pdata 
+0x713e 023002 rtn blank 
+0x713f 023003 storet 4 ,mem_le_last_mic 
+0x7140 023004 fetch 5 ,mem_le_pcnt_rx 
+0x7141 023005 increase 1 ,pdata 
+0x7142 023006 store 5 ,mem_le_pcnt_rx 
+0x7143 023007 force 0 ,pdata 
+0x7144 023008 rtn 
+:      023010 wait_aes:
+0x7145 023011 nbranch wait_aes ,aes_ready 
+0x7146 023012 rtn 
+:      023014 do_aes_ocb:
+0x7147 023015 force 0x30 ,aes_ctrl 
+0x7148 023016 force 0x0 ,aes_ctrl 
+0x7149 023017 branch wait_aes 
+:      023019 do_aes_cbc:
+0x714a 023020 force 0x32 ,aes_ctrl 
+0x714b 023021 force 0x2 ,aes_ctrl 
+0x714c 023022 branch wait_aes 
+:      023024 do_aes_ctr:
+0x714d 023025 force 0x34 ,aes_ctrl 
+0x714e 023026 force 0x4 ,aes_ctrl 
+0x714f 023027 branch wait_aes 
+:      023030 aes_init:
+0x7150 023031 force 1 ,aes_ctrl 
+0x7151 023032 force 0 ,aes_ctrl 
+0x7152 023033 rtn 
+:      023034 function_s1:
+0x7153 023035 force regidx_data ,regext_index 
+0x7154 023036 fetch 4 ,mem_le_mrand 
+0x7155 023037 iforce regext 
+0x7156 023038 increase 1 ,regext_index 
+0x7157 023039 ifetch 4 ,contr 
+0x7158 023040 iforce regext 
+0x7159 023041 increase 1 ,regext_index 
+0x715a 023042 fetch 4 ,mem_le_srand 
+0x715b 023043 iforce regext 
+0x715c 023044 increase 1 ,regext_index 
+0x715d 023045 ifetch 4 ,contr 
+0x715e 023046 iforce regext 
+0x715f 023047 increase 1 ,regext_index 
+0x7160 023048 call aes_clear 
+0x7161 023049 increase -4 ,regext_index 
+0x7162 023050 fetch 4 ,mem_le_tk 
+0x7163 023051 copy pdata ,regext 
+0x7164 023052 increase 4 ,regext_index 
+0x7165 023053 force 0x38 ,aes_ctrl 
+0x7166 023054 force 0x8 ,aes_ctrl 
+0x7167 023055 branch wait_aes 
+:      023058 function_c1:
+0x7168 023059 set1 mark_ext_patch ,mark 
+0x7169 023060 bpatch patch3a_7 ,mem_patch3a 
+0x716a 023061 fetch 6 ,mem_le_lap 
+0x716b 023062 fetcht 6 ,mem_le_plap 
+0x716c 023063 branch function_c1_master ,master 
+0x716d 023064 fetch 6 ,mem_le_plap 
+0x716e 023065 fetcht 6 ,mem_le_lap 
+:      023066 function_c1_master:
+0x716f 023067 force regidx_xor ,regext_index 
+0x7170 023068 copy temp ,regext 
+0x7171 023069 increase 1 ,regext_index 
+0x7172 023070 rshift32 temp ,regext 
+0x7173 023071 lshift16 pdata ,pdata 
+0x7174 023072 ior regext ,regext 
+0x7175 023073 increase 1 ,regext_index 
+0x7176 023074 rshift32 pdata ,regext 
+0x7177 023075 increase 1 ,regext_index 
+0x7178 023076 force 0 ,regext 
+0x7179 023077 force 0 ,pdata 
+0x717a 023078 fetch 1 ,mem_le_conn_peer_addr_type 
+0x717b 023079 fetcht 1 ,mem_le_adv_own_addr_type 
+0x717c 023080 nbranch function_c1_irat ,master 
+0x717d 023082 fetch 1 ,mem_le_conn_own_addr_type 
+0x717e 023083 fetcht 1 ,mem_le_conn_peer_addr_type 
+:      023084 function_c1_irat:
+0x717f 023085 store 1 ,mem_le_iat 
+0x7180 023086 storet 1 ,mem_le_rat 
+0x7181 023087 force regidx_data ,regext_index 
+0x7182 023088 arg mem_le_iat ,regb 
+0x7183 023089 force 4 ,loopcnt 
+:      023090 function_c1_loop1:
+0x7184 023091 ifetch 4 ,rega 
+0x7185 023092 ifetcht 4 ,regb 
+0x7186 023093 ixor temp ,regext 
+0x7187 023094 increase 1 ,regext_index 
+0x7188 023095 increase 4 ,rega 
+0x7189 023096 increase 4 ,regb 
+0x718a 023097 loop function_c1_loop1 
+0x718b 023098 call aes_clear 
+0x718c 023099 increase -4 ,regext_index 
+0x718d 023100 fetch 4 ,mem_le_tk 
+0x718e 023101 copy pdata ,regext 
+0x718f 023102 increase 4 ,regext_index 
+0x7190 023103 force 0x38 ,aes_ctrl 
+0x7191 023104 force 0xc ,aes_ctrl 
+0x7192 023105 call wait_aes 
+0x7193 023107 call aes_clear_data 
+0x7194 023108 force 0x3a ,aes_ctrl 
+0x7195 023109 force 0x8 ,aes_ctrl 
+0x7196 023110 branch wait_aes 
+:      023112 padding_data:
+0x7197 023113 compare 0 ,loopcnt ,3 
+0x7198 023114 rtn true 
+0x7199 023115 deposit contr 
+0x719a 023116 iadd loopcnt ,contw 
+0x719b 023117 force 0 ,pdata 
+:      023118 padding_loop:
+0x719c 023119 istore 1 ,contw 
+0x719d 023120 increase 1 ,loopcnt 
+0x719e 023121 compare 0 ,loopcnt ,3 
+0x719f 023122 rtn true 
+0x71a0 023123 branch padding_loop 
+:      023125 aes_load_data:
+0x71a1 023126 force regidx_data ,regext_index 
+:      023127 load_data_loop:
+0x71a2 023128 deposit loopcnt 
+0x71a3 023129 branch load_data_padding ,blank 
+0x71a4 023130 ifetch 4 ,contr 
+0x71a5 023131 increase -4 ,loopcnt 
+:      023132 load_data_padding:
+0x71a6 023133 iforce regext 
+0x71a7 023134 increase 1 ,regext_index 
+0x71a8 023135 compare regidx_key ,regext_index ,0xf 
+0x71a9 023136 rtn true 
+0x71aa 023137 branch load_data_loop 
+:      023139 aes_load_xor:
+0x71ab 023140 force regidx_xor ,regext_index 
+0x71ac 023141 branch load_regext 
+:      023142 load_key:
+0x71ad 023143 force regidx_key ,regext_index 
+0x71ae 023144 branch load_regext 
+:      023145 load_data128:
+0x71af 023146 force regidx_data ,regext_index 
+:      023147 load_regext:
+0x71b0 023148 force 4 ,loopcnt 
+:      023149 load_regext_loop:
+0x71b1 023150 ifetch 4 ,contr 
+0x71b2 023151 iforce regext 
+0x71b3 023152 increase 1 ,regext_index 
+0x71b4 023153 loop load_regext_loop 
+0x71b5 023154 rtn 
+:      023156 load_sk:
+0x71b6 023157 arg mem_le_sk ,contr 
+0x71b7 023158 branch load_key 
+:      023160 clear_hidata:
+0x71b8 023161 force 4 ,loopcnt 
+0x71b9 023162 branch clear_data_rest 
+:      023164 aes_clear_data:
+0x71ba 023165 force regidx_data ,regext_index 
+:      023166 aes_clear:
+0x71bb 023167 force 4 ,loopcnt 
+:      023168 clear_loop:
+0x71bc 023169 force 0 ,regext 
+:      023170 clear_data_rest:
+0x71bd 023171 increase 1 ,regext_index 
+0x71be 023172 loop clear_loop 
+0x71bf 023173 rtn 
+:      023175 store_aes_result:
+0x71c0 023176 force regidx_result ,regext_index 
+0x71c1 023177 force 4 ,loopcnt 
+:      023178 send_aes_result_loop:
+0x71c2 023179 deposit regext 
+0x71c3 023180 istore 4 ,contw 
+0x71c4 023181 increase 1 ,regext_index 
+0x71c5 023182 loop send_aes_result_loop 
+0x71c6 023183 rtn 
+:      023185 store_enc_data:
+0x71c7 023186 force regidx_result ,regext_index 
+0x71c8 023187 copy regc ,contw 
+0x71c9 023188 add regb ,1 ,loopcnt 
+0x71ca 023189 sub loopcnt ,15 ,null 
+0x71cb 023190 branch store_enc_loop ,positive 
+0x71cc 023191 force 16 ,loopcnt 
+:      023192 store_enc_loop:
+0x71cd 023193 deposit regext 
+0x71ce 023194 sub loopcnt ,3 ,null 
+0x71cf 023195 branch store_enc_byte ,positive 
+0x71d0 023196 istore 4 ,contw 
+0x71d1 023197 increase -4 ,loopcnt 
+0x71d2 023198 rtn zero 
+0x71d3 023199 increase 1 ,regext_index 
+0x71d4 023200 branch store_enc_loop 
+:      023201 store_enc_byte:
+0x71d5 023202 istore 1 ,contw 
+0x71d6 023203 rshift8 pdata ,pdata 
+0x71d7 023204 loop store_enc_byte 
+0x71d8 023205 rtn 
+:      023208 compare_res:
+0x71d9 023209 force regidx_result ,regext_index 
+0x71da 023210 force 4 ,loopcnt 
+:      023211 compare_res_loop:
+0x71db 023212 ifetch 4 ,contr 
+0x71dc 023213 isub regext ,null 
+0x71dd 023214 nrtn zero 
+0x71de 023215 increase 1 ,regext_index 
+0x71df 023216 loop compare_res_loop 
+0x71e0 023217 force 0 ,null 
+0x71e1 023218 rtn 
+:      023220 enable_authrom:
+0x71e2 023221 hfetch 1 ,core_clkoff 
+0x71e3 023222 set0 clock_off_auth_rom ,pdata 
+0x71e4 023223 hstore 1 ,core_clkoff 
+0x71e5 023224 rtn 
+:      023226 disable_authrom:
+0x71e6 023227 hfetch 1 ,core_clkoff 
+0x71e7 023228 set1 clock_off_auth_rom ,pdata 
+0x71e8 023229 hstore 1 ,core_clkoff 
+0x71e9 023230 rtn 
+:      023232 init_memp:
+0x71ea 023233 arg mem_p ,contw 
+0x71eb 023234 setsect 0 ,0x3ffff 
+0x71ec 023235 setsect 1 ,0x3ffff 
+0x71ed 023236 setsect 2 ,0x3ffff 
+0x71ee 023237 setsect 3 ,0x3fbff 
+0x71ef 023238 istore 9 ,contw 
+0x71f0 023239 setsect 0 ,0x3ffff 
+0x71f1 023240 setsect 1 ,0x3ffff 
+0x71f2 023241 setsect 2 ,0x3ffff 
+0x71f3 023242 setsect 3 ,0x3ffff 
+0x71f4 023243 istore 9 ,contw 
+0x71f5 023244 setsect 0 ,0x3ffff 
+0x71f6 023245 setsect 1 ,0x3ffff 
+0x71f7 023246 setsect 2 ,0x3cfff 
+0x71f8 023247 setsect 3 ,0x3ffff 
+0x71f9 023248 istore 9 ,contw 
+0x71fa 023249 setsect 0 ,0x3ffff 
+0x71fb 023250 setsect 1 ,0x3ffff 
+0x71fc 023251 setsect 2 ,0x3ffef 
+0x71fd 023252 setsect 3 ,0x3ffff 
+0x71fe 023253 istore 9 ,contw 
+0x71ff 023254 setsect 0 ,0x3ffff 
+0x7200 023255 setsect 1 ,0x3ffff 
+0x7201 023256 setsect 2 ,0x3ffff 
+0x7202 023257 setsect 3 ,0x3ffff 
+0x7203 023258 istore 9 ,contw 
+0x7204 023259 setsect 0 ,0x3ffff 
+0x7205 023260 setsect 1 ,0x26c7f 
+0x7206 023261 setsect 2 ,0x146b 
+0x7207 023262 setsect 3 ,0x37bb3 
+0x7208 023263 istore 9 ,contw 
+0x7209 023264 setsect 0 ,0x1feb8 
+0x720a 023265 setsect 1 ,0x10c12 
+0x720b 023266 setsect 2 ,0x2b722 
+0x720c 023267 setsect 3 ,0x29fa6 
+0x720d 023268 istore 9 ,contw 
+0x720e 023269 setsect 0 ,0xe70f 
+0x720f 023270 setsect 1 ,0x16720 
+0x7210 023271 setsect 2 ,0x519e 
+0x7211 023272 setsect 3 ,0x19084 
+0x7212 023273 istore 9 ,contw 
+0x7213 023274 setsect 0 ,0x31012 
+0x7214 023275 setsect 1 ,0x360bf 
+0x7215 023276 setsect 2 ,0x3f0af 
+0x7216 023277 setsect 3 ,0x3d3 
+0x7217 023278 istore 9 ,contw 
+0x7218 023279 setsect 0 ,0x3a188 
+0x7219 023280 setsect 1 ,0x3ad0 
+0x721a 023281 setsect 2 ,0x3cbf2 
+0x721b 023282 setsect 3 ,0x243d9 
+0x721c 023283 istore 9 ,contw 
+0x721d 023284 setsect 0 ,0x2b030 
+0x721e 023285 setsect 1 ,0x36a03 
+0x721f 023286 setsect 2 ,0x11188 
+0x7220 023287 setsect 3 ,0x1e520 
+0x7221 023288 istore 9 ,contw 
+0x7222 023289 setsect 0 ,0x3a11e 
+0x7223 023290 setsect 1 ,0xfe5d 
+0x7224 023291 setsect 2 ,0xdd57 
+0x7225 023292 setsect 3 ,0x1ac93 
+0x7226 023293 istore 9 ,contw 
+0x7227 023294 setsect 0 ,0x11ed 
+0x7228 023295 setsect 1 ,0x218c4 
+0x7229 023296 setsect 2 ,0x8da7 
+0x722a 023297 setsect 3 ,0x257ff 
+0x722b 023298 istore 9 ,contw 
+0x722c 023299 setsect 0 ,0x3192b 
+0x722d 023300 setsect 1 ,0x34641 
+0x722e 023301 setsect 2 ,0x1be0c 
+0x722f 023302 setsect 3 ,0x366ad 
+0x7230 023303 istore 9 ,contw 
+0x7231 023304 setsect 0 ,0x1f83 
+0x7232 023305 setsect 1 ,0x15a23 
+0x7233 023306 setsect 2 ,0x3f9b0 
+0x7234 023307 setsect 3 ,0x3949 
+0x7235 023308 istore 9 ,contw 
+0x7236 023309 setsect 0 ,0x13a51 
+0x7237 023310 setsect 1 ,0x153fd 
+0x7238 023311 setsect 2 ,0x3372a 
+0x7239 023312 setsect 3 ,0xf1bb 
+0x723a 023313 istore 9 ,contw 
+0x723b 023314 setsect 0 ,0x3ae85 
+0x723c 023315 setsect 1 ,0x1eed9 
+0x723d 023316 setsect 2 ,0x9e66 
+0x723e 023317 setsect 3 ,0x1a8 
+0x723f 023318 istore 8 ,contw 
+0x7240 023319 rtn 
+:      023323 init_memp_256:
+0x7241 023324 arg mem_p_256 ,contw 
+0x7242 023325 setsect 0 ,0x3ffff 
+0x7243 023326 setsect 1 ,0x3ffff 
+0x7244 023327 setsect 2 ,0x3ffff 
+0x7245 023328 setsect 3 ,0x3ffff 
+0x7246 023329 istore 9 ,contw 
+0x7247 023330 setsect 0 ,0x3ffff 
+0x7248 023331 setsect 1 ,0x3f 
+0x7249 023332 setsect 2 ,0x0 
+0x724a 023333 setsect 3 ,0x0 
+0x724b 023334 istore 9 ,contw 
+0x724c 023335 setsect 0 ,0x0 
+0x724d 023336 setsect 1 ,0x0 
+0x724e 023337 setsect 2 ,0x1000 
+0x724f 023338 setsect 3 ,0x0 
+0x7250 023339 istore 9 ,contw 
+0x7251 023340 setsect 0 ,0x3ff00 
+0x7252 023341 setsect 1 ,0x3ffff 
+0x7253 023342 setsect 2 ,0x3ffcf 
+0x7254 023343 setsect 3 ,0x3ffff 
+0x7255 023344 istore 9 ,contw 
+0x7256 023345 setsect 0 ,0x3ffff 
+0x7257 023346 setsect 1 ,0x3ffff 
+0x7258 023347 setsect 2 ,0x3ffff 
+0x7259 023348 setsect 3 ,0x3ff 
+0x725a 023349 istore 9 ,contw 
+0x725b 023350 setsect 0 ,0x0 
+0x725c 023351 setsect 1 ,0x0 
+0x725d 023352 setsect 2 ,0x0 
+0x725e 023353 setsect 3 ,0x0 
+0x725f 023354 istore 9 ,contw 
+0x7260 023355 setsect 0 ,0x10000 
+0x7261 023356 setsect 1 ,0x0 
+0x7262 023357 setsect 2 ,0x3f000 
+0x7263 023358 setsect 3 ,0x3ffff 
+0x7264 023359 istore 9 ,contw 
+0x7265 023360 setsect 0 ,0x296ff 
+0x7266 023361 setsect 1 ,0x22630 
+0x7267 023362 setsect 2 ,0x3945d 
+0x7268 023363 setsect 3 ,0x3d284 
+0x7269 023364 istore 9 ,contw 
+0x726a 023365 setsect 0 ,0x333a0 
+0x726b 023366 setsect 1 ,0x4b7a 
+0x726c 023367 setsect 2 ,0x37d8 
+0x726d 023368 setsect 3 ,0x3c9dc 
+0x726e 023369 istore 9 ,contw 
+0x726f 023370 setsect 0 ,0x3a440 
+0x7270 023371 setsect 1 ,0x1b958 
+0x7271 023372 setsect 2 ,0x38bce 
+0x7272 023373 setsect 3 ,0x1091f 
+0x7273 023374 istore 9 ,contw 
+0x7274 023375 setsect 0 ,0x2e12c 
+0x7275 023376 setsect 1 ,0x1f47c 
+0x7276 023377 setsect 2 ,0x356b1 
+0x7277 023378 setsect 3 ,0x2fd47 
+0x7278 023379 istore 9 ,contw 
+0x7279 023380 setsect 0 ,0x6837 
+0x727a 023381 setsect 1 ,0x2ed90 
+0x727b 023382 setsect 2 ,0x1ecec 
+0x727c 023383 setsect 3 ,0x1acc5 
+0x727d 023384 istore 9 ,contw 
+0x727e 023385 setsect 0 ,0x23357 
+0x727f 023386 setsect 1 ,0x18af3 
+0x7280 023387 setsect 2 ,0xf9e1 
+0x7281 023388 setsect 3 ,0x129f0 
+0x7282 023389 istore 9 ,contw 
+0x7283 023390 setsect 0 ,0x2e7eb 
+0x7284 023391 setsect 1 ,0x3e6e3 
+0x7285 023392 setsect 2 ,0x3e1a7 
+0x7286 023393 setsect 3 ,0x10b8b 
+0x7287 023394 istore 9 ,contw 
+0x7288 023395 setsect 0 ,0x24fe3 
+0x7289 023396 setsect 1 ,0x20ef 
+0x728a 023397 setsect 2 ,0x1b5a6 
+0x728b 023398 setsect 3 ,0xdc2f 
+0x728c 023399 istore 9 ,contw 
+0x728d 023400 setsect 0 ,0x13860 
+0x728e 023401 setsect 1 ,0x2bd69 
+0x728f 023402 setsect 2 ,0x391a 
+0x7290 023403 setsect 3 ,0x1b222 
+0x7291 023404 istore 9 ,contw 
+0x7292 023405 rtn 
+:      023409 shutter_init:
+0x7293 023411 rtn wake 
+0x7294 023412 call init_shutter_le_att_list 
+0x7295 023413 call shutter_init_param 
+0x7296 023414 hjam 0x00 ,core_gpio_sel1 
+0x7297 023415 call shutter_key_init 
+0x7298 023416 setarg shutter_le_before_hibernate 
+0x7299 023417 store 2 ,mem_cb_before_hibernate 
+0x729a 023419 setarg shutter_le_process_lpm_before 
+0x729b 023420 store 2 ,mem_cb_before_lpm 
+0x729c 023422 setarg shutter_le_discovery_timeout_sleep 
+0x729d 023423 store 2 ,mem_cb_discovry_timeout 
+0x729e 023425 setarg scale_process_idle 
+0x729f 023426 store 2 ,mem_cb_idle_process 
+0x72a0 023428 setarg scale_process 
+0x72a1 023429 store 2 ,mem_cb_le_process 
+0x72a2 023431 setarg scale_process_bb_event 
+0x72a3 023432 store 2 ,mem_cb_bb_event_process 
+0x72a4 023434 setarg shutter_le_scale_lpm_lock 
+0x72a5 023435 store 2 ,mem_cb_check_wakelock 
+0x72a6 023437 setarg shutter_le_send_att_handle_value_notification 
+0x72a7 023438 store 2 ,mem_cb_update_notify_value 
+:      023440 shutter_init0:
+0x72a8 023441 setarg shutter_le_receive_data 
+0x72a9 023442 store 2 ,mem_cb_att_write 
+0x72aa 023443 call shutter_le_queue_init 
+0x72ab 023444 jam 0 ,mem_lpm_mult 
+0x72ac 023445 jam 0 ,mem_shutter_conn_update_timer 
+0x72ad 023446 set1 mark_ext_patch ,mark 
+0x72ae 023447 bpatch patch3b_0 ,mem_patch3b 
+0x72af 023448 fetch 1 ,mem_hard_soft_switch_case 
+0x72b0 023449 beq hard_switch ,shutter_le_hard_switch_power_on_signal 
+0x72b1 023450 call shutter_ui_led_init 
+0x72b2 023451 call ui_button_init 
+0x72b3 023452 call ui_button_polling 
+0x72b4 023453 jam shutter_power_up ,mem_shutter_powerup_flag 
+0x72b5 023454 fetch 2 ,mem_ui_state_map 
+0x72b6 023455 rtnbit1 ui_state_btn_down 
+0x72b7 023456 branch app_enter_hibernate 
+:      023458 shutter_le_hard_switch_power_on_signal:
+0x72b8 023460 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x72b9 023461 jam 1 ,mem_enable_key_scan 
+0x72ba 023462 call shutter_ui_led_init 
+0x72bb 023463 setarg mem_power_on_led_style 
+0x72bc 023464 call shutter_ui_led_send 
+:      023465 in_poweron_hard_switch_led:
+0x72bd 023466 call ui_led_blink_polling 
+0x72be 023467 fetch 1 ,mem_led_blink_count 
+0x72bf 023468 nbranch in_poweron_hard_switch_led ,blank 
+:      023469 shutter_le_soft_switch_power_on_signal:
+0x72c0 023471 jam on ,mem_le_adv_enable 
+0x72c1 023472 setarg 0 
+0x72c2 023473 store 4 ,mem_shutter_send_data 
+0x72c3 023474 call shutter_ui_led_init 
+0x72c4 023477 fetch 2 ,mem_le_sleep_timeout 
+0x72c5 023478 store 2 ,mem_le_sleep_timeout_timer_count 
+0x72c6 023479 call shutter_le_fast_advertise 
+0x72c7 023481 jam pair_unknown ,mem_pair_state 
+0x72c8 023482 call le_modified_name 
+0x72c9 023483 fetch 6 ,mem_le_lap 
+0x72ca 023484 call shutter_byteswap 
+0x72cb 023485 call shutter_updata_mac 
+0x72cc 023486 rtn 
+:      023490 shutter_le_adv_interval_set:
+0x72cd 023491 store 2 ,mem_lpm_interval 
+0x72ce 023492 increase -4 ,pdata 
+0x72cf 023493 store 2 ,mem_le_adv_interval_min 
+0x72d0 023494 store 2 ,mem_le_adv_interval_max 
+0x72d1 023495 rtn 
+:      023497 shutter_updata_mac:
+0x72d2 023498 fetcht 2 ,mem_adv_lap_ptr 
+0x72d3 023499 rtn blank 
+0x72d4 023500 istore 6 ,temp 
+0x72d5 023501 rtn 
+:      023503 shutter_byteswap:
+0x72d6 023504 store 6 ,mem_tmp_buffer 
+0x72d7 023505 fetch 1 ,mem_tmp_buffer 
+0x72d8 023506 store 1 ,mem_tmp_buffer + 11 
+0x72d9 023507 ifetch 1 ,contr 
+0x72da 023508 store 1 ,mem_tmp_buffer + 10 
+0x72db 023509 ifetch 1 ,contr 
+0x72dc 023510 store 1 ,mem_tmp_buffer + 9 
+0x72dd 023511 ifetch 1 ,contr 
+0x72de 023512 store 1 ,mem_tmp_buffer + 8 
+0x72df 023513 ifetch 1 ,contr 
+0x72e0 023514 store 1 ,mem_tmp_buffer + 7 
+0x72e1 023515 ifetch 1 ,contr 
+0x72e2 023516 store 1 ,mem_tmp_buffer + 6 
+0x72e3 023517 fetch 6 ,mem_tmp_buffer + 6 
+0x72e4 023518 rtn 
+:      023520 shutter_le_fast_advertise:
+0x72e5 023521 jam 0 ,mem_shutter_key_data_flag_1 
+0x72e6 023522 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72e7 023523 nbranch in_shutter_skip_set ,blank 
+0x72e8 023524 setarg mem_fast_adv_led_style 
+0x72e9 023525 call shutter_ui_led_send 
+0x72ea 023526 setarg fast_adv_interval_value 
+0x72eb 023527 call shutter_le_adv_interval_set 
+:      023528 in_shutter_skip_set:
+0x72ec 023529 fetch 2 ,mem_le_fast_adv_timeout 
+0x72ed 023530 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72ee 023531 rtn 
+:      023533 shutter_le_scale_lpm_lock:
+0x72ef 023540 fetch 1 ,mem_scale_txbuff_inuse 
+0x72f0 023541 beq 1 ,app_get_lpm_wake_lock 
+0x72f1 023542 fetch 1 ,mem_queue_ele_num 
+0x72f2 023543 nbranch app_get_lpm_wake_lock ,blank 
+0x72f3 023544 branch app_put_lpm_wake_lock 
+:      023546 scale_process_bb_event:
+0x72f4 023547 copy regc ,pdata 
+0x72f5 023549 beq bt_evt_button_up ,shutter_bb_event_button_up 
+0x72f6 023550 beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+0x72f7 023551 beq bt_evt_le_connected ,scale_process_le_conn 
+0x72f8 023552 beq bt_evt_le_disconnected ,scale_process_le_discon 
+0x72f9 023553 and pdata ,0x0f ,temp 
+0x72fa 023554 and_into bt_evt_timer_mask ,pdata 
+0x72fb 023555 beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+0x72fc 023556 rtn 
+:      023558 shutter_le_bb_event_timer:
+0x72fd 023559 storet 1 ,mem_app_evt_timer_count 
+:      023560 shutter_le_bb_event_100ms_loop:
+0x72fe 023561 fetch 1 ,mem_app_evt_timer_count 
+0x72ff 023562 rtn blank 
+0x7300 023563 increase -1 ,pdata 
+0x7301 023564 store 1 ,mem_app_evt_timer_count 
+0x7302 023565 set1 mark_ext_patch ,mark 
+0x7303 023566 bpatch patch3b_1 ,mem_patch3b 
+0x7304 023567 call ui_button_check_long_press 
+0x7305 023568 call shutter_le_shutter_fast_adv_timer 
+0x7306 023569 call shutter_le_sleep_timer 
+0x7307 023570 call shutter_ui_button_timeout_timer 
+0x7308 023571 call shutter_ui_power_timeout_timer 
+0x7309 023572 call shutter_app_updata_le_param_timer 
+0x730a 023573 call shutter_conn_update_timer 
+0x730b 023574 branch shutter_le_bb_event_100ms_loop 
+:      023576 shutter_conn_update_timer:
+0x730c 023577 fetch 1 ,mem_shutter_conn_update_timer 
+0x730d 023578 rtn blank 
+0x730e 023579 increase -1 ,pdata 
+0x730f 023580 store 1 ,mem_shutter_conn_update_timer 
+0x7310 023581 nrtn blank 
+0x7311 023582 jam 0x05 ,mem_lpm_mult 
+0x7312 023583 rtn 
+:      023585 shutter_app_updata_le_param_timer:
+0x7313 023586 fetch 1 ,mem_send_updata_le_param_timer 
+0x7314 023587 rtn blank 
+0x7315 023588 increase -1 ,pdata 
+0x7316 023589 store 1 ,mem_send_updata_le_param_timer 
+0x7317 023590 nrtn blank 
+0x7318 023591 fetch 1 ,mem_le_state 
+0x7319 023592 bbit0 lestate_encryption ,shutter_app_updata_le_param 
+0x731a 023593 jam 1 ,mem_send_updata_le_param_timer 
+0x731b 023594 rtn 
+:      023596 shutter_app_updata_le_param:
+0x731c 023597 call app_lpm_mult_enable 
+0x731d 023598 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x731e 023599 branch ui_ipc_send_cmd 
+:      023602 shutter_le_shutter_fast_adv_timer:
+0x731f 023603 fetch 1 ,mem_shutter_powerup_flag 
+0x7320 023604 rtnne shutter_power_on 
+0x7321 023605 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7322 023606 rtn blank 
+0x7323 023607 increase -1 ,pdata 
+0x7324 023608 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7325 023609 nrtn blank 
+0x7326 023610 fetch 2 ,mem_ui_state_map 
+0x7327 023611 bbit1 ui_state_ble_connected ,in_is_connected 
+0x7328 023612 setarg mem_slow_adv_led_style 
+0x7329 023613 call shutter_ui_led_send 
+:      023614 in_is_connected:
+0x732a 023615 setarg slow_adv_interval_value 
+0x732b 023616 branch shutter_le_adv_interval_set 
+:      023618 shutter_le_sleep_timer:
+0x732c 023619 fetch 2 ,mem_le_sleep_timeout_timer_count 
+0x732d 023620 rtn blank 
+0x732e 023621 increase -1 ,pdata 
+0x732f 023622 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7330 023623 nrtn blank 
+0x7331 023625 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7332 023626 call shutter_shutter_power_off_end 
+0x7333 023629 rtn 
+:      023631 scale_process_le_conn:
+0x7334 023632 jam 0 ,mem_lpm_mode 
+0x7335 023633 fetch 2 ,mem_le_sleep_timeout 
+0x7336 023634 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7337 023635 jam pair_unknown ,mem_pair_state 
+0x7338 023637 call app_ble_stop_adv 
+0x7339 023641 setarg 0x112233 
+0x733a 023642 store 3 ,mem_le_ltk 
+0x733b 023643 setarg 0x445566 
+0x733c 023644 istore 3 ,contw 
+0x733d 023645 setarg 0x778899 
+0x733e 023646 istore 3 ,contw 
+0x733f 023647 setarg 0x001122 
+0x7340 023648 istore 3 ,contw 
+0x7341 023649 setarg 0x334455 
+0x7342 023650 istore 3 ,contw 
+0x7343 023651 setarg 0x66 
+0x7344 023652 istore 1 ,contw 
+0x7345 023654 call app_ble_stop_adv 
+0x7346 023657 call app_lpm_mult_enable 
+0x7347 023659 jam 0 ,mem_le_fast_adv_timeout_timer_count 
+0x7348 023660 setarg mem_connected_led_style 
+0x7349 023661 call shutter_ui_led_send 
+0x734a 023662 jam 0 ,mem_led_gpio 
+0x734b 023663 rtn 
+:      023665 scale_process_le_discon:
+0x734c 023668 jam 0 ,mem_lpm_mult 
+0x734d 023669 jam 0 ,mem_shutter_conn_update_timer 
+0x734e 023670 jam 0 ,mem_ltk_exists 
+0x734f 023671 jam default_states ,mem_ltk_states 
+0x7350 023672 jam 0 ,mem_shutter_find_type_value_flag 
+0x7351 023673 call shutter_le_queue_clear 
+0x7352 023674 fetch 2 ,mem_le_sleep_timeout 
+0x7353 023675 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7354 023676 fetch 1 ,mem_le_sleep_flag 
+0x7355 023677 bne 0 ,shutter_le_sleep_enter 
+0x7356 023678 call shutter_le_fast_advertise 
+0x7357 023679 jam pair_unknown ,mem_pair_state 
+0x7358 023680 setarg 0 
+0x7359 023681 store 2 ,mem_l2cap_rxbuff1_len 
+0x735a 023682 setarg 0 
+0x735b 023683 store 2 ,mem_l2cap_rxbuff2_len 
+0x735c 023685 call shutter_le_tx_buff_unuse 
+0x735d 023687 call app_ble_start_adv 
+0x735e 023691 rtn 
+:      023693 shutter_le_tx_buff_inuse:
+0x735f 023695 jam 1 ,mem_scale_txbuff_inuse 
+0x7360 023696 rtn 
+:      023697 shutter_le_check_tx_buff:
+0x7361 023698 fetch 1 ,mem_scale_txbuff_inuse 
+0x7362 023699 rtn 
+:      023700 shutter_le_tx_buff_unuse:
+0x7363 023702 jam 0 ,mem_scale_txbuff_inuse 
+0x7364 023703 rtn 
+:      023705 shutter_le_discovery_timeout_sleep:
+0x7365 023706 branch app_enter_hibernate 
+:      023708 shutter_le_sleep_req_hibernate:
+0x7366 023709 jam 0x01 ,mem_le_sleep_flag 
+:      023710 shutter_le_sleep_req_ok:
+0x7367 023711 fetch 2 ,mem_ui_state_map 
+0x7368 023712 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+:      023713 shutter_le_sleep_enter:
+0x7369 023714 call shutter_le_sleep_clr 
+0x736a 023715 call wait_uarttx 
+0x736b 023716 jam 0x00 ,mem_le_sleep_flag 
+0x736c 023717 branch app_bb_hibernate 
+:      023719 shutter_le_sleep_clr:
+0x736d 023720 setarg 0 
+0x736e 023721 store 2 ,mem_l2cap_rxbuff1_len 
+0x736f 023722 store 2 ,mem_l2cap_rxbuff2_len 
+0x7370 023723 branch shutter_le_tx_buff_unuse 
+:      023726 scale_process:
+0x7371 023727 fetch 1 ,mem_exchange_mtu_req 
+0x7372 023728 ncall shutter_le_parse_att_exchange_mtu_request ,blank 
+0x7373 023729 call shutter_le_send_packet 
+0x7374 023730 branch shutter_le_key_process 
+:      023732 shutter_le_parse_att_exchange_mtu_request:
+0x7375 023735 jam 0 ,mem_exchange_mtu_req 
+0x7376 023736 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x7377 023737 branch le_xtype_fifo_in 
+:      023738 shutter_le_parse_att_exchange_mtu_request_save:
+0x7378 023739 jam 1 ,mem_exchange_mtu_req 
+0x7379 023740 rtn 
+:      023742 scale_process_idle:
+0x737a 023743 call shutter_le_send_packet 
+0x737b 023744 branch shutter_le_key_process 
+:      023746 shutter_le_before_hibernate:
+0x737c 023747 call shutter_shutter_scan_key 
+0x737d 023748 fetch 2 ,mem_key_value_temp 
+0x737e 023749 branch in_enter_hibernate ,blank 
+0x737f 023750 branch app_enter_hibernate 
+:      023751 in_enter_hibernate:
+0x7380 023752 call gpio_set_before_lpm_common 
+0x7381 023753 branch shutter_le_process_lpm_before 
+:      023759 shutter_ui_led_init:
+0x7382 023760 fetch 1 ,mem_shutter_led_num 
+0x7383 023761 copy pdata ,loopcnt 
+0x7384 023762 setarg mem_led_map 
+0x7385 023763 copy pdata ,rega 
+:      023764 in_lp1:
+0x7386 023765 copy rega ,contr 
+0x7387 023766 ifetch 1 ,contr 
+0x7388 023767 beq invalid_pin_num ,in_lp1_end 
+0x7389 023768 copy pdata ,temp 
+0x738a 023769 store 1 ,mem_led_gpio 
+0x738b 023771 call ui_led_init 
+:      023772 in_lp1_end:
+0x738c 023773 loop in_lp1 
+:      023774 shutter_ui_led_init_end:
+0x738d 023775 rtn 
+:      023780 shutter_ui_led_send:
+0x738e 023781 copy pdata ,contr 
+0x738f 023782 force 7 ,loopcnt 
+0x7390 023785 arg mem_temp_led_style ,contw 
+0x7391 023786 call memcpy 
+0x7392 023787 set1 mark_ext_patch ,mark 
+0x7393 023788 bpatch patch3b_2 ,mem_patch3b 
+0x7394 023789 fetch 1 ,mem_temp_led_type 
+0x7395 023790 rtneq led_invalid 
+0x7396 023791 fetcht 2 ,mem_temp_led_on_time 
+0x7397 023792 storet 2 ,mem_led_light_time 
+0x7398 023793 fetcht 2 ,mem_temp_led_off_time 
+0x7399 023794 storet 2 ,mem_led_dark_time 
+0x739a 023795 fetcht 1 ,mem_temp_blink_count 
+0x739b 023796 storet 1 ,mem_led_blink_count 
+0x739c 023798 call ui_led_blink_stop 
+0x739d 023799 fetcht 1 ,mem_temp_led_pin 
+0x739e 023800 storet 1 ,mem_led_gpio 
+0x739f 023801 fetch 1 ,mem_temp_led_type 
+0x73a0 023802 beq led_off ,shutter_ui_led_send_end 
+0x73a1 023803 beq led_on ,ui_led_on 
+0x73a2 023804 beq led_blink ,ui_led_blink_start1 
+:      023805 shutter_ui_led_send_end:
+0x73a3 023806 rtn 
+:      023808 shutter_ui_led_off:
+0x73a4 023809 branch ui_led_blink_stop 
+:      023812 shutter_key_init:
+0x73a5 023813 fetch 1 ,mem_shutter_key_num 
+0x73a6 023814 rtn blank 
+0x73a7 023815 copy pdata ,loopcnt 
+0x73a8 023816 setarg mem_key_conf0_pin 
+0x73a9 023817 copy pdata ,rega 
+:      023818 shutter_key_lp1:
+0x73aa 023819 ifetcht 1 ,rega 
+0x73ab 023820 call gpio_config_input 
+0x73ac 023821 increase key_conf_struct_len ,rega 
+0x73ad 023822 loop shutter_key_lp1 
+:      023823 shutter_key_init_end:
+0x73ae 023824 rtn 
+:      023827 shutter_shutter_scan_key:
+0x73af 023830 arg mem_key_conf0_pin ,rega 
+0x73b0 023831 force 0 ,regb 
+0x73b1 023832 jam 0 ,mem_key_value_temp 
+:      023833 in_scan_key_lp1:
+0x73b2 023834 ifetcht 1 ,rega 
+0x73b3 023835 call gpio_get_bit 
+0x73b4 023836 set1 mark_ext_patch ,mark 
+0x73b5 023837 bpatch patch3b_3 ,mem_patch3b 
+0x73b6 023838 fetch 2 ,mem_key_value_temp 
+0x73b7 023839 copy regb ,queue 
+0x73b8 023840 qsetflag true ,pdata 
+0x73b9 023841 store 2 ,mem_key_value_temp 
+0x73ba 023842 increase key_conf_struct_len ,rega 
+0x73bb 023843 increase 1 ,regb 
+0x73bc 023844 fetch 1 ,mem_shutter_key_num 
+0x73bd 023845 ixor regb ,null 
+0x73be 023846 nbranch in_scan_key_lp1 ,zero 
+0x73bf 023848 fetch 2 ,mem_key_value_temp 
+0x73c0 023849 fetcht 2 ,mem_key_value 
+0x73c1 023850 ixor temp ,null 
+0x73c2 023851 rtn zero 
+0x73c3 023852 enable user 
+0x73c4 023853 rtn 
+:      023855 shutter_le_key_process:
+0x73c5 023856 arg temp_timer ,queue 
+0x73c6 023857 call timer_check 
+0x73c7 023858 nrtn blank 
+0x73c8 023859 call shutter_le_packet_interval_set 
+0x73c9 023860 fetch 1 ,mem_enable_key_scan 
+0x73ca 023861 rtn blank 
+0x73cb 023862 disable user 
+0x73cc 023863 call shutter_le_process_lpm_before 
+0x73cd 023864 set1 mark_ext_patch ,mark 
+0x73ce 023865 bpatch patch3b_4 ,mem_patch3b 
+0x73cf 023866 fetch 1 ,mem_shutter_key_num 
+0x73d0 023867 rtn blank 
+0x73d1 023868 call shutter_shutter_scan_key 
+0x73d2 023869 nbranch lpm_button_clean_wake_lock ,user 
+0x73d3 023870 call lpm_button_get_wake_lock 
+0x73d4 023871 disable user 
+0x73d5 023872 fetch 2 ,mem_le_sleep_timeout 
+0x73d6 023873 store 2 ,mem_le_sleep_timeout_timer_count 
+0x73d7 023874 fetch 2 ,mem_ui_state_map 
+0x73d8 023875 bbit0 ui_state_ble_connected ,shutter_le_fast_advertise 
+0x73d9 023876 call shutter_shutter_cancel_key_shake 
+0x73da 023877 branch in_le_key_process_end ,positive 
+0x73db 023878 fetch 2 ,mem_key_value_temp 
+0x73dc 023879 store 2 ,mem_key_value_temp4 
+0x73dd 023880 jam 0 ,mem_key_value_temp6 
+0x73de 023881 force 0 ,queue 
+:      023883 shutter_le_key_lp1:
+0x73df 023884 set1 mark_ext_patch ,mark 
+0x73e0 023885 bpatch patch3b_5 ,mem_patch3b 
+0x73e1 023886 fetch 2 ,mem_key_value 
+0x73e2 023887 rshift pdata ,temp 
+0x73e3 023888 storet 2 ,mem_key_value 
+0x73e4 023889 and pdata ,0x01 ,pdata 
+0x73e5 023890 fetcht 2 ,mem_key_value_temp4 
+0x73e6 023891 and temp ,0x01 ,rega 
+0x73e7 023892 rshift temp ,temp 
+0x73e8 023893 storet 2 ,mem_key_value_temp4 
+0x73e9 023894 ixor rega ,null 
+0x73ea 023895 ncall shutter_le_send_key_data ,zero 
+0x73eb 023896 fetch 1 ,mem_shutter_key_num 
+0x73ec 023897 fetcht 1 ,mem_key_value_temp6 
+0x73ed 023898 increase 1 ,temp 
+0x73ee 023899 storet 1 ,mem_key_value_temp6 
+0x73ef 023900 copy temp ,queue 
+0x73f0 023901 ixor queue ,null 
+0x73f1 023903 nbranch shutter_le_key_lp1 ,zero 
+0x73f2 023904 fetch 2 ,mem_key_value_temp 
+0x73f3 023905 store 2 ,mem_key_value 
+0x73f4 023906 rtn 
+:      023907 in_le_key_process_end:
+0x73f5 023908 setarg 0 
+0x73f6 023909 store 2 ,mem_key_value_temp 
+0x73f7 023910 store 2 ,mem_key_value 
+0x73f8 023911 rtn 
+:      023915 shutter_le_send_key_data:
+0x73f9 023917 deposit rega 
+0x73fa 023918 branch in_le_key_is_release ,blank 
+0x73fb 023919 set1 mark_ext_patch ,mark 
+0x73fc 023920 bpatch patch3b_6 ,mem_patch3b 
+0x73fd 023921 copy queue ,pdata 
+0x73fe 023922 beq 0 ,in_le_send_key0_press 
+0x73ff 023923 beq 1 ,in_le_send_key1_press 
+0x7400 023924 beq 2 ,in_le_send_key2_press 
+0x7401 023925 beq 3 ,in_le_send_key3_press 
+0x7402 023926 beq 4 ,in_le_send_key4_press 
+0x7403 023927 beq 5 ,in_le_send_key5_press 
+:      023928 in_le_send_lable:
+0x7404 023929 fetch 1 ,mem_le_enc_state 
+0x7405 023930 rtnne flag_le_enc_end 
+0x7406 023931 fetch 1 ,mem_shutter_key_data_flag_1 
+0x7407 023932 nrtn blank 
+0x7408 023933 ifetch 1 ,temp 
+0x7409 023934 rtn blank 
+0x740a 023935 store 1 ,mem_key_packet_count 
+0x740b 023936 increase 1 ,temp 
+0x740c 023937 storet 2 ,mem_key_next_addr 
+:      023938 in_le_send_lp1:
+0x740d 023939 fetch 2 ,mem_key_next_addr 
+0x740e 023940 ifetcht 1 ,pdata 
+0x740f 023941 copy temp ,loopcnt 
+0x7410 023942 iadd temp ,temp 
+0x7411 023943 storet 2 ,mem_key_next_addr 
+0x7412 023944 copy pdata ,temp 
+0x7413 023945 call shutter_le_queue_put 
+0x7414 023946 fetch 1 ,mem_key_packet_count 
+0x7415 023947 increase -1 ,pdata 
+0x7416 023948 store 1 ,mem_key_packet_count 
+0x7417 023949 nbranch in_le_send_lp1 ,zero 
+0x7418 023950 branch shutter_le_send_packet 
+:      023953 in_le_key_is_release:
+0x7419 023954 set1 mark_ext_patch ,mark 
+0x741a 023955 bpatch patch3b_7 ,mem_patch3b 
+0x741b 023956 copy queue ,pdata 
+0x741c 023957 beq 0 ,in_le_send_key0_rel 
+0x741d 023958 beq 1 ,in_le_send_key1_rel 
+0x741e 023959 beq 2 ,in_le_send_key2_rel 
+0x741f 023960 beq 3 ,in_le_send_key3_rel 
+0x7420 023961 beq 4 ,in_le_send_key4_rel 
+0x7421 023962 beq 5 ,in_le_send_key5_rel 
+0x7422 023963 branch in_le_send_lable 
+:      023965 in_le_send_key0_press:
+0x7423 023966 fetch 1 ,mem_key_conf0_led 
+0x7424 023967 call shutter_le_key_led_index 
+0x7425 023968 arg mem_key0_press ,temp 
+0x7426 023969 branch in_le_send_lable 
+:      023970 in_le_send_key1_press:
+0x7427 023975 fetch 1 ,mem_key_conf1_led 
+0x7428 023976 call shutter_le_key_led_index 
+0x7429 023977 arg mem_key1_press ,temp 
+0x742a 023978 branch in_le_send_lable 
+:      023979 in_le_send_key2_press:
+0x742b 023980 fetch 1 ,mem_key_conf2_led 
+0x742c 023981 call shutter_le_key_led_index 
+0x742d 023982 arg mem_key2_press ,temp 
+0x742e 023983 branch in_le_send_lable 
+:      023984 in_le_send_key3_press:
+0x742f 023985 fetch 1 ,mem_key_conf3_led 
+0x7430 023986 call shutter_le_key_led_index 
+0x7431 023987 arg mem_key3_press ,temp 
+0x7432 023988 branch in_le_send_lable 
+:      023989 in_le_send_key4_press:
+0x7433 023990 fetch 1 ,mem_key_conf4_led 
+0x7434 023991 call shutter_le_key_led_index 
+0x7435 023992 arg mem_key4_press ,temp 
+0x7436 023993 branch in_le_send_lable 
+:      023994 in_le_send_key5_press:
+0x7437 023995 fetch 1 ,mem_key_conf5_led 
+0x7438 023996 call shutter_le_key_led_index 
+0x7439 023997 arg mem_key5_press ,temp 
+0x743a 023998 branch in_le_send_lable 
+:      024000 in_le_send_key0_rel:
+0x743b 024001 fetch 1 ,mem_key_conf0_led 
+0x743c 024002 call shutter_le_disble_key_led 
+0x743d 024003 arg mem_key0_release ,temp 
+0x743e 024004 branch in_le_send_lable 
+:      024005 in_le_send_key1_rel:
+0x743f 024010 fetch 1 ,mem_key_conf1_led 
+0x7440 024011 call shutter_le_disble_key_led 
+0x7441 024012 arg mem_key1_release ,temp 
+0x7442 024013 branch in_le_send_lable 
+:      024014 in_le_send_key2_rel:
+0x7443 024015 fetch 1 ,mem_key_conf2_led 
+0x7444 024016 call shutter_le_disble_key_led 
+0x7445 024017 arg mem_key2_release ,temp 
+0x7446 024018 branch in_le_send_lable 
+:      024019 in_le_send_key3_rel:
+0x7447 024020 fetch 1 ,mem_key_conf3_led 
+0x7448 024021 call shutter_le_disble_key_led 
+0x7449 024022 arg mem_key3_release ,temp 
+0x744a 024023 branch in_le_send_lable 
+:      024024 in_le_send_key4_rel:
+0x744b 024025 fetch 1 ,mem_key_conf4_led 
+0x744c 024026 call shutter_le_disble_key_led 
+0x744d 024027 arg mem_key4_release ,temp 
+0x744e 024028 branch in_le_send_lable 
+:      024029 in_le_send_key5_rel:
+0x744f 024030 fetch 1 ,mem_key_conf5_led 
+0x7450 024031 call shutter_le_disble_key_led 
+0x7451 024032 arg mem_key5_release ,temp 
+0x7452 024033 branch in_le_send_lable 
+:      024035 shutter_le_disble_key_led:
+0x7453 024036 compare led_on ,pdata ,0xff 
+0x7454 024037 rtn true 
+0x7455 024038 force 3 ,pdata 
+0x7456 024039 branch shutter_le_key_led_index 
+:      024043 shutter_le_key_led_index:
+0x7457 024044 beq 0 ,in_le_key_led_0 
+0x7458 024045 beq 1 ,in_le_key_led_1 
+0x7459 024046 beq 2 ,in_le_key_led_2 
+0x745a 024047 beq 3 ,in_le_key_led_3 
+:      024049 in_le_light_led:
+0x745b 024050 branch shutter_ui_led_send 
+:      024053 in_le_key_led_0:
+0x745c 024054 setarg mem_key_led_style_ind_0 
+0x745d 024055 branch shutter_ui_led_send 
+:      024056 in_le_key_led_1:
+0x745e 024057 setarg mem_key_led_style_ind_1 
+0x745f 024058 branch shutter_ui_led_send 
+:      024059 in_le_key_led_2:
+0x7460 024060 setarg mem_key_led_style_ind_2 
+0x7461 024061 branch shutter_ui_led_send 
+:      024062 in_le_key_led_3:
+0x7462 024063 setarg mem_key_led_style_ind_3 
+0x7463 024064 branch shutter_ui_led_send 
+:      024068 shutter_ui_power_timeout_timer:
+0x7464 024069 fetch 1 ,mem_power_timer 
+0x7465 024070 rtn blank 
+0x7466 024071 increase -1 ,pdata 
+0x7467 024072 store 1 ,mem_power_timer 
+0x7468 024073 nrtn blank 
+0x7469 024074 fetch 1 ,mem_shutter_powerup_flag 
+0x746a 024075 beq shutter_power_on ,shutter_le_soft_switch_power_on_signal 
+0x746b 024076 branch shutter_shutter_power_off_signal 
+:      024078 shutter_ui_button_timeout_timer:
+0x746c 024079 fetch 1 ,mem_shutter_button_timer 
+0x746d 024080 rtn blank 
+0x746e 024081 increase -1 ,pdata 
+0x746f 024082 store 1 ,mem_shutter_button_timer 
+0x7470 024083 nrtn blank 
+0x7471 024084 branch app_led_off 
+:      024086 shutter_shuuter_led_on:
+0x7472 024087 fetch 1 ,mem_shutter_button_timeout 
+0x7473 024088 store 1 ,mem_shutter_button_timer 
+0x7474 024089 branch app_led_on 
+:      024091 shutter_bb_event_button_up:
+0x7475 024095 fetch 1 ,mem_shutter_powerup_flag 
+0x7476 024096 beq shutter_power_on ,in_power_release 
+0x7477 024097 branch app_enter_hibernate 
+:      024098 in_power_release:
+0x7478 024099 jam 1 ,mem_enable_key_scan 
+0x7479 024100 rtn 
+:      024102 shutter_evt_button_long_pressed:
+0x747a 024104 fetch 1 ,mem_shutter_powerup_flag 
+0x747b 024105 beq shutter_power_on ,shutter_le_power_off 
+0x747c 024106 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x747d 024108 setarg mem_power_on_led_style 
+:      024109 shutter_shutter_power_on:
+:      024110 shutter_shutter_power_on_off:
+0x747e 024111 fetcht 1 ,mem_power_timeout 
+0x747f 024112 storet 1 ,mem_power_timer 
+0x7480 024113 branch shutter_ui_led_send 
+:      024115 shutter_le_power_off:
+0x7481 024117 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7482 024118 jam 0 ,mem_enable_key_scan 
+0x7483 024119 jam off ,mem_le_adv_enable 
+0x7484 024120 fetch 2 ,mem_ui_state_map 
+0x7485 024121 bbit0 ui_state_ble_connected ,shutter_shutter_power_off_end 
+0x7486 024122 call app_ble_disconnect 
+:      024123 shutter_shutter_power_off_end:
+0x7487 024124 jam off ,mem_le_adv_enable 
+0x7488 024125 setarg mem_powe_off_led_style 
+0x7489 024126 branch shutter_shutter_power_on_off 
+:      024128 shutter_shutter_power_off_signal:
+0x748a 024129 call shutter_ui_led_init 
+0x748b 024130 branch app_enter_hibernate 
+:      024133 shutter_le_process_lpm_before:
+0x748c 024134 fetch 1 ,mem_shutter_key_num 
+0x748d 024135 rtn blank 
+0x748e 024136 copy pdata ,loopcnt 
+0x748f 024137 setarg mem_key_conf0_pin 
+0x7490 024138 copy pdata ,rega 
+:      024139 in_shutter_process_lpm_before_lp1:
+0x7491 024140 ifetcht 1 ,rega 
+0x7492 024141 call gpio_set_wake_by_current_state 
+0x7493 024142 increase key_conf_struct_len ,rega 
+0x7494 024143 loop in_shutter_process_lpm_before_lp1 
+:      024144 shutter_le_process_lpm_before_end:
+0x7495 024145 rtn 
+:      024148 shutter_le_queue_init:
+0x7496 024149 jam 0 ,mem_queue_ele_num 
+0x7497 024150 setarg mem_queue_start 
+0x7498 024151 store 2 ,mem_queue_read 
+0x7499 024152 store 2 ,mem_queue_write 
+0x749a 024153 rtn 
+:      024156 shutter_le_queue_clear:
+0x749b 024157 branch shutter_le_queue_init 
+:      024161 shutter_le_queue_put:
+0x749c 024162 disable user 
+0x749d 024163 fetch 1 ,mem_queue_ele_num 
+0x749e 024164 compare queue_ele_count ,pdata ,0xff 
+0x749f 024165 rtn true 
+0x74a0 024167 enable user 
+0x74a1 024168 fetch 2 ,mem_queue_write 
+0x74a2 024169 copy pdata ,contw 
+0x74a3 024170 copy temp ,contr 
+0x74a4 024171 call memcpy 
+0x74a5 024173 fetch 1 ,mem_queue_ele_num 
+0x74a6 024174 increase 1 ,pdata 
+0x74a7 024175 store 1 ,mem_queue_ele_num 
+0x74a8 024177 setarg mem_queue_write 
+0x74a9 024178 call shutter_le_queue_increase 
+0x74aa 024179 rtn 
+:      024182 shutter_le_queue_increase:
+0x74ab 024183 copy pdata ,rega 
+0x74ac 024184 arg mem_queue_end ,temp 
+0x74ad 024185 ifetch 2 ,rega 
+0x74ae 024186 increase queue_ele_length ,pdata 
+0x74af 024187 isub temp ,null 
+0x74b0 024188 nbranch shutter_le_queue_put_end ,positive 
+0x74b1 024189 setarg mem_queue_start 
+:      024190 shutter_le_queue_put_end:
+0x74b2 024191 istore 2 ,rega 
+0x74b3 024192 rtn 
+:      024196 shutter_le_queue_get:
+0x74b4 024197 disable user 
+0x74b5 024198 fetch 1 ,mem_queue_ele_num 
+0x74b6 024199 rtn blank 
+0x74b7 024200 enable user 
+0x74b8 024201 fetch 1 ,mem_queue_ele_num 
+0x74b9 024202 increase -1 ,pdata 
+0x74ba 024203 store 1 ,mem_queue_ele_num 
+0x74bb 024205 fetch 2 ,mem_queue_read 
+0x74bc 024206 store 2 ,mem_queue_temp 
+0x74bd 024208 setarg mem_queue_read 
+0x74be 024209 call shutter_le_queue_increase 
+0x74bf 024210 fetch 2 ,mem_queue_temp 
+0x74c0 024211 rtn 
+:      024213 shutter_le_queue_read_point:
+0x74c1 024214 disable user 
+0x74c2 024215 fetch 1 ,mem_queue_ele_num 
+0x74c3 024216 rtn blank 
+0x74c4 024217 enable user 
+0x74c5 024218 fetch 2 ,mem_queue_read 
+0x74c6 024219 rtn 
+:      024221 shutter_le_packet_interval_set:
+0x74c7 024222 fetch 2 ,mem_packet_interval_set 
+0x74c8 024223 arg temp_timer ,queue 
+0x74c9 024224 branch timer_init 
+:      024226 shutter_le_send_packet:
+0x74ca 024235 call shutter_le_queue_read_point 
+0x74cb 024236 nrtn user 
+0x74cc 024237 disable user 
+0x74cd 024246 force 0x0013 ,temp 
+0x74ce 024247 storet 2 ,mem_le_notify_handle 
+0x74cf 024248 branch shutter_le_shutter_send_keydata 
+:      024250 shutter_le_shutter_send_keydata:
+0x74d0 024251 arg 2 ,loopcnt 
+0x74d1 024252 fetcht 2 ,mem_le_notify_handle 
+0x74d2 024253 arg mem_shutter_send_data ,contr 
+0x74d3 024254 call shutter_le_tx_notification 
+0x74d4 024260 rtn 
+:      024262 shutter_le_tx_indication:
+0x74d5 024263 jam attop_handle_value_indication ,mem_fifo_temp 
+0x74d6 024264 branch shutter_le_tx_common 
+:      024265 shutter_le_tx_notification:
+0x74d7 024266 call le_xtype_fifo_is_empty 
+0x74d8 024267 nrtn blank 
+0x74d9 024268 fetch 1 ,mem_shutter_key_data_flag 
+0x74da 024269 nrtn blank 
+0x74db 024270 jam attop_handle_value_notification ,mem_fifo_temp 
+:      024271 shutter_le_tx_common:
+0x74dc 024277 call le_xtype_fifo_in 
+0x74dd 024278 branch shutter_le_tx_buff_inuse 
+:      024280 shutter_shutter_cancel_key_shake:
+0x74de 024281 fetcht 4 ,mem_shutter_clkn_bt_last 
+0x74df 024282 deposit clkn_bt 
+0x74e0 024283 store 4 ,mem_shutter_clkn_bt_last 
+0x74e1 024284 isub temp ,pdata 
+0x74e2 024285 nrtn positive 
+0x74e3 024286 sub pdata ,20 ,pdata 
+0x74e4 024287 rtn 
+:      024289 shutter_le_send_att_handle_value_notification:
+0x74e5 024291 call shutter_le_queue_get 
+0x74e6 024292 nrtn user 
+0x74e7 024293 disable user 
+0x74e8 024294 copy pdata ,contr 
+0x74e9 024295 ifetcht 1 ,contr 
+0x74ea 024296 increase -3 ,temp 
+0x74eb 024297 copy temp ,loopcnt 
+0x74ec 024299 ifetcht 2 ,contr 
+0x74ed 024301 add loopcnt ,7 ,pdata 
+0x74ee 024302 store 1 ,mem_scale_tx_length 
+0x74ef 024303 arg mem_le_l2cap + 1 ,contw 
+0x74f0 024304 istoret 2 ,contw 
+0x74f1 024305 call memcpy 
+0x74f2 024306 fetcht 1 ,mem_scale_tx_length 
+0x74f3 024307 branch le_send_packet 
+:      024309 shutter_le_receive_data:
+0x74f4 024310 fetch 1 ,mem_le_att_opcode 
+0x74f5 024311 beq attop_write_request ,shutter_le_parse_att_write_request 
+0x74f6 024312 beq attop_write_command ,shutter_le_parse_att_write_command 
+0x74f7 024313 rtn 
+:      024314 shutter_le_parse_att_write_request:
+0x74f8 024315 fetch 2 ,mem_le_att_handle 
+0x74f9 024316 beq att_write_request_handle ,shutter_key_data_send 
+0x74fa 024317 rtn 
+:      024318 shutter_le_parse_att_write_command:
+:      024319 shutter_key_data_send:
+0x74fb 024320 jam 0 ,mem_shutter_key_data_flag 
+0x74fc 024321 rtn 
+:      024323 init_shutter_le_att_list:
+0x74fd 024324 arg mem_shutter_le_att_list ,contw 
+0x74fe 024325 setsect 0 ,0x20001 
+0x74ff 024326 setsect 1 ,0x20000 
+0x7500 024327 setsect 2 ,0x1022 
+0x7501 024328 setsect 3 ,0x860 
+0x7502 024329 istore 9 ,contw 
+0x7503 024330 setsect 0 ,0x30200 
+0x7504 024331 setsect 1 ,0x4a00 
+0x7505 024332 setsect 2 ,0x3200 
+0x7506 024333 setsect 3 ,0x800 
+0x7507 024334 istore 9 ,contw 
+0x7508 024335 setsect 0 ,0x12a05 
+0x7509 024336 setsect 1 ,0x10000 
+0x750a 024337 setsect 2 ,0x2000 
+0x750b 024338 setsect 3 ,0xa408 
+0x750c 024339 istore 9 ,contw 
+0x750d 024340 setsect 0 ,0x2 
+0x750e 024341 setsect 1 ,0x140 
+0x750f 024342 setsect 2 ,0x20 
+0x7510 024343 setsect 3 ,0x8a0 
+0x7511 024344 istore 9 ,contw 
+0x7512 024345 setsect 0 ,0x21800 
+0x7513 024346 setsect 1 ,0x8001 
+0x7514 024347 setsect 2 ,0x28030 
+0x7515 024348 setsect 3 ,0x804 
+0x7516 024349 istore 9 ,contw 
+0x7517 024350 setsect 0 ,0x20007 
+0x7518 024351 setsect 1 ,0x28000 
+0x7519 024352 setsect 2 ,0x3132 
+0x751a 024353 setsect 3 ,0x1a5a1 
+0x751b 024354 istore 9 ,contw 
+0x751c 024355 setsect 0 ,0x17370 
+0x751d 024356 setsect 1 ,0x35859 
+0x751e 024357 setsect 2 ,0xc422 
+0x751f 024358 setsect 3 ,0x8115 
+0x7520 024359 istore 9 ,contw 
+0x7521 024360 setsect 0 ,0x2020 
+0x7522 024361 setsect 1 ,0x808 
+0x7523 024362 setsect 2 ,0x20202 
+0x7524 024363 setsect 3 ,0x20 
+0x7525 024364 istore 9 ,contw 
+0x7526 024365 setsect 0 ,0x302 
+0x7527 024366 setsect 1 ,0x804a 
+0x7528 024367 setsect 2 ,0x90 
+0x7529 024368 setsect 3 ,0x408 
+0x752a 024369 istore 9 ,contw 
+0x752b 024370 setsect 0 ,0x22a 
+0x752c 024371 setsect 1 ,0x28032 
+0x752d 024372 setsect 2 ,0x2000 
+0x752e 024373 setsect 3 ,0xa00c 
+0x752f 024374 istore 9 ,contw 
+0x7530 024375 setsect 0 ,0x30201 
+0x7531 024376 setsect 1 ,0x8002 
+0x7532 024377 setsect 2 ,0x2a040 
+0x7533 024378 setsect 3 ,0x1820 
+0x7534 024379 istore 9 ,contw 
+0x7535 024380 setsect 0 ,0x600 
+0x7536 024381 setsect 1 ,0x1900 
+0x7537 024382 setsect 2 ,0x12c0 
+0x7538 024383 setsect 3 ,0x30 
+0x7539 024384 istore 9 ,contw 
+0x753a 024385 setsect 0 ,0x2 
+0x753b 024386 setsect 1 ,0x2808a 
+0x753c 024387 setsect 2 ,0xd180 
+0x753d 024388 setsect 3 ,0x800 
+0x753e 024389 istore 9 ,contw 
+0x753f 024390 setsect 0 ,0x12803 
+0x7540 024391 setsect 1 ,0x38080 
+0x7541 024392 setsect 2 ,0x2000 
+0x7542 024393 setsect 3 ,0xa940 
+0x7543 024394 istore 9 ,contw 
+0x7544 024395 setsect 0 ,0x20207 
+0x7545 024396 setsect 1 ,0x18922 
+0x7546 024397 setsect 2 ,0x1826 
+0x7547 024398 setsect 3 ,0x3c00 
+0x7548 024399 istore 9 ,contw 
+0x7549 024400 setsect 0 ,0x200 
+0x754a 024401 setsect 1 ,0x8a00 
+0x754b 024402 setsect 2 ,0x18120 
+0x754c 024403 setsect 3 ,0x40 
+0x754d 024404 istore 9 ,contw 
+0x754e 024405 setsect 0 ,0x302 
+0x754f 024406 setsect 1 ,0x1804a 
+0x7550 024407 setsect 2 ,0x110 
+0x7551 024408 setsect 3 ,0x13808 
+0x7552 024409 istore 9 ,contw 
+0x7553 024410 setarg 0x1012a 
+0x7554 024411 istore 3 ,contw 
+0x7555 024412 setsect 0 ,0x20012 
+0x7556 024413 setsect 1 ,0x200c0 
+0x7557 024414 setsect 2 ,0x12012 
+0x7558 024415 setsect 3 ,0x4c 
+0x7559 024416 istore 9 ,contw 
+0x755a 024417 setsect 0 ,0x24d02 
+0x755b 024418 setsect 1 ,0x8a 
+0x755c 024419 setsect 2 ,0x14280 
+0x755d 024420 setsect 3 ,0x800 
+0x755e 024421 istore 9 ,contw 
+0x755f 024422 setsect 0 ,0x22902 
+0x7560 024423 setsect 1 ,0x0 
+0x7561 024424 setsect 2 ,0x150 
+0x7562 024425 setsect 3 ,0x2008 
+0x7563 024426 istore 9 ,contw 
+0x7564 024427 setsect 0 ,0x20229 
+0x7565 024428 setsect 1 ,0x18040 
+0x7566 024429 setsect 2 ,0x2001 
+0x7567 024430 setsect 3 ,0xa00c 
+0x7568 024431 istore 9 ,contw 
+0x7569 024432 setsect 0 ,0x31201 
+0x756a 024433 setsect 1 ,0x8005 
+0x756b 024434 setsect 2 ,0x2a4d0 
+0x756c 024435 setsect 3 ,0x8 
+0x756d 024436 istore 9 ,contw 
+0x756e 024437 setsect 0 ,0x1828 
+0x756f 024438 setsect 1 ,0x8080 
+0x7570 024439 setsect 2 ,0x2290 
+0x7571 024440 setsect 3 ,0x0 
+0x7572 024441 istore 9 ,contw 
+0x7573 024442 setsect 0 ,0x20019 
+0x7574 024443 setsect 1 ,0x24200 
+0x7575 024444 setsect 2 ,0x3022 
+0x7576 024445 setsect 3 ,0x6804 
+0x7577 024446 istore 9 ,contw 
+0x7578 024447 setsect 0 ,0x30200 
+0x7579 024448 setsect 1 ,0x4a00 
+0x757a 024449 setsect 2 ,0x1b020 
+0x757b 024450 setsect 3 ,0x800 
+0x757c 024451 istore 9 ,contw 
+0x757d 024452 setsect 0 ,0x2a4b 
+0x757e 024453 setsect 1 ,0x30151 
+0x757f 024454 setsect 2 ,0x1090 
+0x7580 024455 setsect 3 ,0x684 
+0x7581 024456 istore 9 ,contw 
+0x7582 024457 setsect 0 ,0x10285 
+0x7583 024458 setsect 1 ,0x27a42 
+0x7584 024459 setsect 2 ,0x9ea0 
+0x7585 024460 setsect 3 ,0x2788 
+0x7586 024461 istore 9 ,contw 
+0x7587 024462 setsect 0 ,0x11530 
+0x7588 024463 setsect 1 ,0x30940 
+0x7589 024464 setsect 2 ,0x10750 
+0x758a 024465 setsect 3 ,0x654 
+0x758b 024466 istore 9 ,contw 
+0x758c 024467 setsect 0 ,0x81 
+0x758d 024468 setsect 1 ,0x4170 
+0x758e 024469 setsect 2 ,0x6090 
+0x758f 024470 setsect 3 ,0x684 
+0x7590 024471 istore 9 ,contw 
+0x7591 024472 setsect 0 ,0x10385 
+0x7592 024473 setsect 1 ,0x241c1 
+0x7593 024474 setsect 2 ,0x29e01 
+0x7594 024475 setsect 3 ,0x579c 
+0x7595 024476 istore 9 ,contw 
+0x7596 024477 setsect 0 ,0x12500 
+0x7597 024478 setsect 1 ,0x5d40 
+0x7598 024479 setsect 2 ,0x8950 
+0x7599 024480 setsect 3 ,0xa04 
+0x759a 024481 istore 9 ,contw 
+0x759b 024482 setsect 0 ,0x10875 
+0x759c 024483 setsect 1 ,0x14065 
+0x759d 024484 setsect 2 ,0x25001 
+0x759e 024485 setsect 3 ,0x17d0 
+0x759f 024486 istore 9 ,contw 
+0x75a0 024487 setsect 0 ,0x1907 
+0x75a1 024488 setsect 1 ,0x10a40 
+0x75a2 024489 setsect 2 ,0x81f 
+0x75a3 024490 setsect 3 ,0x300 
+0x75a4 024491 istore 8 ,contw 
+0x75a5 024492 setsect 0 ,0x2001c 
+0x75a6 024493 setsect 1 ,0x200c0 
+0x75a7 024494 setsect 2 ,0x2012 
+0x75a8 024495 setsect 3 ,0x74 
+0x75a9 024496 istore 9 ,contw 
+0x75aa 024497 setsect 0 ,0x24a02 
+0x75ab 024498 setsect 1 ,0x410a 
+0x75ac 024499 setsect 2 ,0x11 
+0x75ad 024500 setsect 3 ,0x7804 
+0x75ae 024501 istore 9 ,contw 
+0x75af 024502 setsect 0 ,0x30200 
+0x75b0 024503 setsect 1 ,0x4a00 
+0x75b1 024504 setsect 2 ,0x1f040 
+0x75b2 024505 setsect 3 ,0x800 
+0x75b3 024506 istore 9 ,contw 
+0x75b4 024507 setsect 0 ,0x12a4c 
+0x75b5 024508 setsect 1 ,0x0 
+0x75b6 024509 setsect 2 ,0x2002 
+0x75b7 024510 setsect 3 ,0xa000 
+0x75b8 024511 istore 9 ,contw 
+0x75b9 024512 setsect 0 ,0xf02 
+0x75ba 024513 setsect 1 ,0x846 
+0x75bb 024514 setsect 2 ,0x3020 
+0x75bc 024515 setsect 3 ,0x4a0 
+0x75bd 024516 istore 9 ,contw 
+0x75be 024517 setsect 0 ,0x2212 
+0x75bf 024518 setsect 1 ,0x24080 
+0x75c0 024519 setsect 2 ,0x12a1 
+0x75c1 024520 setsect 3 ,0x8c00 
+0x75c2 024521 istore 9 ,contw 
+0x75c3 024522 setsect 0 ,0x20200 
+0x75c4 024523 setsect 1 ,0x8a40 
+0x75c5 024524 setsect 2 ,0x0 
+0x75c6 024525 setsect 3 ,0x0 
+0x75c7 024526 istore 9 ,contw 
+0x75c8 024527 rtn 
+:      024529 shutter_init_param:
+0x75c9 024530 jam 1 ,mem_le_pres_auth 
+0x75ca 024531 jam 1 ,mem_le_flag 
+0x75cb 024532 jam 1 ,mem_le_pairing_mode 
+0x75cc 024533 setarg 0x1b 
+0x75cd 024534 store 2 ,mem_le_pairing_handle 
+0x75ce 024535 jam 1 ,mem_le_adv_direct_addr_type 
+0x75cf 024536 jam 3 ,mem_empty_count 
+0x75d0 024537 jam 0x50 ,mem_le_transmit_window 
+0x75d1 024539 jam 0x17 ,mem_le_local_mtu 
+0x75d2 024540 jam 0x17 ,mem_le_remote_mtu 
+0x75d3 024541 arg mem_le_pres ,contw 
+0x75d4 024542 setsect 0 ,0x302 
+0x75d5 024543 setsect 1 ,0x40 
+0x75d6 024544 setsect 2 ,0x1021 
+0x75d7 024545 setsect 3 ,0x0 
+0x75d8 024546 istore 7 ,contw 
+0x75d9 024547 arg mem_le_interal_min ,contw 
+0x75da 024548 setsect 0 ,0x8 
+0x75db 024549 setsect 1 ,0x4 
+0x75dc 024550 setsect 2 ,0x2c000 
+0x75dd 024551 setsect 3 ,0x4 
+0x75de 024552 istore 8 ,contw 
+0x75df 024553 rtn 
+:      024557 publickey_init:
+0x75e0 024558 fetch 1 ,mem_ssp_enable 
+0x75e1 024559 nbranch sp_initialize ,blank 
+0x75e2 024560 branch sp_initialize_256 
+:      024562 publickey_calc:
+0x75e3 024563 set1 mark_ext_patch ,mark 
+0x75e4 024564 bpatch patch3c_0 ,mem_patch3c 
+0x75e5 024565 fetch 1 ,mem_ssp_enable 
+0x75e6 024566 rtn blank 
+0x75e7 024567 fetch 1 ,mem_sp_local_key_invalid 
+0x75e8 024568 rtnne sp_key_valid 
+0x75e9 024569 fetch 1 ,mem_le_secure_connect_enable 
+0x75ea 024570 rtn blank 
+0x75eb 024571 fetch 1 ,mem_le_sc_local_key_invalid 
+0x75ec 024572 rtneq sp_key_valid_256 
+0x75ed 024573 fetch 2 ,mem_ui_state_map 
+0x75ee 024574 bbit1 ui_state_bt_connected ,stop_publickey_calc_256 
+0x75ef 024575 fetch 1 ,mem_le_sc_calc 
+0x75f0 024576 beq sp_calc_standby ,sp_initialize_256 
+0x75f1 024577 rtn 
+:      024578 stop_publickey_calc_256:
+0x75f2 024579 jam sp_calc_standby ,mem_le_sc_calc 
+0x75f3 024580 rtn 
+:      024583 sp_initialize:
+0x75f4 024584 set1 mark_ext_patch ,mark 
+0x75f5 024585 bpatch patch3c_1 ,mem_patch3c 
+0x75f6 024586 fetch 1 ,mem_ssp_enable 
+0x75f7 024587 branch ssp_disable ,blank 
+0x75f8 024588 call ssp_enable 
+0x75f9 024589 call sp_clear_flags 
+0x75fa 024590 branch sp_pubkey_calc 
+:      024592 sp_clear_flags:
+0x75fb 024593 setarg 0 
+0x75fc 024594 store 8 ,mem_sp_state_start 
+0x75fd 024595 store 4 ,mem_sp_flag_start 
+0x75fe 024596 store 7 ,mem_sp_iocap_remote 
+0x75ff 024597 rtn 
+:      024599 sp_generate_local_key:
+0x7600 024600 jam sp_flag_commit ,mem_sp_flag 
+0x7601 024601 branch sp_generate_local_key0 
+:      024602 sp_master_generate_local_key:
+0x7602 024603 fetch 1 ,mem_sp_local_key_invalid 
+0x7603 024604 beq sp_key_valid ,sp_dhkey_calc 
+0x7604 024605 branch assert 
+:      024606 sp_generate_local_key0:
+0x7605 024607 fetch 1 ,mem_sp_local_key_invalid 
+0x7606 024608 beq sp_key_valid ,sp_start_send_pubkey 
+0x7607 024609 branch sp_pubkey_calc 
+:      024611 sp_start_send_pubkey:
+0x7608 024612 call sp_dhkey_calc 
+0x7609 024613 fetch 1 ,mem_master_sp_state 
+0x760a 024614 nrtn blank 
+0x760b 024615 jam sp_stat_key_send ,mem_sp_state 
+0x760c 024616 rtn 
+:      024618 sp_calculate_commitment:
+0x760d 024619 fetch 1 ,mem_sp_calc 
+0x760e 024620 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+0x760f 024621 call sp_local_random_key_generator 
+0x7610 024622 arg mem_sp_prarm_stack ,contw 
+0x7611 024623 setarg mem_sp_random_local_end 
+0x7612 024624 istore 2 ,contw 
+0x7613 024625 setarg mem_sp_pubkey_local_x_end 
+0x7614 024626 istore 2 ,contw 
+0x7615 024627 setarg mem_sp_pubkey_remote_x_end 
+0x7616 024628 istore 2 ,contw 
+0x7617 024629 branch sp_calculate_commitment0 
+:      024630 master_sp_calculate_commitment:
+0x7618 024631 arg mem_sp_prarm_stack ,contw 
+0x7619 024632 setarg mem_sp_random_remote_end 
+0x761a 024633 istore 2 ,contw 
+0x761b 024634 setarg mem_sp_pubkey_remote_x_end 
+0x761c 024635 istore 2 ,contw 
+0x761d 024636 setarg mem_sp_pubkey_local_x_end 
+0x761e 024637 istore 2 ,contw 
+:      024638 sp_calculate_commitment0:
+0x761f 024639 call function_f1 
+0x7620 024640 fetch 1 ,mem_master_sp_state 
+0x7621 024641 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+0x7622 024642 jam sp_flag_commit ,mem_sp_flag 
+0x7623 024643 jam sp_stat_commit_send ,mem_sp_state 
+0x7624 024644 rtn 
+:      024645 master_sp_calculate_commitment0:
+0x7625 024646 jam sp_stat_commitment_compare ,mem_master_sp_state 
+0x7626 024647 call sp_master_generate_local_key 
+0x7627 024648 branch master_set_mem_master_sp_flag 
+:      024650 sp_local_random_key_generator:
+0x7628 024651 arg mem_sp_random_local ,contw 
+0x7629 024652 force 8 ,queue 
+0x762a 024653 branch random_generator 
+:      024655 sp_calculate_commitment_wait_dhkey_calc:
+0x762b 024656 jam sp_flag_commit ,mem_sp_flag 
+0x762c 024657 rtn 
+:      024659 sp_confirm_check:
+0x762d 024661 set1 mark_ext_patch ,mark 
+0x762e 024662 bpatch patch3c_2 ,mem_patch3c 
+0x762f 024663 arg mem_addr_value ,contw 
+0x7630 024664 fetch 6 ,mem_lap 
+0x7631 024665 istore 6 ,contw 
+0x7632 024666 fetch 6 ,mem_plap 
+0x7633 024667 istore 6 ,contw 
+0x7634 024668 fetch 3 ,mem_sp_iocap_remote 
+0x7635 024669 istore 3 ,contw 
+0x7636 024671 call function_f3a 
+0x7637 024673 arg mem_sp_calc_result_high ,rega 
+0x7638 024674 arg mem_sp_check_result ,regb 
+0x7639 024675 force 4 ,queue 
+0x763a 024676 call compare4 
+0x763b 024677 nbranch sp_confirm_check_failed ,true 
+0x763c 024679 call sp_confirm_check_success 
+0x763d 024680 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x763e 024681 branch tid_set_reply 
+:      024683 sp_confirm_check_success:
+0x763f 024684 fetch 1 ,mem_master_sp_state 
+0x7640 024685 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+0x7641 024686 jam sp_stat_confirm_calc ,mem_sp_state 
+0x7642 024687 jam sp_flag_commit ,mem_sp_flag 
+0x7643 024688 jam lmp_accepted ,mem_lmo_opcode2 
+0x7644 024689 rtn 
+:      024690 sp_confirm_check_success_master:
+0x7645 024691 jam lmp_accepted ,mem_lmo_opcode2 
+0x7646 024692 jam sp_state_end ,mem_master_sp_state 
+0x7647 024693 branch master_set_mem_master_sp_flag 
+:      024696 sp_confirm_check_failed:
+0x7648 024697 fetch 1 ,mem_master_sp_state 
+0x7649 024698 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+0x764a 024699 jam sp_stat_null ,mem_sp_state 
+0x764b 024700 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764c 024702 jam authentication_failure_error ,mem_lmo_reason2 
+0x764d 024703 rtn 
+:      024704 sp_confirm_check_failed_master:
+0x764e 024705 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764f 024706 jam sp_stat_null ,mem_master_sp_state 
+0x7650 024707 rtn 
+:      024709 sp_confirm_calc:
+0x7651 024710 fetch 1 ,mem_sp_dh_ready 
+0x7652 024711 beq sp_flag_commit ,sp_confirm_calc_ready 
+0x7653 024712 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x7654 024713 branch master_set_mem_master_sp_flag 
+:      024714 sp_confirm_calc_ready:
+0x7655 024715 arg mem_addr_value ,contw 
+0x7656 024716 fetch 6 ,mem_plap 
+0x7657 024717 istore 6 ,contw 
+0x7658 024718 fetch 6 ,mem_lap 
+0x7659 024719 istore 6 ,contw 
+0x765a 024720 fetch 3 ,mem_sp_iocap_local 
+0x765b 024721 istore 3 ,contw 
+0x765c 024723 call function_f3b 
+0x765d 024724 fetch 1 ,mem_master_sp_state 
+0x765e 024725 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+0x765f 024726 jam sp_stat_confirm_send ,mem_sp_state 
+0x7660 024727 jam sp_flag_commit ,mem_sp_flag 
+0x7661 024728 rtn 
+:      024729 sp_confirm_calc_master:
+0x7662 024730 jam sp_stat_confirm_send ,mem_master_sp_state 
+0x7663 024731 jam sp_flag_commit ,mem_master_sp_flag 
+0x7664 024732 rtn 
+:      024734 sp_master_key_prarm_push:
+0x7665 024735 arg mem_sp_prarm_stack ,contw 
+0x7666 024736 fetch 6 ,mem_plap 
+0x7667 024737 istore 6 ,contw 
+0x7668 024738 fetch 6 ,mem_lap 
+0x7669 024739 istore 6 ,contw 
+0x766a 024740 setarg mem_sp_random_local_end 
+0x766b 024741 istore 2 ,contw 
+0x766c 024742 setarg mem_sp_random_remote_end 
+0x766d 024743 istore 2 ,contw 
+0x766e 024744 branch sp_link_key_calc 
+:      024745 sp_link_key_prarm_push:
+0x766f 024746 jam sp_stat_done ,mem_sp_state 
+0x7670 024747 arg mem_sp_prarm_stack ,contw 
+0x7671 024748 fetch 6 ,mem_lap 
+0x7672 024749 istore 6 ,contw 
+0x7673 024750 fetch 6 ,mem_plap 
+0x7674 024751 istore 6 ,contw 
+0x7675 024752 setarg mem_sp_random_remote_end 
+0x7676 024753 istore 2 ,contw 
+0x7677 024754 setarg mem_sp_random_local_end 
+0x7678 024755 istore 2 ,contw 
+:      024756 sp_link_key_calc:
+0x7679 024758 arg mem_addr_value ,contw 
+0x767a 024759 fetch 6 ,mem_sp_prarm_stack 
+0x767b 024760 istore 6 ,contw 
+0x767c 024761 fetch 6 ,mem_sp_prarm_stack + 6 
+0x767d 024762 istore 6 ,contw 
+0x767e 024764 call function_f2 
+0x767f 024767 jam 1 ,mem_link_key_exists 
+0x7680 024768 arg mem_link_key ,contw 
+0x7681 024769 arg mem_sp_calc_result_high ,contr 
+0x7682 024770 call memcpy16 
+0x7683 024771 branch generate_linkkey_continue 
+:      024774 sp_pubkey_calc:
+0x7684 024775 set1 mark_ext_patch ,mark 
+0x7685 024776 bpatch patch3c_3 ,mem_patch3c 
+0x7686 024777 fetch 1 ,mem_sp_local_key_invalid 
+0x7687 024778 rtnne sp_key_invalid 
+0x7688 024779 fetch 1 ,mem_sp_calc 
+0x7689 024780 rtnne sp_calc_standby 
+0x768a 024781 arg mem_sp_private_key ,contw 
+0x768b 024782 force 11 ,queue 
+0x768c 024783 call random_generator 
+0x768d 024784 random pdata 
+0x768e 024785 rshift pdata ,pdata 
+0x768f 024786 istore 2 ,contw 
+0x7690 024788 arg mem_k ,contw 
+0x7691 024789 arg mem_sp_private_key ,contr 
+0x7692 024790 call memcpy24 
+0x7693 024792 arg mem_ax ,contw 
+0x7694 024793 arg mem_gx ,contr 
+0x7695 024794 call memcpy48 
+0x7696 024796 arg mem_az ,contw 
+0x7697 024797 call bn_zero 
+0x7698 024798 jam 1 ,mem_az 
+0x7699 024800 call eckp_calc_init 
+0x769a 024801 jam sp_calc_pubkey ,mem_sp_calc 
+0x769b 024802 rtn 
+:      024804 sp_pubkey_generated:
+0x769c 024805 arg mem_sp_pubkey_local ,contw 
+0x769d 024806 arg mem_bx ,contr 
+0x769e 024807 call memcpy48 
+0x769f 024808 jam sp_key_valid ,mem_sp_local_key_invalid 
+0x76a0 024809 jam sp_calc_standby ,mem_sp_calc 
+0x76a1 024810 rtn 
+:      024812 sp_dhkey_calc:
+0x76a2 024813 set1 mark_ext_patch ,mark 
+0x76a3 024814 bpatch patch3c_4 ,mem_patch3c 
+0x76a4 024815 fetch 1 ,mem_sp_dhkey_invalid 
+0x76a5 024816 rtnne sp_key_invalid 
+0x76a6 024817 fetch 1 ,mem_sp_calc 
+0x76a7 024818 rtnne sp_calc_standby 
+0x76a8 024820 arg mem_k ,contw 
+0x76a9 024821 arg mem_sp_private_key ,contr 
+0x76aa 024822 call memcpy24 
+0x76ab 024824 arg mem_ax ,contw 
+0x76ac 024825 arg mem_sp_pubkey_remote ,contr 
+0x76ad 024826 call memcpy48 
+0x76ae 024828 arg mem_az ,contw 
+0x76af 024829 call bn_zero 
+0x76b0 024830 jam 1 ,mem_az 
+0x76b1 024832 call eckp_calc_init 
+0x76b2 024833 jam sp_calc_dhkey ,mem_sp_calc 
+0x76b3 024834 rtn 
+:      024836 sp_dhkey_generated:
+0x76b4 024837 jam sp_flag_commit ,mem_sp_dh_ready 
+0x76b5 024838 arg mem_sp_dhkey ,contw 
+0x76b6 024839 arg mem_bx ,contr 
+0x76b7 024840 call memcpy24 
+0x76b8 024841 jam sp_key_valid ,mem_sp_dhkey_invalid 
+0x76b9 024842 jam sp_calc_standby ,mem_sp_calc 
+0x76ba 024843 rtn 
+:      024845 random_generator:
+0x76bb 024846 increase -1 ,queue 
+0x76bc 024847 nrtn positive 
+0x76bd 024848 random pdata 
+0x76be 024849 istore 2 ,contw 
+0x76bf 024850 branch random_generator 
+:      024851 compare4:
+0x76c0 024852 increase -1 ,queue 
+0x76c1 024853 nbranch compare4_success ,positive 
+0x76c2 024854 ifetch 4 ,rega 
+0x76c3 024855 copy pdata ,temp 
+0x76c4 024856 ifetch 4 ,regb 
+0x76c5 024857 iflip temp ,pdata 
+0x76c6 024858 nbranch compare4_failed ,zero 
+0x76c7 024859 increase 4 ,rega 
+0x76c8 024860 increase 4 ,regb 
+0x76c9 024861 branch compare4 
+:      024862 compare4_failed:
+0x76ca 024863 disable true 
+0x76cb 024864 rtn 
+:      024865 compare4_success:
+0x76cc 024866 enable true 
+0x76cd 024867 rtn 
+:      024874 simple_pairing_sequence:
+0x76ce 024875 set1 mark_ext_patch ,mark 
+0x76cf 024876 bpatch patch3c_5 ,mem_patch3c 
+0x76d0 024877 fetch 1 ,mem_sp_flag 
+0x76d1 024878 rtn blank 
+0x76d2 024879 call lmo_fifo_check 
+0x76d3 024880 nrtn blank 
+0x76d4 024881 jam sp_flag_standby ,mem_sp_flag 
+0x76d5 024882 fetch 1 ,mem_sp_state 
+0x76d6 024883 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+0x76d7 024884 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+0x76d8 024885 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+0x76d9 024886 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+0x76da 024887 beq sp_stat_key_generate ,sp_generate_local_key 
+0x76db 024888 beq sp_stat_commit_calc ,sp_calculate_commitment 
+0x76dc 024889 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76dd 024890 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76de 024891 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+0x76df 024893 rtn 
+:      024895 master_simple_paring_sequence:
+0x76e0 024896 set1 mark_ext_patch ,mark 
+0x76e1 024897 bpatch patch3c_6 ,mem_patch3c 
+0x76e2 024898 fetch 1 ,mem_master_sp_flag 
+0x76e3 024899 rtn blank 
+0x76e4 024900 call lmo_fifo_check 
+0x76e5 024901 nrtn blank 
+0x76e6 024902 jam sp_flag_standby ,mem_master_sp_flag 
+0x76e7 024903 fetch 1 ,mem_master_sp_state 
+0x76e8 024904 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+0x76e9 024905 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+0x76ea 024906 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+0x76eb 024907 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+0x76ec 024908 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+0x76ed 024909 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+0x76ee 024910 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76ef 024911 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+0x76f0 024912 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76f1 024913 beq sp_state_end ,master_sp_sm_end 
+0x76f2 024914 rtn 
+:      024916 master_set_mem_master_sp_flag:
+0x76f3 024917 jam sp_flag_commit ,mem_master_sp_flag 
+0x76f4 024918 rtn 
+:      024920 master_clear_mem_master_sp_flag:
+0x76f5 024921 jam sp_flag_standby ,mem_master_sp_flag 
+0x76f6 024922 rtn 
+:      024923 sp_calc_sequence:
+0x76f7 024924 set1 mark_ext_patch ,mark 
+0x76f8 024925 bpatch patch3c_7 ,mem_patch3c 
+0x76f9 024926 fetch 1 ,mem_ssp_enable 
+0x76fa 024927 rtn blank 
+0x76fb 024928 fetch 1 ,mem_sp_calc 
+0x76fc 024929 rtn blank 
+0x76fd 024930 increase 0x80 ,pdata 
+0x76fe 024931 store 1 ,mem_sp_calc 
+0x76ff 024932 rtnbit1 7 
+0x7700 024933 fetch 1 ,mem_ec_loopc 
+0x7701 024934 branch sp_calc_sequence_done ,blank 
+0x7702 024935 branch eckp_calc 
+:      024937 sp_calc_sequence_done:
+0x7703 024938 call ecunmapz 
+0x7704 024939 fetch 1 ,mem_sp_calc 
+0x7705 024940 beq sp_calc_pubkey ,sp_pubkey_generated 
+0x7706 024941 beq sp_calc_dhkey ,sp_dhkey_generated 
+0x7707 024942 rtn 
+:      024945 bn_testbit:
+0x7708 024946 and pdata ,7 ,queue 
+0x7709 024947 rshift3 pdata ,pdata 
+0x770a 024948 iadd contr ,contr 
+0x770b 024949 ifetch 1 ,contr 
+0x770c 024950 qisolate0 pdata 
+0x770d 024951 rtn 
+:      024954 ec_copy:
+0x770e 024955 call memcpy24 
+0x770f 024956 call memcpy24 
+0x7710 024957 branch memcpy24 
+:      024960 bn_eq_zero:
+0x7711 024961 ifetch 8 ,contr 
+0x7712 024962 nrtn blank 
+0x7713 024963 ifetch 8 ,contr 
+0x7714 024964 nrtn blank 
+0x7715 024965 ifetch 8 ,contr 
+0x7716 024966 rtn 
+:      024971 bn_eq_0:
+0x7717 024972 ifetch 4 ,rega 
+0x7718 024973 iforce temp 
+0x7719 024974 ifetch 4 ,regb 
+0x771a 024975 isub temp ,null 
+0x771b 024976 nrtn zero 
+0x771c 024977 increase 4 ,rega 
+0x771d 024978 increase 4 ,regb 
+0x771e 024979 loop bn_eq_0 
+0x771f 024980 rtn 
+:      024983 bn_bigeq:
+0x7720 024984 force 6 ,loopcnt 
+0x7721 024985 increase 20 ,rega 
+0x7722 024986 increase 20 ,regb 
+:      024987 bn_bigeq_0:
+0x7723 024988 ifetch 4 ,regb 
+0x7724 024989 iforce temp 
+0x7725 024990 ifetch 4 ,rega 
+0x7726 024991 isub temp ,pdata 
+0x7727 024992 nrtn positive 
+0x7728 024993 nrtn blank 
+0x7729 024994 increase -4 ,rega 
+0x772a 024995 increase -4 ,regb 
+0x772b 024996 loop bn_bigeq_0 
+0x772c 024997 rtn 
+:      024999 bn_add:
+0x772d 025000 force 6 ,loopcnt 
+0x772e 025001 force 0 ,regc 
+:      025002 bn_add_0:
+0x772f 025003 ifetch 4 ,rega 
+0x7730 025004 iforce temp 
+0x7731 025005 ifetch 4 ,regb 
+0x7732 025006 iadd temp ,pdata 
+0x7733 025007 iadd regc ,pdata 
+0x7734 025008 istore 4 ,contw 
+0x7735 025009 isolate1 32 ,pdata 
+0x7736 025010 setflag true ,0 ,regc 
+0x7737 025011 increase 4 ,rega 
+0x7738 025012 increase 4 ,regb 
+0x7739 025013 loop bn_add_0 
+0x773a 025014 rtn 
+:      025016 bn_sub:
+0x773b 025017 force 6 ,loopcnt 
+0x773c 025018 force 0 ,regc 
+:      025019 bn_sub_0:
+0x773d 025020 ifetch 4 ,regb 
+0x773e 025021 iforce temp 
+0x773f 025022 ifetch 4 ,rega 
+0x7740 025023 isub temp ,pdata 
+0x7741 025024 isub regc ,pdata 
+0x7742 025025 istore 4 ,contw 
+0x7743 025026 isolate1 32 ,pdata 
+0x7744 025027 setflag true ,0 ,regc 
+0x7745 025028 increase 4 ,rega 
+0x7746 025029 increase 4 ,regb 
+0x7747 025030 loop bn_sub_0 
+0x7748 025031 rtn 
+:      025033 bn_rshift6:
+0x7749 025034 force 6 ,loopcnt 
+0x774a 025035 increase 20 ,rega 
+:      025036 bn_rshift:
+0x774b 025037 force 0 ,regc 
+:      025038 bn_rshift_0:
+0x774c 025039 ifetch 4 ,rega 
+0x774d 025040 isolate1 0 ,pdata 
+0x774e 025041 setflag true ,1 ,regc 
+0x774f 025042 rshift pdata ,pdata 
+0x7750 025043 isolate1 0 ,regc 
+0x7751 025044 setflag true ,31 ,pdata 
+0x7752 025045 istore 4 ,rega 
+0x7753 025046 increase -4 ,rega 
+0x7754 025047 rshift regc ,regc 
+0x7755 025048 loop bn_rshift_0 
+0x7756 025049 rtn 
+:      025051 bn_lshift:
+0x7757 025052 force 6 ,loopcnt 
+0x7758 025053 force 0 ,regc 
+:      025054 bn_lshift_0:
+0x7759 025055 ifetch 4 ,rega 
+0x775a 025056 isolate1 31 ,pdata 
+0x775b 025057 setflag true ,1 ,regc 
+0x775c 025058 lshift pdata ,pdata 
+0x775d 025059 isolate1 0 ,regc 
+0x775e 025060 setflag true ,0 ,pdata 
+0x775f 025061 istore 4 ,rega 
+0x7760 025062 increase 4 ,rega 
+0x7761 025063 rshift regc ,regc 
+0x7762 025064 loop bn_lshift_0 
+0x7763 025065 rtn 
+:      025067 bn_lshiftmod:
+0x7764 025068 call bn_lshift 
+:      025069 bn_lshiftmod_ismod:
+0x7765 025070 isolate1 0 ,regc 
+0x7766 025071 branch bn_lshiftmod_0 ,true 
+0x7767 025072 arg mem_p ,regb 
+0x7768 025073 copy rega ,regc 
+0x7769 025074 increase -24 ,rega 
+0x776a 025075 call bn_bigeq 
+0x776b 025076 nrtn positive 
+0x776c 025077 copy regc ,rega 
+:      025078 bn_lshiftmod_0:
+0x776d 025079 increase -24 ,rega 
+0x776e 025080 arg mem_p ,regb 
+0x776f 025081 copy rega ,contw 
+0x7770 025082 branch bn_sub 
+:      025085 bn_addmod:
+0x7771 025086 call bn_add 
+0x7772 025087 copy contw ,rega 
+0x7773 025088 branch bn_lshiftmod_ismod 
+:      025090 bn_submod:
+0x7774 025091 call bn_sub 
+0x7775 025092 isolate0 0 ,regc 
+0x7776 025093 rtn true 
+0x7777 025094 arg mem_p ,regb 
+0x7778 025095 add contw ,-24 ,rega 
+0x7779 025096 copy rega ,contw 
+0x777a 025097 branch bn_add 
+:      025100 bn_p192mod:
+0x777b 025101 copy contw ,timeup 
+0x777c 025102 copy rega ,alarm 
+0x777d 025103 arg mem_tmp2 ,regb 
+0x777e 025104 copy regb ,contw 
+0x777f 025105 add rega ,24 ,contr 
+0x7780 025106 ifetch 8 ,contr 
+0x7781 025107 istore 8 ,contw 
+0x7782 025108 istore 8 ,contw 
+0x7783 025109 force 0 ,pdata 
+0x7784 025110 istore 8 ,contw 
+0x7785 025111 copy timeup ,contw 
+0x7786 025112 call bn_addmod 
+0x7787 025113 arg mem_tmp2 ,regb 
+0x7788 025114 copy regb ,contw 
+0x7789 025115 force 0 ,pdata 
+0x778a 025116 istore 8 ,contw 
+0x778b 025117 add alarm ,32 ,contr 
+0x778c 025118 ifetch 8 ,contr 
+0x778d 025119 istore 8 ,contw 
+0x778e 025120 istore 8 ,contw 
+0x778f 025121 copy timeup ,rega 
+0x7790 025122 copy rega ,contw 
+0x7791 025123 call bn_addmod 
+0x7792 025124 arg mem_tmp2 ,regb 
+0x7793 025125 copy regb ,contw 
+0x7794 025126 add alarm ,40 ,contr 
+0x7795 025127 ifetch 8 ,contr 
+0x7796 025128 istore 8 ,contw 
+0x7797 025129 istore 8 ,contw 
+0x7798 025130 istore 8 ,contw 
+0x7799 025131 copy timeup ,rega 
+0x779a 025132 copy rega ,contw 
+0x779b 025133 branch bn_addmod 
+:      025136 bn_load:
+0x779c 025137 force 6 ,loopcnt 
+:      025138 bn_load_0:
+0x779d 025139 ifetch 4 ,contr 
+0x779e 025140 iforce regext 
+0x779f 025141 increase 1 ,regext_index 
+0x77a0 025142 loop bn_load_0 
+0x77a1 025143 rtn 
+:      025147 bn_mulmod:
+0x77a2 025148 copy contw ,timeup 
+0x77a3 025149 arg mem_tmp1 ,contw 
+0x77a4 025150 call bn_zero 
+0x77a5 025151 arg mem_tmp1 ,contw 
+0x77a6 025152 copy rega ,contr 
+0x77a7 025153 force 0 ,regext_index 
+0x77a8 025154 call bn_load 
+0x77a9 025155 copy regb ,contr 
+0x77aa 025156 call bn_load 
+0x77ab 025157 force 0 ,regb 
+:      025158 bn_mulmod_1:
+0x77ac 025159 force 0 ,temp 
+0x77ad 025160 force 6 ,regc 
+:      025161 bn_mulmod_0:
+0x77ae 025162 ifetch 4 ,contw 
+0x77af 025163 iforce rega 
+0x77b0 025164 copy regb ,regext_index 
+0x77b1 025165 deposit regext 
+0x77b2 025166 copy regc ,regext_index 
+0x77b3 025167 imul32 regext ,pdata 
+0x77b4 025168 iadd rega ,pdata 
+0x77b5 025169 iadd temp ,pdata 
+0x77b6 025170 istore 4 ,contw 
+0x77b7 025171 rshift32 pdata ,temp 
+0x77b8 025172 increase 1 ,regc 
+0x77b9 025173 compare 12 ,regc ,0xff 
+0x77ba 025174 nbranch bn_mulmod_0 ,true 
+0x77bb 025175 deposit temp 
+0x77bc 025176 istore 4 ,contw 
+0x77bd 025177 increase -24 ,contw 
+0x77be 025178 increase 1 ,regb 
+0x77bf 025179 compare 6 ,regb ,0xff 
+0x77c0 025180 nbranch bn_mulmod_1 ,true 
+0x77c1 025181 arg mem_tmp1 ,rega 
+0x77c2 025182 copy timeup ,contw 
+0x77c3 025183 branch bn_p192mod 
+:      025186 bn_sqrmod:
+0x77c4 025187 copy rega ,regb 
+0x77c5 025188 branch bn_mulmod 
+:      025190 bn_rshifteven:
+0x77c6 025191 copy rega ,alarm 
+:      025192 bn_rshifteven_1:
+0x77c7 025193 copy alarm ,rega 
+0x77c8 025194 ifetch 1 ,rega 
+0x77c9 025195 isolate1 0 ,pdata 
+0x77ca 025196 rtn true 
+0x77cb 025197 call bn_rshift6 
+0x77cc 025198 ifetch 1 ,regb 
+0x77cd 025199 isolate0 0 ,pdata 
+0x77ce 025200 branch bn_rshifteven_0 ,true 
+0x77cf 025201 arg mem_p ,rega 
+0x77d0 025202 copy regb ,contw 
+0x77d1 025203 call bn_add 
+0x77d2 025204 ifetch 1 ,regb 
+0x77d3 025205 iadd regc ,pdata 
+0x77d4 025206 istore 1 ,regb 
+0x77d5 025207 increase -24 ,regb 
+:      025208 bn_rshifteven_0:
+0x77d6 025209 add regb ,24 ,rega 
+0x77d7 025210 force 7 ,loopcnt 
+0x77d8 025211 call bn_rshift 
+0x77d9 025212 branch bn_rshifteven_1 
+:      025215 bn_invmod:
+0x77da 025216 copy contw ,timeup 
+0x77db 025217 arg mem_tmp0 ,contw 
+0x77dc 025218 call bn_zero 
+0x77dd 025219 force 0 ,pdata 
+0x77de 025220 store 4 ,mem_tmp5 
+0x77df 025221 store 4 ,mem_t2 
+0x77e0 025222 jam 1 ,mem_tmp0 
+0x77e1 025223 arg mem_tmp1 ,contw 
+0x77e2 025224 call bn_zero 
+0x77e3 025225 arg mem_p ,contr 
+0x77e4 025226 arg mem_tmp2 ,contw 
+0x77e5 025227 call memcpy24 
+0x77e6 025228 copy rega ,contr 
+0x77e7 025229 arg mem_tmp3 ,contw 
+0x77e8 025230 call memcpy24 
+:      025231 bn_invmod_2:
+0x77e9 025232 arg mem_tmp3 ,contr 
+0x77ea 025233 call bn_eq_zero 
+0x77eb 025234 branch bn_invmod_0 ,blank 
+0x77ec 025235 arg mem_tmp3 ,rega 
+0x77ed 025236 arg mem_tmp0 ,regb 
+0x77ee 025237 call bn_rshifteven 
+0x77ef 025239 arg mem_tmp2 ,rega 
+0x77f0 025240 arg mem_tmp1 ,regb 
+0x77f1 025241 call bn_rshifteven 
+0x77f2 025242 arg mem_tmp3 ,rega 
+0x77f3 025243 arg mem_tmp2 ,regb 
+0x77f4 025244 call bn_bigeq 
+0x77f5 025245 branch bn_invmod_1 ,positive 
+0x77f6 025246 arg mem_tmp2 ,rega 
+0x77f7 025247 arg mem_tmp3 ,regb 
+0x77f8 025248 copy rega ,contw 
+0x77f9 025249 call bn_sub 
+0x77fa 025250 arg mem_tmp0 ,rega 
+0x77fb 025251 arg mem_tmp1 ,regb 
+0x77fc 025252 copy regb ,contw 
+0x77fd 025253 call bn_add 
+0x77fe 025254 ifetch 1 ,rega 
+0x77ff 025255 iadd regc ,regc 
+0x7800 025256 ifetch 1 ,regb 
+0x7801 025257 iadd regc ,pdata 
+0x7802 025258 istore 1 ,regb 
+0x7803 025259 branch bn_invmod_2 
+:      025260 bn_invmod_1:
+0x7804 025261 arg mem_tmp3 ,rega 
+0x7805 025262 arg mem_tmp2 ,regb 
+0x7806 025263 copy rega ,contw 
+0x7807 025264 call bn_sub 
+0x7808 025265 arg mem_tmp1 ,rega 
+0x7809 025266 arg mem_tmp0 ,regb 
+0x780a 025267 copy regb ,contw 
+0x780b 025268 call bn_add 
+0x780c 025269 ifetch 1 ,rega 
+0x780d 025270 iadd regc ,regc 
+0x780e 025271 ifetch 1 ,regb 
+0x780f 025272 iadd regc ,pdata 
+0x7810 025273 istore 1 ,regb 
+0x7811 025274 branch bn_invmod_2 
+:      025275 bn_invmod_0:
+0x7812 025276 arg mem_tmp0 ,contw 
+0x7813 025277 call bn_zero 
+0x7814 025278 fetch 1 ,mem_tmp5 
+0x7815 025279 store 1 ,mem_tmp0 
+0x7816 025280 store 1 ,mem_tmp0a 
+0x7817 025281 arg mem_tmp0 ,rega 
+0x7818 025282 arg mem_tmp1 ,regb 
+0x7819 025283 copy regb ,contw 
+0x781a 025284 call bn_addmod 
+0x781b 025285 arg mem_p ,rega 
+0x781c 025286 arg mem_tmp1 ,regb 
+0x781d 025287 copy timeup ,contw 
+0x781e 025288 branch bn_submod 
+:      025293 ecdbl:
+0x781f 025294 arg mem_cz ,rega 
+0x7820 025295 arg mem_t2 ,contw 
+0x7821 025296 call bn_sqrmod 
+0x7822 025297 arg mem_t2 ,rega 
+0x7823 025298 arg mem_t3 ,contw 
+0x7824 025299 call bn_sqrmod 
+0x7825 025300 arg mem_a ,rega 
+0x7826 025301 arg mem_t3 ,regb 
+0x7827 025302 arg mem_t3 ,contw 
+0x7828 025303 call bn_mulmod 
+0x7829 025304 arg mem_cx ,rega 
+0x782a 025305 arg mem_t2 ,contw 
+0x782b 025306 call bn_sqrmod 
+0x782c 025307 arg mem_t2 ,contr 
+0x782d 025308 arg mem_t1 ,contw 
+0x782e 025309 call memcpy24 
+0x782f 025310 arg mem_t1 ,rega 
+0x7830 025311 call bn_lshiftmod 
+0x7831 025312 arg mem_t2 ,rega 
+0x7832 025313 arg mem_t1 ,regb 
+0x7833 025314 arg mem_t2 ,contw 
+0x7834 025315 call bn_addmod 
+0x7835 025316 arg mem_t2 ,rega 
+0x7836 025317 arg mem_t3 ,regb 
+0x7837 025318 arg mem_t2 ,contw 
+0x7838 025319 call bn_addmod 
+0x7839 025320 arg mem_cx ,contr 
+0x783a 025321 arg mem_t1 ,contw 
+0x783b 025322 call memcpy24 
+0x783c 025323 arg mem_cy ,rega 
+0x783d 025324 arg mem_t3 ,contw 
+0x783e 025325 call bn_sqrmod 
+0x783f 025326 arg mem_t1 ,rega 
+0x7840 025327 call bn_lshiftmod 
+0x7841 025328 arg mem_t1 ,rega 
+0x7842 025329 call bn_lshiftmod 
+0x7843 025330 arg mem_t1 ,rega 
+0x7844 025331 arg mem_t3 ,regb 
+0x7845 025332 arg mem_t1 ,contw 
+0x7846 025333 call bn_mulmod 
+0x7847 025334 arg mem_t3 ,rega 
+0x7848 025335 arg mem_t0 ,contw 
+0x7849 025336 call bn_sqrmod 
+0x784a 025337 arg mem_t0 ,rega 
+0x784b 025338 call bn_lshiftmod 
+0x784c 025339 arg mem_t0 ,rega 
+0x784d 025340 call bn_lshiftmod 
+0x784e 025341 arg mem_t0 ,rega 
+0x784f 025342 call bn_lshiftmod 
+0x7850 025343 arg mem_cy ,contr 
+0x7851 025344 arg mem_t3 ,contw 
+0x7852 025345 call memcpy24 
+0x7853 025346 arg mem_t3 ,rega 
+0x7854 025347 call bn_lshiftmod 
+0x7855 025348 arg mem_t3 ,rega 
+0x7856 025349 arg mem_cz ,regb 
+0x7857 025350 arg mem_cz ,contw 
+0x7858 025351 call bn_mulmod 
+0x7859 025352 arg mem_t2 ,rega 
+0x785a 025353 arg mem_t3 ,contw 
+0x785b 025354 call bn_sqrmod 
+0x785c 025355 arg mem_t3 ,rega 
+0x785d 025356 arg mem_t1 ,regb 
+0x785e 025357 arg mem_t3 ,contw 
+0x785f 025358 call bn_submod 
+0x7860 025359 arg mem_t3 ,rega 
+0x7861 025360 arg mem_t1 ,regb 
+0x7862 025361 arg mem_cx ,contw 
+0x7863 025362 call bn_submod 
+0x7864 025363 arg mem_t1 ,rega 
+0x7865 025364 arg mem_cx ,regb 
+0x7866 025365 arg mem_t3 ,contw 
+0x7867 025366 call bn_submod 
+0x7868 025367 arg mem_t3 ,rega 
+0x7869 025368 arg mem_t2 ,regb 
+0x786a 025369 arg mem_t3 ,contw 
+0x786b 025370 call bn_mulmod 
+0x786c 025371 arg mem_t3 ,rega 
+0x786d 025372 arg mem_t0 ,regb 
+0x786e 025373 arg mem_cy ,contw 
+0x786f 025374 branch bn_submod 
+:      025378 ecadd:
+0x7870 025379 arg mem_az ,rega 
+0x7871 025380 arg mem_t7 ,contw 
+0x7872 025381 call bn_sqrmod 
+0x7873 025382 arg mem_cx ,rega 
+0x7874 025383 arg mem_t7 ,regb 
+0x7875 025384 arg mem_t0 ,contw 
+0x7876 025385 call bn_mulmod 
+0x7877 025386 arg mem_az ,rega 
+0x7878 025387 arg mem_t7 ,regb 
+0x7879 025388 arg mem_t7 ,contw 
+0x787a 025389 call bn_mulmod 
+0x787b 025390 arg mem_cy ,rega 
+0x787c 025391 arg mem_t7 ,regb 
+0x787d 025392 arg mem_t1 ,contw 
+0x787e 025393 call bn_mulmod 
+0x787f 025394 arg mem_cz ,rega 
+0x7880 025395 arg mem_t7 ,contw 
+0x7881 025396 call bn_sqrmod 
+0x7882 025397 arg mem_ax ,rega 
+0x7883 025398 arg mem_t7 ,regb 
+0x7884 025399 arg mem_t2 ,contw 
+0x7885 025400 call bn_mulmod 
+0x7886 025401 arg mem_cz ,rega 
+0x7887 025402 arg mem_t7 ,regb 
+0x7888 025403 arg mem_t7 ,contw 
+0x7889 025404 call bn_mulmod 
+0x788a 025405 arg mem_ay ,rega 
+0x788b 025406 arg mem_t7 ,regb 
+0x788c 025407 arg mem_t3 ,contw 
+0x788d 025408 call bn_mulmod 
+0x788e 025409 arg mem_t0 ,rega 
+0x788f 025410 arg mem_t2 ,regb 
+0x7890 025411 arg mem_t7 ,contw 
+0x7891 025412 call bn_submod 
+0x7892 025413 arg mem_t0 ,rega 
+0x7893 025414 arg mem_t2 ,regb 
+0x7894 025415 arg mem_t0 ,contw 
+0x7895 025416 call bn_addmod 
+0x7896 025417 arg mem_t1 ,rega 
+0x7897 025418 arg mem_t3 ,regb 
+0x7898 025419 arg mem_t2 ,contw 
+0x7899 025420 call bn_submod 
+0x789a 025421 arg mem_t1 ,rega 
+0x789b 025422 arg mem_t3 ,regb 
+0x789c 025423 arg mem_t1 ,contw 
+0x789d 025424 call bn_addmod 
+0x789e 025425 arg mem_t1 ,rega 
+0x789f 025426 arg mem_t7 ,regb 
+0x78a0 025427 arg mem_t1 ,contw 
+0x78a1 025428 call bn_mulmod 
+0x78a2 025429 arg mem_cz ,rega 
+0x78a3 025430 arg mem_az ,regb 
+0x78a4 025431 arg mem_t3 ,contw 
+0x78a5 025432 call bn_mulmod 
+0x78a6 025433 arg mem_t3 ,rega 
+0x78a7 025434 arg mem_t7 ,regb 
+0x78a8 025435 arg mem_cz ,contw 
+0x78a9 025436 call bn_mulmod 
+0x78aa 025437 arg mem_t7 ,rega 
+0x78ab 025438 arg mem_t7 ,contw 
+0x78ac 025439 call bn_sqrmod 
+0x78ad 025440 arg mem_t7 ,rega 
+0x78ae 025441 arg mem_t0 ,regb 
+0x78af 025442 arg mem_t3 ,contw 
+0x78b0 025443 call bn_mulmod 
+0x78b1 025444 arg mem_t7 ,rega 
+0x78b2 025445 arg mem_t1 ,regb 
+0x78b3 025446 arg mem_t1 ,contw 
+0x78b4 025447 call bn_mulmod 
+0x78b5 025448 arg mem_t2 ,rega 
+0x78b6 025449 arg mem_cx ,contw 
+0x78b7 025450 call bn_sqrmod 
+0x78b8 025451 arg mem_cx ,rega 
+0x78b9 025452 arg mem_t3 ,regb 
+0x78ba 025453 arg mem_cx ,contw 
+0x78bb 025454 call bn_submod 
+0x78bc 025455 arg mem_cx ,contr 
+0x78bd 025456 arg mem_t7 ,contw 
+0x78be 025457 call memcpy24 
+0x78bf 025458 arg mem_t7 ,rega 
+0x78c0 025459 call bn_lshiftmod 
+0x78c1 025460 arg mem_t3 ,rega 
+0x78c2 025461 arg mem_t7 ,regb 
+0x78c3 025462 arg mem_t3 ,contw 
+0x78c4 025463 call bn_submod 
+0x78c5 025464 arg mem_t3 ,rega 
+0x78c6 025465 arg mem_t2 ,regb 
+0x78c7 025466 arg mem_t2 ,contw 
+0x78c8 025467 call bn_mulmod 
+0x78c9 025468 arg mem_t2 ,rega 
+0x78ca 025469 arg mem_t1 ,regb 
+0x78cb 025470 arg mem_cy ,contw 
+0x78cc 025471 call bn_submod 
+0x78cd 025472 arg mem_cy ,rega 
+0x78ce 025473 arg mem_p ,regb 
+0x78cf 025474 arg mem_cy ,contw 
+0x78d0 025475 force 0 ,regc 
+0x78d1 025476 fetch 1 ,mem_cy 
+0x78d2 025477 isolate1 0 ,pdata 
+0x78d3 025478 call bn_add ,true 
+0x78d4 025479 copy regc ,alarm 
+0x78d5 025480 arg mem_cy ,rega 
+0x78d6 025481 call bn_rshift6 
+0x78d7 025482 fetch 1 ,mem_cy5 
+0x78d8 025483 isolate1 0 ,alarm 
+0x78d9 025484 setflag true ,7 ,pdata 
+0x78da 025485 store 1 ,mem_cy5 
+0x78db 025486 rtn 
+:      025490 eckp_0:
+0x78dc 025491 fetch 1 ,mem_ec_loopc 
+0x78dd 025492 increase -1 ,pdata 
+0x78de 025493 nrtn positive 
+0x78df 025494 store 1 ,mem_ec_loopc 
+0x78e0 025495 fetch 1 ,mem_ec_infinite 
+0x78e1 025496 call ecdbl ,blank 
+0x78e2 025497 fetch 1 ,mem_ec_loopc 
+0x78e3 025498 arg mem_k ,contr 
+0x78e4 025499 call bn_testbit 
+0x78e5 025500 branch eckp_0 ,true 
+0x78e6 025501 fetch 1 ,mem_ec_infinite 
+0x78e7 025502 nbranch eckp_1 ,blank 
+0x78e8 025503 call ecadd 
+0x78e9 025504 branch eckp_0 
+:      025505 eckp_1:
+0x78ea 025506 jam 0 ,mem_ec_infinite 
+0x78eb 025507 arg mem_ax ,contr 
+0x78ec 025508 arg mem_cx ,contw 
+0x78ed 025509 call ec_copy 
+0x78ee 025510 branch eckp_0 
+:      025513 ecunmapz:
+0x78ef 025514 arg mem_cz ,rega 
+0x78f0 025515 arg mem_t3 ,contw 
+0x78f1 025516 call bn_invmod 
+0x78f2 025517 arg mem_t3 ,rega 
+0x78f3 025518 arg mem_t1 ,contw 
+0x78f4 025519 call bn_sqrmod 
+0x78f5 025520 arg mem_cx ,rega 
+0x78f6 025521 arg mem_t1 ,regb 
+0x78f7 025522 arg mem_bx ,contw 
+0x78f8 025523 call bn_mulmod 
+0x78f9 025524 arg mem_t3 ,rega 
+0x78fa 025525 arg mem_t1 ,regb 
+0x78fb 025526 arg mem_t2 ,contw 
+0x78fc 025527 call bn_mulmod 
+0x78fd 025528 arg mem_cy ,rega 
+0x78fe 025529 arg mem_t2 ,regb 
+0x78ff 025530 arg mem_by ,contw 
+0x7900 025531 branch bn_mulmod 
+:      025535 sha_endian_swap2:
+0x7901 025536 ifetch 4 ,contr 
+0x7902 025537 force 4 ,rega 
+0x7903 025538 increase 3 ,contw 
+:      025539 sha_endian_loop:
+0x7904 025540 istore 1 ,contw 
+0x7905 025541 rshift8 pdata ,pdata 
+0x7906 025542 increase -2 ,contw 
+0x7907 025543 increase -1 ,rega 
+0x7908 025544 nbranch sha_endian_loop ,zero 
+0x7909 025545 increase 5 ,contw 
+0x790a 025546 loop sha_endian_swap2 
+0x790b 025547 rtn 
+:      025550 sha_getw:
+0x790c 025551 lshift2 queue ,pdata 
+0x790d 025552 iadd timeup ,contr 
+0x790e 025553 ifetch 4 ,contr 
+0x790f 025554 rtn 
+:      025556 sha_r:
+0x7910 025557 force 16 ,alarm 
+0x7911 025558 arg memdat ,timeup 
+:      025559 sha_r_loop:
+0x7912 025560 add alarm ,-7 ,queue 
+0x7913 025561 call sha_getw 
+0x7914 025562 iforce temp 
+0x7915 025563 add alarm ,-16 ,queue 
+0x7916 025564 call sha_getw 
+0x7917 025565 iadd temp ,temp 
+0x7918 025566 add alarm ,-2 ,queue 
+0x7919 025567 call sha_getw 
+0x791a 025568 shasx pdata ,1 ,pdata 
+0x791b 025569 iadd temp ,temp 
+0x791c 025570 add alarm ,-15 ,queue 
+0x791d 025571 call sha_getw 
+0x791e 025572 shasx pdata ,0 ,pdata 
+0x791f 025573 iadd temp ,temp 
+0x7920 025574 lshift2 alarm ,pdata 
+0x7921 025575 iadd timeup ,contw 
+0x7922 025576 istoret 4 ,contw 
+0x7923 025577 increase 1 ,alarm 
+0x7924 025578 compare 64 ,alarm ,0xff 
+0x7925 025579 nbranch sha_r_loop ,true 
+0x7926 025580 rtn 
+:      025583 sha_init:
+0x7927 025584 arg memh0 ,contr 
+0x7928 025585 force 7 ,regext_index 
+:      025586 sha_init_0:
+0x7929 025587 ifetch 4 ,contr 
+0x792a 025588 iforce regext 
+0x792b 025589 increase -1 ,regext_index 
+0x792c 025590 branch sha_init_0 ,positive 
+0x792d 025591 rtn 
+:      025593 sha:
+0x792e 025594 set1 mark_ext_patch ,mark 
+0x792f 025595 bpatch patch3d_0 ,mem_patch3d 
+0x7930 025596 call sha_r 
+0x7931 025597 arg memahbak ,contw 
+0x7932 025598 force 0 ,regext_index 
+:      025599 sha_0:
+0x7933 025600 deposit regext 
+0x7934 025601 istore 4 ,contw 
+0x7935 025602 increase 1 ,regext_index 
+0x7936 025603 compare 8 ,regext_index ,0xff 
+0x7937 025604 nbranch sha_0 ,true 
+0x7938 025605 call enable_authrom 
+0x7939 025606 arg memk ,timeup 
+0x793a 025607 arg memdat ,alarm 
+0x793b 025608 force 64 ,loopcnt 
+:      025609 sha_loop:
+0x793c 025610 ifetcht 4 ,alarm 
+0x793d 025611 ifetch 4 ,timeup 
+0x793e 025612 increase 4 ,timeup 
+0x793f 025613 increase 4 ,alarm 
+0x7940 025614 iadd temp ,pdata 
+0x7941 025615 force 7 ,regext_index 
+0x7942 025616 iadd regext ,temp 
+0x7943 025617 force 4 ,regext_index 
+0x7944 025618 shasx regext ,3 ,pdata 
+0x7945 025619 iadd temp ,temp 
+0x7946 025620 force 5 ,regext_index 
+0x7947 025621 deposit regext 
+0x7948 025622 force 6 ,regext_index 
+0x7949 025623 ixor regext ,pdata 
+0x794a 025624 force 4 ,regext_index 
+0x794b 025625 iand regext ,pdata 
+0x794c 025626 force 6 ,regext_index 
+0x794d 025627 ixor regext ,pdata 
+0x794e 025628 iadd temp ,temp 
+0x794f 025629 force 7 ,regext_index 
+0x7950 025630 copy temp ,regext 
+0x7951 025631 force 3 ,regext_index 
+0x7952 025632 deposit regext 
+0x7953 025633 iadd temp ,regext 
+0x7954 025634 force 0 ,regext_index 
+0x7955 025635 deposit regext 
+0x7956 025636 force 1 ,regext_index 
+0x7957 025637 iand regext ,temp 
+0x7958 025638 ior regext ,pdata 
+0x7959 025639 force 2 ,regext_index 
+0x795a 025640 iand regext ,pdata 
+0x795b 025641 ior temp ,temp 
+0x795c 025642 force 0 ,regext_index 
+0x795d 025643 shasx regext ,2 ,pdata 
+0x795e 025644 iadd temp ,pdata 
+0x795f 025645 force 7 ,regext_index 
+0x7960 025646 iadd regext ,regext 
+0x7961 025647 regexrot 
+0x7962 025648 loop sha_loop 
+0x7963 025649 arg memahbak ,contr 
+0x7964 025650 force 0 ,regext_index 
+:      025651 sha_1:
+0x7965 025652 ifetch 4 ,contr 
+0x7966 025653 iadd regext ,regext 
+0x7967 025654 increase 1 ,regext_index 
+0x7968 025655 compare 8 ,regext_index ,0xff 
+0x7969 025656 nbranch sha_1 ,true 
+0x796a 025657 branch disable_authrom 
+:      025660 sha_result:
+0x796b 025661 arg memresult ,contw 
+0x796c 025662 force 7 ,regext_index 
+:      025663 sha_regext_save:
+0x796d 025664 deposit regext 
+0x796e 025665 istore 4 ,contw 
+0x796f 025666 increase -1 ,regext_index 
+0x7970 025667 branch sha_regext_save ,positive 
+0x7971 025668 rtn 
+:      025670 pad_xor:
+0x7972 025672 arg memdat ,contw 
+0x7973 025673 increase -4 ,contr 
+0x7974 025674 sub loopcnt ,16 ,rega 
+:      025675 pad_xor_0:
+0x7975 025676 ifetch 4 ,contr 
+0x7976 025677 ixor temp ,pdata 
+0x7977 025678 istore 4 ,contw 
+0x7978 025679 increase -8 ,contr 
+0x7979 025680 loop pad_xor_0 
+0x797a 025681 copy rega ,loopcnt 
+0x797b 025682 deposit temp 
+:      025683 pad_xor_1:
+0x797c 025684 istore 4 ,contw 
+0x797d 025685 loop pad_xor_1 
+0x797e 025686 rtn 
+:      025688 g_noninit_number_confirm:
+0x797f 025689 call g_noninit0 
+0x7980 025690 call sha_result 
+0x7981 025691 branch g_common0 
+:      025693 g_noninit:
+0x7982 025694 call g_noninit0 
+0x7983 025695 branch g_common0 
+:      025697 g_noninit0:
+0x7984 025698 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7985 025699 arg memdat ,contw 
+0x7986 025700 force 6 ,loopcnt 
+0x7987 025701 call memcpy_dword_swap 
+0x7988 025702 arg mem_sp_pubkey_local_x_end ,contr 
+0x7989 025703 force 6 ,loopcnt 
+0x798a 025704 call memcpy_dword_swap 
+0x798b 025705 arg mem_sp_random_remote_end ,contr 
+0x798c 025706 call memcpy_dword_swap4 
+0x798d 025707 call sha_init 
+0x798e 025708 call sha 
+0x798f 025709 arg mem_sp_random_local_end ,contr 
+0x7990 025710 arg memdat ,contw 
+0x7991 025711 branch g_common 
+:      025713 g_init:
+0x7992 025714 arg mem_sp_pubkey_local_x_end ,contr 
+0x7993 025715 arg memdat ,contw 
+0x7994 025716 force 6 ,loopcnt 
+0x7995 025717 call memcpy_dword_swap 
+0x7996 025718 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7997 025719 force 6 ,loopcnt 
+0x7998 025720 call memcpy_dword_swap 
+0x7999 025721 arg mem_sp_random_local_end ,contr 
+0x799a 025722 call memcpy_dword_swap4 
+0x799b 025723 call sha_init 
+0x799c 025724 call sha 
+0x799d 025725 arg mem_sp_random_remote_end ,contr 
+0x799e 025726 arg memdat ,contw 
+0x799f 025727 call g_common 
+0x79a0 025728 branch g_common0 
+:      025730 g_common:
+0x79a1 025731 call memcpy_dword_swap4 
+0x79a2 025732 setarg 0x800000 
+0x79a3 025733 lshift8 pdata ,pdata 
+0x79a4 025734 istore 4 ,contw 
+0x79a5 025735 force 5 ,loopcnt 
+0x79a6 025736 call memset0 
+0x79a7 025737 setarg 640 
+0x79a8 025738 istore 4 ,contw 
+0x79a9 025739 branch sha 
+:      025740 g_common0:
+0x79aa 025741 fetch 4 ,memresult 
+0x79ab 025743 arg 1000 ,rega 
+0x79ac 025744 idiv rega 
+0x79ad 025745 call wait_div_end 
+0x79ae 025746 remainder pdata 
+0x79af 025747 store 4 ,mem_gkey 
+0x79b0 025748 quotient pdata 
+0x79b1 025749 arg 1000 ,rega 
+0x79b2 025750 idiv rega 
+0x79b3 025751 call wait_div_end 
+0x79b4 025752 remainder pdata 
+0x79b5 025753 arg 1000 ,rega 
+0x79b6 025754 imul32 rega ,pdata 
+0x79b7 025755 fetcht 4 ,mem_gkey 
+0x79b8 025756 iadd temp ,pdata 
+0x79b9 025757 store 4 ,mem_gkey 
+0x79ba 025758 rtn 
+:      025760 function_f1_no_key:
+0x79bb 025761 jam 0 ,mem_passkey_1bit 
+0x79bc 025762 branch function_f1_common 
+:      025764 function_f1:
+0x79bd 025765 fetch 1 ,mem_ssp_mode_flag 
+0x79be 025766 bne ssp_mode_passkey_entry_flag ,function_f1_no_key 
+:      025767 function_f1_common:
+0x79bf 025768 set1 mark_ext_patch ,mark 
+0x79c0 025769 bpatch patch3d_1 ,mem_patch3d 
+0x79c1 025770 setarg 0x363636 
+0x79c2 025771 lshift8 pdata ,temp 
+0x79c3 025772 or_into 0x36 ,temp 
+0x79c4 025773 fetch 2 ,mem_sp_prarm_stack 
+0x79c5 025774 copy pdata ,contr 
+0x79c6 025775 force 4 ,loopcnt 
+0x79c7 025776 call pad_xor 
+0x79c8 025777 call sha_init 
+0x79c9 025778 call sha 
+0x79ca 025779 fetch 2 ,mem_sp_prarm_stack + 2 
+0x79cb 025780 copy pdata ,contr 
+0x79cc 025781 arg memdat ,contw 
+0x79cd 025782 force 6 ,loopcnt 
+0x79ce 025783 call memcpy_dword_swap 
+0x79cf 025784 fetch 2 ,mem_sp_prarm_stack + 4 
+0x79d0 025785 copy pdata ,contr 
+0x79d1 025786 force 6 ,loopcnt 
+0x79d2 025787 call memcpy_dword_swap 
+0x79d3 025788 setarg 0x800000 
+0x79d4 025789 istore 3 ,contw 
+0x79d5 025791 fetch 1 ,mem_passkey_1bit 
+0x79d6 025793 istore 1 ,contw 
+0x79d7 025794 force 0 ,pdata 
+0x79d8 025795 istore 8 ,contw 
+0x79d9 025796 setarg 0x0388 
+0x79da 025797 istore 4 ,contw 
+0x79db 025798 call sha 
+0x79dc 025799 call sha_result 
+0x79dd 025800 arg memresult ,contr 
+0x79de 025801 arg memahsave ,contw 
+0x79df 025802 call memcpy32 
+0x79e0 025804 setarg 0x5c5c5c 
+0x79e1 025805 lshift8 pdata ,temp 
+0x79e2 025806 or_into 0x5c ,temp 
+0x79e3 025807 fetch 2 ,mem_sp_prarm_stack 
+0x79e4 025808 copy pdata ,contr 
+0x79e5 025809 force 4 ,loopcnt 
+0x79e6 025810 call pad_xor 
+0x79e7 025811 call sha_init 
+0x79e8 025812 call sha 
+0x79e9 025813 arg memahsave_end ,contr 
+0x79ea 025814 arg memdat ,contw 
+0x79eb 025815 force 8 ,loopcnt 
+0x79ec 025816 call memcpy_dword_swap 
+0x79ed 025817 setarg 0x800000 
+0x79ee 025818 lshift8 pdata ,pdata 
+0x79ef 025819 istore 4 ,contw 
+0x79f0 025820 call bn_zero 
+0x79f1 025821 setarg 0x0300 
+0x79f2 025822 istore 4 ,contw 
+0x79f3 025823 call sha 
+0x79f4 025824 branch sha_result 
+:      025827 function_f2:
+0x79f5 025828 setarg 0x363636 
+0x79f6 025829 lshift8 pdata ,temp 
+0x79f7 025830 or_into 0x36 ,temp 
+0x79f8 025831 arg mem_sp_dhkey_end ,contr 
+0x79f9 025832 force 6 ,loopcnt 
+0x79fa 025833 call pad_xor 
+0x79fb 025834 call sha_init 
+0x79fc 025835 call sha 
+0x79fd 025836 fetch 2 ,mem_sp_prarm_stack + 12 
+0x79fe 025837 copy pdata ,contr 
+0x79ff 025838 arg memdat ,contw 
+0x7a00 025839 call memcpy_dword_swap4 
+0x7a01 025840 fetch 2 ,mem_sp_prarm_stack + 14 
+0x7a02 025841 copy pdata ,contr 
+0x7a03 025842 call memcpy_dword_swap4 
+0x7a04 025844 setarg 0x62746c 
+0x7a05 025845 lshift8 pdata ,pdata 
+0x7a06 025846 or_into 0x6b ,pdata 
+0x7a07 025847 istore 4 ,contw 
+0x7a08 025848 arg mem_addr_value_end ,contr 
+0x7a09 025849 force 3 ,loopcnt 
+0x7a0a 025850 call memcpy_dword_swap 
+0x7a0b 025852 setarg 0x800000 
+0x7a0c 025853 lshift8 pdata ,pdata 
+0x7a0d 025854 istore 4 ,contw 
+0x7a0e 025855 force 0 ,pdata 
+0x7a0f 025856 istore 8 ,contw 
+0x7a10 025857 setarg 0x0380 
+0x7a11 025858 istore 4 ,contw 
+0x7a12 025859 call sha 
+0x7a13 025861 call sha_result 
+0x7a14 025862 arg memresult ,contr 
+0x7a15 025863 arg memahsave ,contw 
+0x7a16 025864 call memcpy32 
+0x7a17 025866 setarg 0x5c5c5c 
+0x7a18 025867 lshift8 pdata ,temp 
+0x7a19 025868 or_into 0x5c ,temp 
+0x7a1a 025869 arg mem_sp_dhkey_end ,contr 
+0x7a1b 025870 force 6 ,loopcnt 
+0x7a1c 025871 call pad_xor 
+0x7a1d 025872 call sha_init 
+0x7a1e 025873 call sha 
+0x7a1f 025874 arg memahsave_end ,contr 
+0x7a20 025875 arg memdat ,contw 
+0x7a21 025876 force 8 ,loopcnt 
+0x7a22 025877 call memcpy_dword_swap 
+0x7a23 025878 setarg 0x800000 
+0x7a24 025879 lshift8 pdata ,pdata 
+0x7a25 025880 istore 4 ,contw 
+0x7a26 025881 call bn_zero 
+0x7a27 025882 setarg 0x0300 
+0x7a28 025883 istore 4 ,contw 
+0x7a29 025884 call sha 
+0x7a2a 025885 branch sha_result 
+:      025888 function_f3a:
+0x7a2b 025889 fetch 1 ,mem_ssp_mode_flag 
+0x7a2c 025890 bne ssp_mode_passkey_entry_flag ,function_f3a_no_pin 
+:      025891 function_f3a_common:
+0x7a2d 025892 set1 mark_ext_patch ,mark 
+0x7a2e 025893 bpatch patch3d_2 ,mem_patch3d 
+0x7a2f 025894 setarg 0x363636 
+0x7a30 025895 lshift8 pdata ,temp 
+0x7a31 025896 or_into 0x36 ,temp 
+0x7a32 025897 arg mem_sp_dhkey_end ,contr 
+0x7a33 025898 force 6 ,loopcnt 
+0x7a34 025899 call pad_xor 
+0x7a35 025900 call sha_init 
+0x7a36 025901 call sha 
+0x7a37 025902 arg mem_sp_random_remote_end ,contr 
+0x7a38 025903 arg memdat ,contw 
+0x7a39 025904 call memcpy_dword_swap4 
+0x7a3a 025905 arg mem_sp_random_local_end ,contr 
+0x7a3b 025906 call memcpy_dword_swap4 
+0x7a3c 025907 branch function_f3_common 
+:      025909 function_f3a_no_pin:
+0x7a3d 025910 setarg 0 
+0x7a3e 025911 store 4 ,mem_pin 
+0x7a3f 025912 branch function_f3a_common 
+:      025914 function_f3b_no_pin:
+0x7a40 025915 setarg 0 
+0x7a41 025916 store 4 ,mem_pin 
+0x7a42 025917 branch function_f3b_common 
+:      025920 function_f3b:
+0x7a43 025921 fetch 1 ,mem_ssp_mode_flag 
+0x7a44 025922 bne ssp_mode_passkey_entry_flag ,function_f3b_no_pin 
+:      025923 function_f3b_common:
+0x7a45 025924 setarg 0x363636 
+0x7a46 025925 lshift8 pdata ,temp 
+0x7a47 025926 or_into 0x36 ,temp 
+0x7a48 025927 arg mem_sp_dhkey_end ,contr 
+0x7a49 025928 force 6 ,loopcnt 
+0x7a4a 025929 call pad_xor 
+0x7a4b 025930 call sha_init 
+0x7a4c 025931 call sha 
+0x7a4d 025933 arg mem_sp_random_local_end ,contr 
+0x7a4e 025934 arg memdat ,contw 
+0x7a4f 025935 call memcpy_dword_swap4 
+0x7a50 025936 arg mem_sp_random_remote_end ,contr 
+0x7a51 025937 call memcpy_dword_swap4 
+:      025938 function_f3_common:
+0x7a52 025939 setarg 0x0 
+0x7a53 025940 istore 8 ,contw 
+0x7a54 025941 istore 4 ,contw 
+0x7a55 025942 fetch 4 ,mem_pin 
+0x7a56 025943 istore 4 ,contw 
+0x7a57 025945 copy contw ,temp 
+0x7a58 025946 jam 0x80 ,mem_addr_padding 
+0x7a59 025947 copy temp ,contw 
+0x7a5a 025948 arg mem_addr_iocap_end ,contr 
+0x7a5b 025949 call memcpy_dword_swap4 
+0x7a5c 025951 call sha 
+0x7a5d 025953 arg memdat ,contw 
+0x7a5e 025954 force 7 ,loopcnt 
+0x7a5f 025955 call memset0 
+0x7a60 025956 istore 4 ,contw 
+0x7a61 025957 setarg 0x03F8 
+0x7a62 025958 istore 4 ,contw 
+0x7a63 025959 call sha 
+0x7a64 025960 call sha_result 
+0x7a65 025962 arg memresult ,contr 
+0x7a66 025963 arg memahsave ,contw 
+0x7a67 025964 call memcpy32 
+0x7a68 025966 setarg 0x5c5c5c 
+0x7a69 025967 lshift8 pdata ,temp 
+0x7a6a 025968 or_into 0x5c ,temp 
+0x7a6b 025969 arg mem_sp_dhkey_end ,contr 
+0x7a6c 025970 force 6 ,loopcnt 
+0x7a6d 025971 call pad_xor 
+0x7a6e 025972 call sha_init 
+0x7a6f 025973 call sha 
+0x7a70 025974 arg memahsave_end ,contr 
+0x7a71 025975 arg memdat ,contw 
+0x7a72 025976 force 8 ,loopcnt 
+0x7a73 025977 call memcpy_dword_swap 
+0x7a74 025978 setarg 0x800000 
+0x7a75 025979 lshift8 pdata ,pdata 
+0x7a76 025980 istore 4 ,contw 
+0x7a77 025981 call bn_zero 
+0x7a78 025982 setarg 0x0300 
+0x7a79 025983 istore 4 ,contw 
+0x7a7a 025984 call sha 
+0x7a7b 025985 branch sha_result 
+:      025992 eckp_calc_init:
+0x7a7c 025993 jam 192 ,mem_ec_loopc 
+:      025994 eckp_calc_init_1:
+0x7a7d 025995 fetch 1 ,mem_ec_loopc 
+0x7a7e 025996 rtn blank 
+0x7a7f 025997 increase -1 ,pdata 
+0x7a80 025998 store 1 ,mem_ec_loopc 
+0x7a81 025999 arg mem_k ,contr 
+0x7a82 026000 call bn_testbit 
+0x7a83 026001 branch eckp_calc_init_1 ,true 
+0x7a84 026002 arg mem_ax ,contr 
+0x7a85 026003 arg mem_cx ,contw 
+0x7a86 026004 branch ec_copy 
+:      026006 eckp_calc:
+0x7a87 026007 call ecdbl 
+0x7a88 026008 fetch 1 ,mem_ec_loopc 
+0x7a89 026009 increase -1 ,pdata 
+0x7a8a 026010 store 1 ,mem_ec_loopc 
+0x7a8b 026011 arg mem_k ,contr 
+0x7a8c 026012 call bn_testbit 
+0x7a8d 026013 rtn true 
+0x7a8e 026014 branch ecadd 
+:      026016 memcpy_dword_swap4:
+0x7a8f 026017 force 4 ,loopcnt 
+:      026018 memcpy_dword_swap:
+0x7a90 026019 increase -4 ,contr 
+:      026020 memcpy_dword_swap_loop:
+0x7a91 026021 ifetch 4 ,contr 
+0x7a92 026022 istore 4 ,contw 
+0x7a93 026023 increase -8 ,contr 
+0x7a94 026024 loop memcpy_dword_swap_loop 
+0x7a95 026025 rtn 
+:      026030 sp_initialize_256:
+0x7a96 026031 set1 mark_ext_patch ,mark 
+0x7a97 026032 bpatch patch3d_3 ,mem_patch3d 
+0x7a98 026033 fetch 1 ,mem_le_secure_connect_enable 
+0x7a99 026034 branch le_secure_connection_disable ,blank 
+0x7a9a 026035 call le_secure_connection_enable 
+0x7a9b 026036 call sp_clear_flags 
+0x7a9c 026038 branch sp_pubkey_calc_256 
+:      026043 sp_pubkey_calc_256:
+0x7a9d 026044 fetch 1 ,mem_le_sc_local_key_invalid 
+0x7a9e 026045 rtnne sp_key_invalid 
+0x7a9f 026046 fetch 1 ,mem_le_sc_calc 
+0x7aa0 026047 rtnne sp_calc_standby 
+0x7aa1 026049 arg mem_le_private_key_256 ,contw 
+0x7aa2 026050 force 15 ,queue 
+0x7aa3 026051 call random_generator 
+0x7aa4 026052 random pdata 
+0x7aa5 026053 rshift pdata ,pdata 
+0x7aa6 026054 istore 2 ,contw 
+0x7aa7 026056 arg mem_k_256 ,contw 
+0x7aa8 026057 arg mem_le_private_key_256 ,contr 
+0x7aa9 026058 call memcpy32 
+0x7aaa 026060 arg mem_ax_256 ,contw 
+0x7aab 026061 arg mem_gx_256 ,contr 
+0x7aac 026062 call memcpy64 
+0x7aad 026064 arg mem_az_256 ,contw 
+0x7aae 026065 call clear_mem_256 
+0x7aaf 026066 jam 1 ,mem_az_256 
+0x7ab0 026068 call eckp_calc_init_256 
+0x7ab1 026069 jam sp_calc_pubkey_256 ,mem_le_sc_calc 
+0x7ab2 026070 rtn 
+:      026072 sp_pubkey_generated_256:
+0x7ab3 026073 arg mem_le_pubkey_local_x_256 ,contw 
+0x7ab4 026074 arg mem_bx_256 ,contr 
+0x7ab5 026075 call memcpy64 
+0x7ab6 026076 jam sp_key_valid_256 ,mem_le_sc_local_key_invalid 
+0x7ab7 026077 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ab8 026078 rtn 
+:      026082 sp_dhkey_calc_256:
+0x7ab9 026083 fetch 1 ,mem_sp_dhkey_invalid 
+0x7aba 026084 rtnne sp_key_invalid 
+0x7abb 026085 fetch 1 ,mem_le_sc_calc 
+0x7abc 026086 rtnne sp_calc_standby 
+0x7abd 026088 arg mem_k_256 ,contw 
+0x7abe 026089 arg mem_le_private_key_256 ,contr 
+0x7abf 026090 call memcpy32 
+0x7ac0 026092 arg mem_ax_256 ,contw 
+0x7ac1 026093 arg mem_le_pubkey_remote_x_256 ,contr 
+0x7ac2 026094 call memcpy64 
+0x7ac3 026096 arg mem_az_256 ,contw 
+0x7ac4 026097 call clear_mem_256 
+0x7ac5 026098 jam 1 ,mem_az_256 
+0x7ac6 026100 call eckp_calc_init_256 
+0x7ac7 026101 jam sp_calc_dhkey_256 ,mem_le_sc_calc 
+0x7ac8 026102 rtn 
+:      026105 sp_dhkey_generated_256:
+0x7ac9 026107 arg mem_le_dhkey_256 ,contw 
+0x7aca 026108 arg mem_bx_256 ,contr 
+0x7acb 026109 call memcpy32 
+0x7acc 026110 jam sp_key_valid_256 ,mem_sp_dhkey_invalid 
+0x7acd 026111 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ace 026112 rtn 
+:      026116 sp_calc_sequence_256:
+0x7acf 026117 fetch 1 ,mem_le_secure_connect_enable 
+0x7ad0 026118 rtn blank 
+0x7ad1 026119 fetch 1 ,mem_le_sc_calc 
+0x7ad2 026120 rtn blank 
+0x7ad3 026121 increase 0x80 ,pdata 
+0x7ad4 026122 store 1 ,mem_le_sc_calc 
+0x7ad5 026123 rtnbit1 7 
+0x7ad6 026124 fetch 2 ,mem_ec_loopc 
+0x7ad7 026125 branch sp_calc_sequence_done_256 ,blank 
+0x7ad8 026126 branch eckp_calc_256 
+:      026128 sp_calc_sequence_done_256:
+0x7ad9 026129 set1 mark_ext_patch ,mark 
+0x7ada 026130 bpatch patch3d_4 ,mem_patch3d 
+0x7adb 026131 call ecunmapz_256 
+0x7adc 026132 fetch 1 ,mem_le_sc_calc 
+0x7add 026133 beq sp_calc_pubkey_256 ,sp_pubkey_generated_256 
+0x7ade 026134 beq sp_calc_dhkey_256 ,sp_dhkey_generated_256 
+0x7adf 026135 rtn 
+:      026138 eckp_calc_256:
+0x7ae0 026139 call ecdbl_256 
+0x7ae1 026140 fetch 2 ,mem_ec_loopc 
+0x7ae2 026141 increase -1 ,pdata 
+0x7ae3 026142 store 2 ,mem_ec_loopc 
+0x7ae4 026143 arg mem_k_256 ,contr 
+0x7ae5 026144 call bn_testbit 
+0x7ae6 026145 rtn true 
+0x7ae7 026146 branch ecadd_256 
+:      026148 eckp_calc_init_256:
+0x7ae8 026149 set1 mark_ext_patch ,mark 
+0x7ae9 026150 bpatch patch3d_5 ,mem_patch3d 
+0x7aea 026151 setarg 256 ,pdata 
+0x7aeb 026152 store 2 ,mem_ec_loopc 
+:      026153 eckp_calc_init_256_1:
+0x7aec 026154 fetch 2 ,mem_ec_loopc 
+0x7aed 026155 rtn blank 
+0x7aee 026156 increase -1 ,pdata 
+0x7aef 026157 store 2 ,mem_ec_loopc 
+0x7af0 026158 arg mem_k_256 ,contr 
+0x7af1 026159 call bn_testbit 
+0x7af2 026160 branch eckp_calc_init_256_1 ,true 
+0x7af3 026161 arg mem_ax_256 ,contr 
+0x7af4 026162 arg mem_cx_256 ,contw 
+0x7af5 026163 branch memcpy96 
+:      026166 ecunmapz_256:
+0x7af6 026167 arg mem_cz_256 ,rega 
+0x7af7 026168 arg mem_t3_256 ,contw 
+0x7af8 026169 call bn_invmod_256 
+0x7af9 026170 arg mem_t3_256 ,rega 
+0x7afa 026171 arg mem_t1_256 ,contw 
+0x7afb 026172 call bn_sqrmod_256 
+0x7afc 026173 arg mem_cx_256 ,rega 
+0x7afd 026174 arg mem_t1_256 ,regb 
+0x7afe 026175 arg mem_bx_256 ,contw 
+0x7aff 026176 call bn_mulmod_256 
+0x7b00 026177 arg mem_t3_256 ,rega 
+0x7b01 026178 arg mem_t1_256 ,regb 
+0x7b02 026179 arg mem_t2_256 ,contw 
+0x7b03 026180 call bn_mulmod_256 
+0x7b04 026181 arg mem_cy_256 ,rega 
+0x7b05 026182 arg mem_t2_256 ,regb 
+0x7b06 026183 arg mem_by_256 ,contw 
+0x7b07 026184 branch bn_mulmod_256 
+:      026186 ecdbl_256:
+0x7b08 026187 arg mem_cz_256 ,rega 
+0x7b09 026188 arg mem_t2_256 ,contw 
+0x7b0a 026189 call bn_sqrmod_256 
+0x7b0b 026190 arg mem_t2_256 ,rega 
+0x7b0c 026191 arg mem_t3_256 ,contw 
+0x7b0d 026192 call bn_sqrmod_256 
+0x7b0e 026194 arg mem_a_256 ,rega 
+0x7b0f 026195 arg mem_t3_256 ,regb 
+0x7b10 026196 arg mem_t3_256 ,contw 
+0x7b11 026197 call bn_mulmod_256 
+0x7b12 026198 arg mem_cx_256 ,rega 
+0x7b13 026199 arg mem_t2_256 ,contw 
+0x7b14 026200 call bn_sqrmod_256 
+0x7b15 026202 arg mem_t2_256 ,contr 
+0x7b16 026203 arg mem_t1_256 ,contw 
+0x7b17 026204 call memcpy32 
+0x7b18 026205 arg mem_t1_256 ,rega 
+0x7b19 026206 call bn_lshiftmod_256 
+0x7b1a 026207 arg mem_t2_256 ,rega 
+0x7b1b 026208 arg mem_t1_256 ,regb 
+0x7b1c 026209 arg mem_t2_256 ,contw 
+0x7b1d 026210 call bn_addmod_256 
+0x7b1e 026212 arg mem_t2_256 ,rega 
+0x7b1f 026213 arg mem_t3_256 ,regb 
+0x7b20 026214 arg mem_t2_256 ,contw 
+0x7b21 026215 call bn_addmod_256 
+0x7b22 026217 arg mem_cx_256 ,contr 
+0x7b23 026218 arg mem_t1_256 ,contw 
+0x7b24 026219 call memcpy32 
+0x7b25 026220 arg mem_cy_256 ,rega 
+0x7b26 026221 arg mem_t3_256 ,contw 
+0x7b27 026222 call bn_sqrmod_256 
+0x7b28 026223 arg mem_t1_256 ,rega 
+0x7b29 026224 call bn_lshiftmod_256 
+0x7b2a 026225 arg mem_t1_256 ,rega 
+0x7b2b 026226 call bn_lshiftmod_256 
+0x7b2c 026227 arg mem_t1_256 ,rega 
+0x7b2d 026228 arg mem_t3_256 ,regb 
+0x7b2e 026229 arg mem_t1_256 ,contw 
+0x7b2f 026230 call bn_mulmod_256 
+0x7b30 026231 arg mem_t3_256 ,rega 
+0x7b31 026232 arg mem_t0_256 ,contw 
+0x7b32 026233 call bn_sqrmod_256 
+0x7b33 026234 arg mem_t0_256 ,rega 
+0x7b34 026235 call bn_lshiftmod_256 
+0x7b35 026236 arg mem_t0_256 ,rega 
+0x7b36 026237 call bn_lshiftmod_256 
+0x7b37 026238 arg mem_t0_256 ,rega 
+0x7b38 026239 call bn_lshiftmod_256 
+0x7b39 026240 arg mem_cy_256 ,contr 
+0x7b3a 026241 arg mem_t3_256 ,contw 
+0x7b3b 026242 call memcpy32 
+0x7b3c 026243 arg mem_t3_256 ,rega 
+0x7b3d 026244 call bn_lshiftmod_256 
+0x7b3e 026245 arg mem_t3_256 ,rega 
+0x7b3f 026246 arg mem_cz_256 ,regb 
+0x7b40 026247 arg mem_cz_256 ,contw 
+0x7b41 026248 call bn_mulmod_256 
+0x7b42 026251 arg mem_t2_256 ,rega 
+0x7b43 026252 arg mem_t3_256 ,contw 
+0x7b44 026253 call bn_sqrmod_256 
+0x7b45 026255 arg mem_t3_256 ,rega 
+0x7b46 026256 arg mem_t1_256 ,regb 
+0x7b47 026257 arg mem_t3_256 ,contw 
+0x7b48 026258 call bn_submod_256 
+0x7b49 026259 arg mem_t3_256 ,rega 
+0x7b4a 026260 arg mem_t1_256 ,regb 
+0x7b4b 026261 arg mem_cx_256 ,contw 
+0x7b4c 026262 call bn_submod_256 
+0x7b4d 026263 arg mem_t1_256 ,rega 
+0x7b4e 026264 arg mem_cx_256 ,regb 
+0x7b4f 026265 arg mem_t3_256 ,contw 
+0x7b50 026266 call bn_submod_256 
+0x7b51 026267 arg mem_t3_256 ,rega 
+0x7b52 026268 arg mem_t2_256 ,regb 
+0x7b53 026269 arg mem_t3_256 ,contw 
+0x7b54 026270 call bn_mulmod_256 
+0x7b55 026271 arg mem_t3_256 ,rega 
+0x7b56 026272 arg mem_t0_256 ,regb 
+0x7b57 026273 arg mem_cy_256 ,contw 
+0x7b58 026274 branch bn_submod_256 
+:      026276 ecadd_256:
+0x7b59 026278 arg mem_az_256 ,rega 
+0x7b5a 026279 arg mem_t7_256 ,contw 
+0x7b5b 026280 call bn_sqrmod_256 
+0x7b5c 026281 arg mem_cx_256 ,rega 
+0x7b5d 026282 arg mem_t7_256 ,regb 
+0x7b5e 026283 arg mem_t0_256 ,contw 
+0x7b5f 026284 call bn_mulmod_256 
+0x7b60 026287 arg mem_az_256 ,rega 
+0x7b61 026288 arg mem_t7_256 ,regb 
+0x7b62 026289 arg mem_t7_256 ,contw 
+0x7b63 026290 call bn_mulmod_256 
+0x7b64 026291 arg mem_cy_256 ,rega 
+0x7b65 026292 arg mem_t7_256 ,regb 
+0x7b66 026293 arg mem_t1_256 ,contw 
+0x7b67 026294 call bn_mulmod_256 
+0x7b68 026297 arg mem_cz_256 ,rega 
+0x7b69 026298 arg mem_t7_256 ,contw 
+0x7b6a 026299 call bn_sqrmod_256 
+0x7b6b 026300 arg mem_ax_256 ,rega 
+0x7b6c 026301 arg mem_t7_256 ,regb 
+0x7b6d 026302 arg mem_t2_256 ,contw 
+0x7b6e 026303 call bn_mulmod_256 
+0x7b6f 026305 arg mem_cz_256 ,rega 
+0x7b70 026306 arg mem_t7_256 ,regb 
+0x7b71 026307 arg mem_t7_256 ,contw 
+0x7b72 026308 call bn_mulmod_256 
+0x7b73 026309 arg mem_ay_256 ,rega 
+0x7b74 026310 arg mem_t7_256 ,regb 
+0x7b75 026311 arg mem_t3_256 ,contw 
+0x7b76 026312 call bn_mulmod_256 
+0x7b77 026317 arg mem_t0_256 ,regb 
+0x7b78 026318 arg mem_t2_256 ,rega 
+0x7b79 026319 arg mem_t7_256 ,contw 
+0x7b7a 026320 call bn_submod_256 
+0x7b7b 026321 arg mem_t0_256 ,rega 
+0x7b7c 026322 arg mem_t2_256 ,regb 
+0x7b7d 026323 arg mem_t0_256 ,contw 
+0x7b7e 026324 call bn_addmod_256 
+0x7b7f 026327 arg mem_t1_256 ,regb 
+0x7b80 026328 arg mem_t3_256 ,rega 
+0x7b81 026329 arg mem_t2_256 ,contw 
+0x7b82 026330 call bn_submod_256 
+0x7b83 026331 arg mem_t1_256 ,rega 
+0x7b84 026332 arg mem_t3_256 ,regb 
+0x7b85 026333 arg mem_t1_256 ,contw 
+0x7b86 026334 call bn_addmod_256 
+0x7b87 026335 arg mem_t1_256 ,rega 
+0x7b88 026336 arg mem_t7_256 ,regb 
+0x7b89 026337 arg mem_t1_256 ,contw 
+0x7b8a 026338 call bn_mulmod_256 
+0x7b8b 026339 arg mem_cz_256 ,rega 
+0x7b8c 026340 arg mem_az_256 ,regb 
+0x7b8d 026341 arg mem_t3_256 ,contw 
+0x7b8e 026342 call bn_mulmod_256 
+0x7b8f 026343 arg mem_t3_256 ,rega 
+0x7b90 026344 arg mem_t7_256 ,regb 
+0x7b91 026345 arg mem_cz_256 ,contw 
+0x7b92 026346 call bn_mulmod_256 
+0x7b93 026348 arg mem_t7_256 ,rega 
+0x7b94 026349 arg mem_t7_256 ,contw 
+0x7b95 026350 call bn_sqrmod_256 
+0x7b96 026351 arg mem_t7_256 ,rega 
+0x7b97 026352 arg mem_t0_256 ,regb 
+0x7b98 026353 arg mem_t3_256 ,contw 
+0x7b99 026354 call bn_mulmod_256 
+0x7b9a 026355 arg mem_t7_256 ,rega 
+0x7b9b 026356 arg mem_t1_256 ,regb 
+0x7b9c 026357 arg mem_t1_256 ,contw 
+0x7b9d 026358 call bn_mulmod_256 
+0x7b9e 026359 arg mem_t2_256 ,rega 
+0x7b9f 026360 arg mem_cx_256 ,contw 
+0x7ba0 026361 call bn_sqrmod_256 
+0x7ba1 026362 arg mem_cx_256 ,rega 
+0x7ba2 026363 arg mem_t3_256 ,regb 
+0x7ba3 026364 arg mem_cx_256 ,contw 
+0x7ba4 026365 call bn_submod_256 
+0x7ba5 026366 arg mem_cx_256 ,contr 
+0x7ba6 026367 arg mem_t7_256 ,contw 
+0x7ba7 026368 call memcpy32 
+0x7ba8 026369 arg mem_t7_256 ,rega 
+0x7ba9 026370 call bn_lshiftmod_256 
+0x7baa 026371 arg mem_t3_256 ,rega 
+0x7bab 026372 arg mem_t7_256 ,regb 
+0x7bac 026373 arg mem_t3_256 ,contw 
+0x7bad 026374 call bn_submod_256 
+0x7bae 026375 arg mem_t3_256 ,rega 
+0x7baf 026376 arg mem_t2_256 ,regb 
+0x7bb0 026377 arg mem_t2_256 ,contw 
+0x7bb1 026378 call bn_mulmod_256 
+0x7bb2 026379 arg mem_t2_256 ,rega 
+0x7bb3 026380 arg mem_t1_256 ,regb 
+0x7bb4 026381 arg mem_cy_256 ,contw 
+0x7bb5 026382 call bn_submod_256 
+0x7bb6 026383 arg mem_cy_256 ,rega 
+0x7bb7 026384 arg mem_p_256 ,regb 
+0x7bb8 026385 arg mem_cy_256 ,contw 
+0x7bb9 026386 force 0 ,regc 
+0x7bba 026387 fetch 1 ,mem_cy_256 
+0x7bbb 026388 isolate1 0 ,pdata 
+0x7bbc 026389 call bn_add_256 ,true 
+0x7bbd 026390 copy regc ,alarm 
+0x7bbe 026391 arg mem_cy_256 ,rega 
+0x7bbf 026392 call bn_rshift_256 
+0x7bc0 026393 fetch 1 ,mem_cy5_256 
+0x7bc1 026394 isolate1 0 ,alarm 
+0x7bc2 026395 setflag true ,7 ,pdata 
+0x7bc3 026396 store 1 ,mem_cy5_256 
+0x7bc4 026397 rtn 
+:      026399 bn_invmod_256:
+0x7bc5 026400 copy contw ,timeup 
+0x7bc6 026401 arg mem_tmp0_256 ,contw 
+0x7bc7 026402 call clear_mem_256 
+0x7bc8 026403 force 0 ,pdata 
+0x7bc9 026405 store 4 ,mem_t2_256 
+0x7bca 026406 jam 1 ,mem_tmp0_256 
+0x7bcb 026407 arg mem_tmp1_256 ,contw 
+0x7bcc 026408 call clear_mem_512 
+0x7bcd 026409 arg mem_p_256 ,contr 
+0x7bce 026410 arg mem_tmp2_256 ,contw 
+0x7bcf 026411 call memcpy32 
+0x7bd0 026412 copy rega ,contr 
+0x7bd1 026413 arg mem_tmp3_256 ,contw 
+0x7bd2 026414 call memcpy32 
+:      026420 bn_invmod_256_2:
+0x7bd3 026421 arg mem_tmp3_256 ,contr 
+0x7bd4 026422 call bn_eq_zero_256 
+0x7bd5 026423 branch bn_invmod_256_0 ,blank 
+0x7bd6 026428 arg mem_tmp3_256 ,rega 
+0x7bd7 026429 arg mem_tmp0_256 ,regb 
+0x7bd8 026430 call bn_rshifteven_256 
+0x7bd9 026431 arg mem_tmp2_256 ,rega 
+0x7bda 026432 arg mem_tmp1_256 ,regb 
+0x7bdb 026433 call bn_rshifteven_256 
+0x7bdc 026435 arg mem_tmp3_256 ,rega 
+0x7bdd 026436 arg mem_tmp2_256 ,regb 
+0x7bde 026437 call bn_bigeq_256 
+0x7bdf 026438 branch bn_invmod_256_1 ,positive 
+0x7be0 026439 arg mem_tmp2_256 ,rega 
+0x7be1 026440 arg mem_tmp3_256 ,regb 
+0x7be2 026441 copy rega ,contw 
+0x7be3 026442 call bn_sub_256 
+0x7be4 026443 arg mem_tmp0_256 ,rega 
+0x7be5 026444 arg mem_tmp1_256 ,regb 
+0x7be6 026445 copy regb ,contw 
+0x7be7 026446 call bn_add_256 
+0x7be8 026447 ifetch 1 ,rega 
+0x7be9 026448 iadd regc ,regc 
+0x7bea 026449 ifetch 1 ,regb 
+0x7beb 026450 iadd regc ,pdata 
+0x7bec 026451 istore 1 ,regb 
+0x7bed 026452 branch bn_invmod_256_2 
+:      026453 bn_invmod_256_1:
+0x7bee 026454 arg mem_tmp3_256 ,rega 
+0x7bef 026455 arg mem_tmp2_256 ,regb 
+0x7bf0 026456 copy rega ,contw 
+0x7bf1 026457 call bn_sub_256 
+0x7bf2 026458 arg mem_tmp1_256 ,rega 
+0x7bf3 026459 arg mem_tmp0_256 ,regb 
+0x7bf4 026460 copy regb ,contw 
+0x7bf5 026461 call bn_add_256 
+0x7bf6 026462 ifetch 1 ,rega 
+0x7bf7 026463 iadd regc ,regc 
+0x7bf8 026464 ifetch 1 ,regb 
+0x7bf9 026465 iadd regc ,pdata 
+0x7bfa 026466 istore 1 ,regb 
+0x7bfb 026467 branch bn_invmod_256_2 
+:      026468 bn_invmod_256_0:
+0x7bfc 026470 arg mem_tmp1_256 ,rega 
+0x7bfd 026471 copy timeup ,contw 
+0x7bfe 026472 call bn_p256mod 
+0x7bff 026474 arg mem_p_256 ,rega 
+0x7c00 026475 copy timeup ,regb 
+0x7c01 026476 copy timeup ,contw 
+0x7c02 026477 branch bn_submod_256 
+:      026480 bn_mulmod_256:
+0x7c03 026481 copy contw ,timeup 
+0x7c04 026483 force 0 ,regext_index 
+0x7c05 026485 arg mem_tmp1_256 ,contw 
+0x7c06 026486 call clear_mem_512 
+0x7c07 026487 arg mem_regext ,contw 
+0x7c08 026488 call clear_mem_512 
+0x7c09 026492 copy rega ,contr 
+0x7c0a 026494 jam 0 ,mem_regext 
+0x7c0b 026495 setarg 0 
+0x7c0c 026496 call bn_load_mem 
+0x7c0d 026497 copy regb ,contr 
+0x7c0e 026498 call bn_load_256 
+0x7c0f 026501 force 0 ,queue 
+0x7c10 026502 arg mem_tmp1_256 ,contw 
+:      026503 bn_mulmod_256_1:
+0x7c11 026506 arg mem_regext ,temp 
+0x7c12 026507 copy queue ,regb 
+0x7c13 026508 lshift2 regb ,pdata 
+0x7c14 026510 iadd temp ,regb 
+0x7c15 026511 force 0 ,temp 
+0x7c16 026512 force 0 ,regc 
+:      026513 bn_mulmod_256_0:
+0x7c17 026518 ifetch 4 ,contw 
+0x7c18 026519 iforce rega 
+0x7c19 026522 ifetch 4 ,regb 
+0x7c1a 026523 copy regc ,regext_index 
+0x7c1b 026524 imul32 regext ,pdata 
+0x7c1c 026525 iadd rega ,pdata 
+0x7c1d 026526 iadd temp ,pdata 
+0x7c1e 026527 istore 4 ,contw 
+0x7c1f 026528 rshift32 pdata ,temp 
+0x7c20 026529 increase 1 ,regc 
+0x7c21 026530 compare 8 ,regc ,0xff 
+0x7c22 026531 nbranch bn_mulmod_256_0 ,true 
+0x7c23 026533 deposit temp 
+0x7c24 026534 istore 4 ,contw 
+0x7c25 026535 increase -32 ,contw 
+0x7c26 026538 increase 1 ,queue 
+0x7c27 026539 compare 8 ,queue ,0xff 
+0x7c28 026540 nbranch bn_mulmod_256_1 ,true 
+0x7c29 026541 arg mem_tmp1_256 ,rega 
+0x7c2a 026542 copy timeup ,contw 
+0x7c2b 026543 branch bn_p256mod 
+:      026545 bn_p256mod:
+0x7c2c 026546 set1 mark_ext_patch ,mark 
+0x7c2d 026547 bpatch patch3d_6 ,mem_patch3d 
+0x7c2e 026548 copy contw ,timeup 
+0x7c2f 026549 copy rega ,alarm 
+0x7c30 026550 arg mem_tmp2_256 ,regb 
+0x7c31 026551 copy regb ,contw 
+0x7c32 026552 call memset0_4 
+0x7c33 026553 istore 8 ,contw 
+0x7c34 026554 add rega ,44 ,contr 
+0x7c35 026555 call memcpy8 
+0x7c36 026556 call memcpy12 
+0x7c37 026557 copy regb ,rega 
+0x7c38 026558 call bn_lshiftmod_256 
+0x7c39 026559 arg mem_tmp2_256 ,regb 
+0x7c3a 026560 copy alarm ,rega 
+0x7c3b 026561 copy timeup ,contw 
+0x7c3c 026562 call bn_addmod_256 
+0x7c3d 026564 arg mem_tmp2_256 ,regb 
+0x7c3e 026565 copy regb ,contw 
+0x7c3f 026566 call memset0_4 
+0x7c40 026567 istore 8 ,contw 
+0x7c41 026568 add alarm ,48 ,contr 
+0x7c42 026569 call memcpy16 
+0x7c43 026570 call memset0_4 
+0x7c44 026571 copy regb ,rega 
+0x7c45 026572 call bn_lshiftmod_256 
+0x7c46 026576 arg mem_tmp2_256 ,regb 
+0x7c47 026577 copy timeup ,rega 
+0x7c48 026578 copy rega ,contw 
+0x7c49 026579 call bn_addmod_256 
+0x7c4a 026583 arg mem_tmp2_256 ,regb 
+0x7c4b 026584 copy regb ,contw 
+0x7c4c 026585 add alarm ,32 ,contr 
+0x7c4d 026586 call memcpy12 
+0x7c4e 026587 call memset0_4 
+0x7c4f 026588 istore 8 ,contw 
+0x7c50 026589 add alarm ,56 ,contr 
+0x7c51 026590 call memcpy8 
+0x7c52 026591 copy timeup ,rega 
+0x7c53 026592 copy rega ,contw 
+0x7c54 026593 call bn_addmod_256 
+0x7c55 026597 arg mem_tmp2_256 ,regb 
+0x7c56 026598 copy regb ,contw 
+0x7c57 026599 add alarm ,36 ,contr 
+0x7c58 026600 call memcpy12 
+0x7c59 026601 add alarm ,52 ,contr 
+0x7c5a 026602 call memcpy12 
+0x7c5b 026603 add alarm ,52 ,contr 
+0x7c5c 026604 call memcpy4 
+0x7c5d 026605 add alarm ,32 ,contr 
+0x7c5e 026606 call memcpy4 
+0x7c5f 026607 copy timeup ,rega 
+0x7c60 026608 copy rega ,contw 
+0x7c61 026609 call bn_addmod_256 
+0x7c62 026612 arg mem_tmp2_256 ,regb 
+0x7c63 026613 copy regb ,contw 
+0x7c64 026614 add alarm ,44 ,contr 
+0x7c65 026615 call memcpy12 
+0x7c66 026616 call memset0_4 
+0x7c67 026617 istore 8 ,contw 
+0x7c68 026618 add alarm ,32 ,contr 
+0x7c69 026619 call memcpy4 
+0x7c6a 026620 add alarm ,40 ,contr 
+0x7c6b 026621 call memcpy4 
+0x7c6c 026622 copy timeup ,rega 
+0x7c6d 026623 copy rega ,contw 
+0x7c6e 026624 call bn_submod_256 
+0x7c6f 026627 arg mem_tmp2_256 ,regb 
+0x7c70 026628 copy regb ,contw 
+0x7c71 026629 add alarm ,48 ,contr 
+0x7c72 026630 call memcpy8 
+0x7c73 026631 call memcpy8 
+0x7c74 026632 force 0 ,pdata 
+0x7c75 026633 istore 8 ,contw 
+0x7c76 026634 add alarm ,36 ,contr 
+0x7c77 026635 call memcpy4 
+0x7c78 026636 add alarm ,44 ,contr 
+0x7c79 026637 call memcpy4 
+0x7c7a 026638 copy timeup ,rega 
+0x7c7b 026639 copy rega ,contw 
+0x7c7c 026640 call bn_submod_256 
+0x7c7d 026643 arg mem_tmp2_256 ,regb 
+0x7c7e 026644 copy regb ,contw 
+0x7c7f 026645 add alarm ,52 ,contr 
+0x7c80 026646 call memcpy12 
+0x7c81 026647 add alarm ,32 ,contr 
+0x7c82 026648 call memcpy12 
+0x7c83 026649 call memset0_4 
+0x7c84 026650 add alarm ,48 ,contr 
+0x7c85 026651 call memcpy4 
+0x7c86 026652 copy timeup ,rega 
+0x7c87 026653 copy rega ,contw 
+0x7c88 026654 call bn_submod_256 
+0x7c89 026657 arg mem_tmp2_256 ,regb 
+0x7c8a 026658 copy regb ,contw 
+0x7c8b 026659 add alarm ,56 ,contr 
+0x7c8c 026660 call memcpy8 
+0x7c8d 026661 call memset0_4 
+0x7c8e 026662 add alarm ,36 ,contr 
+0x7c8f 026663 call memcpy12 
+0x7c90 026664 call memset0_4 
+0x7c91 026665 add alarm ,52 ,contr 
+0x7c92 026666 call memcpy4 
+0x7c93 026667 copy timeup ,rega 
+0x7c94 026668 copy rega ,contw 
+0x7c95 026669 branch bn_submod_256 
+:      026672 bn_load_mem:
+0x7c96 026673 force 32 ,loopcnt 
+0x7c97 026674 arg mem_regext ,contw 
+0x7c98 026675 iadd contw ,contw 
+0x7c99 026676 branch memcpy 
+:      026678 bn_load_256:
+0x7c9a 026679 force 8 ,loopcnt 
+0x7c9b 026680 branch bn_load_0 
+:      026682 bn_sqrmod_256:
+0x7c9c 026683 copy rega ,regb 
+0x7c9d 026684 branch bn_mulmod_256 
+:      026686 bn_add_256:
+0x7c9e 026687 force 8 ,loopcnt 
+0x7c9f 026688 branch bn_add + 1 
+:      026690 bn_addmod_256:
+0x7ca0 026691 call bn_add_256 
+0x7ca1 026692 copy contw ,rega 
+0x7ca2 026693 branch bn_lshiftmod_ismod_256 
+:      026695 bn_lshiftmod_256:
+0x7ca3 026696 call bn_lshift_256 
+:      026697 bn_lshiftmod_ismod_256:
+0x7ca4 026698 isolate1 0 ,regc 
+0x7ca5 026699 branch bn_lshiftmod_p_256 ,true 
+0x7ca6 026700 arg mem_p_256 ,regb 
+0x7ca7 026701 copy rega ,regc 
+0x7ca8 026702 increase -32 ,rega 
+0x7ca9 026703 call bn_bigeq_256 
+0x7caa 026704 nrtn positive 
+0x7cab 026705 copy regc ,rega 
+0x7cac 026706 branch sub_p2_256 
+:      026708 bn_lshiftmod_p_256:
+0x7cad 026709 call sub_p2_256 
+0x7cae 026711 copy rega ,regc 
+0x7caf 026712 increase -32 ,rega 
+0x7cb0 026713 arg mem_p_256 ,regb 
+0x7cb1 026714 call bn_bigeq_256 
+0x7cb2 026715 nrtn positive 
+0x7cb3 026716 copy regc ,rega 
+0x7cb4 026717 branch sub_p2_256 
+:      026720 sub_p2_256:
+0x7cb5 026721 increase -32 ,rega 
+0x7cb6 026722 arg mem_p_256 ,regb 
+0x7cb7 026723 copy rega ,contw 
+0x7cb8 026724 branch bn_sub_256 
+:      026729 bn_submod_256:
+0x7cb9 026730 call bn_sub_256 
+0x7cba 026732 branch bn_submod_256_np ,true 
+0x7cbb 026735 add contw ,-32 ,rega 
+0x7cbc 026736 arg mem_p_256 ,regb 
+0x7cbd 026737 call bn_bigeq_256 
+0x7cbe 026738 nrtn positive 
+0x7cbf 026739 arg mem_p_256 ,regb 
+0x7cc0 026740 add contw ,-32 ,rega 
+0x7cc1 026742 copy rega ,contw 
+0x7cc2 026743 branch bn_sub_256 
+:      026744 bn_submod_256_np:
+0x7cc3 026745 add contw ,-32 ,rega 
+0x7cc4 026746 arg mem_p_256 ,regb 
+0x7cc5 026747 copy rega ,contw 
+0x7cc6 026748 call bn_add_256 
+0x7cc7 026750 rtn true 
+0x7cc8 026751 add contw ,-32 ,rega 
+0x7cc9 026752 arg mem_p_256 ,regb 
+0x7cca 026753 copy rega ,contw 
+0x7ccb 026754 branch bn_add_256 
+:      026758 bn_sub_256:
+0x7ccc 026759 force 8 ,loopcnt 
+0x7ccd 026760 branch bn_sub + 1 
+:      026762 bn_rshift_256:
+0x7cce 026763 force 8 ,loopcnt 
+0x7ccf 026764 increase 28 ,rega 
+0x7cd0 026765 branch bn_rshift 
+:      026767 bn_lshift_256:
+0x7cd1 026768 force 8 ,loopcnt 
+0x7cd2 026769 force 0 ,regc 
+0x7cd3 026770 branch bn_lshift_0 
+:      026772 bn_bigeq_256:
+0x7cd4 026773 force 8 ,loopcnt 
+0x7cd5 026774 increase 28 ,rega 
+0x7cd6 026775 increase 28 ,regb 
+0x7cd7 026776 branch bn_bigeq_0 
+:      026779 bn_eq_zero_256:
+0x7cd8 026780 ifetch 8 ,contr 
+0x7cd9 026781 nrtn blank 
+0x7cda 026782 branch bn_eq_zero 
+:      026787 bn_rshifteven_256:
+0x7cdb 026788 copy rega ,alarm 
+:      026789 bn_rshifteven_256_1:
+0x7cdc 026790 copy alarm ,rega 
+0x7cdd 026791 ifetch 1 ,rega 
+0x7cde 026792 isolate1 0 ,pdata 
+0x7cdf 026793 rtn true 
+0x7ce0 026794 call bn_rshift_256 
+0x7ce1 026795 ifetch 1 ,regb 
+0x7ce2 026796 isolate0 0 ,pdata 
+0x7ce3 026797 branch bn_rshifteven_256_0 ,true 
+0x7ce4 026798 arg mem_p_256 ,rega 
+0x7ce5 026799 copy regb ,contw 
+0x7ce6 026800 call bn_add_256 
+0x7ce7 026801 ifetch 1 ,regb 
+0x7ce8 026802 iadd regc ,pdata 
+0x7ce9 026803 istore 1 ,regb 
+0x7cea 026804 increase -32 ,regb 
+:      026805 bn_rshifteven_256_0:
+0x7ceb 026806 add regb ,32 ,rega 
+0x7cec 026807 force 9 ,loopcnt 
+0x7ced 026808 call bn_rshift 
+0x7cee 026809 branch bn_rshifteven_256_1 
+:      026813 ui_init:
+0x7cef 026814 call lpm_disable_exen_output 
+0x7cf0 026815 rtn wake 
+0x7cf1 026816 call ui_button_init 
+0x7cf2 026817 call ui_timer_init 
+0x7cf3 026818 branch ui_led_init 
+:      026820 ui_dispatch:
+0x7cf4 026821 call ui_led_blink_polling 
+0x7cf5 026823 branch ui_timer_check 
+:      026825 ui_button_init:
+0x7cf6 026826 set1 mark_ext_patch ,mark 
+0x7cf7 026827 bpatch patch3d_7 ,mem_patch3d 
+0x7cf8 026828 fetch 1 ,mem_ui_button_gpio 
+0x7cf9 026829 rtneq ui_button_gpio_disable 
+0x7cfa 026830 iforce temp 
+0x7cfb 026831 call gpio_config_output 
+0x7cfc 026832 fetcht 1 ,mem_ui_button_gpio 
+0x7cfd 026833 call gpio_out_inactive 
+0x7cfe 026834 nop 100 
+0x7cff 026835 fetcht 1 ,mem_ui_button_gpio 
+0x7d00 026836 call gpio_config_input 
+0x7d01 026837 branch ui_button_polling 
+:      026841 ui_button_polling:
+0x7d02 026842 set1 mark_ext_patch ,mark 
+0x7d03 026843 bpatch patch3e_0 ,mem_patch3e 
+0x7d04 026844 fetch 1 ,mem_ui_button_gpio 
+0x7d05 026845 rtneq ui_button_gpio_disable 
+0x7d06 026846 copy pdata ,temp 
+0x7d07 026847 call gpio_get_bit 
+0x7d08 026848 nbranch ui_button_up ,true 
+:      026850 ui_button_down:
+0x7d09 026851 call ui_button_check_long_press 
+0x7d0a 026852 fetch 2 ,mem_ui_state_map 
+0x7d0b 026853 set1 ui_state_btn_down 
+0x7d0c 026854 store 2 ,mem_ui_state_map 
+0x7d0d 026855 fetch 1 ,mem_ui_button_last_state 
+0x7d0e 026856 rtneq ui_button_state_down 
+0x7d0f 026857 jam ui_button_state_down ,mem_ui_button_last_state 
+0x7d10 026859 fetch 1 ,mem_ui_button_timeout 
+0x7d11 026860 store 1 ,mem_ui_button_timer 
+0x7d12 026861 call lpm_button_get_wake_lock 
+0x7d13 026862 jam bt_evt_button_down ,mem_fifo_temp 
+0x7d14 026863 branch ui_ipc_send_event 
+:      026864 ui_button_up:
+0x7d15 026865 fetch 2 ,mem_ui_state_map 
+0x7d16 026866 set0 ui_state_btn_down 
+0x7d17 026867 store 2 ,mem_ui_state_map 
+0x7d18 026868 fetch 1 ,mem_ui_button_last_state 
+0x7d19 026869 rtneq ui_button_state_up 
+0x7d1a 026870 jam ui_button_state_up ,mem_ui_button_last_state 
+0x7d1b 026872 jam 0 ,mem_ui_button_timer 
+0x7d1c 026873 call lpm_button_clean_wake_lock 
+0x7d1d 026874 jam bt_evt_button_up ,mem_fifo_temp 
+0x7d1e 026875 branch ui_ipc_send_event 
+:      026877 ui_button_check_long_press:
+0x7d1f 026878 fetch 1 ,mem_ui_button_timer 
+0x7d20 026879 rtn blank 
+0x7d21 026880 increase -1 ,pdata 
+0x7d22 026881 store 1 ,mem_ui_button_timer 
+0x7d23 026882 nrtn blank 
+0x7d24 026884 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+0x7d25 026885 branch ui_ipc_send_event 
+:      026887 lpm_button_get_wake_lock:
+0x7d26 026888 arg wake_lock_button ,queue 
+0x7d27 026889 branch lpm_get_wake_lock 
+:      026891 lpm_button_clean_wake_lock:
+0x7d28 026892 arg wake_lock_button ,queue 
+0x7d29 026893 branch lpm_put_wake_lock 
+:      026895 ui_led_init:
+0x7d2a 026896 fetch 1 ,mem_led_gpio 
+0x7d2b 026897 rtneq ui_button_gpio_disable 
+0x7d2c 026898 iforce temp 
+0x7d2d 026899 call gpio_config_output 
+0x7d2e 026900 branch ui_led_off 
+:      026902 ui_led_blink_stop:
+0x7d2f 026903 fetch 2 ,mem_ui_state_map 
+0x7d30 026904 set0 ui_state_led_blink 
+0x7d31 026905 store 2 ,mem_ui_state_map 
+0x7d32 026906 jam ui_led_stop ,mem_led_switch 
+:      026907 ui_led_off:
+0x7d33 026908 fetch 2 ,mem_ui_state_map 
+0x7d34 026909 set0 ui_state_led_on 
+0x7d35 026910 store 2 ,mem_ui_state_map 
+0x7d36 026911 fetcht 1 ,mem_led_gpio 
+0x7d37 026912 branch gpio_out_inactive 
+:      026914 ui_led_on:
+0x7d38 026915 fetch 2 ,mem_ui_state_map 
+0x7d39 026916 set1 ui_state_led_on 
+0x7d3a 026917 store 2 ,mem_ui_state_map 
+0x7d3b 026918 jam ui_led_stop ,mem_led_switch 
+0x7d3c 026919 fetcht 1 ,mem_led_gpio 
+0x7d3d 026920 branch gpio_out_active 
+:      026922 ui_led_blink_start:
+0x7d3e 026923 jam 0xff ,mem_led_blink_count 
+:      026924 ui_led_blink_start1:
+0x7d3f 026925 fetch 2 ,mem_ui_state_map 
+0x7d40 026926 set1 ui_state_led_blink 
+0x7d41 026927 store 2 ,mem_ui_state_map 
+0x7d42 026928 jam ui_led_start ,mem_led_switch 
+0x7d43 026929 rtn 
+:      026931 ui_led_blink_polling:
+0x7d44 026932 set1 mark_ext_patch ,mark 
+0x7d45 026933 bpatch patch3e_1 ,mem_patch3e 
+0x7d46 026934 fetch 1 ,mem_led_blink_count 
+0x7d47 026935 rtn blank 
+0x7d48 026936 fetch 1 ,mem_led_switch 
+0x7d49 026937 rtneq ui_led_stop 
+0x7d4a 026938 arg ui_led_blink ,queue 
+0x7d4b 026939 call timer_check 
+0x7d4c 026940 nrtn blank 
+0x7d4d 026941 fetch 1 ,mem_led_switch 
+0x7d4e 026942 beq ui_led_dark_time ,in_ui_led_blink_polling_dark 
+0x7d4f 026943 call ui_led_on 
+0x7d50 026944 jam ui_led_dark_time ,mem_led_switch 
+0x7d51 026945 fetch 2 ,mem_led_light_time 
+0x7d52 026946 branch in_ui_led_blink_timer_start 
+:      026947 in_ui_led_blink_polling_dark:
+0x7d53 026948 call ui_led_off 
+0x7d54 026949 fetch 1 ,mem_led_blink_count 
+0x7d55 026950 beq led_flash_infinite ,in_ui_led_infinite 
+0x7d56 026951 increase -1 ,pdata 
+0x7d57 026952 store 1 ,mem_led_blink_count 
+:      026953 in_ui_led_infinite:
+0x7d58 026954 jam ui_led_light_time ,mem_led_switch 
+0x7d59 026955 fetch 2 ,mem_led_dark_time 
+:      026956 in_ui_led_blink_timer_start:
+0x7d5a 026957 arg ui_led_blink ,queue 
+0x7d5b 026958 branch timer_init 
+:      026960 ui_timer_timeout:
+0x7d5c 026961 setarg 0x1000 
+0x7d5d 026962 lshift16 pdata ,pdata 
+0x7d5e 026963 iadd regb ,regb 
+0x7d5f 026964 rtn 
+:      026966 ui_timer_check:
+0x7d60 026967 set1 mark_ext_patch ,mark 
+0x7d61 026968 bpatch patch3e_2 ,mem_patch3e 
+0x7d62 026969 arg 0 ,rega 
+0x7d63 026970 fetcht 4 ,mem_ui_timer_last_btclk 
+0x7d64 026971 copy clkn_bt ,regb 
+0x7d65 026972 copy regb ,pdata 
+0x7d66 026973 isub temp ,null 
+0x7d67 026974 ncall ui_timer_timeout ,positive 
+:      026976 ui_timer_check_loop:
+0x7d68 026977 copy regb ,pdata 
+0x7d69 026978 increase 160 ,temp 
+0x7d6a 026979 increase 160 ,temp 
+0x7d6b 026980 isub temp ,null 
+0x7d6c 026981 nbranch ui_timer_check_end ,positive 
+0x7d6d 026982 increase 1 ,rega 
+0x7d6e 026983 and rega ,0x0f ,pdata 
+0x7d6f 026984 nbranch ui_timer_check_loop ,blank 
+0x7d70 026985 arg 0 ,rega 
+0x7d71 026986 call ui_timer_check_send_evt 
+:      026987 ui_timer_init:
+0x7d72 026988 copy clkn_bt ,pdata 
+0x7d73 026989 store 4 ,mem_ui_timer_last_btclk 
+0x7d74 026990 rtn 
+:      026991 ui_timer_check_end:
+0x7d75 026992 set1 mark_ext_patch ,mark 
+0x7d76 026993 bpatch patch3e_3 ,mem_patch3e 
+0x7d77 026994 copy rega ,pdata 
+0x7d78 026995 rtn blank 
+0x7d79 026996 increase -160 ,temp 
+0x7d7a 026997 increase -160 ,temp 
+0x7d7b 026998 set0 28 ,temp 
+0x7d7c 026999 storet 4 ,mem_ui_timer_last_btclk 
+:      027000 ui_timer_check_send_evt:
+0x7d7d 027001 increase bt_evt_timer_init ,pdata 
+0x7d7e 027002 store 1 ,mem_fifo_temp 
+0x7d7f 027003 branch ui_ipc_send_event 
+:      027009 ui_ipc_get_lock:
+0x7d80 027010 jam 1 ,mem_ipc_lock_bt 
+:      027011 ui_ipc_get_lock_wait:
+0x7d81 027012 fetch 1 ,mem_ipc_lock_c51 
+0x7d82 027013 nbranch ui_ipc_get_lock_wait ,blank 
+0x7d83 027014 rtn 
+:      027016 ui_ipc_put_lock:
+0x7d84 027017 jam 0 ,mem_ipc_lock_bt 
+0x7d85 027018 rtn 
+:      027022 ui_ipc_send_event:
+0x7d86 027023 set1 mark_ext_patch ,mark 
+0x7d87 027024 bpatch patch3e_4 ,mem_patch3e 
+0x7d88 027025 call ui_ipc_get_lock 
+0x7d89 027026 copy rega ,pdata 
+0x7d8a 027027 store 4 ,mem_ipc_rega_temp 
+0x7d8b 027028 arg mem_ipc_fifo_bt2c51 ,rega 
+0x7d8c 027029 call fifo_in 
+0x7d8d 027030 fetch 4 ,mem_ipc_rega_temp 
+0x7d8e 027031 copy pdata ,rega 
+0x7d8f 027032 branch ui_ipc_put_lock 
+:      027034 ui_ipc_send_cmd:
+0x7d90 027035 set1 mark_ext_patch ,mark 
+0x7d91 027036 bpatch patch3e_5 ,mem_patch3e 
+0x7d92 027037 call ui_ipc_get_lock 
+0x7d93 027038 copy rega ,pdata 
+0x7d94 027039 store 4 ,mem_ipc_rega_temp 
+0x7d95 027040 arg mem_ipc_fifo_c512bt ,rega 
+0x7d96 027041 call fifo_in 
+0x7d97 027042 fetch 4 ,mem_ipc_rega_temp 
+0x7d98 027043 copy pdata ,rega 
+0x7d99 027044 branch ui_ipc_put_lock 
+:      027046 ui_ipc_clean_all_fifo:
+0x7d9a 027047 setarg 0 
+0x7d9b 027048 store util_fifo_len ,mem_ipc_fifo_c512bt 
+0x7d9c 027049 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+0x7d9d 027050 rtn 
+:      027052 check_51cmd:
+0x7d9e 027053 set1 mark_ext_patch ,mark 
+0x7d9f 027054 bpatch patch3e_6 ,mem_patch3e 
+0x7da0 027055 fetch 1 ,mem_hci_cmd 
+0x7da1 027056 nrtn blank 
+0x7da2 027057 arg mem_ipc_fifo_c512bt ,rega 
+0x7da3 027058 call fifo_is_empty 
+0x7da4 027059 rtn blank 
+0x7da5 027060 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+0x7da6 027061 call check_51cmd_once 
+0x7da7 027062 fetch 1 ,mem_ipc_skip_continue_proc 
+0x7da8 027063 branch check_51cmd ,blank 
+0x7da9 027064 rtn 
+:      027066 check_51cmd_once:
+0x7daa 027067 set1 mark_ext_patch ,mark 
+0x7dab 027068 bpatch patch3e_7 ,mem_patch3e 
+0x7dac 027069 call ui_ipc_get_lock 
+0x7dad 027070 arg mem_ipc_fifo_c512bt ,rega 
+0x7dae 027071 call fifo_out 
+0x7daf 027072 copy pdata ,temp 
+0x7db0 027073 call ui_ipc_put_lock 
+0x7db1 027074 copy temp ,pdata 
+0x7db2 027075 rtn blank 
+0x7db3 027076 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+0x7db4 027077 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+0x7db5 027078 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+0x7db6 027079 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+0x7db7 027080 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+0x7db8 027081 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+0x7db9 027082 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+0x7dba 027083 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+0x7dbb 027084 beq bt_cmd_start_adv ,check_51cmd_adv 
+0x7dbc 027085 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+0x7dbd 027086 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+0x7dbe 027087 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+0x7dbf 027088 beq bt_cmd_led_blink ,ui_led_blink_start 
+0x7dc0 027089 beq bt_cmd_led_on ,ui_led_on 
+0x7dc1 027090 beq bt_cmd_led_off ,ui_led_blink_stop 
+0x7dc2 027091 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+0x7dc3 027092 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+0x7dc4 027093 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+0x7dc5 027094 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+0x7dc6 027095 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+0x7dc7 027096 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+0x7dc8 027097 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+0x7dc9 027099 store 1 ,mem_fifo_temp 
+0x7dca 027100 set1 mark_ext_patch ,mark 
+0x7dcb 027101 bpatch patch3f_0 ,mem_patch3f 
+0x7dcc 027102 call lmo_fifo_check 
+0x7dcd 027103 nbranch check_51cmd_restore ,blank 
+:      027104 check_51cmd_once_continue:
+0x7dce 027105 fetch 1 ,mem_fifo_temp 
+0x7dcf 027106 bmark0 mark_context ,check_51cmd_check_idle 
+0x7dd0 027107 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+0x7dd1 027108 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+0x7dd2 027109 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+0x7dd3 027110 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+0x7dd4 027111 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+0x7dd5 027112 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+0x7dd6 027113 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+0x7dd7 027114 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+0x7dd8 027115 beq bt_cmd_le_update_conn ,check_51cmd_ble_update_connect_param 
+0x7dd9 027116 beq bt_cmd_dhkey_not_accept ,check_51cmd_dhkey_not_accept 
+0x7dda 027117 rtn 
+:      027119 check_51cmd_dhkey_not_accept:
+0x7ddb 027120 call tid_set_reply 
+0x7ddc 027121 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x7ddd 027122 branch parse_lmp_dhkey_check_reject 
+:      027124 check_51cmd_ble_update_connect_param:
+0x7dde 027125 jam xt_ll_connection_param_req ,mem_fifo_temp 
+0x7ddf 027126 branch le_xtype_fifo_in 
+:      027127 check_51cmd_check_idle:
+0x7de0 027128 store 1 ,mem_fifo_temp 
+0x7de1 027129 call context_check_idle 
+0x7de2 027130 branch check_51cmd_restore ,zero 
+0x7de3 027131 call context_search_plap 
+0x7de4 027132 nrtn zero 
+:      027133 check_51cmd_restore:
+0x7de5 027134 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+0x7de6 027135 branch ui_ipc_send_cmd 
+:      027138 check_51cmd_role_switch:
+0x7de7 027139 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x7de8 027140 set1 mark_switch_initiated ,mark 
+0x7de9 027141 nrtn master 
+0x7dea 027142 jam switch_flag_init ,mem_switch_flag 
+0x7deb 027143 jam lmp_switch_req ,mem_lmo_opcode2 
+0x7dec 027144 fetch 1 ,mem_connection_options 
+0x7ded 027145 set0 connection_switch ,pdata 
+0x7dee 027146 store 1 ,mem_connection_options 
+0x7def 027147 rtn 
+:      027149 check_51cmd_start_discovery:
+0x7df0 027150 fetch 2 ,mem_ui_state_map 
+0x7df1 027151 set1 ui_state_bt_discovery 
+0x7df2 027152 store 2 ,mem_ui_state_map 
+0x7df3 027153 jam 3 ,mem_scan_mode 
+0x7df4 027154 rtn 
+:      027156 check_51cmd_stop_discovery:
+0x7df5 027157 jam 0 ,mem_hid_handshake_timer_count 
+0x7df6 027158 jam 0 ,mem_scan_mode 
+0x7df7 027159 fetch 2 ,mem_ui_state_map 
+0x7df8 027160 set0 ui_state_bt_discovery 
+0x7df9 027161 store 2 ,mem_ui_state_map 
+0x7dfa 027162 rtn 
+:      027164 check_51cmd_reconnect:
+0x7dfb 027165 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x7dfc 027166 rtn 
+:      027168 check_51cmd_disconnect:
+0x7dfd 027169 jam lmp_detach ,mem_lmo_opcode2 
+0x7dfe 027170 jam other_end_terminated ,mem_disconn_reason_send 
+0x7dff 027171 rtn 
+:      027174 check_51cmd_enter_sniff_subrating:
+0x7e00 027175 rtn 
+:      027177 check_51cmd_exit_sniff_subrating:
+0x7e01 027178 rtn 
+:      027180 check_51cmd_sniff_test:
+0x7e02 027181 rtn 
+:      027183 check_51cmd_pincode:
+0x7e03 027184 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x7e04 027185 branch cmd_pair 
+:      027187 check_51cmd_inq:
+0x7e05 027188 rtn 
+:      027189 check_51cmd_stop_inq:
+0x7e06 027190 rtn 
+:      027191 check_51cmd_adv:
+0x7e07 027192 jam on ,mem_le_adv_enable 
+0x7e08 027193 jam adv_ind ,mem_le_adv_type 
+0x7e09 027194 fetch 2 ,mem_ui_state_map 
+0x7e0a 027195 set1 ui_state_ble_adv ,pdata 
+0x7e0b 027196 store 2 ,mem_ui_state_map 
+0x7e0c 027197 rtn 
+:      027198 check_51cmd_stop_adv:
+0x7e0d 027199 fetch 2 ,mem_ui_state_map 
+0x7e0e 027200 set0 ui_state_ble_adv ,pdata 
+0x7e0f 027201 store 2 ,mem_ui_state_map 
+0x7e10 027202 jam off ,mem_le_adv_enable 
+0x7e11 027203 rtn 
+:      027204 check_51cmd_direct_adv:
+0x7e12 027205 jam on ,mem_le_adv_enable 
+0x7e13 027206 jam adv_direct_ind ,mem_le_adv_type 
+0x7e14 027207 fetch 2 ,mem_ui_state_map 
+0x7e15 027208 set1 ui_state_ble_adv ,pdata 
+0x7e16 027209 store 2 ,mem_ui_state_map 
+0x7e17 027210 rtn 
+:      027211 check_51cmd_stop_direct_adv:
+0x7e18 027212 fetch 2 ,mem_ui_state_map 
+0x7e19 027213 set0 ui_state_ble_adv ,pdata 
+0x7e1a 027214 store 2 ,mem_ui_state_map 
+0x7e1b 027215 jam off ,mem_le_adv_enable 
+0x7e1c 027216 rtn 
+:      027217 check_51cmd_le_disconnect:
+0x7e1d 027218 setarg 10 
+0x7e1e 027219 store 2 ,mem_le_superto 
+0x7e1f 027220 jam xt_ll_terminate_ind ,mem_fifo_temp 
+0x7e20 027221 branch le_xtype_fifo_in 
+:      027222 check_51cmd_le_start_con:
+0x7e21 027223 jam on ,mem_le_scan_enable 
+0x7e22 027224 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x7e23 027227 rtn 
+:      027228 check_51cmd_start_scan:
+0x7e24 027229 jam on ,mem_le_scan_enable 
+0x7e25 027230 rtn 
+:      027231 check_51cmd_stop_scan:
+0x7e26 027232 jam off ,mem_le_scan_enable 
+0x7e27 027233 jam 0 ,mem_hci_cmd 
+0x7e28 027234 rtn 
+:      027235 check_51cmd_le_smp_sec_req:
+0x7e29 027236 jam xt_smp_security_request ,mem_fifo_temp 
+0x7e2a 027237 branch le_xtype_fifo_in 
+:      027238 check_51cmd_hibernate:
+0x7e2b 027239 set1 mark_ext_patch ,mark 
+0x7e2c 027240 bpatch patch3f_1 ,mem_patch3f 
+0x7e2d 027241 fetch 2 ,mem_cb_before_hibernate 
+0x7e2e 027242 call callback_func 
+0x7e2f 027243 enable user 
+0x7e30 027244 hfetch 4 ,0x8138 
+0x7e31 027245 setflag user ,26 ,pdata 
+0x7e32 027246 hstore 4 ,core_lpm_reg 
+0x7e33 027247 call lpm_write_ctrl 
+0x7e34 027248 fetch 1 ,mem_ui_button_gpio 
+0x7e35 027249 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+0x7e36 027250 copy pdata ,temp 
+0x7e37 027251 call gpio_config_input 
+:      027252 check_51cmd_hibernate_btn_disabled:
+0x7e38 027253 call ui_led_off 
+0x7e39 027254 call ui_ipc_clean_all_fifo 
+0x7e3a 027255 branch lpm_hibernate 
+:      027257 check_51cmd_le_start_write:
+0x7e3b 027258 jam 1 ,mem_le_switch_send_data 
+0x7e3c 027259 rtn 
+:      027261 check_51cmd_bb_reconn_cancel:
+0x7e3d 027262 force page_length_timer ,queue 
+0x7e3e 027263 branch timer_stop 
+:      027266 ui_check_paring_button:
+0x7e3f 027267 fetch 1 ,mem_ui_state_map 
+0x7e40 027268 rtnbit0 ui_state_btn_down 
+0x7e41 027269 rtnbit0 ui_state_bt_reconnect 
+0x7e42 027270 branch check_51cmd_bb_reconn_cancel 
+:      027274 right_shift_n:
+0x7e43 027275 sub loopcnt ,0 ,null 
+0x7e44 027276 rtn zero 
+:      027277 right_shift_n_loop:
+0x7e45 027278 rshift pdata ,pdata 
+0x7e46 027279 loop right_shift_n_loop 
+0x7e47 027280 rtn 
+:      027282 push_stack:
+0x7e48 027283 deposit contw 
+0x7e49 027284 store 2 ,mem_contw 
+0x7e4a 027285 storet 8 ,mem_temp 
+0x7e4b 027286 deposit timeup 
+0x7e4c 027287 store 4 ,mem_timeup 
+0x7e4d 027288 deposit rega 
+0x7e4e 027289 store 4 ,mem_rega 
+0x7e4f 027290 deposit regb 
+0x7e50 027291 store 4 ,mem_regb 
+0x7e51 027292 deposit regc 
+0x7e52 027293 store 3 ,mem_regc 
+0x7e53 027294 deposit contr 
+0x7e54 027295 store 2 ,mem_contr 
+0x7e55 027296 rtn 
+:      027297 pop_stack:
+0x7e56 027298 fetcht 8 ,mem_temp 
+0x7e57 027299 fetch 4 ,mem_timeup 
+0x7e58 027300 iforce timeup 
+0x7e59 027301 fetch 4 ,mem_rega 
+0x7e5a 027302 iforce rega 
+0x7e5b 027303 fetch 4 ,mem_regb 
+0x7e5c 027304 iforce regb 
+0x7e5d 027305 fetch 3 ,mem_regc 
+0x7e5e 027306 iforce regc 
+0x7e5f 027307 fetch 2 ,mem_contw 
+0x7e60 027308 iforce contw 
+0x7e61 027309 fetch 2 ,mem_contr 
+0x7e62 027310 iforce contr 
+0x7e63 027311 rtn 
+:      027313 get_contw:
+0x7e64 027314 fetch 2 ,mem_contw 
+0x7e65 027315 copy pdata ,contw 
+0x7e66 027316 rtn 
+:      027317 get_contr:
+0x7e67 027318 fetch 2 ,mem_contr 
+0x7e68 027319 copy pdata ,contr 
+0x7e69 027320 rtn 
+:      027321 store_contw:
+0x7e6a 027322 copy contw ,pdata 
+0x7e6b 027323 store 2 ,mem_contw 
+0x7e6c 027324 rtn 
+:      027325 store_contr:
+0x7e6d 027326 copy contr ,pdata 
+0x7e6e 027327 store 2 ,mem_contr 
+0x7e6f 027328 rtn 
+:      027332 save_cont_pointers:
+0x7e70 027333 copy contw ,pdata 
+0x7e71 027334 store 2 ,mem_hold_contw 
+0x7e72 027335 copy contr ,pdata 
+0x7e73 027336 store 2 ,mem_hold_contr 
+0x7e74 027337 rtn 
+:      027338 load_cont_pointers:
+0x7e75 027339 fetch 2 ,mem_hold_contw 
+0x7e76 027340 copy pdata ,contw 
+0x7e77 027341 fetch 2 ,mem_hold_contr 
+0x7e78 027342 copy pdata ,contr 
+0x7e79 027343 rtn 
+:      027345 memcpy96:
+0x7e7a 027346 call memcpy32 
+:      027347 memcpy64:
+0x7e7b 027348 call memcpy32 
+0x7e7c 027349 branch memcpy32 
+:      027350 memcpy12:
+0x7e7d 027351 call memcpy8 
+:      027352 memcpy4:
+0x7e7e 027353 ifetch 4 ,contr 
+0x7e7f 027354 istore 4 ,contw 
+0x7e80 027355 rtn 
+:      027356 memcpy8:
+0x7e81 027357 ifetch 8 ,contr 
+0x7e82 027358 istore 8 ,contw 
+0x7e83 027359 rtn 
+:      027361 memcpy48:
+0x7e84 027362 call memcpy16 
+:      027363 memcpy32:
+0x7e85 027364 call memcpy8 
+:      027365 memcpy24:
+0x7e86 027366 call memcpy8 
+:      027367 memcpy16:
+0x7e87 027368 call memcpy8 
+0x7e88 027369 branch memcpy8 
+:      027373 delay_10ms:
+0x7e89 027374 copy clkn_bt ,pdata 
+0x7e8a 027375 increase 16 ,pdata 
+0x7e8b 027376 increase 16 ,pdata 
+:      027377 delay_ms_wait:
+0x7e8c 027378 copy clkn_bt ,temp 
+0x7e8d 027379 isub temp ,null 
+0x7e8e 027380 branch delay_ms_wait ,positive 
+0x7e8f 027381 rtn 
+:      027383 bn_zero:
+0x7e90 027384 force 3 ,loopcnt 
+:      027385 memset0:
+0x7e91 027386 force 0 ,pdata 
+:      027387 memset8:
+0x7e92 027388 istore 8 ,contw 
+0x7e93 027389 loop memset8 
+0x7e94 027390 rtn 
+:      027392 memset0_8:
+0x7e95 027393 force 0 ,pdata 
+0x7e96 027394 istore 8 ,contw 
+0x7e97 027395 rtn 
+:      027396 memset0_4:
+0x7e98 027397 force 0 ,pdata 
+0x7e99 027398 istore 4 ,contw 
+0x7e9a 027399 rtn 
+:      027401 clear_mem_256:
+0x7e9b 027402 force 4 ,loopcnt 
+0x7e9c 027403 branch memset0 
+:      027404 clear_mem_512:
+0x7e9d 027405 force 8 ,loopcnt 
+0x7e9e 027406 branch memset0 
+:      027408 clear_mem:
+0x7e9f 027409 deposit loopcnt 
+0x7ea0 027410 rtn blank 
+0x7ea1 027411 setarg 0 
+:      027412 clear_mem_loop:
+0x7ea2 027413 istore 1 ,contw 
+0x7ea3 027414 loop clear_mem_loop 
+0x7ea4 027415 rtn 
+:      027418 clear_temp_block:
+0x7ea5 027419 arg 32 ,loopcnt 
+0x7ea6 027420 arg mem_temp_block0 ,contw 
+0x7ea7 027421 branch clear_mem 
+:      027423 xor_loop:
+0x7ea8 027424 ifetch 4 ,regc 
+0x7ea9 027425 ifetcht 4 ,rega 
+0x7eaa 027426 ixor temp ,pdata 
+0x7eab 027427 istore 4 ,contw 
+0x7eac 027428 increase 4 ,rega 
+0x7ead 027429 increase 4 ,regc 
+0x7eae 027430 loop xor_loop 
+0x7eaf 027431 rtn 
+:      027435 inverse_data:
+0x7eb0 027436 set1 mark_ext_patch ,mark 
+0x7eb1 027437 bpatch patch3f_2 ,mem_patch3f 
+0x7eb2 027438 copy loopcnt ,pdata 
+0x7eb3 027439 sub pdata ,1 ,null 
+0x7eb4 027440 rtn positive 
+0x7eb5 027441 iadd rega ,regb 
+0x7eb6 027442 increase -1 ,regb 
+0x7eb7 027443 rshift loopcnt ,loopcnt 
+:      027444 inverse_loop:
+0x7eb8 027445 ifetcht 1 ,rega 
+0x7eb9 027446 ifetch 1 ,regb 
+0x7eba 027447 istore 1 ,rega 
+0x7ebb 027448 istoret 1 ,regb 
+0x7ebc 027449 increase -1 ,regb 
+0x7ebd 027450 increase 1 ,rega 
+0x7ebe 027451 loop inverse_loop 
+0x7ebf 027452 rtn 
+:      027455 memcpy_fast:
+0x7ec0 027456 deposit loopcnt 
+0x7ec1 027457 rtn blank 
+:      027458 memcpy_fast_loop:
+0x7ec2 027459 increase -8 ,loopcnt 
+0x7ec3 027460 call memcpy8 ,positive 
+0x7ec4 027461 rtn zero 
+0x7ec5 027462 branch memcpy_fast_loop ,positive 
+0x7ec6 027463 increase 8 ,loopcnt 
+:      027464 memcpy_fast_loop_four:
+0x7ec7 027465 increase -4 ,loopcnt 
+0x7ec8 027466 call memcpy4 ,positive 
+0x7ec9 027467 rtn zero 
+0x7eca 027468 branch memcpy_fast_loop_four ,positive 
+0x7ecb 027469 increase 4 ,loopcnt 
+0x7ecc 027470 branch memcpy 
+:      027472 memcpy:
+0x7ecd 027473 deposit loopcnt 
+0x7ece 027474 rtn blank 
+:      027475 memcpy_loop:
+0x7ecf 027476 ifetch 1 ,contr 
+0x7ed0 027477 istore 1 ,contw 
+0x7ed1 027478 loop memcpy_loop 
+0x7ed2 027479 rtn 
+:      027481 timer_stop:
+0x7ed3 027482 setarg 0 
+:      027483 timer_init:
+0x7ed4 027484 rshift clkn_bt ,temp 
+0x7ed5 027485 storet 4 ,mem_last_clkn 
+0x7ed6 027486 arg mem_timers ,contw 
+0x7ed7 027487 iforce temp 
+0x7ed8 027488 lshift queue ,pdata 
+0x7ed9 027489 iadd contw ,contw 
+0x7eda 027490 istoret 2 ,contw 
+0x7edb 027491 set1 mark_ext_patch ,mark 
+0x7edc 027492 bpatch patch3f_3 ,mem_patch3f 
+0x7edd 027493 rtn 
+:      027495 timer_check_timeout:
+0x7ede 027496 arg 0x800 ,timeup 
+0x7edf 027497 lshift16 timeup ,timeup 
+0x7ee0 027498 iadd timeup ,pdata 
+0x7ee1 027499 rtn 
+:      027502 timer_check:
+0x7ee2 027503 set1 mark_ext_patch ,mark 
+0x7ee3 027504 bpatch patch3f_4 ,mem_patch3f 
+0x7ee4 027505 fetcht 4 ,mem_last_clkn 
+0x7ee5 027506 rshift clkn_bt ,pdata 
+0x7ee6 027507 store 4 ,mem_last_clkn 
+0x7ee7 027508 isub temp ,null 
+0x7ee8 027509 ncall timer_check_timeout ,positive 
+0x7ee9 027510 isub temp ,timeup 
+0x7eea 027511 copy timeup ,temp 
+0x7eeb 027512 arg mem_timers ,contr 
+0x7eec 027513 copy contr ,contw 
+0x7eed 027514 arg 16 ,loopcnt 
+:      027515 timer_loop:
+0x7eee 027516 ifetch 2 ,contr 
+0x7eef 027517 isub temp ,pdata 
+0x7ef0 027518 branch timer_counting ,positive 
+0x7ef1 027519 force 0 ,pdata 
+:      027520 timer_counting:
+0x7ef2 027521 istore 2 ,contw 
+0x7ef3 027522 loop timer_loop 
+0x7ef4 027523 arg mem_timers ,contr 
+0x7ef5 027524 lshift queue ,pdata 
+0x7ef6 027525 iadd contr ,contr 
+0x7ef7 027526 ifetch 2 ,contr 
+0x7ef8 027527 rtn 
+:      027532 clk_add:
+0x7ef9 027533 iadd temp ,temp 
+0x7efa 027534 copy temp ,loopcnt 
+0x7efb 027535 setarg 3750 
+0x7efc 027536 isub loopcnt ,pdata 
+0x7efd 027537 rtn positive 
+0x7efe 027538 sub pdata ,0 ,pdata 
+0x7eff 027539 rshift16 temp ,temp 
+0x7f00 027540 increase 1 ,temp 
+0x7f01 027541 lshift16 temp ,temp 
+0x7f02 027542 ior temp ,temp 
+0x7f03 027543 rtn 
+:      027545 clk_diff_rt:
+0x7f04 027546 call clk_diff 
+0x7f05 027547 branch clk2rt 
+:      027550 clk_diff:
+0x7f06 027551 disable user 
+0x7f07 027552 isub temp ,pdata 
+0x7f08 027553 branch clk_diff_pos ,positive 
+0x7f09 027554 enable user 
+0x7f0a 027555 sub pdata ,0 ,pdata 
+:      027556 clk_diff_pos:
+0x7f0b 027557 rtnbit0 15 
+0x7f0c 027558 arg -61786 ,temp 
+0x7f0d 027559 iadd temp ,pdata 
+0x7f0e 027560 set0 64 ,pdata 
+0x7f0f 027561 rtn 
+:      027563 clk2rt:
+0x7f10 027564 iforce contr 
+0x7f11 027565 rshift16 pdata ,pdata 
+0x7f12 027566 arg 3750 ,temp 
+0x7f13 027567 imul32 temp ,pdata 
+0x7f14 027568 iadd contr ,pdata 
+0x7f15 027569 rtn 
+:      027572 clk2lpo:
+0x7f16 027573 lshift8 pdata ,pdata 
+0x7f17 027574 lshift4 pdata ,pdata 
+0x7f18 027575 fetcht 3 ,mem_clks_per_lpo 
+0x7f19 027576 idiv temp 
+0x7f1a 027577 call wait_div_end 
+0x7f1b 027578 quotient temp 
+0x7f1c 027579 rtn 
+:      027582 clk2bt:
+0x7f1d 027583 arg 3750 ,temp 
+0x7f1e 027584 idiv temp 
+0x7f1f 027585 call wait_div_end 
+0x7f20 027586 quotient pdata 
+0x7f21 027587 lshift16 pdata ,pdata 
+0x7f22 027588 remainder temp 
+0x7f23 027589 ior temp ,temp 
+0x7f24 027590 rtn 
+:      027597 string2dec_from_uart:
+0x7f25 027598 arg 0 ,temp 
+:      027599 string2dec_from_uart_done:
+0x7f26 027600 copy temp ,regc 
+0x7f27 027601 ifetch 1 ,contru 
+0x7f28 027602 call uchar2dialog 
+0x7f29 027603 copy regc ,temp 
+0x7f2a 027604 call swap 
+0x7f2b 027605 arg 10 ,regb 
+0x7f2c 027606 imul32 regb ,pdata 
+0x7f2d 027607 iadd temp ,pdata 
+0x7f2e 027608 copy pdata ,temp 
+0x7f2f 027609 loop string2dec_from_uart_done 
+0x7f30 027610 rtn 
+:      027614 uchar2dialog:
+0x7f31 027615 arg 0x3a ,temp 
+0x7f32 027616 isub temp ,null 
+0x7f33 027617 nbranch uchar2dialog_number ,positive 
+0x7f34 027618 arg 0x61 ,temp 
+0x7f35 027619 isub temp ,null 
+0x7f36 027620 branch uchar2dialog_a2f ,positive 
+0x7f37 027621 arg 0x37 ,temp 
+0x7f38 027622 isub temp ,pdata 
+0x7f39 027623 rtn 
+:      027624 uchar2dialog_number:
+0x7f3a 027625 arg 0x30 ,temp 
+0x7f3b 027626 isub temp ,pdata 
+0x7f3c 027627 rtn 
+:      027628 uchar2dialog_a2f:
+0x7f3d 027629 arg 0x57 ,temp 
+0x7f3e 027630 isub temp ,pdata 
+0x7f3f 027631 rtn 
+:      027633 pn9:
+0x7f40 027634 copy temp ,alarm 
+0x7f41 027635 setarg 0x1ff 
+0x7f42 027636 force 0 ,regb 
+:      027637 pn9_loop:
+0x7f43 027638 rshift3 pdata ,rega 
+0x7f44 027639 rshift rega ,rega 
+0x7f45 027640 ixor rega ,rega 
+0x7f46 027641 isolate1 0 ,rega 
+0x7f47 027642 setflag true ,9 ,pdata 
+0x7f48 027643 rshift temp ,temp 
+0x7f49 027644 isolate1 0 ,pdata 
+0x7f4a 027645 setflag true ,7 ,temp 
+0x7f4b 027646 rshift pdata ,pdata 
+0x7f4c 027647 increase 1 ,regb 
+0x7f4d 027648 compare 0 ,regb ,0x7 
+0x7f4e 027649 nbranch pn9_loop ,true 
+0x7f4f 027650 istoret 1 ,contw 
+0x7f50 027651 loop pn9_loop 
+0x7f51 027652 copy alarm ,temp 
+0x7f52 027653 rtn 
+:      027656 wait_div_end:
+0x7f53 027657 rtn modone 
+0x7f54 027658 branch wait_div_end 
+:      027669 string_compare:
+0x7f55 027670 ifetch 1 ,rega 
+0x7f56 027671 ifetcht 1 ,regb 
+0x7f57 027672 isub temp ,null 
+0x7f58 027673 nrtn zero 
+0x7f59 027674 increase 1 ,rega 
+0x7f5a 027675 increase 1 ,regb 
+0x7f5b 027676 loop string_compare 
+0x7f5c 027677 force 0 ,null 
+0x7f5d 027678 rtn 
+:      027681 ceiling:
+0x7f5e 027682 isub temp ,null 
+0x7f5f 027683 nrtn positive 
+0x7f60 027684 deposit temp 
+0x7f61 027685 rtn 
+:      027687 swap:
+0x7f62 027688 iadd temp ,pdata 
+0x7f63 027689 isub temp ,temp 
+0x7f64 027690 isub temp ,pdata 
+0x7f65 027691 rtn 
+:      027693 clean_mem:
+0x7f66 027694 arg 0x200 ,loopcnt 
+0x7f67 027695 arg 0x4000 ,contw 
+0x7f68 027696 branch memset0 
+:      027748 callback_func:
+0x7f69 027749 rtn blank 
+0x7f6a 027750 copy pdata ,pc 
+:      027753 wait_uarttx:
+0x7f6b 027754 hfetch 2 ,core_uart_txitems 
+0x7f6c 027755 nbranch wait_uarttx ,blank 
+0x7f6d 027756 rtn 
+:      027758 get_uart_rrptr:
+0x7f6e 027759 hfetch 2 ,core_uart_rrptr 
+0x7f6f 027760 copy pdata ,contru 
+0x7f70 027761 rtn 
+:      027764 ice_break:
+0x7f71 027765 hjam 0x1 ,core_ice_ctrl 
+0x7f72 027766 rtn 
+:      027768 ice_setbp:
+0x7f73 027769 hstore 2 ,core_ice_break0 
+0x7f74 027770 hfetch 1 ,core_ice_ctrl 
+0x7f75 027771 set1 4 ,pdata 
+0x7f76 027772 hstore 1 ,core_ice_ctrl 
+0x7f77 027773 rtn 
+:      027774 ice_setbp2:
+0x7f78 027775 hstore 2 ,core_ice_break1 
+0x7f79 027776 hfetch 1 ,core_ice_ctrl 
+0x7f7a 027777 set1 6 ,pdata 
+0x7f7b 027778 hstore 1 ,core_ice_ctrl 
+0x7f7c 027779 rtn 
+:      027781 ice_set_write_bp:
+0x7f7d 027782 hstore 2 ,core_ice_break0 
+0x7f7e 027783 hjam 0x30 ,core_ice_ctrl 
+0x7f7f 027784 rtn 
+:      027788 test_enable_white:
+0x7f80 027789 hfetch 1 ,core_config 
+0x7f81 027790 set0 whiteoff_bit ,pdata 
+0x7f82 027791 hstore 1 ,core_config 
+0x7f83 027792 rtn 
+:      027794 check_uart_tx_buff:
+0x7f84 027795 hfetch 2 ,core_uart_txitems 
+0x7f85 027796 arg uart_air_control_threshold ,temp 
+:      027797 pdata_sub_temp:
+0x7f86 027798 isub temp ,null 
+0x7f87 027799 rtn 
+:      027805 fifo_in:
+0x7f88 027806 set1 mark_ext_patch ,mark 
+0x7f89 027807 bpatch patch3f_5 ,mem_patch3f 
+0x7f8a 027808 ifetcht util_fifo_len ,rega 
+0x7f8b 027809 and temp ,0xff ,pdata 
+0x7f8c 027810 nbranch fifo_in_push ,blank 
+0x7f8d 027811 rshift8 temp ,pdata 
+0x7f8e 027812 istore util_fifo_len ,rega 
+:      027813 fifo_in_push:
+0x7f8f 027814 increase util_fifo_len + util_fifo_offset ,rega 
+0x7f90 027815 ifetch 1 ,rega 
+0x7f91 027816 nbranch assert ,blank 
+0x7f92 027817 fetch 1 ,mem_fifo_temp 
+0x7f93 027818 istore 1 ,rega 
+0x7f94 027819 rtn 
+:      027824 fifo_out:
+0x7f95 027825 set1 mark_ext_patch ,mark 
+0x7f96 027826 bpatch patch3f_6 ,mem_patch3f 
+0x7f97 027827 arg util_fifo_len ,loopcnt 
+0x7f98 027828 ifetch util_fifo_len ,rega 
+0x7f99 027829 rtn blank 
+:      027830 fifo_out_loop:
+0x7f9a 027831 ifetch 1 ,rega 
+0x7f9b 027832 nbranch fifo_out_end ,blank 
+0x7f9c 027833 increase 1 ,rega 
+0x7f9d 027834 loop fifo_out_loop 
+0x7f9e 027835 branch assert 
+:      027836 fifo_out_end:
+0x7f9f 027837 arg 0 ,temp 
+0x7fa0 027838 istoret 1 ,rega 
+0x7fa1 027839 rtn 
+:      027844 fifo_is_empty:
+0x7fa2 027845 ifetch util_fifo_len ,rega 
+0x7fa3 027846 rtn 
+:      027851 fifo_is_full:
+0x7fa4 027852 ifetch 1 ,rega 
+0x7fa5 027853 rtn 
+:      027856 fifo_is_near_full:
+0x7fa6 027857 ifetch 2 ,rega 
+0x7fa7 027858 rtn 
+:      027862 fifo_content_count:
+0x7fa8 027863 arg 0 ,temp 
+:      027864 fifo_content_count_loop:
+0x7fa9 027865 fetch 1 ,contr 
+0x7faa 027866 loop fifo_content_count_loop ,blank 
+0x7fab 027867 increase 1 ,temp 
+0x7fac 027868 loop fifo_content_count_loop 
+0x7fad 027869 copy temp ,pdata 
+0x7fae 027870 rtn 
+:      027872 not_greater_than:
+0x7faf 027873 isub temp ,null 
+0x7fb0 027874 nrtn positive 
+0x7fb1 027875 copy temp ,pdata 
+0x7fb2 027876 rtn 
Index: ble fast connect receive/output/bt_program23.meta
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.meta	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.meta	(working copy)
@@ -0,0 +1,27878 @@
+define REVD
+//define FPGA
+define ROMCODE
+define PATCH
+define ADC
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+//define ACL_DEBUG
+//define DCDC
+define NVRAM
+define RELEASE
+define SECURE_CONNECTION
+define DEBUG_RF_INIT
+//define SPI_SIMULATE
+//define ROM_RESPIN_OPTIONAL
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+//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
+//define COMPILE_24G
+
+INCLUDE "bt_format"
+
+org 0x0000		// start from patch ram address start
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_3,p_main_loop
+	beq patch10_6,p_shutdown_radio
+	beq patch11_2,p_set_freq_tx
+	beq patch11_3,p_initialize_radio_cont	
+	beq patch16_4,p_app_init
+	branch assert
+	
+patch_ext:
+	beq patch20_3,p_le_master_dispatch_end
+	beq patch23_1,p_le_transmit
+	beq patch25_3,p_le_scan
+	beq patch25_6,p_le_conn
+	beq patch26_2,p_le_prepare_smp1
+	beq patch26_3,p_le_prepare_att
+	beq patch27_6,p_le_parse_att
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3b_0,p_shutter_init_end
+	beq patch3b_1,p_shutter_le_bb_event_100ms_loop
+	beq patch3b_4,p_shutter_le_key_process
+	beq patch3e_7,p_check_51cmd_once
+	branch assert
+
+p_main_loop:
+	arg uart_rx_timer,queue
+	call timer_check
+	ncall p_main_loop_next,blank
+	call p_uart_send_data_timer_init
+	call p_le_parse_att
+p_main_loop_next:
+	branch main_loop+2
+
+p_uart_send_data_timer_init:
+	setarg TIMER_UART_SEND_DATA_DELAY
+	arg uart_rx_timer,queue
+	branch timer_init
+
+p_le_prepare_smp1:
+	fetch 1,mem_le_l2cap
+p_le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,p_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            
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+	branch assert
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist2
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+p_app_init:
+	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_shutter,p_shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+
+p_shutter_init:
+	rtn wake	
+	call init_shutter_le_att_list
+	arg 135,loopcnt
+	arg mem_shutter_le_att_list+230,contw
+	arg mem_shutter_att_list_patch,contr
+	call memcpy
+	call shutter_init_param	
+
+	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_init
+
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg p_scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+
+	call p_shutter_uart_init
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call p_shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	branch shutter_init0+5
+
+p_shutter_init_end:
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH,p_shutter_le_hard_switch_power_on_signal
+	branch shutter_init0+9
+
+p_shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+p_in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch p_in_poweron_hard_switch_led,blank
+p_shutter_le_soft_switch_power_on_signal:
+	jam ON,mem_le_scan_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	branch p_shutter_le_fast_scan
+	
+
+p_shutter_le_fast_scan:
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam 0,mem_shutter_key_data_flag_1
+	jam ON,mem_le_scan_enable
+	setarg mem_fast_adv_led_style
+	branch shutter_ui_led_send
+
+p_le_scan:
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	branch le_create_conn,zero
+	branch p_le_addr_compare
+
+p_le_addr_compare:
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_slave_peer_addr
+	isub temp,null
+	nrtn zero
+	fetch 6,mem_le_plap
+	store 6,mem_app_peer_addr 	
+	jam 28,mem_le_conn_interval
+	setarg 0x100
+	store 2,mem_le_conn_superto
+	jam OFF,mem_le_scan_enable
+	jam 1,mem_le_conn_state
+	branch app_ble_start_conn
+
+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_LE_START_CONN,p_check_51cmd_le_start_con
+	branch check_51cmd_once+9
+p_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
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_RESPONSE,p_le_parse_att_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_parse_att_handle_value_notify
+	rtn
+
+p_le_parse_att_handle_value_notify:
+	branch p_shutter_uart_tx_prepare
+	
+
+p_le_parse_att_write_response:
+	fetch 1,mem_le_send_write_request_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_send_write_request_count
+	beq 1,p_le_att_send_write_request1
+	beq 0,p_le_att_send_write_request0
+	rtn
+	
+p_le_att_send_write_request1:
+	setarg 0x27
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_att_send_write_request0:
+	setarg 0x60
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+p_le_prepare_att:
+ 	fetch 1,mem_le_l2cap
+	beq ATTOP_WRITE_REQUEST,p_le_send_att_write_request
+	branch le_prepare_att+5
+
+p_le_send_att_write_request:
+// 	fetch 1,mem_le_work_data_send_flag
+//	branch p_le_send_att_write_request_end,blank
+	
+/*
+//	call shutter_le_tx_buff_unuse
+//	call p_shutter_le_queue_get
+//	nrtn user
+//	disable user
+	copy pdata,contr						//handle
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	storet 1,mem_le_handle_data_len
+	ifetch 2,contr
+	store 2,mem_le_notify_handle
+	arg mem_le_handle_data,contw
+	call memcpy
+	*/
+p_le_send_att_write_request_end:
+  	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
+
+
+p_scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+p_le_conn:
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 1,mem_le_conn_state
+	//jam 0x12,mem_le_xtype_fifo+4
+	jam 1,mem_enable_key_scan
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+	call le_create_conn+14
+	rtn
+
+p_le_master_dispatch_end:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call p_le_master_sm
+	disable master
+	rtn
+
+	
+p_le_master_sm:
+ 	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,p_le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,p_le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,p_le_data_wait_write_res1
+	rtn
+
+p_le_data_send_write_req:
+	setarg 0x1a
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	rtn
+	
+p_le_data_wait_write_res:
+	jam CONN_SM_WAIT_WRITE_RES1,mem_le_conn_sm
+	jam ATTOP_EXCHANGE_MTU_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+p_le_data_wait_write_res1:
+	rtn
+
+p_scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 2,mem_le_send_write_request_count
+	jam 0,mem_le_conn_state
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call p_shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call p_shutter_le_fast_scan
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+
+p_shutter_le_queue_init:
+	jam 0,mem_queue_ele_num_patch
+	setarg mem_queue_start_patch
+	store 2, mem_queue_read_patch
+	store 2, mem_queue_write_patch
+	rtn
+//end
+
+p_shutter_le_queue_clear:
+	branch p_shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+p_shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	compare  QUEUE_ELE_COUNT_PATCH,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write_patch
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num_patch
+	increase 1,pdata
+	store 1, mem_queue_ele_num_patch
+	
+	setarg mem_queue_write_patch
+	branch p_shutter_le_queue_increase
+
+//pdata
+p_shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end_patch,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH_PATCH,pdata
+	isub temp,null
+	nbranch p_shutter_le_queue_put_end,positive
+	setarg mem_queue_start_patch
+p_shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+p_shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num_patch
+	increase -1,pdata
+	store 1, mem_queue_ele_num_patch
+
+	fetch 2,mem_queue_read_patch
+	store 2,mem_queue_temp_patch
+
+	setarg mem_queue_read_patch
+	call p_shutter_le_queue_increase
+	fetch 2,mem_queue_temp_patch
+	rtn
+
+p_shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read_patch
+	rtn
+
+p_shutter_le_key_process:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+//	fetch 1,mem_le_conn_state
+//	rtn blank
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutter_le_fast_scan
+	call shutter_shutter_cancel_key_shake
+	branch p_in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+p_shutter_le_key_lp1:
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall p_shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch p_shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+p_in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+p_shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch p_in_le_key_is_release,blank
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_press
+	beq 1,p_in_le_send_key1_press
+	beq 2,p_in_le_send_key2_press
+	beq 3,p_in_le_send_key3_press
+p_in_le_send_lable:
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+p_in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call p_shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch p_in_le_send_lp1,zero
+	branch p_le_send_packet
+//function end
+p_le_send_packet:
+ 	call p_shutter_le_queue_read_point
+	nrtn user
+	disable user
+//	force 0x0013,temp
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+
+p_in_le_key_is_release:
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_rel
+	beq 1,p_in_le_send_key1_rel
+	beq 2,p_in_le_send_key2_rel
+	beq 3,p_in_le_send_key3_rel
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_press:
+	jam 0x01,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_press:
+	jam 0x02,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_press:
+	jam 0x01,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_press:
+	jam 0x02,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+////////////////////////check sum////////////////////////
+//loopcnt = sum number,contr = ptr
+p_calc_check_sum_start:
+	arg 0,rega
+p_calc_check_sum_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_calc_check_sum_loop
+p_calc_check_sum_and:
+	and rega,0xff,pdata
+	rtn
+
+	
+p_shutter_le_bb_event_100ms_loop:
+ //      call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+//	call p_shutter_le_sleep_timer
+//	call shutter_ui_button_timeout_timer
+//	call p_shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+//	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop	
+
+p_shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,p_shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+/*
+p_shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	branch shutter_shutter_power_off_end	*/
+	
+
+p_shutter_uart_init:
+	hjam 0x4,core_gpio_sel1	//IO
+	hfetch 4,core_gpio_pu0	//IOΪUART
+	set1 7,pdata				//gpio7
+	hstore 4,core_gpio_pu0
+
+	hjam 0x01,core_uart_clksel	//ѡUARTʱ48M
+	setarg mem_shutter_rx_buf	//Ring Buffer
+	hstore 2,core_uart_rsaddr	//RX buffer ʼַ
+	setarg mem_shutter_rx_buf_end
+	hstore 2,core_uart_readdr	//RX bufferַ
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_tsaddr	//TX bufferʼַ
+	setarg mem_shutter_tx_buf_end
+	hstore 2,core_uart_teaddr	//TX bufferַ
+	setarg mem_shutter_rx_buf
+	hstore 2,core_uart_rrptr	//RX bufferָ
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_twptr	//TX bufferдָ
+	hstore 2,core_uart_trptrp 	//TX bufferָ
+
+	setarg uart_baud_115200		//ò
+	hstore 2,core_uart_baud
+	
+	hfetch 2,core_clkoff		//core_clkoff(0x8050)ĵ15λ,ʹUARTʱ
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	hjam 0x81,core_uart_ctrl //8bitsУ顢ģʽ
+	rtn
+
+p_shutter_uart_tx_prepare:
+	fetch 7,mem_le_rxbuf+9
+	store 7,mem_uart_mouse_data_buff+3
+p_shutter_uart_tx_prepare_next:	
+	jam 0x02,mem_uart_mouse_data_buff
+	jam 0x29,mem_uart_mouse_data_buff+1
+	jam 0x08,mem_uart_mouse_data_buff+2
+	
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	arg 0x0b,loopcnt
+	arg mem_uart_mouse_data_buff,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+	
+p_gpio_set_before_lpm_common:
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_set_freq_tx:
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+p_txon:	
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_le_conn_state
+//	beq 0,p_txon_scan
+	beq 0,p_set_tx_power_5db
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_set_tx_power_0db
+	bbit1 TX_POWER_3DB,p_set_tx_power_3db	
+	bbit1 TX_POWER_5DB,p_set_tx_power_5db
+	bbit1 TX_POWER_f3DB,p_set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,p_set_tx_power_f5db
+p_set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_txon_scan:
+	hjam 0xc0,0x956
+	hjam 0xd8,0x955
+	rtn
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+p_letx_setfreq:
+	branch p_txon,match
+	branch letx_setfreq0
+
+p_shutdown_radio:
+	branch p_shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutdowm_radio_scan
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_shutdown_radio_0db
+	bbit1 TX_POWER_3DB,p_shutdown_radio_3db
+	bbit1 TX_POWER_5DB,p_shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,p_shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,p_shutdown_radio_f5db
+p_shutdown_radio_5db:	
+p_shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+p_shutdown_radio0:
+	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	
+
+p_shutdown_radio_f5db:
+p_shutdown_radio_f3db:
+p_shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch p_shutdown_radio0
+p_shutdowm_radio_scan:
+	hjam 0xd0, 0x955
+	hjam 0xc0, 0x956
+	rtn
+
+
+p_initialize_radio_cont:
+	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_dpll,core_clksel
+	nop 1
+	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	
+
+
+
+/******************************************/
+/***********   ROM Start   ***************/
+/******************************************/
+
+org 0x3000		// start from rom address start
+start:
+	call lpmstate
+
+
+soft_reset:
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag //bit2  1:wake from hibnate 0:wake from power
+	call spi_ncs_gpio_init  // 0xff disable spi ncs gpio init
+	clear_stack
+	ncall wait_uarttx,wake	
+	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
+	ncall load_chip_option,wake
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+	call publickey_init
+	call lpm_recover_clk,wake
+main_loop:	
+	set0 mark_ext_patch,mark
+	bpatch patch00_3,mem_patch00
+	call sp_calc_sequence
+	call sp_calc_sequence_256
+	call publickey_calc
+	call le_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	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_5,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_6,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 patch00_7,mem_patch00
+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_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,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_1,mem_patch01
+	call timer_check
+	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_2,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	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_3,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_4,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_5,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_6,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 patch01_7,mem_patch01
+	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_0,mem_patch02
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+		
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,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_2,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
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,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_4,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_5,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_6,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	
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	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_0,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_1,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_2,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_3,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_4,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_5,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_6,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 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 patch03_7,mem_patch03
+	call parse_lmp
+	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_0,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	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_1,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	rtn
+	
+master_name_disconnect:
+	fetch 1,mem_state_map
+	rtnbit1 smap_name_res
+master_name_error:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	branch memset0
+	
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,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_3,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	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_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,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_5,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 patch04_6,mem_patch04
+	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 1,mem_sniff_attempt
+	jam 0x0,mem_sniff_timeout  
+	jam 0x0,mem_current_sniff_timeout  
+	fetch 4,mem_sniff_anchor  
+	copy clkn_bt,temp  
+	isub temp,pdata  
+	rshift2 pdata,pdata  
+	increase  -8,pdata  
+	store 1,mem_current_sniff_attempt  
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	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_0,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_1,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_2,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:
+	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
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,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 patch05_4,mem_patch05
+	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:
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+	fetcht 1,mem_current_context
+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 patch05_5,mem_patch05
+	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
+	
+	
+	/* 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 patch05_6,mem_patch05
+	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 patch05_7,mem_patch05
+	arg mem_context,rega
+	fetch 1,mem_context_number
+	copy pdata,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
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	copy contr,regb
+	store 9,mem_temp
+	fetch 1,mem_le_sc_calc
+	nbranch context_search_sniff_sc,blank
+	fetch 9,mem_temp
+	copy regb,contr
+	increase 5,pdata  
+	branch context_search_meet1
+context_search_sniff_sc:
+	fetch 9,mem_temp
+	copy regb,contr	
+	increase 20,pdata  
+context_search_meet1:
+	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
+
+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
+
+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_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_0,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_1,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_2,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_3,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 patch06_4,mem_patch06
+	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 patch06_5,mem_patch06
+	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 patch06_6,mem_patch06
+	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 patch06_7,mem_patch06
+	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_0,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_1,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_2,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_3,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 patch07_4,mem_patch07
+	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 patch07_5,mem_patch07
+	call calc_clke
+	call role_switch_slave
+	rtn user
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_l2cap
+	call parse_lmp
+	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 patch07_7,mem_patch07
+	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
+	rtn
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,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
+	rtn
+
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,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_2,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_3,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:
+	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
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	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 patch08_5,mem_patch08
+	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 patch08_6,mem_patch08
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	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 patch08_7,mem_patch08
+	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_0,mem_patch09
+	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_1,mem_patch09
+	call app_disconn_reason_collect_bt
+	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_2,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_3,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 patch09_4,mem_patch09
+	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 patch09_5,mem_patch09
+	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 patch09_6,mem_patch09
+	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 patch09_7,mem_patch09
+	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_0,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_dh3,type		/* DH3 */
+	sub pdata,183,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_1,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_2,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_3,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 patch0a_4,mem_patch0a
+	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 patch0a_5,mem_patch0a
+	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
+	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 patch0a_6,mem_patch0a
+	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 patch0a_7,mem_patch0a
+	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_0,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_1,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
+	branch error_payload,crc_failed
+	branch ack_payload
+
+
+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_2,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_3,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 patch0b_4,mem_patch0b
+	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 patch0b_5,mem_patch0b
+	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
+	//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_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	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 patch0b_7,mem_patch0b
+	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_0,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	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 patch0c_2,mem_patch0c
+	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 patch0c_3,mem_patch0c
+	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 patch0c_4,mem_patch0c
+	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 patch0c_5,mem_patch0c
+	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 patch0c_6,mem_patch0c
+	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 patch0c_7,mem_patch0c
+	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_0,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 patch0d_1,mem_patch0d
+	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 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 patch0d_2,mem_patch0d
+	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
+	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
+	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 patch0d_3,mem_patch0d
+	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
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	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 patch0d_5,mem_patch0d
+	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
+	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 patch0d_6,mem_patch0d
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	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 patch0d_7,mem_patch0d
+	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:
+	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_0,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
+	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	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 patch0e_2,mem_patch0e
+	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_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
+
+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 patch0e_3,mem_patch0e
+	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 patch0e_4,mem_patch0e
+	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 patch0e_5,mem_patch0e
+	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 patch0e_6,mem_patch0e
+	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 patch0e_7,mem_patch0e
+	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 patch0f_0,mem_patch0f
+	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 patch0f_1,mem_patch0f
+	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 patch0f_2,mem_patch0f
+	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:
+	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_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 patch0f_3,mem_patch0f
+	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 patch0f_4,mem_patch0f
+	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 patch0f_5,mem_patch0f
+	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 patch0f_6,mem_patch0f
+	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 patch0f_7,mem_patch0f
+	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 patch10_0,mem_patch10
+	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 patch10_1,mem_patch10
+	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 patch10_2,mem_patch10
+	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 patch10_3,mem_patch10
+	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 patch10_4,mem_patch10
+	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 patch10_5,mem_patch10
+	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 patch10_6,mem_patch10
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,shutdown_radio_0db
+	bbit1 TX_POWER_3DB,shutdown_radio_3db
+	bbit1 TX_POWER_5DB,shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,shutdown_radio_f5db
+shutdown_radio_5db:	
+shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+shutdown_radio0:
+	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	
+
+shutdown_radio_f5db:
+shutdown_radio_f3db:
+shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch shutdown_radio0
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+	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 patch11_0,mem_patch11
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	hjam 0x07,0x96d                                         /*Max added, for best sensitivity*/
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+	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 patch11_2,mem_patch11
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium 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 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,set_tx_power_0db
+	bbit1 TX_POWER_3DB,set_tx_power_3db	
+	bbit1 TX_POWER_5DB,set_tx_power_5db
+	bbit1 TX_POWER_f3DB,set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,set_tx_power_f5db
+set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+
+set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+txon_common:
+	nop 4
+	hjam 0xd1,0x955
+	nop 4
+	hjam 0xd2,0x955
+	nop 4
+	hjam 0xd4,0x955
+	rtn
+
+
+initialize_radio:
+	hjam clksel_rc,core_clksel
+	call init_rf_param
+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 patch11_3,mem_patch11
+	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 patch11_4,mem_patch11
+	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 patch11_5,mem_patch11
+	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 patch11_6,mem_patch11
+	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 patch11_7,mem_patch11
+	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_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
+	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
+
+	
+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 patch12_0,mem_patch12
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+	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_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 patch12_2,mem_patch12
+	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 patch12_3,mem_patch12
+	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 patch12_4,mem_patch12
+	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 patch12_5,mem_patch12
+	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 patch12_6,mem_patch12
+	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 patch12_7,mem_patch12
+	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 patch13_0,mem_patch13
+	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 patch13_1,mem_patch13
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	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 patch13_3,mem_patch13
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	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 patch13_5,mem_patch13
+	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 patch13_6,mem_patch13
+	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 patch13_7,mem_patch13
+	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 patch14_0,mem_patch14
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	rtn
+	
+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 patch14_2,mem_patch14
+	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 */
+	fetch 1,mem_ssp_enable
+	ncall init_memp,blank
+	fetch 1,mem_le_secure_connect_enable
+	ncall init_memp_256,blank
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+
+init_rf_param:
+	hjam 0x1f,0x909
+	hjam 0x45,0x912		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+	hjam 0xc9,0x956
+
+	hjam 0xff,0x907
+	hjam 0x01,0x908
+	hjam 0xf8,0x90a
+	hjam 0xff,0x90b
+	hjam 0xfb,0x91a
+	hjam 0xfb,0x91b
+	hjam 0xfb,0x91c
+	hjam 0xf6,0x91d
+	hjam 0xf2,0x91e
+	hjam 0xee,0x91f
+	hjam 0xea,0x920
+	hjam 0xe6,0x921
+	hjam 0xe2,0x922
+	hjam 0xde,0x923
+	hjam 0xda,0x924
+	hjam 0xd6,0x925
+	hjam 0xd2,0x926
+	hjam 0xce,0x927
+	hjam 0xca,0x928
+	hjam 0xc6,0x929
+	hjam 0xc2,0x92a
+	hjam 0xbd,0x92b
+	hjam 0xb9,0x92c
+	hjam 0xb5,0x92d
+	hjam 0xb1,0x92e
+	hjam 0xad,0x92f
+	hjam 0xa9,0x930
+	hjam 0x80,0x931
+	hjam 0x80,0x932
+	hjam 0x80,0x933
+	hjam 0xc0,0x934
+	hjam 0xc1,0x935
+	hjam 0xc2,0x936
+	hjam 0xc3,0x937
+	hjam 0xc4,0x938
+	hjam 0xc5,0x939
+	hjam 0xc6,0x93a
+	hjam 0xc7,0x93b
+	hjam 0x06,0x93c
+	hjam 0x07,0x93d
+	hjam 0x46,0x93e
+	hjam 0x85,0x93f
+	hjam 0x86,0x940
+	hjam 0x87,0x941
+	hjam 0xc6,0x942
+	hjam 0xc7,0x943
+	hjam 0xd6,0x944
+	hjam 0xd7,0x945
+	hjam 0xe6,0x946
+	hjam 0xf5,0x947
+	hjam 0x00,0x948
+	hjam 0xf8,0x949
+	hjam 0x7f,0x94a
+	hjam 0xfb,0x94c
+	hjam 0xef,0x94d	
+	hjam 0xec,0x94e
+	hjam 0x5e,0x94f
+	hjam 0x4c,0x957
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	hjam 0xe4,0x968
+	hjam 0x00,0x969
+	hjam 0x00,0x96a
+	hjam 0x30,0x96b
+	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 patch14_4,mem_patch14
+	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 patch14_5,mem_patch14
+	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 patch14_6,mem_patch14
+	call xtal_fast_wake
+	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 patch14_7,mem_patch14
+	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
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_dispatch_next:
+	fetch 1,mem_le_sc_calc
+	nrtn blank	
+	call lpm_check_wake_lock
+	nrtn blank
+	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
+lpm_dispatch_next0:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	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
+lpm_dispatch_next1:	
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	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 patch15_3,mem_patch15
+	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 patch15_4,mem_patch15
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	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 patch15_6,mem_patch15
+	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
+	fetch 2,mem_cb_bt_set_mult
+	call callback_func
+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 patch15_7,mem_patch15
+	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 patch16_0,mem_patch16
+	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
+	nop 30000
+	nop 30000
+	nop 30000	
+	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 patch16_1,mem_patch16
+	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 patch16_2,mem_patch16
+	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
+lpm_check_wake_lock0:
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+	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
+	branch  lpm_check_wake_lock_nothci
+
+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_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+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
+	
+
+
+
+
+
+app_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	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_shutter,shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+	
+app_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	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
+app_lpm_init0:
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	//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:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	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
+	fetch 2,mem_cb_event_timer
+	call callback_func
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	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_RECONNECT,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_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_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
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	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
+	
+
+
+
+hci_rx_h4:
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	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
+	branch assert
+	
+h4_rx_discard_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	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_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+	
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	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 patch18_1,mem_patch18
+	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:
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_h5tx_buf
+	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 patch18_2,mem_patch18
+	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
+	rtn
+
+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_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	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
+	branch hci_rx_h4
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	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_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	rtn
+
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	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
+	
+	
+
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	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 patch18_7,mem_patch18
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	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_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:
+	branch h4_get_tx_ptr
+
+	
+
+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
+
+
+
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	
+	
+//enable ssp master sm
+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
+	rtn
+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
+
+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:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	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:
+	call hid_rx_process_data
+	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
+	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
+	ifetch 1,contr
+	store 1,mem_kb_caps_led_status
+	store 1,mem_hid_rx_data
+	fetch 1,mem_kb_led_on_timer
+	nrtn blank
+	jam 2,mem_led_cap_delay_timer
+	rtn
+	
+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
+
+
+kb_init:	
+	call kb_clear_keys
+	rtn wake
+	//call module_hci_pairing_just_work_mode
+	call kb_init_common
+	call kb_led_int
+	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
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	call kb_init_environment
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+kb_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,kb_3_check_reconn_target
+	branch kb_start_discovery
+kb_3_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank
+	branch app_bt_start_reconnect
+
+kb_init_environment:
+	call app_initflag_check
+	branch kb_load_eeprom_param,zero
+	setarg KB_MAP2_STATUS_WIN
+	store 1,mem_kb_current_status
+	call store_current_status
+	fetch 6,mem_master_addr
+	store 6,mem_plap
+	store 6,mem_hci_plap
+	call eeprom_store_bd_reconn_info
+	jam REC_3_MODE,mem_xrecord_mode
+	branch app_initflag_store
+
+kb_load_eeprom_param:
+	call read_current_status
+	branch eeprom_load_reconn_info
+
+
+kb_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	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 0x07,pdata
+	hstore 1,core_gpio_oe3
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	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
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x01,pdata
+	hstore 1,core_gpio_key2
+	
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hjam 0x0c,core_kscn_ksctrl
+	hjam 0x30,core_kscn_scancycle_timer_h
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hfetch 1, core_kscn_ksctrl
+	set1 0,pdata
+	hstore 1,core_kscn_ksctrl	
+	rtn
+kb_led_int:
+	call kb_led_cap_init
+	call kb_led_num_init
+	branch kb_led_scl_init
+kb_led_cap_init:
+	fetch 1,mem_led_cap_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_cap_gpio
+ 	branch gpio_config_output
+kb_led_num_init:
+	fetch 1,mem_led_num_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_num_gpio
+ 	branch gpio_config_output
+kb_led_scl_init:
+	fetch 1,mem_led_scl_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_scl_gpio
+ 	branch gpio_config_output
+
+kb_led_cap_delay_timer:	
+	fetch 1,mem_led_cap_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_cap_delay_timer
+	nrtn blank
+kb_led_capslock:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	fetch 1,mem_hid_rx_data
+	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
+	branch kb_auto_disable_mult
+kb_enble_mult_timer:
+	fetch 1,mem_auto_enable_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_auto_enable_mult_timer
+	nrtn blank
+	branch app_lpm_mult_enable
+kb_auto_disable_mult:
+	fetch 1,mem_auto_enable_mult_timer_init
+	store 1,mem_auto_enable_mult_timer
+	branch app_lpm_mult_disable
+	
+kb_led_cap_status:
+	jam 1,mem_led_cap_flag
+	branch bt_send_kb_data_by_report0+8
+
+
+kb_send_process:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 6,mem_master_addr
+	fetcht 6,mem_plap
+	isub temp,null
+	branch kb_debug_send_keydata,zero
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	ncall bt_send_kb_data_by_report0,zero
+	
+	fetcht 8,mem_table_last_repory_data1
+	fetch 8,mem_map2_out_report1
+	store 8,mem_table_last_repory_data1
+	isub temp,null
+	ncall bt_send_kb_data_by_report1,zero
+	rtn
+
+kb_debug_send_keydata:
+	fetch 1,mem_kb_down
+	beq 0x7f,fn_test
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	rtn zero
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	arg 10,regA
+	call hid_malloc_tx_buff
+	setarg L2CAP_HID_Interrupt_channel
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+fn_test:
+	store 8,mem_map2_out_report0
+	branch kb_debug_send_keydata+2
+
+
+bt_send_kb_data_by_report0:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 KEY_SEARCH_M_KEY_FLAG
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report0
+	beq CAPS_LOCK_DATA,kb_led_cap_status
+	jam 0,mem_led_cap_flag
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	call bt_send_kb_data_by_report0_ptr
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+
+fill_kb_send_data:
+	arg 0,temp
+	add rega,2,contw
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+store_key:
+	ifetch 1,contr
+	bbit0 7,not_key_status
+	and pdata,7,queue
+	qset1 temp
+	branch store_key_next
+not_key_status:
+	istore 1,contw
+store_key_next:
+	loop store_key
+	istoret 2,rega
+	rtn
+	
+bt_send_kb_data_by_report1:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report1
+	beq SFK_ANDROID_MAP,android_search_m_key
+	beq SFK_IOS_SCREENSHOT,ios_screenshot
+	setarg 0
+	store 8,mem_table_temp
+	call fill_kb_send_report1_data
+	
+	fetch 1,mem_kb_temp_flag
+	bbit1 KEY_SEARCH_M_KEY_FLAG,android_search_m_key_releas
+	call bt_send_kb_data_by_report1_ptr
+	fetch 4,mem_table_temp
+	istore 4,contw
+	rtn
+
+fill_kb_send_report1_data:
+	fetch 1,mem_map2_out_report1
+	rtn blank
+	enable true
+	fetch 1,mem_map2_out_report1
+	copy pdata,queue
+	fetch 8,mem_table_temp
+	qsetflag true,pdata
+	store 8,mem_table_temp
+	disable true
+	rtn
+
+init_kb_no_data_timer:
+	fetch 2,mem_kb_no_data_timeout
+	store 2,mem_kb_no_data_timer
+	rtn
+kb_check_no_data_timer:
+	fetch 2,mem_kb_no_data_timer
+	rtn blank
+	fetch 2,mem_kb_no_data_timer
+	increase -1,pdata
+	store 2,mem_kb_no_data_timer
+	nrtn blank
+	branch kb_disconnect
+kb_disconnect:
+	setarg 0
+	store 2,mem_kb_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
+
+bt_send_kb_data_by_report0_ptr:
+	arg 10,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+bt_send_kb_data_by_report1_ptr:
+	arg 6,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	rtn
+
+android_search_m_key_releas:
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 8,contw
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0
+	istore 4,contw
+	fetch 1,mem_kb_temp_flag
+	set0 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+ios_screenshot:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x2002	//Home key,Lock
+	istore 4,contw
+	rtn
+
+android_search_m_key:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x40     // search key
+	istore 4,contw
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 2,contw
+	setarg 0x10  	// M key
+	istore 7,contw
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+
+
+kb_pincode:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	fetch 1,mem_kb_temp_flag
+	rtnbit0 KEY_EVENT_FLAG
+	set0 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_down
+	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_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_down
+	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
+
+kb_process_idle:
+	call kb_ui_check_paring_button
+	rtn wake
+kb_process:
+	fetch 1,mem_kb_get_fn_flag
+	call kb_recover_kb_down_data,blank
+	call kb_kscan_fn
+	fetch 1,mem_kb_keys
+	rtn blank
+	call kb_read_gpio
+	fetch 4,mem_kb_gpio_val
+	store 4,mem_kb_gpio_last_val
+	rtn
+
+kb_ui_check_paring_button:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_RECONNECT
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 CACEL_RECONN_FLAG,pdata
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_fn_c
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_c_fn
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,check_bb_reconn_cancel
+	rtn
+
+check_bb_reconn_cancel:
+	fetch 1,mem_kb_temp_flag
+	set1 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	branch check_51cmd_bb_reconn_cancel
+
+
+kb_read_gpio:
+	hfetch 3,core_gpio_key0
+	iforce regb
+	hfetch 4,core_gpio_pu0
+	iforce rega
+	hfetcht 8,core_gpio_oe0	
+	setarg 0
+	hstore 3,core_gpio_key0
+	nop 100
+	hfetch 1,core_gpio_in
+	store 1,mem_kb_gpio_val
+	hjam 0,core_gpio_pu0
+	hfetch 1,core_gpio_oe3
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_oe3
+	xor_into 0xff,pdata
+	hstore 1,core_gpio_pu3
+	setarg 0xff
+	hstore 3,core_gpio_oe0
+	setarg 0xffff
+	hstore 2,core_gpio_pu1
+	nop 100
+	hfetch 3,core_gpio_in1
+	iand regb,pdata
+	store 3,mem_kb_gpio_val + 1
+	deposit rega
+	hstore 4,core_gpio_pu0
+	hstoret 8,core_gpio_oe0
+	deposit regb
+	hstore 3,core_gpio_key0
+	rtn	
+
+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_HANDSHAKE,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_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:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	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 kb_led_cap_delay_timer
+	call kb_check_hid_handshake_timer	
+	call kb_enble_mult_timer
+	call kb_check_no_data_timer
+	call select_system_led_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
+	fetch 1,mem_kb_temp_flag
+	bbit0,CACEL_RECONN_FLAG,app_bb_hibernate
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2, mem_ui_state_map
+	rtn
+
+kb_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	call kb_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	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_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,kb_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,kb_event_light_state_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+kb_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+	
+kb_bb_discon_clear_stack:
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag	
+	jam 0,mem_kb_debug_sm
+	rtn
+
+	
+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:
+	setarg 0
+	store 2,mem_kb_direct_timer
+	store 1,mem_pin_length
+	call led_cap_darking
+	call kb_3_0_bb_event_discovery_btn
+	call app_lpm_mult_disable
+	branch kb_start_discovery
+
+led_cap_darking:
+	jam 1,mem_led_cap_gpio_status
+	fetcht 1,mem_led_cap_gpio
+	branch gpio_out_inactive
+
+kb_3_0_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	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_led_stop_blink
+	setarg 0
+	store 2,mem_kb_discovery_timer
+	branch app_bt_stop_discovery
+
+kb_start_discovery:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_kb_discovery_timer
+	call app_bt_start_discovery
+	jam 0,mem_kb_led_on_timer
+	//jam 5,mem_led_device_blink_count
+	call app_led_start_blink
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_pin_length
+	call kb_clear_keys
+	branch kb_clean_kscan_fifo
+
+
+kb_before_hibernate:
+	fetch 1,mem_kb_led_on_timer
+	branch kb_before_hibernate_cont,blank
+	arg 320,temp
+	imul32 temp,temp
+	copy clkn_bt,pdata
+	iadd temp,temp
+kb_before_hibernate_wait:
+	copy clkn_bt,pdata
+	isub temp,null
+	nbranch kb_before_hibernate_wait,positive
+kb_before_hibernate_cont:
+	fetcht 1,mem_led_power_gpio
+ 	call gpio_out_inactive
+ 	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+kb_wake_common:
+	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_process_lpm_before:
+	call kb_wake_common
+	fetch 1,mem_lpm_current_mult
+	nrtn blank
+	jam 0,mem_gpio_wakeup_low		// no key wakeup when key is down
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+	
+kb_bt_hid_handshake:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+  	call ui_led_off
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call kb_clean_kscan_fifo
+	call kb_clear_keys
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+store_current_status:
+	fetch 1,mem_kb_current_status
+	and_into 0x7,pdata
+	store 1,mem_store_current_status
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	branch  iicd_write_eep
+
+
+read_current_status:
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	call  iicd_read_eep
+	fetch 1,mem_store_current_status
+	copy pdata,regb
+	and_into 0x0f,pdata
+	beq 0x0f,kb_current_status_regroup
+	copy regb,pdata
+	store 1,mem_kb_current_status
+	rtn
+
+
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	fetch 1,mem_kb_release_fn_data
+	beq 0x7f,kb_clear_fn_lock_flag
+	branch kb_kscan_check
+
+kb_recover_kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	branch kb_kscan_check
+
+kb_kscan_fn:
+	fetch 1,mem_kb_keys
+	branch kb_kscan_no_data,blank
+	copy pdata,regb
+	fetch 5,mem_kb_down
+	copy pdata,temp
+kb_kscan_fn_loop:
+	copy temp,pdata
+	compare 0x7f,pdata,0xff
+	branch kb_get_fn,true
+	increase -1,regb
+	setarg mem_kb_down_regroup
+	iadd regb,contw
+	copy temp,pdata
+	istore 1,contw
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	nbranch kb_kscan_fn_loop,blank
+	fetch 5,mem_kb_down_regroup
+	call kb_down_data,blank
+	branch kb_kscan_check
+kb_get_fn:
+	setarg 1
+	store 1,mem_kb_get_fn_flag
+	branch kb_kscan_fn_loop+8
+
+select_system_led_timer:
+	fetch 1,mem_select_system_led_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_select_system_led_timer
+	nrtn blank
+	branch ui_led_blink_stop
+
+
+kb_current_status_regroup:
+	copy regb,pdata
+	and_into KB_MAP2_STATUS_WIN,pdata
+	store 1,mem_kb_current_status
+	rtn
+kb_clear_fn_lock_flag:
+	jam 0,mem_kb_get_fn_flag
+	call kb_down_data
+	branch kb_kscan_check
+
+
+kb_kscan_check:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_read_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_read_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check	
+
+kb_kscan_no_data:
+	call kb_clear_data
+	branch kb_kscan_check
+	
+kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	rtn
+
+kb_clear_data:
+	setarg 0
+	store 1,mem_kb_get_fn_flag
+	store 5,mem_kb_down_regroup
+	store 8,mem_kb_down
+	rtn
+	
+kb_kscan_read_event:
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	//call p_hci_log
+	hfetch 1,core_kscn_event_num
+	isolate1 kb_KSCAN_KEY_EVENT_STAT,pdata
+	store 1,mem_kscan_event_num_last
+	hfetch 1,core_kscn_event
+	store 1,mem_kscn_event_last
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	fetcht 1,mem_kb_keys
+	sub temp,4,null
+	nbranch kb_kscan_check,positive
+	iforce contr
+	setarg mem_kb_down
+	iadd temp,contw
+	deposit contr
+	istore 1,contw
+	increase 1,temp
+	storet 1,mem_kb_keys
+	branch kb_kscan_fn
+
+
+
+/*
+****************************************************************************************************
+* map2_main
+*
+****************************************************************************************************
+*/
+
+
+	
+/************************************/
+/*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:	
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	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:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	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_check_map:
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	beq 0,set_pdata_0
+	beq 1,set_pdata_0
+	beq 2,set_pdata_0
+	beq 3,set_pdata_0
+	beq 0x81,set_pdata_0
+	beq 0xc0,set_pdata_0
+	beq 0x80,set_pdata_0
+	beq 0x40,set_pdata_0
+	rtn
+
+set_pdata_0:
+	setarg 0
+	rtn
+
+
+l2cap_call_proc_signal:
+	call l2cap_check_map
+	nrtn blank
+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_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	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:
+	arg 0,debug
+	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_reset_sdp_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	fetch 2,mem_sdp_tx_pkt_length
+	increase 4,pdata
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	add pdata,1,temp ///temp: how many128
+	arg mem_tx_fifo3,contr
+	ifetch 3,contr
+	rtn blank
+	store 3,mem_tx_fifo_map_temp
+	fetch 1,mem_tx_fifo_map_temp
+	copy pdata,rega
+	call check_l2cap_map
+	copy regb,pdata
+	store 1,mem_tx_fifo3
+	rtn
+
+check_l2cap_map:
+	arg 0,queue
+	arg 0,regb
+
+check_l2cap_map_loop:
+	sub queue,7,null
+	nrtn positive
+	qisolate1 rega
+	branch check_l2cap_map_used,true
+	branch check_l2cap_map_used2
+
+check_l2cap_map_used:
+	copy temp,pdata
+	branch check_l2cap_map_used2,blank
+	qset1 regb
+	increase -1,temp
+
+check_l2cap_map_used2:
+	increase 1,queue
+	branch check_l2cap_map_loop
+
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_check_map
+	nrtn blank
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_reset_sdp_map
+	branch l2cap_call_proc_sdp_common
+
+	
+ml2cap_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
+l2cap_call_proc_sdp_common:
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	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
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,l2cap_proc_signal_info_req_fix
+	rtn
+l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0280
+	istore 4, contw
+	force 12,pdata
+	branch l2cap_proc_signal_info_req_common
+l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+l2cap_proc_signal_info_req_common:
+	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
+	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 l2cap_proc_signal_info_req_reply
+
+
+/*  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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	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:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,ml2cap_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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	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_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	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_secure_connection_enable:
+	fetch 1,mem_le_pres_auth
+	set1 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+le_secure_connection_disable:
+	fetch 1,mem_le_pres_auth
+	set0 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+
+
+le_init_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	disable wake
+	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_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
+	jam 1,mem_le_txheader
+	jam 0,mem_le_txlen
+	branch le_supervision_flush
+
+le_init_master:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	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 patch20_0,mem_patch20
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	fetch 2,mem_le_tsniff
+	mul32 pdata,5,pdata
+	rshift4 pdata,pdata
+	store 2,mem_le_superto			// vol.6 part B 4.5.2 only 6*conninterval before establish
+	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 patch20_1,mem_patch20
+	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 patch20_2,mem_patch20
+	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 patch20_3,mem_patch20
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+	call sp_calc_sequence_256
+	call le_secure_connect_sm
+	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,sync	// vol.6 part B 4.5.1 respond even crc error
+	call le_got_first_packet
+	branch le_slave_match,match
+	branch le_slave_transmit_last
+	
+
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	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 patch20_6,mem_patch20
+	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 patch20_7,mem_patch20
+	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 patch21_0,mem_patch21
+	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 patch21_1,mem_patch21
+le_disconnect0:
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+	call sp_initialize_256
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	rtn
+	
+le_got_first_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	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
+	fetch 2,mem_le_init_superto
+	store 2,mem_le_superto
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	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
+letx_setfreq0:
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	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 patch21_6,mem_patch21
+	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 patch21_7,mem_patch21
+	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 patch22_0,mem_patch22
+	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 patch22_1,mem_patch22
+	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 patch22_2,mem_patch22
+	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 patch22_3,mem_patch22
+	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 patch22_4,mem_patch22
+	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 patch22_5,mem_patch22
+	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 patch22_6,mem_patch22
+	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 patch22_7,mem_patch22
+	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,0,rega				// ble 2M Medium Frequency
+	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 patch23_0,mem_patch23
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup 
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	call le_prep
+	call letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+le_transmit0:
+	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 patch23_2,mem_patch23
+	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 patch23_3,mem_patch23
+	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_fast
+	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 patch23_4,mem_patch23
+	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 patch23_5,mem_patch23
+	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 patch23_6,mem_patch23
+	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_fast
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	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 patch24_0,mem_patch24
+	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 patch24_1,mem_patch24
+	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 patch24_2,mem_patch24
+	disable master
+	branch le_adv_access
+	
+
+
+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
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_update_param_common
+ 	jam 1,mem_lpm_mode		
+le_update_param_common:
+	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 patch24_4,mem_patch24
+	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 patch24_5,mem_patch24
+	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 patch24_6,mem_patch24
+	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 patch24_7,mem_patch24
+	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
+	beq LL_START_ENC_REQ,le_set_enc
+	fetch 1,mem_le_enc_state
+	beq FLAG_LE_ENC_PAUSE,le_clear_enc
+	rtn
+	
+
+le_set_enc:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_clear_enc:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	arg 0,pdata
+	store 4,mem_le_last_mic
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	fetch 1,mem_le_state
+	set0 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn
+
+
+
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	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 patch25_2,mem_patch25
+	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 patch25_3,mem_patch25
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+//	call le_scan_dongle
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	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
+	rtn
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	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 patch25_6,mem_patch25
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	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 patch25_7,mem_patch25
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_prepare_tx_shutter
+le_prepare_tx_1:
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	branch le_send_empty
+
+le_prepare_tx_shutter:
+	fetch 1,mem_empty_count
+	nbranch le_send_empty_shutter,blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,le_tx_4  
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_tx_4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+le_send_empty_shutter:
+	fetch 1,mem_empty_count
+	increase -1,pdata
+	store 1,mem_empty_count
+	branch le_send_empty
+le_tx_4:	
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,in_le_tx_4
+	jam 3,mem_empty_count
+in_le_tx_4:	
+	branch le_prepare_tx_1
+	
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	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 patch26_1,mem_patch26
+le_prepare_tx_ll:
+	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
+	beq LL_PING_RSP ,le_send_ping_response
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	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            
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu_req
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu_rsp
+	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
+	beq ATTOP_CONTINUE,le_send_att_continue
+	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
+	fetch 1,mem_ltk_exists
+	beq 0,le_ltk_lost	
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+
+le_ltk_lost:
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam XT_LL_REJECT_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	call check_51cmd_le_smp_sec_req	
+	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
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_start_enc_rsp_shutter
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_start_enc_rsp_common
+le_send_start_enc_rsp_end:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+le_send_start_enc_rsp_common:
+	force 1,temp
+	branch le_send_packet
+le_send_start_enc_rsp_shutter:
+	jam 1,mem_lpm_mode
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp0
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+le_send_start_enc_rsp0:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	force 1,temp
+	call le_send_packet
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+le_send_unknown_rsp:
+	fetch 1,mem_le_ll_cur_opcode
+	istore 1,contw
+	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 1,temp
+//	branch le_send_packet		
+le_send_pause_enc_rsp:
+le_send_ping_response:
+	force 1,temp
+	branch le_send_packet	
+	
+le_send_version_ind:
+	fetch 5,mem_lmp_version
+	istore 5,contw
+//	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:
+	setarg LE_ERR_PIN_OR_KEY_MISSING
+	istore 1,contw
+	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
+	fetch 8,mem_le_interal_min
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	fetch 1,mem_device_option
+	sub pdata,dvc_op_module,null
+	call  le_parse_smp_pairing_request_check_irk,zero
+
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_send_smp_pairing_response_common
+ 	jam PAIR_ING, mem_pair_state
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit1 INITATOR_IRK,le_send_smp_pairing_response_common
+	setarg param_smp_key_dist2
+	istore 3,contw	
+le_send_smp_pairing_response_common:
+	fetch 6,mem_le_pres_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+
+le_parse_smp_pairing_request_check_irk:
+	fetcht 1,mem_le_pres_init_key_distribution
+	fetch 1,mem_le_preq_init_key_distribution
+	isolate1 LE_INITATOR_IRK_BIT,pdata
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_init_key_distribution
+	fetcht 1,mem_le_pres_resp_key_distribution
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_resp_key_distribution
+	rtn
+	
+	
+le_send_smp_pairing_confirm:
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_send_smp_pairing_confirm_sc
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+le_send_smp_pairing_confirm_sc:
+	arg mem_le_srand,contw	
+	call generate_random
+	call function_f4_cb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_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:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	arg PAIRING_FAILED_UNSPECIFIED_REASON,pdata
+	istore 1,contw
+	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
+	fetch 1,mem_device_option
+	beq dvc_op_shutter, le_send_smp_encryption_information_shutter
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	call le_send_packet
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,app_ble_store_reconn_info
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch app_ble_store_reconn_info,true
+	rtn
+	
+le_send_smp_encryption_information_shutter:
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+	
+le_send_smp_master_identification:
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_smp_master_identification_shutter
+
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit0 LE_INITATOR_IRK_BIT,le_send_smp_master_identification_only
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_smp_master_identification_common
+	
+le_send_smp_master_identification_only:	
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+le_send_smp_master_identification_common:	
+	arg mem_le_ediv,contw
+	force 10,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_ediv
+	store 2,mem_le_l2cap_response
+	fetch 8,mem_le_rand
+	istore 8,contw
+	force 15,temp
+	branch le_send_packet
+
+le_send_smp_master_identification_shutter:
+	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
+	setarg 0
+	store 8,mem_le_l2cap_response
+	istore 8,contw	//irk is zero. a device does not have a valid resolvable private address.
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+//	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+//	call le_xtype_fifo_in
+	fetch 1,mem_le_conn_own_addr_type					 
+	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:
+	fetch 1,mem_le_pres_auth
+	store 1,mem_le_l2cap_response
+	force 6,temp
+	branch le_send_packet
+
+le_send_smp_pairing_public_key:
+//p_le_send_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_PUBLIC_KEY,le_send_public_key_continue
+//	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	arg 65,temp
+	storet 2,mem_le_txpayload // L2CAP length
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	arg 0x02,type  //LLIC:start
+	setarg LE_L2CAP_CID_SMP
+	store 2,mem_le_txcid //contw
+
+	arg mem_le_l2cap_response,contw
+	arg 22,loopcnt
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy_fast
+	jam 22,mem_le_public_length
+	
+	jam  27,mem_le_txlen
+
+	fetcht 1,mem_le_arq
+	set1 md,temp
+	storet 1,mem_le_arq
+//	jam 0,mem_le_md_flag
+//	jam LE_MD_NOTIFICATION,mem_le_continue_type
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	call le_xtype_fifo_in
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap2	
+
+
+le_send_public_key_continue:
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	fetch 1,mem_le_public_length
+	beq 22,le_send_public_key_continue2
+
+	arg  15,loopcnt
+	jam 15,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_SEND_PUBLIC_KEY,mem_le_secure_connect_state
+	jam 0,mem_le_public_length
+	rtn
+le_send_smp_publickey_continue_common:
+	arg mem_le_pubkey_local_x_256 ,contr
+	iadd contr,contr	
+	arg mem_le_txpayload,contw
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_non_l2cap	
+
+
+le_send_public_key_continue2:	
+	jam 49,mem_le_public_length
+	arg  27,loopcnt
+	jam 27,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	branch le_xtype_fifo_in
+	rtn
+	
+le_send_smp_pairing_dhkey_check:
+	call function_f6_eb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,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_rsp:
+le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_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:
+	arg 2,timeup
+	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 1,contr
+	copy pdata,loopcnt
+	call memcpy_fast
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+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:
+	ifetch 1,contr
+	iadd contr,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_search_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+
+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
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_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:
+	jam LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,mem_le_search_res
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound,blank
+le_send_att_find_primary_search_loop:
+	fetcht 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound2,blank	
+	copy contr,rega
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	fetcht 1,mem_le_search_att_type_length
+	isub temp,null
+	nbranch le_send_att_find_primary_search_loop1,zero
+	arg mem_le_search_att_type,regb
+	call string_compare
+
+	branch le_send_att_find_primary_search_end_start_handle_found,zero
+
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	branch le_send_att_find_primary_search_end_ending_handle_found,zero
+le_send_att_find_primary_search_loop1:
+	fetch 2,mem_temp
+	increase 1,pdata
+	store 2,mem_temp
+	branch le_send_att_find_primary_search_loop
+
+le_send_att_error_response_notfound2:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,le_send_att_find_primary_search_end_ending_handle_found
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_find_primary_search_end_start_handle_found:
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	nbranch  le_send_att_find_primary_search_loop1,zero
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,mem_le_search_res
+//	copy rega,temp
+	fetcht 2,mem_temp
+	storet 2,mem_le_cur_handle_start
+	branch le_send_att_find_primary_search_loop1
+
+le_send_att_find_primary_search_end_ending_handle_found:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,le_send_att_find_primary_search_loop1
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE,mem_le_search_res
+	fetcht 2,mem_temp
+	increase -1,temp
+	storet 2,mem_le_cur_handle_end
+le_send_att_find_primary_search_end:
+	fetch 2,mem_le_cur_handle_start
+	icopy rega//handle start
+	fetch 2,mem_le_cur_handle_end
+	icopy regb//handle end
+	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_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_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_characteristic,zero
+	arg 2,timeup
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+le_send_att_read_by_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_type_response_end
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_response_next_handle,zero
+	nbranch le_send_att_read_by_type_res_found_next,user
+	disable user
+	
+	call le_send_att_read_by_type_write_properties
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+le_send_att_read_by_type_response_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_type_response_loop
+le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_auto_len_by_mem
+
+le_send_att_read_by_type_res_found_next:
+	call le_store_att_record
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	fetch 1,mem_le_l2cap_response
+	beq 21,le_send_att_read_by_type_response_end
+	fetch 1,mem_le_cur_uuid_lenth
+	increase 5,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_type_response_end,zero
+	
+	call get_contw
+	fetch 2,mem_temp
+	increase -1,pdata
+	istore 2,contw
+	call le_write_att_record_common
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+	branch le_send_att_read_by_type_response_next_handle
+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 get_contr
+	call memcpy_fast
+	branch store_contw
+le_send_att_read_by_type_write_uuid:
+	call get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call store_contw
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call get_contw	
+	call get_contr
+	isub loopcnt,contr
+	increase -1,contr
+	call memcpy_fast
+	branch store_contw
+
+
+
+le_send_att_read_by_type_res_not_characteristic:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+le_send_att_read_by_type_res_not_char_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_error_response_notfound,positive
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_error_response_notfound
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_res_not_char_next,zero
+le_check_if_name_uuid:
+	fetch 1,mem_le_search_uuid_length
+	bne 2,le_send_att_read_by_type_res_not_name
+	fetch 2,mem_le_search_uuid
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_name,zero
+	fetch 1,mem_le_name_len
+	branch le_send_att_read_by_type_res_not_char_common
+le_send_att_read_by_type_res_not_name:	
+	fetch 1,mem_le_search_len
+le_send_att_read_by_type_res_not_char_common:
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_temp
+	istore 2,contw
+	call get_contr
+	call memcpy_fast
+	branch le_send_autolen
+le_send_att_read_by_type_res_not_char_next:
+ 	call le_att_next_handle
+	branch le_send_att_read_by_type_res_not_char_loop
+	
+	
+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:
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION,le_send_att_read_response_common
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_le_pairing_handle
+	isub temp,null
+	branch le_send_att_read_response_error_insufficient_authentication,zero
+le_send_att_read_response_common:
+	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_fast
+	branch le_send_autolen
+
+le_send_att_read_response_error_insufficient_authentication:
+	fetch 1,mem_le_pairing_mode
+	branch le_send_att_read_response_common,blank
+	fetch 1,mem_le_state
+	bbit1 lestate_encryption,le_send_att_read_response_common
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+	
+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_fast	
+	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
+	//store 1,0x1ff0
+	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
+
+
+//mem_le_search_att_type
+//mem_le_search_handle_start
+//mem_le_search_handle_end
+le_send_att_read_by_group_type_response:
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+//	enable user
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+le_send_att_read_by_group_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_group_type_end1
+
+	call le_att_same_type
+	nbranch le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,le_send_att_read_by_group_type_end1
+	nbranch 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 store_contw
+	branch le_send_att_read_by_group_type_store_record
+le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_l2cap_response
+	beq 20,le_send_att_read_by_group_type_end1
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_group_type_end1,zero
+//	fetch 1,mem_le_l2cap_response
+//	sub pdata,0x10,null
+//	branch le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call le_write_att_record
+le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call le_store_att_record
+	increase -1,timeup
+	branch le_send_att_read_by_group_type_last_find,zero		
+le_send_att_read_by_group_type_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_group_type_response_loop
+le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch le_send_att_read_by_group_type_next_handle
+le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+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 le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call le_write_att_record
+	branch le_send_auto_len_by_mem
+
+	
+le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+le_att_check_handle_end:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+le_att_same_type:
+	fetcht 1,mem_le_search_att_type_length
+	arg mem_le_search_att_type,rega
+le_att_check_same_common:
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	isub temp,null
+	nrtn zero
+	arg mem_le_cur_uuid ,regb
+	branch string_compare
+
+le_att_same_uuid:
+	fetcht 1,mem_le_search_uuid_length
+	arg mem_le_search_uuid,rega
+	branch le_att_check_same_common
+	
+	
+le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast
+
+le_send_auto_len_by_mem:
+	call get_contw
+	branch le_send_autolen
+	
+le_write_att_record:
+	call get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+le_write_att_record_common:
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy_fast
+	branch store_contw
+	
+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_fast
+	branch le_send_autolen
+	
+	
+le_send_att_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+
+le_send_att_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_NOTIFICATION,le_send_att_notify_continue
+	beq LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response_continue
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+	rtn
+
+le_send_att_notify_continue:
+	fetch 2,mem_cb_update_notify_continue
+	branch callback_func
+
+le_send_att_prepare_write_response_continue:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	fetcht 2,mem_prepare_write_offest
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+//	fetch 2,mem_module_hci_notify_start
+//	copy pdata,contru
+//	fetch 2,mem_prepare_write_offest
+//	iadd contru,contru //start + offset
+	arg mem_temp_prepare_write_request,rega
+	fetch 2,mem_prepare_write_offest
+	iadd rega,rega
+	iadd loopcnt,pdata
+	store 2,mem_prepare_write_offest //offset += len;
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	copy rega,contr
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_not_fill_l2cap_len
+	
+	
+le_send_att_prepare_write_response:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	add pdata,5,temp   //1byte opcode,2byte handle,2byte offset
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 18,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_prepare_write_offest
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg 0x02,type  //LLIC:start
+	//setarg 4
+	//store 2,mem_le_txcid // l2cap cid
+	//jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_le_l2cap // att op-code
+	fetch 2,mem_prepare_handle //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_le_prepare_write_req_offset 
+	istore 2,contw //offset
+//	fetch 2,mem_temp_prepare_write_request
+//	copy pdata,contru
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	arg mem_temp_prepare_write_request,contr
+	call memcpy_fast
+le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+
+le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	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:
+	fetch 2,mem_cb_update_notify_value
+	branch callback_func
+
+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 patch27_0,mem_patch27
+	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 patch27_1,mem_patch27
+	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
+le_send_non_l2cap1:
+	nsetflag blank,md,temp
+le_send_non_l2cap2:
+	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 patch27_2,mem_patch27
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	nbranch le_send_no_txlen,true
+	fetch 1,mem_le_txlen
+	rtn blank
+le_send_no_txlen:	
+	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 patch27_3,mem_patch27
+	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_continue,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
+le_parse0:
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	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
+	beq LL_PING_REQ,le_parse_ping_req
+	store 1,mem_le_ll_cur_opcode
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 2,mem_le_rxbuf+2
+	store 2,mem_le_l2cap_pdu_length
+	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_parse_continue_att:
+	jam LE_CONTINUE_FLAG_RX,mem_le_continue_flag
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,le_parse_l2cap_continue_write_request
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_l2cap_continue_prepare_write_request
+	beq ATTOP_WRITE_COMMAND,le_parse_l2cap_continue_write_command
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+
+le_parse_l2cap_continue_common:
+	fetch 1,mem_le_rxbuf+1
+	icopy regb
+	arg mem_le_rxbuf+2,rega
+	call le_writeatt_cb
+
+	fetch 1,mem_le_rxbuf+1
+	fetcht 2, mem_le_buff_len
+	iadd temp,pdata
+
+	store 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	rtn
+
+le_parse_l2cap_continue_write_command:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+le_parse_l2cap_continue_write_request:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_write_request_end
+
+le_parse_l2cap_continue_prepare_write_request:
+	fetcht 2,mem_prepare_write_len	
+	fetch 1,mem_le_rxbuf+1
+	icopy loopcnt
+	iadd temp,pdata
+	store 2,mem_prepare_write_len
+	
+	arg mem_temp_prepare_write_request,pdata
+	iadd temp,contw
+	arg mem_le_rxbuf+2,contr
+	call  memcpy_fast
+
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_prepare_write_request_end
+
+
+
+
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	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
+	beq SMP_PAIRING_PUBLIC_KEY,le_parse_smp_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_parse_smp_dhkey_check
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+//	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
+	rtn
+
+
+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
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter
+ 	jam 0,mem_lpm_mode  
+	jam 30,mem_shutter_conn_update_timer		
+	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_device_option
+	bne dvc_op_shutter,le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+le_parse_terminate_ind_common:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+	
+le_parse_enc_req:
+	ifetch 8,contr
+	store 8,mem_le_rand
+	ifetch 2,contr
+	store 2,mem_le_ediv
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	call  le_xtype_fifo_in
+	jam FLAG_LE_ENC_START,mem_le_enc_state
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,load_device_list_mode_4_shutter
+	rtnne dvc_op_module
+	branch load_device_list_mode_4
+	
+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
+	call le_xtype_fifo_in
+	jam BT_EVT_LE_START_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+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:
+	jam FLAG_LE_ENC_PAUSE,mem_le_enc_state
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in	
+	jam BT_EVT_LE_PAUSE_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+	
+le_parse_pause_enc_rsp:
+	rtn
+
+le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+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
+	call le_xtype_fifo_in	
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_parse_smp_pairing_request_shutter
+	call le_check_master_support_secure_connect
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state
+	fetch 1,mem_le_preq_iocap
+	beq  FLAG_IOCAP_DISPlAYONLY,le_set_tk_0
+	beq  FLAG_IOCAP_DISPLAYYESNO,le_set_tk_0
+	beq  FLAG_IOCAP_NOINPUTNOOUTPUT,le_set_tk_0
+	fetch 1,mem_le_pairing_mode	
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,le_genernate_tk
+le_set_tk_0:
+	arg 0,pdata
+	store 4,mem_le_tk
+	rtn
+le_parse_smp_pairing_request_shutter:
+	jam 1,mem_shutter_key_data_flag
+	rtn
+	
+le_genernate_tk:
+	arg mem_le_tk,rega
+	copy rega,contw
+	arg 3,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_tk + 2
+	and_into 0x7,pdata
+	store 2,mem_le_tk + 2
+	jam BT_EVT_LE_TK_GENERATE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_check_master_support_secure_connect:
+	fetch 1,mem_le_preq_auth
+	rtnbit1  LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+	fetch 1,mem_le_pairing_mode
+	rtnbit0 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+	branch app_ble_disconnect	
+	
+	
+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:
+	copy contr,rega
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_confirm_secure_passkey
+	copy rega,contr
+	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_confirm_secure_passkey:
+	copy rega,contr
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+	rtn
+
+le_parse_smp_pairing_random:	
+	copy contr,rega
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_parse_smp_pairing_random_sc
+	copy rega,contr
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+le_pairing_failed:
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	call le_xtype_fifo_in
+le_parse_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam BT_EVT_LE_PAIRING_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+le_parse_smp_pairing_random_sc:
+	arg mem_le_mrand,contw
+	copy rega,contr
+	call memcpy16	
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_random_sc_passkey
+	call function_g2
+//	jam LE_SC_STAT_RECEIVE_RANDOM,mem_le_secure_connect_state
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_hci_event_le_gkey
+	rtn
+	
+le_parse_smp_pairing_random_sc_passkey:
+	call function_f4_ca
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result	
+	arg mem_AES_CMAC_temp,rega
+	arg mem_le_rconfirm ,regb
+	arg 16,loopcnt
+	call string_compare
+	nbranch le_dhkey_check_fail,zero
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam BT_EVT_LE_PAIRING_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	jam 1,mem_ltk_exists
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	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_public_key:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	store 1,mem_le_public_length
+	copy pdata,loopcnt
+	arg mem_le_pubkey_remote_x_256,contw
+	increase 5,contr
+	branch memcpy_fast
+
+le_parse_smp_dhkey_check:
+	arg mem_sp_confirm_remote,contw
+	call memcpy16	
+	jam LE_SC_STAT_RECEIVE_DHKEY,mem_le_secure_connect_state
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	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:
+	arg mem_le_irk,contw
+	call memcpy16
+	fetch 1,mem_le_conn_peer_addr_type
+	rtneq MASTER_PUBLIC_ADDR
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	rtn true
+	branch app_ble_store_reconn_info
+	
+le_parse_smp_identity_address_information:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+	
+le_parse_att_exchange_mtu_response:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_remote_mtu
+	rtn
+	
+le_parse_att_exchange_mtu_request:
+	call le_parse_att_exchange_mtu_response
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_request:
+	call le_get_search_handle_start_end_common
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+	
+le_parse_att_find_by_type_value_request:
+	call le_get_search_handle_start_end_common
+	ifetch 2,contr
+	store 2,mem_le_search_uuid
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -7,pdata
+	call le_get_search_common2
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_read_by_type_request:
+	call le_get_search_handle_start_end_common
+	call le_get_search_att_uuid
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+le_get_search_handle_start_end_common:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	rtn
+
+le_get_search_att_type:
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+le_get_search_common:	
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -5,pdata
+le_get_search_common2:		
+	istore 1,contw
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast	
+	
+le_get_search_att_uuid:
+	call store_contr
+	arg mem_le_search_uuid_length,contw
+	branch le_get_search_common
+
+
+
+	
+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_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_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_by_group_type_request:
+	call le_get_search_handle_start_end_common
+ 	call le_get_search_att_type
+
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_command:
+	call le_parse_att_write_common
+	branch le_check_long_packet_patch
+	
+le_parse_att_write_request:
+	call le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in	
+
+le_check_long_packet_patch:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	increase -3,pdata
+
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	storet 2,mem_le_buff_data_len_all
+	increase -3,temp
+	isub temp,null
+	rtn
+
+le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_write_common1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	rtn blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_write_common0,positive
+	copy pdata,loopcnt
+le_parse_att_write_common0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy_fast
+le_parse_att_write_common1:
+	arg mem_le_rxbuf+9,rega
+	branch le_writeatt_cb
+	
+
+le_parse_att_prepare_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	increase -2,temp
+	storet 2,mem_le_buff_data_len_all
+
+	fetch 1,mem_le_rxbuf+1
+	increase -9,pdata
+	store 2,mem_prepare_write_len
+	
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_prepare_write_request1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch  le_parse_att_prepare_write_request_end,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_prepare_write_request0,positive
+	copy pdata,loopcnt
+le_parse_att_prepare_write_request0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+le_parse_att_prepare_write_request1:
+	copy regb,loopcnt
+	arg mem_temp_prepare_write_request,contw
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+	arg mem_le_rxbuf+11,rega
+	fetch 2,mem_le_rxbuf+9
+	store 2,mem_le_prepare_write_req_offset
+	fetcht 2,mem_le_att_handle
+	storet 2,mem_prepare_handle
+
+	call le_writeatt_cb
+
+	fetch 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	nrtn zero
+le_parse_att_prepare_write_request_end:
+	jam ATTOP_PREPARE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_execute_write_request:
+	jam ATTOP_EXECUTE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+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:
+	jam 36,mem_le_ch_mapped
+le_adv_loop:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	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
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	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 patch28_1,mem_patch28
+	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 patch28_2,mem_patch28
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+le_parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	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 patch28_4,mem_patch28
+	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 patch28_5,mem_patch28
+	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 patch28_6,mem_patch28
+	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 patch28_7,mem_patch28
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	fetch 2,mem_ui_le_uuid_table
+	iforce 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:
+	call le_att_get_handle_ptr2
+	branch le_att_get_handle_ptr_found,zero
+	rtn
+	
+le_att_get_handle_ptr2:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_handle_loop1:
+	ifetch 2,contr
+	rtn blank
+	isub temp,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr	
+	ifetch 1,contr			// length  
+	iadd contr,contr
+	branch le_att_get_handle_loop1
+le_att_get_handle_ptr_found:
+	ifetch 1,contr
+	iadd contr,contr	
+	rtn	
+
+
+
+le_att_get_short_uuid_ptr:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_short_uuid_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 1,contr
+	iadd contr,contr
+	increase -2,contr
+	ifetch 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			 
+	iadd contr,contr
+	branch le_att_get_short_uuid_loop	
+
+
+
+le_att_get_handle_info_from_ptr:
+	fetch 2, mem_le_cur_attlist_start_ptr
+	copy pdata,contr
+	branch le_att_get_handle_info+1
+
+le_att_get_handle_info:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	copy temp,rega
+le_att_get_handle_loop:
+	ifetch 2,contr
+	branch le_att_unfind_handle,blank
+	isub rega,null
+	branch le_att_finded_handle, zero
+	ifetch 1,contr			// length  
+	iadd contr,contr	
+	ifetch 1,contr			//length 
+	iadd contr,contr
+	branch le_att_get_handle_loop
+le_att_unfind_handle:
+	setarg 1
+	rtn
+le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	arg mem_le_cur_uuid,contw
+	call memcpy_fast
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call store_contr
+	setarg 0
+	rtn
+
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_short_uuid_ptr
+	rtn blank
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,null
+	nbranch le_name_length_longer_than_att,positive
+	isub temp,temp
+	arg mem_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+	rtn
+le_name_length_longer_than_att:
+	copy pdata,loopcnt
+	arg mem_le_name,contr
+	branch memcpy_fast
+
+
+le_modified_name_adv:
+	arg mem_le_adv_data_len+32,regc
+	arg mem_le_adv_data,rega
+	call le_modified_name_adv_and_scan
+	setarg 0
+	setflag user,0,pdata
+	store 1,mem_pdatatemp
+	arg mem_le_scan_data_len+32,regc
+	arg mem_le_scan_data,rega
+	call le_modified_name_adv_and_scan
+	rtn user
+	fetch 1,mem_pdatatemp
+	branch assert,blank
+	rtn
+
+
+le_modified_name_adv_and_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call enable_usr
+	call clear_temp_block
+	arg 0,regb	//current length
+	arg mem_le_data_temp,contw
+	call le_modified_name_adv_loop
+	fetch 1,mem_le_name_len
+	add pdata,1,temp
+	iadd regb,rega	
+	increase 2,rega
+	sub rega,0x1f,null
+	nbranch le_modified_name_adv_and_scan_name_overflow,positive
+	istoret 1,contw		//store ble name length
+	arg 0x09,temp
+	istoret 1,contw		//store ble name type
+	iforce loopcnt
+	call memcpy_fast
+	copy rega,regb
+le_modified_name_adv_and_scan_store_data:
+	deposit regb
+	store 1,mem_le_data_len_temp
+	arg mem_le_data_len_temp,contr
+	setarg -32
+	iadd regc,contw
+	branch memcpy32
+
+le_modified_name_adv_and_scan_name_overflow:
+	call disable_usr
+	branch le_modified_name_adv_and_scan_store_data
+	
+le_modified_name_adv_loop:
+	ifetch 1,rega		//pdata:length
+	rtn blank			//length is zero,ending find
+	pincrease 1		//length += 1
+	ifetcht 1,contr		//pdata:type
+	sub temp,0x09,null
+	branch le_modified_name_adv_found_name,zero
+	iadd regb,regb	
+	copy rega,contr
+	iforce loopcnt
+	call memcpy_fast
+	copy contr,rega
+le_modified_name_adv_loop2:
+	deposit rega
+	isub regc,null
+	rtn positive
+	branch le_modified_name_adv_loop
+
+le_modified_name_adv_found_name:
+	iadd rega,rega
+	branch le_modified_name_adv_loop2
+
+
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+	
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	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 2,mem_cb_le_set_mult
+	call callback_func
+	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 patch29_6,mem_patch29
+	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_secure_connect_sm:
+	fetch 1,mem_le_secure_connect_enable
+	rtneq 0
+	fetch 1,mem_le_secure_connect_flag
+	rtnne LE_SP_FLAG_COMMIT_256
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	jam SP_FLAG_STANDBY,mem_le_secure_connect_flag
+	fetch    1,mem_le_secure_connect_state
+	beq  LE_SC_STAT_RECEIVE_PUBLIC_KEY,le_sc_receive_public_key
+	beq LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,le_sc_wait_send_public_key
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,le_sc_send_public_key
+	beq LE_SC_STAT_RECEIVE_DHKEY,le_sc_receive_dhkey
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,le_sc_wait_confirm_gkey
+	beq  LE_SC_STAT_PASSKEY_WAIT_CONFIRM,le_sc_passkey_wait_confirm
+	rtn	
+
+
+le_sc_passkey_wait_confirm:
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+	fetch 4,mem_le_tk
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	branch le_sc_ready_send_pairing_confirm
+	
+le_sc_wait_confirm_gkey:
+	fetch 1,mem_le_sc_confirm_gkey_flag
+	jam FLAG_LE_SC_CONFRIM_NULL,mem_le_sc_confirm_gkey_flag
+	beq FLAG_LE_SC_CONFRIM_GKEY_OK,le_sc_confirm_gkey_ok
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_sc_confirm_gkey_ok:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_SMP_PAIRING_DHKEY_CHECK,mem_fifo_temp
+	branch le_xtype_fifo_in		
+
+le_sc_receive_dhkey:
+	fetch 1,mem_sp_dhkey_invalid
+	beq SP_KEY_VALID_256,le_dhkey_ready
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+
+le_dhkey_ready:
+	call function_f5
+//	arg mem_le_r,contw
+//	force 2,loopcnt
+//	call memset0
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok_passkey
+	call le_set_tk_0 
+le_dhkey_ready_common:
+	call function_f6_ea
+	arg mem_AES_CMAC_temp,rega
+	arg mem_sp_confirm_remote ,regb
+	arg 16,loopcnt
+	call string_compare
+	branch le_dhkey_check_ok,zero
+le_dhkey_check_fail:	
+	branch le_pairing_failed
+le_sc_confirm_gkey_ok_passkey:
+//	fetch 4,mem_le_tk
+//	store 4,mem_le_r
+	branch le_dhkey_ready_common
+	
+le_dhkey_check_ok:
+	jam 1,mem_ltk_exists
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,le_sc_confirm_gkey_ok
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok	
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_WAIT_CONFIRM_GKEY,mem_le_secure_connect_state	
+	rtn	
+
+le_sc_send_public_key:
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_sc_send_public_key_passkey
+	jam 0,mem_passkey_1bit
+le_sc_ready_send_pairing_confirm:
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+le_sc_send_public_key_passkey:
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+//	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+//	branch p_ng_event_le_get_passkey
+	jam 0,mem_authentication_passkey_times
+//	rtn
+	branch le_genernate_tk
+	
+le_sc_receive_public_key:
+//call ice_break
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	fetch 1,mem_le_sc_local_key_invalid
+	beq SP_KEY_VALID_256,le_public_key_ready
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_public_key_ready:
+	jam SP_KEY_INVALID,mem_sp_dhkey_invalid
+	call sp_dhkey_calc_256	
+	jam LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,mem_le_secure_connect_state	
+	rtn 
+//	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+//	branch le_xtype_fifo_in
+
+le_sc_wait_send_public_key:
+	call le_xtype_fifo_is_empty
+	branch le_public_key_ready_send,blank
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag	
+	rtn
+le_public_key_ready_send:
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+
+
+
+le_pairing_public_key_continue:
+	arg mem_le_pubkey_remote_x_256,pdata
+	fetcht 1,mem_le_public_length
+	iadd temp,contw
+//copy contw,rega
+	fetch 1,mem_le_rxbuf+1
+	copy pdata,loopcnt
+	iadd temp,temp
+	call memcpy_fast
+	storet 1,mem_le_public_length
+	copy temp,pdata
+//call ice_break
+	rtnne 64
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_RECEIVE_PUBLIC_KEY,mem_le_secure_connect_state
+	rtn
+le_parse_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	fetch 1,mem_le_public_length
+	bne 0,le_pairing_public_key_continue
+	branch le_parse_continue_att
+
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	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:	
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	call lmo_fifo_check
+	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 patch2a_4,mem_patch2a
+  	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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	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
+	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_iocap_req:
+	call iocap_lmpext_load
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_common:
+	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
+	rtn
+
+	
+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
+	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
+	nrtn 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
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	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_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
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	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:	
+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
+	branch sniff_exit
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	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
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	//fetch 1,mem_auth_enable
+	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_moudle:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	fetch 1,mem_pairing_auth
+	call load_device_list,blank
+	rtn	
+
+parse_lmp_au_rand:
+	call parse_lmp_au_rand_moudle
+	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
+	branch reject_lmp_packet
+
+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 authentication_ok_common
+	fetch 1,mem_ssp_enable
+	branch  pairing_success,blank
+	rtn
+
+	
+authentication_ok_common:
+	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
+	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
+	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:
+	branch accept_lmp_msg
+
+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:
+parse_lmp_preferred_rate:
+parse_lmp_max_power:
+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_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+
+parse_lmp_sniff_req_check_sniff_para:
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	fetcht 1,mem_lpm_mult
+	imul32 temp,pdata
+	arg 0x640,temp
+	isub temp,null
+//	branch lmp_reject_sniff,positive
+	rtn
+	
+parse_lmp_sniff_req:
+	call parse_lmp_sniff_req_check_sniff_para
+	branch lmp_reject_sniff,positive
+	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:
+parse_lmp_temp_key:
+parse_lmp_timing_accuracy_res:	
+parse_lmp_unit_key:	
+parse_lmp_use_semi_permanend_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
+	branch sniff_exit
+	
+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:
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,parse_lmp_accepted_simple_pairing_number_ssp_pin
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_accepted_simple_pairing_number_passkey
+parse_lmp_accepted_simple_pairing_number_common:
+	call check_localsm
+	rtn true
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+	call g_noninit_number_confirm
+	jam BT_EVT_BT_GKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_simple_pairing_number_common
+
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+	call check_localsm
+	rtn true
+	fetch 1,mem_authentication_passkey_times
+	beq 19,authentication_passkey_end
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+//	branch p_authentication_passkey
+
+authentication_passkey:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	fetch 6,mem_pin
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	rtn
+
+authentication_passkey_end:	
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	call parse_lmp_accepted_dhkey_check_common
+pairing_success:
+	fetch 1,mem_flag_pairing_state
+	rtn blank
+	jam FLAG_PAIRING_STATE_NOT_PAIRING,mem_flag_pairing_state
+	jam BT_EVT_BT_PAIRING_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_accepted_dhkey_check_common:
+	//here must be change***  shyd
+	call check_localsm
+	ncall g_noninit,true	//when be master  call g_init
+	call g_init,true
+	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
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	fetch 1,mem_ssp_mode_flag
+	rtneq  SSP_MODE_PASSKEY_ENTRY_FLAG
+	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
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_encapsulated_payload_all_accepted_get_passkey
+	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_get_passkey:
+	jam BT_EVT_BT_GET_PASSKEY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+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
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,number_comparison_mode
+number_comparison_successed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	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
+
+number_comparison_mode:
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,comparison_result
+	set1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,pdata
+	store 1,mem_flag_mode_ssp_pin
+	rtn
+	
+comparison_result:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	jam 0,mem_flag_mode_ssp_pin
+	branch parse_lmp_dhkey_check_reject
+
+	
+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*/
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+
+	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
+
+
+	
+	
+
+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 patch2b_0,mem_patch2b
+	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
+send_lmp0:
+	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_INCR_POWER_REQ,send_lmp_inc_power	
+	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_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_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
+	call send_lmp_follow
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	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_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:
+	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
+	branch send_lmp_follow
+
+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_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_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//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
+
+
+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 3,mem_sp_iocap_local
+         istore 3,contw
+	call send_lmp_reply
+	jam FLAG_PAIRING_STATE_PAIRING,mem_flag_pairing_state
+	fetch 1,mem_sp_iocap_local
+	beq DISPLAY_YESNO,responder_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_keyboard_only_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_keyboard_only_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output
+	rtn
+
+
+responder_iocap_display_yesno:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_display_yesno_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_display_yesno_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_display_yesno_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_display_yesno_initiator_iocap_no_input_no_output
+	rtn
+
+	
+responder_iocap_no_input_no_output:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_no_input_no_output_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_no_input_no_output_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+set_ssp_mode_justwork: 
+	jam SSP_MODE_JUST_WORK_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+set_ssp_mode_numeric_comparison: 
+	jam SSP_MODE_SSP_PIN_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:	
+responder_iocap_keyboard_only_initiator_iocap_display_only:	
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+set_ssp_mode_passkey: 
+	jam SSP_MODE_PASSKEY_ENTRY_FLAG,mem_ssp_mode_flag
+	rtn
+
+
+
+         
+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 */
+	arg 14,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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	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_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_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_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_inc_power:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x00		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+
+send_lmp_setup_complete:
+	jam LMP_MAX_SLOT_REQ,mem_lmo_opcode2
+	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
+	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:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	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:
+	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
+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
+
+//blank : not full 
+lmo_fifo_check:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	rtn
+
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	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 patch2b_5,mem_patch2b
+	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 patch2b_6,mem_patch2b
+
+	call lmo_fifo_check
+	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 le_modified_name
+	call adc_init_data
+	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_conn_process
+	store 2,mem_cb_le_process
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg module_le_tx_update_notify_continue
+	store 2,mem_cb_update_notify_continue
+	setarg module_hci_event_receive_spp_data
+	store 2,mem_cb_receive_spp_data
+	setarg module_le_receive_data
+	store 2,mem_cb_att_write
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	call module_lpm_uart_init
+	call module_gpio_init
+	call check_module_disabled
+	call eeprom_load_reconn_info
+	branch module_hci_event_enter_standby_mode
+
+
+module_lpm_uart_init:
+	fetch 4,mem_module_uart_rx_buffer
+	hstore 4,core_uart_rsaddr
+
+	fetch 4,mem_module_uart_tx_buffer
+	hstore 4,core_uart_tsaddr
+
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+
+	fetch 2,mem_module_uart_rx_buffer
+	hstore 2,core_uart_rrptr
+	fetch 2,mem_module_uart_tx_buffer
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+
+	hfetch 4,core_gpio_pu0
+	set1 7,pdata
+	hstore 4,core_gpio_pu0
+	
+	call hci_init_common
+	fetch 1,mem_module_flag
+	isolate1 MODULE_FLAG_UART_FLOW_CONTROL,pdata
+	hfetcht 1,core_uart_ctrl
+	setflag true,4,temp
+	hstoret 1,core_uart_ctrl
+	rtn
+	
+
+
+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
+	branch gpio_config_input
+
+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:
+module_conn_process:
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	call module_control_air_flow
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_RECONN_FAILED,module_process_reconn_fail
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_SPP_CONNECTED,module_process_spp_connected
+	beq BT_EVT_SPP_DISCONNECTED,module_process_spp_disconnected
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_ENTER_SNIFF,module_process_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,module_process_exit_sniff
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_process_page_time_out
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_PAIRING_FAIL,module_hci_event_le_pairing_fail
+	beq BT_EVT_LE_PAIRING_SUCCESS,module_hci_event_le_pairing_success
+	beq BT_EVT_LE_START_ENC,module_hci_event_start_enc
+	beq BT_EVT_LE_PAUSE_ENC,module_hci_event_pause_enc
+	beq BT_EVT_LE_TK_GENERATE,module_hci_event_le_tk
+	beq BT_EVT_BT_GKEY_GENERATE,module_hci_event_gkey_generate
+	beq BT_EVT_BT_GET_PASSKEY,module_hci_event_passkey_entry_mode
+	beq BT_EVT_BT_PAIRING_FAIL,module_hci_event_bt_pairing_fail	
+	beq BT_EVT_BT_PAIRING_SUCCESS,module_hci_event_bt_pairing_success
+	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:
+	fetch 1,mem_flag_pairing_state
+	ncall module_hci_event_bt_pairing_fail,blank
+	call module_disconn_start
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	branch  module_spp_disconnected
+
+module_process_spp_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SPP_CONN,pdata
+	//set1 UI_STATE_SPP_NL_AUTO_DISCOVER,pdata
+	store 2,mem_ui_state_map
+	fetch 1,mem_module_spp_lpm_mult
+	store 1,mem_lpm_mult
+	call module_set_conn_pin_low
+	branch module_hci_event_spp_connect
+
+module_process_spp_disconnected:
+//	branch module_spp_disconnected
+module_spp_disconnected:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SPP_CONN ,pdata
+	store 2,mem_ui_state_map
+	branch module_hci_event_spp_disconnect
+
+
+module_process_enter_sniff:
+
+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 MOUDLE_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall module_set_unsniff_task_flag,blank    //*仰
+	branch app_bt_sniff_exit
+
+module_process_exit_sniff:
+	branch app_lpm_mult_disable
+ 	
+module_process_setup_complete:
+	branch module_conn_start
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	branch module_hci_event_le_disconnect
+
+module_process_evt_pincode_req:
+	branch  app_bt_set_pincode
+	
+
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 MOUDLE_TASK_UNSINFF,app_bt_enter_sniff
+	branch module_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	branch module_clear_unsniff_task_flag
+
+	
+module_process_le_conn:
+	call module_conn_start
+	fetch 1,mem_module_le_lpm_mult
+	store 1,mem_lpm_mult
+	branch module_hci_event_le_connect
+
+
+module_process_bb_conn:
+	jam 0,mem_flag_mode_ssp_pin
+	rtn
+
+module_process_page_time_out:
+module_process_reconn_fail:
+module_disconn_start:
+	call module_start_adv_discovery_by_command
+	branch module_set_conn_pin_high
+
+
+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 MOUDLE_STATE_BT_BIT,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,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_with_credit:
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	branch rfcomm_send_uih_without_payload
+
+module_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	hfetch 1,core_uart_status
+	bbit1 uart_status_rx_fifo_empty,module_process_with_credit  //rx no data
+	call get_uart_rrptr
+	ifetch 1,contru
+	bne 0x01,module_hci_in_excp
+	hfetch 2,core_uart_rxitems
+	sub pdata,2,null
+	rtn positive
+	ifetch 1,contru
+	store 1,mem_uart_opcode
+	ifetcht 1,contru
+	copy contru,rega
+	storet 1,mem_uart_len
+	add temp,3,temp
+	hfetch 2,core_uart_rxitems
+	isub temp,temp
+	nrtn positive
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	call module_hci_cmd_control
+	fetch 1,mem_module_temp_nl_discard_packet
+	rtneq HCI_NOT_DISCARD_PACKET
+	branch module_hci_dicard_packet //discard this packet
+
+module_hci_in_excp:
+	call module_hci_event_invalid_packet
+	call wait_uarttx
+	branch module_hci_release_except
+
+
+module_hci_release_except:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	call get_uart_rrptr
+	ifetch 1,contru
+	sub pdata,0x01,null
+	ncall module_hci_dicard_bytes,zero
+	nbranch module_hci_release_except,zero
+	ifetch 1,contru
+	rtneq HCI_CMD_SPP_DATA_REQ
+	rtneq HCI_CMD_SET_CREDIT_GIVEN
+	increase -1,contru
+	call module_hci_dicard_bytes
+	branch module_hci_release_except
+
+module_hci_dicard_packet:
+	call get_uart_rrptr
+	increase 2,contru
+	ifetch 1,contru
+	iadd contru,contru
+module_hci_dicard_bytes:
+	branch uartd_rxdone
+	
+/*********************HCI CONTROL*********************/
+
+module_hci_cmd_control:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_uart_opcode
+	beq HCI_CMD_SET_BT_ADDR_REQ,module_hci_cmd_set_bt_addr
+	beq HCI_CMD_SET_LE_ADDR_REQ,module_hci_cmd_set_le_addr
+	beq HCI_CMD_SET_VISIBILITY_REQ,module_hci_cmd_set_visibility	
+	beq HCI_CMD_SET_BT_NAME_REQ,module_hci_cmd_set_bt_name
+	beq HCI_CMD_SET_LE_NAME_REQ,module_hci_cmd_set_le_name
+	beq HCI_CMD_SPP_DATA_REQ,module_hci_cmd_receive_spp_data
+	beq HCI_CMD_LE_DATA_REQ,module_hci_cmd_receive_le_data
+	beq HCI_CMD_STATUS_IRQ,module_hci_cmd_inquire_status
+	beq HCI_CMD_SET_PAIRING_REQ,module_hci_cmd_set_pairing_mode
+	beq HCI_CMD_SET_PINCODE_REQ,module_hci_cmd_set_pincode	
+	beq HCI_CMD_SET_UARTCONTROL_REQ,module_hci_cmd_set_uart_control_mode
+	beq HCI_CMD_SET_UART_BAUD_REQ,module_hci_cmd_set_uart_baud
+	beq HCI_CMD_VERSION_REQ,module_hci_cmd_version_request
+	beq HCI_CMD_BT_DISCONNECT,module_hci_cmd_bt_disconnect
+	beq HCI_CMD_BLE_DISCONNECT,module_hci_cmd_ble_disconnect
+	beq HCI_CMD_SET_NVRAM_REQ,module_hci_cmd_set_nvram
+	beq HCI_CMD_CONFIRM_GKEY,module_hci_cmd_confirm_gkey
+	beq HCI_CMD_SET_CREDIT_GIVEN,module_hci_cmd_set_credit_given
+	beq HCI_CMD_AUTO_ADV_SCAN,module_hci_cmd_auto_adv
+	beq HCI_CMD_POWER_REQ,module_hci_cmd_power_request
+	beq HCI_CMD_POWER_SET,module_hci_cmd_power_set
+	beq HCI_CMD_PASSKEY_ENTRY,module_hci_cmd_passkey_entry
+	beq HCI_CMD_SET_GPIO,module_hci_cmd_set_gpio
+	beq HCI_CMD_READ_GPIO,module_hci_cmd_read_gpio
+	beq HCI_CMD_LE_SET_PAIRING,module_hci_cmd_le_set_pairing_mode
+	beq HCI_CMD_LE_SET_ADV_DATA,module_hci_cmd_le_set_adv_data
+	beq HCI_CMD_LE_SET_SCAN_DATA,module_hci_cmd_le_set_scan_data
+	beq HCI_CMD_LE_SEND_CONN_UPDATE_REQ,module_hci_cmd_le_send_conn_update_req
+	beq HCI_CMD_LE_START_PAIRING,module_hci_cmd_le_start_pairing
+	beq HCI_CMD_LE_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey
+	branch  module_hci_event_receive_invalid_cmd
+
+/*********************HCI COMMAND*********************/
+
+//command opcode 0x00
+module_hci_cmd_set_bt_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_lap
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x01
+module_hci_cmd_set_le_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_le_lap
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x02
+module_hci_cmd_set_visibility:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	call module_hci_event_receive_valid_cmd
+	ifetcht 1,contru
+	storet 1,mem_module_bluetooth_stauts_by_command
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_CONNECTED
+	rtnbit1 UI_STATE_BT_CONNECTED
+module_start_adv_discovery_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	nbranch moudle_start_adv_by_command,true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	and temp,0x03,pdata
+	store 1,mem_scan_mode
+moudle_start_adv_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	nrtn true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	isolate1 2,temp
+	branch app_ble_start_adv,true
+	branch app_ble_stop_adv
+
+//command opcode 0x03
+module_hci_cmd_set_bt_name:
+	fetch 1,mem_uart_len
+	sub pdata,32,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_local_name_length
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_local_name,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x04
+module_hci_cmd_set_le_name:
+	fetch 1,mem_uart_len
+	sub pdata,0x13,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_le_name_len
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_name,contw
+	call uart_copy_rx_bytes_fast
+	call le_modified_name
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x05
+module_hci_cmd_receive_spp_data:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_SPP_CONN,module_hci_event_receive_invalid_cmd
+	call app_check_sniff
+	branch module_hci_cmd_spp_exut_sniff,true
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+//	call p_nl_clear_last_transmite_clock
+	fetch 1,mem_remote_credits
+	rtn blank
+	fetch 2,mem_nl_rx_len_all
+	bne 0,module_hci_cmd_pass_init_ng_rx_len_all
+	fetch 1,mem_uart_len
+	store 2,mem_nl_rx_len_all
+
+	copy rega,contru
+//	ifetch 2,contru
+//	store 2,mem_nl_rx_handle
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+module_hci_cmd_pass_init_ng_rx_len_all:
+	call module_hci_cmd_get_current_packet_len_and_remain_len
+	branch spp_tx_rfcomm_packet
+module_hci_cmd_spp_exut_sniff:
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	branch module_exit_sniff
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+	call module_hci_cmd_get_current_patcket_len
+	fetch 2,mem_nl_rx_len_all
+	fetcht 2,mem_current_packet_length
+	isub temp,pdata
+	store 2,mem_nl_rx_len_all
+	rtn
+
+module_hci_cmd_get_current_patcket_len:
+	fetch 2,mem_nl_rx_len_all
+	arg DM_REFCOM_BUFF_LEN,temp
+	call not_greater_than
+	fetcht 2,mem_rfcomm_max_frame_size
+	call not_greater_than
+	fetcht 2,mem_pn_max_frame_size
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+
+module_hci_command_tx_spp_tx_complete:
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	jam HCI_CMD_SPP_DATA_REQ,mem_uart_opcode
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x09
+module_hci_cmd_receive_le_data:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BLE_CONNECTED
+	
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //if packet should not be discarded, set to "NL_HCI_NOT_DISCARD_PACKET"
+	fetch 1,mem_le_continue_flag
+	nrtn blank
+ 	fetch 2,mem_module_hci_notify_len
+ 	branch module_hci_cmd_gatt_notify_start_packet,blank
+ 	fetcht 2,mem_module_hci_notify_offset
+ 	isub temp,null
+	nrtn zero   //not finish sending yet.
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,regb
+	nbranch assert,positive //debug, wont be negative
+	nbranch module_hci_cmd_gatt_notify_seperate,zero
+	call module_hci_cmd_gatt_notify_clear_len
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	branch module_set_le_tx_data_flag
+//	branch module_hci_event_receive_valid_cmd
+
+
+module_hci_cmd_gatt_notify_seperate:
+	fetch 1,mem_module_flag
+	rtnbit1 MODULE_FLAG_BLE_SEND_MTU23
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	fetch 2,mem_module_hci_notify_len
+	iadd contru,contru
+	copy contru,rega
+	setarg 0x0901
+	istore 2,contru
+	add regb,2,pdata
+	istore 1,contru
+	fetch 2,mem_module_hci_notify_att
+	istore 2,contru
+	copy rega,pdata
+	hstore 2,core_uart_rrptr
+module_hci_cmd_gatt_notify_clear_len:
+	setarg 0
+	store 2,mem_module_hci_notify_len//finish sending, discard this packet.
+	rtn
+	
+module_hci_cmd_gatt_notify_start_packet:
+	copy rega,contru
+	ifetch 2,contru // att handle	
+	store 2,mem_module_hci_notify_att
+	fetch 1,mem_uart_len  //length
+	increase -2,pdata
+
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	branch module_hci_event_receive_invalid_cmd,blank
+	store 2,mem_module_hci_notify_original_len
+
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_hci_cmd_notify_start_packet_mtu23
+	
+	fetcht 2,mem_le_remote_mtu
+module_hci_cmd_gatt_notify_start_packet1:
+	fetch 2,mem_module_hci_notify_original_len	
+	call not_greater_than
+
+	store 2,mem_module_hci_notify_len
+	copy contru,pdata
+	store 2,mem_module_hci_notify_start
+	setarg 0
+	store 2,mem_module_hci_notify_offset
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+module_hci_cmd_notify_start_packet_mtu23:
+	arg 20,temp
+	branch module_hci_cmd_gatt_notify_start_packet1
+
+
+module_le_tx_update_data:
+	fetch 1,mem_le_notify_type
+	jam 0,mem_le_notify_type
+	nbranch module_le_send_md_notify,blank
+
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_module_hci_notify_offset
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_le_tx_no_continue
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+module_le_tx_no_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+module_le_send_att_notify_common:
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	call uart_copy_rx_bytes_fast
+	fetch 1,mem_module_flag
+	bbit0 MODULE_FLAG_BLE_SEND_MTU23,module_le_send_not_fill_l2cap_len
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	call module_le_check_if_send_once_more
+	fetcht 1,mem_le_arq
+	fetch 1,mem_module_le_md_flag
+	branch module_le_send_non_l2cap_last,blank
+	nsetflag blank,md,temp	
+	storet 1,mem_le_arq
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam 1,mem_le_notify_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap1
+
+module_le_send_non_l2cap_last:
+	call module_set_le_tx_data_flag
+	branch le_send_non_l2cap
+
+module_set_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+	
+module_clear_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+
+module_le_check_if_send_once_more:
+	jam 0,mem_module_le_md_flag
+	isub temp,null
+	rtn zero
+	nrtn positive
+	jam 1,mem_module_le_md_flag
+	rtn	
+
+module_le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch module_le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+module_le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+module_le_tx_update_notify_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	fetcht 2,mem_module_hci_notify_offset
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru //start + offset
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset //offset += len;
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes_fast
+	arg 1,type   // LLID : continue
+module_le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+	
+module_le_send_md_notify:
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,pdata
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+
+	fetcht 2,mem_module_hci_notify_len
+	iadd temp,pdata	
+	store 2,mem_module_hci_notify_len
+	
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru  
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset  
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	branch module_le_send_att_notify_common
+
+//command opcode 0x0b
+module_hci_cmd_inquire_status:
+	branch module_hci_event_status_res
+
+
+//command opcode 0x0c
+module_hci_cmd_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	beq PAIRING_PINCODE,module_hci_pairing_pincode_mode
+	beq PAIRING_JUSTWORK,module_hci_pairing_just_work_mode
+	beq PAIRING_PASSKEY,module_hci_pairing_passkey
+	beq PAIRING_CONFIRM,module_hci_pairing_numeric_comparison
+	branch module_hci_event_receive_invalid_cmd
+module_hci_pairing_pincode_mode:
+	call ssp_disable
+	jam 0,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_just_work_mode:
+	setarg SSP_MODE_JUST_WORK_IO_CAP_DATA
+module_hci_sspairing_mode:	
+	store 3,mem_sp_iocap_local
+	store 1,mem_ssp_mode_flag
+	call ssp_enable
+	jam 1,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_passkey:
+	setarg SSP_MODE_PASSKEY_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+module_hci_pairing_numeric_comparison:
+	setarg SSP_MODE_SSP_PIN_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+//command opcode 0x0d
+module_hci_cmd_set_pincode:
+	fetch 1,mem_uart_len
+	sub pdata,16,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x0e
+module_hci_cmd_set_uart_control_mode:
+	copy rega,contru
+	ifetch 1,contru
+	hfetcht 1,core_uart_ctrl
+	nsetflag blank,4,temp
+	hstoret 1,core_uart_ctrl
+ 	branch module_hci_event_receive_valid_cmd
+
+ 	
+//command opcode 0x0f
+module_hci_cmd_set_uart_baud:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+module_hci_cmd_set_uart_baud_ok:
+	store uart_baud_len,mem_baud
+	call module_hci_event_receive_valid_cmd
+	call wait_uarttx
+	branch uart_set_baud_by_mem
+
+
+//command opcode 0x10
+module_hci_cmd_version_request:
+	arg 2,rega
+	arg mem_soft_version_num,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+module_hci_event_set_cmd_send_response:
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x11
+module_hci_cmd_bt_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_bt_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_bt_disconnect
+
+	
+//command opcode 0x12
+module_hci_cmd_ble_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_ble_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_ble_disconnect
+
+
+
+
+//command opcode 0x26
+module_hci_cmd_set_nvram:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	fetch 2,mem_nv_data_ptr
+	icopy contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x28
+module_hci_cmd_confirm_gkey:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd	
+	ifetch 1,contru
+	fetcht 1,mem_flag_mode_ssp_pin
+	setflag blank,FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,temp
+	set1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,temp
+	storet 1,mem_flag_mode_ssp_pin
+
+	call module_hci_event_receive_valid_cmd
+
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,module_hci_cmd_spp_number_comparison_result_is1
+	rtn
+
+dhkey_not_accept:
+	jam 0,mem_flag_mode_ssp_pin
+	jam BT_CMD_DHKEY_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+
+module_hci_cmd_spp_number_comparison_result_is1:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	branch dhkey_not_accept	
+
+
+//command opcode 0x29
+module_hci_cmd_set_credit_given:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	ifetch 1,contru
+	fetcht 1,mem_credit_given
+	iadd temp,temp
+	storet 1,mem_credit_given
+	rtn
+
+	
+//command opcode 0x2a
+module_hci_cmd_auto_adv:
+	arg 0x40,loopcnt
+	arg mem_le_adv_data_len,contw
+	call clear_mem
+	setarg 0
+	store 1,mem_regb
+	copy rega,contru
+module_hci_cmd_auto_adv_loop:
+	copy contru,pdata
+	store 2,mem_regc
+	call module_hci_cmd_auto_adv_adv_analys
+
+	fetch 1,mem_regb
+	fetcht 1,mem_temp
+	increase 1,temp
+	iadd temp,pdata
+	store 1,mem_regb
+
+	sub pdata,32,null
+	nbranch module_hci_cmd_auto_adv_store_scan,positive
+module_hci_cmd_auto_adv_store_adv:
+	fetcht 1,mem_le_adv_data_len
+	setarg mem_le_adv_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_adv_data_len
+	iadd temp,pdata
+	store 1,mem_le_adv_data_len
+	branch module_hci_cmd_auto_adv_store_common
+module_hci_cmd_auto_adv_store_scan:
+	fetcht 1,mem_le_scan_data_len
+	setarg mem_le_scan_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_scan_data_len
+	iadd temp,pdata
+	store 1,mem_le_scan_data_len
+module_hci_cmd_auto_adv_store_common:
+	fetch 2,mem_contw
+	copy pdata,contw
+	fetch 2,mem_regc
+	copy pdata,contru
+
+	copy temp,loopcnt
+	call uart_copy_rx_bytes_fast
+
+	fetch 1,mem_uart_len
+	fetcht 1,mem_regb
+	isub temp,null
+	nbranch  module_hci_cmd_auto_adv_loop,zero
+	jam 0x1f,mem_le_adv_data_len
+	jam 0x1f,mem_le_scan_data_len
+	branch module_hci_event_receive_valid_cmd
+
+//block of adv len in mem_temp
+module_hci_cmd_auto_adv_adv_analys:
+	ifetch 1,contru
+	store 1,mem_temp
+	ifetch 1,contru
+	store 1,mem_rega
+	rtn
+
+
+//command opcode 0x2b
+module_hci_cmd_power_request:
+	arg 0,temp
+	arg 2,rega
+	fetch 2,mem_module_vdd_quotient
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x2c
+module_hci_cmd_power_set:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	store 1,mem_module_read_vdd_flag
+	setarg 0x00
+	store 2,mem_module_vdd_quotient
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x30
+module_hci_cmd_passkey_entry:
+	ifetch 4,contru
+	store 4,mem_pin
+	jam 4,mem_pin_length
+	jam 0,mem_authentication_passkey_times
+	call module_hci_event_receive_valid_cmd
+	branch authentication_passkey
+
+
+//command opcode 0x31
+module_hci_cmd_set_gpio:
+	fetch 1,mem_uart_len
+	bne 3,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	beq 0x00,module_set_gpio_input
+	beq 0x01,module_set_gpio_output
+	branch module_hci_event_receive_invalid_cmd
+module_set_gpio_input:
+	ifetcht 1,contru
+	ifetch 1,contru
+	nsetflag blank,7,temp
+	call gpio_config_input
+	branch module_hci_event_receive_valid_cmd
+
+module_set_gpio_output:
+	ifetcht 1,contru
+	call gpio_config_output0
+	ifetch 1,contru	
+	isolate1 0,pdata
+	call gpio_out_flag
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x32
+module_hci_cmd_read_gpio:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetcht 1,contru
+	call gpio_get_bit
+	setarg 0x0
+	nsetflag true,0,pdata
+	arg 1,rega
+	branch module_hci_event_set_cmd_send_response
+
+
+//command opcode 0x33
+module_hci_cmd_le_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	store 1,mem_le_pairing_mode
+	arg 0,temp
+	isolate1  LE_PAIRING_MODE_SECURE_CONNECT_BIT,pdata
+	setflag true,0,temp 
+	storet 1,mem_le_secure_connect_enable
+	beq LE_PAIRING_MODE_NONE, module_le_set_no_pairing
+	beq LE_PAIRING_MODE_LAGACY_JUSTWORK,module_le_set_pairing_mode_lagacy_just_work
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,module_le_set_pairing_mode_lagacy_passkey
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,module_le_set_pairing_mode_secure_justwork
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_le_set_pairing_mode_secure_numeric
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,module_le_set_pairing_mode_secure_passkey
+	jam 0,mem_le_secure_connect_enable
+	branch module_hci_event_receive_invalid_cmd
+		
+module_le_set_pairing_mode_secure_justwork:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_secure_numeric:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	jam FLAG_IOCAP_DISPLAYYESNO,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_secure_passkey:	
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_displayonly
+module_le_set_no_pairing:
+	jam FLAG_LE_NO_BONDING_NO_MITM,mem_le_pres_auth
+module_le_set_noinputnooutput:	
+	jam FLAG_IOCAP_NOINPUTNOOUTPUT,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_lagacy_just_work:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_lagacy_passkey:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+module_le_set_displayonly:	
+	jam FLAG_IOCAP_DISPLAYONLY,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x34
+module_hci_cmd_le_set_adv_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_adv_data,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+	
+
+//command opcode 0x35
+module_hci_cmd_le_set_scan_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_scan_data,contw
+	call uart_copy_rx_bytes_fast	
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x36
+module_hci_cmd_le_send_conn_update_req:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_uart_len
+	bne 0x08,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	ifetch 8,contru
+	store 8,mem_le_interal_min
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x38
+module_hci_cmd_le_start_pairing:
+	fetch 1,mem_le_pairing_mode
+	branch module_hci_event_receive_invalid_cmd,blank
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_le_enc_state
+	bne FLAG_LE_ENC_NULL,module_hci_event_receive_invalid_cmd
+	call check_51cmd_le_smp_sec_req
+	branch module_hci_event_receive_valid_cmd	
+
+
+//command opcode 0x48
+module_hci_cmd_le_confirm_gkey:
+	ifetch 1,contru
+	beq 0x01,module_hci_cmd_le_confirm_gkey_fail
+	fetch 1,mem_le_secure_connect_state
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_RECEIVE_DHKEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey_ok
+	branch module_hci_event_receive_invalid_cmd		
+module_hci_cmd_le_confirm_gkey_ok:
+	jam FLAG_LE_SC_CONFRIM_GKEY_OK,mem_le_sc_confirm_gkey_flag
+	branch module_hci_event_receive_valid_cmd	
+	
+module_hci_cmd_le_confirm_gkey_fail:
+	call le_pairing_failed
+	branch module_hci_event_receive_valid_cmd	
+/*********************HCI EVENT*********************/
+
+module_hci_event_receive_invalid_cmd:
+	arg 1,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+module_hci_event_receive_valid_cmd:
+	arg 0,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+
+//event opcode 0x00
+module_hci_event_spp_connect:
+	jam  HCI_EVENT_SPP_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x02
+module_hci_event_le_connect:
+	jam  HCI_EVENT_LE_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x03
+module_hci_event_spp_disconnect:
+	jam  HCI_EVENT_SPP_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+	
+module_hci_event_le_disconnect:
+	jam  HCI_EVENT_LE_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+
+
+//event opcode 0x06
+//input:
+//	temp: success 0; fail 1
+//	rega:Response Content length
+//	regb:Response Content address
+module_hci_event_set_cmd:
+	fetch 1,mem_uart_opcode
+	copy pdata,regc
+	jam  HCI_EVENT_CMD_RES,mem_uart_opcode
+	setarg 2
+	iadd rega,pdata
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	istoret 1,contwu
+	copy rega,loopcnt
+	copy regb,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+//event opcode 0x07
+module_hci_event_receive_spp_data:
+//	call p_nl_clear_last_transmite_clock
+	jam HCI_EVENT_SPP_DATA_REP,mem_uart_opcode
+	fetch 1,mem_current_length
+	rtn blank
+	call module_hci_prepare_tx
+	fetch 1,mem_current_length
+	copy pdata,loopcnt
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x08
+module_hci_event_receive_le_data:
+	jam HCI_EVENT_LE_DATA_REP,mem_uart_opcode
+	fetch 1,mem_module_le_rx_data_len
+	icopy loopcnt
+	increase 2,pdata
+	call module_hci_prepare_tx
+	fetch 2,mem_module_le_rx_data_handle // Attribute handle
+	istore 2,contwu
+	fetch 2,mem_module_le_rx_data_address
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x09
+module_hci_event_enter_standby_mode:
+	jam HCI_EVENT_STANDBY_REP,mem_uart_opcode
+module_hci_event_enter_standby_mode_len0:
+	setarg 0
+	call module_hci_prepare_tx
+	branch uartd_send
+
+
+//event opcode 0x0a
+module_hci_event_status_res:
+	jam HCI_EVENT_STATUS_RES,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	
+	call module_hci_read_bt_status
+	
+	fetch 2,mem_ui_state_map	
+	arg UI_STATE_BT_HID_CONN,queue
+	qisolate1 pdata
+	setflag true,3,temp
+
+	arg UI_STATE_BLE_CONNECTED,queue
+	qisolate1 pdata
+	setflag true,5,temp	
+	
+	fetch 1,mem_ui_state_map
+	arg UI_STATE_BT_SPP_CONN,queue
+	qisolate1 pdata
+	setflag true,4,temp	
+	
+	istoret 1,contwu
+	branch uartd_send
+
+//	temp: bit0 3.0 inquiry;bit1 3.0 scan;bit2 ble adv;
+
+module_hci_read_bt_status:
+	arg 0,temp
+	fetch 1,mem_scan_mode
+	arg inq_scan_mode,queue
+	qisolate1 pdata
+	setflag true,0,temp
+	arg page_scan_mode,queue
+	qisolate1 pdata
+	setflag true,1,temp	
+
+	fetch 1,mem_le_adv_enable
+	arg 0,queue
+	qisolate1 pdata
+	setflag true,2,temp	
+	rtn
+
+
+
+//event opcode 0x0d
+module_hci_event_store_device:
+	jam HCI_EVENT_NVRAM_REP,mem_uart_opcode
+	fetch 1,mem_nv_data_number
+	mul32 pdata,34,pdata
+	icopy loopcnt
+	call module_hci_prepare_tx
+	fetch 2,mem_nv_data_ptr
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+
+//event opcode 0x0e
+module_hci_event_gkey_generate:
+	jam HCI_EVENT_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x0f
+module_hci_event_invalid_packet:
+	jam HCI_EVENT_INVALID_PACKET,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+//event opcode 0x10
+module_hci_event_passkey_entry_mode:
+	jam  HCI_EVENT_GET_PASSKEY,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x11
+module_hci_event_le_tk:
+	jam HCI_EVENT_LE_TK,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_le_tk
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x14
+module_hci_event_le_pairing_fail:
+	arg FLAG_BLE_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_le_pairing_success:
+	arg FLAG_BLE_PAIRING_SUCCESS,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_fail:
+	arg FLAG_BT_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_success:
+	arg FLAG_BT_PAIRING_SUCCESS,rega
+module_hci_event_pairing_completed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam HCI_EVENT_LE_PAIRING_STATE,mem_uart_opcode
+	setarg 2
+	call module_hci_prepare_tx
+	copy rega,pdata
+	istore 2,contwu
+	branch uartd_send
+
+//event opcode 0x15
+module_hci_event_pause_enc:
+	arg FLAG_EVENT_PAUSE_ENC,regc
+	branch module_hci_event_enc
+module_hci_event_start_enc:
+	arg FLAG_EVENT_START_ENC,regc
+module_hci_event_enc:
+	jam HCI_EVENT_LE_ENCRYPTION_STATE,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	branch uartd_send
+
+//event opcode 0x1d
+module_hci_event_le_gkey:
+	jam HCI_EVENT_LE_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//****************************************************************//
+	//module_hci_prepare_tx
+	//function:write hci packet header
+	//input: pdata-----packet length  (1byte)
+	//input: mem_uart_opcode------opcode (1byte)
+	//output:contwu --- pointer to packet payload
+	//use reg: contwu,pdata
+//****************************************************************//
+	
+module_hci_prepare_tx:
+	jam 0x02,mem_uart_cmd
+	store 1,mem_uart_len
+	storet 8,mem_temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	call module_set_mcu_wake_pin_high_delay
+	fetcht 8,mem_temp
+	call uartd_prepare_tx
+	fetch 3,mem_uart_cmd
+	istore 3,contwu
+	rtn
+
+
+
+module_set_mcu_wake_pin_high_delay:
+	call module_check_mcu_wake_pin_high
+	rtn true
+module_set_mcu_wake_pin_h_delay:
+	call module_set_mcu_wake_pin_high
+	fetch 4,mem_module_mcu_wake_delay_us
+	rshift2 pdata,pdata
+	rtn blank
+	branch delay
+module_set_mcu_wake_pin_high:
+	//call ice_break
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_active
+module_check_mcu_wake_pin_high:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_check_active
+module_set_mcu_wake_pin_low:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_inactive
+
+
+delay:
+	increase -1,pdata
+	nbranch delay,blank
+	rtn
+
+
+/*********************hci command end*********************/
+
+/*********************hci ble receive data start*********************/
+
+//rega is le rx data address
+//regb is le rx data length
+//mem_le_att_handle is write handle
+module_le_receive_data:
+	copy rega,pdata
+	store 2,mem_module_le_rx_data_address
+	copy regb,pdata
+	store 1,mem_module_le_rx_data_len
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_module_data_write_handle
+	isub temp,null
+	branch module_le_receive_data_ok,zero
+	fetcht 2,mem_module_data_write_handle2
+	isub temp,null
+	nrtn zero
+module_le_receive_data_ok:	
+	store 2,mem_module_le_rx_data_handle
+	branch module_set_le_rx_data_flag
+	
+
+module_le_transmit:
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_DATA,module_hci_event_send_le_data
+module_le_transmit1:
+	fetch 1,mem_module_flag
+	rtnbit0 MODULE_FLAG_BLE_RECEIVED_DATA	//not received le data form master
+	call module_hci_event_receive_le_data
+	branch module_clear_le_rx_data_flag
+
+module_hci_event_send_le_data:
+	jam HCI_CMD_LE_DATA_REQ,mem_uart_opcode
+	call module_hci_event_receive_valid_cmd
+	call module_clear_le_tx_data_flag
+	branch module_le_transmit1
+
+
+module_set_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+module_store_moule_flag:
+	store 1,mem_module_flag
+	rtn
+
+module_clear_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+	branch module_store_moule_flag
+
+
+/*********************hci ble receive data end*********************/
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	call module_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+
+
+
+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
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	call module_read_vdd_timer
+	branch module_bb_event_100ms_loop
+
+module_read_vdd_timer:
+	fetch 1,mem_module_read_vdd_flag
+	rtn blank
+	fetch 1,mem_module_read_vdd_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_module_read_vdd_count
+	nrtn blank
+	jam FLAG_MODULE_READ_VDD_COUNT,mem_module_read_vdd_count
+	call adc_set_mode
+	call vdd_calculate_by_mode
+	div pdata,0x64
+	call wait_div_end
+	quotient pdata
+	remainder temp
+	store 1,mem_module_vdd_quotient
+	storet 1,mem_module_vdd_remainder
+	rtn	
+	
+
+
+module_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+
+
+/*************at end*******************/
+		
+
+mouse_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	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:
+	rtn wake
+	call lpm_disable_exen_output
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_mwhee_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_sbutton1_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	branch gpio_config_input
+
+	
+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_mwhee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mwhee_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_sbutton1_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton2_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call mouse_t_wheel_scan
+	call mouse_wheel_scan
+	fetch 1,mem_wheel_tb_new_pinlevel
+	fetcht 1,mem_wheel_tb_old_pinlevel
+	store 1,mem_wheel_tb_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	fetch 1,mem_mwheel_b_new_pinlevel
+	fetcht 1,mem_mwheel_b_old_pinlevel
+	store 1,mem_mwheel_b_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	rtn
+mouse_t_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_whee_ta_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_tb_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_wheel_tb_new_pinlevel
+	beq 0x01,p_mouse_t_wheel_scan_judge1
+	beq 0x02,p_mouse_t_wheel_scan_judge2
+	fetch 1,mem_wheel_tog
+	bbit1 7,p_mouse_t_wheel_scan_judge3
+	rtn
+
+p_mouse_t_wheel_scan_judge1:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge11
+	beq 3,p_mouse_t_wheel_scan_judge12
+	rtn
+p_mouse_t_wheel_scan_judge2:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge21
+	beq 3,p_mouse_t_wheel_scan_judge22
+	rtn
+p_mouse_t_wheel_scan_judge11:
+	jam 0x82,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge12:
+	jam 0x81,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge21:
+	jam 0x80,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge22:
+	jam 0x83,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge3:
+	fetch 1,mem_wheel_tog
+	set0 7,pdata
+	store 1,mem_wheel_tog
+	fetch 1,mem_wheel_tog
+	beq 0,p_mouse_t_wheel_scan_judge30
+	beq 1,p_mouse_t_wheel_scan_judge31
+	beq 2,p_mouse_t_wheel_scan_judge32
+	beq 3,p_mouse_t_wheel_scan_judge33
+	rtn
+p_mouse_t_wheel_scan_judge30:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge31:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge32:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_back
+	rtn
+p_mouse_t_wheel_scan_judge33:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_back
+	rtn
+p_mouse_wheel_t_forward:
+	fetch 1,mem_mouse_tz_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count1
+	fetch 1,mem_mouse_tz_data
+	increase 1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+p_mouse_wheel_t_back:
+	fetch 1,mem_mouse_tz_data_count
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count
+	fetch 1,mem_mouse_tz_data
+	increase -1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+
+
+mouse_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_mwheel_b_new_pinlevel
+	beq 0x01,mouse_wheel_scan_judge1
+	beq 0x02,mouse_wheel_scan_judge2
+	fetch 1,mem_mwheel_tog
+	bbit1 7,mouse_wheel_scan_judge3
+	rtn
+
+mouse_wheel_scan_judge1:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge11
+	beq 3,mouse_wheel_scan_judge12
+	rtn
+mouse_wheel_scan_judge2:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge21
+	beq 3,mouse_wheel_scan_judge22
+	rtn
+mouse_wheel_scan_judge11:
+	jam 0x82,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge12:
+	jam 0x81,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge21:
+	jam 0x80,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge22:
+	jam 0x83,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge3:
+	fetch 1,mem_mwheel_tog
+	set0 7,pdata
+	store 1,mem_mwheel_tog
+	fetch 1,mem_mwheel_tog
+	beq 0,mouse_wheel_scan_judge30
+	beq 1,mouse_wheel_scan_judge31
+	beq 2,mouse_wheel_scan_judge32
+	beq 3,mouse_wheel_scan_judge33
+	rtn
+mouse_wheel_scan_judge30:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge31:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge32:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_back
+	rtn
+mouse_wheel_scan_judge33:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_back
+	rtn
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count1
+	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_count
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	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
+
+	
+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
+mouse_send_data:
+	arg 9,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+bt_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_send_data
+p_le_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_fill_data_le
+
+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
+	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
+	branch le_send_packet
+
+	
+mouse_fill_data_le:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+
+mouse_motion:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	call sensor_motion
+	call mouse_sensor_sdio_low
+	call mouse_zwheel
+	call mouse_t_zwheel
+	branch mouse_key
+	
+sensor_motion:
+	fetch 1,mem_mouse_move_flag
+	call mouse_read_sensor_common,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 P3065_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_read_sensor3610_data:
+	call spi_ncs_enable
+	call mouse_read_sensor_common
+	arg 5,pdata
+	call twspi_read
+	store 1,mem_mouse_xy_h
+	arg 7,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_hi
+	arg 8,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_lo
+	branch spi_ncs_disable
+
+
+mouse_3610_smart_enable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	rtn positive
+	jam 0,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+mouse_3610_smart_disable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	nrtn positive
+	jam 1,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x8032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+
+
+mouse_read_sensor_common:
+	arg 3,pdata
+	call twspi_read
+	store 2,mem_mouse_x
+	arg 4,pdata
+	call twspi_read
+	store 2,mem_mouse_y
+	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_t_zwheel:
+	fetch 1,mem_mouse_tz_data
+	rtn blank	
+	store 1,mem_mouse_tz
+	jam 0,mem_mouse_tz_data
+	enable user
+	rtn
+mouse_check_key_gpio:
+	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
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_get_bit
+	setflag true,3,rega
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_get_bit
+	setflag true,4,rega
+	copy rega,pdata
+	rtn
+mouse_key:
+	call mouse_check_key_gpio
+	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 */
+mouse_sensor_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0x0a
+	call twspi_read
+	nop 1000
+	branch mouse_sensor_sdio_low
+
+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
+	//beq P3610_ID,mouse_init_p3610
+	beq P3065_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 1000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	rtn
+
+mouse_init_sensor_reset:
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_active
+	call delay_10ms
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_inactive
+	branch delay_10ms
+
+mouse_init_p3610:
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0d11
+	call sensor_write
+	setarg 0x041b
+	call sensor_write
+	setarg 0x041c
+	call sensor_write
+	setarg 0x0f1d
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+	
+	
+//input-rega
+set_sensor_reg:
+	setarg 0xba41
+	call sensor_write
+	nop 4000
+	setarg 0xff7f
+	call sensor_write
+	copy rega,pdata
+	call sensor_write
+	setarg 0x007f
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+extsign_bit3:
+	rtnbit0 3
+	arg 0xf0,temp
+	ior temp,pdata
+	rtn
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	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
+	nrtn user
+	call mouse_no_data_timer_init
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+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
+	call mouse_no_data_timer_init
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	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 8,mem_whee_ta_data_gpio
+	istore 8,contw
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	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
+	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
+	call mouse_check_mouse_state_timer
+	branch mouse_bb_event_100ms_loop
+
+mouse_check_mouse_state_timer:
+	fetch 1,mem_mouse_statue_led_timer
+	rtn blank
+	pincrease -1
+	store 1,mem_mouse_statue_led_timer
+	nrtn blank
+	branch mouse_devce_led_off
+	
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	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
+	branch app_bt_enter_sniff
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_ADV,mouse_start_discovery_norandom
+	random pdata					//random ble addr
+	store 1,mem_le_lap+1
+mouse_start_discovery_norandom:
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+//mosue up led
+
+mouse_check_mouse_statue:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	fetch 1,mem_sensor_squal_reg
+	call sensor_read
+	beq 0x0,mouse_statue_up
+	rtn
+	//branch p_mouse_devce_led_off
+mouse_devce_led_off:
+	fetcht 1,mem_device1_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device2_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_inactive
+mouse_statue_up:
+	fetch 1,mem_reconn_mode
+	rtn blank
+	jam 0,mem_reconn_mode
+	jam 60,mem_mouse_statue_led_timer         // led on 6s
+	call mouse_devce_led_off
+	fetch 1,mem_device_flag
+	beq 0x01,mouse_device1_led_on  	//device_1
+	beq 0x02,mouse_device2_led_on		//device_2
+	beq 0x03,mouse_device3_led_on		//device_3
+	rtn
+mouse_device1_led_on:
+	fetcht 1,mem_device1_led_gpio
+	branch gpio_out_active
+mouse_device2_led_on:
+	fetcht 1,mem_device2_led_gpio
+	branch gpio_out_active
+mouse_device3_led_on:
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_active
+	
+
+
+
+
+
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	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
+	
+// input read reg number: pdata 
+//output reg data: pdata
+sensor_read:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_read
+	copy pdata,regb
+	call spi_ncs_disable
+	nop 100
+	copy regb,pdata
+	rtn
+// input write reg number: pdata 
+sensor_write:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_write
+	call spi_ncs_disable
+	nop 100
+	rtn
+//spi gpio init .
+//0xff :disable spi ncs gpio init
+spi_ncs_gpio_init:
+	fetch 1,mem_spi_ncs_gpio
+	rtneq 0xff
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_config_output
+
+//nsc gpio ouput low
+spi_ncs_enable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_active
+
+//ncs gpio output high
+spi_ncs_disable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_inactive
+
+// input write reg number: regb 
+twspi_write:
+	branch spid_write_reg
+	
+// input read reg number: regb 
+//output reg data: pdata
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	call clear_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_iic_eeprom_2k,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+	branch loadcode_hci
+loadcode_iic_eeprom_2k:
+	call set_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic_eeprom_2k,true	// crc error, try again
+loadcode_hci:
+	force regidx_key,regext_index
+	call aes_clear
+	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
+
+
+loadcode_iic_by_eeprom:
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	branch load_storage
+
+
+
+/* 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
+
+
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	fetch 1,mem_spi_init_clk
+	hstore 1,core_spid_ctrl	// A7530 should at least 34, or write fail
+	fetch 1,mem_spi_init_delay_time
+	hstore 1,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 patch2f_7,mem_patch2f
+	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 patch30_0,mem_patch30
+	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 tx length
+rega is points to tx buffer
+regb is points to rx buffer
+temp is rx length
+*/
+iicd_read_data:
+	hstore 2,core_iicd_txlen
+	deposit rega
+	hstore 2,core_iicd_txaddr	
+	deposit regb
+	hstore 2,core_iicd_rxaddr
+	deposit temp	
+	hstore 2,core_iicd_rxlen
+	arg 1,temp
+	nsetflag blank,1,temp
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+
+set_eeprom_size_2k:
+	set1 mark_eeprom_size,mark
+	jam 0x08,mem_eeprom_block_size
+	rtn
+
+clear_eeprom_size_2k:
+	set0 mark_eeprom_size,mark
+	jam 0x20,mem_eeprom_block_size
+	rtn
+
+
+iicd_read_eep_data_size_2k:
+ 	fetch 1,mem_eeprom_base
+	iadd regb,pdata
+	store 1,mem_addr_mi
+	branch iicd_read_eep_size_2k
+
+iicd_read_eep_size_2k_lcadcode:
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	store 1,mem_addr_mi
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr:pdata
+iicd_read_eep_size_2k:
+ 	setarg 3
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+2
+	branch iicd_read_eep_common
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_data_size_2k
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	nop 30000
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+iicd_read_eep_common:	
+	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
+	bmark1 mark_eeprom_size,iicd_read_eep_load_code_size_2k
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+iicd_read_eep_load_code_size_2k:
+	fetch 1,mem_addr_mi
+	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:
+	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 patch30_3,mem_patch30
+	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 patch30_4,mem_patch30
+	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
+
+iicd_write_eep_size_2k:
+	increase 2,temp
+	hstoret 2,core_iicd_txlen
+	increase -2,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+//	byteswap pdata,pdata
+	istore 1,contw
+	branch iicd_write_eep_common
+
+	/* 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 patch30_5,mem_patch30
+	nop 30000
+	bmark1 mark_eeprom_size,iicd_write_eep_size_2k
+	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
+iicd_write_eep_common:	
+	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
+	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_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+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
+
+uart_copy_tx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_tx_8_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_tx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_tx_4_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_tx_bytes
+
+uart_tx_8_bytes:
+	ifetch 8,contr
+	istore 8,contwu
+	rtn
+
+uart_tx_4_bytes:
+	ifetch 4,contr
+	istore 4,contwu
+	rtn
+
+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_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_rx_8_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_rx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_rx_4_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_rx_bytes
+
+uart_rx_8_bytes:
+	ifetch 8,contru
+	istore 8,contw
+	rtn
+
+uart_rx_4_bytes:
+	ifetch 4,contru
+	istore 4,contw
+	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
+
+
+/* ===================== eeprom data ======================= */
+
+check_51cmd_update_device_record:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	call check_nvram
+	call init_device_list,zero
+	call nvram_find_addr_from_bd_list
+write_device_record:
+	fetch 1,mem_nv_data_number
+	icopy regc
+	fetcht 2,mem_nv_data_ptr
+	storet 2,mem_list_item_ptr
+write_device_loop_find:
+	copy regc,pdata
+	branch module_hci_event_store_device,blank  //EEPROM
+	increase -1,regc
+	copy temp,rega
+	ifetch 1,rega
+	fetcht 1,mem_select_list_item
+	isub temp,null
+	call set_index_finded_device,zero
+	branch write_device_loop_find0,positive
+	ifetch 1,rega
+	increase 1,pdata
+	istore 1,rega
+write_device_loop_find0:
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	branch write_device_loop_find
+
+set_index_finded_device:
+	setarg 0
+	istore 1,rega
+	fetch 1,mem_temp_reconn_record
+	istore 1,contw	
+	bne REC_3_MODE,set_index_finded_device_ble_mode
+	arg mem_link_key,regb
+set_index_find_device_MASTER_ADDR:
+	ifetch 6,contr
+	istore 8,contw
+	setarg 0
+	istore 8,contw
+	copy regb,contr
+store_rec_data_common:
+	call memcpy16
+	force 1,null
+	rtn
+
+set_index_finded_device_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_IRK
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_EDIV
+	arg mem_le_ltk,regb
+	branch set_index_find_device_MASTER_ADDR
+
+set_index_finded_device_IRK:
+	arg mem_le_irk,contr
+	call memcpy16
+store_ble_rec_data_common:
+	arg mem_le_ltk,contr
+	branch store_rec_data_common
+
+set_index_finded_device_EDIV:
+	arg mem_le_rand,contr
+	call memcpy16
+	branch store_ble_rec_data_common
+
+
+nvram_find_addr_from_bd_list:
+	call disable_usr
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,find_addr_from_bd_list_SPP_mode
+//	bbit1 UI_STATE_BLE_CONNECTED,find_addr_from_bd_list_ble_mode
+find_addr_from_bd_list_ble_mode:
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,find_addr_from_bd_list_static_addr
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch find_addr_from_bd_list_static_addr,true
+	compare 0x40,pdata,0xc0
+	branch find_addr_from_bd_list_random_addr,true
+	compare 0x00,pdata,0xc0
+	branch find_addr_from_bd_list_random_non_resolvable_private_address,true
+find_addr_from_bd_list_static_addr:
+	jam REC_4_MODE_STATIC_ADDRESS,mem_temp_reconn_record
+	fetch 6,mem_le_plap
+	branch find_addr_from_bd_list_common
+	
+find_addr_from_bd_list_random_non_resolvable_private_address:	
+	jam REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+
+//input :pdata EDIV and rands
+find_addr_from_bd_list_random_addr:
+	jam REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+	
+//input :pdata EDIV and rands
+find_addr_from_bd_list_SPP_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	jam REC_3_MODE,mem_temp_reconn_record
+	fetch 6,mem_plap
+find_addr_from_bd_list_common:
+	store 6,mem_temp_reconn_record+1
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease 1
+	store 2,mem_list_item_ptr
+	storet 1,mem_select_list_item
+	fetch 1,mem_nv_data_number
+	icopy regc
+nvram_find_addr_from_list:
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call nvram_find_addr_from_list_compare
+	rtn user
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	increase -1,temp
+	ifetch 1,temp
+	store 1,mem_select_list_item
+	increase -1,regc
+	nbranch nvram_find_addr_from_list,zero
+	fetch 1,mem_nv_data_number
+	pincrease DECREASED_ONE
+	store 1,mem_select_list_item
+	rtn
+nvram_find_addr_from_list_compare:
+	fetch 1,mem_temp_reconn_record
+	bne REC_3_MODE,find_addr_from_list_compare_ble_mode
+find_master_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+find_addr_from_list_compare_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,find_irk_form_list_compare
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,find_ediv_form_list_compare
+	branch find_master_addr_from_list_compare
+
+find_irk_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	arg mem_le_prand,contw
+	arg 16,loopcnt
+	call clear_mem
+	fetch 3,mem_le_plap+3
+	store 3,mem_le_prand
+	call genernate_master_MacAddress
+	fetch 2,mem_le_aes_128+13
+	byteswap pdata,pdata
+	lshift8 pdata,temp
+	ifetch 1,contr
+	iadd temp,pdata
+	fetcht 3,mem_le_plap
+	isub temp,null
+	branch enable_usr,zero
+	rtn
+
+
+genernate_master_MacAddress:
+	arg mem_le_prand ,contr
+	call load_data128
+//	arg mem_le_irk,contr
+	ifetch 1,rega
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_aes_128,contw
+	branch store_aes_result
+
+find_ediv_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	copy contr,rega
+	add contr,8,regc
+	arg mem_le_rand,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	copy regc,rega
+	arg mem_le_irk,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+check_nvram:
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease NV_DATA_LEN
+	ifetch 1,pdata
+	isub temp,null
+	rtn
+
+init_device_list:
+	fetch 1,mem_nv_data_number
+	icopy loopcnt
+	fetcht 2,mem_nv_data_ptr
+	setarg 0
+init_device_list_loop:
+	istore 1,temp
+	increase NV_DATA_LEN,temp
+	pincrease 1
+	loop init_device_list_loop
+	rtn
+
+load_device_list:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	call nvram_find_addr_from_bd_list
+	nbranch clear_key_exists,user
+	add rega,10,contr
+//	copy rega,contr
+	arg mem_link_key,contw
+	call  memcpy16
+	branch check_link_key_load
+clear_key_exists:
+	jam 0,mem_link_key_exists
+	rtn
+
+load_device_list_mode_4:
+	fetch 9,mem_le_ediv
+	branch clear_ltk_exists,blank
+	call nvram_find_addr_from_bd_list
+	nbranch clear_ltk_exists,user
+	fetch 2,mem_list_item_ptr
+	add pdata,1,contr
+	arg mem_le_irk,contw
+	call  memcpy16
+	arg mem_le_ltk,contw
+	call  memcpy16
+	jam 1,mem_ltk_exists
+	rtn
+
+load_device_list_mode_4_shutter:
+	fetch 2,mem_le_ediv
+	nbranch load_device_list_mode_4_shutter_label,blank
+	fetch 6,mem_le_rand
+	branch clear_ltk_exists_iphone_lost_ltk,blank
+load_device_list_mode_4_shutter_label:
+	jam LTK_NOT_LOST,mem_ltk_states
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	jam 1,mem_ltk_exists
+	rtn
+
+clear_ltk_exists_iphone_lost_ltk:
+	jam IPHONE_LOST_LTK,mem_ltk_states
+clear_ltk_exists:
+	jam 0,mem_ltk_exists
+	rtn
+
+
+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 patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	beq dvc_op_module,check_51cmd_update_device_record
+	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 patch31_2,mem_patch31
+	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_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	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 patch31_5,mem_patch31
+	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 patch31_6,mem_patch31
+	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 patch31_7,mem_patch31
+	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 patch32_0,mem_patch32
+	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 patch32_1,mem_patch32
+	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
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	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 patch32_3,mem_patch32
+	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 patch32_4,mem_patch32
+	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
+gpio_config_output0:
+	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
+
+gpio_check_active:
+	arg core_gpio_out0,contw
+	branch get_bit_common
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+get_bit_common:
+	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_set_before_lpm_common:
+	arg -1,rega
+	hfetch 1,core_gpio_sel1
+	isolate1 1,pdata
+	call neglact4_from_23_pin,true	//spi
+	 
+	and pdata,0x3,regb
+	sub regb,1,null
+	call neglact2_form_25_pin,zero	//two spi
+	 
+	isolate1 2,pdata
+	call neglect2_from_6_pin,true	//uart
+	 
+	isolate1 3,pdata
+	call neglect4_from_9_pin,true	//spi
+
+	isolate1 5,pdata
+	call neglact2_form_27_pin,true	//clock external
+
+	isolate1 6,pdata
+	arg 4,queue
+	call neglact_1_pin,true
+	nsetflag true,4,rega			//pwm0 gpio4
+
+	isolate1 7,pdata
+	arg 5,queue
+	call neglact_1_pin,true			//pwm0 gpio5
+
+	hfetch 1,core_gpio_sel2
+	isolate1 0,pdata
+	arg 3,queue
+	call neglact_1_pin,true			//pwm0 gpio3
+	
+	hfetcht 1,core_gpio_sel
+	isolate1 0,temp
+	arg 5,queue
+	call neglact_1_pin,true			//ADC gpio5
+
+	ior temp,pdata
+
+	isolate1 1,pdata
+	arg 6,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio6
+	
+	isolate1 2,pdata
+	arg 7,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio7
+	
+	isolate1 3,pdata
+	arg 18,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio18
+	
+	isolate1 4,pdata
+	arg 19,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio19
+	
+	isolate1 5,pdata
+	arg 20,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio20
+	
+	isolate1 6,pdata
+	arg 21,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio21
+
+	isolate1 7,pdata
+	arg 22,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio22
+
+	hfetch 1,core_uart_ctrl
+	isolate1 4,pdata
+	call neglact2_form_2_pin,true
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata	
+	hstore 4,core_gpio_pd0
+	rtn
+neglect2_from_6_pin: //uart
+	 arg 6,queue
+	 branch neglect_2_pin
+neglect4_from_9_pin:
+	 arg 9,queue
+	 branch neglact_4_pin
+neglact4_from_23_pin:
+	 arg 23,queue
+	 branch neglact_4_pin
+neglact2_form_25_pin:
+	 arg 25,queue
+	 branch neglect_2_pin
+neglact2_form_27_pin:
+	 arg 27,queue
+	 branch neglect_2_pin
+neglact2_form_2_pin:
+	 arg 2,queue
+	 branch neglect_2_pin
+neglact_1_pin:
+	arg 1,loopcnt
+	branch neglect_pin_loop
+neglact_4_pin:
+	 arg 4,loopcnt
+	 branch neglect_pin_loop
+neglect_2_pin:
+	 arg 2,loopcnt
+neglect_pin_loop:
+	 qset0 rega
+	 increase 1,queue
+	 loop neglect_pin_loop
+	 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_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_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
+
+load_chip_option:
+	call otp_enable_chgpump
+	setarg OTP_CHIP_FUNCTIONS
+	arg mem_chip_functions,rega
+	arg 0x02,temp
+	call otpd_read_data
+	branch otp_disable_chgpump
+	
+//mem_adc_config_flag 0:vinlpm 1:Hvin 2: GPIO
+
+adc_init_data:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+
+	call otp_enable_chgpump
+	setarg otp_adc_io_0_5V_addr
+	arg mem_0_5_adc_io_data,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_init_data_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_init_data_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_init_data_io
+	rtn	
+
+adc_init_data_vinlpm:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_vinlpm,zero
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data	
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+	branch set_vdd_reference_voltage_1v
+
+adc_check_data_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	nbranch adc_check_2v_vinlpm,blank
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data
+adc_check_2v_vinlpm:	
+	fetch 2,mem_2v_adc_vinlpm_data
+	nbranch set_vdd_reference_voltage_1v,blank
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+set_vdd_reference_voltage_1v:
+	setarg 100
+	store 2,mem_reference_voltage //set reference voltage = 1V
+	rtn		
+
+adc_init_data_hvin:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_hvin,zero
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data	
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+	branch set_vdd_reference_voltage_4v
+
+adc_check_data_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	nbranch adc_check_1v_hvin,blank
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data
+adc_check_1v_hvin:	
+	fetch 2,mem_1v_adc_hvin_data
+	nbranch set_vdd_reference_voltage_4v,blank
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+set_vdd_reference_voltage_4v:
+	setarg 400
+	store 2,mem_reference_voltage //set reference voltage = 4V
+	rtn 	
+
+adc_init_data_io:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_io,zero
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data	
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+	branch set_vdd_reference_voltage_0_5v
+
+adc_check_data_io:
+	fetch 2,mem_1v_adc_io_data
+	nbranch adc_check_0_5v_io,blank
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data
+adc_check_0_5v_io:
+	fetch 2,mem_0_5_adc_io_data
+	nbranch set_vdd_reference_voltage_0_5v,blank
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+set_vdd_reference_voltage_0_5v:
+	setarg 50
+	store 2,mem_reference_voltage //set reference voltage = 0.5V
+	rtn	
+
+
+adc_set_mode:
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_check_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_check_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_check_gpio
+	rtn
+adc_check_vinlpm:
+	hjam 0xbf,rf_adc_mode	//read VINLPM voltage directly	
+	branch read_adc
+adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+	branch read_adc
+adc_check_gpio:
+	hjam 0x8f,rf_adc_mode
+	fetch 1,mem_adc_channel
+	hstore 1,rf_adc_ch
+	branch read_adc
+read_adc:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	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 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
+	storet 2,mem_adc_current_value
+	rtn
+
+vdd_calculate_by_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,vdd_calculate_vinlpm
+	bbit1 ADC_CONFIG_HVIN,vdd_calculate_hvin
+	bbit1 ADC_CONFIG_GPIO,vdd_calculate_io
+	rtn
+
+vdd_calculate_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	fetcht 2,mem_2v_adc_vinlpm_data
+	arg 200,regc
+	branch vdd_calculate
+
+vdd_calculate_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	fetcht 2,mem_1v_adc_hvin_data
+	arg 100,regc
+	branch vdd_calculate
+
+vdd_calculate_io:
+	fetch 2,mem_1v_adc_io_data
+	fetcht 2,mem_0_5_adc_io_data
+	arg 50,regc
+	branch vdd_calculate
+	
+vdd_calculate:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch vdd_calculate1,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	iadd regb,pdata
+vdd_calculate2:
+	idiv rega
+	call wait_div_end
+	quotient pdata	
+	rtn
+
+vdd_calculate1:
+	copy temp,pdata
+	fetcht 2,mem_adc_current_value
+	isub temp,pdata
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	branch vdd_calculate2
+
+
+
+
+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 patch33_1,mem_patch33
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	fetch 1,mem_credit_flag
+	beq CREDIT_ENABLE,rfcomm_init_spp_with_credit
+	jam 0x50,mem_credit_given
+	rtn
+
+rfcomm_init_spp_with_credit:
+	jam 0x00,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
+
+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 patch33_2,mem_patch33
+	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 patch33_3,mem_patch33
+	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
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn_send_event
+	rtn
+
+
+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
+	beq UIH_PARAM_CMD_REMOVE_PORT,parse_DLCI0_rp_uih_cmd_port	
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+
+	branch parse_DLCI0_rp_uih_pn_cmd_spp
+
+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_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
+
+	branch parse_DLCI0_rp_uih_ms_cmd_spp
+
+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:
+	jam BT_EVT_SPP_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	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_DLCI0_rp_uih_cmd_port:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	store 1,mem_rpn_dlci
+	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
+	//setarg 5
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1191
+	istore 2,contw
+	//fetch 1,mem_pn_dlci
+	//setarg 0x0b
+	fetch 1,mem_rpn_dlci
+	istore 1,contw //DLCI
+	setarg 0x000007
+	istore 5,contw
+//	setarg 0 //max frame size
+//	istore 2,contw 
+	setarg 0x01 //max retrans
+	istore 2,contw
+//	setarg 0x00
+//	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+
+
+parse_uih_rp:
+	branch parse_uih_rp_spp
+
+parse_uih_rp_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	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
+	rtn
+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_send_event:
+	jam BT_EVT_SPP_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event	
+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 patch33_6,mem_patch33
+	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
+	fetcht 1,mem_pn_dlci
+	lshift2 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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	fetch 2,mem_rfcomm_max_frame_size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	fetch 1,mem_rfcomm_credit_init_data
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	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 patch34_5,mem_patch34
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_ENABLE
+	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:
+	fetch 2,mem_cb_receive_spp_data
+	branch callback_func
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	//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 ssp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+ssp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch ssp_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 ssp_tx_rfcomm_from_uart_common
+ssp_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
+ssp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,127,null
+	branch ssp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+ssp_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 ssp_tx_write_length
+	call ssp_tx_write_given_credit
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	fetch 2,mem_nl_rx_data_src		//src
+	copy pdata,contru
+	fetch 2,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes_fast
+	copy contw,temp
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+	copy temp,contw	
+	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
+	fetch 2,mem_nl_rx_len_all
+	beq 0,module_hci_command_tx_spp_tx_complete
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	rtn
+
+ssp_tx_write_length:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch ssp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+ssp_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
+ssp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+	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.
+//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
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+//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 patch35_6,mem_patch35
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	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 patch35_7,mem_patch35
+	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 patch36_0,mem_patch36
+	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 patch36_1,mem_patch36
+	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 patch36_2,mem_patch36
+	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 patch36_3,mem_patch36
+	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 patch36_4,mem_patch36
+	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 patch36_5,mem_patch36
+	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 patch36_6,mem_patch36
+	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 patch36_7,mem_patch36
+	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 patch37_0,mem_patch37
+	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 patch37_1,mem_patch37
+	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 patch37_2,mem_patch37
+	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 patch37_3,mem_patch37
+	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 patch37_4,mem_patch37
+	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 patch37_5,mem_patch37
+	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 patch37_6,mem_patch37
+	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 patch37_7,mem_patch37
+	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 patch38_0,mem_patch38
+	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 patch38_1,mem_patch38
+	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 patch38_2,mem_patch38
+	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 patch38_3,mem_patch38
+	deposit regB						/* PDUID  */
+	beq 2,servicesearch_req			
+	beq 4,patch_serviceattribute_req
+	beq 6,patch_servicesearchattribute_req
+	beq 7,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	      */
+/*                                                                    */
+/**********************************************************************/     
+patch_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 patch_serviceattribute_judge_WholeRangle,true
+patch_serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch patch_serviceattribute_req_loop
+patch_serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch patch_serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+patch_serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, patch_serviceattribute_req_one_id
+	beq 0x0a, patch_serviceattribute_req_range_id
+patch_serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regB
+	ifetch 2, contr
+	byteswap pdata,pdata
+patch_serviceattribute_req_range_id_increase:	
+	increase 1, regB
+	isub regB, null
+	nbranch patch_serviceattribute_req_range_id_finish,positive
+	copy pdata, regC
+	byteswap regB,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regC, pdata
+	branch patch_serviceattribute_req_range_id_increase
+patch_serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,regA
+	branch patch_serviceattribute_req_check_next_id
+patch_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
+patch_serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_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
+patch_answer_handle_attributelist_next:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	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 patch_answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	branch patch_answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+patch_answer_handle_attributelist_notfound:
+	increase 2,regA
+	increase -1, queue
+	branch patch_answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	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 */
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	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             */
+/*                                                                    */
+/**********************************************************************/     
+patch_servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch patch_servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+patch_servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,patch_servicesearchattribute_req_all
+patch_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 patch_servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+patch_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
+patch_answer_attributelist_next:	
+	ifetch 4,regA
+	branch patch_answer_attributelist_end,blank
+	ifetch 2,regA
+	iforce regB						/* regB is the attribute ID */
+	call search_attrib
+	branch patch_answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	iforce loopcnt	
+patch_answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop patch_answer_attributelist_attrib_loop
+patch_answer_attributelist_notfound:
+	increase 2,regA
+	branch patch_answer_attributelist_next
+patch_servicesearchattribute_req_all:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	//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
+	ifetch 1,contr
+	increase -1,timeup
+	jam 0,mem_sdp_continue_byte
+	jam 0,mem_sdp_continue_byte+1
+	nbranch patch_servicesearchattribute_req_all_continue,blank
+	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
+
+patch_servicesearchattribute_req_all_continue:
+	ifetch 2,contr
+	increase -2,timeup
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	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 7,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle_continue
+	
+patch_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 patch_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
+patch_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_attributelist_loop_continue:
+	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_continue,zero
+	loop servicesearchattribute_req_attributelist_loop_continue	
+servicesearchattribute_req_check_next_ctn_continue:	
+	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_continue,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle_continue:
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle_continue,zero
+	branch answer_attributelist_end_long_continue
+	
+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
+
+servicesearchattribute_req_next_handle_continue:
+	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,pdata
+	fetcht 2,mem_sdp_continue_byte
+	isub temp,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	iadd contr,contr
+	branch servicesearchattribute_req_attributelist_loop_continue
+	
+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_bytes_continue:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length_continue:		
+	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,7,pdata //setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce 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
+	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	
+
+answer_attributelist_end_long_continue:
+	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
+	
+	//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	
+	
+patch_sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,patch_sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+patch_sdp_data_len_6:
+	call patch_sdp_get_data_6
+	branch sdp_data_len_rtn
+patch_sdp_get_data_6:
+	deposit loopcnt
+	beq 5,patch_sdp_get_data_6_8bit
+	beq 6,patch_sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+patch_sdp_get_data_6_8bit:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+patch_sdp_get_data_6_16bit:
+	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
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_response:	
+	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:  
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	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
+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
+dsize:
+	force 0x01,pdata
+	rtn
+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 patch39_2,mem_patch39
+	force 0,queue
+	fetch 2, mem_ui_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:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	fetch 2,mem_ui_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 patch39_4,mem_patch39
+	fetch 2,mem_ui_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 patch39_5,mem_patch39
+	fetch 2,mem_ui_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	
+
+	
+
+	
+function_g2:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 80,mem_AES_CMAC_data_length
+	arg memdat,contw
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat	
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	call function_AES_CMAC	
+
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result
+	setarg 1000000
+	copy pdata,rega
+	fetch 4,mem_AES_CMAC_temp
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+//call ice_break
+	rtn
+
+function_f6_eb:
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_a
+	call store_addr_common_b
+	fetch 3,mem_le_pres+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	
+	arg mem_le_mrand,contr
+	call memcpy16
+	arg mem_le_srand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	branch function_AES_CMAC
+//	arg mem_AES_CMAC_temp,contw
+//	branch p_load_inverse_result
+
+get_r:
+	fetch 4,mem_le_tk
+	istore 4,contw
+	call memset0_4
+	branch memset0_8
+
+function_f6_ea:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_b
+	call store_addr_common_a
+	fetch 3,mem_le_preq+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_temp,contw
+	branch load_inverse_result
+
+function_f5:
+	jam 32,mem_AES_CMAC_data_length
+	arg mem_le_dhkey_256 ,contr
+	arg memdat,contw
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_slat,contr
+	call store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_k,contw
+	call store_aes_result
+	arg 1,temp
+	call function_f5_common
+	arg mem_le_ltk,contw
+	call load_inverse_result
+	arg 0,temp
+	call function_f5_common
+	arg mem_le_mackey,contw
+//	branch p_load_inverse_result
+	branch store_aes_result
+
+
+function_f5_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	jam 53,mem_AES_CMAC_data_length
+	setarg 0x100
+	store 2,memdat
+	call store_addr_common_b
+	call store_addr_common_a
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+//	fetch 4,mem_le_keyid 0x62746c65
+	setarg 0x6c65
+	istore 2,contw
+	setarg 0x6274
+	istore 2,contw
+	istoret 1,contw   //counter
+	call inverse_memdat	
+	branch function_AES_CMAC
+
+store_addr_common_b:
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 1,mem_le_conn_own_addr_type
+	istore 1,contw
+	rtn
+
+store_addr_common_a:
+	fetch 6,mem_le_plap
+	istore 6,contw
+//	setarg 0x2dcfc1
+//	istore 3,contw
+//	setarg 0xa71370
+//	istore 3,contw
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contw
+	rtn
+
+function_f4_ca:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+	
+
+function_f4_cb:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_srand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+
+function_AES_CMAC:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	call function_AES_CMAC_Generate_Subkey
+//call ice_break
+//	jam 65,mem_AES_CMAC_data_length
+//call ice_break
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,temp
+function_ceil16:
+	increase 15,pdata
+	rshift4 pdata,pdata
+	copy pdata,regb
+	branch function_AES_CMAC_set_flag_0_balnk,blank
+	and temp,0x0f,pdata
+	nbranch function_AES_CMAC_set_flag_0,blank
+//	flag =1;
+	arg mem_AES_CMAC_k1,regc
+	arg memdat,pdata
+	increase -16,pdata
+//	iadd temp,pdata
+//	isub rega,rega
+	iadd temp,rega	
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop
+//call ice_break
+//	arg mem_f4_k1,contr
+//	call load_key
+	branch function_AES_CMAC_aes
+
+function_AES_CMAC_set_flag_0_balnk:
+	arg 1,regb
+	arg 0,rega
+//	arg mem_f4_test_data,pdata
+	branch function_AES_CMAC_set_flag_0_common
+//call ice_break
+
+function_AES_CMAC_set_flag_0:
+//	flag = 0;
+	and temp,0x0f,rega
+function_AES_CMAC_set_flag_0_common:
+	arg memdat,pdata
+	iadd temp,pdata
+	isub rega,contr
+//call ice_break
+	arg mem_AES_CMAC_temp,contw
+	call function_AES_CMAC_padding
+//call ice_break
+	arg mem_AES_CMAC_k2,regc
+	arg mem_AES_CMAC_temp,rega
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop	
+//call ice_break
+
+//	arg mem_f4_k2,contr
+//	call load_key
+
+//	branch p_function_f4_aes
+function_AES_CMAC_aes:
+//	arg mem_f4_k,contr
+//	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call load_data128
+	call aes_clear_data
+	call aes_init	
+//	arg mem_f4_k,contr
+//	call load_key
+	arg memdat,contr
+function_AES_CMAC_aes_loop:
+//generate_mic_loop:
+	increase -1,regb
+	deposit regb
+	branch function_AES_CMAC_aes_loop_end,blank
+	call load_data128
+	call do_aes_cbc
+	branch function_AES_CMAC_aes_loop
+//generate_mic_end:
+function_AES_CMAC_aes_loop_end:	
+	arg mem_AES_CMAC_temp,contw
+	call store_aes_result
+	arg mem_AES_CMAC_M_last,contr
+	call load_data128
+	call aes_init	
+	arg mem_AES_CMAC_temp,contr
+	call load_data128	
+	branch do_aes_cbc
+
+
+
+load_inverse_result:
+//	arg mem_AES_CMAC_temp,contw
+	copy contw,rega
+	call store_aes_result
+//	arg mem_AES_CMAC_temp,rega
+	arg 16,loopcnt
+	branch inverse_data
+	
+store_inverse_k:
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+inverse_k:	
+	arg 16,loopcnt
+	arg mem_AES_CMAC_k,rega	
+	branch inverse_data
+	
+inverse_memdat:
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,loopcnt
+	arg memdat,rega
+	branch inverse_data
+
+bn_lshift_0_inverse:
+	ifetch 1,regA
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata	
+	isolate1 8,pdata
+	setflag true,0,regC	
+	istore 1,rega
+         increase -1,rega
+	loop bn_lshift_0_inverse
+	rtn	
+
+function_AES_CMAC_k1_inverse:
+	arg mem_AES_CMAC_k1,regA
+function_AES_CMAC_inverse_common:
+	increase 15,rega
+	force 16,loopcnt
+	force 0,regC
+	branch  bn_lshift_0_inverse	
+
+function_AES_CMAC_k2_inverse:
+	arg mem_AES_CMAC_k2,regA
+	branch function_AES_CMAC_inverse_common
+	
+
+function_AES_CMAC_Generate_Subkey:
+	arg mem_AES_CMAC_k,contr
+	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call aes_load_xor
+	force regidx_xor,regext_index
+	call aes_clear
+	call aes_clear_data
+	call do_aes_ocb
+	
+//	force 0x38,aes_ctrl
+//	force 0x0,aes_ctrl
+//	call wait_aes
+	arg mem_AES_CMAC_k1,contw
+	call store_aes_result
+function_AES_CMAC_k1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	fetch 1,mem_AES_CMAC_k1
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k1_0,true	
+	call function_AES_CMAC_k1_inverse
+	
+//p_function_f4_k1_xor:
+	arg mem_AES_CMAC_k1,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k1,contw
+//	arg 3,loopcnt
+//	call xor_loop
+	call function_AES_CMAC_xor_rb
+	branch function_AES_CMAC_k2
+function_AES_CMAC_k1_0:	
+	call function_AES_CMAC_k1_inverse
+function_AES_CMAC_k2:
+//call ice_break
+	arg mem_AES_CMAC_k1,contr
+	arg mem_AES_CMAC_k2,contw
+	call memcpy16
+	fetch 1,mem_AES_CMAC_k2
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k2_inverse,true		
+	call function_AES_CMAC_k2_inverse
+//p_function_f4_k2_xor:
+	arg mem_AES_CMAC_k2,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k2,contw
+//	arg 3,loopcnt
+//	branch xor_loop	
+
+
+//rb:00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 
+function_AES_CMAC_xor_rb:
+	arg 3,loopcnt
+function_AES_CMAC_xor_rb_loop:	
+	arg 0,temp
+	call function_AES_CMAC_xor_loop_common	
+	increase 4,regc
+	loop  function_AES_CMAC_xor_rb_loop
+	arg 0x8700,temp
+	lshift16 temp,temp
+function_AES_CMAC_xor_loop_common:	
+	ifetch   4,regc
+	ixor  temp,pdata
+	istore   4,contw	
+	rtn
+		
+
+
+
+//input rega :length <16	contr,contw
+function_AES_CMAC_padding:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 16,loopcnt
+	arg 0,pdata
+function_AES_CMAC_padding_loop:
+	isub rega,null
+	branch function_AES_CMAC_padding_beq_length,zero
+	branch function_AES_CMAC_padding_big_length,positive
+	ifetcht 1,contr
+	istoret 1,contw
+function_AES_CMAC_padding_loop2:	
+	increase 1,pdata
+	loop function_AES_CMAC_padding_loop
+	rtn
+function_AES_CMAC_padding_beq_length:	
+	arg 0x80,temp
+function_AES_CMAC_padding_common:
+	istoret 1,contw
+	branch  function_AES_CMAC_padding_loop2
+
+function_AES_CMAC_padding_big_length:
+	arg 0,temp
+	branch function_AES_CMAC_padding_common
+
+	
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	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
+
+	
+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
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	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 */
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	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
+	
+
+
+init_memp_256:
+ 	arg mem_p_256,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3f
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x1000
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x3ff00
+        setsect 1,0x3ffff
+        setsect 2,0x3ffcf
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ff
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x10000
+        setsect 1,0x0
+        setsect 2,0x3f000
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x296ff
+        setsect 1,0x22630
+        setsect 2,0x3945d
+        setsect 3,0x3d284
+        istore 9,contw
+        setsect 0,0x333a0
+        setsect 1,0x4b7a
+        setsect 2,0x37d8
+        setsect 3,0x3c9dc
+        istore 9,contw
+        setsect 0,0x3a440
+        setsect 1,0x1b958
+        setsect 2,0x38bce
+        setsect 3,0x1091f
+        istore 9,contw
+        setsect 0,0x2e12c
+        setsect 1,0x1f47c
+        setsect 2,0x356b1
+        setsect 3,0x2fd47
+        istore 9,contw
+        setsect 0,0x6837
+        setsect 1,0x2ed90
+        setsect 2,0x1ecec
+        setsect 3,0x1acc5
+        istore 9,contw
+        setsect 0,0x23357
+        setsect 1,0x18af3
+        setsect 2,0xf9e1
+        setsect 3,0x129f0
+        istore 9,contw
+        setsect 0,0x2e7eb
+        setsect 1,0x3e6e3
+        setsect 2,0x3e1a7
+        setsect 3,0x10b8b
+        istore 9,contw
+        setsect 0,0x24fe3
+        setsect 1,0x20ef
+        setsect 2,0x1b5a6
+        setsect 3,0xdc2f
+        istore 9,contw
+        setsect 0,0x13860
+        setsect 1,0x2bd69
+        setsect 2,0x391a
+        setsect 3,0x1b222
+        istore 9,contw
+        rtn
+
+
+
+shutter_init:
+	//call  shutter_le_init_rf_param
+	rtn wake	
+	call init_shutter_le_att_list
+	call shutter_init_param	
+	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_init
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+
+	setarg shutter_le_send_att_handle_value_notification
+	store 2,mem_cb_update_notify_value
+
+shutter_init0:	
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH, shutter_le_hard_switch_power_on_signal
+	call shutter_ui_led_init
+	call ui_button_init
+	call ui_button_polling
+	jam SHUTTER_POWER_UP,mem_shutter_powerup_flag
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BTN_DOWN
+	branch app_enter_hibernate
+
+shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch in_poweron_hard_switch_led,blank
+shutter_le_soft_switch_power_on_signal:
+	//call ice_break
+	jam ON,mem_le_adv_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	call shutter_le_fast_advertise
+
+	jam PAIR_UNKNOWN,mem_pair_state
+	call le_modified_name
+	fetch 6,mem_le_lap
+	call shutter_byteswap
+	call shutter_updata_mac
+	rtn
+
+	
+//pdata:adv interval value
+shutter_le_adv_interval_set:
+	store 2,mem_lpm_interval
+	increase -4,pdata
+	store 2,mem_le_adv_interval_min
+	store 2,mem_le_adv_interval_max
+	rtn
+	
+shutter_updata_mac:
+	fetcht 2,mem_adv_lap_ptr
+	rtn blank
+	istore 6,temp
+	rtn
+	
+shutter_byteswap:
+	store 6,mem_tmp_buffer
+	fetch 1,mem_tmp_buffer
+	store 1,mem_tmp_buffer+11
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+10
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+9
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+8
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+7
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+6
+	fetch 6,mem_tmp_buffer+6
+	rtn
+	
+shutter_le_fast_advertise:
+	jam 0,mem_shutter_key_data_flag_1
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	nbranch in_shutter_skip_set,blank
+	setarg mem_fast_adv_led_style
+	call shutter_ui_led_send
+	setarg FAST_ADV_INTERVAL_VALUE
+	call shutter_le_adv_interval_set
+in_shutter_skip_set:
+	fetch 2,mem_le_fast_adv_timeout
+	store 2,mem_le_fast_adv_timeout_timer_count
+	rtn
+
+shutter_le_scale_lpm_lock:
+	//fetcht 4,mem_last_clk_rx
+	//copy clkn_bt,pdata
+	//isub temp,pdata
+	//arg 8,temp
+	//isub temp,null
+	//nbranch app_get_lpm_wake_lock,positive
+	fetch 1,mem_scale_txbuff_inuse
+	beq 1,app_get_lpm_wake_lock
+	fetch 1, mem_queue_ele_num
+	nbranch app_get_lpm_wake_lock,blank
+	branch app_put_lpm_wake_lock
+
+scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+shutter_le_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+shutter_le_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+	call shutter_le_sleep_timer
+	call shutter_ui_button_timeout_timer
+	call shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop
+
+shutter_conn_update_timer:
+	fetch 1,mem_shutter_conn_update_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_conn_update_timer
+	nrtn blank
+	jam 0x05,mem_lpm_mult
+	rtn	
+
+shutter_app_updata_le_param_timer:
+	fetch 1,mem_send_updata_le_param_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_send_updata_le_param_timer
+	nrtn blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,shutter_app_updata_le_param
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+
+shutter_app_updata_le_param:
+	call  app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+
+
+shutter_le_shutter_fast_adv_timer:
+	fetch 1, mem_shutter_powerup_flag
+	rtnne SHUTTER_POWER_ON
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_fast_adv_timeout_timer_count
+	nrtn blank
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,in_is_connected
+	setarg mem_slow_adv_led_style
+	call shutter_ui_led_send
+in_is_connected:
+	setarg SLOW_ADV_INTERVAL_VALUE
+	branch shutter_le_adv_interval_set
+
+shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	call shutter_shutter_power_off_end
+	//goto sleep
+	//call shutter_le_sleep_req_hibernate
+	rtn
+
+scale_process_le_conn:
+	jam 0,mem_lpm_mode
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam PAIR_UNKNOWN,mem_pair_state
+	//call shutter_update_last_clk
+	call app_ble_stop_adv
+//	call shutter_check_51cmd_le_smp_sec_req
+//	call shutter_app_updata_le_param
+
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	//call p_update_last_clk
+	call app_ble_stop_adv
+	//call check_51cmd_le_smp_sec_req
+	//call p_app_updata_le_param
+	call  app_lpm_mult_enable
+	//call ice_break
+	jam 0,mem_le_fast_adv_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 0,mem_led_gpio
+	rtn
+
+scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call shutter_le_fast_advertise
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+
+	call shutter_le_tx_buff_unuse
+	//call le_att_client_clr
+	call app_ble_start_adv
+	//call app_led_start_blink
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	rtn
+
+shutter_le_tx_buff_inuse:
+	//call ui_led_on
+	jam 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_check_tx_buff:
+	fetch 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_tx_buff_unuse:
+	//call ui_led_off
+	jam 0,mem_scale_txbuff_inuse
+	rtn
+
+shutter_le_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+
+shutter_le_sleep_req_hibernate:
+	jam 0x01,mem_le_sleep_flag
+shutter_le_sleep_req_ok:	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+shutter_le_sleep_enter:
+	call shutter_le_sleep_clr
+	call wait_uarttx
+	jam 0x00,mem_le_sleep_flag
+	branch app_bb_hibernate
+
+shutter_le_sleep_clr:
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+	//branch le_att_client_clr
+
+scale_process:
+	fetch 1, mem_exchange_mtu_req
+	ncall shutter_le_parse_att_exchange_mtu_request,blank
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_parse_att_exchange_mtu_request:
+	//fetch 1,mem_le_state
+	//bbit0 lestate_encryption,shutter_le_parse_att_exchange_mtu_request_save
+	jam 0, mem_exchange_mtu_req
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+shutter_le_parse_att_exchange_mtu_request_save:
+	jam 1, mem_exchange_mtu_req
+	rtn
+
+scale_process_idle:
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_before_hibernate:
+	call shutter_shutter_scan_key
+	fetch 2, mem_key_value_temp
+	branch in_enter_hibernate,blank
+	branch app_enter_hibernate
+in_enter_hibernate:	
+	call gpio_set_before_lpm_common
+	branch shutter_le_process_lpm_before
+
+
+
+
+
+shutter_ui_led_init:
+	fetch 1, mem_shutter_led_num
+	copy pdata,loopcnt
+	setarg mem_led_map
+	copy pdata,rega
+in_lp1:
+	copy rega,contr
+	ifetch 1,contr
+	beq INVALID_PIN_NUM,in_lp1_end
+	copy pdata,temp
+	store 1, mem_led_gpio
+	//call ice_break
+	call ui_led_init
+in_lp1_end:
+	loop in_lp1
+shutter_ui_led_init_end:
+	rtn
+
+
+
+//pdata = address of led_style 
+shutter_ui_led_send:
+	copy pdata,contr
+	force 7,loopcnt
+	//setarg mem_temp_led_style
+	//copy pdata,contw
+	arg mem_temp_led_style,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	fetch 1, mem_temp_led_type
+	rtneq LED_INVALID
+	fetcht 2,mem_temp_led_on_time
+	storet 2,mem_led_light_time
+	fetcht 2, mem_temp_led_off_time
+	storet 2,mem_led_dark_time
+	fetcht 1,mem_temp_blink_count
+	storet 1, mem_led_blink_count
+	//call ice_break
+	call ui_led_blink_stop
+	fetcht 1,mem_temp_led_pin
+	storet 1, mem_led_gpio
+	fetch 1, mem_temp_led_type
+	beq LED_OFF,shutter_ui_led_send_end
+	beq LED_ON,	ui_led_on
+	beq LED_BLINK,ui_led_blink_start1
+shutter_ui_led_send_end:
+	rtn
+
+shutter_ui_led_off:
+	branch ui_led_blink_stop
+
+
+shutter_key_init:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+shutter_key_lp1:
+	ifetcht 1, rega
+	call gpio_config_input
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop shutter_key_lp1
+shutter_key_init_end:
+	rtn
+	
+
+shutter_shutter_scan_key:
+	//setarg mem_key_conf0_pin
+	//copy pdata, rega
+	arg mem_key_conf0_pin,rega
+	force 0,regb
+	jam 0,mem_key_value_temp
+in_scan_key_lp1:
+	ifetcht 1, rega
+	call gpio_get_bit
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 2, mem_key_value_temp
+	copy regb,queue
+	qsetflag true,pdata
+	store 2, mem_key_value_temp
+	increase KEY_CONF_STRUCT_LEN,rega
+	increase 1,regb
+	fetch 1,mem_shutter_key_num
+	ixor regb,null
+	nbranch in_scan_key_lp1,zero
+	//call ice_break
+	fetch 2,mem_key_value_temp
+	fetcht 2,mem_key_value
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_le_key_process:
+	arg temp_timer,queue
+	call timer_check
+	nrtn blank
+	call shutter_le_packet_interval_set
+	fetch 1,mem_enable_key_scan
+	rtn blank
+	disable user
+	call shutter_le_process_lpm_before
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_le_fast_advertise
+	call shutter_shutter_cancel_key_shake
+	branch  in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+shutter_le_key_lp1:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch in_le_key_is_release,blank
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_press
+	beq 1,in_le_send_key1_press
+	beq 2,in_le_send_key2_press
+	beq 3,in_le_send_key3_press
+	beq 4,in_le_send_key4_press
+	beq 5,in_le_send_key5_press
+in_le_send_lable:
+	fetch 1,mem_le_enc_state
+	rtnne  FLAG_LE_ENC_END
+	fetch 1,mem_shutter_key_data_flag_1
+	nrtn blank
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch in_le_send_lp1,zero
+	branch shutter_le_send_packet
+//function end
+
+in_le_key_is_release:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_rel
+	beq 1,in_le_send_key1_rel
+	beq 2,in_le_send_key2_rel
+	beq 3,in_le_send_key3_rel
+	beq 4,in_le_send_key4_rel
+	beq 5,in_le_send_key5_rel
+	branch in_le_send_lable
+
+in_le_send_key0_press:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_key_led_index
+	arg mem_key0_press,temp
+	branch in_le_send_lable
+in_le_send_key1_press:
+//	fetch 1,0x4ff0
+//	increase 1,pdata
+//	store 1,0x4ff0
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_key_led_index
+	arg mem_key1_press,temp
+	branch in_le_send_lable
+in_le_send_key2_press:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_key_led_index
+	arg mem_key2_press,temp
+	branch in_le_send_lable
+in_le_send_key3_press:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_key_led_index
+	arg mem_key3_press,temp
+	branch in_le_send_lable
+in_le_send_key4_press:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_key_led_index
+	arg mem_key4_press,temp
+	branch in_le_send_lable
+in_le_send_key5_press:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_key_led_index
+	arg mem_key5_press,temp
+	branch in_le_send_lable
+
+in_le_send_key0_rel:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_disble_key_led
+	arg mem_key0_release,temp
+	branch in_le_send_lable
+in_le_send_key1_rel:
+//	fetch 1,0x4ff1
+//	increase 1,pdata
+//	store 1,0x4ff1
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_disble_key_led
+	arg mem_key1_release,temp
+	branch in_le_send_lable
+in_le_send_key2_rel:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_disble_key_led
+	arg mem_key2_release,temp
+	branch in_le_send_lable
+in_le_send_key3_rel:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_disble_key_led
+	arg mem_key3_release,temp
+	branch in_le_send_lable
+in_le_send_key4_rel:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_disble_key_led
+	arg mem_key4_release,temp
+	branch in_le_send_lable
+in_le_send_key5_rel:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_disble_key_led
+	arg mem_key5_release,temp
+	branch in_le_send_lable
+
+shutter_le_disble_key_led:
+	compare LED_ON,pdata,0xff
+	rtn true
+	force 3,pdata
+	branch shutter_le_key_led_index
+	//rtn
+
+//pdata = key led index
+shutter_le_key_led_index:
+	beq 0,in_le_key_led_0
+	beq 1,in_le_key_led_1
+	beq 2,in_le_key_led_2
+	beq 3,in_le_key_led_3
+	//setarg 0xff
+in_le_light_led:
+	branch shutter_ui_led_send
+//end
+
+in_le_key_led_0:
+	setarg mem_key_led_style_ind_0
+	branch shutter_ui_led_send
+in_le_key_led_1:
+	setarg mem_key_led_style_ind_1
+	branch shutter_ui_led_send
+in_le_key_led_2:
+	setarg mem_key_led_style_ind_2
+	branch shutter_ui_led_send
+in_le_key_led_3:
+	setarg mem_key_led_style_ind_3
+	branch shutter_ui_led_send
+
+//////////////////////////////////////////////////////////////////////////////////////////
+/////SOFT WTICH////////
+shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+shutter_ui_button_timeout_timer:
+	fetch 1,mem_shutter_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_button_timer
+	nrtn blank
+	branch app_led_off
+
+shutter_shuuter_led_on:
+	fetch 1,mem_shutter_button_timeout
+	store 1,mem_shutter_button_timer
+	branch  app_led_on
+
+shutter_bb_event_button_up:
+	//call ice_break
+	//fetch 2,mem_ui_state_map
+	//rtnbit1 UI_STATE_BLE_CONNECTED
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,in_power_release
+	branch app_enter_hibernate
+in_power_release:
+	jam 1,mem_enable_key_scan
+	rtn
+
+shutter_evt_button_long_pressed:
+	//call ice_break
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_power_off
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	//jam ON,mem_le_adv_enable
+	setarg mem_power_on_led_style
+shutter_shutter_power_on:
+shutter_shutter_power_on_off:
+	fetcht 1,mem_power_timeout
+	storet 1,mem_power_timer
+	branch shutter_ui_led_send
+	
+shutter_le_power_off:
+	//call ice_break
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	jam 0,mem_enable_key_scan
+	jam OFF,mem_le_adv_enable
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_shutter_power_off_end
+	call app_ble_disconnect
+shutter_shutter_power_off_end:
+	jam OFF,mem_le_adv_enable
+	setarg mem_powe_off_led_style
+	branch shutter_shutter_power_on_off
+
+shutter_shutter_power_off_signal:	
+	call shutter_ui_led_init
+	branch app_enter_hibernate
+//end
+	
+shutter_le_process_lpm_before:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+in_shutter_process_lpm_before_lp1:
+	ifetcht 1, rega
+	call gpio_set_wake_by_current_state
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop in_shutter_process_lpm_before_lp1
+shutter_le_process_lpm_before_end:
+	rtn
+
+
+shutter_le_queue_init:
+	jam 0,mem_queue_ele_num
+	setarg mem_queue_start
+	store 2, mem_queue_read
+	store 2, mem_queue_write
+	rtn
+//end
+
+shutter_le_queue_clear:
+	branch shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num
+	compare  QUEUE_ELE_COUNT,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num
+	increase 1,pdata
+	store 1, mem_queue_ele_num
+	
+	setarg mem_queue_write
+	call shutter_le_queue_increase
+	rtn
+
+//pdata
+shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH,pdata
+	isub temp,null
+	nbranch shutter_le_queue_put_end,positive
+	setarg mem_queue_start
+shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num
+	increase -1,pdata
+	store 1, mem_queue_ele_num
+
+	fetch 2,mem_queue_read
+	store 2,mem_queue_temp
+
+	setarg mem_queue_read
+	call shutter_le_queue_increase
+	fetch 2,mem_queue_temp
+	rtn
+
+shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read
+	rtn
+
+shutter_le_packet_interval_set:
+	fetch 2, mem_packet_interval_set
+	arg temp_timer,queue
+	branch timer_init
+
+shutter_le_send_packet:
+	//fetch 1,mem_le_pairing_state
+	//rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	//call shutter_le_check_tx_buff
+	//nrtn blank
+	//arg temp_timer,queue
+	//call timer_check
+	//nrtn blank
+	//call shutter_le_packet_interval_set
+	call shutter_le_queue_read_point
+	nrtn user
+	disable user
+	//copy pdata,contr
+	//ifetcht 1,contr
+	//increase -3,temp
+	//copy temp,loopcnt
+	//ifetcht 2,contr
+	//storet 2,mem_le_notify_handle
+	//arg mem_shutter_send_data,contw
+	//call memcpy
+	force 0x0013,temp
+	storet 2,mem_le_notify_handle
+	branch shutter_le_shutter_send_keydata
+
+shutter_le_shutter_send_keydata:
+	arg 2, loopcnt
+	fetcht 2, mem_le_notify_handle
+	arg mem_shutter_send_data, contr
+	call shutter_le_tx_notification
+	
+	//fetch 1,mem_shutter_1key_send_sm
+	//beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_le_shutter_1key_send_step2
+  	//beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_le_shutter_1key_send_step3
+ 	//beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_le_shutter_1key_send_step4
+	rtn	
+
+shutter_le_tx_indication:
+	jam ATTOP_HANDLE_VALUE_INDICATION,mem_fifo_temp
+	branch shutter_le_tx_common
+shutter_le_tx_notification:
+	call le_xtype_fifo_is_empty
+	nrtn blank
+	fetch 1,mem_shutter_key_data_flag
+	nrtn blank
+ 	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+shutter_le_tx_common:
+	//add loopcnt,7,pdata
+	//store 1,mem_scale_tx_length
+	//arg mem_le_l2cap+1,contw
+	//istoret 2,contw
+	//call memcpy
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+shutter_shutter_cancel_key_shake:
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,20,pdata
+	rtn
+
+shutter_le_send_att_handle_value_notification:
+	//call shutter_le_tx_buff_unuse
+	call shutter_le_queue_get
+	nrtn user
+	disable user
+	copy pdata,contr
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	//fetcht 2, mem_le_notify_handle
+	ifetcht 2,contr
+	//arg mem_shutter_send_data, contr
+	add loopcnt,7,pdata
+	store 1,mem_scale_tx_length
+	arg mem_le_l2cap+1,contw
+	istoret 2,contw
+	call memcpy
+	fetcht 1,mem_scale_tx_length
+	branch le_send_packet
+	
+shutter_le_receive_data:	
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,shutter_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,shutter_le_parse_att_write_command
+	rtn
+shutter_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle
+	beq  ATT_WRITE_REQUEST_HANDLE,shutter_key_data_send
+	rtn
+shutter_le_parse_att_write_command:
+shutter_key_data_send:
+	jam 0,mem_shutter_key_data_flag
+	rtn
+
+init_shutter_le_att_list:
+	arg mem_shutter_le_att_list,contw
+	setsect 0,0x20001
+	setsect 1,0x20000
+	setsect 2,0x1022
+	setsect 3,0x860
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x3200
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a05
+	setsect 1,0x10000
+	setsect 2,0x2000
+	setsect 3,0xa408
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x140
+	setsect 2,0x20
+	setsect 3,0x8a0
+	istore 9,contw
+	setsect 0,0x21800
+	setsect 1,0x8001
+	setsect 2,0x28030
+ 	setsect 3,0x804
+	istore 9,contw
+	setsect 0,0x20007
+	setsect 1,0x28000
+	setsect 2,0x3132
+	setsect 3,0x1a5a1
+	istore 9,contw
+	setsect 0,0x17370
+	setsect 1,0x35859
+	setsect 2,0xc422
+	setsect 3,0x8115
+	istore 9,contw
+	setsect 0,0x2020
+	setsect 1,0x808
+	setsect 2,0x20202
+	setsect 3,0x20
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x804a
+	setsect 2,0x90
+	setsect 3,0x408
+	istore 9,contw
+	setsect 0,0x22a
+	setsect 1,0x28032
+	setsect 2,0x2000
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x30201
+	setsect 1,0x8002
+	setsect 2,0x2a040
+	setsect 3,0x1820
+	istore 9,contw
+	setsect 0,0x600
+	setsect 1,0x1900
+	setsect 2,0x12c0
+	setsect 3,0x30
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x2808a
+	setsect 2,0xd180
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12803
+	setsect 1,0x38080
+	setsect 2,0x2000
+	setsect 3,0xa940
+	istore 9,contw
+	setsect 0,0x20207
+	setsect 1,0x18922
+	setsect 2,0x1826
+	setsect 3,0x3c00
+	istore 9,contw
+	setsect 0,0x200
+	setsect 1,0x8a00
+	setsect 2,0x18120
+	setsect 3,0x40
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x1804a
+	setsect 2,0x110
+	setsect 3,0x13808
+	istore 9,contw
+	setarg 0x1012a
+	istore 3,contw
+	setsect 0,0x20012
+	setsect 1,0x200c0
+	setsect 2,0x12012
+	setsect 3,0x4c
+	istore 9,contw
+	setsect 0,0x24d02
+	setsect 1,0x8a
+	setsect 2,0x14280
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x22902
+	setsect 1,0x0
+	setsect 2,0x150
+	setsect 3,0x2008
+	istore 9,contw
+	setsect 0,0x20229
+	setsect 1,0x18040
+	setsect 2,0x2001
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x31201
+	setsect 1,0x8005
+	setsect 2,0x2a4d0
+	setsect 3,0x8
+	istore 9,contw
+	setsect 0,0x1828
+	setsect 1,0x8080
+	setsect 2,0x2290
+	setsect 3,0x0
+	istore 9,contw
+	setsect 0,0x20019
+	setsect 1,0x24200
+	setsect 2,0x3022
+	setsect 3,0x6804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1b020
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x2a4b
+	setsect 1,0x30151
+	setsect 2,0x1090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10285
+	setsect 1,0x27a42
+	setsect 2,0x9ea0
+	setsect 3,0x2788
+	istore 9,contw
+	setsect 0,0x11530
+	setsect 1,0x30940
+	setsect 2,0x10750
+	setsect 3,0x654
+	istore 9,contw
+	setsect 0,0x81
+	setsect 1,0x4170
+	setsect 2,0x6090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10385
+	setsect 1,0x241c1
+	setsect 2,0x29e01
+	setsect 3,0x579c
+	istore 9,contw
+	setsect 0,0x12500
+	setsect 1,0x5d40
+	setsect 2,0x8950
+	setsect 3,0xa04
+	istore 9,contw
+	setsect 0,0x10875
+	setsect 1,0x14065
+	setsect 2,0x25001
+	setsect 3,0x17d0
+	istore 9,contw
+	setsect 0,0x1907
+	setsect 1,0x10a40
+	setsect 2,0x81f
+	setsect 3,0x300
+	istore 8,contw
+	setsect 0,0x2001c
+	setsect 1,0x200c0
+	setsect 2,0x2012
+	setsect 3,0x74
+	istore 9,contw
+	setsect 0,0x24a02
+	setsect 1,0x410a
+	setsect 2,0x11
+	setsect 3,0x7804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1f040
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a4c
+	setsect 1,0x0
+	setsect 2,0x2002
+	setsect 3,0xa000
+	istore 9,contw
+	setsect 0,0xf02
+	setsect 1,0x846
+	setsect 2,0x3020
+	setsect 3,0x4a0
+	istore 9,contw
+	setsect 0,0x2212
+	setsect 1,0x24080
+	setsect 2,0x12a1
+	setsect 3,0x8c00
+	istore 9,contw
+	setsect 0,0x20200
+	setsect 1,0x8a40
+	setsect 2,0x0
+	setsect 3,0x0
+	istore 9,contw
+	rtn
+	
+shutter_init_param:
+	jam 1,mem_le_pres_auth
+	jam 1,mem_le_flag
+	jam 1,mem_le_pairing_mode
+	setarg 0x1b
+ 	store 2,mem_le_pairing_handle
+ 	jam 1,mem_le_adv_direct_addr_type
+ 	jam 3,mem_empty_count
+ 	jam 0x50,mem_le_transmit_window
+ 
+ 	jam 0x17,mem_le_local_mtu
+ 	jam 0x17,mem_le_remote_mtu
+ 	arg mem_le_pres,contw
+ 	setsect 0,0x302
+	setsect 1,0x40
+	setsect 2,0x1021
+	setsect 3,0x0
+	istore 7,contw
+	arg mem_le_interal_min,contw
+	setsect 0,0x8
+	setsect 1,0x4
+	setsect 2,0x2c000
+	setsect 3,0x4
+	istore 8,contw
+	rtn
+
+	
+
+publickey_init:
+	fetch 1,mem_ssp_enable
+	nbranch sp_initialize,blank
+	branch sp_initialize_256
+
+publickey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_local_key_invalid
+	rtneq SP_KEY_VALID_256
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,stop_publickey_calc_256
+	fetch 1,mem_le_sc_calc
+	beq SP_CALC_STANDBY,sp_initialize_256
+	rtn
+stop_publickey_calc_256:
+	jam SP_CALC_STANDBY,mem_le_sc_calc	
+	rtn
+	
+
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	fetch 1,mem_ssp_enable 
+	branch ssp_disable, blank
+	call ssp_enable
+	call sp_clear_flags
+	branch sp_pubkey_calc 
+	
+sp_clear_flags:
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	store 7,mem_sp_iocap_remote
+	rtn
+
+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 */
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+	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  
+
+	call sp_confirm_check_success
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch tid_set_reply
+    
+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 patch3c_3,mem_patch3c
+	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 patch3c_4,mem_patch3c
+	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 patch3c_5,mem_patch3c
+         fetch 1,mem_sp_flag
+         rtn blank
+	call lmo_fifo_check
+	nrtn 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 patch3c_6,mem_patch3c
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	call lmo_fifo_check
+	nrtn 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 patch3c_7,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	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_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_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_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 patch3d_0,mem_patch3d
+	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_number_confirm:
+	call g_noninit0
+	call sha_result
+	branch g_common0
+
+g_noninit:
+	call g_noninit0
+	branch g_common0
+	
+g_noninit0:
+ 	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
+	call g_common
+	branch g_common0
+	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	branch sha
+g_common0:
+	fetch 4,memresult
+//	store 4,mem_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_gkey
+	iadd temp,pdata
+	store 4,mem_gkey
+	rtn
+
+function_f1_no_key:
+	jam 0,mem_passkey_1bit
+	branch function_f1_common
+	
+function_f1:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f1_no_key
+function_f1_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	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
+	
+	fetch 1,mem_passkey_1bit
+	
+	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:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3a_no_pin
+function_f3a_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	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_f3_common
+
+function_f3a_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3a_common
+
+function_f3b_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3b_common
+
+
+function_f3b:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3b_no_pin
+function_f3b_common:
+	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_f3_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   4,contw
+	fetch 4,mem_pin
+	istore   4,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                
+	             
+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
+
+	
+
+
+sp_initialize_256:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 1,mem_le_secure_connect_enable
+	branch  le_secure_connection_disable,blank
+	call le_secure_connection_enable
+	call sp_clear_flags
+//	jam SP_KEY_INVALID_256,mem_le_sc_local_key_invalid
+	branch sp_pubkey_calc_256
+    	
+
+
+
+sp_pubkey_calc_256:
+	fetch    1,mem_le_sc_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+	
+	arg      mem_le_private_key_256,contw 
+	force    15,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32 //mem_sp_private_key=>mem_k 
+
+	arg      mem_ax_256,contw
+	arg      mem_gx_256,contr
+	call     memcpy64 //mem_gx=>mem_ax 
+	
+	arg      mem_az_256,contw
+	call      clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam SP_CALC_PUBKEY_256,mem_le_sc_calc
+	rtn    
+
+sp_pubkey_generated_256:
+	arg      mem_le_pubkey_local_x_256,contw
+	arg      mem_bx_256,contr
+	call     memcpy64   
+	jam      SP_KEY_VALID_256,mem_le_sc_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+	
+
+
+sp_dhkey_calc_256:
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32
+
+	arg      mem_ax_256,contw
+	arg      mem_le_pubkey_remote_x_256,contr
+	call     memcpy64
+
+	arg      mem_az_256,contw
+	call     clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam     SP_CALC_DHKEY_256,mem_le_sc_calc
+	rtn 
+
+
+sp_dhkey_generated_256:
+//	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_le_dhkey_256,contw
+	arg mem_bx_256,contr
+	call memcpy32
+	jam SP_KEY_VALID_256,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+
+
+
+sp_calc_sequence_256:
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_le_sc_calc
+	rtnbit1 7
+	fetch    2,mem_ec_loopc
+	branch   sp_calc_sequence_done_256,blank
+	branch   eckp_calc_256
+
+sp_calc_sequence_done_256:    
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	call ecunmapz_256
+	fetch 1,mem_le_sc_calc
+	beq  SP_CALC_PUBKEY_256,sp_pubkey_generated_256
+	beq  SP_CALC_DHKEY_256,sp_dhkey_generated_256
+	rtn
+
+
+eckp_calc_256:
+	call     ecdbl_256  
+	fetch    2,mem_ec_loopc
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd_256   
+
+eckp_calc_init_256:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	setarg 256,pdata
+	store 2,mem_ec_loopc
+eckp_calc_init_256_1:    
+	fetch    2,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	branch eckp_calc_init_256_1,true
+	arg      mem_ax_256,contr
+	arg      mem_cx_256,contw
+	branch     memcpy96	
+
+
+ecunmapz_256:
+	arg mem_cz_256,regA
+	arg mem_t3_256,contw
+	call bn_invmod_256			/* t3 = 1/z */
+	arg mem_t3_256,regA
+	arg mem_t1_256,contw		
+	call bn_sqrmod_256			/* t1 = 1/z2 */
+	arg mem_cx_256,regA
+	arg mem_t1_256,regB
+	arg mem_bx_256,contw
+	call bn_mulmod_256
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw			
+	call bn_mulmod_256			/* t2 = 1/z3 */
+	arg mem_cy_256,regA
+	arg mem_t2_256,regB
+	arg mem_by_256,contw
+	branch bn_mulmod_256	
+	
+ecdbl_256:
+	arg mem_cz_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_a_256,regA
+	arg mem_t3_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=a*z4	*/
+	arg mem_cx_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_t2_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256
+//call ice_break
+	arg mem_t2_256,regA
+	arg mem_t3_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256		/* t2=3*x2 + z*z4		D  */
+//call ice_break
+	arg mem_cx_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_cy_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA		
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		//S = 4X1Y1^2/* t1=4x*y2	B	*/
+	arg mem_t3_256,regA
+	arg mem_t0_256,contw
+	call bn_sqrmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256		
+	arg mem_t0_256,regA		
+	call bn_lshiftmod_256	//T = 8Y1^4	/* t0=8*y4		C */
+	arg mem_cy_256,contr
+	arg mem_t3_256,contw
+	call memcpy32
+	arg mem_t3_256,regA
+	call bn_lshiftmod_256
+	arg mem_t3_256,regA
+	arg mem_cz_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		//z = 2Y1Z1
+
+
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256   // M ^2
+//call ice_break
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256  // t2^2 - 4*cx *cy^2 
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256   //X2
+	arg mem_t1_256,regA
+	arg mem_cx_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256   //S-X2
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	//M(S-X2)	
+	arg mem_t3_256,regA
+	arg mem_t0_256,regB
+	arg mem_cy_256,contw
+	branch bn_submod_256  //M(S-X2)-T Y2	
+
+ecadd_256:
+
+	arg mem_az_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_cx_256,regA
+	arg mem_t7_256,regB
+	arg mem_t0_256,contw
+	call bn_mulmod_256		/* n1=t0=xa*zb2 U1 = X1Z0^2*/
+
+
+	arg mem_az_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_cy_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* n2=t1=ya*zb3   S1 = Y1Z0^3*/
+
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_ax_256,regA
+	arg mem_t7_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* n3=t2=xb*za2  U0 = X0Z1^2*/
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_ay_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* n4=t3=yb*za3 S0 = Y0Z1^3*/
+
+
+//	arg mem_t0_256,regA
+//	arg mem_t2_256,regB
+	arg mem_t0_256,regb
+	arg mem_t2_256,rega
+	arg mem_t7_256,contw
+	call bn_submod_256		/* n5=t7=n1-n3=t0-t2   W=U1-U0*/
+	arg mem_t0_256,regA
+	arg mem_t2_256,regB
+	arg mem_t0_256,contw
+	call bn_addmod_256		/* n7=t0=n1+n3=t0+t2    T=U1+U0 */
+//	arg mem_t1_256,regA
+//	arg mem_t3_256,regB
+	arg mem_t1_256,regb
+	arg mem_t3_256,rega
+	arg mem_t2_256,contw
+	call bn_submod_256		/* n6=t2=n2-n4=t1-t3  S1-S0 */
+	arg mem_t1_256,regA
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_addmod_256		/* n8=t1=n2+n4=t1+t3 M=S1+S0*/
+	arg mem_t1_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5     MW */
+	arg mem_cz_256,regA
+	arg mem_az_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	      //Z0Z1
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		/* z=za*zb*n5   Z0Z1W */
+
+	arg mem_t7_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256		/* t7=n5^2 */
+	arg mem_t7_256,regA
+	arg mem_t0_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=n5^2*n7 */
+	arg mem_t7_256,regA
+	arg mem_t1_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5^3 */
+	arg mem_t2_256,regA
+	arg mem_cx_256,contw
+	call bn_sqrmod_256		
+	arg mem_cx_256,regA
+	arg mem_t3_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256		/* x=n6^2-n5^2*n7 */
+	arg mem_cx_256,contr
+	arg mem_t7_256,contw
+	call memcpy32
+	arg mem_t7_256,regA
+	call bn_lshiftmod_256		/* t7=2*x */
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256		/* t3=n9 */
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* t2=n9*n6 */
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_cy_256,contw
+	call bn_submod_256	
+	arg mem_cy_256,regA
+	arg mem_p_256,regB
+	arg mem_cy_256,contw
+	force 0,regC
+	fetch 1,mem_cy_256
+	isolate1 0,pdata
+	call bn_add_256,true
+	copy regC,alarm
+	arg mem_cy_256,regA
+	call bn_rshift_256
+	fetch 1,mem_cy5_256
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5_256
+	rtn	
+
+bn_invmod_256:
+	copy contw,timeup					 
+	arg mem_tmp0_256,contw			 
+	call clear_mem_256
+	force 0,pdata
+//	store 4,mem_tmp52
+	store 4,mem_t2_256
+	jam 1,mem_tmp0_256      //y1
+	arg mem_tmp1_256,contw	//y2			 
+	call clear_mem_512      
+	arg mem_p_256,contr
+	arg mem_tmp2_256,contw		//j		 
+	call memcpy32
+	copy regA,contr
+	arg mem_tmp3_256,contw		//i		 
+	call memcpy32
+	
+//	arg mem_tmp22,regA
+//	arg mem_tmp32,regB
+//	call p_bn_bigeq_256
+//	branch assert,positive
+bn_invmod_256_2:	
+	arg mem_tmp3_256,contr
+	call bn_eq_zero_256
+	branch bn_invmod_256_0,blank
+//call ice_break    	
+//fetch 1,0x4ffe
+//increase 1,pdata
+//store 1,0x4ffe
+	arg mem_tmp3_256,regA
+	arg mem_tmp0_256,regB
+	call bn_rshifteven_256
+	arg mem_tmp2_256,regA
+	arg mem_tmp1_256,regB
+	call bn_rshifteven_256
+	
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	call bn_bigeq_256
+	branch bn_invmod_256_1,positive
+	arg mem_tmp2_256,regA
+	arg mem_tmp3_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp0_256,regA
+	arg mem_tmp1_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_1:
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp1_256,regA
+	arg mem_tmp0_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_0:
+//call ice_break
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	call  bn_p256mod
+//call ice_break
+	arg mem_p_256,regA
+	copy timeup,regB
+	copy timeup,contw
+	branch bn_submod_256
+
+
+bn_mulmod_256:
+	copy contw,timeup					/* save result ptr */
+	
+	force 0,regext_index
+	
+	arg mem_tmp1_256,contw
+	call clear_mem_512
+	arg mem_regext,contw
+	call clear_mem_512
+//	jam 0,mem_regext_index
+
+//	arg mem_tmp12,contw
+	copy regA,contr
+//	force 0,regext_index
+	jam 0,mem_regext
+	setarg 0
+	call bn_load_mem
+	copy regB,contr
+	call bn_load_256
+//	force 0,regB
+//	jam 0,mem_regb
+	force 0,queue
+	arg mem_tmp1_256,contw	
+bn_mulmod_256_1:	
+//	copy regb,pdata
+//	store 1,
+	arg mem_regext,temp
+	copy queue,regb
+	lshift2 regb,pdata
+//	lshift4 pdata,pdata
+	iadd temp,regb	
+	force 0,temp
+	force 0,regC
+bn_mulmod_256_0:
+//	copy contw,pdata
+//	store 2,mem_contw
+//call ice_break
+//	copy pdata,contw
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+//	copy regB,regext_index
+//	deposit regext
+	ifetch 4,regb
+	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 8,regC,0xff
+	nbranch bn_mulmod_256_0,true
+//call ice_break
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -32,contw
+//	fetch 1,mem_regb
+//	copy pdata,regb
+	increase 1,queue
+	compare 8,queue,0xff
+	nbranch bn_mulmod_256_1,true
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	branch bn_p256mod
+
+bn_p256mod:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add regA,44,contr
+	call memcpy8
+	call memcpy12
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S1
+	arg mem_tmp2_256,regB
+	copy alarm,rega   
+	copy timeup,contw
+	call bn_addmod_256 //T+2S1
+//call ice_break	
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add alarm,48,contr
+	call memcpy16
+	call memset0_4	
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S2
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy timeup,rega   
+	copy regA,contw	
+	call bn_addmod_256  //+2S2
+//call ice_break	
+//	arg 0,regB
+		
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,56,contr
+	call memcpy8
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S3
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,36,contr
+	call memcpy12
+	add alarm,52,contr	
+	call memcpy12
+	add alarm,52,contr
+	call memcpy4
+	add alarm,32,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S4	
+//call ice_break	
+//	arg 1,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,44,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,32,contr
+	call memcpy4
+	add alarm,40,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D1	
+//call ice_break	
+//	arg 2,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,48,contr
+	call memcpy8
+	call memcpy8
+	force 0,pdata
+	istore 8,contw
+	add alarm,36,contr
+	call memcpy4
+	add alarm,44,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D2	
+//call ice_break	
+//	arg 3,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,52,contr
+	call memcpy12
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,48,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D3
+//call ice_break	
+//	arg 4,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,56,contr
+	call memcpy8
+	call memset0_4	
+	add alarm,36,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,52,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	branch  bn_submod_256 //-D4	
+
+
+bn_load_mem:
+	force 32,loopcnt
+	arg mem_regext,contw
+	iadd contw,contw
+	branch memcpy
+
+bn_load_256:
+	force 8,loopcnt
+	branch bn_load_0
+
+bn_sqrmod_256:
+	copy regA,regB
+	branch bn_mulmod_256
+
+bn_add_256:
+	force 8,loopcnt
+ 	branch bn_add+1
+
+bn_addmod_256:
+	call bn_add_256
+	copy contw,regA
+	branch bn_lshiftmod_ismod_256
+
+bn_lshiftmod_256:
+	call bn_lshift_256
+bn_lshiftmod_ismod_256:	
+	isolate1 0,regC
+	branch bn_lshiftmod_p_256,true
+	arg mem_p_256,regB
+	copy regA,regC
+	increase -32,regA
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+	
+bn_lshiftmod_p_256:
+	call sub_p2_256
+//	nrtn true
+	copy regA,regC
+	increase -32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+		
+	
+sub_p2_256:
+	increase -32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_sub_256
+	
+
+
+	
+bn_submod_256:
+	call bn_sub_256
+//	isolate1 0,regC
+	branch  bn_submod_256_np,true
+//	copy regA,regC
+//	increase -32,regA
+	add contw,-32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	arg mem_p_256,regB
+	add contw,-32,regA
+//	copy regC,regA
+	copy rega,contw
+	branch  bn_sub_256
+bn_submod_256_np:	
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	call bn_add_256
+//	isolate1 0,regC
+	rtn true
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_add_256	
+
+
+ 
+bn_sub_256:
+	force 8,loopcnt
+	branch bn_sub+1
+
+bn_rshift_256:
+	force 8,loopcnt
+	increase 28,regA
+	branch bn_rshift
+
+bn_lshift_256:
+	force 8,loopcnt
+	force 0,regC
+	branch bn_lshift_0
+
+bn_bigeq_256:
+	force 8,loopcnt
+	increase 28,regA
+	increase 28,regB
+	branch bn_bigeq_0
+
+
+bn_eq_zero_256:
+	ifetch 8,contr
+	nrtn blank
+	branch bn_eq_zero
+
+
+
+	
+bn_rshifteven_256:
+	copy regA,alarm
+bn_rshifteven_256_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift_256
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_256_0,true
+	arg mem_p_256,regA
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						 
+	increase -32,regB
+bn_rshifteven_256_0:
+	add regB,32,regA
+	force 9,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_256_1		
+
+
+
+ui_init:
+	call lpm_disable_exen_output
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	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_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	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:
+	jam 0xff,mem_led_blink_count
+ui_led_blink_start1:
+	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 patch3e_1,mem_patch3e
+	fetch 1,mem_led_blink_count
+	rtn blank
+	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,in_ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch in_ui_led_blink_timer_start
+in_ui_led_blink_polling_dark:
+	call ui_led_off
+	fetch 1,mem_led_blink_count
+	beq LED_FLASH_INFINITE,in_ui_led_infinite
+	increase -1,pdata
+	store 1, mem_led_blink_count
+in_ui_led_infinite:
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+in_ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+ui_timer_timeout:
+	setarg 0x1000
+	lshift16 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	copy regb,pdata
+	isub temp,null
+	ncall ui_timer_timeout,positive
+	//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 patch3e_3,mem_patch3e
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	set0 28,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_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	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 patch3e_5,mem_patch3e
+	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:
+	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 patch3e_6,mem_patch3e
+	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 patch3e_7,mem_patch3e
+	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_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 patch3f_0,mem_patch3f
+	call lmo_fifo_check
+	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
+  	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,check_51cmd_ble_update_connect_param
+	beq BT_CMD_DHKEY_NOT_ACCEPT,check_51cmd_dhkey_not_accept
+  	rtn
+
+check_51cmd_dhkey_not_accept:
+	call tid_set_reply
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch parse_lmp_dhkey_check_reject	
+
+check_51cmd_ble_update_connect_param:
+	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
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	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
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_direct_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+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 patch3f_1,mem_patch3f
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	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
+
+
+
+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
+	
+get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+store_contr:
+	copy contr,pdata
+	store 2,mem_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
+
+memcpy96:
+	call memcpy32
+memcpy64:
+	call memcpy32
+	branch memcpy32
+memcpy12:
+	call memcpy8
+memcpy4:
+	ifetch 4,contr
+	istore 4,contw
+	rtn	
+memcpy8:
+	ifetch 8,contr
+	istore 8,contw
+	rtn	
+
+memcpy48:
+	call memcpy16
+memcpy32:
+	call memcpy8
+memcpy24:
+	call memcpy8
+memcpy16:
+	call memcpy8
+	branch memcpy8
+
+
+
+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
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+memset0_8:
+	force 0,pdata
+	istore 8,contw
+	rtn
+memset0_4:
+	force 0,pdata
+	istore 4,contw
+	rtn	
+	
+clear_mem_256:
+	force 4,loopcnt
+	branch memset0 
+clear_mem_512:
+	force 8,loopcnt
+	branch memset0 
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+
+clear_temp_block:
+	arg 32,loopcnt
+	arg mem_temp_block0,contw
+	branch clear_mem
+	
+xor_loop:
+	ifetch   4,regc
+	ifetcht 4,rega
+	ixor     temp,pdata
+	istore   4,contw	
+	increase 4,rega
+	increase 4,regc
+	loop  xor_loop
+	rtn
+	
+// 11 22 -> 22 11; 11 22 33 -> 33 22 11 
+// rega:data addr ;loopnct:length
+inverse_data:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	copy loopcnt,pdata
+	sub pdata,1,null
+	rtn positive
+	iadd rega,regb	
+	increase -1,regb
+	rshift loopcnt,loopcnt
+inverse_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	istore 1,rega
+	istoret 1,regb
+	increase -1,regb
+	increase 1,rega
+	loop inverse_loop
+	rtn
+
+
+memcpy_fast:
+	deposit loopcnt
+	rtn blank
+memcpy_fast_loop:
+	increase -8,loopcnt
+	call memcpy8,positive
+	rtn zero
+	branch memcpy_fast_loop,positive
+	increase 8,loopcnt
+memcpy_fast_loop_four:
+	increase -4,loopcnt
+	call memcpy4,positive
+	rtn zero
+	branch memcpy_fast_loop_four,positive
+	increase 4,loopcnt
+	branch memcpy
+ 
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	rshift clkn_bt,temp
+	storet 4,mem_last_clkn
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	rtn
+
+timer_check_timeout:
+	arg 0x800,timeup
+	lshift16 timeup,timeup
+	iadd timeup,pdata
+	rtn
+
+
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn	
+	isub temp,null
+	ncall timer_check_timeout,positive	
+	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
+
+
+
+	/* 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
+
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	loop string2dec_from_uart_done
+	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
+
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+
+
+//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	
+*/
+
+	//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 
+
+
+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_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 patch3f_5,mem_patch3f
+	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 patch3f_6,mem_patch3f
+	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: ble fast connect receive/output/bt_program23.rom
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.rom	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/bt_program23.rom	(working copy)
@@ -0,0 +1,32691 @@
+11000101000100101000000000000111
+11000000000000011000000000010100
+11000000010000110000001000101000
+11000000010001010000000111110001
+11000000010001011000001001001010
+11000000010110100000000000110100
+00100000001000000011101100110001
+11000000000000011000000011001110
+11000000000011001000001000100000
+11000000000101011000000001110010
+11000000000101110000000011000101
+11000000000110010000000000011101
+11000000000110011000000010110010
+11000000000111110000000010010011
+11000000010010101000000111101010
+11000000011011000000000001011010
+11000000011011001000000110111011
+11000000011011100000000100110001
+11000000011110111000000010000101
+00100000001000000011101100110001
+11011000111000000000000000001110
+00100000010000000111111011100010
+00100100010110100000000000011001
+00100000010000000000000000011010
+00100000010000000000000010010011
+00100000001000000011000000011011
+01011000000000000000000000001110
+11011000111000000000000000001110
+00100000001000000111111011010100
+01101000000000001100010001101011
+11000000000000001100110010111011
+11000000000000010000000000101100
+11000000000000011100110011011010
+11000000000000100100110011101000
+11000000000000101100110011101101
+11000000000000110100110011110010
+11000000000000111100110100010000
+11000000000001000100110100100111
+11000000000001001100110100101101
+11000000000001010100110100110010
+11000000000001011100110100110101
+11000000000001100100110100111001
+11000000000001101100110101100100
+00100000001000000011101100110001
+01011001000000000000001100000010
+01100000000000100100010011011100
+01011000000000010000000000010000
+11100000101000011000000000000000
+01101000000000110100010011011101
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000000001100000100110010
+00100000001110100011110101001011
+11000000000000011100000000001100
+11000000000001001000000000111100
+11000000000001010101100111011101
+11000010100000110101110111001010
+11000010100000111100000000001100
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000111010011111101
+11011111001000000000000010000111
+11011000101000000100100110110010
+11011000110000000100101011000001
+00100000010000000111111011001101
+00100000010000000111010111001001
+01110000100000001000000100000000
+00100000010000000111001110100101
+01011000000000000111001101111100
+01100000000000010100001010001100
+01011000000000000111010010001100
+01100000000000010100001010001110
+01011000000000000111001101100101
+01100000000000010100001010011000
+01011000000000000111001101111010
+01100000000000010100001010010100
+01011000000000000111001101110001
+01100000000000010100001010010000
+01011000000000000000000010111100
+01100000000000010100001010010110
+00100000010000000000000111000110
+01011000000000000111001011101111
+01100000000000010100001010001010
+01011000000000000111010011110100
+01100000000000010100001010011010
+00100000010000000000000100000001
+01110000010000100001001000000000
+01110000010010001100011100000000
+00100000001000000111001010101101
+01101000000000001100011101010101
+11000000000000000000000001011101
+00100000001000000111001010110001
+01110000010001110101011000000001
+01110000010001110101101100000001
+00100000010000000111001110000010
+01011000000000000100011101110001
+00100000010000000111001110001110
+00100000010000000111110101000100
+01101000000000001100011100010011
+00100100001110100000000001100010
+01110000010000111111100100000001
+01011000000000000000000000000000
+01100000000000100100011100101001
+00100000010000000111001110000010
+01101000000000010100011101001000
+01100000000000010100011101001010
+00100000001000000000000001101100
+01101000000000010100011101001000
+01100000000000010100011101001010
+01110000010010001011101100000000
+01110000010000111111100100000001
+01011000000000000100011101100011
+00100000001000000111001110001110
+01101000000000110000001100000100
+01100000000000110000001101110010
+01101000000000110000001101110010
+01101000000010110100010100101100
+10011000010001100111110000000000
+00100000001000101100101110110100
+00100000001000000000000001111001
+01101000000000110000001101110010
+01101000000010110100101111110010
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000110000001101110010
+01100000000000110100101101001011
+01110000010000111111011100011100
+01011000000000000000000100000000
+01100000000000010100010100111001
+01110000010000111111100100000000
+01110000010010110101000100000001
+00100000001000000011111001101001
+00100000010000000111110110000000
+11011010001000000100011011111000
+00100000010000000111111110010101
+00011111111000100000010000000000
+00100000010000000111110110000100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000010110000000010001110
+00100000001000000111110110110011
+01110000010000111111100100000001
+01110000010000100111000100011011
+01101000000000110100101101001011
+01100000000000110100010100101100
+00100000011000000000000000000000
+11101000110000011000000000000000
+01100000000000011000001110011010
+11000000000010011000000010011001
+11000000000011011000000010011000
+00100000011000000000000000000000
+00100000001000000000000111011111
+01101000000000001100101111111000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101111111000
+11000000000000001000000010100000
+11000000000000000000000010101001
+00100000011000000000000000000000
+01011000000000000000000000100111
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000001000000100101111010110
+01011000000000000000000001100000
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000001000000100101111010110
+01101000000000001100010001101011
+11000000000010010000000010110101
+00100000001000000100110000101011
+01101000000000010100010011111000
+01100000000000010100010001101100
+01101000000000001100010100001011
+00011111111000100111001000000000
+11011000110000000100010100001100
+00100000010000000111111011001101
+00100000001000000100111110000001
+00011010011000100111111000000000
+11000000000101101111010001110101
+11000000000010000111010001111010
+11000000000010100111001100110100
+11000000000010101000000011101100
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000111001011111101
+00100000011000000000000000000000
+01101000000000010100101111011111
+01100000000000010100011101001010
+01011000000000000100011101111111
+00100000010000000111001110001110
+01110000010010110101000100000001
+01110000010001110101101100000001
+01110000010010110101001000100001
+00100000010000000100101111000010
+00100000011000000000000000000000
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+00100000010000000100101101010001
+00100000010000000000000011010101
+01111000010101001111110000000000
+00100000011000000000000000000000
+01101000000000001100101101010010
+11000000000100001000000011011010
+11000000000100101000000011100100
+11000000000100110000000011101011
+00100000011000000000000000000000
+01011000000000000000000000011010
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000010000000100101111010110
+00100000011000000000000000000000
+01110000010010110101001000100110
+01110000000010011011110100000010
+00100000010000000100101111010110
+01101000000000010100011100001011
+01111001001000000111111000001001
+01100000000000010100011100001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000110100010100101100
+01110000010010111111100000000010
+01110000010010110101000100000000
+01110000010000100001001000000000
+01110000010010001100011100000000
+01110000010001001011001000000000
+01110000010010001100011000000000
+01110000010010001100000000000000
+00100000010000000000000100000110
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000001100011101000011
+11000000100000000111001101101001
+00100000010000000000000001101100
+01110000010001110100011000000000
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000001000000111001101100011
+01110000010010110110000000000000
+01011000000000000100101101100101
+01100000000000010100101101100001
+01100000000000010100101101100011
+00100000011000000000000000000000
+00100000001000000000000100000001
+01111000010101000111110000000000
+01101000000000001100101101100000
+00101111111000011111111000000110
+00100000011000001000000000000000
+01111000001101000111110000000000
+01101000000000010100101101100011
+00011111111000100000101000000000
+00011000010000100000110000000000
+00100000010000000111111011001101
+01101000000000001100101101100000
+00011111111000001111111000000001
+01100000000000001100101101100000
+01011000000000000100101101100011
+00100000001000000000000100010101
+00011111111000100010001000000000
+11011000010000000100101111011101
+11101010001000010000000000000000
+00011111111000001111111000010100
+10011000010001100111110000000000
+00100100001000010000000100011100
+01011000000000000100101101100101
+11100010001000010000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100101101100000
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000001100101101100000
+00011111111000001111111111111111
+01100000000000001100101101100000
+01101000000000010100101101100001
+01100000000000010100101111011101
+01011000000000000100101101100001
+00100000010000000000000100010101
+01101000000000010100101111011101
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100101101100000
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000010100101101100001
+00100000011000000000000000000000
+01101000000000001100011110101001
+00100000011110100000000000000000
+00100000010000000111001110101111
+00100100001101000111110100101000
+00100000010000000111110100100110
+01111000010101000111110000000000
+01101000000000010100101111011111
+01100000000000010100011101001010
+01101000000000001100101101010001
+11000000000000000000000001101100
+00100000010000000111010011011110
+00100000001000010000000101010101
+01101000000000010100011110110110
+01100000000000010100011111000000
+01110000010001111100001000000000
+00011000000000000000111000000000
+01101000000000010100011110111000
+00011111111000110000010000000000
+01100000000010010100011110111000
+00011111111000010111111000000001
+01101000000010010100011111000000
+00011000010000010010001000000001
+00011000010000110000010000000000
+01100000000010010100011111000000
+10011010001000101111110000000000
+00100100010000101000000101011001
+01101000000000001100011110101001
+01101000000010001100011111000010
+00011000010000001000010000000001
+01100000000010001100011111000010
+00011000010000100000111000000000
+10011000111000101111110000000000
+00100100001000101000000101000001
+01101000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00100000001110100000000101110111
+00011000111000100111111000000000
+11000000000000000000000101111101
+11000000000000001000000110000100
+11000000000000010000000110001011
+11000000000000011000000110010010
+11101000010000001000000000000000
+00100000011110100000000000000000
+01100000000000001100011110111010
+00011000010000001000010000000001
+01100000000010010100011110111011
+01101000000000010100011110111011
+11101111111010001000000000000000
+00011000010000100111001000000000
+10011000010000001000010000000000
+01100000000010010100011110111011
+00011111111000100000010000000000
+00100000010000000000000100000111
+01101000000000001100011110111010
+00011111111000001111111111111111
+01100000000000001100011110111010
+00100100001000101000000101100101
+00100000001000000000000101110001
+00100000010000000000000100101011
+00100100011101000000000000000000
+01111000010101000111110000000000
+01110000000010011011110100010010
+00100000010000000100101111010110
+00100000001000000111001101011111
+00011000111000100111111000000000
+11000000000000000000000110011001
+11000000000000001000000110100000
+11000000000000010000000110100111
+11000000000000011000000110101110
+00100000001000000000000101100000
+01110000010010110101111000000001
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101111000000010
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101110100000001
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101110100000010
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101111000000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101111000000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101110100000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+01110000010010110101110100000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110110101
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101100000
+11011010001000000000000000000000
+11101000110000001000000000000000
+10011010001000001010001000000000
+11000010000000000000000110110110
+00011010001000010111111011111111
+00100000011000000000000000000000
+00100000010000000111001100011111
+00100000010000000111001100010011
+00100000001000000111001011111110
+01101000000000001100011101011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011010
+00100100011110100000000000000000
+01101000000000001100011101010110
+11000000000000001000000001100101
+00100000001000000111010010001010
+01110000100000001000000100000100
+01101000000100100000000001111000
+01111001001000000111111000000111
+01100000000100100000000001111000
+01110000100000000100001100000001
+01011000000000000100000000000000
+01100000000100010000000001010100
+01011000000000000100000000110000
+01100000000100010000000001010110
+01011000000000000001111100000000
+01100000000100010000000001011010
+01011000000000000001111100010000
+01100000000100010000000001011100
+01011000000000000100000000000000
+01100000000100010000000001011000
+01011000000000000001111100000000
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000000000110100000
+01100000000100010000000001010010
+01101000000100010000000001010000
+01111001001111111111111000001111
+01100000000100010000000001010000
+01110000100000000110001010000001
+00100000011000000000000000000000
+01101000000000111000001100001011
+01100000000000111100101111101010
+01110000010010111110011100000010
+01110000010010111110100000101001
+01110000010010111110100100001000
+01101000000100010000000001011110
+00011111111000100001010000000000
+11011111001000000000000000001011
+11011000110000000100101111100111
+00100000010000000110001100111011
+00100000001000000110001100011111
+01101000000100100000000001111000
+01101000000110100000000001111100
+10011000010000011111111000000000
+00011111111001000111111000000000
+10011010001000010111111000000000
+01100000000100100000000001110000
+00100000011000000000000000000000
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000010000000011101000010011
+01011000000000000000010100000000
+00100000010000000011101100110101
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111111
+01101000000000001100101101010001
+11000000000000000000001000010001
+01101000000000001100001010000000
+11000010100000000000001000001001
+11000010100000001000001000001101
+11000010100000010000001000010001
+11000010100000011000001000010101
+11000010100000100000001000011001
+01110000100010010101011011110000
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011011111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011111111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011001110
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011001011
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011000000
+01110000100010010101010111011000
+00100000011000000000000000000000
+00100000010000000100100110000101
+00100000010000000000001000100110
+00100000010000000100101001101101
+01101000000000001100000100110010
+11000000000001010101110110001110
+00100000011000000000000000000000
+00100000001101101000000111110110
+00100000001000000100100110010100
+00100000001100001000001000111001
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01101000000000001100101101010001
+11000000000000000000001001000111
+01101000000000001100001010000000
+11000010100000000000001000110111
+11000010100000001000001001000100
+11000010100000010000001000110111
+11000010100000011000001001000100
+11000010100000100000001001000100
+01110000100010010101010111010000
+01110000100010010101011011100000
+00011000000000000010101000000000
+01111000010100001111110000000000
+01111000010100000111110000000000
+01111000001011110111110000000000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000001100000000
+01110000100010010000010001110000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000001000000000001000111001
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000011000000000000000000000
+01101000000000001100001000011000
+00100100001110100000001001010000
+00100000010000000011110011010010
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000010000000011101001011111
+01110000100000000100001000000101
+00100000000000000000000000000001
+01110000100000000100001000000100
+01101000000100001000100101101011
+00011111111000010111111011001111
+01100000000100001000100101101011
+00011111111000011111111000110000
+01100000000100001000100101101011
+00100000011000000000000000000000
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+00100000010000000011101110101011
+01110000100000000000011000001000
+01111001001111111000000000100101
+01000100100000000100000000000000
+01101000000100001000000100111011
+01100000000000001100001010111000
+00100000010000000110000011100011
+00100000100000000000000000000000
+00100100010101011111111101101011
+00100000010000000011100111111100
+00100000010000000110001000011101
+00100000010000000011101100111100
+00100000010000000100001011101010
+01111001001111111000000000100101
+01000100100000001100000000000000
+00100000010000000110011000000111
+00100000010000000101001100001100
+00100000010000000111110011101111
+00100000010000000011110101001011
+00100100010101011110010101110001
+01111001001111111000000000100101
+01000100100000010100000000000000
+00100000010101011011110101010101
+00100000010000000111010111100000
+00100000010101011011110000101001
+01111001001111111000000000100101
+01000100100000011100000000000000
+00100000010000000111011011110111
+00100000010000000111101011001111
+00100000010000000111010111100011
+00100000010000000100100100010001
+01111001001111111000000000100101
+01000100100000100100000000000000
+00100000010000000011000001000011
+00100000010000000011110101100000
+00100000010000000011000010011110
+00100000010000000011001100111110
+00100000010000000011001110110011
+00100000010000000011000000101001
+00100000010000000011110001010011
+00100000001000000011000000011001
+00100000010000000011000000101110
+11000110100001001000000000000000
+01111001001111111000000000001001
+00100000010000000011001001100000
+00100000001000000100100101111101
+01111001001111111000000000100101
+01000100100000101100000000000000
+00100000010000000011001010011111
+00100100001000101011000000111000
+00100000010000000011001001000110
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000100100100010101
+11000010100000001011000110001000
+00100000001000000011010000011111
+01111001001111111000000000100101
+01000100100000110100000000000000
+00100000010000000011001001101001
+00011111001000100111110000000000
+00100000011000101000000000000000
+00100000010000000011001001000110
+01101000000000001000000000110000
+11000010100000011011000011101000
+01101000000000001000000000110001
+11000010100000001011000110001000
+00100000001000000011010000011111
+01101000000000001100001001110001
+00100000011110100000000000000000
+11000000000000001011000001010011
+11000000000000010011000001011000
+11000000000000011011000001011011
+11000000000000101011000001100000
+11000000000011011011000001010000
+00100000010000000011001010010111
+00100000011000101000000000000000
+00100000010000000011001010011010
+00100000011000101000000000000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01110000000000111011111100011011
+01110000010000100111000100000000
+00100000011000000000000000000000
+01111001001000000000000000011100
+01111001001111111000000000011110
+01110000000000001000111011111111
+01110000000000001000110000011111
+00100000001000000011000001001110
+01111001001111111000000000011100
+00011000000000000011011000000000
+00100000001000000011000001001110
+00100000010000000011001010011010
+00100000011000101000000000000000
+00011000000000000000010000000001
+01110000000000010110110100000101
+00100000001000000011000001101000
+01111001001111111000000000100101
+01000100100000111100000000000000
+01101000000000110100001001110011
+00100000001110100011000001001110
+01110000010001110000101000000001
+01110000000000000101010100000011
+00100000001000000011000001100111
+00011000000000000000010000100101
+01111001001111111000000000100101
+01000100100001000100000000000001
+01101000000000001000000011110000
+00100000001110100011000001101111
+00011111111010011111111000000000
+00011111111100100111111000000000
+00011111111000001111111111111111
+01100000000000001100000101000110
+01100000000000001000000011101111
+01110000000000001000110100011111
+01111001001111111000000000001100
+00100000010000000011001001111010
+00100100001000101011000010010001
+00100000010000000011101100010001
+01100000000000001000000001110111
+01100000000010001000000001111100
+01101000000000110100001001110011
+01100000000000110000000001000000
+01111001001111111000000000100101
+01000100100001001100000000000001
+00100000010000000111111011100010
+00011000000000000111111000000000
+00101000010000011111111000000001
+01111101001000001111111000000101
+01111001001000000111111000000011
+01100000000000001000000000110000
+01110000000010011011110100000011
+00100000010000000111110110000110
+00011000000000000111111000000000
+01111001001000001111111000000100
+01100000000000001000000001001100
+01011000000000000000000000000000
+01111001001000000111111000000001
+01100000000000001000000000110001
+01111000001101001111110000000000
+00100000010000000011001001100000
+01111000010101001111110000000000
+00011000000000000000111000000100
+01101000000000010100000101011001
+00100000010000000111111011010100
+00100000001000000011000001001110
+01111001001111111000000000100101
+01000100100001010100000000000001
+01101000000000110100001001110011
+01100000000000110000000001000000
+00101000010000011111111000000001
+00100000001000001011000010011000
+00100000001000000011000001001110
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000010000000111111010010001
+01110000000010011011110100000100
+00100000010000000111110110000110
+00100000001000000011000001001110
+11000110100011100000000000000000
+00011000000000000000111000000010
+00100000010000000111111011100010
+01111101001110100000000000011100
+00100100001110100011000010100100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001011100000000000001
+01101000000010010100000101011011
+00011000000000000000111000000100
+00100000010000000011011110011111
+00100000011101000000000000000000
+00100000010000000011100100110111
+00011000000000000100100000000000
+00100000011000011000000000000000
+01111001001111111000000000001011
+01111001001111111000000000000000
+00011100010000001100001000000001
+00101000000011111111111000011110
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000011010000
+01111001001111111000000000100101
+01000100100001100100000000000001
+01101000000000001000000000010010
+00011111111000001111111000000001
+01100000000000001000000000010010
+00100000010000000011100101101110
+00100000010000000011100101100111
+00100000010000000011100110001011
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011011000110
+00100000010000000011000011000010
+00100000001000000011000010101100
+01111001001111111000000000100101
+01000100100001101100000000000001
+01101000000000001000000010001100
+00011111111000001111111111111111
+01100000000000001000000010001100
+00100000011000010000000000000000
+01110000000000001000110000011111
+01101000000000001000000010001110
+00011111111000001111111111111111
+01100000000000001000000010001110
+00100000011000010000000000000000
+01111001010000000000000000011110
+01110000000000001000111011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001110100000000000001
+00100000010000000011100101101110
+00100000010000000011100101100000
+00100000010000000011100110001011
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000001011000011000011011011
+00100000010000000011000011000010
+00100000001000000011000010101111
+01111001001111111000000000100101
+01000100100001111100000000000001
+00100000010000000011101001010000
+00100000010000000011101100001101
+00100000010000000011010110000100
+01111001001111111000000000000001
+11000110100001011000000000000000
+01111001001111111000000000100101
+01000100100010000100000000000010
+01101000000000001000000000010011
+00011111111000001111111000000001
+01100000000000001000000000010011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100010001100000000000010
+01111000001101001111110000000000
+01111000001110000111110000000000
+01101000000000010100000101010101
+00100000001110100011000011110001
+00011000000000000000111000001101
+00100000010000000111111011100010
+00100100011110100000000000000000
+01111001001111111000000000100101
+01000100100010010100000000000010
+01101000000010010100000101010111
+00011000000000000000111000101000
+00100000010000000011011110011111
+00100000001101000011000100101111
+00011000000000000000111000000100
+00100000010000000111111011100010
+00100100001110100011000100001000
+01101000000000001000000001001100
+11000010100000100011000011111101
+00100000001000000011000100000000
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000010000000111111010010001
+01111001001111111000000000100101
+01000100100010011100000000000010
+01110000000000000011000000000000
+00100000010000000101001100001101
+01110000010001110000101000000000
+01110000000010011011110100010011
+00100000010000000111110110000110
+00100000001000000011000100101111
+01111001001111111000000000100101
+01000100100010100100000000000010
+00011000000000000001011000000000
+00110100011100110000001000000000
+01101000000000001000000011110001
+00011111111000001111111111111111
+10011100010000101111111000000000
+00101111111000000000011000000000
+00100100001000001011000100001000
+00011000100000100111111000000000
+01100000000000001000000110000000
+00011000000000000100110000000000
+00011000000000000100100000000000
+01111001001111111000000000100101
+01000100100010101100000000000010
+00100000001000011011000100101111
+00100000010000000011100101110010
+11011001011000000000011000000000
+00110100011100110000001000000000
+01111001001111111000000000100101
+01000100100010110100000000000010
+01101000000000100000000011110001
+10011000000000000100001000000000
+00011111111000001111111000000001
+01100000000000100000000011110001
+00101000000011111111111000001100
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000101000101
+01101000000000001000000000001100
+00011111111000001111111000000001
+01100000000000001000000000001100
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011011000110
+00100000010000000011000100110110
+00100000001000000011000100010101
+01111001001111111000000000100101
+01000100100010111100000000000010
+01111000010101001111110000000000
+01101000000000010100000101010101
+00100000011110100000000000000000
+00011000000000000000111000001101
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100011000100000000000011
+01101000000000001000000010001101
+00011111111000001111111111111111
+01100000000000001000000010001101
+00100000011000010000000000000000
+01110000000000001000110100011111
+01101000000000001000000011101111
+00011111111000001111111111111111
+01100000000000001000000011101111
+00100000011000010000000000000000
+01111001010000000000000000001100
+01101000000000001100000101000110
+01100000000000001000000011101111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011001100000000000011
+00100000010000000011100101100000
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000001011000011000101001110
+00100000010000000011000100110110
+00100000001000000011000100011011
+00100000010000000011011011000110
+01101000000000001000000000001101
+00011111111000001111111000000001
+01100000000000001000000000001101
+00011000000000000011011000000000
+01101000000000100000000011110001
+01111001001111111000000000100101
+01000100100011010100000000000011
+00100000010000000011101011101100
+00100000010000000011100101110010
+00011100110000001100110000000001
+00011100001000010100001111111101
+00011100100000010100100111111100
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00011100010000100111111000000000
+01100000000000100000000101100000
+00011000000000000000100000000000
+00011000000000000000001000000010
+00100000010000000011101100001101
+00100000010000000011011111101110
+01111001001111111000000000100101
+01000100100011011100000000000011
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011100100000010100100111111100
+00100000010000000011100101100000
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000010011000011011011000110
+00100000001011000011000101110101
+01101000000000001000000000010000
+00100000001110100011000100010101
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000001000000011000101010100
+01111001001111111000000000100101
+01000100100011100100000000000011
+01101000000000001000000000001110
+00011111111000001111111000000001
+01100000000000001000000000001110
+00100000010000000011010010001101
+00100000010000000011001100110111
+00100000001011000011000110000000
+00100000010000000011010010110000
+00100100001110100011000101111011
+00100000001000000011000100010101
+01111001001111111000000000100101
+01000100100011101100000000000011
+01101000000000001000000000110000
+01111001001111111111111000000011
+01100000000000001000000000110000
+00100000010000000011010010011001
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011110100000000000011
+01111000001101001111110000000000
+01111000001110000111110000000000
+00100000010000000011001000011010
+00100000011101000000000000000000
+00100000010000000011110101000010
+00100000010000000011101011101100
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000110100011011100
+00100000010000000011010011100111
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011111101100
+01111001001111111000000000100101
+01000100100011111100000000000011
+00100000010000000101001100011111
+00100000010000000011001100101000
+00100100001101101011000110100100
+00100000010000000011101100101100
+00100000010000000011011110101100
+01101000000000001000000000001111
+00011111111000001111111000000001
+01100000000000001000000000001111
+01111001001111111000000000100101
+01000100100100000100000000000100
+00100000010000000110100011000000
+00100000010000000011000110110000
+00100100011101001000000000000000
+00100000010000000011011101110101
+00100100001110100011000110101101
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000011010011100111
+00100000010000000011001100011101
+00100000001000000011000110011010
+00100000001101101011000110110011
+00100000010000000011101100100010
+00100000001000010011000111000001
+00100000010000000011000111001101
+00100100001101000011000111000001
+01101000000000001000000001001100
+11000100000000100000000000000000
+11000011100000011000000000000000
+01101000000000001000000001001011
+11000011100000011000000000000000
+00100000010000000011000111010110
+00100100011110100000000000000000
+01101000000000001000000101101101
+00011111111000001111111111111111
+01100000000000001000000101101101
+00100100011110100000000000000000
+00100000001000000101011000011101
+01111001001111111000000000100101
+01000100100100001100000000000100
+00100000010000000011010010111000
+01111000010101001111110000000000
+01101000000000001000000001001100
+11000010100000100011000111001000
+00100000011000000000000000000000
+01101000000000001000000001001100
+11000011100000011000000000000000
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000001000000111111010010001
+01111001001111111000000000100101
+01000100100100010100000000000100
+01111000001101000111110000000000
+01101000000000001000000001001011
+11000100000000011000000000000000
+00100000010000000011000111010110
+00100100011110100000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001110010
+00011111111000001111111111111111
+01100000000000001000000001110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100011100000000000100
+01101000000000001000000000110000
+11000010100000111011000111100100
+01101000000000001000100011011001
+00100000001110100011000111100100
+01110000000010001101100100000000
+01110000000010011011110100011000
+00100000010000000111110110000110
+00100000001000000011000111100100
+01111001001111111000000000100101
+01000100100100100100000000000100
+00100000010000000011001010010100
+01101000000000001000000000110000
+01111001001000000111111000000111
+01100000000000001000000000110000
+01110000010000100101110100000001
+01101000000000001000000001010101
+11000000100010110011000111101101
+00100000011000000000000000000000
+01110000000010001101100100000001
+01101000000000001000000000110000
+01111001001111111111111000000111
+01100000000000001000000000110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100101100000000000100
+01111000010101000111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000010000000000110010
+00100100011110100000000000000000
+01101000000000100000000000110100
+00100000001110000011000111111110
+10011101000001100111111000000000
+00100000001000000011000111111111
+10011100010001100111111000000000
+00011111111001100111110000000100
+00100100011000010000000000000000
+01101000000000001000000000110000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100100100110100000000000100
+01100000000000100000000000110100
+01110000010001011111010000000001
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+00011000000000000111111000000000
+01100000000000010000000000110010
+01110000000000000111001100000001
+01110000000000000111010000000000
+01110000000000001000101100000000
+01101000000000100000000000110100
+00011100010000100000010000000000
+10011000010001100111111000000000
+00011111111010110111111000000000
+00011111111000001111111111111000
+01100000000000001000000010001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100111100000000000100
+00100000010000000011000111110011
+00100100011101000000000000000000
+01111000010101000111110000000000
+01110000000000000001000100100000
+01111001001111111000000000001011
+00100000010000000011101011101100
+00100000010000000011001100101011
+11000101000001011011001000101111
+00100000010000000011010010110000
+00100100001110100011001000100001
+01111001001111111000000000100101
+01000100100101000100000000000101
+01111000010101000111110000000000
+00011100010000100111111000000000
+01100000000000100100000101101010
+01111000001110000111110000000000
+01111000001101001111110000000000
+01110000000010011011110100101010
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100100101001100000000000101
+00100000010000000011101011101010
+00100000010000000011001100100000
+01111000010110000111110000000000
+01111000010101001111110000000000
+00100000010000000011100010100111
+00100000010000000011010010001101
+01111001001111111000000000100101
+01000100100101010100000000000101
+00100000010000000011010011011001
+00100000001101101011001000111110
+00100000010000000011010010110000
+00100100001110100011001000110111
+00100000001000000011001000100110
+01101000000000001000000000110001
+01111001001111111111111000000001
+01100000000000001000000000110001
+00100000010000000011101100101100
+00100000010000000011100011010001
+01111000001101000111110000000000
+01110000000010011011110100101011
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100100101011100000000000101
+01111001001000000000000000001001
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111001001010000
+11011000101000000000001101100010
+00011010001000001000110000000001
+11101000110000001000000000000000
+00011010001000100000110000000000
+11000010100000000111111011001101
+11011000101000000000000000110000
+00100000010000000111111011001101
+01111000010101110111110000000000
+01101000000000001000000001110111
+10011000000000000000100000000000
+01110000000000001000101000000001
+00100000001101001011001001011001
+01110000000000001000101000000001
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01101000000000001000000001110100
+01100000000000001000000010001011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101100100000000000101
+01101000000000010000000000011110
+10011000000000000000101000000000
+00011000000000000111001001010000
+11011000110000000000001101100010
+00100000001110110111111011001101
+11011000110000000000000000110000
+00100000001000000111111011001101
+01101000000000001100001010000001
+00011111111000100111001000000000
+01101000000010001000000000010101
+00011000010000001000010000000001
+00101000010000011111111000000011
+00100100001000001011001001110000
+11011000010000000000000000000000
+01100000000010001000000000010101
+00011000010011111111111001010000
+11011010001000000100000001000000
+10011010001000001010001000000000
+11101010001000001000000000000000
+11000010100000001011001001111000
+11000011100000000000000000000000
+11000011100000011000000000000000
+11000010000000000011001001101100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101101100000000000101
+11011010011000000011001010101101
+00100000010000000011001010100010
+00100100011000101000000000000000
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111110000000000
+00100000011000000000000000000000
+00100000010000000011011110101001
+00100000001000001011001010001011
+01101000000000010000000000011110
+00011111111000001000101000010111
+01101000000000001000000001000111
+11100000101000001000000000000000
+11011010011000000011001011101101
+00100000001000000011001010100010
+01101000000000001000000001000111
+00101111111011111111111000000011
+00100000001000001011001010010000
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000011000000000000000000000
+11011010011000000011001011101010
+00100000001000000011001010100010
+01101000000010010000000000011110
+11011010011000000011001100010010
+00100000001000000011001010100010
+01101000000010001100001001110010
+11011010011000000011001010111000
+00100000001000000011001010100010
+01111001001111111000000000100101
+01000100100101110100000000000101
+01101000000010110100001001110011
+11011010011000000011001010110001
+00100000001000000011001010100010
+11011010011000000011001010111110
+00100000001000000011001010100010
+11011010011000000011001100001001
+01111001001111111000000000100101
+01000100100101111100000000000101
+11011010001000000100000001000000
+01101000000000001100001010000001
+00011111111000100111001000000000
+11101010001000001000000000000000
+00011010011000100111101000000000
+00011010001000001010001001010000
+11000010000000000011001010100111
+00011000000000000111110000000001
+00100000011000000000000000000000
+11000010100000000011001010101001
+11000010100000011011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000010100000011011001010110011
+11000011000000000011001010101001
+00011010001000001000110000010000
+11101000110000110000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001010101001
+11000011000000000011001010101001
+00011010001000001000110000010110
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001010101001
+11000011000000001011001010101001
+00100000010000000011001011110110
+00100000010000000011001011011010
+10011000010001100111111000000000
+00011111111000001111111000000001
+00100000001000010011001011010100
+00011000110000100010010000000000
+01100000000001001000100111000110
+01101000000000001100010101100101
+00100100001110100011001011001100
+01101000000001001000100111000110
+00011010010000100000110000000000
+00011111111000001111111000000101
+00100000001000000011001011001111
+01101000000001001000100111000110
+00011010010000100000110000000000
+00011111111000001111111000010100
+00100100001000010011001010101001
+00011000010000100100001000000000
+00100000010000000011001100000010
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000000000000010010000000000
+00011010001000001000110000000010
+11101000110000010000000000000000
+00100000001110100011001011010000
+00100000010000000011001100000010
+00100000001000000011001010111111
+00011111111100010001011000000000
+00011001011011001001011000000000
+00100000001000101011001011100100
+00101001011000000001111000001111
+00100100011000001000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00100100011000101000000000000000
+01111001001000000000010000011100
+00100000011000000000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00101001011000000001111000001111
+00100100011000001000000000000000
+01111001001000000111111000011100
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001010101001
+00011010001000001000110000010111
+11101000110000001000000000000000
+11000011000000011011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+00011010001000001000110000000001
+11101000110010001000000000000000
+00011100010000100111111000000000
+00101000010011111111111000000001
+00011010001000001000110000000100
+11101000110010100000000000000000
+00100000011000001000000000000000
+00011010001000001000110000001000
+11101000110000110000000000000000
+00100000010000000011100011100101
+00011101000000100111111000000000
+00100000011000000000000000000000
+00011010001000001000110000000010
+00011010001000001000101000000100
+11101000110000010000000000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+11100000101000100000000000000000
+00100000001000000100100111011100
+11000011000000001011001010101001
+00100000010000000011001011110110
+10011011011000001111111000000000
+10011011011000001111111000000000
+10011000111000001111111000000000
+10011000010001100111110000000000
+00100100001000010011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100000001111110011001010101001
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001010101001
+11101010001000001000000000000000
+01111001001111111111111000000111
+11100010001000001000000000000000
+00100000001000000011001010101001
+01111001001111111000000000100101
+01000100100110000100000000000110
+00100000010000000011101011101100
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000001000000011011111101100
+01111001001111111000000000100101
+01000100100110001100000000000110
+00100000010000000011101011101010
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000011100101100000
+00100000010000000011010010000001
+00100000010000000011101010000110
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100100011011000000000000000000
+00100000010000000011101001010000
+00100000001000000011010110000010
+01111001001111111000000000100101
+01000100100110010100000000000110
+01101000000000001000000110000000
+10011000000000000000100000000000
+00011000000000000000001000000001
+00100000010000000011001100011101
+00100000001000000011001100101000
+01101000000000001100000100110011
+11000100000000000000000000000000
+00011000000000000000111000000101
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000010010100000101001101
+00011000000000000000111000000100
+00100000010000000011011110011111
+00100000011101000000000000000000
+00100000010000000011001101001110
+00011000000000000000111000000101
+01101000000000010100000101001111
+00100100001011000111111011010100
+00011000000010100111111000000000
+10011110101000010111111000000000
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100110011100000000000110
+01110000000000011000000000000000
+01111000010110000111110000000000
+01111000010101110111110000000000
+00100000010000000011100100110111
+00011100010000010100001111111100
+00011000000000000100100000000001
+00100000010000000011100101101110
+00100000010000000011100101100000
+01111001010000000000000000011101
+01101000000000001000000000000110
+00011111111000001111111000000001
+01100000000000001000000000000110
+00100000010000000011100110001011
+00100000010000000011101001111111
+00100000010000000011101010101011
+00100100011011000000000000000000
+01111001001111111000000000100101
+01000100100110100100000000000110
+00011000000000000011011000000000
+00100000010000000011100110010010
+01101000000000001000000000000111
+00011111111000001111111000000001
+01100000000000001000000000000111
+00100000010000000011100101101110
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011100101100111
+00100000010000000011100110001011
+00100000010000000011101011101110
+00100000010000000011101011111111
+00011100010000100111111000000000
+01100000000000100000000101100000
+00100000010000000011101100000101
+00011000000000000000001000000010
+00011000000000000000100000000000
+00100000010000000011101100001101
+00100000010000000011011111101110
+00100000010000000011001101111010
+00011100001000010100001111111101
+00011100110000001100110000000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100110101100000000000110
+01101000000000001100000101110001
+00100000011110100000000000000000
+11011000101000000000000110110001
+01101000000000001100010110101110
+00011111111000100111001000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011000101000100000010000000000
+00011111111000001111111000000001
+01100000000000010100001001111110
+00011000010000100000101000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+11011000110000000100010110101111
+00100000010000000111111011001101
+11011010011000000100011000100101
+11011111001000000000000000000100
+00100000010000000011001110011101
+11011010011000000100011000001111
+11011111001000000000000000000001
+00100000010000000011001110011101
+00011000000000000000001000001010
+01110000010000100111110100000010
+01011000000000000000000110110001
+01100000000000010000000101101110
+00100000010000000011101011101010
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011101100001101
+00100000010000000011011111101110
+00100000011000000000000000000000
+00011000101000100000010000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+11000010000000000011001110100001
+00011111111000100010001000000000
+00011111111000001111111000000010
+00011111111000100000111000000000
+01101000000000010100001001111110
+10011000111000001111111000000000
+01100000000000010100001001111110
+00011000010000100000101000000000
+00011010001000100111111000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010001000100111001000000000
+00100000001000000111111011001101
+01101000000000001100000100110011
+11000100000000001000000000000000
+00011000000000000000111000000110
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000010010100000101010001
+00011000000000000000111000101000
+00100000010000000011011110011111
+00100000011101000000000000000000
+00011000000000000000100000000000
+01110000000000000001000000001000
+01111001001111111000000000001011
+00100000010000000011001111000011
+00011000000000000000111000000110
+01101000000000010100000101010011
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100110110100000000000110
+01111000010110000111110000000000
+00100000010000000011100100110111
+01101000000000001000000000001000
+00011111111000001111111000000001
+01100000000000001000000000001000
+00011000000000000100110000000000
+00100000010000000011100101111001
+00011100010000001100001000000001
+00011000000000000100100000000010
+01111001001111111000000000100101
+01000100100110111100000000000110
+00100000010000000011100101100000
+00100000010000000011101001111111
+00100000010000000011101010101011
+00100100011011000000000000000000
+00100000010000000011100110010010
+01101000000000001000000000001001
+00011111111000001111111000000001
+01100000000000001000000000001001
+00011000000000000011011000000000
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011011011000110
+00011000000000000000100000000000
+11011001011000000000011000000000
+00110101001100110000001000000000
+00011101000000011101000000000011
+00011100001000010100001111111101
+01111001001111111000000000100101
+01000100100111000100000000000111
+00011100110000001100110000000001
+00100000010000000011100101100000
+00100000010000000011101001111111
+00100000010000000011101010011101
+00100100001011000011001111110000
+00100000010000000011101100001101
+00100000010000000011010110000100
+11000101000001011011001111111000
+01111001001111111000000000100101
+01000100100111001100000000000111
+01101000000000001000000000010000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000010000000011101011101100
+00100000001000000011001111100110
+01111001001111111000000000100101
+01000100100111010100000000000111
+01111001001111111101000000000001
+01111001001000000101000000000000
+01101000000000001000000000001010
+00011111111000001111111000000001
+01100000000000001000000000001010
+00100000010000000011101011101010
+00011100001000011100001000000010
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011011011000110
+00101101000000000000011000000011
+00100000001000001011010000001010
+00110111110010111000001000000000
+00100000001000000011010000000110
+01101000000000100000000101100100
+00011111111000011111111000000011
+00011111111000100101000000000000
+01111001001111111000000000100101
+01000100100111011100000000000111
+01101000000000110000000101110111
+01100000000000110000000001000000
+00100000010000000011010010001101
+00100000010000000011010011011001
+00100000001101101011010000010111
+00100000010000000011010010110000
+00100100001110100011010000010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100111100100000000000111
+00100000010000000011010010011001
+00100000010000000011001001111010
+00100100011000101000000000000000
+01110000000000000011000100000000
+00100000010000000011100011010001
+00100000001000000011001001100000
+01111001001111111000000000100101
+01000100100111101100000000000111
+00100000010000000011100011100001
+00100000010000000011010001000111
+00100000011101000000000000000000
+01111001001111111000000000100101
+01000100100111110100000000000111
+00100000010000000011110101000010
+00100000010000000110100011000000
+00100000010000000011010101111001
+00100100001101101011010000110100
+00100000010000000011101100101100
+00100000010000000110100011011100
+00100000010000000011010011100111
+00100000010000000011011111011110
+00100000010000000011011110101100
+00100000010000000101001100011111
+01101000000000001000000000001011
+00011111111000001111111000000001
+01100000000000001000000000001011
+00100000010000000011100011010001
+01111001001111111000000000100101
+01000100100111111100000000000111
+00100000010000000011110010100000
+00100000010000000011101100100010
+00100000001000010011010000111110
+00100000010000000011000111001101
+00100100001101000011010000111110
+00100000010000000011011101110101
+00100100001110100011010000100100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000000100000000001000
+01110000000000010101000000000000
+01110000000000010111111000000000
+00100000010000000011010010111000
+01111001001111111000000000010001
+00100000010000000111111110000000
+01101000000000001000000000110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000001100000000001000
+00100000010000000011000111110011
+00100100011101000000000000000000
+00011000100000100000010000000000
+00100000010000000011101100010001
+01100000000000001000000110000000
+00011000010000100000100000000000
+01110000000000000001000100100000
+01111001001111111000000000100101
+01000100101000010100000000001000
+00100000010000000011101011101100
+00011000000000000000001000000010
+00100000010000000011011111010101
+00011100010000100111111000000000
+01100000000000100000000101100000
+00100000010000000011011111101100
+00100000010000000011101011101010
+01111000001101111111110000000000
+00100000010000000011010101011010
+00100000001011000011010001100011
+00100000010000000011100110010010
+00100000010000000011010010110000
+00100100001110100011010001010000
+11000110100000100000000000000000
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100000011000000000000000000000
+01111000001110000111110000000000
+00100000010000000011010010001101
+00100000010000000011100100110111
+01111001001111111000000000100101
+01000100101000011100000000001000
+00100000010000000011001100110111
+00100000001011000011010001110000
+00100000010000000011010010110000
+00100100001110100011010001100110
+01111000010110000111110000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+01111000001101001111110000000000
+11000101100000100011010001110110
+01111001001111111000000000000100
+01110000000000000111110000000011
+01110000000000000111110100110011
+00100000010000000101100100000011
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000110000000000111000
+01101000000000001000000000110001
+01111001001000000111111000000001
+01100000000000001000000000110001
+00100000010000000011101100101100
+01111000010101001111110000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000100100000000001000
+01111000010101101111110000000000
+01111001001111111000000000000101
+01111001001111111000000000001010
+01111001001111111000000000010000
+01111001001111111000000000001111
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000101100000000001000
+01110000000000000001000100100000
+01110000000000000100011101010000
+01101000000000010100000101011111
+01100000000000010000000000111110
+00011100010000100111111000000000
+01100000000000100100000101101010
+00100000011110000000000000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000110100000000001000
+00100000010000000101001100011011
+00100000010000000011010010110100
+01100000000000001000000001000110
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000001110010000000
+01100000000000010000000001010001
+01101000000000001000000000110000
+01111001001000000111111000000000
+01100000000000001000000000110000
+01110000000000000100101100000000
+01110000000000000100110000000000
+01110000000000001001111100000000
+00100000001000000011101100101100
+01111001001111111000000000100101
+01000100101000111100000000001000
+00011000000000000111111000000000
+01100000000001000100001001100001
+11100000101001000000000000000000
+00100000010000000011000111101111
+00100000001000000011001010010100
+01101000000000001000000000010001
+00011111111000001111111111111111
+01100000000000001000000000010001
+00100000011000000000000000000000
+01101000000000001100000101101111
+00011111111000001111111000000001
+01100000000000001100000101101111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001000100000000001001
+01101000000000001100001001110001
+11000000000000011011010010111110
+01101000000000001000000001001000
+11000000100000001011010011000010
+00100000010000000011111110011101
+00100100001000101011010011000010
+00100000010000000011000111001010
+01110000010000100111000100000000
+01111001001111111000000000100101
+01000100101001001100000000001001
+00100000010000000011111000010010
+00100000010000000011011101101010
+01110000000010011011110100000010
+00100000010000000111110110000110
+00100000010000000101001100001101
+00100000010000000100001011101011
+00100000010000000111010111110100
+01101000000000001000000000110000
+01111001001111111111111000000000
+01100000000000001000000000110000
+01110000010001110000101000000000
+01101000000000001000000001001100
+00101111111000011000000000000000
+00100000001000001011010011010011
+01111001001111111000000000000001
+01101000000000001000000001000111
+11000011000000011011010011010101
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111000000000000010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001010100000000001001
+01101000000000001000000101110011
+00100000011110100000000000000000
+00011111111000100000100000000000
+00100000010000000011010101111001
+00100100011101101000000000000000
+00011000000000000000001000000000
+00100000010000000011011111011110
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000001000000101110011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001011100000000001001
+01101000000000001000000000110000
+11000011000000010011010011110101
+00011000000000000000001000000111
+11000101100000111011010011110100
+00100000010000000011011110101001
+00100100001000001011010011110101
+00100000001101110011010011110101
+00100000010000000011010100100011
+01011000000000000000000000000010
+01100000000000010100000101101000
+00100000011000000000000000000000
+00100100011101110000000000000000
+01111001001111111000000000100101
+01000100101001100100000000001001
+00100000010000000011001010000011
+00100100001000101011010100001000
+01101000000000001000000001000111
+11000011000000011011010100010001
+11000101000000101011010100010101
+01101000000000001000000101111110
+11000010100000110011010100011100
+01101000000000010100000101101000
+00011111111000001111111111111111
+01100000000000010100000101101000
+00100000001110100011010100000101
+01101000000000001100000101100101
+10011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001101100000000001001
+00100000010000000011011100000011
+00100000010000000011011110101001
+00100000001000001011010100010001
+00100000010000000101011000100001
+00100000001101000011010100100000
+01101000000000001000000001001011
+11000010100000110011010100100010
+11000101000000101011010100010101
+01101000000000001000000101111110
+11000010100000110011010100011100
+00011000000000000000001000000001
+00100000011101001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001110100000000001001
+01101000000000001000000000011001
+10011000000000000000001000000000
+11000001100000001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01101000000000001000000101010111
+00011111111000010000001000001111
+01111001001000000000000000000101
+00100000011000000000000000000000
+00011000000000000000001000010011
+00100000001000000011010100100011
+00100000010000000011010100101101
+01111001001111111000000000100101
+01000100101001111100000000001001
+01101000000010001000000001000111
+01111001001000000000010000000011
+01100000000010001000000001000111
+00011000001000100111111000000000
+01100000000000001100000101100101
+01011000000000001111111111111111
+01100000000000010100000101101000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010000100000000001010
+01101000000000001000000001001100
+00101111111011111111111000000101
+01101000000000010100001001111110
+00100000001000001011010101000100
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000011011
+00100000011000010000000000000000
+00011000000000000000001000001010
+00011111111001100111110001111001
+00100000011000010000000000000000
+00011000000000000000001000001011
+00011111111001100111110010110111
+00100000011000010000000000000000
+00011000000000000000001000001110
+00011111111001100111110011100000
+00100000011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000110110
+00100000011000010000000000000000
+00011000000000000000001000001010
+11011000010000000000000101101111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001110
+11011000010000000000001010100111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000011000000001011010101011001
+01101000000000010000000000110010
+00100000001110100011010101011001
+00100100001101110011010101011011
+00100000010000000011101011101100
+00011101000000001100001000000001
+01111000001010000111110000000000
+01101000000000010000000000111110
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101010111101
+00100000010000000011100110000010
+00011000000000000100100000000011
+00100000010000000011100101100000
+00100000010000000011010010000001
+00100000010000000011101010000110
+01111001001111111000000000100101
+01000100101010001100000000001010
+01101000000000010000000000111110
+00011111111000110111111000000000
+00100000010000000011101010111101
+00100000010000000011101001111111
+01111000001001101111110000000000
+01101000000000010000000000111110
+11011000010000000000001110111011
+10011000010000001011011000000000
+00110111110000011000010000000000
+00011011010000100000010000000000
+01100000000010110000000010011001
+01111000010001101111110000000000
+00100100011011000000000000000000
+11011101001000000000001110111011
+00011100001000100101000000000000
+00100000001101011011101111101101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010010100000000001010
+00100000010000000011010101010100
+00100100001011000011100110010010
+00100000010000000011101001010000
+11000101100010001011010110000010
+01101000000000010000000011110101
+00011111111000001111111000000001
+01100000000000010000000011110101
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101010011100000000001010
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001001011111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101011100
+00001001100000000000000000000100
+00001000000000001000000000000111
+00011001100000100111111000000000
+01100000000000001000000000011001
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101011101
+01101000000000001000000000011001
+00011111111001100111110000000011
+00100000001000010011010110011010
+11000000000000111011010110011010
+01101000000000001000000001001100
+00101111111011111111111000000101
+01111001001000001010101000000001
+01111001001111111000000000100101
+01000100101010100100000000001010
+00001001100000000000000000001000
+01111000010001011111110000000000
+01111000010001010111110000000000
+00100000001000110011011010101000
+11000101100010001011010110100100
+01101000000000010000000011110111
+00011111111000001111111000000001
+01100000000000010000000011110111
+01111001001111111000000000100101
+01000100101010101100000000001010
+01101000000000001000000101011100
+00101111111000000000111000000000
+01111001001000001000000000001010
+00100000001000001011010110110101
+10101000100000000000111000000000
+00100000001000001011010110110100
+11000101100000111011011011000110
+01101000000010001000000010101111
+10101000010000000000111000000000
+00100100001000001011011011000110
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+01111000001101101111110000000000
+01111001001111111000000000100101
+01000100101010110100000000001010
+01101000000000001000000000011001
+00011111111000100000001000000000
+11000101000001010011010111000101
+01101000000010001000000101011101
+01101000000000001000000001000111
+01111001001111111111111000000000
+00101000010011111111111000000000
+01111001001000001111111000000000
+00101000010011111111111000000001
+01111001001000001111111000000001
+01100000000000001000000001000111
+00101000010011000000000000000001
+00100000001000001011010111000101
+00100000010000000011011100000011
+01111001001111111000000000100101
+01000100101010111100000000001010
+11011000010000000000000000000000
+00100000010000000011101010110100
+00011000001000010111111000001111
+11000000000000001011010111110100
+11000000000000000011011011000110
+11000000000000010011011011010011
+01101000000010001000000101011101
+01101000000000001000000001000111
+10101000010000000000100000000000
+00100100001000001011010111010100
+11000101100001010011010111010011
+11000011000000111011010111010100
+01111001001000000000000000001111
+01111001001111111000000000100101
+01000100101011000100000000001011
+00011000001000100111111000000000
+11000000000000011011010111110110
+11000000000000100011010111111010
+11000000000000111011010111100100
+11000000000001000011010111111001
+11011000010000000000000000000100
+00100000010000000011101010110100
+11000000000001010011010111110101
+11000000000001011011010111111000
+11011000010000000000000000001000
+00100000010000000011101010110100
+11000000000001110011010111110101
+11000000000001111011010111111000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101011001100000000001011
+01111000001001101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+11011000101000000000000011010000
+00011000000000000111001000011110
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011010111101011
+11000101100000111011011011000110
+00001001100000000000000000010000
+01111101001000110000000000001000
+00100000001000110011011010110101
+00100000001000000011011010010110
+00100000001000000011011011000110
+01111001001000000000000000010000
+01111000001001100111110000000000
+00100000001000000011010111111011
+01111001001000000000000000010000
+01111001001000000010101000000010
+01111000001001101111110000000000
+01111001001111111000000000100101
+01000100101011010100000000001011
+11000101000000001011011011000110
+00101010101011000000000000000001
+00100000001000001011011000001000
+01111000010000111111110000000000
+01111000001001101111110000000000
+01111000010001100111110000000000
+00011100010000001001011000000010
+00110100010100110000010000000000
+00100100001011000011011010110101
+01111001001000000000000000010000
+01111000001000111111110000000000
+01111001001111111000000000100101
+01000100101011011100000000001011
+01111000001001110111110000000000
+01111000001001001111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101111111
+00001001100000000000000000000101
+11000101000010000011011000010100
+00011001100010010111001000000000
+00011111001010010111001000000000
+00100000001000000011011000010111
+00001001100000000000000000000101
+00011001100000110111001000000000
+00001001100000000000000000000011
+01111001001111111000000000100101
+01000100101011100100000000001011
+00011111001000100111111000000000
+01100000000000010000000101011110
+00100000001110100011011001011011
+10011110101001100111110000000000
+00100000001000010011011010110101
+01111001001111111000000000100101
+01000100101011101100000000001011
+01111001001111111000000000000000
+01101000000000001000000101111111
+00011111111000010111111000000011
+11011000101000000000010001110101
+11000000000000011011011000101011
+11000101000010001011011001010111
+01101000000000001000000101111111
+00011111111000010111111000000011
+11000000000000010011011000110000
+11000000000000001011011001000101
+00100000001000000011011010110101
+01101000000000010000000101011110
+00011111111001100111110001110000
+00100100001000010011011010110101
+11000101000001111011011010010110
+00100000001000000011011001010111
+01111001001111111000000000100101
+01000100101011110100000000001011
+11000101000001111011011010010110
+01101000000000010000000101011110
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011010110101
+01101000000000001000001010001100
+11000011000000000011011000111011
+11000011000000001011011001000000
+00100000001000000011011011000110
+01110000000000101000101000000001
+01101000000000010000001010000110
+11000000100000000011011011000110
+11011000101000000001000000000000
+00100000001000000011011001010111
+01110000000000101000101000000010
+01101000000000010000001010001000
+11000000100000000011011011000110
+11011000101000000001010000000000
+00100000001000000011011001010111
+01111001001111111000000000100101
+01000100101011111100000000001011
+11000101000001111011011010010110
+01101000000000010000000101011110
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011010110101
+01101000000000001000001010001010
+11000000000000001011011001010000
+11000000000000010011011001010100
+00100000001000000011011011000110
+11011000101000000001000000000000
+01101000000000010000001010000110
+10011000101000001000101000000000
+00100000001000000011011001010111
+11011000101000000001010000000000
+01101000000000010000001010001000
+10011000101000001000101000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011011001010111
+01111001001111111000000000100101
+01000100101100000100000000001100
+00001001100000000000000000010000
+00100000001000110011011010101111
+01101000000000001100001111110011
+11000000000000001011011011000110
+11000101000010001011011010000010
+11000101000001111011011011000011
+01101000000000001000000101111111
+00101111111000000000011000000011
+00100000001000001011011010000010
+01101000000000010000000101011110
+00100000001110100011011010000010
+01111001001111111000000000100101
+01000100101100001100000000001100
+01101000000000001000001010001010
+11000000000000001011011001101110
+11000000000000010011011001111000
+00100000001000000011101100110001
+01101000000000010000001010000110
+01101000000010010000000101011110
+10011000010000001111111000000000
+01100000000000010000001010000110
+11000000000000000011101100110001
+01101000000010010001000000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011011111001101
+00100000001000000011011010000010
+01101000000000010000001010001000
+01101000000010010000000101011110
+10011000010000001111111000000000
+01100000000000010000001010001000
+11000000000000000011101100110001
+01101000000010010001010000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011011111010001
+00100000001000000011011010000010
+01111001001111111000000000100101
+01000100101100010100000000001100
+01101000000010001000000001001100
+01101000000000001000000101111111
+00101111111000000000011000000011
+01111001001000001000010000000110
+01111101001000001000010000000111
+01100000000010001000000001001100
+00100100001000001011011010001100
+01111001001000000000000000000001
+11000101100010001011011010010110
+00101000010011111111111000000110
+00100000001000001011011010010110
+01101000000000010000000011111001
+00011111111000001111111000000001
+01100000000000010000000011111001
+01111001001000000000000000000101
+01111001001111111000010000000111
+01111001001111111000000000000001
+01100000000010001000000001001100
+01111001001111111000000000100101
+01000100101100011100000000001100
+01101000000010001000000101011101
+01101000000000001000000001000111
+01111001001000000111111000000101
+00101000010011111111111000000010
+01111001001000001111111000000010
+00101000000011111111111000001010
+01111001001000001111111000000111
+01100000000000001000000001000111
+01101000000000010000000101011110
+00100100001110100011011011000110
+01101000000000001000000001001100
+01111001001111111111111000000111
+01100000000000001000000001001100
+01101000000000001000000101111111
+00101111111000000000111000000001
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101100100100000000001100
+01111000010101101111110000000000
+01101000000000010000000000011010
+00011111111000001111111000000001
+01100000000000010000000000011010
+00100000001000000011011011000110
+01101000000000010000000000011100
+00011111111000001111111000000001
+01100000000000010000000000011100
+00100000010000000011011010110110
+11000101100010001011011010110101
+01111001001000000000000000000101
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101100101100000000001100
+01101000000000001000000101111111
+00101111111000000000011000000011
+00100100001000001011011010111111
+01101000000010001000000001001100
+01111001001111111000010000000110
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000111
+01100000000010001000000001001100
+00100000001000000011111011001010
+01101000000000001000000001000111
+01111001001000000111111000000101
+01100000000000001000000001000111
+01111001001111111000000000100101
+01000100101100110100000000001100
+01111000010011101111110000000000
+01111000010011100111110000000000
+01111000010001101111110000000000
+01111000010001100111110000000000
+01111000010001001111110000000000
+01111000010001110111110000000000
+01111000010000111111110000000000
+00100000001100001011100110010010
+00110111110100111000001000000000
+00100000000000000000000001100100
+00100000001000000011100110010010
+01111001001111111000000000100101
+01000100101100111100000000001100
+01111000001001001111110000000000
+01111000001001100111110000000000
+00001001100000000000000001001000
+00101111111011111111111000111010
+01111001001000001000000000000000
+00011100000000100000010000000000
+01010111111000000100000000000000
+01010111111000000011110000000000
+01111000001010101111110000000000
+00111000000010111111111111111111
+00111000000011001111111111111111
+00100000000000000000000000100000
+00101001101010000000000000000000
+00011101100000100111111000000000
+01100000000000011000000101110111
+00011101101000100111111000000000
+01100000000000001000000101111010
+00011000010000100100000000000000
+00100000001000001011011011101001
+00100000001000000011011010110101
+01111001001111111000000000100101
+01000100101101000100000000001101
+00001001100000000000000001001000
+01010111111000000011111000000000
+01010111111000000000100000000000
+01010111111000000101110000000000
+01010111111000000010010000000000
+00011000000000000111111000000000
+00001001100000000000000000010000
+00100000001000110011011010110101
+01011111111111111111111111111100
+10011010010000010111111000000000
+01100000000000100000000101100100
+00011011101000100111111000000000
+01100000000000011000000101110100
+00011011100000100111111000000000
+01100000000000001000000101110010
+00011000100000100111111000000000
+01100000000000001000000101110011
+00011101110000100111111000000000
+01100000000000010000000101111011
+00011100001000100111111000000000
+00001000000000001000001000100000
+00101000001000000001111000000010
+01111001001000001000000000001011
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101101001100000000001101
+01101000000000001000000001000111
+11000100000000011000000000000000
+01111001001111111111111000000011
+01111001010000000111111000000110
+01100000000000001000000001000111
+01101000000000001100000101100101
+11000000000010011011011100011001
+11000001000000111000000000000000
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001000000111111000000111
+01100000000000001000000001001011
+01111001001111111000000000000010
+01101000000000010100001011010110
+00100100011110100000000000000000
+01101000000000001000000001001011
+01111001001111111111111000000111
+01100000000000001000000001001011
+00100000001000000100011111111011
+01111001001111111000000000100101
+01000100101101010100000000001101
+01101000000000001000001111011101
+00011111111000110111111000000000
+11000000000010001011011100110110
+11000000000010010011011100111111
+11000000000011000011011101101010
+11000000001111111011011100100110
+11000001100000011000000000000000
+01101000000000001000001111011110
+11000000000101011011011100101110
+11000000000010001011011100101001
+00100000011000000000000000000000
+01101000000000001000001111011110
+01111001001000000111111000000111
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110001
+00101111111011111111111000000100
+00100000001000001011011100110011
+00100000011000000000000000000000
+01111001001111111111111000000100
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101011100000000001101
+01101000000000001000000001001100
+01111001001000000111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000001
+01101000000000001000000000110000
+00101111111011111111111000000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101100100000000001101
+01101000000000001000000001001100
+01111001001111111111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101101100000000001101
+00011100010000100111111000000000
+01100000000000100100001010110001
+00011100010000001010001000000011
+00100000001101001011011101001101
+00011101000000001010001000000011
+01101000000010010000000000110010
+00011010001000100111111000000000
+01111001001111111111111000011011
+10011000010001101111110000000000
+01101000000000010000000001110101
+00100000010000000111111101010011
+00011000000001110010011000000000
+10011010011001100111111000000000
+00100000001000010011011101010111
+10011000010000001111111000000000
+10011010001000001111111000000000
+01100000000000100000000000110100
+01110000010001011111010000000000
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01011000000000000000000000000000
+01100000000000011100001000001001
+01100000000000011100001000001100
+01100000000000001100000111111001
+01110000000010011011110100001011
+00100000010000000111110110000110
+01101000000000010100000101100001
+01100000000000010000000000111110
+00100100011101001000000000000000
+00011000100000001000111111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101110100000000001101
+01101000000000001000000000110000
+11000100000000001000000000000000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01101000000000010100000101011111
+01100000000000010000000000111110
+01111000010101011111110000000000
+01110000000010011011110100001100
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100101101111100000000001101
+01111000001101110111110000000000
+01101000000000001000000000110000
+11000010100000001011011110000011
+11000110000010001000000000000000
+01101000000000001000000001000111
+11000011100000011000000000000000
+01101000000000001000000001001000
+00100100011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11000011000000010011011110010010
+01101000000000001000000010001010
+11000000000000010011011110001001
+01101000000000001000000001000111
+11000010100000011011011110011011
+11000101100001000011011110011011
+00100100001101001011011110011011
+01101000000000001000000001001000
+00100100001110100011011110011011
+01101000000000001000000011101110
+00011111111000001111111111111111
+01100000000000001000000011101110
+00100100001110100011011110000001
+01110000000000001110111000010000
+00100000001000000011011110011011
+01101000000000001000000010001010
+11000000100000001011011110011011
+01101000000000001000000010001011
+00100000001110100011011110011011
+00011111111000001111111111111111
+01100000000000001000000010001011
+01101000000000001000000001000111
+11000011100000011000000000000000
+00100100011101101000000000000000
+01101000000000001000000010001010
+00011111111000001111111111111111
+01100000000000001000000010001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110000100000000001110
+01111000010010000111110000000000
+00011000010000100011011000000000
+00100000010000000011001010100001
+01111000010101000111110000000000
+00100100011000101000000000000000
+00011000000000000011011000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100000111111000
+10101000100000011111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110001100000000001110
+01111001001111111000000000000001
+01110000000000101001001100000000
+01101000000000001000001010001100
+00100000011110100000000000000000
+00101111111011111111111000000000
+11011000110000000001000000000000
+00100000010000001100001011111010
+01111001001111111000000000100101
+01000100101110010100000000001110
+01101000000000001000001010010011
+11000000000000001011011111000001
+01110000000000101001001100000000
+01101000000000001000001010001100
+11000100000000001000000000000000
+11011000110000000001010000000000
+00100000010000000100001011111010
+01101000000000001000001010010011
+11000000000000001011011111000111
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001111111111111000000000
+01100000000000001000001010001100
+01011000000000000000000000000000
+01100000000000010000001010000110
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001111111111111000000001
+01100000000000001000001010001100
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001000000111111000000000
+01100000000000001000001010001100
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001000000111111000000001
+01100000000000001000001010001100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110011100000000001110
+00011101000000001100001000000001
+00100000010000000011100110000010
+00011000000000000100100000000011
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000001000000011101100000101
+01111001001111111000000000100101
+01000100101110100100000000001110
+00100000010000000011101011101010
+00011101000000100111111000000000
+01101000000010100100000101101010
+10011000010001100111111000000000
+11000001100000001000000000000000
+00101000001000000011111000000000
+00100100001000001011011111101001
+01101000000000001000000000011001
+00100000011110100000000000000000
+00100000010000000011011111010101
+00101000001000000011111000010000
+00100000001000001011011011000110
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101110101100000000001110
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001011011111110000000000
+01111001001111111000000000010000
+00011000100000100111111000000000
+00001000000000001000011000000011
+00011000001000100111111000000000
+00001000000000001000011000000100
+01101000000000001000000001000111
+00001000000000001000000000000100
+00001000000000001000011000000011
+01111000001001000111110000000000
+00001000000000001000011000001000
+01111000010011011111110000000000
+01111000010001000111110000000000
+01111000010001010111110000000000
+01111001001111111010101000000010
+11011000010000000000000000000000
+00100000010000000011101010110100
+01111001001111111000000000100101
+01000100101110110100000000001110
+00011000001000010111111000011111
+11000000000010011011100001000000
+11000000000000000011011011000110
+11000000000000001011011011000110
+11000000000000010011100000100010
+11000000000000011011100001010010
+11000000000000100011100001011000
+11000000000000111011100000010110
+11000000000001000011100001010111
+11011000010000000000000000000100
+00100000010000000011101010110100
+11000000000001010011100001010100
+11000000000001011011100001011010
+11011000010000000000000000001000
+00100000010000000011101010110100
+11000000000001111011100001011010
+00100000001000000011100001010100
+01111001001111111000000000100101
+01000100101110111100000000001110
+01111000001011101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+00011000000000000111001000011110
+11011000110000000000000010110010
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100000011101
+11000101000000111011100010000101
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111000100000000001111
+01101000000000001000000110000000
+00011111111000100000100000000000
+01101000000000001000000010001111
+00011111111000100011100000000000
+01101000000000011100000101001010
+00011111111000100011101000000000
+01101000000000010100000101000100
+00011111111000100101110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+00011100000000100010001000000000
+00100000010000000011100101111001
+01111000001010101111110000000000
+00100000000000000000000000100000
+00011100001000100001011000000000
+01101000000000100000000101100000
+00011111111000100100001000000000
+01010011110000000111111000000000
+01111001001000000111111000111010
+00001000000000001000011001001000
+01010011111000000111111000000000
+00001000000000001000011001001000
+00011001011000100100001000000000
+00011010001000100100000000000000
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111001100000000001111
+01111000001001110111110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+01101000000000001000001111011100
+00011111111000010000010111111000
+11011000110000000000001111011100
+00011000010000001000010000001000
+00011000010000001010011110111000
+00100100001000010011100001001111
+11101000110001001000000000000000
+00001000000000001000011001001000
+00011010011000100000010000000000
+00100000001000000011100001001001
+11101000110001001000000000000000
+00001000010000011000011000000000
+00100000001000000011100010000101
+01111000001011100111110000000000
+00100000001000000011100001011101
+01111000001011100111110000000000
+01111001001000000000000000010000
+00100000001000000011100001011101
+01111001001000000010101000000010
+01111000001011101111110000000000
+00100000001000000011100001011101
+01111001001000000010101000000010
+01111000001011101111110000000000
+01111001001000000000000000010000
+01111001001111111000000000100101
+01000100101111010100000000001111
+01101000000000001000000001001100
+11000011000000101011100001110011
+00011000001001100111110000000011
+00100000001000010011100001110011
+01111000010001110111110000000000
+01111000010011100111110000000000
+01111000001011101111110000000000
+01111000010000111111110000000000
+01111001001000000010101000000001
+00101010101011111111111000000010
+00100000001000001011100001101101
+01011000000010101011111011101110
+00001000000000001000011000010100
+00100000001000000011100001110001
+01011000010111111010111010111010
+00001000000000001000011000011000
+01011000000000000000000000010010
+00001000000000001000011000000110
+01111000001000111111110000000000
+01111001001000000000000000010000
+01111000001001110111110000000000
+01111000001001001111110000000000
+11000101000000101011100010001110
+01101000000000001100001001111101
+00001000000000001000011000000011
+01101000000000010100001001111110
+10011000000000000111001000000000
+11000101000010000011100001111101
+00001000000000001000011000000101
+00100000001000000011100001111110
+00001000000000001000011000001101
+00011111001000100111111000000000
+00100000001110100011100010000101
+01101000000000010000000101101110
+10011000000000000000110000000000
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100010000010
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000010000000011010100100011
+01101000000000001000000001001100
+11000011000000101011011011000110
+00011000000000000111111000000000
+00001000000000001000011000000110
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111011100000000001111
+11000101000010000011100010010111
+01101000000000001000000101111111
+00001000000000001000011000000011
+01101000000000001000000101011110
+10011000000000000010011000000000
+00001000000000001000011000000101
+00100000001000000011100010011100
+01101000000000001000000101111111
+00001000000000001000011000000011
+01101000000000010000000101011110
+10011000000000000010011000000000
+00001000000000001000011000001101
+11011000110000000000010001110101
+00011010011000100111110000000000
+00100000001000101011100010100011
+11101000110000001000000000000000
+00001000000000001000011000001000
+00011010011000001010011111111111
+00100000001000000011100010011101
+01101000000000010000000011111011
+00011111111000001111111000000001
+01100000000000010000000011111011
+00100000001000000011100010000101
+01101000000000100000000101100100
+00011111111000001010001000000111
+01101000000000010000000101110000
+00100100001110100011100010101101
+00011010001000001010001111111101
+00100000001000000011100010110101
+00011111111011111111111000001100
+01101000000110010000000001000000
+00011000010000001000010000000001
+10011000010001100111111000000000
+00100100001000010011100010110100
+00011010001000001010001111111111
+00100000001000000011100010110000
+00011111111001100111111000000000
+00110111110100011000001000000000
+00101100010000000000011000000000
+00100100001000001011100010110101
+10011000000000000101001000000000
+00011010001000100101000000000000
+10011000000000000101001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111100100000000001111
+00110111110100010000001000000000
+00011011010000100111111000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+10011100010001100111001000000000
+00011111001000010111001000000011
+00100100001000101011100011000111
+00011000000000000111111000000000
+00100000001000000011100011001011
+11011000010000000000111010100110
+00011000000000000111111000000000
+10011000010000001111111000000000
+11000010000000000011100011001001
+10011000110000001111111000000000
+00011111111001101111110000001100
+00100000010000000111111101010011
+00011000000001111111111000000000
+01100000000000010000000101110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111101100000000001111
+00011011010000100111111000000000
+00011011001000100000010000000000
+10011000010001100111110000000000
+01111101001000010111111000101100
+10011000010001100000010000000000
+01011000000000000000111010100110
+00101000010011000000000000001111
+00100000001000001011100011011101
+01011111111111110000111010100110
+10011000010000001000010000000000
+01100000000010110000001101101010
+00100000011110110000000000000000
+01100000000010110000000000111000
+00100000011000000000000000000000
+01111000010110000111110000000000
+01101000000000110000001101101010
+00100000001110110011100011100101
+01101000000000110000000000111000
+10011011001000001110000000000000
+00011110000000001110000000001010
+01011000000000000000111010100110
+10011110000001100111111000000000
+00101111111011000000000000001111
+00100000001000001011100011101111
+01011000000000001111000101011010
+10011110000000001110000000000000
+00011110000000100011010000000000
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000001000000011100011101101
+01111001001111111000000000100101
+01000100101111110100000000001111
+00100000010000000011100110110001
+00011100001000100111111000000000
+00011111111000010111111110000000
+00101100100000000000111000000011
+00100100001000001011100011111011
+00011111111010010111111000000000
+10011010111000001111111000000000
+00100000001000000011100011111100
+00011010111000100111111000000000
+00011111111001101111110001001111
+01111000001010101111110000000000
+00100000010000000111111101010011
+00011000000001110010001000000000
+00011010001000001000010111011000
+00100000001000010011100100000100
+00011010001000111000010000000000
+00100000001000000011100100000110
+00011000010000111000010000000000
+00011000010000001000010000000001
+01111001001111111000000000100101
+01000100101111111100000000001111
+01101000000000001000000000110001
+11000011000000011011100100011000
+01101000000000100100000101110010
+10011100001001100111110000000000
+00100000001000010011100100011000
+00100000010000000011100100110111
+01101000000000001100000101111001
+00100000011110100000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000010
+01100000000000001000000000110001
+01101000000000101100000110000111
+01100000000000101100000101111010
+11101000110000101000000000000000
+01100000000000101100000101111111
+00100000010000000011100100111100
+01101000000000001000000000110001
+11000100000000010000000000000000
+00101100001011111111111000000001
+00100000001000001011100100110100
+00011000010010010010001000000000
+00011000010000010000111000000111
+01011000000000000100000101111010
+10011010001000001010001000000000
+11101010001000001000000000000000
+10101111111011000000000000000000
+00100000001000001011100100100101
+00011000010000100111111000000000
+00100000001000000011100100110001
+01101000000000001100000110000100
+10011000000000000010010000000000
+00011100001000100111111000000000
+00011111111000010111111110000000
+00011111111010010111111000000000
+10011010111000001111111000000000
+10011010010001101111110000000000
+01011000000000000100000110010010
+00100000010000000111111101010011
+00011000000001110010001000000000
+10011010001000001000110000000000
+11101000110000001000000000000000
+01100000000000001100000110000101
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001100000110000101
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001000000000110001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000000100000000010000
+11011000101000000100000110010010
+00011000000000000111001000001010
+00100000010000000111111010010001
+11011000101000000100000110010010
+00011000000000000010011000000000
+00011000000000000000111000000010
+01101000000000101100000101111010
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011100101001001
+00011000010000110000010000000000
+00101000010011000000000000000000
+00100000001000001011100101001101
+00011010011000100111111000000000
+11100000101000001000000000000000
+00011000010010110000010000000000
+00011010011000001010011000000010
+00101010011000011111110000101000
+00100100001000001011100101010110
+01101000000000101100000101111111
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011100101010110
+00011000010000110000010000000000
+00011010011001100111110001001110
+00100000001000010011100101001001
+00011000000000000010011000000001
+00011000111000001000111111111111
+00100100001000101011100101000100
+11011010001000000100000110010010
+00011000101000100111111000000000
+10011010001001100111111000000000
+01100000000000001100000110000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000001100000000010000
+00100000010000000011100011110001
+01101000000000001000000101111110
+11000011000000101011100101100110
+01101000000010001000001111110010
+00100000001000000011100110111001
+01111001001111111000000000100101
+01000100110000010100000000010000
+00100000010000000011100011110001
+01101000000000001000000101111110
+11000011000000100011100101101101
+01101000000010001000001111110001
+00100000001000000011100111001001
+00011000000000000101101000000000
+01101000000000011100000101000111
+10011000000000000101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000011100000000010000
+01101000000000001100001001110110
+00011111111000100101101000000000
+01101000000000011100001001110011
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000100100000000010000
+01101000000000010100000101000100
+00011111111000100101110000000000
+01101000000000001100000101000011
+00011111111000100101101000000000
+01101000000000011100000101000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000101100000000010000
+01101000000000010000000001000100
+00011111111000100101110000000000
+01101000000000001000000001000011
+00011111111000100101101000000000
+01101000000000011000000001000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+11000101000100000011100110001110
+11000110100011101000000000000000
+11000110100011111000000000000000
+00011101100000010101100100000000
+01111000001010101111110000000000
+00100000000000000000000000100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000110100000000010000
+00100000001100001011100110100011
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01101000000000001100001010000000
+11000010100000000011100110100001
+11000010100000001011100110101110
+11000010100000010011100110100001
+11000010100000011011100110101110
+11000010100000100011100110101110
+01110000100010010101010111010000
+01110000100010010101011011100000
+00011000000000000010101000000000
+01111000010100001111110000000000
+01111000010100000111110000000000
+01111000001011110111110000000000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000001100000000
+01110000100010010000010001110000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000001000000011100110100011
+01111001001111111000000000100101
+01000100110000111100000000010000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000011000
+01110000100010010000001110100111
+01110000100010010000010001111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001000100000000010001
+01100000000010001000000000010111
+00011000010000001010001000000100
+01110000100010010110110100000111
+00100000001000000011101000010011
+01111001001111111000000000100101
+01000100110001001100000000010001
+01110000100010010000000111001111
+00100000000000000000000000001010
+01110000100010010000000011111111
+01110000100010010000001110101111
+01110000100010010000010011111111
+00100000000000000000000000001010
+01110000100010010000001010100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001010100000000010001
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000010000000011101000010011
+01011000000000000000010100000000
+00100000010000000011101100110101
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111111
+01101000000000001100001010000000
+11000010100000000011100111100001
+11000010100000001011100111100101
+11000010100000010011100111101001
+11000010100000011011100111101101
+11000010100000100011100111110001
+01110000100010010101011011110000
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011011111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011111111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011001110
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011001011
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010100
+00100000011000000000000000000000
+01110000100000000100001000000110
+00100000010000000011101101100100
+01101000000000010100000101100011
+11000011000001110011100111111110
+10011000000000000000110000000000
+11011000010000001000100100000000
+11101000110000001000000000000000
+11000000011111111011101000001000
+10011000010000011000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00100000001000000011101000000010
+01111001001111111000000000100101
+01000100110001011100000000010001
+00100000010000000011110011010010
+00100000010000000011101001011111
+01011000000000000000011111010000
+10011100010000001111111000000000
+01100000000000100000000101101000
+01111001001000000010101000000011
+00011000000000000010101000000000
+00100100010101011011101000101011
+00100000001000000011101000111111
+01111001001111111000000000100101
+01000100110001100100000000010001
+01011000000000000000100101100000
+10011010001000001000010000000000
+01101000000000001100000101011101
+01110000100010010101111100000100
+10011000010011111111111000000000
+01101000000010001100000101011110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111010001000000000
+00011000000001110111111000000000
+00011111111100000111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111011010111111000000000
+00011111111000111111111000000000
+10011010001000011111111000000000
+01100000000100100000100101100000
+01110000100010010101111101000100
+01110000100010010101111111000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001101100000000010001
+01110000100010010000011000000010
+01011000000000111101000010010000
+00100000010000000011101100110101
+01110000100010010000000001111111
+00100000000000000000000010000010
+01110000100010010101001000110000
+01110000100010010000000111010000
+01110000100010010101001001110000
+01110000100010010101001011110000
+00011000000000000111001000110010
+01101000000100001000100110000000
+11000010100000101011101000111010
+11000010000000000011101000110111
+01100000000000001100000101101110
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001110100000000010001
+01101000000000001100000101101110
+01111001001000000111111000000101
+01100000000100001000100101010010
+01101000000110001000100101010000
+00011000010000010000010000000111
+00011111111010011111111000000000
+10011000010000011111111000000000
+01100000000100001000100101010000
+01101000000100001000100101010001
+01111001001111111111111000000000
+01100000000100001000100101010001
+01101000000100001000100101010010
+01111001001111111111111000000101
+01100000000100001000100101010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001111100000000010001
+01101000000100010000100110000001
+00011111111100011111111000000000
+00011111111010010111111000000000
+00011111111001100111111000000000
+00011111111000010111111011111111
+00011111111001101111110000001010
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100100111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01100000000000001000000000011000
+00100000011000000000000000000000
+01110000100000000100001000000110
+01101000000100001000100101101011
+01111001001111111111111000000100
+01111001001111111111111000000101
+01100000000100001000100101101011
+01110000100010010000010100000000
+01110000100010010000010000000000
+01110000100010010000010001110000
+01110000100010010000010111111111
+01101000000100001000100101101011
+01111001001000000111111000000100
+01111001001000000111111000000101
+01100000000100001000100101101011
+00100000010000000011101001111101
+01101000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01111001001111111111111000000111
+01100000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01110000100000000100001000000100
+01101000000100001000100101101011
+00011111111000010111111011001111
+01100000000100001000100101101011
+00011111111000011111111000110000
+01100000000100001000100101101011
+00100000011000000000000000000000
+01011000000000000000111100001111
+00100000001000000011110011101011
+01011000000000000000100000001111
+00100000001000000011110011101011
+01111001001111111000000000100101
+01000100110010000100000000010010
+00100000010000000011100110111111
+01111000010100000111110000000000
+01111000001100001111110000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010001100000000010010
+01101000000000001000000001001100
+00101111111011111111111000000010
+01111001001000001111111000000000
+01100000000100001000000000010001
+11011000110000000000000001100010
+11101000110001001000000000000000
+10011000000000000110010000000000
+11101000110000111000000000000000
+10011000000000000110011000000000
+01101000000000001000000001010100
+00011111111000001110100111111111
+01111000001011010111110000000000
+00100000011000000000000000000000
+00011011010000100111111000000000
+01100000000000110000000010011001
+01111000010001101111110000000000
+00100100001011000011100110010010
+11011101001000000000001110111011
+00011101000000001101000000000001
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111000001001101111110000000000
+00110111110010111000010000000000
+00100000001011000011101010010101
+00101101000000000000010000000010
+00100100001000001011101010011110
+00100000001000000011101010010101
+01111001001111111000000000100101
+01000100110010010100000000010010
+11011001011000000000011000000000
+01111000001001101111110000000000
+00110100011100110000010000000000
+01111000010001101111110000000000
+00100100001011000011100110010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010011100000000010010
+01111000001001101111110000000000
+00110111110000011000010000000000
+01111000010001101111110000000000
+00100100001011000011100110010010
+11011101001000000000001110111011
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010100100000000010010
+10011000000000000010001000000000
+00011100001000100111111000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+01100000000000100100000101101010
+00011010001000100111111000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100110010101100000000010010
+00011000010000100111111000000000
+00100000010000000111111100011101
+00011100001100000111111000000000
+01111001001000000111111000101100
+00100000010000000111111100000110
+01111001001111111111111000101100
+00100000010000000011101100011010
+00100000010000000111111100000110
+00100000011101000000000000000000
+00100000010000000111111100010000
+10011000000000000011011000000000
+00110111110000011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010110100000000010010
+00100000001110000011101011010011
+00110101001100110000001000000000
+00011101000000100000010000000000
+00100000001000000011101011010110
+00100000001101110011101011010101
+00110100011100110000001000000000
+00011100010000100000010000000000
+00100000001101000011101011100011
+00101000010000000000011000000001
+00100100001000001011101011001101
+01111001001111111000000000100101
+01000100110010111100000000010010
+01101000000000001000000000110000
+11000100000000000000000000000000
+01101000000000100100000101101010
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111110011111111
+00100000001000010011101011001101
+00100000011000000000000000000000
+00101000010000000000011000000011
+00100100001000001011101011001101
+00100000001000000011101011011001
+01111001001111111000000000100101
+01000100110011000100000000010011
+11011001011000000000011000000000
+00100000001000000011101011001101
+01111000010101000111110000000000
+00100000001000000011101011100110
+01111000001101000111110000000000
+00100000001000000011101011100110
+01111001001111111000000000100101
+01000100110011001100000000010011
+00100000010000000011101010000110
+01111000010100001111110000000000
+01111000001100000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011010100000000010011
+11011001011000000000111001000011
+00110100011100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011011100000000010011
+11011001011000000000110100000000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011100100000000010011
+11011001011000000000111001000011
+00110101001100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011101100000000010011
+01010001001000000111111000000000
+01111000001011101111110000000000
+01111001001000000010101000000000
+00001000000000001000011001001000
+01111000010011101111110000000000
+00100000011000000000000000000000
+00011100101000100000010000000000
+00011000010000011000010001100000
+00011000010000100001110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011110100000000010011
+01101000000000001100000100110000
+00011111111000001111111000000001
+11000000100000111011101100010111
+00011000000000000111111000000001
+01100000000000001100000100110000
+10011000000000000000100000000000
+00100000011000000000000000000000
+00011011001000100000010000000000
+00100000011101001000000000000000
+00011011010000100000010000000000
+00100000011000000000000000000000
+00011100010000100111111000000000
+00100000011101001000000000000000
+00011101000000100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011111100000000010011
+01101000000010100000000001001101
+00100000010000000011101100011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000000001010001
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100000100000000010100
+00100000010000000011101100011110
+01100000000000100000000001001101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100001100000000010100
+00100000011000000000000000000000
+00100000001000000011101100110100
+00100000011110100000000000000000
+00011111111000110111111000000000
+00011111111000001111111111111101
+00011111111000001111111111111111
+00100100001000101011101100111000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11011111001000000000000000010000
+11011000101000000000000000000000
+00100000010000000111111010010001
+11011000101000000000001101100010
+11011111001000000000000000001010
+00100000010000000111111010010001
+01110000000010001101011000000000
+01110000000010011011110100000000
+01110000000000111011000000000000
+01110000000000010111111000000000
+01110000000000111111011100000000
+01111001001111111000000000100101
+01000100110100010100000000010100
+01110000000000010110110000000000
+01110000000000010101000000000000
+01110000000000010101101100000000
+01011000100111101000101100110011
+01100000000000011100000101000111
+01011000000000000000000101010011
+01100000000000010000000010000011
+01110000000000001000010100011110
+01110000000000001000011000000001
+01110000000000001000100000000111
+01011000000100101110100100000100
+01100000000000011000000010000000
+01110000000000001000111101100000
+01110000010000010111000000000101
+01110000000000000001010000000010
+01101000000000001100011011100010
+00100100010110100111000111101010
+01101000000000001100010101100011
+00100100010110100111001001000001
+01111001001111111000000000100101
+01000100110100011100000000010100
+00100000011101011000000000000000
+01011000000000000000000000000000
+01100000000000010100001001111110
+00011100010000110111111000000000
+01100000000000100100000100110100
+00100000011000000000000000000000
+01110000100010010000100100011111
+01110000100010010001001001000101
+01110000100010010101001100000000
+01110000100010010110111110001000
+01110000100010010111001100110000
+01110000100010010101011011001001
+01110000100010010000011111111111
+01110000100010010000100000000001
+01110000100010010000101011111000
+01110000100010010000101111111111
+01110000100010010001101011111011
+01110000100010010001101111111011
+01110000100010010001110011111011
+01110000100010010001110111110110
+01110000100010010001111011110010
+01110000100010010001111111101110
+01110000100010010010000011101010
+01110000100010010010000111100110
+01110000100010010010001011100010
+01110000100010010010001111011110
+01110000100010010010010011011010
+01110000100010010010010111010110
+01110000100010010010011011010010
+01110000100010010010011111001110
+01110000100010010010100011001010
+01110000100010010010100111000110
+01110000100010010010101011000010
+01110000100010010010101110111101
+01110000100010010010110010111001
+01110000100010010010110110110101
+01110000100010010010111010110001
+01110000100010010010111110101101
+01110000100010010011000010101001
+01110000100010010011000110000000
+01110000100010010011001010000000
+01110000100010010011001110000000
+01110000100010010011010011000000
+01110000100010010011010111000001
+01110000100010010011011011000010
+01110000100010010011011111000011
+01110000100010010011100011000100
+01110000100010010011100111000101
+01110000100010010011101011000110
+01110000100010010011101111000111
+01110000100010010011110000000110
+01110000100010010011110100000111
+01110000100010010011111001000110
+01110000100010010011111110000101
+01110000100010010100000010000110
+01110000100010010100000110000111
+01110000100010010100001011000110
+01110000100010010100001111000111
+01110000100010010100010011010110
+01110000100010010100010111010111
+01110000100010010100011011100110
+01110000100010010100011111110101
+01110000100010010100100000000000
+01110000100010010100100111111000
+01110000100010010100101001111111
+01110000100010010100110011111011
+01110000100010010100110111101111
+01110000100010010100111011101100
+01110000100010010100111101011110
+01110000100010010101011101001100
+01110000100010010101100001101100
+01110000100010010101100101010000
+01110000100010010110100011100100
+01110000100010010110100100000000
+01110000100010010110101000000000
+01110000100010010110101100110000
+00100000011000000000000000000000
+01011000000000001110111000100001
+01100000000100010000000001010000
+01101000000100001000000100111110
+11000011000000011110000100111011
+01111000001101011111110000000000
+11000011000000111011101110110110
+01111000010101011111110000000000
+00011100111000100111111000000000
+00100100001110100011101110110110
+11011000010111111111111111111111
+00100000001000000011110000100100
+01101000000100011000000100111100
+01100000000100011000000001001100
+11101000110000001000000000000000
+00011111111000011111111011101111
+11100000101000001000000000000000
+00100000010000000011110011110110
+01101000000100001000000001001111
+01111001001000000111111000000100
+01100000000100001000000001001111
+00100000010000000011110011110110
+00100000010101011011101111000111
+01101000000100001000000001001110
+01111001001111111111111000000011
+01100000000100001000000001001110
+00100000010000000011110011110110
+00100000011101011000000000000000
+00100000001000000110000100111011
+01101000000000001100001000111000
+01100000000100001000000010000110
+01101000000000011100001000101101
+01100000000100011000000010000000
+01101000000000100100001000100001
+01100000000100100000000001110100
+01101000000000100100001000011101
+01100000000100100000000001110000
+01101000000001000100001000100101
+01100000000101000000000001111000
+01101000000001000100001000110000
+10011000000000000000000000000000
+01101000000101000000000101000000
+01100000000001000000000010100000
+00100000010000000110000110011111
+00100000011000000000000000000000
+00011000000000100111111000000000
+01100000000001000100001000110000
+01101000000101000000000001110000
+01100000000001000100001000011101
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000100011000000010000000
+01100000000000011100001000101101
+01101000000100001000000010000110
+01100000000000001100001000111000
+00100000001000000011110011111100
+01101000000100001000000010110100
+00100100001110100011101111101000
+01101000000000011100001000001111
+00100100011110100000000000000000
+01110000100000001011010011000000
+01110000100000000000011010000000
+01101000000100001000000100101101
+11000100000000001000000000000000
+01101000000100011000000101001001
+01100000000000011100001000001111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100100100000000010100
+00011011010000100111111000000000
+00100000010000000111111100000100
+01101000000010100100000111111111
+00011000010001100111110011111111
+00100000011000010000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+11011000010000000000000011001000
+00100000010000000111111101011110
+01100000000000001000000010011000
+00100100001101000011101111111110
+00011111111001100111111000000000
+01101000000010011100001000001111
+10011000010000001111111000000000
+01100000000000011100001000001111
+01011000000000000000000000000000
+01100000000000100100000111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100101100000000010100
+00100000010000000011110011111100
+01101000000100100000000100111000
+01111001001111111111111000001111
+01100000000100100000000001001100
+00100000010000000011110011110100
+11011000010111111111111111111111
+01101000000000001100000111110111
+01100000000000001100001000011100
+01101000000000001100001000011010
+01111001001000000111111000000111
+01100000000000001100001000011010
+01111001001111111000000000100101
+01000100110100110100000000010100
+00100000010000000011101001111011
+01101000000000100100000111111111
+10011000010000001111111000000000
+01100000000000100100000111111111
+00100000010000000011101111010111
+01101000000000101100001000011000
+01100000000100100000000001001100
+00011111111011110010001000000000
+00110111110110011000001000000000
+00011011001000100111111000000000
+01100000000000110100001000000011
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+00011010001000100111111000000000
+01100000000100001000000001001111
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+01100000000110100000000001001100
+01110000100000000000010100010000
+00110111110111111000001000000000
+01111001001111111000000000100101
+01000100110100111100000000010100
+01011000000000000000000000000000
+00011100111000100111110000000000
+00100000001000101011110000110101
+01101000000100001000000100111100
+01101000000110001000000100111101
+10011000010001100111110000000000
+00100000001000010011110000110011
+00011000010000100111111000000000
+10011100111001100111111000000000
+00011111111000001111111000000001
+00011111111000001111111000001000
+00110111110110011000001000000000
+10011110001000001111111000000000
+01101000000010100100000111111011
+10011000010000001111111000000000
+01101000000010011100001000001111
+10011000010011111111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00011111111000001111111001101110
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01101000000010110100001000000011
+00100000010000000111111011111001
+00011000010000100011001000000000
+01101000000000110100000001001000
+00100000010000000011100011100101
+00011011010000100111111000000000
+01100000000000110000100110111110
+00011100111000100111111000000000
+11100000101000001000000000000000
+01101000000100001000000100011101
+00011111111000011111111011110000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101000100000000010101
+00100000010000000011101111100010
+01101000000000011100001000001111
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+01101000000000001100011011100010
+00100000001110100011110001011110
+01101000000000001100011000111001
+00100000011110100000000000000000
+01101000000000001100010101100101
+00100100011110100000000000000000
+00100000010000000011110100001110
+00100100011110100000000000000000
+01101000000000001100000001000000
+00101111111000000000111000000011
+00100100001000001011110010001010
+01101000000000010100000001000010
+00100000011110100000000000000000
+00100000011101011000000000000000
+01111001001111111000000000100101
+01000100110101001100000000010101
+01101000000010001000000010011111
+01101000000000010100000001000010
+10011000010011111111111000000000
+00011000010100011000010000000000
+00011000010010110000010000000000
+10011000010001100111111000000000
+01101000000010100100000001000100
+10011000010000001111111000000000
+01101000000010001100000111110110
+10011000010001100111111000000000
+00011111111100000110000000000000
+01111001001111111000000000100101
+01000100110101010100000000010101
+01101000000000010100000001001110
+00011111111000110111111000000000
+00100000010000000111111100011101
+00011110000000100111111000000000
+00100000010000000111111100000110
+00011011010000100000010000000000
+00100000010000000111111100000100
+00100000011101000000000000000000
+00100000010000000111111100010110
+01111001001111111000000000100101
+01000100110101011100000000010101
+01101000000000001100001000011000
+10011000010001100111110000000000
+00100000001000010011110000000001
+01100000000010100100000111111011
+00100000010000000011110110011111
+00100000010000000100100010100101
+01101000000010100100000111111011
+00100000001000000011110000010001
+01111001001111111000000000100101
+01000100110101100100000000010101
+01101000000000001100000001000000
+11000011100000000000000000000000
+11000011100000011000000000000000
+01101000000000001100011011100010
+00100000001110100011110010010011
+01101000000000001100011000111001
+00100000011110100000000000000000
+01111001001111111000000000100101
+01000100110101101100000000010101
+01101000000000001100001111111111
+00100100001110100011110010011001
+01101000000000001100000100110011
+00100000011110100000000000000000
+01101000000000010100000111110100
+00100000011110100000000000000000
+01101000000010001100000111110110
+10011000010001100111111000000000
+11011000010000000001110101001100
+10011000010011111111111000000000
+00100000001000000011110001111111
+01111001001111111000000000100101
+01000100110101110100000000010101
+01111000010101011111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+00100100001101101011110010111100
+00100000010000000011110010110111
+01101000000000010100000101100001
+01100000000000010000000000111110
+01101000000000001000000001000111
+11000010100000011011110011001011
+11000101100001101011110011001011
+00100000010000000100100000010110
+00100100001110100011110011001011
+01101000000000010100001010100100
+00100000010000000111111101101001
+01110000000000001001111100000000
+11000101100001101011110011001011
+01101000000000001100001000010100
+00100000001110100011110011001111
+00011111111000001111111111111111
+01100000000000001100001000010100
+00100000011000000000000000000000
+01110000010000011111100100000000
+01101000000000011100001000001001
+00011111111000001111111000000001
+01100000000000011100001000001001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101111100000000010101
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000000000111110
+10011000010000001111111000000000
+01100000000000010000000000111110
+01110000000000001001111100000000
+01101000000000011100001000001100
+00011111111000001111111000000001
+01100000000000011100001000001100
+01101000000000001100000111111001
+00011111111000001111111000000001
+01100000000000001100000111111001
+00100000011000000000000000000000
+01110000000000001001111100000000
+01101000000000001100001000010011
+01100000000000001100001000010100
+00100000011000000000000000000000
+01101000000010001100001000010010
+01100000000010001000000010011111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110000100000000010110
+01101000000000001100001000011000
+00100100011110100000000000000000
+01110000100000000100001000000110
+01011000000000000000111100001100
+00100000010000000011110011101011
+01011000000000110000110101000000
+00100000010000000011101100110101
+00110111110110011000001000000000
+00011110001000100110000000000000
+00100000010000000011101001111011
+01110000100000000100001000000100
+00100000000000000000000000001010
+00110111110110011000001000000000
+00011110001000100111111000000000
+10011110000001100111111000000000
+00011111111000001111111000110000
+11011000010000000000000011111111
+00100000010000000111111101011110
+01100000000000001100001000011000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000011000000000000000000000
+11011000101000000000111111111111
+10011000101000010000101000000000
+01101000000000001100001000010101
+00011111111000010111111011110000
+00011111111011010111111000000000
+10011000101000011111111000000000
+01100000000100010000000001001100
+11101000110000010000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+00100000001000000011110011110111
+01011000000000000000000000000010
+00110111110110011000001000000000
+01100000000100001000000000000101
+00110111110110011000001000000000
+00110111110110011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110001100000000010110
+01101000000000100000000010100000
+01100000000100100000000001001100
+01011000000000000000000000000100
+00100000010000000011110011110111
+01101000000000100000000010100100
+01100000000100100000000001001100
+01011000000000000000000000001000
+00100000001000000011110011110111
+01101000000000010100000111110010
+11111001001000000111111000000000
+01100000000000010100000111110010
+00100000011000000000000000000000
+01101000000000010100000111110010
+11111001001111111111111000000000
+01100000000000010100000111110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110010100000000010110
+00100000010000000011110110011101
+01101000000000010100000111110010
+00011111111000100010001000000000
+01101000000000001000000001001100
+00101111111011111111111000000110
+01111001001000001010001000001011
+01101000000000001000000001111000
+01101000000010001000000001111100
+10011000010000001111111000000000
+01101000000010001000000001001000
+10011000010000001111111000000000
+01111101001110100010001000001010
+01111001001111111000000000100101
+01000100110110011100000000010110
+01101000000000010000001010000110
+01101000000010010000001010001000
+10011000010000001111111000000000
+01111101001110100010001000001101
+01101000000000101100011011110000
+01111101001110100010001000001111
+01101000000000101100011011111000
+01111101001110100010001000001110
+01101000000000001100001001110001
+01111101001110100010001000001000
+01101000000000001100000100110010
+00101111111000011111111000001010
+00100000010000001011110100101100
+00100000001000000011110100110001
+01101000000100010000000100010010
+01111101001110100010001000000110
+01101000000100010000000100001110
+01111101001110100010001000000101
+00100000011000000000000000000000
+01011111111111111111111111111000
+10011010001000010010001000000000
+00011010001000100111111000000000
+01100000000000010100000111110010
+00100000011110100000000000000000
+00100000011101101000000000000000
+01111000001101011111110000000000
+00100000011000000000000000000000
+01101000000100100000000100111000
+01111001001111111111111000011011
+01100000000100100000000001001100
+00100000010000000011110011110100
+00100000001000000011101100110001
+01101000000100100000000100111100
+01111001001111111111111000010100
+01100000000100100000000001001100
+00100000001000000011110011110110
+01101000000000010100000111110000
+11000010100000000011101100110001
+00100000011000000000000000000000
+01101000000000010100000111110000
+11000010100000001011101100110001
+00100000011000000000000000000000
+01101000000000010100000111110000
+11000010100000010011101100110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110100100000000010110
+01101000000000001100000100110010
+00100000001110100011110101001011
+11000000000000011100000000001100
+11000000000001001111001010010011
+11000000000001010101100111011101
+11000010100000110101110111001010
+11000010100000111100000000001100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110101100000000010110
+01110000000000010101000000000000
+01110000000000010111111000000000
+01110000000000010111111100000000
+01011000000000000000000000000000
+01100000000000101000100011010010
+01101000000000001100000100110010
+00100000001110100011110101010101
+11000000000001010101101000010010
+00100000011000000000000000000000
+00100000010000000111110011110100
+00100000010000000111110110011110
+00100000010000000011110101101001
+01101000000000010100001010010100
+00100000001000000111111101101001
+01101000000000010100001010010010
+00100000001000000111111101101001
+01101000000000010100001010010000
+00100000001000000111111101101001
+01111001001111111000000000100101
+01000100110110110100000000010110
+11011010001000000100011011110000
+00100000010000000111111110010101
+00100000011110100000000000000000
+00011111111000100010011000000000
+00100000010000000011110101110011
+00100000001000000011110110011011
+11011010011000000000000000000000
+00100000011000000000000000000000
+11000000000000001011110110001000
+11000000000010000011110111001111
+11000000000000101011110110101100
+11000000000010010011110110110011
+11000000000000110011110111001011
+11000000000000100011110111110110
+11000000000000010011110111111011
+11000000000010011011110111110110
+11000000000010100011110111000010
+11000000000010101011110111000110
+11000000000000011011110110100101
+11000000000001011011110110110111
+11000000000001100011110110111110
+11000000000010110011110111010011
+11000000000011000011110110100001
+11000000000101010011110110010001
+11000000000101011011110110001111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000011110111010111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000000
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001111111111111000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01110000000000100100110100000000
+00100000011000000000000000000000
+01101000000000001000001001001101
+00011111111000001111111000000001
+01100000000000001000001001001101
+00011111111001100111110000000001
+00100000001000010011111001000111
+01110000000000100100110100000000
+01101000000000010100001010101111
+01111001001000000111111000001001
+01100000000000010100001010101111
+00100000001000000011111001010010
+01101000000000010100001010010110
+00100000001000000111111101101001
+01101000000000010100001010001010
+00100000001000000111111101101001
+01101000000000010100001010001110
+00100000001000000111111101101001
+01101000000000010100001010101111
+01111001001000000111111000000001
+01100000000000010100001010101111
+00100000001000000011111001111101
+01101000000000010100011100001011
+01111001001000000111111000000111
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000010
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000001
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000100
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000101
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000011
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000000101
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000001001
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001001
+01100000000000010100011100001011
+01110000010001011001010100000000
+00100000001000000011111010000001
+01101000000000010100011100001011
+01111001001000000111111000000010
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000001000
+01100000000000010100001010101111
+00100000001000000011111001010010
+01111001001111111000000000100101
+01000100110110111100000000010110
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000111110100000010
+00100000010000000011111000111011
+00100000010000000011110111100101
+00100000010000000011110111101101
+01101000000000010100001010100000
+00100000010000000111111101101001
+00100000001000000011110111011010
+01101000000000001100001010101010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010101010
+00100100011110100000000000000000
+00100000010000000011001010010010
+00100000001000101011111001111001
+00100000011000000000000000000000
+01101000000000010100011100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100000111
+00100100011110100000000000000000
+00100000010000000011111001011001
+00100000010000000011111001110011
+01101000000000010100001010011000
+00100000001000000111111101101001
+00100000010000000011111000001111
+01101000000000010100011100001011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000011000000000000000000000
+01110000010000101010101000000000
+01101000000000010100011100001011
+11000010100000111011111000000000
+00101111111011000000000000000001
+00100000010000001011110101110001
+01111001001111111000000000100101
+01000100110111000100000000010111
+01101000000000010100011100001011
+01111001001111111111111000000000
+01111001001111111111111000000001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000001000000011111010000001
+00100000010000000011111000001100
+00100000001000000011111001110101
+01011000000000000000000000000000
+01100000000000010100001010101101
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01100000000000010100001010101101
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000000111
+01100000000000010100001010101101
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000001100011100001011
+00101111111011111111111000000101
+00100000011000000000000000000000
+01011000000000001010101001010101
+01100000000000010000100111001110
+01111001001111111000000000100101
+01000100110111001100000000010111
+11011000010000000000000000000010
+11011010001000000000100111001110
+11011010010000000000000011000011
+00100000001000000110001001101111
+01111001001111111000000000100101
+01000100110111010100000000010111
+11011000010000000000000000000010
+11011010001000000000100110111110
+11011010010000000000000011000011
+00100000010000000110001001000101
+01101000000000010000100110111110
+11011000010000001010101001010101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100010111110011
+01100000000000001100001010101010
+00100000011000000000000000000000
+11011000111000000000000000001001
+00100000001000000011110100000110
+11011000111000000000000000001001
+00100000001000000011110100001010
+01110000010000101010101100000101
+00100000001000000011111000110101
+01101000000000001100001010101011
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010101011
+00100100011110100000000000000000
+00100000001000000011111000110111
+01110000010000111111001100000001
+00100000011000000000000000000000
+01110000010000111111001100000000
+00100000011000000000000000000000
+01110000000010011011110100001010
+00100000001000000111110110010000
+01110000000010011011110100011101
+00100000001000000111110110010000
+01111001001111111000000000100101
+01000100110111011100000000010111
+01101000000000001100001010101100
+01100000000000001000000101101100
+01110000000000100100110000000001
+01110000000010011011110100000011
+00100000001000000111110110010000
+01110000000010011011110100011110
+00100000001000000111110110010000
+01110000000010011011110100000100
+00100000001000000111110110010000
+01101000000000010100011100010110
+01100000000000010100011100000111
+00100000010000000011111001101111
+01110000000010011011110100000001
+00100000001000000111110110010000
+01011000000000000000000000000000
+01100000000000010100011100000111
+01110000000010011011110100000010
+00100000001000000111110110010000
+01110000000010011011110100001111
+00100000001000000111110110010000
+01110000000010011011110100010000
+00100000001000000111110110010000
+01110000000010011011110100001110
+00100000001000000111110110010000
+01110000000010011011110100001101
+00100000001000000111110110010000
+01110000000010011011110100010111
+00100000001000000111110110010000
+01110000000010011011110100011000
+00100000001000000111110110010000
+01110000000010011011110100010110
+00100000001000000111110110010000
+01110000000010011011110100010001
+00100000001000000111110110010000
+01110000000010011011110100011100
+00100000001000000111110110010000
+01110000000010011011110100010101
+00100000001000000111110110010000
+01110000000010011011110100010100
+00100000001000000111110110010000
+01110000000010011011110100010011
+00100000001000000111110110010000
+01110000000010011011110100011001
+00100000001000000111110110010000
+01110000000010011011110100000110
+00100000001000000111110110010000
+01110000000010011011110100000101
+00100000001000000111110110010000
+01110000000010011011110100011111
+00100000001000000111110110010000
+01110000000010011011110100100000
+00100000001000000111110110010000
+01111001001000000000000000001101
+00100000011000000000000000000000
+01111001001111111000000000001101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111100100000000010111
+01101000000000001100001001110001
+00100100011110100000000000000000
+00100000010000000011111010001010
+00100100010101000011111010100011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111101100000000010111
+00011000011000100010001000000000
+11011000010000000000000000000100
+11101000011000001000000000000000
+11000000000000001011111010010101
+00011000010000001000010000000001
+11000000000000010011111010010101
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010011111010010101
+01111000010101000111110000000000
+00011010001000100000011000000000
+00100000010000000011111010101100
+10011000010000001000010000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010011111010011100
+00011010001000100000011000000000
+11101000011000001000000000000000
+11000000000000001011111100000110
+00100000001000000011101100110001
+01111001001111111000000000100101
+01000100110111110100000000010111
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000010000000011111010101100
+10011000011000001000011000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011000011000001000011000000010
+11000000000000010011111010110001
+11101000011000001000000000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+00100000011000000000000000000000
+01101000000100010000000001011110
+00011001010000001001010111111011
+10011001010000001001010000000000
+00100000011000000000000000000000
+11011000010000000000000000000100
+00100000001000000011111010111010
+11011000010000000000000000000010
+01111001001111111000000000100101
+01000100110111111100000000010111
+00011111001000001111001000000001
+01101000000100010000000001011110
+00011111111000100001010000000000
+00011111001000100111111000000000
+11100001010010001000000000000000
+00011111111000001111111111111111
+10011001010000001001010000000000
+00011001010000100111111000000000
+01100000000000010000001001111010
+00011000010000100111111000000000
+11000001000000010000000000000000
+01101000000000010000001001111010
+01100000000100010000000001011110
+00100000001000000011111011001010
+01011000000000000000000000000000
+01100000000000010000001001111010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000000100000000011000
+00100000011101011000000000000000
+01011000000000000011111110111111
+01100000000000010100001010010100
+01011000000000000000000110100000
+01100000000000010100001011010011
+01111001001111111000000000100101
+01000100111000001100000000011000
+01011000000000000001100000000000
+01100000000100010000000001010100
+01011000000000000001101111111111
+01100000000100010000000001010110
+01011000000000000001110000000000
+01100000000100010000000001011010
+00100000010000000011111011101101
+01110000100000000110001000000000
+01011000000000000001110000000000
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000001100000000000
+01100000000100010000000001011000
+01100000000000010000001001100110
+01111001001111111000000000100101
+01000100111000010100000000011000
+01101000000100010000000001010000
+01111001001111111111111000001111
+01100000000100010000000001010000
+00100000010000000110001100100101
+01110000100000000100001100000001
+01110000100000000110001010000001
+00100000011000000000000000000000
+01011000000000000001111111111111
+01100000000100010000000001011100
+01101000000100001000000010000001
+00011111111000011111111000000111
+01100000000100001000000010000001
+01110000000000100111110011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000011100000000011000
+01101000000100001000000100001100
+10011000000000000010010000000000
+11000011000000011011111011111110
+01101000000100010000000100010010
+10011000000000000010011000000000
+11011000010000000000010001001111
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000001000000011111010000011
+01101000000110001000000100001100
+00101000010011111111111000000110
+00100000001000001011111100000001
+01100000000100001000000000010101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000100100000000011000
+01101000000000001100001001110001
+00100000001110100011111100001100
+01111000001101000111110000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+10011000000000000110000000000000
+10011000000000000000111000000000
+11101000011000001000000000000000
+10011000000000000000010000000000
+00011110000010110111111000000000
+00011111111011001111111000000000
+11000000000111111011111100010101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000101100000000011000
+00011000111000100111111000000000
+11000000000000000011111101110000
+11000000000000001011111100101101
+11000000000000010011111100110010
+11000000000000011011111100110110
+11000000000000100011111101001001
+11000000000000101011111101110000
+11000000000000110011111101011010
+11000000000000111011111100100011
+11000000000010000011111101011101
+11000000000010001011111101100101
+00100000001000000011111101110000
+00100000010000000011111101110000
+00100000010000000111111101101011
+00100000010000000110010101100001
+00100000010000000011111000110111
+00100000010000000011111001000001
+00100000001000000110010101100100
+01110000010000101101010100000000
+00100000010000000011111000110101
+00100000010000000011111011010100
+00100000001000000011111001000011
+00100000010000000011111110001001
+01101000000100010000000000000000
+11100001010000010000000000000000
+00011000000000000111001000000110
+00100000001000000011111101110011
+11101000011000010000000000000000
+01100000000000010100001011010011
+01100000000100010000000001010010
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011111111000100000010000000000
+01100000000100001000000000100100
+11101000011000001000000000000000
+10011000010000001000010000000000
+01111001001000000111111000000111
+01100000000100001000000000100011
+11101000011000001000000000000000
+10011000010000001000010000000000
+00011111111000100111001000000000
+11101000011000001000000000000000
+01100000000100001000000000100101
+10011000010000001000010000000000
+11000010000000000011111101000000
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101011111101011000
+00100000001000000011111101110000
+11011111001000000000000000100000
+11011000101000000100000000000000
+11011000010000000000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+10011000010000001000010000000000
+11000010000000000011111101001100
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101011111101011000
+01110000100000000010001100000000
+00100000010000000011111101110000
+00100000010000000011111010100011
+00100000001000000011000000000001
+01110000100000000010001100000000
+00100000001000000011000000000000
+11101000011000110000000000000000
+01100000000000110100000101000000
+00100000001000000011111101110000
+11101000011000001000000000000000
+01100000000000001000001010000011
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001010000100
+00011111111000100000101000000000
+00100000010000000110001101010100
+00100000001000000011111101110000
+11101000011000001000000000000000
+01100000000000001000001010000011
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001010000100
+11011000101000000001000000000000
+00100000010000000110001101010100
+01101000000010001000001010000011
+11011010001000000001000000000000
+01101000000000010000001010000100
+00100000001000000110001001110001
+01111001001111111000000000100101
+01000100111000110100000000011000
+00011000000000000111001000000100
+00100000010000000011111110001011
+00011000000000000111111000000001
+11100001010000001000000000000000
+00011110000000100111111000000000
+11100001010000011000000000000000
+00011000000000000000111000001110
+01111001001111111000000000100101
+01000100111000111100000000011000
+00100000010000000011111110001101
+00011000111000100111111000000000
+11100001010000001000000000000000
+00011111001000100111111000000000
+11100001010000001000000000000000
+00011000000000000000111000000101
+00011111001000001111001000000010
+00100000001000000011111010110111
+00011000000000000000111011111111
+00100000010000000011111110001011
+01011000000000000000000000000001
+11100001010000001000000000000000
+00011000000000000111001000000001
+00100000001000000011111101111001
+00011000000000000001010000001100
+00100000001000000011111110001110
+00011000000000000001010000001000
+00100000001000000011111110001110
+00011000000000000001010000000110
+00100000001000000011111010110011
+01111000001001111111110000000000
+01111000001001001111110000000000
+11101001010000001000000000000000
+00001000000000001000000000001000
+11000010000000000011111110010001
+01111000001001000111110000000000
+00001000000000001000000000010000
+01111000010001000111110000000000
+01111000010001001111110000000000
+01111000010001111111110000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01101000000000110100001001110011
+01101000000010110000000001000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001000000001001011
+11000010100000010011111110100110
+00100000010000000101100011111010
+01110000000000000111110000001000
+00100000001000000011111110011011
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101011000011000
+01011000000000000000000000000000
+01111001001101001111111000000001
+01100000000000001000000001111111
+00100000001000000011111110011011
+00100000011000000000000000000000
+01110000000000000111110000010111
+11011000101000000000001111111111
+01011000000000000000000000000000
+00101101000011111111111000011011
+01111001001000001111111000000001
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01101000000000010100001010000100
+11100000101000010000000000000000
+01101000000000001100001010000110
+11100000101000010000000000000000
+01101000000000001100001010001000
+11100000101000010000000000000000
+00100000001000000011111110011011
+01110000000000000111110000011000
+00100000001000000011111110011011
+00100000010000000110010101101110
+00100000011000001000000000000000
+11011000010000000000000000000111
+00100000010000000110010011110101
+00100100001000001011111111000110
+01110000010000101101010100000001
+00100000011000000000000000000000
+01101000000000001100001011010101
+11000001100000001000000000000000
+00100000010000000011111100101001
+00100000001000000011111110000011
+01111001001111111000000000100101
+01000100111001000100000000011001
+01101000000000010000001010001101
+00011111111000100000110000000000
+11101000110000001000000000000000
+00011111111000010000010000001111
+00011111111100011111111000000000
+11000000000001001011111111101011
+11000000000000111011111111101011
+11000000000001010011111111110111
+11000000000000101011111111100011
+11000000000000001011111111010111
+00100000011000000000000000000000
+00011000010000100111111000000000
+11000000000000101011111111011011
+11000000000000011011111111100010
+00100000011000000000000000000000
+01110000000010011011110100100111
+00100000010000000111110110000110
+01101000000000001100000100110010
+11000001100000110000000000000000
+00011000010000100111111000000000
+11000000000000101110010001010101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000011111111110111
+11011010001000000000000000000001
+00100000010000000100000000000101
+01101000000000010100001011011100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000001
+00100000010000000100000000000101
+01101000000000010100001011011100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01110000000010011011001000000001
+01101000000000001100001011100010
+01111001001000000111111000000110
+01100000000000001100001011100010
+01110000000010011011110100010010
+00100000001000000111110110000110
+11101000110000001000000000000000
+11000000000000001011111111111010
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100000100110010
+11000001100000011000000000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+01100000000000001100101100001111
+01100000000000001100101100100111
+01101000000000001100101100000001
+00100100011110100000000000000000
+01110000010010110010010000000010
+00100000011000000000000000000000
+00100000010000000100011111011100
+00011010001000100000010000000000
+01100000000010001000100110110010
+00011111111000100000101000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000100000110010110
+00100000011101011000000000000000
+00100000010000000100000000110100
+00100000010000000100000001010101
+01011000000000000100000110100001
+01100000000000010100001010010100
+01011000000000000100000010000010
+01100000000000010100001010010010
+01011000000000000100000111100110
+01100000000000010100001010010110
+01011000000000000100001001101000
+01100000000000010100001010001110
+01011000000000000100001001000110
+01100000000000010100001010011000
+01011000000000000100001001001011
+01100000000000010100001010001100
+01110000000010001101010000000000
+01110000000010001101010100000000
+00100000010000000100000000100111
+01101000000000010100011100001011
+11000010100001100011111001010100
+01101000000000001100001010110101
+11000000000110011100000000100100
+00100000001000000100001000111110
+01101000000000110100001001110011
+00100000001110100011111001010100
+00100000001000000011111001001001
+00100000010000000011111000101000
+00100000001000101100000000110010
+01011000000000000000000000000001
+01100000000000001100101011101001
+00100000010000000100001001111101
+01101000000000110100101100000111
+01100000000000110000000001000000
+01100000000000110100001001110011
+00100000010000000110010000110010
+01110000010000101011010100110011
+00100000001000000011111000100000
+00100000010000000100001010000100
+00100000001000000110010001000001
+01111001001111111000000000100101
+01000100111001001100000000011001
+01110000100000000111000000000000
+01110000100000000111100011111111
+01110000100000000111000111111111
+01110000100000000111001011111111
+01101000000100001000000001110011
+00011111111000011111111000000111
+01100000000100001000000001110011
+01110000100000001000000000000000
+01110000100000001000000100000000
+01110000100000000110111100000000
+01011000000000000000000000010011
+00011111111010011111111000000000
+00011111111000001111111000000111
+01100000000100001000000001100100
+01110000100000001000001111111111
+01110000100000001000010011111111
+01101000000100001000000010000101
+00011111111000011111111000000001
+01100000000100001000000010000101
+01101000000100001000000001000011
+01111001001000000111111000000010
+01100000000100001000000001000011
+01110000100000000110001100001100
+01110000100000000110011000110000
+01101000000100001000000001010001
+01111001001111111111111000000001
+01100000000100001000000001010001
+01101000000100001000000001100011
+01111001001000000111111000000000
+01100000000100001000000001100011
+00100000011000000000000000000000
+00100000010000000100000001011000
+00100000010000000100000001011100
+00100000001000000100000001100000
+01101000000000001100011100110111
+11000001011111111000000000000000
+01101000000010001100011100110111
+00100000001000000110010011101000
+01101000000000001100011100111000
+11000001011111111000000000000000
+01101000000010001100011100111000
+00100000001000000110010011101000
+01101000000000001100011100111001
+11000001011111111000000000000000
+01101000000010001100011100111001
+00100000001000000110010011101000
+01101000000000001100101100100100
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101100100100
+00100100011110100000000000000000
+01111001001111111000000000100101
+01000100111001010100000000011001
+01101000000000001100101100100111
+00011111111000100010001000000000
+01101000000010001100011100111000
+00101010001011111111111000000000
+00100000010000000110010100000000
+01101000000010001100011100110111
+00101010001011111111111000000001
+00100000010000000110010100000000
+01101000000010001100011100111001
+00101010001011111111111000000010
+00100000010000000110010100000000
+00100000001000000100000001111101
+01101000000000001100101010100111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101010100111
+00100100011110100000000000000000
+00100000001000000011111001111111
+01101000000000001100101010101000
+01100000000000001100101010100111
+00100000001000000011111010000001
+01110000010010110010011000000001
+00100000001000000100000010110100
+00100000010000000100100000010010
+00100100011110100000000000000000
+01101000000000110100101100000111
+01101000000010110000000001000000
+10011000010001100111110000000000
+00100000001000101100000010010111
+01101000000000001000001111111010
+11000000000000001100000100011001
+01101000000000001100001011100011
+11000001100111111000000000000000
+01101000000011000100101010111010
+01101000000001000100101010101010
+01100000000001000100101010111010
+10011000010001100111110000000000
+00100100010000101100000010101100
+01101000000011000100101011000010
+01101000000001000100101010110010
+01100000000001000100101011000010
+10011000010001100111110000000000
+00100100010000101100000011000111
+00100000011000000000000000000000
+01101000000000001100101011001010
+11000000001111111100000010101010
+01101000000011000100101010111010
+01101000000001000100101010101010
+01100000000001000100101010111010
+10011000010001100111110000000000
+00100000011000101000000000000000
+11011000110000000100101010101010
+11011010001000000100101011011110
+00100000010000000100000010111011
+11011010001000000000000000001010
+00100000010000000100000000000101
+01011000000000000000000001010011
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+01101000000001000100101011011110
+11100000101001000000000000000000
+00100000011000000000000000000000
+01100000000001000100101010101010
+00100000001000000100000010011001
+00100000010000000100100000010010
+00100100011110100000000000000000
+01101000000000001100101010101001
+11000011100000010000000000000000
+00100000010000000100000011100000
+01101000000000001100101010101010
+11000000000111001100000010000000
+01110000010010110010011000000000
+11011000110000000100101010101010
+11011010001000000100101011011110
+00100000010000000100000010111011
+00100000010000000100000011110001
+01101000000001000100101011011110
+11100000101001000000000000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+00011010001000001000101000000010
+11011111001000000000000000001000
+11101000110000001000000000000000
+11000011000000111100000011000011
+00011111111000010000111000000111
+11111001001000000000010000000000
+00100000001000000100000011000100
+11100000101000001000000000000000
+11000010000000000100000010111110
+11100010001010010000000000000000
+00100000011000000000000000000000
+00100000010000000100100000010010
+00100100011110100000000000000000
+00100000010000000100000011100000
+01101000000000001100101010110010
+11000000011111111100000100001101
+11000000011111110100000100001001
+01011000000000000000000000000000
+01100000000001000100101011011110
+00100000010000000100000011010110
+01101000000000001100101010101001
+11000010100000010100000011111111
+00100000010000000100000011111000
+01101000000000100100101011011110
+11100000101000100000000000000000
+00100000011000000000000000000000
+01101000000000001100101010110010
+00100000011110100000000000000000
+01111000001000001111110000000000
+01101000000000001100101010110010
+00011111111000100000111000000000
+01101000000001000100101011011110
+11111001001000001111111000000000
+01100000000001000100101011011110
+01111000010000001111110000000000
+00100000011000000000000000000000
+01101000000000010100101011111010
+01100000000000010100101010100001
+00100000011000000000000000000000
+01101000000000010100101010100001
+00100000011110100000000000000000
+01101000000000010100101010100001
+00011111111000001111111111111111
+01100000000000010100101010100001
+00100100011110100000000000000000
+00100000001000000100000011101010
+01011000000000000000000000000000
+01100000000000010100101010100001
+01101000000000010100011100001011
+11000010100001001011111001101011
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+11011010001000000000000000001010
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000110
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000001010100001
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000100000011110001
+01011000000000000000000000000000
+11100000101001000000000000000000
+00100000010000000100000011111000
+01011000000000000000000000000000
+11100000101000100000000000000000
+01101000000000001100101010101001
+01111001001111111111111000000010
+01100000000000001100101010101001
+00100000011000000000000000000000
+00100000010000000100000011111000
+01011000000000000010000000000010
+11100000101000100000000000000000
+00100000011000000000000000000000
+00100000010000000100000011111000
+01011000000000000000000001000000
+11100000101000100000000000000000
+00100000010000000100000011110001
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000010000
+11100000101000111000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000010
+01100000000000001100101010101001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001011100000000011001
+01101000000000001100101010101001
+11000100000000001000000000000000
+01111001001111111111111000000001
+01100000000000001100101010101001
+01101000000010001100011100011000
+01011000000000000100011100011001
+10011000010000001000101000000000
+01101000000000001100101011001010
+00100000001110100100000100101000
+11000000000101010100000100101010
+11000000100101000100000100110100
+01100000000010001100011100011000
+00100000001000000011111001000101
+01100000000010001100011100011000
+00100000011000000000000000000000
+01101000000000001100011100011000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100011000
+11011000101000000100011100011001
+10011000101000001000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01111000001101100111110000000000
+00100000001000000100000101000011
+00011111111001100111110000011101
+00100000011000010000000000000000
+11011000010000000000000000110000
+00011111111001100111110000100111
+00100100011000010000000000000000
+00100000001000101100000100111101
+11011000010000000000000000011101
+10011000010001100000010000000000
+00011000010000011000010000110000
+11100000101010001000000000000000
+01101000000000001100011100011000
+00011111111000001111111000000001
+01100000000000001100011100011000
+01111000010101100111110000000000
+00100000001000000100000101000011
+01101000000000010100001011011110
+00100000011110100000000000000000
+11011010001000000000000000000011
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000001111111110100001
+11100000101000010000000000000000
+01011000000000000000000000000000
+01111001001101100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01111000010101100111110000000000
+01101000000100001000000100011001
+11000011100000000000000000000000
+01101000000100001000000100011011
+11000010100000000100000101011001
+01101000000100001000000100011001
+11000011000000110100000101011001
+01101000000100001000000100011010
+00100000001000000100000101001111
+01111000001101000111110000000000
+01111000001101100111110000000000
+01101000000100001000000100011011
+00101111111011000000000000000000
+01101000000100001000000100011010
+11011000110000000100100111111111
+10011000110000001000110000000000
+11101000110000001000000000000000
+11000010100000111100000110010001
+00100100001000001100000110000010
+01111000010101100111110000000000
+10011000000000000000010000000000
+01101000000000001100011100110001
+00011111111001100111110000000100
+00100100011000010000000000000000
+00011111111000100010001000000000
+11011111001000000000000000000011
+11011000110000000100011100101011
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100000101001111
+11000010000000000100000101101011
+00011010001000100111111000000000
+11011000101000000100011100101011
+10011000101000001000101000000000
+11100000101010001000000000000000
+00011111111000001111111000000001
+01100000000000001100011100110001
+01101000000100001000000100011011
+00011111111010010111111000000000
+00100100001110100100000101111001
+00100000001000000100000110000000
+00011111111000001111111111111111
+00100000001000101100000110000000
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100000101001111
+11000000000000001100000110000000
+00100000011000000000000000000000
+01111000001101100111110000000000
+00100000011000000000000000000000
+00011111111000010000010011111111
+01101000000000001100011100110001
+00100000011110100000000000000000
+10011000000000000111001000000000
+11011000110000000100011100101011
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100001010010001
+11000010000000000100000110000111
+00100000011000000000000000000000
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100000110000000
+11000000000000001100000101001111
+00100000011000000000000000000000
+00011111111000010000111000000111
+01101000000000001100011100101001
+11111001001000001111111000000000
+01100000000000001100011100101001
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000001000100101011001010
+01100000000000001100011100110001
+00100000011000000000000000000000
+01101000000100001000000100011011
+01101000000100001000000100011010
+01101000000100001000000100011001
+11000011000000000100000110011010
+01011000000000000000000011111111
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000010000000100000110101100
+00100000011101011000000000000000
+01101000000000001100101100010111
+00100000010110100100001010011001
+00100000010000000100001010011100
+01101000000000001100011100110001
+00100000011110100000000000000000
+00100000010000000100000110111111
+01101000000000100000101100100110
+01100000000000100100101011111100
+00100000011000000000000000000000
+01101000000000010100011100001011
+11000100000000111000000000000000
+01101000000000001100101010101001
+11000011100000000000000000000000
+01101000000000010100101011001010
+01101000000010010100101100101000
+10011000010001100111110000000000
+00100000001000101100000110111011
+01101000000000010100101011001010
+01101000000010010100101100101001
+10011000010001100111110000000000
+00100000001000101100000110111011
+01101000000000010100011100001011
+11000010100001100100000110111011
+00100000011000000000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000000
+01100000000000001100101010101001
+00100000001000000111111000111101
+01101000000100011000000010000011
+10011000000000000010010000000000
+01101000000100100000000001111000
+10011000000000000010001000000000
+01101000000111000000000001110000
+01011000000000000000000000000000
+01100000000100011000000010000011
+00100000000000000000000001100100
+01101000000100001000000100011100
+01100000000000001000101100100110
+01110000100000000111100000000000
+01101000000100001000000001110011
+00011111111000010111111011110000
+01100000000100001000000001110011
+00011111111000101111111011111111
+01100000000100001000000001111011
+01011000000000000000000011111111
+01100000000100011000000001110000
+01011000000000001111111111111111
+01100000000100010000000001111001
+00100000000000000000000001100100
+01101000000100011000000100011101
+10011010010000010111111000000000
+01100000000000011000101100100111
+00011010001000100111111000000000
+01100000000100100000000001111000
+01100000000111000000000001110000
+00011010010000100111111000000000
+01100000000100011000000010000011
+00100000011000000000000000000000
+01101000000000001100000100110011
+00100100011110100000000000000000
+01101000000000001100001010000011
+00100100011110100000000000000000
+01101000000000001100011100000001
+00100000011110100000000000000000
+01101000000000001100011100000010
+00100100011110100000000000000000
+00100000001000000011111001110101
+00011010011000100111111000000000
+11000000000000110100001001101101
+11000000000001010100001001000111
+11000000000010010100001001110001
+11000000000010000100001000100011
+11000000000101110011111000110010
+11000000000000001100001000111010
+11000000000000010100001000001100
+11000000000000100100001000000001
+11000000000010011100001000000001
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000100000111110100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001100100000000011001
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000100000001100100
+00100000010000000100001000011101
+00100000010000000100000001110111
+00100000010000000100000011100011
+00100000010000000100001010110011
+00100000001000000100000111110111
+01101000000000010100011100001011
+11000010100001100100001000111110
+01101000000000001100101010101001
+11000011000000000011111000001010
+01101000000000001100101010101001
+01111001001111111111111000000000
+01100000000000001100101010101001
+01101000000000010100011100001011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001101100000000011001
+00100000010000000100001000011010
+01101000000000010100001010101101
+11000010100000000011111000001100
+11000010100000001100001000010100
+11000010100000010100001000010111
+00100000001000000100001000111110
+11000010100000101100001000010111
+11000010100000011100001000010111
+00100000001000000100001000111110
+01101000000000010100011100001011
+11000010100001100100001000111110
+00100000001000000011111000001010
+01110000010000101000001100000000
+01110000010010110000001000000000
+00100000011000000000000000000000
+01101000000000001100011100001001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100001001
+00100100011110100000000000000000
+00100000001000000100001001110001
+01011000000000000000000000000000
+01100000000000010100101010011111
+01100000000000001100011100011000
+00100000010000000100001000101010
+00100000010000000100001000101101
+00100000010000000011111010000001
+00100000001000000100001000111110
+01110000010010101111100100000001
+01101000000010001100011100110111
+00100000001000000110010011111101
+01111001001111111000000000100101
+01000100111001110100000000011001
+01101000000000010100011100001011
+00101111111011111111111000000111
+00100000010000001011111001010000
+01101000000000010100011100010110
+01100000000000010100011100000111
+01101000000000010100001010101111
+01111001001000000111111000000000
+01100000000000010100001010101111
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+00100000010000000011111001110011
+01011000000000000000000000000000
+01100000000000010100101010011101
+00100000001000000011111001011001
+00100000010000000011111010000001
+01101000000000010100011100010110
+01100000000000010100101010011101
+00100000010000000011111001010111
+01110000010010110000000100000000
+00100000010000000011111001101111
+00100000010000000100000110011010
+00100000001000000100000110010110
+00100000001000000011111001110101
+01110000010001110000100100000000
+01110000010001110001100000000000
+00100000010000000100000110010110
+00100000001000000100000110011010
+01101000000000001100101100000001
+00100000001110100100001001010100
+11011000010000000000000101000000
+10011000010011111000010000000000
+00011100010000100111111000000000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100001000010100001001010001
+01101000000010001100101011101111
+00100000010000000110010011111101
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110011110100
+01110000100000001000001100000000
+01110000100000001000010000000000
+01101000000100001000000010000101
+00011111111000010111111011110000
+01100000000100001000000010000101
+01011000000000000000000000000000
+01100000000000100000000010100100
+01011000000000000000000011111111
+01101000000010001100011100010101
+00011000010000100000111000000000
+11111001001000000111111000000000
+01100000000000100000000010100000
+00100000011000000000000000000000
+00100000010000000100001001011011
+01101000000000001000000010011111
+00100100011110100000000000000000
+01110000000000001010000000000000
+00100000011000000000000000000000
+01011000000000000000000000000010
+01100000000000001100011100001001
+00100000010000000100000110011010
+00100000001000000100000110010110
+01111001001111111000000000100101
+01000100111001111100000000011001
+00100000010000000111110100110011
+01110000010000101000001100000001
+00100000010000000100000110011010
+00100000010000000100000110010110
+00100000010000000011111001111111
+00100000010000000011111001111101
+01011000000000000000000000000000
+01100000000000010100011100000111
+01100000000000001100011100001001
+00100000001000000011111001111001
+01101000000000001100101011101001
+00011111111000010111111000000111
+01100000000000001100101100000000
+11011000010000000000000000000001
+11011010001000000100101100000000
+01011000000000000001111111101100
+00100000001000000110001010101000
+11011000010000000000000000000001
+11011010001000000100101100000000
+01011000000000000001111111101100
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000010000000110001001001100
+01101000000000001100101100000000
+00011111111000100010010000000000
+00011111111000010111111000001111
+11000000000001111100001010111001
+00011010010000100111111000000000
+01100000000000001100101011101001
+00100000011000000000000000000000
+00011000110000001000101111111111
+00100000010000000111111011001101
+01101000000000001100011100110001
+00011111111000001111111111111111
+01100000000000001100011100110001
+01101000000000001100101100100011
+11000000001111111100001010111101
+00100000001000000100001011000000
+01101000000001000100101011001010
+01100000000001000100101100011001
+00100000001000000100001011000000
+01101000000000001100011100110001
+00100000001110100100001011001010
+00011111111000100010010000000000
+01101000000000101100101011001010
+00011111111000100000010000000000
+00011000010000100111111000000000
+00101111111000011111111001111111
+00100000001000001100001010110000
+00011010010000001010010111111111
+01011000000000000100101100010010
+10011010010000001000101000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+00011000010000100111111000000000
+00011111111011001111111000000000
+00011111111000100000010000000000
+00100100001110100100001010100001
+01101000000000101100101100010010
+00100000010110100100001011001100
+00100000001000000100001011000000
+01011000000000000000000000000001
+01100000000000001100101100010111
+00100000001000000100001010101001
+01101000000000001100101011111000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101011111000
+00100100011110100000000000000000
+00100000001000000111110100101111
+00011010010000100111111000000000
+00011111111000010111111000000001
+01100000000000001100101011101001
+00100000011000000000000000000000
+01110000010010110001011100000000
+00100000010000000100001011001100
+00100000001000000100001011000000
+01111001001111111000000000100101
+01000100111010001100000000011010
+01101000000100001000000100011001
+11000011100000000000000000000000
+01101000000100001000000100011011
+11000010100000000100001011010100
+01101000000100001000000100011001
+11000011000000110100001011010100
+01101000000100001000000100011010
+00100000001000000100001011000000
+00100000010000000100001011001111
+00100000001000000100001011000000
+01101000000001000100101011001010
+01100000000001000100101100011001
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000001100101100010111
+01100000000000101100101100010010
+01100000000001000100101011001010
+00100000011000000000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000001
+01100000000000001100101010101001
+01101000000100001000000100011011
+00101111111011111111111000000000
+01100000000000001100101010100110
+01101000000100001000000100011010
+01100000000000001100101010100101
+11011000110000000100100111111111
+10011000110000001000110000000000
+11101000110000001000000000000000
+01101000000010001100011100110001
+00011000010001100111110000000100
+00100100001000010100001011000000
+10011000000000000000110000000000
+01011000000000000100101011001010
+10011000010000001000101000000000
+00011000110000100111111000000000
+11100000101000001000000000000000
+00011000010000001000010000000001
+01100000000010001100011100110001
+00100000001000000100001010011100
+00100000001101011100001011101111
+01011000000000000100001111110101
+11011000101000000100001011010110
+10011000101001100111001000000000
+00100000010000000111111010011111
+01111001001111111000000000100101
+01000100111010010100000000011010
+01011000000000000000010001110101
+11011000101000000000010001000000
+10011000101001100111001000000000
+00100000010000000111111010011111
+01011000000000000000001011110010
+11011000101000000000001010000110
+10011000101001100111001000000000
+00100000010000000111111010011111
+00100000001000000100100011000011
+01111001001111111000000000100101
+01000100111010011100000000011010
+00011000110000100000010000000000
+00011000010000100000110000000000
+11101000110000010000000000000000
+01100000000000010000001010001111
+11101000110000010000000000000000
+01100000000000010000001010010001
+00011000110000100111111000000000
+01100000000000010000001010001101
+01101000000000001100011100001010
+11000000000000000100001100000111
+00100000001000000100011010000100
+01101000000000010000001010001111
+00100000001110100100001110000011
+01111001001111111000000000100101
+01000100111010100100000000011010
+01101000000000001000001010010001
+11000000000000001100001100100001
+11000000001010000100001101100110
+11000000001010001100001101111011
+11000000001010010100001101111001
+11000000001010011100001101111001
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111010101100000000011010
+00100000010000000100100000100001
+01101000000000001100001011100110
+11000000000000000100001100011111
+11000000000000001100001100011111
+11000000000000010100001100011111
+11000000000000011100001100011111
+11000000010000001100001100011111
+11000000011000000100001100011111
+11000000010000000100001100011111
+11000000001000000100001100011111
+00100000011000000000000000000000
+01011000000000000000000000000000
+00100000011000000000000000000000
+00100000010000000100001100010010
+00100100011110100000000000000000
+00100000010000000100100001011110
+00100000010000000100001110001000
+01101000000010010000001010011000
+00100000001110100100001110000010
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100001110000011
+01101000000000001100001111110100
+00100000011110100000000000000000
+00011111111000100010001000000000
+01111001001111111000000000100101
+01000100111010110100000000011010
+01101000000000100000001011111110
+11011000010000000000000100000000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+01110000010000111111010000000000
+00011010001000100111111000000000
+11000000001010000100001100111100
+00100000001000000011101100110001
+11011001000000000000000000000000
+00100000010000000100100001011110
+00100000010000000100010000000100
+00100000010000000100100001101010
+00100000010000000111111001110000
+00100000010000000100010000110111
+00100000010000000100100001101000
+01011000000000000000000000001100
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111010111100000000011010
+01101000000000010000001010011110
+00011111111000001111111000000100
+00011111111100011111111000000000
+00011111111010010111111000000000
+00011111111000001000010000000001
+11011000110000000100001011110000
+11101000110000011000000000000000
+00100000011110100000000000000000
+01100000000000011000100111100001
+01101000000000001000100111100001
+00011111111000100010001000000000
+00100000010000000100001101011001
+00011010010000100111111000000000
+01100000000000001100001011110000
+00100000011000000000000000000000
+11011000111000000000000000000000
+11011010010000000000000000000000
+00011000111001100111110000000111
+00100100011000010000000000000000
+10101010001011111111111111111111
+00100000001000001100001101100000
+00100000001000000100001101100100
+00011000010000100111111000000000
+00100000001110100100001101100100
+11111001001000000010010000000000
+00011000010000001000010111111111
+00011000111000001000111000000001
+00100000001000000100001101011011
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000100001100010010
+00100100011110100000000000000000
+00100000010000000100100001101100
+00100000010000000110101000111110
+00100000010000000100001101001000
+00100000001000000100001101110010
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000100100001101100
+00100000010000000110101000111110
+00100000010000000100100001110110
+01101000000000010000001010011110
+00100000001110100100001110000010
+11100000101000010000000000000000
+01101000000000010100001011011000
+11100000101000010000000000000000
+00100000001000000100001110000011
+00100000010000000011111111001010
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111011000100000000011011
+01110000000000101010110100000000
+00100000010000000110011010001111
+01101000000000001000001010101101
+11000001000000001000000000000000
+00100000001000000100001110000011
+00100000010000000100100000000011
+01011000000000000000000000000000
+01100000000000010000001010001111
+01100000000000010000001010010001
+01110000000000101001001100000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111011001100000000011011
+00100000010000000100100001101010
+00011000000000000010010000000000
+01101000000000010000001010001111
+00011111111000100010011000000000
+01101000000000010000001010001101
+10011000000000000000110000000000
+00100000010000000100001110011000
+00011010011000100111111000000000
+00011010011000001010011111111100
+00011111111000001111111111111100
+00100100001110100100001110010000
+00011010010000100111111000000000
+01100000000000010000001010011000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111011010100000000011011
+11101000110000001000000000000000
+11000000000000001100001111010010
+11000000000000010100001111011010
+11000000000000011100010001100000
+11000000000000100100010010010001
+11000000000000101100010100110001
+11000000000000110100010101011011
+11000000000000111100010110101100
+11000000000001000100010111100010
+11000000000001001100010111110010
+11000000000001010100001110101000
+11000000000001011100010111110011
+00100000010000000100010111110100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+11101000110000010000000000000000
+11000000000000010100001110110110
+11000000000000011100001110111100
+00100000011000000000000000000000
+01011000000000100000000000001000
+11100000101000110000000000000000
+01011000000000000000001010000000
+11100000101000100000000000000000
+00011000000000000111111000001100
+00100000001000000100001111000001
+01011000000000110000000000001100
+11100000101000110000000000000000
+01011000000000000000000000000110
+11100000101001000000000000000000
+00011000000000000111111000010000
+10011010010000001010010000000000
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+01100000000000010000100111000110
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000010000000100100001101010
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01101000000000010000100111000110
+00100000001000000100001110110011
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100001110100111
+00100000010000000111111001110000
+00100000010000000111111001110101
+11011001000000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+01111001001111111000000000100101
+01000100111011011100000000011011
+00011000010000100111111000000000
+11000000000000001100001111101110
+11000000000000011100010000010000
+11000000000010001100010000011100
+11000000000010011100010000100111
+00100000010000000100010111110100
+00100000001000000100010001011111
+00100000010000000111111001110000
+11011000010000000000000001010000
+01101000000000010100001011011000
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011000
+00011100010000100111111000000000
+01100000000000100000001011111110
+00100000010000000100001111111000
+00100000001000000100010000110011
+01100000000010010000001011111100
+00011001011000100111111000000000
+01100000000000010000001011110010
+00011010001000100111111000000000
+01100000000000010000001011110100
+00011010010000100111111000000000
+01100000000000010000001011110110
+00011010011000100111111000000000
+01100000000000010000001011111000
+00011000111000100111111000000000
+01100000000000010000001011111010
+00100000011000000000000000000000
+01101000000010010000001011111100
+01101000000000010000001011110010
+00011111111000100001011000000000
+01101000000000010000001011110100
+00011111111000100010001000000000
+01101000000000010000001011110110
+00011111111000100010010000000000
+01101000000000010000001011111000
+00011111111000100010011000000000
+01101000000000010000001011111010
+00011111111000100000111000000000
+00100000011000000000000000000000
+00100000010000000111111001110000
+01011000000000000000000001010001
+11011000010000000000000001010001
+01101000000000010100001011011010
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000001000000100010000111011
+00100000010000000111111001110000
+11011000010000000000000001010010
+01101000000000010100001011011100
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100010
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000001000000100010000111011
+00100000010000000111111001110000
+00011011010000100111111000000000
+11011000010000000000000001010011
+01101000000000010100001011011110
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100011
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000001000000100010000111011
+01011000000000000000000000000001
+01100000000000010000001010100110
+01110000010000111111010001010000
+00100000001000000100010000111101
+01101000000000001100001011100000
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100000
+01011000000000000000000000000000
+01100000000000010000001010100110
+01111001001111111000000000100101
+01000100111011100100000000011011
+00100000010000000111111001110101
+01011000000000000000000000000011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+01101000000000010000001010100110
+11000000000000001100010001010100
+00101001000011000000000000000000
+00100000001000001100010001001111
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100010001011011
+11100000101000010000000000000000
+00011000000000000111111000000010
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100010001011011
+01111001001000000001000000000000
+00100000001000000100010000111011
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100010001011111
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100111011101100000000011011
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010001111001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010001111111
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010010001011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010010000101
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011000
+01101000000000001100001011100000
+01111001001000000111111000000001
+01100000000000001100001011100000
+00100000001000000100001110100111
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100011
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100010
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00011000010000100010001000000000
+01111001001111111000000000100101
+01000100111011110100000000011011
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010010101001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010011000111
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010010110011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010010111101
+00100000001000000100010111110100
+00011000101000100001011000000000
+01101000000000001100001011100000
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100000
+00011001011000100000101000000000
+11011001011000000000000001010000
+01101000000000010100001011011000
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100010
+00011001011000100000101000000000
+11011001011000000000000001010010
+01101000000000010100001011011100
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100011
+00011001011000100000101000000000
+11011001011000000000000001010011
+01101000000000010100001011011110
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100001
+00011001011000100000101000000000
+11011001011000000000000001010001
+01101000000000010100001011011010
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100111011111100000000011011
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000110
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+01100000000010010000001010101011
+00011000111000100111111000000000
+01100000000000001000001010101010
+00011000000000000111111001010000
+10101001011000011111111000000000
+00100000001000001100010011100111
+00011111111000001111111000000001
+00100000011000000000000000000000
+01111000010101000111110000000000
+11000011100000010000000000000000
+11000100000000000000000000000000
+11000100000000001000000000000000
+01111001001000000111111000000010
+00011000110000100000101000000000
+00011000101000001000101111111111
+11100000101000001000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100001011100000
+00100000010000000100010011101000
+00100100001101000100010011111001
+01110000000000101010100101010000
+01101000000000010100001011011000
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100001
+00100000010000000100010011101000
+00100100001101000100010100000000
+01110000000000101010100101010001
+01101000000000010100001011011010
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100010
+00100000010000000100010011101000
+00100100001101000100010100000111
+01110000000000101010100101010010
+01101000000000010100001011011100
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100011
+00100000010000000100010011101000
+00100100011101000000000000000000
+01110000000000101010100101010011
+01101000000000010100001011011110
+01100000000000010000001010101011
+01111001001111111000000000100101
+01000100111100000100000000011100
+00100000010000000100011111010110
+00100000010000000100100001011110
+00011000000000000010010000000000
+00100000010000000100100001101010
+00011000000000000111111000000100
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010000001010101011
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000001000001010101001
+11000000001010001100010100100110
+01011000000000000000000000110000
+11100000101000010000000000000000
+00100000001000000100010100101000
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+01100000000010010000001010011000
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+01110000000000101010100100000000
+00100000001000000100001110100111
+00011000110000001000110000000001
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+01111001001111111000000000100101
+01000100111100001100000000011100
+01011000000000000000000001010000
+10011010001001100111110000000000
+00100000001000101100010101001010
+01011000000000000000000001010001
+10011010001001100111110000000000
+00100000001000101100010101001110
+01011000000000000000000001010010
+10011010001001100111110000000000
+00100000001000101100010101010010
+01011000000000000000000001010011
+10011010001001100111110000000000
+00100000001000101100010101010110
+00011000110000001000110000000010
+11101000110000010000000000000000
+10011000000000000111110000000000
+00100000001000000100001110100111
+01101000000000001100001011100000
+01111001001000000111111000000101
+01100000000000001100001011100000
+00100000001000000100001110100111
+01101000000000001100001011100001
+01111001001000000111111000000101
+01100000000000001100001011100001
+00100000001000000100001110100111
+01101000000000001100001011100010
+01111001001000000111111000000101
+01100000000000001100001011100010
+00100000001000000100001110100111
+01101000000000001100001011100011
+01111001001000000111111000000101
+01100000000000001100001011100011
+01110000000010011011110100000110
+00100000001000000111110110000110
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00011010001000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111100010100000000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010110000011
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010110010011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010101110111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010101111101
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011100
+10011000010001100111110000000000
+00100000001000101100010110001001
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011110
+10011000010001100111110000000000
+00100000001000101100010110001011
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011000
+10011000010001100111110000000000
+00100000001000101100010110001111
+00100000010000000100010111110100
+00100000001000000100010110101000
+00100000010000000100011000001011
+00100000001000000100010110011011
+00100000010000000100011000010001
+01101000000000010100001011011100
+00100000001110100100010110011011
+00100000001000000100010110011011
+00100000010000000100011000000110
+01101000000000001000001010110001
+00100100001110100100010110011011
+00100000001000000100010110011011
+00011001011000100000010000000000
+01101000000000010100001011011010
+10011000010001100111110000000000
+00100000001000101100010110011001
+00100000010000000100010111110100
+00100000001000000100010110101000
+00100000010000000100011000000001
+00100000001000000100010110011011
+00100000010000000111111001110101
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+00100000001000000100010110101010
+00100000010000000111111001110101
+00100000001000000100010110101010
+10011010010000001010010000000000
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111100011100000000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010111000111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010111001101
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010111010011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010111011001
+00100000010000000100010111110100
+00100000001000000100010111100001
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011000
+10011000010001100111110000000000
+00100000010000101100011000000110
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011010
+10011000010001100111110000000000
+00100000010000101100011000000001
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011100
+10011000010001100111110000000000
+00100000010000101100011000001011
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011110
+10011000010001100111110000000000
+00100000010000101100011000010001
+00100000001000000100010111011111
+00100000010000000111111001110101
+00100000001000000100001110100111
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000100
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100001110100111
+00100000001000000100001110100111
+00100000001000000100001110100111
+00011000000000000010010000000000
+00100000010000000100100001101010
+01011000000000000000000000000001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011010010000001010010000000110
+11011010011000000000000000000100
+00100000001000000100001110100111
+01011000000000000000000000000000
+01100000000000010000001010100100
+01100000000000010100001011011010
+01110000010000101110000100000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010000001010011110
+01100000000000010100001011011000
+01110000010000101110000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001011011100
+01110000010000101110001000000000
+01101000000000001100001011100011
+11000000000000000100011000010111
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001011011110
+01110000010000101110001100000000
+01101000000000001100001011100010
+11000000000000000100011000010111
+00100000011000000000000000000000
+01110000000010011011110100000111
+00100000001000000111110110000110
+01101000000000001000001010101000
+01111001001111111111111000000000
+01100000000000001000001010101000
+01101000000000010100001011011110
+00100000011110100000000000000000
+00100000010000000100100001011110
+01101000000000010100001011011110
+00011111111000100010001000000000
+00011000000000000010010001010011
+00100000001000000100011000101100
+01101000000000001000001010101000
+01111001001111111111111000000111
+01100000000000001000001010101000
+01101000000000010100001011011100
+00100000011110100000000000000000
+00100000010000000100100001011110
+01101000000000010100001011011100
+00011111111000100010001000000000
+00011000000000000010010001010010
+00100000010000000100011111010110
+00100000010000000100100001101010
+00011000000000000111111000000110
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001000
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100100100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000010
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100101100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000100
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100110100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000110
+11100000101000001000000000000000
+01101000000000001100001011100101
+00011111111000001111111000000001
+00011000101000100010001000000000
+01100000000000001100001011100101
+00011010001000100000101000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+01100000000010010000001010011000
+00011000010000100111111000000000
+00100000001110100100100000000011
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000000010000001010011110
+00100000001110100011101100110001
+00100000010000000100100001110110
+01101000000000010000001010011110
+11100000101000010000000000000000
+01101000000000010100001011011000
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000000010000001010001111
+00100000001110100100001110000011
+01111001001111111000000000100101
+01000100111100111100000000011100
+01101000000000001000001010010001
+11000000000000001100011010001111
+11000000001010000100001101101110
+11000000001010001100001101111011
+11000000001010010100001101111001
+11000000001010011100001101111001
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111101000100000000011101
+00100000010000000100100001011110
+00011000000000000010010000000000
+00100000010000000100100001101010
+00011111111000100000101000000000
+01101000000000010000001010001111
+00011111111000100010011000000000
+01101000000000010000001010001101
+10011000000000000000110000000000
+00100000010000000100011010011111
+00011010011000001010011111111100
+00100100001000101100011010011001
+00011010010000100000010000000000
+00100000010000000100011001110011
+00100000001000000100001110000011
+11101000110000001000000000000000
+11000000000000010100011010101010
+11000000000000001100011010101101
+11000000000000011100011010110111
+11000000000000101100011011110100
+11000000000000100100011100100111
+11000000000000111100011110101110
+11000000000000110100011101111011
+11000000000001000100010111100010
+11000000000001010100001111000011
+00100000001000000100011111001010
+00100000010000000111111001110000
+00100000010000000111111001110101
+00100000001000000100001111011010
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00100100001000101100011010110011
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111001100111110000000000
+00100000001000101100011011001001
+11000000000000010100011011000101
+11000000000000100100011011000101
+00100000001000000100011011000111
+01110000000010011011110100010110
+00100000010000000111110110000110
+11101000110000010000000000000000
+00100000001000000100011011110001
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101001100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011011011001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011011011111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011011101011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011011100101
+00100000001000000100011011110001
+00011001011000100111111000000000
+01100000000000010100001011011000
+01101000000000001100001011100000
+01111001001000000111111000000001
+01100000000000001100001011100000
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100010
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100011
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000010000000111111001110101
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+11101000110000010000000000000000
+00100100001110100100011100100001
+00100000010000000111111001110000
+00011001011000100000010000000000
+01111001001111111000000000100101
+01000100111101010100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011100001111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011100010011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011100010111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011100011011
+01101000000000001100001011100000
+01111001001000000111111000000101
+01100000000000001100001011100000
+00100000011000000000000000000000
+01101000000000001100001011100001
+01111001001000000111111000000101
+01100000000000001100001011100001
+00100000011000000000000000000000
+01101000000000001100001011100010
+01111001001000000111111000000101
+01100000000000001100001011100010
+00100000011000000000000000000000
+01101000000000001100001011100011
+01111001001000000111111000000101
+01100000000000001100001011100011
+01110000000010011011110100000110
+00100000001000000111110110000110
+00100000010000000111111001110101
+00011010001000001010001111111010
+00100000001000101100011100100110
+00011000110000001000110000000001
+00011010001000001010001111111111
+00100000001000000100011100100010
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011000110000001000110000000010
+00011111111000100000010000000000
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000010
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101011100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011101000111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011101011000
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011101011110
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011101100100
+00100000001000000100011101101001
+01101000000000001100001011100000
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100000
+11000010100000010100011101010101
+01101000000010001000001010101000
+01111001001000000000010000000110
+01100000000010001000001010101000
+00011000111000100111111000000000
+00011111111000001111111000000001
+01100000000000001000001010101010
+01101000000000001100001011100000
+01111001001000000111111000000010
+01100000000000001100001011100000
+01101000000000010100001011011000
+01100000000000010000001010101011
+00100000001000000100011101101001
+01101000000000001100001011100001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100001
+01101000000000010100001011011010
+00100000001000000100011101101001
+01101000000000001100001011100010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100010
+01101000000000010100001011011100
+00100000001000000100011101101001
+01101000000000001100001011100011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100011
+01101000000000010100001011011110
+00011111111000100001011000000000
+00100000010000000111111001110101
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+00011010001000001010001111111010
+00100000001000101100011101111010
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000000100011101110100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101100100000000011101
+01011000000000000000000001010000
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110010101
+01011000000000000000000001010010
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110011010
+01011000000000000000000001010011
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110011100
+00100000001000000100011110011110
+01011000000000000000000000000000
+01100000000000010000001010011110
+01100000000000010100001011011000
+01100000000000001100001011100000
+00100000001000000100011110100000
+00100000010000000100011000001011
+00100000001000000100011110100000
+00100000010000000100011000010001
+00100000001000000100011110100000
+01011000000000000000000000000000
+01100000000000010000001010100100
+00100000010000000111111001110101
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101101100000000011101
+01101000000000001100001011100101
+10101000111000011111111000000000
+00100100001000001100011111000110
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011111000011
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011111000110
+00100000001000000100011111000110
+01110000010000101101100000000000
+01110000010000101110000000000000
+00100000001000000100011111000110
+00100000010000000111111001110101
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000110
+10011010010000001010010000000000
+00011000000000000010011000000100
+00100000011000000000000000000000
+01101000000000001100001011100101
+00011111111000001111111000000001
+11000000100000000100011111011010
+00011111111000001111111000000001
+01100000000000001100001011100101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111101110100000000011101
+11011010010000000000000000000000
+00100000010000000100100000001110
+00100100001110100011101100110001
+00100000010000000100100000100001
+11011010010000000001100000000000
+11011000111000000000000000000000
+01101000000010001100001011100110
+10101000010011111111111111111111
+00100000001000001100011111101100
+00100000010000000100100001000101
+00011001011001100111110000000000
+00100000001000010100011111101100
+00100000010000000100100000101100
+00100000001000000100011111110010
+00011010010000001010010010000000
+00011000111000001000111000000001
+01011000000000000000000000001000
+10011000111001100111110000000000
+00100000001000010100011111100100
+11011010010000000000000000000000
+00011010010000100111111000000000
+00100000001110100011101100110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111101111100000000011101
+00100000010000000100100000011010
+00011000110000001000110000000001
+11101000110000010000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110000100000000011110
+00100000010000000100100000011010
+00011000110000100000101000000000
+00011000110000100000010000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110001100000000011110
+00100000010000000100100000010110
+00100000001110100011101100110001
+01101000000000011100001011101101
+01100000000000011100001011110000
+01101000000000011100001011101010
+01100000000000011100001011101101
+01101000000000011100001011100111
+01100000000000011100001011101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110010100000000011110
+01101000000000011100001011100111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110011100000000011110
+01101000000000011100001011101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110100100000000011110
+01101000000000011100001011110000
+00100000011000000000000000000000
+00100000010000000100100000010110
+00100000001110100011101100110001
+11011000110000000100001011100111
+11101000110000011000000000000000
+00100000001110100100100000011101
+00011000110000001000110111111101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110101100000000011110
+11011111001000000000000000000100
+11011000110000000100001011100111
+11011000010000000000000000000000
+11101000110000011000000000000000
+00011111111000010111111011111111
+10011000010000011000010000000000
+11000010000000000100100000100110
+01100000000010001100001011100110
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110110100000000011110
+00100000010000000100100000001110
+00100100001110100011101100110001
+00100000010000000100100000010110
+00100000001110100100100000111010
+01101000000000011100001011101010
+01100000000000011100001011100111
+11101000110000011000000000000000
+11100000101000011000000000000000
+11101000110000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+11011000010000000000000000000000
+00011001011000100111111000000000
+10011000111000001111111000000000
+11111001001000000000010000000000
+00011000111000001000111000000001
+10011000111001100111110000000000
+00100100001000101100100000111101
+00011010010011010111111000000000
+10011000010000011111111000000000
+01100000000000011100001011110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110111100000000011110
+00100000010000000100100000100001
+00011000111000100010011000000000
+11011000010000000000000000000000
+11011001011000000000000000000000
+00011000111000100111111000000000
+11000000000001000100100001010110
+01101000000000001100001011100110
+10101111111011111111111111111111
+00100000001000001100100001010110
+00011000010000001000010010000000
+00011000111000001000111000000001
+00011010001000100111111000000000
+10011000010001100111110000000000
+00100000001000101100100001010110
+00100000001000010100100001001011
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100100001000010100100001011100
+00011000111000100111111000000000
+00011010011000100000010000000000
+10011000010001100001011000000000
+00011010011000100000111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111000100000000011111
+11011010001000000000000001111111
+00100000010000000100011111011100
+01100000000000010000001010010100
+00011111111000001111111000000100
+01100000000000010000001010010110
+01011000000000000000000000000000
+01100000000000010000001010011000
+00100000011000000000000000000000
+01101000000000010000001010010100
+00100000001000000100100010001011
+01101000000000010000001010010110
+00100000001000000100100010001011
+01111001001111111000000000100101
+01000100111111001100000000011111
+11011010001000000000001011111111
+00100000010000000100011111011100
+01100000000000010000001010011010
+00011111111000001111111000000100
+01100000000000010000001010011100
+01011000000000000000000000000000
+01100000000000010000001010011110
+00100000011000000000000000000000
+01101000000000010000001010011010
+00100000001000000100100010001011
+01101000000000010000001010011100
+00100000001000000100100010001011
+01111001001111111000000000100101
+01000100111111010100000000011111
+00100000010000000111111001001000
+01110000000000101010110100000001
+00100000010000000100100000001110
+00100100011110100000000000000000
+11011010001000000000000001111111
+00100000010000000100011111011100
+01100000000000010000001010100000
+00011111111000001111111000000100
+01100000000000010000001010100010
+01011000000000000000000000000000
+01100000000000010000001010100100
+01110000000000101010110100000000
+00100000001000000111111001010110
+01101000000000010000001010100000
+00100000001000000100100010001011
+00100000001110100011101100110001
+00011111111000100000101000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111011100000000011111
+11011010010000000000000000000000
+11011010001000000100001011100111
+00011010001000001010001111111110
+00011010001000001010001000000010
+01011000000000000100001011110011
+10011010001001100111110000000000
+00100000001000101100100010011111
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100000001110100100100010010011
+11101010001010010000000000000000
+11101000010000010000000000000000
+10011010010000001010010000000000
+00011010010000001010010000000100
+00100000001000000100100010010011
+00011010010000100111111000000000
+00100000011000000000000000000000
+11011000111000000000000000001100
+00100000001000000011110100000110
+11011000111000000000000000001100
+00100000001000000011110100001010
+01111001001111111000000000100101
+01000100111111100100000000011111
+00100000010000000100100000100001
+01101000000000001100001011100110
+00100000011110100000000000000000
+00100000010000000100100010001110
+11011000010000000000000100000000
+10011000010001100111110000000000
+00100000001000010100100010100001
+00100000010000000100100010100011
+11011000101000000100001011110011
+11011010001000000100001011100111
+01011000000000000100001011110011
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100100001110100100100010111010
+11100000101000010000000000000000
+00011010001000001010001000000010
+00100000001000000100100010110001
+11101010001000010000000000000000
+00011010001000001010001000000010
+00011111111000100000110000000000
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011111111000100111001000000000
+00011111001000001111001000000010
+00100000010000000111111011001101
+00100000001000000100100010110001
+01111001001111111000000000100101
+01000100111111101100000000011111
+00100000010000000100100000100001
+01101000000000001100001011100110
+00100000011110100000000000000000
+11011010001000000100001011101000
+00011010001000001010001111111101
+11011000110000000100001011110011
+00011010001000001010001000000011
+01011000000000000100001011110100
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101000110000010000000000000000
+00100000001110100100100011001011
+00011111111000001111111000000100
+00011111111000100111001000000000
+00011000110000100010010000000000
+11101010001000010000000000000000
+00011111111000100000101000000000
+00011010010000100000110000000000
+00011000110000001000110111111110
+00100000010000000111111011001101
+00100000001000000100100011001011
+01101000000000001100010011011111
+01111001001000000111111000000011
+01100000000000001100010011011111
+00100000011000000000000000000000
+01101000000000001100010011011111
+01111001001111111111111000000011
+01100000000000001100010011011111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111110100000000011111
+01111000010101011111110000000000
+01110000000000110111100000000001
+01110000000000110110001000000011
+01110000000000110111100100000001
+01011111111111111111111111111111
+01100000000000010000001101111100
+00011000000000000111111000000000
+01100000000000001000001101111010
+01100000000000001000001110000101
+01100000000000011100001000001001
+01100000000000011100001000001100
+01100000000000101100010010001100
+01111001001000000111111000100111
+01100000000000101100010010010001
+01110000010001000110010100000001
+01110000010001000110011000000000
+00100000001000000101000101111001
+01111001001111111000000000100101
+01000100111111111100000000011111
+01111000001101001111110000000000
+01110000000000110110001100000011
+01110000000000111001101100000001
+01110000010001001110001100000001
+01011000000000001111111111111111
+01100000000000010100010011100101
+00011000000000000111111000000000
+01100000000000101100010010010001
+01111001001000000111111000100111
+01100000000000101100010010001100
+00100000001000000100100011100010
+01111001001000000000000000100101
+01000100100000000100000000100000
+01111000010101001111110000000000
+01110000000000110110001100000001
+01110000010000111111111100000000
+01110000000000001001111100000000
+01110000010001010110101000000000
+01110000010001010110101100000000
+01101000000000010000001110010000
+01100000000000010100010101100001
+01101000000000010000001101100100
+00011111111011111111111000000101
+00011111111100011111111000000000
+01100000000000010000001110010000
+00100000001000000100100011100010
+00100000010000000100100101110110
+00100000010000000100101110010001
+00100000010000000101000101111100
+00100000001000000100100101111101
+01111001001000000000000000100101
+01000100100000001100000000100000
+00100000010000000100100101110110
+00100000010000000011110101100111
+01101000000000001000001101100011
+11000000000000011100100100011100
+00100000001000000100100100110010
+01111001001000000000000000100101
+01000100100000010100000000100000
+01111000001101001111110000000000
+00100000010000000101000101110000
+00100000001000010100100100101111
+00100000010000000011110101000101
+00100000010000000100100111000100
+00100000010000000100101111011000
+01111000010101101111110000000000
+00100000010000000100101001011010
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100000011100000000100000
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+00100000010000000100101101010001
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000100100101011011
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100000100100000000100000
+00100000010000000111101011001111
+00100000010000000101001010101001
+01111000010101110111110000000000
+00100000010000000101000101110000
+00100000001000010100100101011011
+00100000010000000011110101000101
+00100000010000000100100111000100
+00100000010000000100101000100000
+00100100001011000100100101001111
+00100000010000000100100101101000
+00100000001101101100100101000000
+00100000001000000100100101001001
+01111001001000000000000000100101
+01000100100000101100000000100000
+00100000010000000100100101101000
+00100000010000000100101101010001
+00100000010000000100101111011000
+01101000000000001000001100000010
+11000010100000100100100101010101
+00100000010000000100101111010000
+00100100001110100100100101010101
+01111001001000000000000000100101
+01000100100000110100000000100000
+00100000010000000100101001100011
+00100000010000000111110110011110
+01101000000000001000001110000101
+11000010100000011100100101011011
+01111001001000000000000000100101
+01000100100000111100000000100000
+00100000010000000101001010000111
+00100000010000000100101101000011
+00100000010000000100101100100010
+00100000001000000011100011010001
+01111001001000000000000000100101
+01000100100001000100000000100001
+01111000001101110111110000000000
+00100000010000000100101001011010
+00100000001101101100100101000000
+00100000001000000100100101001100
+01111001001000000000000000100101
+01000100100001001100000000100001
+00100000010000000100100101100010
+00100000010000000011111000010111
+00100000010000000111101010010110
+01110000000010011011110100010101
+00100000001000000111110110000110
+01110000000000110111100000000000
+01110000000000110110001100000000
+01110000000000110110001000000000
+01110000010001010110101100000000
+01110000010001010110101000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001010100000000100001
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+01101000000000001000001101100010
+11000011100000011000000000000000
+01111001001000000111111000000011
+01100000000000001000001101100010
+01101000000000010100010101100001
+01100000000000010000001110010000
+01011000000000000000000000000000
+01100000000000100100010110010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001011100000000100001
+01110000100010010000111100110110
+01110000100010010000101101011111
+01111000001110110111110000000000
+01110000100010010001010000000111
+00100000001000000011110101000101
+01111001001000000000000000100101
+01000100100001100100000000100001
+01110000100010010000111100101110
+01110000100010010000101111111111
+01111000010110110111110000000000
+01110000100010010001010000000011
+11011011011000000000000000000000
+00100000011000000000000000000000
+01111000010001001111110000000000
+01111000010000111111110000000000
+01101000000000011000001110001010
+10011000000000000001111000000000
+01101000000000001000000000010110
+00011111111011011000010000000000
+01111001001000000000010000000001
+00011000010000110001110000000000
+00100000011000000000000000000000
+00100000010000000100100110010110
+00100000010000000011100110111001
+01011000000000000000010100000000
+00100000010000000011101100110101
+00100000001000000011100110111111
+00100000001101101011100111010000
+00100000010000000100100110010110
+00100000001000000011100111001001
+01111001001000000000000000100101
+01000100100001101100000000100001
+00100000010000000011100110110001
+01101000000000001000001110110000
+00100100001110100100100110101010
+01101000000000001000000000010110
+00011111111001100111110000100100
+00100000001000010100100110100100
+00011000000000000000010000000000
+11000001000100101000000000000000
+00011000000000000000010000011000
+11000001000100110000000000000000
+00011000000000000000010001001110
+00100000011000000000000000000000
+00011111111001100111110000001010
+00100000001000010100100110100111
+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
+01100000000000011000001110001010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001110100000000100001
+01111000001010000111110000000000
+01101000000000100000001110000110
+10011000000000000001001000000000
+00100000010000000100100111111011
+01011000000000000000001000000000
+00100000001101001100100111001110
+01101000000000010000001101110000
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101010111101
+00011011010000100111111000000000
+01100000000000110000001110110101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001111100000000100001
+01101000000000001000000000010110
+00011111111000001111111000000001
+01100000000000001000000000010110
+11000001100101000000000000000000
+01110000000000000001011000100101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010000100000000100010
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000100000000000000000000000000
+00011010001000001000101000011010
+11101000101000010000000000000000
+00011111111000001111111000000001
+11100000101000010000000000000000
+00011010001000001000110000011001
+11101000110000001000000000000000
+00011010001000001000101000011000
+11101000101010001000000000000000
+10011000010000001111111000000000
+00011111111001100111110000100100
+00100000001000010100100111101101
+00011111111000001111111111011011
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010001100000000100010
+01101000000000101000001110010010
+00011000000000000000010000000000
+00011000000000000111001000100101
+11000011000000000100100111110110
+00011000010000001000010000000001
+00011111111000110111111000000000
+11000010000000000100100111110100
+00011000010000001111111111111111
+01100000000000001000001110000100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010010100000000100010
+01101000000000001000001101111010
+10011000000000000000111000000000
+01101000000010101000001110010010
+10101000010011111111111111111111
+00100000001000001100101000010011
+01111001001000000000000000100101
+01000100100010011100000000100010
+01101000000000001000001110000100
+10011000111001100111111000000000
+00100000001000010100101000001001
+00011111111001100000111111111111
+00100000001000000100101000000010
+00011000111000100111001000000000
+00011000000000000000111000000000
+10101000010011111111111111111111
+00100000001000001100101000001110
+00011111001000001111001000000001
+00011111001000100111111000000000
+00100000001110100100101000010011
+00011000111000001000111000000001
+00011111001000001111001111111111
+00100000001000000100101000001011
+00011000111000100111111000000000
+01100000000000001000000000010110
+00100000011000000000000000000000
+00100000001101001100101000011001
+00110111110000011000001000000000
+00100000011000000000000000000000
+11011001011000000000111010100000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111000010010000111110000000000
+01101000000000010100001111111100
+00011111111000100001011000000000
+00100000001000000100101000100110
+01111001001000000000000000100101
+01000100100010100100000000100010
+01111000001010000111110000000000
+01101000000000010000001101110000
+01101000000010100100010110010110
+10011000010000001001011000000000
+00100000010000000100100110001110
+01111001001000000000000000100101
+01000100100010101100000000100010
+00100000010000000100100110000101
+01111000010101101111110000000000
+01111000001001101111110000000000
+01111000001100001111110000000000
+01111000010100000111110000000000
+00011001011000100011011000000000
+00110111110000011000010000000000
+00100000001101110100101000110011
+00011011010000100000010000000000
+01100000000010110000000010011001
+00100100001011000011011011000110
+00100000001101110100101000111010
+11011101001000000000000111100000
+00011100001000100101000000000000
+01101000000000001000001101100010
+11000011000000011100101000111010
+00100000010101011011101111101101
+01111001001000000000000000100101
+01000100100010110100000000100010
+00100000010000000011101001010000
+01111000001000111111110000000000
+01111000001001001111110000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001000001100000010
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+00011111111000010111001000111111
+00100000001000101100101001001011
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000100101001000111
+01111001001000000000000000100101
+01000100100010111100000000100010
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+00100000001000110011011011000110
+01111000001101101111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000000
+00100000010000000011101000010011
+01111000010001101111110000000000
+00100000001000000011100110110001
+01111001001000000000000000100101
+01000100100011000100000000100011
+00100000010000000100101001100101
+01101000000010001000000000010111
+00100000010000000011100110111001
+00100000010000000011100110111111
+01111000001010000111110000000000
+11011001011000000001010101111100
+00100000001000000100101000100111
+00100000010000000100101001100101
+00100000001000000011011011000110
+01111001001000000000000000100101
+01000100100011001100000000100011
+00100000010000000100100110000101
+00100000010000000100100110010011
+00100000010000000100101001101101
+01101000000000001100000100110010
+11000000000001010101110110001110
+00100000011000000000000000000000
+01111001001000000010101000000000
+01111000001011101111110000000000
+01111000001100000111110000000000
+01111000010100001111110000000000
+00100000010000000100101000010110
+00011001001100010111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00001000000000001000011000101000
+01111000001000111111110000000000
+01111000001001001111110000000000
+01111001001000000000000000100101
+01000100100011010100000000100011
+01101000000000001100010001100101
+00001000000000001000011000001000
+11101000110000001000000000000000
+00011111111000010111001000111111
+00001000000000001000011000001000
+00100000001000101100101010000011
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000100101010000000
+01111000001001000111110000000000
+00001000000000001000011000011000
+01111000010001000111110000000000
+00110111110100111000001000000000
+00100000000000000000000001100100
+01111000010011101111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100011011100000000100011
+01101000000000001100010100100000
+11000000000000001100101010011011
+01101000000000001100010100100001
+00011111111100100111111000000000
+00011111111010111111111000000000
+01100000000000001100010001100101
+01101000000010001100010000000000
+00011000010000001111111000000110
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+00011000010000100111001000000000
+11011000110000000100010000000001
+00100000010000000111111011000000
+00100000001000000100101010101011
+01101000000010010100010011111000
+00100000010000000100111101101010
+00011010001000100000101000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000001100010100100010
+00011111111100100111111000000000
+00011111111010111111111000000000
+00011111111000001111111000000001
+01100000000000001100010001100101
+01011000000000000000000000001100
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+01101000000000110100001001110011
+11100000101000110000000000000000
+01111001001000000000000000100101
+01000100100011100100000000100011
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011011011000000000011100001000
+01111000010101101111110000000000
+00100000001000000100101001011010
+01111001001000000000000000100101
+01000100100011101100000000100011
+01101000000000001100010100111011
+11000001100000001000000000000000
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011000010000000000110000000011
+01101000000000001100010100111100
+01111101001110100000010000000110
+00011010001000100111111000000000
+01111101001110100000010000000111
+01100000000010010100010001100101
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+00100000001000000100101001011010
+01111001001000000000000000100101
+01000100100011110100000000100011
+11011000010000000000000000000100
+01101000000000001100010100100001
+01111101001110100000010000000110
+01100000000010001100010001100101
+01101000000010001100010000100000
+00011000010000001111111000000110
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+11011000110000000100010000100001
+00011000010000100111001000000000
+00100000010000000111111011000000
+00100000001000000100101001100011
+01111001001000000000000000100101
+01000100100011111100000000100011
+00011000000000000111111111111111
+00111000000010000000000000000001
+01100000000000101000001110010010
+00100000010000000100100111101111
+00011000000000000111001000000100
+11011000101000000000001110000110
+00100000010000000101100100011000
+01101000000000010100010100111001
+01100000000000010000001110010000
+00011000000010100111111000000000
+00011111111000010111111000001111
+00011111111001100111110000000100
+00100000001000010100101011011111
+01100000000000001000001101111011
+01100000000000001000011000001010
+01111001001000000000000000100101
+01000100100100000100000000100100
+01101000000010010100001111110111
+01100000000010010000001101100100
+00011000010000100010011000000000
+00011100010000001111111000000111
+10011010011001101111110000000000
+00100000010000000111111101010011
+00011000000001110010001000000000
+10011010001001100111111000000000
+10011010011000001111111000000000
+01101000000010010100001111110101
+10011000010000001111111000000000
+01100000000000100000001101100110
+10011100010001100010001000000000
+00011010001000001010001111111010
+11011010010000000010001000000101
+01101000000000001100010100110010
+01111101001110100010010000000110
+01101000000000001100010100101011
+01111101001110100010010000000111
+00011010010000100111111000000000
+01100000000000010100010001100101
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+01101000000000100000001110000110
+11100000101000100000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00011000000010100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011010001010110111111000000000
+11100000101000010000000000000000
+00011010011010110111111000000000
+11100000101000010000000000000000
+01111001001000000000000000100101
+01000100100100001100000000100100
+01101000000000010100010100110111
+11100000101000010000000000000000
+01101000000000010100010100111001
+11100000101000010000000000000000
+01101000000000101000001110010010
+11100000101000101000000000000000
+01101000000000001000001101111011
+11011000010000000000000010100000
+10011000010000011111111000000000
+11100000101000001000000000000000
+00100000010000000100101001100011
+01011000000000000100010001100101
+00011111111000001000110000010010
+11101000110000011000000000000000
+01100000000000011000001110001010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100010100000000100100
+01111000010101001111110000000000
+00100000001000000100100110111101
+01101000000000001000001101100010
+11000100000000101000000000000000
+01101000000000010000001101111100
+01101000000010010000001110000010
+10011000010001100111111000000000
+00100100011000010000000000000000
+01111001001000000000000000100101
+01000100100100011100000000100100
+01101000000000001100000100110010
+11000000100001001100101100101101
+01110000010000010011000100000001
+01101000000000001000001101100010
+01111001001111111111111000000101
+01111001001111111111111000000011
+01100000000000001000001101100010
+01101000000000100000001101100110
+01101000000010010000001101100100
+10011000010001100010001000000000
+01111001001000000000000000100101
+01000100100100100100000000100100
+01101000000000001100010001011011
+01100000000000001000001110001101
+11101000110010010000000000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001101100100
+00011000010010111000010000000000
+10011000010000001111111000000000
+11101000110010100000000000000000
+01100000000010100000001110001110
+10011010001000001111111000000000
+01100000000000100000001101100110
+00100000001000000101000110011001
+01111001001000000000000000100101
+01000100100100101100000000100100
+01101000000000001000001101100010
+11000100000000110000000000000000
+01101000000000010000001101111100
+01101000000010010000001110000010
+10011000010001100111111000000000
+00100100011000010000000000000000
+01101000000000001000001101100010
+01111001001111111111111000000110
+01100000000000001000001101100010
+01101000000000101100010001010110
+01100000000000101000001110010010
+00100000001000000100100111101111
+01111001001000000000000000100101
+01000100100100110100000000100100
+00100000010000000101000101111001
+00100000010000000100101101100110
+01101000000000001000001100000010
+00011111111000110111111000000000
+10011000010000101111111000000000
+00101111111011111111111000000010
+01111001001000001000000000001111
+01101000000000001000001100000011
+00100000001110100100101101100001
+01101000000000001000001101100010
+11000011000000100100101101100001
+00100000010000000111000110110110
+00100000010000000111000100100010
+00100100011110100000000000000000
+11000110000001111000000000000000
+01101000000010001000001101111001
+01111001010000000000010000000010
+01100000000010001000001101111001
+00100000001000000100111110100101
+01111001001000000000000000100101
+01000100100100111100000000100100
+01101000000010001000001101111001
+00101000010011000000000000000101
+00100000011000001000000000000000
+01101000000000001000001100000010
+00011111111000111111111000000000
+10011000010000101111111000000000
+11000100000000011000000000000000
+01111001001111111000010000000101
+01111001010000000000010000000011
+01100000000010001000001101111001
+00101000010000000000011000000011
+00100100011000001000000000000000
+01101000000000001100010001100111
+11000000000000101100101101111001
+01101000000000001100010101101011
+11000000000000010100101101111101
+00100000011000000000000000000000
+01101000000000001000001101100010
+01111001001000000111111000000100
+01100000000000001000001101100010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101000100000000100101
+01110000010001010110101100000000
+11011111111000000000000000000000
+01100000000000100100010010010110
+01100000000000101100010010001100
+01111001001000000111111000100111
+01100000000000101100010010010001
+01101000000000001000001101100010
+01111001001111111111111000000100
+01100000000000001000001101100010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101001100000000100101
+00100000010000000100100111010100
+00100000010000000100101000011100
+01101000000000001000000000000001
+00011111111000001111111000000001
+01100000000000001000000000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101010100000000100101
+01101000000000001100001111111001
+11000001100000001000000000000000
+11011000111000000000000000000011
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000000010100001111111010
+01101000000010010100001111111100
+10011000010001100111111000000000
+11011000111000000000000000000011
+00100000010000000111111011010100
+01111000010101001111110000000000
+00100000010000000100101100011110
+00100000010000000100101110001001
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100101011100000000100101
+01101000000000110000001100000100
+01100000000000110000001101110010
+01101000000000001000000000000010
+00011111111000001111111000000001
+01100000000000001000000000000010
+00100000010000000100101110110100
+00100000011101001000000000000000
+00100000010000000100101010110011
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100101100100000000100101
+01101000000000001000000000000100
+00011111111000001111111000000001
+01100000000000001000000000000100
+01101000000001001000001100001010
+01100000000001001000000100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101101100000000100101
+01101000000000001000001110111111
+11000001100011011000000000000000
+01101000000000110000001101110010
+01101000000010110100010100101100
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000011001001111010
+00100100011000101000000000000000
+00100000010000000100101011010100
+00100000010000000100100011110101
+01111001001000000000000000100101
+01000100100101110100000000100101
+01110000010000100111000100000000
+01110000000000111001100100000000
+01110000010000111111100100000000
+01110000000000111011111100000000
+01110000000010011011110100101100
+00100000010000000100101111010110
+00100000001000000011001001100000
+11011010001000000000000000000001
+01101000000000001000001100000010
+11000011100000110000000000000000
+11011010001000000000000000000000
+00100000011000000000000000000000
+11011000110000000100010101000100
+00100000001000000111111110101000
+11011010001000000100010101000100
+00100000001000000111111110100010
+11011010001000000100010101000100
+00100000001000000111111110100100
+11011010001000000100010101000100
+00100000001000000111111110100110
+11011010001000000100010101000100
+00100000001000000111111110001000
+01111001001000000000000000100101
+01000100100101111100000000100101
+01101000000000001000001101111001
+11000011100000101000000000000000
+01101000000000001100000100110010
+11000000000001001100101111100010
+11011010001000000100010101000100
+00100000010000000111111110010101
+00100100001110100100101111110001
+00100000001000000100111110000111
+01101000000000001100100011001000
+00100100001110100100101111101001
+01101000000000001000001101100010
+11000011000000100100101111101101
+01101000000000001000001100000011
+00100000001110100100101111101101
+00100000001000000100111110000111
+01101000000000001100100011001000
+00011111111000001111111111111111
+01100000000000001100100011001000
+00100000001000000100111110000111
+01101000000000001100010101101010
+11000000100000010100101111110000
+01110000010010001100100000000011
+00100000001000000100101111011110
+00011111111000100000010000000000
+01111001001000000000000000100101
+01000100100110000100000000100110
+00011000010000100111111000000000
+11000011000000101100110000001101
+00011000000000000000001000000011
+01111001001111111111111000000101
+01100000000000001100010001100111
+01111001001000000000000000100101
+01000100100110001100000000100110
+01101000000000001100010001100111
+11000000000000000100110001010100
+11000000000000001100110001010110
+11000000000000010100110001011000
+11000000000000011100110001011010
+11000000000000100100110001101011
+11000000000000101100110010000100
+11000000000000110100110010000110
+11000000000000111100110010011100
+11000000000001000100110010100000
+11000000000001001100110010100000
+11000000000001010100110010100100
+11000000000001011100110010100100
+11000000000001100100110010100110
+11000000000001101100110010101010
+11000000000001111100110010101110
+11000000000010011100110010100100
+00100000001000000011101100110001
+01110000010001000110101000000000
+00011000000000000000001000000010
+11000011000000110100110000100110
+11000000001010010100110000100110
+11000000011010010100110000100110
+01110000010001000110100100000110
+01111001001111111111111000000110
+01100000000000001100010001101011
+01111001001000000000000000100101
+01000100100110010100000000100110
+01101000000000001100010001101011
+11000000000000001100110010111011
+11000000000000010100110011000011
+11000000000000011100110011011010
+11000000000000100100110011101000
+11000000000000101100110011101101
+11000000000000110100110011110010
+11000000000000111100110100010000
+11000000000001000100110100100111
+11000000000001001100110100101101
+11000000000001010100110100110010
+11000000000001011100110100110101
+11000000000001100100110100111001
+11000000000001101100110101100100
+00100000001000000011101100110001
+01110000010001000110100100000100
+01100000000000001100010001101011
+01111001001000000000000000100101
+01000100100110011100000000100110
+01101000000000001100010001101011
+11000000000000001100110101101111
+11000000000000010100110101110101
+11000000000000011100110101110101
+11000000000000100100110101111000
+11000000000000101100110101111101
+11000000000000110100110110010011
+11000000000000111100110110100111
+11000000000001000100110111101100
+11000000000001001100110111110100
+11000000000001010100111001011000
+11000000000001011100111001100000
+11000000000001100100111001110111
+11000000000001101100111001111100
+11000000000001110100111010001011
+11000000000001111100111010010010
+11000000000010000100111010111000
+11000000000010001100111011000000
+11000000000010010100111100011110
+11000000000010011100111100100101
+11000000000010110100111100100111
+11000000000010111100111101000110
+11000000000011000100111101100110
+11000000000011001100111101101000
+11000000000011011100111101110111
+11000000000011101100111101111001
+11000000000011110100111101111011
+11000000001010010100111101111101
+11000000011010010100111101111111
+11000000010011110100110001001011
+11000000010011111100110001001101
+11000000000011111100111100101001
+00100000001000000011101100110001
+01110000000010011011110100010000
+00100000010000000100101111010110
+01011000000000000000000000010001
+01100000000000010100010001100101
+01101000000000001000001101111001
+01111001001000000111111000000101
+01100000000000001000001101111001
+01110000000010011011110100010010
+00100000001000000100101111010110
+00011000000000000000010000001100
+00100000001000000100111110001001
+00011000000000000000010000001000
+00100000001000000100111110001001
+00011000000000000000010000000010
+00100000001000000100111110001001
+00011000000000000111111000000000
+11100000101001000000000000000000
+11100000101000010000000000000000
+00011000101000100000010000000000
+11011000101000000100010101010001
+00011000000000000111001000001000
+00100000010000000101100100011000
+01101000000001000100010101010001
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010010011010
+00011000000000000111001000000100
+00100000010000000101100100011000
+01101000000000100100010010011010
+11100000010000100000000000000000
+00011000000000000000010000010111
+00100000001000000100111110001001
+00011000101000100000010000000000
+11011000101000000100010101011001
+00011000000000000111001000001000
+00100000010000000101100100011000
+01101000000001000100010101011001
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010010011110
+00011000000000000111001000000100
+00100000010000000101100100011000
+01101000000000100100010010011110
+11100000010000100000000000000000
+00100000010000000111000011001000
+01101000000000001100010010110010
+11000000000000000100110001111110
+01110000000010011011110100100101
+00100000010000000100101111010110
+00011000000000000000010000001101
+00100000001000000100111110001001
+01110000010001010110101100000000
+01110000000010011011110100101101
+00100000010000000100101111010110
+00100000010000000111111000101001
+00011000000000000000010000001101
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001101001100111110001001
+01101000000000001100000100110010
+11000000000001001100110010010010
+01101000000000001100010101101010
+11000000100000010100110010001111
+01110000000010011011110101000110
+00100000010000000100101111010110
+00100000001000000100110010010000
+01110000010001010110101100000011
+00011000000000000000010000000001
+00100000001000000100111110001001
+01110000010000010011000100000001
+01101000000000001100010101101010
+11000000100000010100110010010111
+01110000000010011011110101000110
+00100000010000000100101111010110
+01110000010001010110101100000011
+00011000000000000000010000000001
+00100000010000000100111110001001
+01110000010010001100001000000001
+00100000011000000000000000000000
+01101000000000001100010101010000
+11100000101000001000000000000000
+00011000000000000000010000000010
+00100000001000000100111110001001
+01011000000000000000000000000001
+11100000101001000000000000000000
+00011000000000000000010000001001
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001000000100111110001001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+01011000000000000000000000000110
+11100000101000001000000000000000
+00011000000000000000010000000010
+00100000001000000100111110001001
+00011000101000001000101111111111
+01011000000000000000000000001100
+11100000101000010000000000000000
+01011000000000000000000000000101
+11100000101000010000000000000000
+01011000000000001011010000010010
+11100000101000010000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000001000100010110001101
+11100000101001000000000000000000
+00011000000000000000001000000010
+00100000001000000100111110000001
+01011001000000000000010000000001
+01100000000000100100010011010101
+01011000000001110000011100010000
+11100000101000011000000000000000
+01101000000000110100010011010110
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000000001100000100110010
+00011111111001100111110000001010
+00100000010000101100110011010001
+01101000000000001100000100110010
+11000000100001001100110011001101
+01110000010001110100011000000001
+01101000000000001100010011011010
+11000010100000001100110011001101
+01011000000000010000000000010000
+11100000101000011000000000000000
+01101000000000110100010011011101
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000010001100010011100001
+01101000000000001100010011011010
+00101111111011111111111000000001
+01111001001000001000010000000001
+01100000000010001100010011100001
+01101000000010001100010011100010
+01111001001000001000010000000001
+01100000000010001100010011100010
+00100000011000000000000000000000
+01101000000000001100010101100011
+11000000000000001100110011100001
+00100000010000000111000011000010
+11011000101000000100010001101100
+00100000010000000111000111000000
+00011000000000000000010000010101
+00100000001000000100111110001001
+11011000101000000100010011000011
+00100000010000000101100100010111
+00100000010000000110111011100111
+11011000101000000100010001101100
+00100000010000000110111100100100
+00011000000000000000010000010101
+00100000001000000100111110001001
+01101000000001000000001101010010
+00100000001101001100110011101011
+01101000000001000100010011000011
+00100000010000000100110101101001
+00100000001000000100111110001001
+01110000010001010110101000000000
+11011111111000000000000000001000
+11100000101000001000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+01110000000010011011110100101001
+00100000010000000111110110000110
+01110000000010011011110101000111
+00100000010000000100101111010110
+01101000000000001100000100110010
+11000000000001001100110100000001
+01101000000001000100010010100010
+00100000010000000100110101101001
+00100000010000000100111110001001
+01101000000000001100010100101011
+11000000000000000011111001111011
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000001000001011111001111011
+00100000011000000000000000000000
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+01101000000001000100010010100010
+00100000010000000100110101101001
+00100000001000000100111110001001
+01101000000000001100000100110010
+11000000000001001100110100100010
+01101000000000001100010011011010
+11000011000000001100110100010111
+01110000000010011011110101001000
+00100000010000000100101111010110
+00100000001000000100110100011001
+01110000010001010110101100000011
+01110000010001010110101000000011
+11011000101000000100010101110001
+00011000000000000111001000001010
+00100000010000000101100100011000
+01101000000000010100010101110001
+01100000000000010100010001101100
+01101000000001000100010101110011
+11100000101001000000000000000000
+00011000000000000000010000001111
+00100000001000000100111110001001
+11011000101000000100010001101100
+00011000000000000111001000001000
+00100000010000000101100100011000
+00011000000000000000010000001111
+00100000001000000100111110001001
+01110000000010011011110101001001
+00100000010000000100101111010110
+01011000000000000000000000000000
+01100000000001000100010001101100
+11100000101001000000000000000000
+00100000001000000100111110000001
+01101000000000001100010100110010
+01100000000000001100010001101100
+01101000000000110100010100111110
+11100000101000110000000000000000
+00100000001000000100111110000001
+11011000101000000100010001101100
+00100000010000000101100100010111
+00100000001000000100111110000001
+01101000000000001100010011011111
+01100000000000001100010001101100
+00011000000000000000010000000110
+00100000001000000100111110001001
+01101000000000001000001111011010
+11000000000000011100110101001110
+11011000010000000000000001000001
+01100000000010010100010001100111
+01111001001000000000000000100101
+01000100100110100100000000100110
+11011000001000000000000000000010
+01011000000000000000000000000110
+01100000000000010100010001101001
+11011000101000000100010001101100
+11011111001000000000000000010110
+11011000110000000100011001011010
+00100000010000000111111011000000
+01110000000000111101101100010110
+01110000010001000110011000011011
+01101000000010001000001101111001
+01111001001000000000010000000100
+01100000000010001000001101111001
+01110000000000111101101000000011
+01101000000010001000001101111001
+00100000001000000100111110010011
+01110000000000111101101000000000
+01101000000000001000001111011011
+11000000000010110100110101011110
+11011111001000000000000000001111
+01110000010001000110011000001111
+00100000010000000100110101011000
+01110000010001010110010000000010
+01110000010001010110011000000011
+01110000000000111101101100000000
+00100000011000000000000000000000
+11011000110000000100011001011010
+10011000110000001000110000000000
+11011000101000000100010001100111
+00100000010000000111111011000000
+11011000001000000000000000000001
+00100000001000000100111110010000
+01110000000000111101101100110001
+11011111001000000000000000011011
+01110000010001000110011000011011
+00100000010000000100110101011000
+01110000000000111101101000000011
+00100000011000000000000000000000
+00100000010000000110111010000110
+11011000101000000100010001101100
+00100000010000000110111100100100
+00011000000000000000010000010101
+00100000001000000100111110001001
+01100000000001000100010001101100
+11101000110001000000000000000000
+11100000101001000000000000000000
+00011000000000000000010000010101
+00100000011000000000000000000000
+01110000000000111001110100001010
+01110000010001000110101100000001
+01101000000000011000001110011010
+01100000000000011100010001101100
+01101000000000001000001110011101
+11100000101000001000000000000000
+00100000001000000100111110000001
+01101000000000010100010101001100
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000010100010011100011
+01100000000000010100010001101100
+01101000000000010100010011100101
+11100000101000010000000000000000
+00100000001000000100111110000001
+11011001011000000000000000000010
+00011000000000000111111000000001
+01100000000000001100010001101100
+00100000010000000101000111100000
+00100000010000000101000111101010
+00100000001110100100110110010001
+00100100001000010100110110001110
+01111000010101000111110000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111011000000
+00011001011000001001011111111111
+00100000001000101100110110010001
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000100110110000001
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000100110110001011
+00100000001101000100110101101110
+00100000001000000100111110000001
+01101000000000010100010011100011
+00100000001110100100110001001101
+01100000000000010100010001101100
+01101000000000010100010011100101
+11100000101000010000000000000000
+01101000000000010100010011111011
+11100000101000010000000000000000
+01101000000000010100010011101000
+11100000101000010000000000000000
+00100000001000000100111110000001
+01111000010101000111110000000000
+01101000000010010100010011100011
+01101000000000010100010011100101
+10011000010001100111110000000000
+00100100001000010100110110100100
+00011000010000100111111000000000
+11000001100000000000000000000000
+01111000001101000111110000000000
+01110000000000111001110100000001
+00100000001000000100110101101111
+00100000010000000100110110011101
+00100000011101000000000000000000
+01101000000010010100010011111011
+01011000000000000010100000000000
+10011000010001100111110000000000
+00100000001000101100110110110111
+01011000000000000010100000000001
+10011000010001100111110000000000
+00100000001000101100110101101110
+01011000000000000010100000000010
+10011000010001100111110000000000
+00100000001000101100110101101110
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100000001000101100110101101110
+00100000001000000100110101101110
+01110000000000111101100100000000
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101001000011010
+00100100001110100100110101101110
+01101000000010010000100111000110
+00100000010000000101001000011010
+00100100001110100100110111010000
+00011000110000100010001000000000
+01101000000000001000001111011000
+00011111111000100111001000000000
+01101000000010001100010011100111
+10011000010001100111110000000000
+00100100001000101100110111001100
+11011010010000000100010011101000
+00100000010000000111111101010101
+00100000001000101100110111010011
+01101000000000010000001111001000
+01101000000010010100010011111011
+10011000010001100111110000000000
+00100000001000101100110111011011
+01101000000000010000100111000110
+00011111111000001111111000000001
+01100000000000010000100111000110
+00100000001000000100110110111100
+01101000000000001000001111011001
+11000000000000001100110111011011
+00100000001000000100110101101110
+01101000000000010000001111001000
+01101000000010010100010011111011
+10011000010001100111110000000000
+00100100001000101100110111001100
+01110000000000111101100100000001
+01101000000010010000100111000110
+01100000000010010000001111000011
+00100000001000000100110111001100
+01101000000000001000001111011001
+11000000000000000100110111001100
+01110000000000111101100100000010
+01101000000010010000100111000110
+00011000010000001000010111111111
+01100000000010010000001111000101
+01101000000000010000001111000011
+00011111111000100010001000000000
+01101000000000010000001111000101
+00011111111000100010010000000000
+01110000010001000110101100000111
+00011010001000100111111000000000
+01100000000000010100010001101100
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001001
+00100000001000000100111110001001
+01101000000000010100010011100011
+11100000101000010000000000000000
+01101000000000010100010011100101
+11100000101000010000000000000000
+01101000000000010100010011101000
+11100000101000010000000000000000
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101000111100000
+00100000010000000101000111111000
+00011000110000001000110111111110
+00011000110000100111111000000000
+01100000000000010000001111000001
+01101000000010010100010011111011
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100100001000101100111000111101
+11011001011000000000000000000010
+01111001001000000000000000100101
+01000100100110101100000000100110
+00100000010000000100111011111111
+00100100001000010100111000010011
+01101000000010010000100111000110
+00100000010000000101001000010111
+11000000000000001100111000010011
+00100000010000000100111100001011
+00100100001000101100111000010001
+00100100001101000100111000010101
+01111000010101000111110000000000
+00100000010000000100111000101000
+00100000010000000100111011111011
+00100000010000000101001000010111
+00100000010000000100111000101111
+00011001011000001001011111111111
+00100000001000101100111000010011
+00100000010000000100111011111011
+00100000001000000100111000000010
+00100000001101000100110101101110
+00100000001000000100111100010011
+00100000010000000100111100001110
+00100000010000000100111011111011
+00100000010000000101001000010111
+01101000000000001100010001101100
+11000000000010101100111000010011
+01101000000000001000001111000111
+00011111111000001111111000000101
+01101000000010001100010001101100
+10011000010001100111110000000000
+00100100001000101100111000010011
+00100000010000000111111001100100
+01101000000000010000100111000110
+00011111111000001111111111111111
+11100000101000010000000000000000
+00100000010000000100111100011010
+00100000010000000100111000101111
+00011001011000001001011111111111
+00100000001000101100111000010011
+00100000001000000100111000010001
+01101000000000010000100111000110
+01100000000000010100010001101101
+01101000000000001000001111011000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000010000000111111011000000
+00100000001000000111111001101010
+00100000010000000111111001100100
+01101000000000010000100111000110
+11100000101000010000000000000000
+00100000010000000111111001101010
+01101000000000001000001111000111
+00011111111000100111001000000000
+00011111111000001111111000000101
+01100000000000001100010001101100
+00100000010000000111111001100100
+00100000010000000111111001100111
+10011111001001100000110000000000
+00011000110000001000110111111111
+00100000010000000111111011000000
+00100000001000000111111001101010
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000100111011111111
+00100100001000010100110101101110
+00100000010000000101001000010111
+11000000000000001100110101101110
+00100000010000000100111100001011
+00100100001000101100111001010110
+01101000000000001100010011111010
+11000000100000010100111001001101
+01101000000000010100010011111011
+11011000010000000010101000000000
+10011000010001100111110000000000
+00100100001000101100111001001101
+01101000000000001100010001000000
+00100000001000000100111001001110
+01101000000000001000001111011000
+00011111111000100111001000000000
+00011111111000001111111000000010
+01100000000000001100010001101100
+01101000000000010000100111000110
+11100000101000010000000000000000
+00100000010000000111111001100111
+00100000010000000111111011000000
+00100000001000000100111110000001
+00100000010000000100111011111011
+00100000001000000100111000111111
+01101000000000001100010001100100
+00011111111000001111111111111111
+01100000000000001100010001100100
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110010010000000000000000
+01100000000010010100010001101100
+00100000001000000100111110000001
+01101000000000001100010110101000
+11000011000000000100111001100110
+01101000000000010000001110011011
+01101000000010010100010110001011
+10011000010001100111110000000000
+00100000001000101100111001110001
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100100110101101110
+11101000110000001000000000000000
+00100000001110100100111110000001
+00011111111001100111110000010110
+00100000001000010100111001101110
+00011000000000000111111000010110
+00011111111000100111001000000000
+00100000010000000111111011000000
+00100000001000000100111110000001
+01101000000000001100010101101100
+00100000001110100100111001100110
+01101000000000001000001101100010
+11000010100000100100111001100110
+01110000000000111001110100000101
+00100000001000000100110101101111
+01011000000000000000000000000011
+01100000000000010100010001101100
+01011000000000000000000000001000
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000010100010011100111
+10011000000000000010001000000000
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100100110101101110
+11101000110000001000000000000000
+10011010001001100111001000000000
+00100100001000010100110101101110
+00011111001001100111110000010110
+00100000001000010100111010000111
+00011000000000000111001000010110
+00011010001000100111111000000000
+10011000110000001000110000000000
+00100000010000000111111011000000
+00100000001000000100111110000001
+01011000000000000000000000000011
+11100000101000010000000000000000
+01011000000000000000000000000111
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000001100010001100100
+00011111111000100010011000000000
+11011010001000000000001100001001
+11011010010000000100010001101100
+11011001011000000000000000000000
+01111000010110001111110000000000
+00011010001000100000110000000000
+11101000110010010000000000000000
+00011000110000100010001000000000
+00100000010000000101000111110101
+00100000001110100100111010101011
+11101000110000001000000000000000
+00011111111000100111001000000000
+10011001011000001001011000000000
+00011001011001100111110000011000
+00100100001000010100111010110000
+00011010010000100000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000100111010100011
+00011000101000100010010000000000
+01111000001110001111110000000000
+00011010011000001010011111111111
+00100000001000101100111010101011
+00100000001000000100111010011000
+00100100001110001100111010110110
+01111000010110001111110000000000
+00011001011000100000010000000000
+00011000010000001000010000000101
+00100000001000000100111110001001
+00100100001110001100111010110110
+01111000010110001111110000000000
+00011001011000100111111000000000
+10011111001001100000010000000000
+00011000010000001000010000000101
+00100000001000000100111110001001
+01110000000000111001110100010000
+00100000001000000100110101101111
+01101000000000010000001110011011
+00100000001110100100110001001101
+11100000101000010000000000000000
+01011000000000001111111111111111
+11100000101000010000000000000000
+01011000000000000010100000000000
+11100000101000010000000000000000
+00100000001000000100111110000001
+11011001011000000000000000000010
+01101000000000010100010011100011
+01100000000000010000100111000110
+01110000000000111101100100000000
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101000111100000
+00100000010000000101000111111000
+00011000110000001000110111111110
+00011000110000100111111000000000
+01100000000000010000001111000001
+01111001001000000000000000100101
+01000100100110110100000000100110
+00100000010000000100111011111111
+00100100001000010100111011110001
+01101000000010010000100111000110
+00100000010000000101001000010111
+11000000000000001100111011110100
+00100000010000000100111100000011
+00100100001000101100111011101101
+01101000000000001000001111011001
+11000000000000001100111011110100
+00100100001101000100111011011101
+01111000010101000111110000000000
+01101000000000001000001111011000
+00011111111000001111111000000100
+01100000000000001100010001101100
+00100000010000000111111001101010
+00100000001000000100111011101000
+01101000000000001100010001101100
+11000000000010100100111011110100
+01101000000000001000001111011000
+00011111111000001111111000000100
+01101000000010001100010001101100
+10011000010001100111110000000000
+00100100001000101100111011110100
+01101000000000010000100111000110
+00011111111000001111111111111111
+01100000000000010000001111000101
+00100000010000000100111100010101
+01101000000000010000100111000110
+01100000000000010000001111000011
+00100000010000000100111100001110
+00011001011000001001011111111111
+00100000001000101100111011101111
+00100000010000000100111011111011
+00100000001000000100111011001101
+01110000000000111101100100000001
+00100000001000000100111011101101
+01101000000000010000100111000110
+01100000000000010000001111000101
+00100000001000000100111011111000
+01101000000000010000100111000110
+00011111111000001111111111111111
+01100000000000010000001111000101
+00100000001000000100111011111000
+00100000001101000100110101101110
+00100000010000000100111100010101
+00100000001000000100111100010011
+01101000000010010000100111000110
+00011000010000001000010000000001
+01100000000010010000100111000110
+00100000011000000000000000000000
+01101000000010010000100111000110
+01101000000000010100010011100101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000010001100010011100111
+11011010001000000100010011101000
+01101000000000001000001111000111
+00011111111000100111001000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+11011010010000000000001111001000
+00100000001000000111111101010101
+01101000000010001100010011111010
+11011010001000000100010011111011
+00100000001000000100111100000101
+01101000000000001000001111011000
+01100000000000001000000100000000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000001000000111111011000000
+00100000010000000111111001100100
+00100000001000000100111110000001
+00100000010000000111111001100100
+01101000000000010000001111000011
+11100000101000010000000000000000
+01101000000000010000001111000101
+11100000101000010000000000000000
+01101000000000001000000100000000
+00011111111000100111001000000000
+00100000010000000111111011000000
+00100000001000000111111001101010
+01101000000000010100010011111000
+01100000000000010100010001101100
+01101000000000001100010100001011
+00011111111000100111001000000000
+11011000110000000100010100001100
+00100000010000000111111011000000
+00100000001000000100111110000001
+00011000000000000000010000000101
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+01101000000000001000001111011010
+11000000000000001100111100101110
+11000000000000010100111100110000
+01110000000000111101101000000000
+00100000011000000000000000000000
+01101000000000010100001010011110
+00100000001000000111111101101001
+01101000000000010100010110100000
+00100000001110100011101100110001
+01101000000010010100010110100110
+00100000001110100011101100110001
+10011000010001100111111000000000
+11011000010000000000000000011011
+00100000010000000111111110101111
+00011111111000100111001000000000
+11011010001000000000101001000001
+01101000000000010100010110100110
+10011010001000001010001000000000
+10011111001000001111111000000000
+01100000000000010100010110100110
+01101000000010010100010110100000
+10011000010001100000010000000000
+00100100010000101100111101011110
+01110000000000111101101000000010
+11011000101000000100010001100111
+00011010001000100000110000000000
+00100000010000000111111011000000
+11011000001000000000000000000001
+00100000001000000100111101011001
+01101000000000010100010110100000
+00100000001110100011101100110001
+00011111111000001000010000000101
+01100000000010010100010001100111
+11011000010000000000000000010010
+00100000010000000111111110101111
+00011111111000100111001000000000
+01100000000000010100010110100110
+01101000000010010100010110100000
+10011000010001100000010000000000
+00100100010000101100111101011110
+01110000000000111101101000000010
+11011000001000000000000000000010
+01101000000000010100010110100100
+01100000000000010100010001101100
+01101000000000010100010110100010
+11100000101000010000000000000000
+11011000110000000000101001000001
+00100000010000000111111011000000
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+00100000001000000100111110010000
+01101000000000011100010101000100
+00100100001110100100111101100010
+01110000010001010100011000011111
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100001110100011101100110001
+01110000010001010100010100011111
+00100000011000000000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000101
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100100110111100000000100110
+00011000010000001000010000000001
+00100000010000000101000111110101
+00011000110000001000110111111110
+11101000110000010000000000000000
+11011000010000000010100100000010
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011000110000001000110000000001
+00011000110000100010001000000000
+11101000110000001000000000000000
+00100000011000000000000000000000
+01101000000000010100001010011100
+00100000001000000111111101101001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100100111000100000000100111
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+00100000001000000100111110001001
+00011000000000000000010000000000
+00011000000000000000001000000001
+01111001001000000000000000100101
+01000100100111001100000000100111
+01100000000010001100010001100110
+00101000001000000000011000000010
+00100100001000001100111110010000
+00011000010000001111111111111100
+01100000000000010100010001100111
+01101000000010001000001101111001
+00100000010000000100101111010000
+01111101001110100000010000000100
+01111001001000000000010000000101
+00011000010000010111111011111100
+10011000001000011111111000000000
+01100000000000001000001101111001
+00011111111000010111111000011111
+01100000000000001100010001100101
+01111001001000000000000000100101
+01000100100111010100000000100111
+01101000000000001100010001100101
+00101000001000000000011000000001
+00100100001000001100111110100000
+01101000000000001100010001100110
+00100000011110100000000000000000
+01101000000000111100010001100110
+01101000000000001000001101100010
+11000100000000100000000000000000
+00100000010000000111000110110110
+00100000001000000111000100001001
+01111001001000000000000000100101
+01000100100111011100000000100111
+00100000010000000100101111010010
+00100100001110100011101100110001
+00100100011110100000000000000000
+01101000000000001000001100000011
+00100000011110100000000000000000
+01101000000000001000001100000010
+00101111111000000000011000000001
+00100000001000001101001100000111
+01101000000000111000001100000011
+01101000000000001000001100000010
+00101111111000000000011000000010
+00100000001000001100111111001011
+01101000000000001000001100000100
+01100000000000001000001110111011
+00011111111000100010011000000000
+01111001001000000000000000100101
+01000100100111100100000000100111
+00011010011000100111111000000000
+11000000000000000101000000011111
+11000000000000001101000000101011
+11000000000000010101000000110011
+11000000000000011101000000111001
+11000000000000100101000001001010
+11000000000000101101000001001111
+11000000000000110101000001010100
+11000000000000111101000001011001
+11000000000001000101000001011010
+11000000000001001101000001011100
+11000000000001010101000001011101
+11000000000001011101000001100010
+11000000000001100101000001100101
+11000000000001101101000001101000
+11000000000010010101000001100011
+01100000000000001100010101010000
+01110000000010011011110100100111
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000010111111000011111
+00100000011110100000000000000000
+01101000000000010000001100000100
+01100000000000010000001110011110
+01101000000000010000001100000110
+11000000000000100101000000001101
+11000000000000110100111111111011
+00100000011000000000000000000000
+01110000010001010110100100000001
+01101000000000001000001110011010
+11000000000010010100111111101010
+11000000000010110100111111101110
+11000000001010010100111111100110
+01110000010001010110100100000000
+00100000011000000000000000000000
+01101000000000001000001100000011
+00011111111000100010010000000000
+11011010001000000000001100000100
+00100000010000000101000101101101
+01101000000000001000001100000011
+01101000000010010100010110011010
+10011000010000001111111000000000
+01100000000000010100010110011010
+01101000000010010100010110011100
+10011000010001100111110000000000
+00100000011000000000000000000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000011000000000000000000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000001000000101000100100011
+01101000000010010100010110100000
+01101000000000001000001100000011
+00011111111000100111001000000000
+10011000010000001111111000000000
+01100000000000010100010110100000
+11011111111000000000101001000001
+10011000010000001000101000000000
+11011000110000000000001100000100
+00100000010000000111111011000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000001000000101000101101001
+01111001001000000000000000100101
+01000100100111101100000000100111
+11101000110000001000000000000000
+11000000000000001101000001101001
+11000000000000010101000010001011
+11000000000000011101000010010000
+11000000000000100101000010100000
+11000000000000101101000010101000
+11000000000000110101000011010101
+11000000000000111101000011010111
+11000000000001000101000011011000
+11000000000001001101000011100000
+11000000000001010101000011100011
+11000000000001011101000011100100
+11000000000001100101000011001001
+11000000000001101101000011010000
+01110000000010011011110101000101
+00100000001000000100101111010110
+01111001001000000000000000100101
+01000100100111110100000000100111
+11101000110000011000000000000000
+01100000000000011000001110011010
+11000000000000010101000011101000
+11000000000000011101000011100101
+11000000000000100101000011101011
+11000000000000110101000011101110
+11000000000001000101000011111000
+11000000000001010101000100001100
+11000000000001100101000100010000
+11000000000001110101000100010100
+11000000000010000101000100011010
+11000000000010010101000100100000
+11000000000010110101000101000010
+11000000000011000101000101101011
+11000000001010010101000100011110
+00100000011000000000000000000000
+11101000110001001000000000000000
+01100000000001001100010001011011
+11101000110000010000000000000000
+01100000000000010000001110000010
+01101000000000001000001101100010
+01111001001000000111111000000101
+01100000000000001000001101100010
+01101000000000001100000100110010
+11000001100001001000000000000000
+01110000010000010011000100000000
+01110000010010001100011100011110
+00100000011000000000000000000000
+11101000110000101000000000000000
+01100000000000101100010001010110
+11101000110000010000000000000000
+01100000000000010000001110000010
+01101000000000001000001101100010
+01111001001000000111111000000110
+01100000000000001000001101100010
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000000100001001101000000110110
+01110000010010001011101100000001
+01011000000000000000000000010100
+01100000000000010000001110010000
+00100000011000000000000000000000
+11101000110001000000000000000000
+01100000000001000100010101110011
+11101000110000010000000000000000
+01100000000000010100010101110001
+11101000110001000000000000000000
+01100000000001000100010101010001
+11101000110000100000000000000000
+01100000000000100100010010011010
+01110000000010011011110100100100
+00100000010000000100101111010110
+01110000010001010110101100000001
+01101000000000001100010101101010
+11000001000000010000000000000000
+01101000000000001100000100110010
+11000000000001001110010000011000
+11000001100001010000000000000000
+00100000001000000110010000001100
+11101000110001000000000000000000
+01100000000001000100010101011001
+11101000110000100000000000000000
+01100000000000100100010010011110
+00100000001000000111000011001000
+01101000000000001000001101100010
+01111001001000000111111000000100
+01100000000000001000001101100010
+01110000000010011011110100100110
+00100000001000000100101111010110
+00100000011101001000000000000000
+01110000000010011011110100100110
+00100000010000000100101111010110
+01110000000010011011110100110010
+00100000001000000111110110000110
+00100000011000000000000000000000
+01110000000010011011110100101001
+00100000001000000100101111010110
+00100000011000000000000000000000
+01110000010001010110101100000010
+01110000000010011011110100101011
+00100000010000000100101111010110
+01110000000010011011110100110011
+00100000001000000111110110000110
+00100000011000000000000000000000
+01110000000010011011110100110011
+00100000001000000100101111010110
+00100000011101001000000000000000
+01110000000010011011110100101100
+00100000001000000100101111010110
+00100000011000000000000000000000
+01100000000000001100010011010101
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010011011110101000010
+00100000010000000100101111010110
+01101000000000001100000100110010
+11000000000001001101000001111011
+00100000010000000101000010000110
+01110000010001010110101000000001
+01101000000000001100010011010110
+11000000000000000101000001111000
+11000000000000001101000001111000
+11000000000000011101000001111000
+01101000000000001100010101101100
+11000000000000010101000001111101
+11011111111000000000000000000000
+01100000000000100100010101101101
+00100000011000000000000000000000
+01110000010010001011101000000001
+00100000011000000000000000000000
+11011010001000000100010101101101
+00011010001000100000101000000000
+11011111001000000000000000000011
+00100000010000000101100100011000
+01101000000000010100010101101111
+00011111111000010111111000000111
+01100000000000010100010101101111
+01110000000010011011110100110100
+00100000001000000111110110000110
+01101000000000001100010011011000
+11000011100000011000000000000000
+01101000000000001100010101101100
+11000100000000111000000000000000
+00100000001000000011111001101011
+01100000000000001100010011011100
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010011011110101000011
+00100000001000000100101111010110
+00011000110000100010001000000000
+01101000000000001100010101101100
+11000000010000011101000010011010
+00011010001000100000110000000000
+11011000101000000100010010110011
+00100000010000000111111010000111
+01110000000010011011110101000100
+00100000001101001100101111010110
+01110000000010011011110101000011
+00100000001000000100101111010110
+00011010001000100000110000000000
+11011000101000000100010010110011
+00100000010000000111111010000111
+01110000010001010110010000000010
+01110000010001010110011000001000
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100010101100011
+11000000000000001101000010101011
+00011010001000100000110000000000
+00100000010000000111000010111010
+00100000001000101101000011000000
+01110000000010011011110101000101
+00100000010000000100101111010110
+01110000010001010110101000000000
+01110000000010011011110100110000
+00100000001000000111110110000110
+11011000101000000000001101010010
+00011010001000100000110000000000
+00100000010000000111111010000111
+01101000000000001100010101101100
+11000000010000011101000010110110
+00100000010000000110111001101110
+01110000000010011011110101000100
+00100000010000000100101111010110
+01101000000000001100010101101100
+11000000010000010101110101100000
+00100000011000000000000000000000
+00100000010000000110111011011100
+11011000101000000000101000010001
+00100000010000000110111100100100
+11011010001000000000101000010001
+11011010010000000100010010110011
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100100001000101101001011011000
+01110000000010011011110101000100
+00100000001000000100101111010110
+00100000010000000111000010110101
+01110000000010011011110100110001
+00100000010000000111110110000110
+01110000010001001011001000000001
+01110000010001010110101000000010
+01110000000010011011110100100011
+00100000001101001100101111010110
+01110000000010011011110101000100
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111011
+01100000000000001000001111011011
+00011111111000100111001000000000
+11011000101000000000100011100010
+00011000110000001000110000000101
+00100000001000000111111011000000
+11011000101000000000100110010010
+00100000010000000111111010000111
+01110000010001010110011000000110
+01110000010001010110010000000010
+00100000011000000000000000000000
+11011000101000000000001101000010
+00100000001000000111111010000111
+00100000011000000000000000000000
+11011000101000000100010101111011
+00100000010000000111111010000111
+01101000000000001100010100101011
+11000001000000000000000000000000
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000011000001000000000000000
+00100000001000000011111001111011
+01110000010001010110101100000011
+01110000010001010110101000000011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000010000001100001001
+01100000000000010100010101001110
+00100000011000000000000000000000
+00100000010000000101000011100101
+01110000000010011011110100000011
+00100000001000000100101111010110
+00100000010000000101000011111100
+01110000000010011011110100000101
+00100000001000000100101111010110
+00100000010000000101000011111100
+11101000110000010000000000000000
+01100000000000010100010011111011
+00100000010000000111111001101101
+11011000101000000100010011100111
+01101000000000010000001110011110
+00011111111000001111111111111001
+00100000010000000101000100000101
+01110000000010011011110100000111
+00100000001000000100101111010110
+00100000010000000101000011111100
+00100000010000000101000100001001
+01110000000010011011110100001001
+00100000001000000100101111010110
+00011111111011001111111000000000
+01100000000000010100010011100011
+11101000110000010000000000000000
+01100000000000010100010011100101
+00100000011000000000000000000000
+00100000010000000111111001101101
+11011000101000000100010011100111
+01101000000000010000001110011110
+00011111111000001111111111111011
+11100000101000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000001000000111111011000000
+00100000010000000111111001101101
+11011000101000000100010011111010
+00100000001000000101000100000011
+01101000000000010000001100001001
+01100000000000010000001110011011
+01110000000010011011110100001011
+00100000001000000100101111010110
+11101000110000010000000000000000
+01100000000000010100010011100111
+01110000000010011011110100001101
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111011
+00011111111000110111111000000000
+01100000000000001100010001100100
+01110000000010011011110100001111
+00100000001000000100101111010110
+00100000010000000101000011111100
+00100000010000000101000100000001
+01110000000010011011110100010001
+00100000001000000100101111010110
+00100000010000000101000100101111
+00100000001000000101000100100101
+00100000010000000101000100101111
+00100000010000000101000100100101
+00100100011000101000000000000000
+01110000000010011011110100010011
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111100
+01100000000000010100010110011010
+00011111111000001111111111111101
+11101000110010010000000000000000
+01100000000010010100010110011100
+01100000000010010100010110011110
+00011000010000001000010111111101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001000001100000011
+00011111111000001111111111111001
+00011111111000100111001000000000
+00011111001000100010010000000000
+01101000000000001100010110101000
+11000011000000001101000101000000
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000011110100000000000000000
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100000001000010101000100111100
+00011111111000100111001000000000
+00011000110000100000101000000000
+00011111001000100010010000000000
+11011000110000000000001100001011
+00100000010000000111111011000000
+11011010001000000000001100001011
+00100000001000000101000101101101
+01101000000000001000001100000011
+00011111111000001111111111111100
+01100000000000010100010110011010
+11101000110010010000000000000000
+01100000000010010100010110011100
+00011000010000001000010111111110
+01100000000010010100010110011110
+01101000000000001000001100000011
+00011111111000001111111111110111
+01100000000000010100010110100000
+00011111111000100111001000000000
+00011111001000100010010000000000
+01101000000000001100010110101000
+11000011000000001101000101011011
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100101000101101001
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100000001000010101000101010111
+00011111111000100111001000000000
+00011000110000100000101000000000
+00011111001000100010010000000000
+11011000110000000000001100001101
+00100000010000000111111011000000
+00011010010000100111001000000000
+11011000101000000000101001000001
+11011000110000000000001100001101
+00100000010000000111111011000000
+11011010001000000000001100001101
+01101000000000010000001100001011
+01100000000000010100010110100010
+01101000000010010000001110011011
+01100000000010010100010110100100
+00100000010000000101000101101101
+01101000000000010100010110011010
+01101000000010010100010110011100
+10011000010001100111110000000000
+00100100011000101000000000000000
+01110000000010011011110100010111
+00100000001000000100101111010110
+01110000000010011011110100011001
+00100000001000000100101111010110
+01101000000000010100001010011010
+00100000011110100000000000000000
+10011000000000000111101000000000
+01101000000010100000001101111110
+00100000010000000011101100011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000001110010000
+00011000010100100000010000000000
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+00100000010000000011101100011110
+01100000000000100000001101111110
+00100000011000000000000000000000
+01110000000000000001011000100100
+01111001001000000000000000100101
+01000100100111111100000000100111
+01101000000000001100001111111111
+00100000011110100000000000000000
+11011000111000000000000000000001
+00100000010000000111111011100010
+00100100011110100000000000000000
+01111000010101001111110000000000
+01111000001010000111110000000000
+00100000010000000100101100011110
+00100000010000000100100111010100
+00100000010000000100101010001010
+00100100001101101101000110010011
+01101000000000001000000000000011
+00011111111000001111111000000001
+01100000000000001000000000000011
+01111001001000000000000000100101
+01000100101000000100000000101000
+01101000000000001000001100000010
+00011111111000010111111000001111
+11000000000000011100101011000101
+11000000000000101101000110101111
+00100000000000000010011100010000
+01101000000000001000000000010110
+11000000100100111101000101111101
+11011000111000000000000000000001
+01101000000000010100010100011110
+00100000001000000111111011010100
+01111001001000000000000000100101
+01000100101000001100000000101000
+01101000000000001000001110011001
+00100000010000000100100110101101
+01101000000000010000001101100100
+10011000010011111111111000000000
+11011000010000000000000101110111
+10011000010011111111111000000000
+11011000010000011000011010100000
+10011000010001101111110000000000
+01101000000000001000001110001101
+11011000010000000100111000100000
+10011000010011111111111000000000
+01100000000000100100010110010110
+01111001001000000000000000100101
+01000100101000010100000000101000
+01101000000000010100000101100001
+00100000010000000111111101010011
+00011000000001111000010000000000
+10011000010000001111111000000000
+01100000000000010000001101110000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000011100000000101000
+01101000000000110000001100001010
+01101000000010110100010100111110
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000100101111001001
+00011010001000100111111000000000
+01100000000000001100010100101011
+01101000000000111000001100010111
+01100000000000111000000100000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000110000001100000100
+01100000000000110000001101110010
+01111001001000000000000000100101
+01000100101000100100000000101000
+00011000110000001000110000000110
+11101000110001000000000000000000
+01100000000001000000001110000110
+11101000110010010000000000000000
+00011000010010111000010000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001101100100
+01100000000000100000001101100110
+10011000010001100111111000000000
+00011111111000001101000111111110
+11101000110001001000000000000000
+01100000000001001000001110001110
+01111001001000000000000000100101
+01000100101000101100000000101000
+11101000110000001000000000000000
+00011111111100011000010000000000
+00011000010000110000010000000000
+01100000000010001000001110011001
+00011111111000010111111000011111
+01100000000000001000001101111011
+00100000010000000101000110011001
+00100000010000000100100111101111
+00100000010000000100100100000010
+00100000010000000011001001111010
+00100100011000101000000000000000
+01111001001000000000000000100101
+01000100101000110100000000101000
+00100000010000000011100011010001
+01110000000010011011110100010100
+00100000010000000111110110000110
+00100000001000000011001001100000
+01111001001000000000000000100101
+01000100101000111100000000101000
+01101000000000010100010011100011
+10011000000000000010010000000000
+01101000000000010100010011100101
+10011000000000000010011000000000
+01101000000000010100011000110111
+10011000000000000000110000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+10011010010001100111110000000000
+00100100011000010000000000000000
+10011010011001100111110000000000
+00100000011000101000000000000000
+00100000001000010101000111110011
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+00100000010000000101000111111000
+00100000001000101101001000000101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001000100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101000111111100
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001001100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00011000110000001000110111111110
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101001000001100
+01101000000000010000001111000001
+00011111111000100000110000000000
+00100000001000000101001000011011
+01111001001000000000000000100101
+01000100101001010100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+00011000010000100010001000000000
+11101000110000010000000000000000
+00100000001110100101001000101000
+10011010001001100111110000000000
+00100000001000101101001000101010
+11101000110000001000000000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101001000011111
+01011000000000000000000000000001
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001000001111000111
+00011111111000100111001000000000
+11011000101000000000001111001000
+00100000010000000111111011000000
+11101000110000001000000000000000
+01100000000000001000001111011000
+00100000010000000111111001101101
+01011000000000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001011100000000101001
+00100000010000000101001000111000
+00100000001000000101001001001010
+11011000010000000010101000000000
+00100000010000000101001000001000
+00100000011110100000000000000000
+11101000110000001000000000000000
+00011000110000100000101000000000
+01101000000010001100010001000000
+00011000010000100111001000000000
+10011000010001100111110000000000
+00100100001000010101001001000111
+10011000010001100000010000000000
+11011000110000000100010001000001
+00100000010000000111111011001101
+00011000010000100111001000000000
+00100100010000101101001010000011
+00100000011000000000000000000000
+00011111111000100111001000000000
+11011000110000000100010001000001
+00100000001000000111111011000000
+11011010011000000100010000100000
+11011010001000000100010000000001
+00100000010000000101001001010111
+01011000000000000000000000000000
+01111001001101000111111000000000
+01100000000000001000100110111110
+11011010011000000100010001000000
+11011010001000000100010000100001
+00100000010000000101001001010111
+00100000011101000000000000000000
+01101000000000001000100110111110
+00100000001110100011101100110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001100100000000101001
+00100000010000000110010011000000
+00100000010000000111111010100101
+11011010010000000000000000000000
+11011000101000000000100111100010
+00100000010000000101001001110010
+01101000000000001100010001000000
+00011111111000001000010000000001
+10011010010000001010001000000000
+00011010001000001010001000000010
+00011010001001100111110000011111
+00100100001000010101001001110000
+11100000101010001000000000000000
+11011000010000000000000000001001
+11100000101010001000000000000000
+10011000000000000111001000000000
+00100000010000000111111011000000
+00011010001000100010010000000000
+00011010010000100111111000000000
+01100000000000001000100111100001
+11011000110000000000100111100001
+01011111111111111111111111100000
+10011010011000001000101000000000
+00100000001000000111111010000101
+00100000010000000011000111010100
+00100000001000000101001001101010
+11101010001000001000000000000000
+00100000011110100000000000000000
+00011111111000001111111000000001
+11101000110010001000000000000000
+00011000010001100111110000001001
+00100000001000101101001010000001
+10011010010000001010010000000000
+00011010001000100000110000000000
+10011000000000000111001000000000
+00100000010000000111111011000000
+00011000110000100010001000000000
+00011010001000100111111000000000
+10011010011001100111110000000000
+00100000011000010000000000000000
+00100000001000000101001001110010
+10011010001000001010001000000000
+00100000001000000101001001111101
+01011000000000000000000000100000
+11100000101000001000000000000000
+11000010000000000101001010000011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001101100000000101001
+01111000010101011111110000000000
+00100000001101110101001010001100
+00100100001101101101001010011010
+00100000010000000011110010110111
+01101000000000010100000101100001
+01100000000000010000001101110000
+01101000000000001000001100000010
+00101111111000000000011000000001
+00100100001000001011110011001011
+01101000000000001100010001100101
+00101111111000000000011000000001
+00100100001000001011110011001011
+01101000000000010100001010100010
+00100000010000000111111101101001
+01101000000000001000001101100010
+11000010100000101011110011001011
+00100000001000000011110010110000
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000001101110000
+10011000010000001111111000000000
+01100000000000010000001101110000
+00100000001000000011110011000011
+01111001001000000000000000100101
+01000100101001110100000000101001
+01110000010001011001010100000000
+01101000000010010100010011111000
+00100000010000000100111101101010
+00011010001000100000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001100010101100011
+11000001000000000000000000000000
+01101000000000001100010101100100
+11000001100000010000000000000000
+01111001001000000000000000100101
+01000100101010000100000000101010
+01110000010001010110010000000000
+01101000000000001100010101100110
+11000000000000001101001011101000
+11000000000000010101001011110000
+11000000000000011101001011100001
+11000000000000110101001011001010
+11000000000000111101001011000010
+11000000000001000101001010111000
+00100000011000000000000000000000
+01101000000000001100011011101011
+00011111111000100000111000000000
+00011111111000001111111000000001
+01100000000000001100011011101011
+01101000000000100100010101101101
+10101111111011111111111111111111
+01011000000000000000000010000000
+01111001001000001111111000000000
+01100000000000001100011011101100
+00100000001000000101001011100100
+01101000000000001100010101100111
+01110000010001010110011100000000
+11000000000000001101001011000111
+01110000010001010110010000000010
+00100000011000000000000000000000
+01110000010001010110101000000010
+01110000000010011011110101001101
+00100000001000000100101111010110
+01101000000000001000100011011101
+11000000000000011101001011001110
+01110000010001010110010000000010
+00100000011000000000000000000000
+00100000010000000110111010101110
+01101000000000001100010101101100
+11000000010000011101001011011001
+00100000010000000101000001111000
+00100000010000000110111010011010
+11011010001000000000101000010001
+11011010010000000000100110010010
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100000001000101101001011011010
+00100000001000000101000010100110
+00100000001000000101001011010010
+01110000010001001011001000000001
+01101000000000001100010101101100
+11000000010000001101001011000111
+11000000010000011101001011000111
+01110000010001010110010000000010
+01110000010001010110011000000111
+00100000011000000000000000000000
+01101000000000001100010101101100
+11000000010000011101001011100110
+01110000010001101110110000000000
+01110000000010011011110101000011
+00100000001000000100101111010110
+01110000010001101110101100000000
+00100000001000000101000001111101
+01110000010001010110010000000010
+01101000000000001100010101101000
+11000000000000011101001011101100
+00100000011000000000000000000000
+01110000000010001101110100000000
+00100000010000000111101010111001
+01110000010001010110011000000010
+00100000011000000000000000000000
+00100000010000000100101111010000
+00100000001110100101001011110100
+01110000010001010110010000000010
+00100000011000000000000000000000
+01110000000010011011110101001100
+00100000010000000100101111010110
+01110000000010011011110101001100
+00100000010000000100101111010110
+01110000000010011011110101001100
+00100000001000000100101111010110
+11011111111000000000100011100010
+01101000000010001000001111011011
+10011000010000001000101000000000
+01101000000000001000001100000011
+00011111111000100111001000000000
+10011000010000001000010000000000
+00100000010000000111111011000000
+01100000000010001000001111011011
+00011000010000100111111000000000
+11000001101000000000000000000000
+01110000010001010110010000000010
+01110000010001010110011000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010001100000000101010
+01101000000000001000001111011011
+11000000100000000101001011111010
+00100000001000000100111111010100
+00100000011101011000000000000000
+01111001001000000000000000100101
+01000100101010010100000000101010
+01011000000000000000000000000000
+01100000000000001000000001001000
+01100000000000001000000001010101
+01100000000000001000000001111000
+01100000000000001000000001111100
+01100000000000001100000111111000
+01100000000000001000001111111101
+01100000000000001000000101101100
+01100000000000001000100011011001
+01110000010001011111010000000000
+01110000000000100100110100000000
+01110000000000111111111000000000
+01110000000010001101100100000000
+01110000000010001101100000000000
+01110000000000111111011100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010011100000000101010
+00100000010101001101100100001010
+00100100010101001101100100001110
+00100000010000000101100011000101
+00100100011110100000000000000000
+01101000000000001000000001001100
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001111111000000000000001
+01100000000000001000000001001100
+01101000000000001000010001110101
+01101000000010001000000001001100
+00101111111011111111111000000000
+01111001001000001000010000000001
+01100000000010001000000001001100
+00011000010000010000010000000010
+01100000000010001000000001111111
+01101000000010001000000001001100
+00011111111000110111111000000000
+01100000000000001000000001111101
+01111001001000000000000000100101
+01000100101010100100000000101010
+01101000000000001000000001111101
+11000000001111111101001101111111
+11000000000000011101001111001011
+11000000000000100101001111011101
+11000000000111100101001101110010
+11000000000000101101001101101110
+11000000000001111101010110111111
+11000000000010000101010001000000
+11000000000100011101010001011110
+11000000000111001101010111011000
+11000000000111000101010111010011
+11000000000110001101010001000011
+11000000000110111101010011001100
+11000000000100111101010011001000
+11000000000110011101010011000101
+11000000000100101101010011001010
+11000000000100110101010001011010
+11000000000000111101010001010010
+11000000000101101101010001001001
+11000000000101110101010001001010
+11000000000000001101010011000001
+11000000000000010101010010101100
+11000000000101000101010111001010
+11000000000001001101010010100010
+11000000000001011101010001111011
+11000000000001000101010001011111
+11000000000001100101010010000110
+11000000000011111101010001010110
+11000000000100000101010001011000
+11000000000100001101010011100110
+11000000000100010101010011100110
+11000000000110101101010011100111
+11000000000110110101010011101000
+11000000000100100101010011100110
+11000000000110100101010011101001
+11000000000010111101010011110010
+11000000000010001101010100001001
+11000000000010010101010100001101
+11000000000010011101010100001111
+11000000000001101101010100100001
+11000000000001110101010100100001
+11000000000101111101010011000110
+11000000000110000101010100100001
+11000000000001010101010100100001
+11000000000011000101010100100010
+11000000000110010101010100100001
+11000000000111101101010100100111
+11000000000111110101010101101000
+11000000000111111101010101100010
+11000000001000000101010110001111
+11000000001000001101010110100001
+11000000000000110101010110111110
+11000000000111010101001101110000
+01110000000000000111111000011001
+01110000000000000111110000000100
+00100000011000000000000000000000
+01110000000000000111110000000110
+00100000011000000000000000000000
+01110000000000000111110000111011
+00100000011000000000000000000000
+01101000000000100000010001110110
+00011111111000111111111000000000
+01100000000000100100000101110010
+01101000000000001000010001111010
+01100000000000001100000101111001
+01101000000000101000010001111011
+01100000000000101100000110000111
+01101000000000101000010010000000
+11100000101000101000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010101100000000101010
+01101000000000001000010001110110
+01111001001000000111111000000111
+01100000000000001000000001111101
+11000000010000001101001110100010
+11000000010000010101001110100111
+11000000010010101101010011001101
+11000000010010110101010011100110
+11000000010001011101010011011011
+11000000010000011101001110111111
+11000000010000100101001111000001
+11000000010010000101001110010100
+11000000010010111101001110111000
+11000000010011000101001110111101
+11000000010011001101001110010111
+11000000010011010101001110011010
+11000001010000100000000000000000
+01110000000000000111110010000010
+01110000000000000111111000011001
+00100000011000000000000000000000
+01110000000000000111110010000010
+01110000000000000111111000101110
+00100000011000000000000000000000
+00100000010000000101001110011100
+01110000000000000111110010011010
+00100000011000000000000000000000
+00100000010000000101001110011100
+00100000001000000101001110100000
+11011000101000000100011011100110
+01101000000000011000010001110111
+11100000101000011000000000000000
+00100000011000000000000000000000
+00100000001000001111011011110011
+00100000011000000000000000000000
+01101000000000001000010001111000
+01111001001000000111111000000111
+01100000000000001000001111101111
+11000000010001011101001110101100
+00100000011000000000000000000000
+01101000000000001000010001111000
+01111001001000000111111000000111
+01100000000000001000001111101111
+11000000010001011101001110110000
+00100000011000000000000000000000
+01101000000000001100000111111010
+01101000000010001000000001001100
+01111101001110100000010000000101
+01100000000010001000000001001100
+01101000000000001000000000110000
+11000100000000101000000000000000
+01111001001111111111111000000101
+01100000000000001000000000110000
+01101000000000001000001111111101
+00100100011110100000000000000000
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100100001101001101001110111011
+01110000000000000111110000010010
+00100000001000000101100011110110
+01110000000000000111110010010111
+00100000011000000000000000000000
+00100000010000000101100011110110
+00100000001000000101011000010101
+01110000000000000111110010000100
+00100000011000000000000000000000
+01101000000010001000010001111001
+00011000010000010000010000000001
+01100000000010001000001111110110
+01101000000000001100001001110001
+11000000101010001101001111000111
+01110000010000100111000100000000
+01101000000000001000000001010101
+11000001100010101000000000000000
+01110000000000000101010100000100
+00100000001000000101100100100110
+01111001001000000000000000100101
+01000100101010110100000000101010
+01101000000000001000010001110110
+01100000000000001000001111101111
+11000000000110011101001111110100
+11000000000001000101010000000011
+11000000000001111101010000001010
+11000000000010000101010000010000
+11000000000010001101010000010001
+11000000000010010101010000011001
+11000000000011000101010000101111
+11000000000010111101010000110010
+11000000000010011101001111101011
+11000000000111101101010100110101
+11000000000111110101010110000001
+11000000001000000101010100110111
+11000000001000001101010101010100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010111100000000101010
+01101000000000001000010001110110
+01100000000000001000001111101111
+11000000000000001101010000100110
+11000000000110011101001111111110
+11000000000001011101010000011010
+11000000000001000101010000011101
+11000000000010011101001111101110
+11000000001000000101010000100111
+11000000001000001101010000101010
+11000000000011000101010000101101
+11000000000010111101010000111110
+00100000011000000000000000000000
+01110000000010011011110100100000
+00100000010000000111110110000110
+00100000001000000011001000001010
+01110000000010011011110100011001
+00100000010000000111110110000110
+01110000010001011111010000000010
+01011000000000000000000001010000
+11011000111000000000000000001010
+00100000001000000111111011010100
+01101000000000001000001111110111
+01111001001000000111111000000000
+01100000000000001000001111110111
+01110000000010011011110100000001
+00100000010000000111110110000110
+01110000000000000111110010001011
+01101000000000001000000001010101
+11000000100000101101001100011110
+01110000000000000101010100000110
+00100000011000000000000000000000
+01110000000000111111000000001011
+01110000000000000111110000000111
+01110000000000000101010100000000
+00100000001000001101001100011110
+00100000011000000000000000000000
+01101000000000001100001001011101
+00100100011110100000000000000000
+00100000010000000011010010101001
+00100000010000000101011000010011
+00100000011101001000000000000000
+01111001001000000000000000100001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010000
+01101000000000001000000001001100
+11000100000000010000000000000000
+01110000000000000111110000010010
+00100000011000000000000000000000
+00100000001000000101011000010101
+00100000010000000101011001110010
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+01101000000000001000000001010101
+11000001100001010000000000000000
+01110000000000000101010100001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010011
+00100000011000000000000000000000
+01101000000000001000010001110111
+11000000000000110101010000100011
+11000001100011000000000000000000
+01110000000000111111000000011000
+01110000000000000111110000000111
+00100000011000000000000000000000
+01110000000000111111000000000110
+01110000000000000111110000000111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000010001101001000000000
+01110000000000000111110000000111
+00100000001000000101001100011110
+01110000000010001101001000000000
+01110000000000000111110000000111
+00100000001000000101001100011110
+01110000000010011011110100100100
+00100000001000000111110110000110
+01110000000010011011110100100011
+00100000010000000111110110000110
+00100000001000000011011101101010
+01110000000010011011110100100010
+00100000010000000111110110000110
+01011000000000000000000000000000
+01100000000000010000000001110101
+01101000000000010100001010000100
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000001100001010000110
+01100000000000001000000001110011
+01101000000000001100001010001000
+01100000000000001000000001110100
+00100000001000000011011101000110
+01110000000010011011110100100001
+00100000001000000111110110000110
+01101000000010001000010001110110
+01100000000010001000000001010100
+00100000001000000101010001010100
+01101000000000001000001111110111
+01111001001000000111111000000010
+01100000000000001000001111110111
+11000011100000011000000000000000
+01110000000000000111110000110001
+00100000001000000101001100011110
+00100000011000000000000000000000
+01101000000000001100000101110000
+01101000000010001000010001110110
+10011000010001100111110000000000
+00100000001000010101010001010100
+01110000000000000111110000000100
+01110000000000000111111000011111
+01110000000000000111110100101110
+00100000011000000000000000000000
+00100000010000000101011101100100
+00100000001000000101010001010100
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000100001
+00100000011000000000000000000000
+01110000000000000111110000100010
+00100000011000000000000000000000
+01101000000000001000000001010101
+11000001000010011000000000000000
+01110000000000000101010100000010
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000101011000010000
+01110000000000111111101000000001
+01110000000010011011110100001010
+00100000010000000111110110000110
+00100000010000000101100011111110
+00100100001000001101011000011000
+00100100001101001101010001101010
+01110000000000000111110000000100
+01110000000000000111110100001000
+01110000000000000111111000100011
+00100000011000000000000000000000
+01101000000000001000000001001011
+01111001001000000111111000000010
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111101001110100000010000000001
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000000001000000001111111
+00011111111000110111111000000000
+00011111111000010111111000000001
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000001100001010000000000000000
+01101000000000001000100011011001
+00100000010110100110010000000010
+00100000011000000000000000000000
+00100000010000000101010001110110
+00100000010000000101010001110010
+01100000000000001000001111111011
+00100000010000000101011000010000
+01110000000000000111110000001100
+01101000000000001100001001011101
+00100100011110100000000000000000
+01101000000000001000000000110000
+11000011100000110000000000000000
+01110000000000000111111000000110
+00100000001000000101001101101100
+11011010001000000000000001000000
+00100000010000000110111110101101
+01101000000000100000010001110110
+01101000000010100000010010110110
+10011000010001100111110000000000
+00100000001000101101010010001111
+01110000000000000111110000000111
+01110000000000111111000000000101
+00100000011000000000000000000000
+00100000010000000101010010010011
+01101000000000001100011011100010
+00100000001110100101010101010101
+00100000011000000000000000000000
+00100000010000000111000010101011
+00100000010000000011000111011010
+01101000000000001000000001001011
+00101111111011111111111000000001
+01111001001111111111111000000001
+01100000000000001000000001001011
+01101000000000001000000001010101
+11000000000011001101010010011101
+11000000000011000101010010011101
+00100000011000000000000000000000
+01101000000000001000100011011001
+11000001100000000000000000000000
+01101000000000001000000001001100
+11000011100000010000000000000000
+00100000001000000101100110111101
+11011010001000000000010001110110
+11011010010000000000010010100110
+11011000101000000000010010000110
+00100000010000000111000001110111
+11011010001000000000000001000000
+00100000010000000101100100011100
+01110000000000000111110000001011
+01101000000000001000000000110000
+11000011000000110101011000010011
+00100000011000000000000000000000
+01101000000000010000000101011110
+00011111111000001111001111111101
+01101000000010001000010001110110
+01011000000000000000000100000000
+10011000010000001000101000000000
+11011000110000000000010001111000
+00100000010000000111111011001101
+01101000000010001000000001010011
+01101000000000001000010001110111
+10011000010001100111111000000000
+00011111111001100111110000001110
+00100000001000010101010010111100
+00011000010000001111111000001110
+01100000000000001000000001010011
+01110000000000000111110000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001000000111111000000011
+01100000000000001000000001001100
+11000010100000100101011000011101
+00100000011000000000000000000000
+01101000000000001000010001110110
+01100000000000001000000001111101
+01110000000000000111110000000010
+00100000011000000000000000000000
+00100000001000000101010001010100
+01110000000000000111110000110000
+00100000011000000000000000000000
+01110000000000000111110000101000
+00100000011000000000000000000000
+01110000000000000111110000100110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000010000000000110010
+10011000000000000000010000000000
+01101000000000001000010001110111
+01100000000000001000000010010100
+10011000010011111000010000000000
+01101000000000010000010001111000
+00011111111000111111111000000000
+01100000000000010000000010010101
+01101000000000100000010001111010
+00011111111000111111111000000000
+01100000000000100000000010010000
+00011000010000100111111000000000
+01100000000000010000000010010111
+00100000011000000000000000000000
+01101000000010001100000111111010
+01101000000000001000010001110111
+10011000010000101111110000000000
+00100100001000101101001110010001
+00101111111011111111111000000000
+01101000000000001000000001001100
+01111001001000001111111000000101
+01100000000000001000000001001100
+01110000000000000111110010000001
+01110000000000000111110110001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000001000000101010001010100
+00100000001000000101010001010100
+01101000000000010000010001110110
+01100000000000010000000101110000
+00100000011000000000000000000000
+01101000000000010000010001111001
+01101000000010001100001000010010
+10011000010011111111111000000000
+11011000010000000000011001000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+00100000010000000101010011101100
+00100000001000010101010100000111
+01101000000000001000000000110000
+11000010100000001101010100000111
+01101000000000010000010001110111
+00011111111000111111111000000000
+01100000000000010000000001110101
+01101000000000010000010001111001
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000010000010001111011
+01100000000000001000000001110011
+10011000000000000000010000000000
+01101000000000010000010001111101
+01100000000000001000000001110100
+10011000010001100111110000000000
+00100100001000010101010100000100
+01100000000000001000000001110011
+01110000000000000111110000000011
+01110000000000000111110100010111
+00100000011000000000000000000000
+01110000000000000111111000100100
+00100000001000000101001101101100
+00100000010000000101010001010100
+00100000010000000101011000010000
+00100000010000000110111110110000
+00100000001000000011011100110110
+00100000010000000101010001010100
+00100000001000000011011100111111
+01101000000000100000010001110110
+00011111111000111111111000000000
+00100000001101001101010100011011
+01101000000010001100001001011101
+00100100001110100101010100011000
+01110000000000000111110000000100
+01110000000000000111110100010011
+01110000000000000111111000100100
+00100000011000000000000000000000
+01110000000000000111110000110100
+01110000000000000101010100000000
+00100000001000000011001000000110
+00100000010000000011001000000110
+01111001001000000000000000100010
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+00100000001000000101010001010100
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100011000
+01110000000010011011110100101110
+00100000010000000111110110000110
+00100000001000000011011101101010
+01101000000000001000010001110110
+11000000100000001101010100110011
+01101000000000001000010001110111
+11000000100000001101010100110011
+01101000000000001000010001111000
+11000000100110000101010100110011
+00100000010000000101100100000111
+00100000001000001101010100110000
+01110000000010001101001000000001
+01110000000000000111110000000011
+01110000000000000111110100111101
+00100000001000000101001100011110
+01110000000000000111111000100100
+00100000001000000101001101101100
+01110000000000000111110000111110
+00100000011000000000000000000000
+01101000000000001100011011101010
+11000000000000001101010100111110
+11000000000000010101010101000010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01110000000010001101001000001000
+00100000011000000000000000000000
+00100000010000000111100101111111
+01110000000010011011110100110101
+00100000010000000111110110000110
+00100000001000000101010100111010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01101000000000001100011011101011
+11000000000010011101010101010010
+00011111111000001111111000000001
+01100000000000001100011011101011
+01110000000010001101010000000001
+01110000000010001101001000000100
+01101000000000001100011011101011
+00011111111000100000111000000000
+01101000000000110100011100011001
+10101111111011111111111111111111
+01011000000000000000000010000000
+01111001001000001111111000000000
+01100000000000001100011011101100
+00100000011000000000000000000000
+01110000000010001101001000001000
+00100000011000000000000000000000
+00100000010000000101010101011010
+01101000000000001100011011101101
+00100000011110100000000000000000
+01110000010001101110110100000000
+01110000000010011011110100111000
+00100000001000000111110110000110
+00100000010000000101100100000111
+00100100010000001111100110000010
+00100000010000001111100110010010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01110000000010001101001000001100
+01110000000010001101010000000001
+00100000011000000000000000000000
+11011000101000000000100110010010
+11011000110000000000010001110110
+00100000010000000111111010000111
+01101000000000001100011011101010
+11000001000000010000000000000000
+00100000001000000111011011110011
+01101000000000001000100011010011
+11000000000000111101010101101100
+01101000000000001000100011010010
+11000000100000001101010101111111
+01101000000000001000100011011011
+00011111111001100000101000100000
+00100100001000010101010101111111
+11011000101000000000100011101010
+10011000101000001000101000000000
+01101000000001000000010001110110
+11100000101001000000000000000000
+01101000000001000000010001111110
+11100000101001000000000000000000
+01101000000000001000100011011011
+00011111111000001111111000010000
+01100000000000001000100011011011
+11000000100110000101010001010100
+00100000010000000101100100000111
+00100000001000001101010001010100
+01110000000010001101110000000001
+01110000000010001101001000000010
+01110000000010001101010000000001
+00100000001000000101010001010100
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001000100011011010
+11000000000110000101010110000101
+01110000000000000111110000111110
+00100000001000000101001100011110
+00100000010000000101100100000111
+00100000001000001101010110001110
+01101000000000001100011011101010
+11000000000000010101010110001100
+01110000000010001101010000000001
+01110000000010001101001000000100
+00100000001000000101001100011110
+01110000000010011011110100110110
+00100000001000000111110110000110
+00100000001000000101001100011110
+01101000000000001000100011010011
+11000000000000111101010110010011
+01101000000000001000100011010010
+11000000100000110101010110011111
+11011000101000000000100101010010
+01101000000001000000010001110110
+11100000101001000000000000000000
+01101000000001000000010001111110
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100000001000001101010110011101
+01110000000010001101001000000111
+01110000000010001101010000000001
+00100000001000000101010001010100
+01110000000010001101001100000100
+00100000001000000111011011110011
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001000100011010011
+11000000000001011101010110100101
+01101000000000001000100011010010
+11000000100001000101010110110100
+11011000101000000000100110000010
+11011000110000000000010001110110
+00100000010000000111111010000111
+00100000010000000101100100000111
+00100000001000001101010110110001
+01101000000000001100011011101010
+11000000000000001101010110110110
+01110000010001101110100100000000
+01110000000010001101001000001001
+01110000000010001101010000000001
+01110000000000000111110101000001
+00100000001000000101001100011110
+01110000000010001101001100001001
+01110000000010001101010100000001
+00100000001000000101001100011110
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001100011011101001
+11000010100000111101010110111011
+01111001001000000111111000000110
+01100000000000001100011011101001
+00100000011000000000000000000000
+11000010100000000101010110101100
+01110000010001101110100100000000
+00100000001000000101010110110100
+00100000001000000101001100011110
+01101000000000001000000101101100
+01111001001111111111111000000001
+01100000000000001000000101101100
+00100000010000000101010001010100
+00100100011101001000000000000000
+01101000000000001000010001110110
+01101000000010001000000001001011
+01111001001110100000010000000100
+01111101001110100000010000000101
+01100000000010001000000001001011
+00100000011000000000000000000000
+01101000000011000000010001110110
+01101000000000001000000001010101
+11000001100000011000000000000000
+01101000000000001000000101101100
+11000011000000100101010111010001
+01110000000000000101010100010100
+00100000011000000000000000000000
+01110000000000000101010100000100
+00100000011000000000000000000000
+01101000000000001000000101111110
+01100000000000001000000101011010
+01110000000000000111110000000011
+01110000000000000111110100111000
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100111001
+00011000000000000111001000001001
+11011000110000000000010001110110
+11011000101000000000000101010001
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000101010111011101
+01101000000000001000000101010001
+01101000000010001000000101010000
+01111001001111111000010000000111
+01111001001111111000010000000100
+11000000011111111101010111110001
+11000000000000000101011000001010
+11000000000000101101010111111110
+11000000000000111101010111111101
+11000000000000110101010111111110
+11000000000001000101010111111101
+11000000000000001101010111110110
+11000000000000010101010111110110
+11000000000000011101010111110110
+11000000000001001101010111110110
+11000000000000100101010111110110
+00100000011000000000000000000000
+01101000000000001000000101010000
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001000000101010000
+00100000011000000000000000000000
+01111001001000000000010000000100
+01110000000000010111111100000101
+01101000000000010000000101011000
+10011000000000000111001000000000
+01100000000000010000000101011110
+11011000101000000000010001110101
+00100000010000000111111101000000
+01111001001000000000010000000111
+01111001001000000000010000000010
+00011000000000000111111000000000
+01100000000000001000000000001011
+01100000000000010000000011111001
+01100000000000010000000011111011
+01100000000000010000000011110111
+01100000000000010000000011110101
+01101000000000001000000101010010
+00101111111000011111111000000000
+01111001001000001000010000000110
+01100000000010001000000101010000
+00100000011000000000000000000000
+01111001001111111000000000010001
+01110000000000010101000000000000
+01101000000000001000000101111110
+01111001001111111111111000000110
+01100000000000001000000101111110
+00100000011000000000000000000000
+11011000110000000000010001110110
+11011000101000000000010010000110
+00100000001000000111111010000111
+01110000000000000111110000001001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010001
+00100000011000000000000000000000
+11011010001000000100000101000000
+00100000010000000110111101111010
+01110000000000000111110000000011
+01110000000000000111110100001000
+00100000011000000000000000000000
+01110000000000000111001000001010
+01110000000000000111110000000111
+01110000000000111111000000010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011000100000000101011
+01111000010101000111110000000000
+00100000010000000101100011001010
+01101000000000001000000001001000
+00100000011110100000000000000000
+11000010100000111101011001010111
+11000000000000001101011101111100
+11000000000000010101011011101111
+11000000000000011101011001100010
+11000000000000100101011001111001
+11000000000100111101011111100100
+11000000000101000101011100010011
+11000000000110000101011011111111
+11000000000100101101011111011111
+11000000000100110101011100001110
+11000000000110001101011111001110
+11000000000110111101011101110111
+11000000000110011101011101101001
+11000000000001000101100001100010
+11000000000001001101100001011000
+11000000000001011101100001101101
+11000000000001100101100001110110
+11000000000001111101011101101111
+11000000000010000101100010011011
+11000000000010001101100010010001
+11000000000000111101011101011111
+11000000000101010101011110001011
+11000000000001010101011110001100
+11000000000011111101011111001001
+11000000000000110101011100000100
+11000000000100001101011101101100
+11000000000101101101011110111111
+11000000000101110101011111000100
+11000000000100010101011101101100
+11000000000110100101011110001101
+11000000000010011101011110100010
+11000000000010111101011110110001
+11000000000010010101100010011000
+11000000000101111101011110110111
+11000000000011000101011110111100
+11000000000111101101100000001000
+11000000000111110101100000010100
+11000000000111111101100000100110
+11000000001000000101100000110000
+11000000001000001101100001000101
+11000000000100011101100001010100
+11000000000111011101100001001111
+11000000000000101101100001010101
+11000000000101001101100001010110
+11000000000111000101100001010111
+11000000000111001101011110000010
+00100000001000000011101100110001
+00100000011000000000000000000000
+11000000010000001101011010000110
+11000000010000100101011010110010
+11000000010000010101011010001111
+11000000010000011101011100011000
+11000000010001011101011100100011
+11000000010010111101011101011011
+11000000010011001101011011100000
+11000000010011010101011010111101
+11000000010010101101011011100101
+11000000010010110101011011100110
+00100000001000000011101100110001
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001001001
+11100000101000001000000000000000
+00100000010000000101100010110000
+01111001001000000000000000100101
+01000100101011001100000000101011
+01101000000000001000000001001001
+11000000000001000101011010011001
+11000000000001111101011010011101
+11000000000010000101011010101000
+11000000000010111101011001111000
+11000000000110011101011010101011
+11000000001000001101011010110001
+11000000000010001101011001110010
+00100000011000000000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+01110000000000000101010100011011
+01011000000000000000000000001100
+11011000111000000000000000001011
+00100000001000000111111011010100
+00100000001000000011011101000110
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000001000000001001001
+11000000000001011101011010000001
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000101100010110000
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+11011000010000000000001111111011
+00100000001000000101100011101100
+00011000000000000000111000000100
+00100000010000000101100010101001
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001001
+00100000001000000101100010110000
+00011000000000000000111000000101
+00100000010000000101100010101001
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000101100010110000
+00100000010000000011010010101001
+00100000010000000101100011111110
+00100000011000001000000000000000
+00100000001000000101011000010011
+01101000000000001000000001001011
+11000010100000101101011010100100
+11000100000000100000000000000000
+01110000000000000111110000010010
+01111001001111111111111000000100
+00100000010000000101100011110110
+00100000001000000101011010100110
+01110000000000000111110000010000
+01111001001111111111111000000101
+01100000000000001000000001001011
+00100000011000000000000000000000
+00100000010000000101100100000111
+00100000001000001101011000010101
+00100000011000000000000000000000
+01110000000000000111110010001011
+01101000000000001000001111110111
+01111001001000000111111000000000
+01100000000000001000001111110111
+01110000000010011011110100000001
+00100000001000000111110110000110
+00100000011000000000000000000000
+00011000000000000000111000001100
+00100000010000000101100010101001
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000001111110100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000101100010111001
+00011000000000000000111000000101
+00100000010000000101100010101001
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000010000000101100010111001
+01110000010001101110110100000001
+01101000000000001100011011100011
+11000000000000001101011011001110
+11000000000000010101011011001000
+11000000000000011101011011010100
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011110
+11000000000000001101011011011110
+11000000000000010101011011011110
+11000000000000011101011011011010
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011010
+11000000000000001101011011011100
+11000000000000010101011011011110
+11000000000000011101011011011010
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011010
+11000000000000001101011011011010
+11000000000000010101011011011010
+11000000000000011101011011011010
+00100000011000000000000000000000
+01110000010001101110101000000011
+00100000011000000000000000000000
+01110000010001101110101000000001
+00100000011000000000000000000000
+01110000010001101110101000000010
+00100000011000000000000000000000
+00011000000000000000111000000101
+00100000010000000101100010101001
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000001000000101100010111011
+00100000011000000000000000000000
+00011000000000000000111000001001
+00100000010000000101100010101001
+01101000000000001000000010010100
+11100000101000001000000000000000
+01101000000000010000000010010101
+11100000101000010000000000000000
+01101000000000100000000010010000
+11100000101000100000000000000000
+00100000001000000101100010111001
+00011000000000000111111000010001
+00100000010000000101100010100001
+01101000000000001000000001001001
+00011111111000100000010000000000
+11000000000000000101011011110111
+11000000000001110101011011110111
+11000000000011100101011011110111
+00100000011000000000000000000000
+11100000101000001000000000000000
+01101000000000001100010110101110
+11100000101000001000000000000000
+11011111001000000000000000001110
+01011000000000000100010110101111
+10011000010000001000110000000000
+00100000010000000111111011001101
+00100000001000000101100010111001
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000101100010111001
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000100000000101100100
+10011100010001100111111000000000
+00100000001101001101011100001010
+00011111111001100111111000000000
+00011111111010110111111000000000
+01111001001111111111111000001111
+11100000101000010000000000000000
+00100000001000000101100010111001
+00011000000000000111111000000110
+00100000010000000101100010100001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00100000001000000101100010111001
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000101100010111001
+00011000000000000000111000001100
+00100000010000000101100010101001
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000001111110100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000101100010111011
+00011000000000000000111000000011
+00100000010000000101100010101001
+01101000000000001100000111111010
+11100000101000001000000000000000
+01111000010101000111110000000000
+00100000010000000101100010111011
+00100100011101000000000000000000
+00100100011101001000000000000000
+01101000000000001100000101111000
+11000100000000000000000000000000
+00100000010000000101011100111111
+00100000001000000101011101001001
+01111001001000000000000000100101
+01000100101011010100000000101011
+01101000000000001100000100111110
+01111001001000000111111000000011
+01100000000000001100000100111110
+01011000000000000000000100000001
+01100000000000010000001111110100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011011100000000101011
+01101000000000001100000100111110
+01111001001111111111111000000011
+01100000000000001100000100111110
+01011000000000000000000000000000
+01100000000000010000001111110100
+00100000011000000000000000000000
+01110000010000010111100000000011
+01011000000000000000000000000000
+01100000000000100100000111100010
+11011000101000000100000101111010
+00100000010000000101011101001101
+11011000101000000100000110000111
+00100000010000000101011101001101
+11011000101000000100000111100110
+00100000010000000101011101001101
+00100000001000000101011101010100
+11011000101000000100000110000111
+00100000010000000101011101001101
+00100000010000000101011101010100
+00100000001000000101011101010111
+01011000111111111111111111111111
+11100000101000011000000000000000
+11100000101000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100000101110110
+00100000011000000000000000000000
+01101000000000001100000101111000
+01111001001000000111111000000010
+01100000000000001100000101111000
+00100000011000000000000000000000
+00011000000000000000111000000010
+00100000010000000101100010101001
+00100100001101001101100010111001
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000001111110000
+11100000101000001000000000000000
+00100000010000000101100010111011
+01101000000000001000000001001011
+01111001001000000111111000000011
+01100000000000001000000001001011
+01110000000000000111001000110010
+00100000011000000000000000000000
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111001
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001001100
+00101111111011000000000000000010
+01111001001000001111111000000000
+00011111111000010111111000000001
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000010000000001010001
+11100000101000010000000000000000
+00100000001000000101100010111011
+01110000000000000111001011111010
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001010011
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001010
+00100000010000000101100010100001
+11011000110000000000000101010001
+00011000000000000111001000001001
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000101011110000110
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000011101001000000000000000
+00100000010000000011100010111100
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000000010000000101110000
+11100000101000010000000000000000
+01101000000000011100000101000000
+11100000101000011000000000000000
+01101000000000001100000101000011
+11100000101000001000000000000000
+01101000000000010100000101000100
+11100000101000010000000000000000
+11000101100000011101011110011110
+01111001001111111000000000000011
+00100000010000000101100010111011
+01110000000000000111110000010011
+00100000011000000000000000000000
+00100000010000000101100010111001
+01110000000000000111110000000011
+01110000000000000111110100010011
+00100000011000000000000000000000
+11011000010000000000001000000000
+00100000001101001101011110100110
+00011101000000100111111000000000
+00100000001000000101011110100111
+00011100010000100111111000000000
+00011100001000100111111000000000
+10011000010000001111111000000000
+00011111111000010111111111111100
+01100000000000100000000000110100
+00011000000000000111111000000101
+00100000010000000101100010100001
+01101000000000100000000000110100
+00011111111000110111111000000000
+11100000101000100000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001010
+00100000010000000101100010100001
+11011000110000000000001111111111
+11101000110001001000000000000000
+11100000101001001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001100000101110000
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01011000000000000000000000000101
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000001000000101100010111011
+01110000000000000111110000101110
+01101000000000001000000000110000
+01111001001000000111111000000100
+01100000000000001000000000110000
+00011100010000100111111000000000
+01100000000000100000010000001111
+01101000000000001000001111110111
+11000010100000011101011111011101
+01111001001000000111111000000011
+01100000000000001000001111110111
+01110000000010011011110100000101
+00100000010000000111110110000110
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+01110000000000000100100000000000
+00100000011000000000000000000000
+00011000000000000111111000000110
+00100000010000000101100010100001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000101100010111011
+01110000000010001101010100000001
+01101000000000001100011000111001
+11000001100000001000000000000000
+01110000000010001101001100010011
+00100000011000000000000000000000
+00100000010000000101100011111010
+01110000000000000111110010011001
+01110000000010001101001100000011
+00100000011000000000000000000000
+00100000010000000101100011111010
+01110000000000000111110000111101
+01110000000010001101001100000111
+00100000011000000000000000000000
+11011010001000000000100101110010
+11011010010000000000100110010010
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100000001000101101100000000000
+01110000000010001101001100000000
+00100000010000000111011011110101
+01110000000000000111111000100100
+01110000000000000111110101000000
+00100000001000000101001101101100
+01110000000010001101001100001010
+00100000010000000111011011110011
+01110000000000000111110101000000
+00100000001000000101010001010100
+01110000000000000111110001000000
+00100000011000000000000000000000
+01110000000000000111110000111101
+00100000011000000000000000000000
+01110000000010001101101000000000
+00011000000000000111111000000100
+00100000010000000101100010100001
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000110000
+11100000101000001000000000000000
+00100000010000000101100100000111
+00100000001000001101100010111011
+00100000001000000101100010111001
+00011000000000000111111000010001
+00100000010000000101100010100001
+01101000000000001000100011011010
+11011000110000000100011010110010
+10011000110000001000110000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000001000100011011010
+00011111111000001111111000010000
+01100000000000001000100011011010
+00100000010000000101100100000111
+00100000001000001101100010111011
+00100000001000000101100010111001
+01110000000010001101001000000110
+01110000000000000111110000111111
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101110010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000001000000101100010111001
+01110000000000000111110001000000
+00100000011000000000000000000000
+00100000010000000101100100000111
+00100000010000001111011000101000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101000010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100100001000001101100010111001
+00100000001000001101100010111011
+01110000000010001101001100001111
+00100000010000000101100011111010
+01110000000000000111110000001011
+00100000010000000101100100010010
+00100000001000001111011001100101
+00100000001000000111011001101111
+00100000010000000101100011110110
+01110000000000000111110001000001
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101110010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100100001000001101100010111001
+00100000001000001101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000001111111111111110
+11100000101000010000000000000000
+00100000001000000101100010111001
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000010000000101100100010110
+11011010001000000100000101000000
+00100000010000000101100100011100
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011010001000000000010010100110
+11011010010000000000010010000110
+00100000010000000111000001110111
+00100100001101001101100010110000
+00100000001000000101100010110110
+00100000010000000101100100010110
+11011010001000000000000001000000
+00100000010000000110111101111010
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000010010000110
+00100000010000000111111010000111
+01101000000000001000000001010101
+11000000000011001101100010111011
+11000000000011000101100010111011
+00100000001000000101100010110110
+01101000000000001000100011011001
+00100000001110100101100001110011
+00100000010000000101100100000111
+00100000010000001101100011111010
+00100100010000001101100011110110
+00100000001000000101100001110100
+00100000010000000101100011111010
+00100000010000000101100100010110
+00100000001000000101100001100101
+11011010001000000100000101000000
+00100000010000000110111110101101
+00011000000000000111111000000101
+00100000010000000101100010100001
+01101000000000100000010010110110
+11100000101000100000000000000000
+11011000010000000000001111111011
+00100000010000000101100011101100
+00100000010000000111000010101011
+00100000010000000101100100000111
+00100000001000001101100010000101
+01110000000000111111111000000001
+01101000000000001000100011011001
+00100000011110100000000000000000
+01110000000000000111110000001011
+01101000000000001100001001011101
+00100000011110100000000000000000
+00100000010000000101100100000111
+00100100001000001101100010001101
+01101000000000001000001111111101
+00100000011110100000000000000000
+01110000000000000111110000001111
+00100000011000000000000000000000
+11000110100100001000000000000000
+01111001001111111000000000100001
+01110000000000000111110000001111
+00100000011000000000000000000000
+00100000010000000101100100010110
+00100000010000000110111110110000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000010010000110
+00100000010000000111111010000111
+00100000001000000101100010110110
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010110110
+00011000000000000111111000000010
+00100000010000000101100010100001
+00011000000000000111111000010000
+11100000101000001000000000000000
+01100000000000001000000001010100
+00100000001000000101100010110110
+00011111111010011111111000000000
+00011111111000011111111000000111
+01100000000000001000001111011100
+11011111001000000000000000010001
+11011000101000000000001111011110
+00100000010000000111111010011111
+11011000101000000000001111011110
+00100000011000000000000000000000
+00011111111000010010001001111111
+01110000000000000100100001111111
+00011000111000100111111000000000
+00100000010000000101100010100001
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001000000001001000
+00011111111000111111111000000000
+01101000000010001000000001001100
+00101000010011111111111000000001
+01111001001000001111111000000000
+00100000001000000101100011000000
+01101000000010001000000001001100
+00011000010000010000010000000001
+00100000001000000101100010111100
+00011000000000000000010000000000
+00100000001000000101100010111100
+00011000000000000000010000000001
+01101000000000001000000001001000
+00011111111000111111111000000000
+01111001001101001111111000000000
+10011000010000101111111000000000
+01100000000000001000001111011101
+01110000000000000100100000000000
+00100000010000000101100011010001
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+00100000010000000101100011001010
+01101000000000001000000001111100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011100100000000101011
+01101000000000001000000001001000
+00100000001110100101100011010001
+01101000000000001000000001111000
+00100100011110100000000000000000
+00100000001000000101100011011011
+01101000000000001000000001111000
+00100000001110100101100011100001
+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
+01000100101011101100000000101011
+01101000000000001000000001001100
+00011111111000100010011000000000
+11101000010000001000000000000000
+00100000010000000101010001101110
+00100000010000000101100010110000
+00011010011000100111111000000000
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001000000000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01111101001101001111111000000001
+01101000000010001000000001001100
+10011000010000101111111000000000
+00101111111011111111111000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001101001111111000000001
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000000001000100011011000
+00101111111000001111111000000001
+00100000011000000000000000000000
+01101000000000001000100011011000
+01111001001000000111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+01101000000000001000100011011000
+01111001001111111111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+01101000000000001000100011011000
+00101111111011111111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+11011000101000000000010010000110
+00011000000000000111001000010000
+00011000000010100111111000000000
+11100000101000001000000000000000
+11000010000000000101100100011000
+00100000011000000000000000000000
+00100000010000000110111101111110
+11011010001000000100001001100001
+11011010010000000000010010110110
+11101010001001000000000000000000
+01101000000010001000000000110000
+01111101001110100000010000000110
+01100000000010001000000000110000
+00011010001000100000101000000000
+00100000010000000111000001110111
+00100000001000000011000111101110
+01111001001000000000000000100101
+01000100101011110100000000101011
+00100000010000000101100011000101
+00100100011110100000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+11000000000000100101100101111011
+11000000000000101101100110000000
+11000000000000010101100101110010
+11000000000000011101100110001000
+11000000000001110101100101110101
+11000000000000110101100110100100
+11000000000000111101100110111100
+11000000000001001101100110111101
+11000000000001010101100111000110
+11000000000001011101100111001010
+11000000000001100101100110010010
+11000000000001101101100110010101
+11000000000001111101100110011011
+11000000000010010101100101100101
+11000000000010011101100110001000
+11000000000010000101100101101000
+11000000000010100101100101100010
+11000000000010101101100110001000
+11000000000010110101100101011100
+11000000000011000101100101100001
+11000000000010111101100101010101
+11000000000011001101100101011011
+11000000000011010101100101000110
+11000000000011011101100101010000
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000010000000000000000
+11000100000000011000000000000000
+01110000000000000101010100000000
+00100000010000000101100101001100
+00100000001000000110100100001101
+01101000000000001000000101101100
+11000100000000001000000000000000
+01110000000000000101010100001010
+00100000011000000000000000000000
+11011000111000000000000000001011
+00100000010000000111111011100010
+00100100011110100000000000000000
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000000
+01100000000000001000000101101100
+01110000000000000101010100011001
+01110000000000000111110000001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000001111111010
+11000001100000010000000000000000
+00100000010000000101100111001100
+01110000000000000101010100011000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000101010100010101
+01110000000000000111110010000011
+00100000011000000000000000000000
+01110000000000000101010100010011
+01110000000000000111110000100101
+00100000011000000000000000000000
+01101000000000001100010111110100
+11000001000000000000000000000000
+11000000000000001101100101110000
+11011000111000000000000000001010
+00100000010000000111111011100010
+00100100011110100000000000000000
+01110000010001011111010000000000
+00100000001000000101100110001001
+00100000011101001000000000000000
+00100000001000000101100110100100
+01110000000000000101010100000011
+01110000000000000111110000100111
+00100000011000000000000000000000
+01110000000000000111110000010011
+01111001001000000000000000000011
+01110000000000000101010100000101
+01011000000000000000000111111111
+01100000000000010000001111111000
+00100000011000000000000000000000
+01110000000000000101010100000101
+01110000000000111111100011111111
+01111001001111111000000000100010
+01110000000000000111110000110011
+00100000001000000101001100011011
+11000110000100010000000000000000
+01101000000000010000001111111000
+00011111111001100111111000000001
+00100000001000101101100110000110
+01100000000000010000001111111000
+00100000011000000000000000000000
+01110000000000000101010100001110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+01110000000000000111110000010011
+01110000000000000101010100010000
+00100000011000000000000000000000
+01110000000000000101010100001101
+01110000000000000111110000110001
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000010000000000000000
+01110000000000000101010100000000
+00100000011000000000000000000000
+01110000000000000101010100000110
+00100000011000000000000000000000
+01101000000000001000001111111000
+00011111111000001111111111111111
+00100000001110100101100110100000
+01100000000000001000001111111000
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010110
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000000101101100
+11000010100000010101100110001001
+11000010100000000101100110101001
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001100001001011101
+00100000001110100101100110110101
+01101000000000001000001111110111
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000100000010000001111
+11011000010000000000000001100100
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00100000001000000101100101010101
+01110000000000000101010100010110
+01110000010001110001100000000100
+01011000000000000011000000110000
+01100000000000010100011100011001
+11100000101000010000000000000000
+01110000000000111111101000000010
+00100000001000000101100101011100
+00100000011000000000000000000000
+01101000000000001000000101101100
+11000010100000001101100111000001
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000001
+01100000000000001000000101101100
+01110000000000000111110000001111
+00100000011000000000000000000000
+01101000000000001000001111111110
+00100000011110100000000000000000
+01110000000000000101010100000000
+00100000001000000101100111000001
+01110000000000000101010100001100
+00100000011000000000000000000000
+01101000000000001000000001001011
+11000010100000010101100111010001
+00100000010000000101100011111010
+01110000000000000111110000001000
+00100000001000000011111110011011
+01101000000000001000000001001011
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101011000011000
+00100000010000000101100100000011
+00100000001000000011111110011011
+01011000000000000000000000000100
+01100000000000001100011100011000
+01011000000000000011000000110000
+11100000101000010000000000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+01110000010001110010111100000000
+00100000010000000101001000110100
+00100000010000000110010101110111
+01011000000000000101101000011100
+01100000000000010100001010010100
+01011000000000000101101000011100
+01100000000000010100001010010010
+01011000000000000101101000100010
+01100000000000010100001010010110
+01011000000000000101101000011100
+01100000000000010100001010010000
+01011000000000000101101000011000
+01100000000000010100001010001010
+01011000000000000101101101100000
+01100000000000010100001010011100
+01011000000000000101101110100010
+01100000000000010100001010011110
+01011000000000000101110011111001
+01100000000000010100011000000111
+01011000000000000101110110000001
+01100000000000010100001010011010
+01111001001000000000000000100101
+01000100101011111100000000101011
+00100000010000000101100111111010
+00100000010000000101101000010011
+00100000010000000011110101001000
+00100000010000000110010001000001
+00100000001000000101110100001110
+01101000000000100100011100111110
+01100000000100100000000001010100
+01101000000000100100011101000010
+01100000000100100000000001011010
+01101000000100001000000010000001
+00011111111000011111111000000100
+01100000000100001000000010000001
+01110000000000100111110011111111
+01110000100000000110001000000000
+01101000000000010100011100111110
+01100000000100010000000001011000
+01101000000000010100011101000010
+01100000000100010000000001011110
+01100000000100010000000001100000
+01101000000100100000000001111000
+01111001001000000111111000000111
+01100000000100100000000001111000
+00100000010000000011111011100100
+01101000000000001100011101011010
+00101111111011111111111000000000
+01101000000110001000000001100010
+01111001001000001000010000000100
+01100000000110001000000001100010
+00100000011000000000000000000000
+00100000010000000101100111111010
+01101000000010001100011100101011
+00100000010000000110010011101000
+00100000010000000101101001110110
+01101000000010001100011100101001
+00100000001000000110010011011111
+01101000000010001100011100101001
+00100000010000000110010011110101
+00100100001000001011111000110111
+00100000001000000011111000110101
+01111001001000000000000000100101
+01000100101100000100000000101100
+00100000010000000101110111000101
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000001000000101101001111011
+00011010011000100111111000000000
+11000000000000001101101001100111
+11000000000000010101101000111110
+11000000000000100101101001101001
+11000000000000101101101001011011
+11000000000001000101101001000100
+11000000000001001101101001001011
+11000000000001010101101001011110
+11000000000001011101101001001111
+11000000000001100101101001011010
+11000000000010011101101001101001
+11000000000010100101101001100011
+11000000000010101101101001011100
+11000000000100011101101001011111
+11000000000100100101101001100010
+11000000000110000101110101001001
+11000000000110001101110101001011
+11000000000110010101110101011001
+11000000000110011101110101010111
+11000000000110100101110101000011
+11000000000110101101110100111001
+11000000000110110101110101000001
+11000000000110111101110101001101
+11000000000111000101110101001111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000101110110100011
+00100000011000000000000000000000
+01101000000000001100011011101101
+00100100010110100101110101001101
+00100000010000000101101001101001
+01101000000000010100011100001011
+11000100000000100000000000000000
+00100000001000000101101001001011
+01101000000000010100011100001011
+01111001001000000111111000000100
+01100000000000010100011100001011
+01101000000000001100011100111011
+01100000000000001100001000010010
+00100000010000000101101001110110
+00100000001000000101110011100100
+01101000000000010100011100001011
+01111001001111111111111000000100
+01100000000000010100011100001011
+00100000001000000101110011101000
+01101000000000010100000001000010
+00011111111000110111111000000000
+01101000000010010100001010000100
+10011000010001100111110000000000
+00100100001000101101101001010101
+00100000001000000011111001111111
+01101000000000001100011100101111
+11000011100000000000000000000000
+01101000000100010000000100010010
+00100100010110100101110110111101
+00100000001000000011111001110111
+00100000001000000011111010000001
+00100000001000000101101001101101
+00100000010000000101101001101001
+00100000001000000101110011101010
+00100000001000000011111001000101
+01101000000000001100011100101111
+11000011000000000011111001111001
+00100000001000000101110111000001
+00100000001000000101110111000001
+00100000010000000101101001101101
+01101000000000001100011100111100
+01100000000000001100001000010010
+00100000001000000101110011100110
+01110000010001101110100100000000
+00100000011000000000000000000000
+00100000010000000101101011011111
+00100000001000000101101001101011
+01101000000010001100011100101011
+00100000001000000110010011111111
+00100000010000000101101001101111
+00100000001000000101101001110110
+01101000000000001100011100101110
+00101111111011111111111000000000
+00100000010000001011111001011001
+01101000000000001100011100101110
+00101111111011111111111000000001
+00100000010000001011111001100001
+00100000011000000000000000000000
+01101000000010001100011100101011
+00100000001000000110010011111101
+01101000000000001100011000000011
+11000001000000000000000000000000
+00100000001000000110100000111000
+01111001001000000000000000100101
+01000100101100001100000000101100
+01101000000100001000000100001100
+11000010100000011101101001111000
+00100000010000000111111101101110
+11101000011000001000000000000000
+11000000100000001101101010010011
+01101000000100010000000100010010
+00011111111001100111110000000010
+00100000011000010000000000000000
+11101000011000001000000000000000
+01100000000000001000010000010110
+11101000011010001000000000000000
+00011000011000100010001000000000
+01100000000010001000010000010111
+00011000010000001000010000000011
+01101000000100010000000100010010
+10011000010001100000010000000000
+00100100011000010000000000000000
+01110000000001000001100000000001
+00100000010000000101101010101010
+01101000000000001000010000011000
+11000001000000000000000000000000
+00100000001000000101101010100101
+00100000010000000101110100111111
+00100000010000000111111101101011
+00100000001000000101101010010110
+01111001001000000000000000100101
+01000100101100010100000000101100
+01101000000100010000000100010010
+00100000011110100000000000000000
+00100000010000000111111101101110
+11101000011000001000000000000000
+00011111111001100111110000000001
+00100100010000101101101010101001
+00100100001000101101101010010110
+11101000011000001000000000000000
+11000001000000101000000000000000
+11000001000101001000000000000000
+00011000011000001000011111111111
+00100000010000000101101010101001
+00100000001000000101101010010110
+00100000010000000111111101101110
+00011000011000001000011000000010
+11101000011000001000000000000000
+10011000011000001000011000000000
+00100000001000000110001100100010
+01111001001000000000000000100101
+01000100101100011100000000101100
+01101000000000001000010000010110
+11000000000000000101101011001100
+11000000000000001101101011010001
+11000000000000010101101011010110
+11000000000000011101101011101100
+11000000000000100101101011110101
+11000000000000101101101011111111
+11000000000001001101101100100011
+11000000000001011101101111010011
+11000000000001100101101111010100
+11000000000001101101101111101000
+11000000000001110101101111110000
+11000000000001111101101111110110
+11000000000010000101110000000010
+11000000000010001101110000001010
+11000000000010010101110000001110
+11000000000100110101110000010010
+11000000000101000101110000011001
+11000000000101001101110000101001
+11000000000101010101110000110010
+11000000000101011101110001100111
+11000000000101100101110001101101
+11000000000110000101110001110100
+11000000000110001101110001111010
+11000000000110010101110010001011
+11000000000110011101110010010011
+11000000000110100101110010110001
+11000000000110101101110010111001
+11000000000110110101110011000001
+11000000000111000101110011001011
+11000000001001000101110011010011
+00100000001000000101110011011110
+01101000000000001000010000010111
+11000000100000110101110011011110
+11101000011000110000000000000000
+01100000000000110100000101000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000110101110011011110
+11101000011000110000000000000000
+01100000000000110100010100111110
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000001101110011011110
+00011010001000100000011000000000
+00100000010000000101110011100001
+11101000011010001000000000000000
+01100000000010001100011100111101
+01101000000000010100011100001011
+11000011100001001000000000000000
+11000011100000000000000000000000
+01101000000000001100011100101110
+00101111111011111111111000000000
+00100100001000001101101011100101
+01101000000010001100011100111101
+00011000010000010111111000000011
+01100000000000001100000100110011
+01101000000000001100011100101110
+00101111111011111111111000000001
+00100100011000001000000000000000
+01101000000010001100011100111101
+00101000010011111111111000000010
+00100000001000001011111001100011
+00100000001000000011111001100001
+01101000000000001000010000010111
+00011111111001100111110000100000
+00100100001000010101110011011110
+01100000000000001100010110101110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010110101111
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000010011
+00100100001000010101110011011110
+01100000000000001100010001000000
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010001000001
+00100000010000000110001101000001
+00100000010000000101001000110100
+00100000001000000101110011100001
+01101000000000001100011100001011
+11000011000000100101110011011110
+00100000010000000011111000011101
+00100000001000001101101100001111
+01110000000001000001100000000000
+01101000000000001100011000000000
+00100000011110100000000000000000
+01101000000000010100011000001011
+11000000100000000101101100001101
+01101000000000001000010000010111
+01100000000000010100011000001011
+00011010001000100000011000000000
+00011000011000100111111000000000
+01100000000000010100011000001001
+00100000010000000101101100010001
+00100000001000000110100001011111
+01110000000001000001100000000000
+00100000001000000101110110011111
+00100000010000000101101100010111
+01101000000000010100011000001011
+01101000000010010100011100101100
+10011000010001100111111000000000
+01100000000000010100011000001011
+00100000011000000000000000000000
+01101000000000010100011000001011
+11011000010000000000000001101110
+00100000010000000111111110101111
+01101000000010010100011000000100
+00100000010000000111111110101111
+01101000000010010100010111110110
+00100000010000000111111110101111
+01100000000000010100011100101100
+00100000011000000000000000000000
+01110000000001000001100000000001
+01110000000001000001011000000101
+00100000001000000101110011100001
+01101000000000010100011100001011
+11000100000001001000000000000000
+01110000000001000001100000000000
+01101000000000001100010101101001
+00100100011110100000000000000000
+01101000000000010100011101100000
+00100000001110100101101101001010
+01101000000010010100011101011110
+10011000010001100111110000000000
+00100100011000101000000000000000
+01111001001000000000000000100101
+01000100101100100100000000101100
+01110000000001000001100000000000
+01101000000000010100011101100100
+01101000000010010100011101100000
+10011000010001100010010000000000
+00100100001000010011101100110001
+00100100001000101101101100111000
+00100000010000000101101101000111
+01110000000001000001100000000001
+00100000001000000101101110001110
+01101000000000001100011101011010
+11000011100000010000000000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+01101000000000010100011101100000
+10011000011000001000011000000000
+00011000011000100010001000000000
+01011000000000000000100100000001
+11100000011000010000000000000000
+00011010010000001111111000000010
+11100000011000001000000000000000
+01101000000000010100011101100010
+11100000011000010000000000000000
+00011010001000100111111000000000
+01100000000100010000000001011000
+01011000000000000000000000000000
+01100000000000010100011101100000
+00100000011000000000000000000000
+00011010001000100000011000000000
+11101000011000010000000000000000
+01100000000000010100011101100010
+01101000000000001000010000010111
+00011111111000001111111111111110
+00100100001000010101110011011110
+00100000001110100101110011011110
+01100000000000010100011101100100
+01101000000000001100011101011010
+11000010100000010101101101011110
+01101000000010010100010101001110
+01101000000000010100011101100100
+00100000010000000111111110101111
+01100000000000010100011101100000
+00011000011000100111111000000000
+01100000000000010100011101011100
+01011000000000000000000000000000
+01100000000000010100011101011110
+01110000000010011011110100011011
+00100000001000000100101111010110
+11011000010000000000000000010100
+00100000001000000101101101010101
+01101000000000001100011101011011
+01110000010001110101101100000000
+00100100001110100101101110111110
+01101000000000010100011101100000
+00100000001110100011101100110001
+00011111111000001000010000000011
+01100000000010010100010001100111
+11011000010000000000000000010100
+00100000010000000111111110101111
+00011111111000100111001000000000
+01100000000000010100011101011110
+01101000000010010100011101100000
+10011000010001100000010000000000
+01101000000000001100011101011010
+11000010100000010101101101110001
+00100100010000101101101110011010
+01110000000000111101101000000001
+01111001001000000000000000100101
+01000100101100101100000000101100
+11011000001000000000000000000010
+01101000000000010100011101100010
+01100000000000010100010001101100
+01101000000000010100011101011100
+00011111111000100000011000000000
+00100000010000000110001101000001
+01101000000000001100011101011010
+11000011000000010101101110111001
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+01101000000000010100011101100100
+01101000000010010100011101100000
+00100000010000000101101110010100
+01101000000010001000001101111001
+01101000000000001000010000011001
+00100000001110100101101110001100
+01111101001110100000010000000100
+01100000000010001000001101111001
+01110000000010011011110100011011
+00100000010000000100101111010110
+01110000010001110101101100000001
+01101000000010001000001101111001
+00100000001000000100111110010010
+00100000010000000101101110001110
+00100000001000000100111110010000
+01101000000000001100011101011010
+01111001001000000111111000000011
+00100000001000000101110110011010
+01101000000000001100011101011010
+01111001001111111111111000000011
+00100000001000000101110110011010
+01110000000001000001100100000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100100011000010000000000000000
+01110000000001000001100100000001
+00100000011000000000000000000000
+01101000000000011100010101000100
+00100100001110100101101110011110
+01110000010001010100011000011111
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100001110100011101100110001
+01110000010001010100010100011111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101100110100000000101100
+01101000000000010100011101100000
+00100000001110100011101100110001
+01101000000010010100011101011110
+00100000001110100011101100110001
+10011000010001100111111000000000
+11011000010000000000000000011011
+00100000010000000111111110101111
+00011111111000100111001000000000
+01101000000000010100011101011100
+00011111111000100000011000000000
+01101000000000010100011101011110
+10011000011000001000011000000000
+10011111001000001111111000000000
+01100000000000010100011101011110
+01101000000010010100011101100000
+10011000010001100000010000000000
+00100100010000101101101110011010
+01110000000000111101101000000001
+11011000101000000100010001100111
+00100000010000000110001101000001
+11011000001000000000000000000001
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+00100000001000000100111110010000
+01101000000000010100011101100100
+01101000000010010100011101100000
+10011000010001100111111000000000
+11011000010000000000000000010100
+00100000010000000111111110101111
+00011111111000100111001000000000
+00011111111000001000010000000011
+01100000000010010100010001100111
+01101000000010010100011101100000
+10011000010000001111111000000000
+01100000000000010100011101100000
+01101000000000010100011101011100
+00011111111000100000011000000000
+01101000000000010100011101011110
+10011000011000001000011000000000
+10011111001000001111111000000000
+01100000000000010100011101011110
+11011000001000000000000000000010
+01101000000000010100011101100010
+01100000000000010100010001101100
+00100000001000000101101101111000
+00100000001000000101110100010010
+00011010001000100000011000000000
+11101000011000001000000000000000
+11000000000000000101101111011011
+11000000000000001101101111011110
+11000000000000010101101111100100
+11000000000000011101101111100110
+00100000001000000101110011011110
+00100000010000000101011100110111
+01110000010001101110001000000000
+00100000001000000101110011100001
+01011000000001000000000000000011
+01100000000000011100011011100011
+01100000000000001100011011101010
+00100000010000000101011100101111
+01110000010001101110001000000001
+00100000001000000101110011100001
+01011000000001000000000000000010
+00100000001000000101101111011111
+01011000000001000000000000000001
+00100000001000000101101111011111
+01101000000000001000010000010111
+00011111111001100111110000010000
+00100100001000010101110011011110
+01100000000000001100011100011000
+00011111111000100111001000000000
+11011000101000000100011100011001
+00100000010000000110001101010100
+00100000001000000101110011100001
+00011010001000100000011000000000
+11101000011000001000000000000000
+01101000000110001000000001100010
+01111101001110100000010000000100
+01100000000110001000000001100010
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111000100111001000000000
+00011010001000100000011000000000
+00100000010000000111111100100101
+01011010110111000110110000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+01100000000000010100001011010011
+00100000010000000101110011100001
+00100000010000000111111101101011
+00100000001000000110001100100101
+11011010001000000000000000000010
+11011010010000000100001010100110
+11011000010000000000000000000000
+00100000001000000101110011101100
+01100000000000010000100111100001
+11011010010000000000100111100001
+11011000010000000000000000000000
+00100000001000000101110011101100
+01101000000000010100011100001011
+11000011000000000101110011011110
+00100000010000000101110011100001
+00100000001000000011111001010010
+01101000000000010100011100001011
+11000011000001001101110011011110
+00100000010000000101110011100001
+00100000001000000011111001101011
+01101000000000001000010000010111
+00011111111000100111001000000000
+00011010001000100000011000000000
+01101000000000010100001010111100
+00011111111000100000101000000000
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001100011100001011
+11000011000000000101110011011110
+11101000011000001000000000000000
+01101000000010001100011011101001
+01111001001110100000010000000000
+01111001001000000000010000000111
+01100000000010001100011011101001
+00100000010000000101110011100001
+01101000000000001100011011101001
+11000010100000110101110000100111
+00100000011000000000000000000000
+01110000010001101110100100000000
+01110000000010011011110100100001
+00100000001000000111110110010000
+11000010100000000101010110101100
+00100000001000000101110000100100
+01101000000000001100011100001011
+11000100000000100000000000000000
+01101000000000001100011000000011
+11000001000000000000000000000000
+11101000011000001000000000000000
+01101000000010001100011000000001
+10011000010000001000010000000000
+01100000000010001100011000000001
+00100000011000000000000000000000
+11011111001000000000000001000000
+11011000101000000100010000000000
+00100000010000000111111010011111
+01011000000000000000000000000000
+01100000000000001000100111010110
+00011010001000100000011000000000
+00011000011000100111111000000000
+01100000000000010000100111011010
+00100000010000000101110001100010
+01101000000000001000100111010110
+01101000000010001000100111000110
+00011000010000001000010000000001
+10011000010000001111111000000000
+01100000000000001000100111010110
+00011111111001100111110000100000
+00100100001000010101110001001100
+01101000000010001100010000000000
+01011000000000000100010000000001
+10011000010000001111111000000000
+01100000000000010000100111011111
+01101000000010001000100111000110
+00011000010000001000010000000001
+01101000000000001100010000000000
+10011000010000001111111000000000
+01100000000000001100010000000000
+00100000001000000101110001010101
+01101000000010001100010000100000
+01011000000000000100010000100001
+10011000010000001111111000000000
+01100000000000010000100111011111
+01101000000010001000100111000110
+00011000010000001000010000000001
+01101000000000001100010000100000
+10011000010000001111111000000000
+01100000000000001100010000100000
+01101000000000010000100111011111
+00011111111000100000101000000000
+01101000000000010000100111011010
+00011111111000100000011000000000
+00011000010000100111001000000000
+00100000010000000110001101000001
+01101000000000001000010000010111
+01101000000010001000100111010110
+10011000010001100111110000000000
+00100100001000101101110000111000
+01110000010001000000000000011111
+01110000010001000010000000011111
+00100000001000000101110011100001
+11101000011000001000000000000000
+01100000000000001000100111000110
+11101000011000001000000000000000
+01100000000000001000100111010010
+00100000011000000000000000000000
+11011000010000000000000000000000
+11011010001000000000000000000010
+01101000000000010100011101001000
+01100000000000010000100111100001
+11011010010000000000100111100001
+00100000001000000101110011101100
+01101000000000001000010000010111
+11000000100000001101110011011110
+11101000011000001000000000000000
+01100000000000001100011101000110
+01011000000000000000000000000000
+01100000000000010100011101001000
+00100000001000000101110011100001
+11101000011000100000000000000000
+01100000000000100100011100011001
+01110000010001110001100000000100
+01110000010001101110101100000000
+00100000010000000101110011100001
+00100000001000000101010101001000
+01101000000000001000010000010111
+11000000100000011101110011011110
+11101000011000001000000000000000
+11000000000000000101110010000000
+11000000000000001101110010000101
+00100000001000000101110011011110
+11101000011010001000000000000000
+11101000011000001000000000000000
+01111101001110100000010000000111
+00100000010000000110010011011111
+00100000001000000101110011100001
+11101000011010001000000000000000
+00100000010000000110010011101010
+11101000011000001000000000000000
+00101111111011111111111000000000
+00100000010000000110010100000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000001101110011011110
+11101000011010001000000000000000
+00100000010000000110010011110101
+01011000000000000000000000000000
+01111101001000001111111000000000
+11011010001000000000000000000001
+00100000001000000101110000000110
+00011010001000100000011000000000
+11101000011000001000000000000000
+01100000000000001100010101101100
+11011000010000000000000000000000
+00101111111011111111111000000111
+01111001001000001000010000000000
+01100000000010001100010101100011
+11000000000000000101110010101001
+11000000000000001101110010101100
+11000000000000010101110010101110
+11000000010000001101110010100010
+11000000010000010101110010100100
+11000000010000011101110010100111
+01110000010001010110001100000000
+00100000001000000101110011011110
+01110000010001001101111100001101
+00100000001000000101110010101010
+01110000010001001101111100001101
+01110000010001001101110100000001
+00100000001000000101110011100001
+01110000010001001101111100001101
+00100000001000000101110010101111
+01110000010001001101111100000000
+01110000010001001101110100000011
+00100000001000000101110011100001
+01110000010001001101111100000101
+00100000001000000101110010101010
+01110000010001001101111100000101
+01110000010001001101110100000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000011111
+00100100001000010101110011011110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010000000001
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000011111
+00100100001000010101110011011110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010000100001
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000010100011100001011
+11000011000001001101110011011110
+01101000000000001000010000010111
+11000000100001000101110011011110
+00011010001000100000011000000000
+11101000011001000000000000000000
+01100000000001000100010110001101
+01110000000010011011110100010010
+00100000010000000111110110010000
+00100000001000000101110011100001
+01101000000000001100010101101100
+00100000001110100101110011011110
+01101000000000001100010101101010
+11000000100000000101110011011110
+01101000000000001100010101101011
+11000000100000000101110011011110
+00100000010000000111111000101001
+00100000001000000101110011100001
+11101000011000001000000000000000
+11000000000000001101110011011100
+01101000000000001100010101100110
+11000000000000011101110011011010
+11000000000000110101110011011010
+11000000000000111101110011011010
+00100000001000000101110011011110
+01110000010001010110011100000001
+00100000001000000101110011100001
+00100000010000000101000010100110
+00100000001000000101110011100001
+11011000010000000000000000000001
+11011010001000000000000000000000
+00100000001000000101110011101100
+11011000010000000000000000000000
+11011010001000000000000000000000
+00100000001000000101110011101100
+01110000000001000001011000000000
+00100000001000000101110100001111
+01110000000001000001011000000010
+00100000001000000101110100001111
+01110000000001000001011000000011
+00100000001000000101110100001111
+01110000000001000001011000000101
+00100000001000000101110100001111
+01101000000000001000010000010110
+00011111111000100010011000000000
+01110000000001000001011000000110
+01011000000000000000000000000010
+10011010001000001111111000000000
+00100000010000000101110101100110
+00011010011000100111111000000000
+11100001010000001000000000000000
+11100001010010001000000000000000
+00011010001000100111001000000000
+00011010010000100000110000000000
+00100000010000000110001100111011
+00100000001000000110001100011111
+01110000000001000001011000000111
+01101000000000001000010000101110
+00100000011110100000000000000000
+00100000010000000101110101100110
+01101000000000001000010000101110
+00011111111000100111001000000000
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001000
+01101000000000001100011101010001
+00011111111000100111001000000000
+00011111111000001111111000000010
+00100000010000000101110101100110
+01101000000000010100011101010100
+11100001010000010000000000000000
+01101000000000010100011101010010
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001001
+01011000000000000000000000000000
+00100000010000000101110101100110
+00100000001000000110001100011111
+01110000000001000001011000001010
+01011000000000000000000000000001
+00100000010000000101110101100110
+00100000010000000101110100100011
+01101000000000010100011100001011
+11011000111000000000000000000010
+10101111111011111111111111111111
+01111001001000001000010000000011
+11011000111000000000000000001001
+10101111111011111111111111111111
+01111001001000001000010000000101
+01101000000000001100011100001011
+11011000111000000000000000000100
+10101111111011111111111111111111
+01111001001000001000010000000100
+11100001010010001000000000000000
+00100000001000000110001100011111
+11011000010000000000000000000000
+01101000000000001100000100110011
+11011000111000000000000000000000
+10101111111011111111111111111111
+01111001001000001000010000000000
+11011000111000000000000000000001
+10101111111011111111111111111111
+01111001001000001000010000000001
+01101000000000001100001111111111
+11011000111000000000000000000000
+10101111111011111111111111111111
+01111001001000001000010000000010
+00100000011000000000000000000000
+01110000000001000001011000001101
+01101000000000001100001010111110
+00011111111011111111111000100010
+00011111111000100111001000000000
+00100000010000000101110101100110
+01101000000000010100001010111100
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001110
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100000100011011110
+11100001010000100000000000000000
+00100000001000000110001100011111
+01110000000001000001011000001111
+00100000001000000101110100001111
+01110000000001000001011000010000
+00100000001000000101110100001111
+01110000000001000001011000010001
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100100010101101101
+11100001010000100000000000000000
+00100000001000000110001100011111
+11011010001000000000000110000000
+00100000001000000101110101010000
+11011010001000000000000010000000
+00100000001000000101110101010000
+11011010001000000000000100000001
+00100000001000000101110101010000
+11011010001000000000000000000001
+01110000010001101110100100000000
+01110000000001000001011000010100
+01011000000000000000000000000010
+00100000010000000101110101100110
+00011010001000100111111000000000
+11100001010000010000000000000000
+00100000001000000110001100011111
+11011010011000000000000000000000
+00100000001000000101110101011010
+11011010011000000000000000000001
+01110000000001000001011000010101
+01011000000000000000000000000001
+00100000010000000101110101100110
+00011010011000100111111000000000
+11100001010000001000000000000000
+00100000001000000110001100011111
+01110000000001000001011000011101
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100000100011011110
+11100001010000100000000000000000
+00100000001000000110001100011111
+01110000000001000001010100000010
+01100000000000001000010000010111
+01100000000011000000100111000110
+01111001001000000000000000100101
+01000100101100111100000000101100
+00100000010000000101110101110001
+01101000000011000000100111000110
+00100000010000000110001100011100
+01101000000000011000010000010101
+11100001010000011000000000000000
+00100000011000000000000000000000
+00100000010000000101110101111010
+00100000011000001000000000000000
+00100000010000000101110101111000
+01101000000000100100011100110111
+00011111111010110111111000000000
+00100000011110100000000000000000
+00100000001000000101110101111110
+01101000000010001100011100110110
+00100000001000000110010011111111
+01101000000010001100011100110110
+00100000001000000110010011110011
+01101000000010001100011100110110
+00100000001000000110010011111101
+00011111111000001111111111111111
+00100100001110100101110101111110
+00100000011000000000000000000000
+00011010001000100111111000000000
+01100000000000010100011101010010
+00011010010000100111111000000000
+01100000000000001100011101010001
+01101000000000010000001110011011
+01101000000010010100011101010110
+10011000010001100111110000000000
+00100000001000101101110110001100
+01101000000010010100011101011000
+10011000010001100111110000000000
+00100100011000101000000000000000
+01100000000000010100011101010100
+00100000001000000101110110011000
+01101000000000001100011101011010
+11000010100000011101110110010100
+01101000000000001100011101011010
+11000100000000001000000000000000
+00100000010000000101110100000011
+00100000001000000101110110011100
+01110000000001000001011000001001
+00100000010000000101110011100001
+00100000010000000101101110010001
+00100000001000000101110110010000
+01101000000000001100011101011010
+01111001001000000111111000000001
+01100000000000001100011101011010
+00100000011000000000000000000000
+01101000000000001100011101011010
+01111001001111111111111000000001
+00100000001000000101110110011010
+01101000000000001100011100101111
+11000011100000000000000000000000
+00100000010000000101110110111101
+00100000001000000011111001110111
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+01111001001000000000000000100101
+01000100101101000100000000101101
+00100000010000000101110110101100
+00100000001000000101110110100100
+01101000000000001100011101000110
+00100000011110100000000000000000
+01101000000000001100011101000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101000111
+00100100011110100000000000000000
+01110000010001110100011100001010
+00100000010000000110010111000000
+00100000010000000110010111011110
+00011111111001101111110001100100
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011000000001110000010000000000
+01100000000000001100011101001000
+01100000000010001100011101001001
+00100000011000000000000000000000
+01101000000000001100011100101111
+01111001001000000111111000000000
+01100000000000001100011100101111
+00100000011000000000000000000000
+01101000000000001100011100101111
+01111001001111111111111000000000
+01100000000000001100011100101111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101001100000000101101
+00100000010000000111111110000100
+00100000001000010011111001000001
+00100000001000000011111001000011
+01111001001000000000000000100101
+01000100101101010100000000101101
+01011000000000000101111111000011
+01100000000000010100001010010000
+01011000000000000101111011100010
+01100000000000010100001010010010
+01011000000000000101111000100111
+01100000000000010100001010001110
+01011000000000000101111111010100
+01100000000000010100001010010110
+01011000000000000101110111101111
+01100000000000010100001010010100
+01011000000000000101111011111101
+01100000000000010100001010011100
+01110000000010001101010000000000
+01110000000010001101010100000000
+01111001001000000000000000100101
+01000100101101011100000000101101
+00100000010000000101111000001010
+00100000011101011000000000000000
+00100000010000000101110111100101
+00100000010000000101110111101101
+01011000000000000101111000100100
+01100000000000010100001010001100
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000110000001110000
+00100000010000000011111000101000
+00100000001000101101110111101010
+00100000010000000110010001110010
+00100000010000000110000010011000
+00100000001000000011111000100000
+00100000010000000110010001000001
+00100000010000000110010001110110
+00100000001000000110000010011110
+01110000010001110100011100000001
+00100000001000000101111000000001
+00100000010000000111111000111111
+00100000010000000101110111110010
+00100000001000000101111000111110
+01101000000010001100011101010010
+00100000010000000110010011110101
+00100100001000001101110111111001
+01101000000000001100011101000111
+11000001000000000000000000000000
+01110000010001110100011100000000
+00100000011000000000000000000000
+01101000000000001100011101000111
+11000001000000001000000000000000
+01110000010001110100011100000001
+01101000000000001100011101000110
+00011111111000001111111000000001
+00011111111000010111111000000011
+01100000000000001100011101000110
+00100000001000000101111000000001
+01011000000000000000000000000110
+00100000010000000110000011101100
+00011111111000010000010011111100
+01101000000000001100011101000110
+10011000010000001111111000000000
+00011111111011010111111000000000
+00011111111000001111111000000110
+00100000010000000110000011101011
+00100000001000000110000010011000
+00100000010000000101111110001110
+00100000010000000101111000010000
+01101000000100010000000001010000
+01111001001111111111111000001011
+01100000000100010000000001010000
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000011110100111110
+01101000000010001100011101100011
+00100000010000000110010011011111
+01101000000010001100011101100100
+00100000010000000110010011011111
+01101000000010001100011101001101
+00100000010000000110010011011111
+01101000000010001100011101001110
+00100000010000000110010011011111
+01101000000010001100011101001111
+00100000010000000110010011011111
+01101000000010001100011101010000
+00100000010000000110010011011111
+01101000000010001100011101010001
+00100000010000000110010011011111
+01101000000010001100011101010011
+00100000010000000110010011011111
+01101000000010001100011101010010
+00100000001000000110010011011111
+01011000000000001011110000000101
+00100000010000000110000011101011
+01110000000000001001111100000001
+00100000010000000101111000111110
+11011000010000000000000000011001
+00100000010000000110010011101000
+01110000100000001000000100000000
+01101000000010001100011101100011
+00100000010000000110010011000010
+01101000000010001100011101100100
+00100000010000000110010011000010
+01101000000010001100011101001101
+00100000010000000110010011000010
+01101000000010001100011101001110
+00100000010000000110010011000010
+01101000000010001100011101001111
+00100000010000000110010011000010
+01101000000010001100011101010000
+00100000010000000110010011000010
+01101000000010001100011101010001
+00100000010000000110010011000010
+01101000000010001100011101010011
+00100000010000000110010011000111
+01101000000000001000000010011111
+00100100011110100000000000000000
+00100000001000000110010011010010
+01111001001000000000000000100101
+01000100101101100100000000101101
+00100000010000000101111001001101
+00100000010000000101111010010100
+01101000000000001100011101011110
+01101000000010001100011101011101
+01100000000000001100011101011101
+10011000010001100111110000000000
+00100100001000101011111000111001
+01101000000000001100011101100110
+01101000000010001100011101100101
+01100000000000001100011101100101
+10011000010001100111110000000000
+00100100001000101011111000111001
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101011011
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101011100
+00100000010000000110010011110101
+01111001001000001010001000000001
+00011010001000100111111000000000
+01100000000000001100011101011110
+11000000000000001101111001011011
+11000000000000010101111001011111
+01101000000000001100011101011111
+11000010100000111101111001101011
+00100000011000000000000000000000
+01101000000000001100011101011101
+11000000000000000101111001100011
+11000000000000011101111001100101
+00100000011000000000000000000000
+01101000000000001100011101011101
+11000000000000000101111001100111
+11000000000000011101111001101001
+00100000011000000000000000000000
+01110000010001110101111110000010
+00100000011000000000000000000000
+01110000010001110101111110000001
+00100000011000000000000000000000
+01110000010001110101111110000000
+00100000011000000000000000000000
+01110000010001110101111110000011
+00100000011000000000000000000000
+01101000000000001100011101011111
+01111001001111111111111000000111
+01100000000000001100011101011111
+01101000000000001100011101011111
+11000000000000000101111001110100
+11000000000000001101111001110111
+11000000000000010101111001111010
+11000000000000011101111001111101
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000011101111010000000
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000000101111010000000
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000011101111010001010
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000000101111010001010
+00100000011000000000000000000000
+01101000000000001100011101100010
+00011111111000001111111000000001
+01100000000000001100011101100010
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110001000000000
+01101000000000001100011101100000
+00011111111000001111111000000001
+01100000000000001100011101100000
+00100000011000000000000000000000
+01101000000000001100011101100001
+00011111111000001111111000000001
+01100000000000001100011101100001
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110000100000000
+01101000000000001100011101100000
+00011111111000001111111111111111
+01100000000000001100011101100000
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101100011
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101100100
+00100000010000000110010011110101
+01111001001000001010001000000001
+00011010001000100111111000000000
+01100000000000001100011101100110
+11000000000000001101111010100010
+11000000000000010101111010100110
+01101000000000001100011101100111
+11000010100000111101111010110010
+00100000011000000000000000000000
+01101000000000001100011101100101
+11000000000000000101111010101010
+11000000000000011101111010101100
+00100000011000000000000000000000
+01101000000000001100011101100101
+11000000000000000101111010101110
+11000000000000011101111010110000
+00100000011000000000000000000000
+01110000010001110110011110000010
+00100000011000000000000000000000
+01110000010001110110011110000001
+00100000011000000000000000000000
+01110000010001110110011110000000
+00100000011000000000000000000000
+01110000010001110110011110000011
+00100000011000000000000000000000
+01101000000000001100011101100111
+01111001001111111111111000000111
+01100000000000001100011101100111
+01101000000000001100011101100111
+11000000000000000101111010111011
+11000000000000001101111010111110
+11000000000000010101111011000001
+11000000000000011101111011000100
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000011101111011000111
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000000101111011000111
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000011101111011010001
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000000101111011010001
+00100000011000000000000000000000
+01101000000000001100011101101010
+00011111111000001111111000000001
+01100000000000001100011101101010
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110101000000000
+01101000000000001100011101101000
+00011111111000001111111000000001
+01100000000000001100011101101000
+00100000011000000000000000000000
+01101000000000001100011101101001
+00011111111000001111111000000001
+01100000000000001100011101101001
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110100100000000
+01101000000000001100011101101000
+00011111111000001111111111111111
+01100000000000001100011101101000
+00100000011000000000000000000000
+00100000010000000011111001111011
+01110000010001110100101100000010
+00100000010000000011111001111111
+00100000001000000011111001101101
+01011000000000000000000000000010
+01100000000000001100011100001001
+00100000011000000000000000000000
+01101000000000001100001010000011
+00100000011110100000000000000000
+00100000010000000100100000010010
+00100100011110100000000000000000
+00100000010000000101111100010100
+00100100011101000000000000000000
+00100000010000000101111011111010
+11011010001000000000000000001001
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000001010100001
+11100000101000010000000000000000
+01101000000000111100011100101001
+11100000101000111000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000110100011100101010
+01100000000000001100011100101111
+00100000001000000101111011101001
+01011000000000000000000000000000
+01100000000000110100011100101010
+01100000000000001100011100101111
+00100000001000000101111100001100
+01101000000000010100011100111001
+01100000000000010100011101000001
+00100000011000000000000000000000
+01101000000010010100010011111000
+00100000010000000101000111110101
+11101000110000001000000000000000
+01100000000000001000001110111110
+11011000101000000100010001101011
+00011000101000001000101000000001
+01101000000010010100010011111000
+11100000101010010000000000000000
+00100000010000000101000111110101
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111011001101
+01101000000010001000001110111110
+00011000010000001000010000000111
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100101101101100000000101101
+01101000000010010100010011111000
+00100000010000000101000111110101
+00011000110000001000101000000001
+01101000000000111100011100101001
+11100000101000111000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101110100000000101101
+01111000010101000111110000000000
+01011000000000000000000000000000
+01100000000000110100011100101010
+00100000010000000101111100011110
+00100000010000000101111110000111
+00100000010000000101111101100001
+00100000010000000101111101100111
+00100000001000000101111101111111
+01101000000000001100011100110101
+00100000010110100101111101011010
+01110000010001110011010100000001
+01111000010101000111110000000000
+01101000000010001100011101010011
+00100000010000000110010011110101
+00100100011000001000000000000000
+01011000000000000000000000000000
+00100000010000000110000011101100
+01011000000000000000000000000010
+00100000010000000110000011101100
+11000100000000111000000000000000
+01011000000000000000000000000011
+00100000010000000110000011101100
+00100000010000000101111110111011
+01100000000000010100011100101010
+01011000000000000000000000000100
+00100000010000000110000011101100
+00100000010000000101111110111011
+00011111111001100111111000000000
+01100000000000010100011100101100
+01101000000000100100011100101010
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000010000000110000011100111
+00100000010000000101111101011010
+11011111111000000000000000000101
+00100000010000000110000011101100
+01100000000000001100011100110000
+11011111111000000000000000000111
+00100000010000000110000011101100
+01100000000000001100011100110001
+11011111111000000000000000001000
+00100000010000000110000011101100
+01100000000000001100011100110010
+00100000001000000110000011101001
+01101000000000001100011100110001
+11000001100000000000000000000000
+01101000000000001100011100110010
+00011111111001100111110000101101
+00100000011000010000000000000000
+01110000010001110011001100000000
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000000000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+01101000000000001100011100110001
+11000001100000000000000000000000
+01101000000000001100011100110010
+00011111111001100111110000101101
+00100100011000010000000000000000
+01110000010001110011001100000001
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000001000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+11011111111000000000000000000011
+00100000010000000110000011101100
+01100000000000010100011100101010
+11011111111000000000000000000100
+00100000010000000110000011101100
+01100000000000010100011100101100
+00100000011000000000000000000000
+01101000000000001100011101101000
+00100000011110100000000000000000
+01100000000000001100011100101110
+01110000010001110110100000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100011101100000
+00100000011110100000000000000000
+01100000000000001100011100101111
+01110000010001110110000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101001101
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101001110
+00100000010000000110010011110101
+01111001001000001010001000000001
+01101000000010001100011101001111
+00100000010000000110010011110101
+01111001001000001010001000000010
+01101000000010001100011101010000
+00100000010000000110010011110101
+01111001001000001010001000000011
+01101000000010001100011101010001
+00100000010000000110010011110101
+01111001001000001010001000000100
+00011010001000100111111000000000
+00100000011000000000000000000000
+00100000010000000101111101101101
+01101000000010001100011100101001
+01100000000000001100011100101001
+10011000010000101111111000000000
+00011111111001100111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011000010000000000000000011010
+00100000010000000110010011110101
+00100000011000001000000000000000
+01011000000000000000000000001010
+00100000010000000110000011101100
+00100000000000000000001111101000
+00100000001000000101111110000111
+00100000010000000110000110101100
+00100000011101011000000000000000
+01011000000000000000000000000000
+00100000010000000110000011101100
+01100000000000001000001001001011
+11000000000110000101111110011000
+11000000000110001101111110011000
+00100000010000000110000011000000
+00100000000000000000001111101000
+00100000001000000101111110010000
+01011000000000001000000000000110
+00100000010000000110000011101011
+00100000000000000000001111101000
+00100000011000000000000000000000
+01101000000010001100011101010110
+00100000010000000110010011111111
+00100000010000000111111010001001
+01101000000010001100011101010110
+00100000010000000110010011111101
+00100000001000000111111010001001
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000000000110100010001
+00100000010000000110000011011011
+01011000000000000000010000011011
+00100000010000000110000011011011
+01011000000000000000010000011100
+00100000010000000110000011011011
+01011000000000000000111100011101
+00100000010000000110000011011011
+01011000000000000000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+01011000000000001011101001000001
+00100000010000000110000011011011
+00100000000000000000111110100000
+01011000000000001111111101111111
+00100000010000000110000011011011
+00011010001000100111111000000000
+00100000010000000110000011011011
+01011000000000000000000001111111
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+11000100000000111000000000000000
+11011000010000001111111100000000
+10011000010000011111111000000000
+00100000011000000000000000000000
+11000100000000011000000000000000
+11011000010000000000000011110000
+10011000010000011111111000000000
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100011110100000000000000000
+01101000000000001100011101001100
+01100000000000001100010011111000
+01101000000010010100010011111000
+00100000010000000100111101101010
+11000100000000000000000000000000
+01101000000000001100010110010101
+11000100000000000000000000000000
+00100000010000000101111100010100
+00100100011101000000000000000000
+00100000010000000101111011111010
+01101000000000001100011101001100
+01100000000000001100010011111000
+01110000000010011011110100011011
+00100000010000000100101111010110
+00100000001000000101111100001100
+00011010011000100111111000000000
+11000000000010100101111111100111
+11000000000000001110000010000100
+11000000000010101101111111110110
+11000000000000010101111111110110
+11000000000000101101111111110101
+11000000000010000110000001001000
+11000000000010010110000001101000
+11000000000000110101111111110011
+11000000000101000101111011011011
+11000000000101001101111011011110
+11000000000000100101111111110000
+11000000000010011101111111110000
+11000000000001010101111111101110
+11000000000101110011111000110010
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000110000000010100
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001111111111111000000000
+01100000000000010100001010101111
+01011000000000000000000000000000
+01100000000000010100011100111111
+00100000010000000101111011111010
+00100000001000000110000010000100
+00100000010000000101100111010111
+00100000001000000011111001000101
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000011111000001010
+00100000010000000101111011011111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101111100000000101101
+00100000010000000110000000000000
+01101000000000010100001010101101
+11000010100000111110000000010000
+11000010100000000011111000001100
+11000010100000001110000000001010
+11000010100000010110000000001101
+11000010100000011110000000001101
+00100000001000000110000001110100
+01011000000000000000000000000000
+01100000000001000100011101011011
+11100000101001000000000000000000
+01110000010001110100010100000000
+01110000010001110011010100000000
+01110000010000101000001100000000
+01110000010001001011001000000000
+01110000010001110100101100000000
+01110000010001110011011000000000
+00100000011000000000000000000000
+11000010100000101110000000001101
+11000010100000011110000000001101
+00100000001000000110000001110100
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000011111000001010
+00100000010000000101001010100000
+01101000000000010100001010101101
+11000010100000000011111000001100
+00100000001000000011111000001010
+01111001001000000000000000100101
+01000100101110000100000000101110
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000110000000100111
+00100000010000000110000000101101
+00100000010000000110000000110100
+00100000010000000110000001000010
+00100000010000000110000000100001
+00100000001000000110000000010111
+01101000000000001100011101101100
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101101100
+00100100011110100000000000000000
+00100000001000000110000010101010
+01101000000000001100011100001001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100001001
+00100100011110100000000000000000
+00100000001000000110000001101000
+01101000000000010100011100111101
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100111101
+00100100011110100000000000000000
+00100000010000000110000010000100
+00100000001000000011111001110101
+01101000000000010100011100111111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100111111
+00100100011110100000000000000000
+00100000010000000011111001011111
+00100000001000000011111001110101
+01101000000000010100011101000011
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101000011
+00100100011110100000000000000000
+01110000010001110100010100000000
+00100000011000000000000000000000
+01101000000000010100011101000001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101000001
+00100100011110100000000000000000
+00100000001000000110000010001111
+01111001001000000000000000100101
+01000100101110001100000000101110
+01110000010001110100010100000000
+01110000010001110011011000000001
+01011000000000000000000000000000
+01100000000000010100011100111111
+00100000010000000110000010001111
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001110000001100110
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001110000001100010
+00100000010000000011111010000001
+00100000001000000110000001110100
+01101000000000110100001001110011
+00100000001110100011111001010100
+00100000001000000011111001001001
+01101000000000110100001001110011
+00100000001110100110000001100000
+01101000000000010100011100110111
+01100000000000010100011100111111
+00100000010000000011111001111111
+00100000001000000011111001011101
+00100000010000000011111001101111
+00100000001000000011111001100011
+01101000000000010100011100001011
+00101111111011111111111000000111
+00100000010000001011111001010000
+00100000011000000000000000000000
+00100000010000000101001010100000
+00100000011000000000000000000000
+01110000010000101000001100000001
+00100000010000000011111001111111
+00100000010000000011111001111101
+01110000010001110100101100000001
+01011000000000000000000000000000
+01100000000000010100011100000111
+01100000000000001100011100001001
+00100000001000000011111001111001
+01101000000000001100001010110101
+11000000000110011110000001010111
+11000000000110100110000001011010
+00100000001000000110000001110100
+01111001001000000000000000100101
+01000100101110010100000000101110
+01101000000000010100011100001011
+11000010100001011110000001111010
+00011000000010100111111000000000
+01100000000000001100010100111111
+00100000010000000011111010000001
+01101000000000010100011100010110
+01100000000000010100011100111101
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111001100011
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111001010111
+00100000001000000011111001101111
+01111001001000000000000000100101
+01000100101110011100000000101110
+01011000000000000000000000000000
+01100000000000010100011100111101
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111001100001
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111001011001
+00100000001000000011111001110011
+01111001001000000000000000100101
+01000100101110100100000000101110
+01011000000000000000000000000000
+01100000000000010100011101000001
+01101000000000010100011100001011
+11000010100001001011111001101011
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101110101100000000101110
+11011000010000000000000000000001
+11011010001000000100011101000110
+11011010010000000000000011000110
+00100000001000000110001001101111
+01111001001000000000000000100101
+01000100101110110100000000101110
+11011000010000000000000000000001
+11011010001000000100011101000110
+11011010010000000000000011000110
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100101110111100000000101110
+01101000000000001100011100110100
+00100000010000000110000011010001
+11000000000000000110000010110000
+00100000011000000000000000000000
+01101000000010001100011101010111
+00100000010000000110010011111101
+01101000000010001100011101011000
+00100000010000000110010011111101
+01101000000010001100011101011001
+00100000001000000110010011111101
+01101000000000001100011101101011
+00100000011110100000000000000000
+01110000010001110110101100000000
+01110000010001110110110000111100
+00100000010000000110000010101010
+01101000000000001100011101101101
+11000000000000001110000010111010
+11000000000000010110000010111100
+11000000000000011110000010111110
+00100000011000000000000000000000
+01101000000010001100011101010111
+00100000001000000110010011111111
+01101000000010001100011101011000
+00100000001000000110010011111111
+01101000000010001100011101011001
+00100000001000000110010011111111
+01111001001000000000000000100101
+01000100101111000100000000101111
+01101000000100001000000001110011
+11011000010000000000000000000110
+10011000010000011111111000000000
+01100000000100001000000001110011
+01101000000100001000000001110111
+10011000010000011111111000000000
+01100000000100001000000001110111
+01110000100000001000000100000000
+01101000000100001000000001110111
+01111001001111111111111000000001
+01111001001111111111111000000010
+01100000000100001000000001110111
+00100000000000000000000000011110
+01110000100000001000000100000001
+00100000011000000000000000000000
+00011111111000100010010000000000
+00100000010000000110000011100111
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000010000000110000011101100
+00011111111000100010010000000000
+00100000010000000110000011101001
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000011000000000000000000000
+00011111111000100010010000000000
+00100000010000000110000011100111
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000010000000110000011101011
+00100000010000000110000011101001
+00100000000000000000000001100100
+00100000011000000000000000000000
+01101000000000001100001010111011
+11000001011111111000000000000000
+01101000000010001100001010111011
+00100000001000000110010011101000
+01101000000010001100001010111011
+00100000001000000110010011111111
+01101000000010001100001010111011
+00100000001000000110010011111101
+00100000001000000110000111000001
+00100000001000000110000111001001
+00100100001101000110000011110001
+01101000000100001000000010000101
+00011111111000011111111000100000
+01100000000100001000000010000101
+00011000010000100111110000000000
+00100000001000101110000011110100
+00011010011000100111101000000000
+00101111110011000000000000000000
+00100000001000000110000110001110
+00011000000000000000010000000100
+11011010001000000000001000100001
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110000011110001
+11011010001000000101010110101010
+01101000000000010000001000100001
+11101000110010010000000000000000
+10011010001001100111110000000000
+00100000011000000000000000000000
+11011000010000000000000000000010
+11011010001000000000001000100111
+00100000010000000110000011110001
+01101000000000010000001000100111
+01100000000000010000001000011010
+00100000010101000110000100001000
+00100000011000000000000000000000
+11011000010000000000000000010000
+11011010001000000000001000101001
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110000011110001
+11011000110000000000001000101001
+11011111001000000000000000010000
+00100000010000000111000110100001
+00100000010000000111000101010000
+00100000010000000111000110111010
+00100000001000000111000101001010
+01111000010101101111110000000000
+00100000010000000110000011110110
+00100100011000101000000000000000
+01111000001101101111110000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+11011010001000001000000000100101
+00100000010000000110000011101101
+01110000100000000010001100000000
+00100000010000000110000011110110
+00100100011000101000000000000000
+00011000000000000111111000000000
+01100000000100010000001010001000
+11011010001000001000001010001010
+00100000010000000110000011101101
+11011000010000000000000000000110
+00100000010000000110000011110111
+00100100011000101000000000000000
+11101000110000010000000000000000
+10011000000000000010001000000000
+00100000010000000110000011110001
+00100000001000000110000100100100
+01111001001000000000000000100101
+01000100101111001100000000101111
+00100000010000000111111101100110
+01011000000000000001000000000000
+01100000000000010000001000011010
+11011010011000000110001001001100
+11011111001000000000000000000010
+00100000010000000110000011110110
+00100100011000101000000000000000
+01101000000000010000001000011010
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+11000010000000000110000100110010
+00100000001000000110000100100100
+01110000100000000101000000100101
+01110000100000101000000000000101
+00100000010000000111111101100110
+01111001001000000000000000100101
+01000100101111010100000000101111
+01111000010101000111110000000000
+00100000010000000110001011000100
+01011000000000000000000000000000
+11011010001000000000001000010110
+11011000010000000000000000000010
+00100000010000000110001100001101
+01101000000000010000001000010110
+11000011000000111110000101010000
+01011000000000000000011111110000
+11011010001000000000001000101001
+11011000010000000000000000010000
+00100000010000000110001100001101
+01110000100000000000011000001000
+11011000110000000000001000101001
+00100000010000000111000110101101
+01111000001101000111110000000000
+01111001001000000000000000100101
+01000100101111011100000000101111
+01101000000000010000001000010110
+00011111111100001111111000000000
+11011000010000000000011111111111
+10011000010000010111111000000000
+00100000001000101110000101011110
+00100000010000000110001011001001
+11011010011000000110001100010010
+00100000010101000110000100001000
+00100000010000000110000100010100
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101010000
+01111001001000000000000000100101
+01000100101111100100000000101111
+00100000010000000110001011000111
+01101000000000001000001000010110
+11000010100000101110000101101101
+01011000000000000000000000000000
+01100000000000011000001000011001
+00100000010000000110000111011001
+11011010011000000110000111111011
+00100000010000000110000100000001
+00100000010000000110000100010100
+00100100001101101110000101101101
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101011110
+01111001001000000000000000100101
+01000100101111101100000000101111
+00100000010000000110001000110110
+01101000000000001000001000010110
+11000010100000110110000110000000
+00100000010000000110000110001000
+00100100001101101110000101111000
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101101101
+00100000001000000110000110000000
+00100000010000000110001000110011
+01101000000000001000001000010110
+11000010100000110110000110000000
+00100000010000000110000110001000
+00100100001101101110000110000000
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101111000
+00011000000000000111000000000100
+00100000010000000111000110111011
+01110000100000000101000000100001
+01101000000000001000001000010110
+11000100000000100000000000000000
+00100000010000000011111011001101
+00100000010000000011111011110100
+00100000001000000110000110000110
+01011000000000000000000000000000
+01100000000000010000001000011010
+11011010011000000110001001001100
+00100000010000000110001000011101
+00100000010000000110000100000001
+00100000001000000110000100010100
+01101000000000001000001000010101
+00011111111000111111111000000000
+01111001001000001111111000000000
+00101010001011000000000000001111
+00100000011000001000000000000000
+01100000000000001000001000010101
+00100000011000000000000000000000
+01101000000100001000000010000101
+11000100000000101000000000000000
+00100000001000000110000110011011
+01101000000100001000000100101100
+10101111111011111111111111111111
+00100000011000001000000000000000
+01101000000100001000000100001000
+11000011000000001110000110011000
+00100000010000000111000101001010
+00100000001000000110000110011000
+01101000000000010100001000111001
+00100000011110100000000000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+01101000000010010100001000111011
+00011000010010111111001000000000
+10011000000000000000110000000000
+11101000110000001000000000000000
+01100000000100001000000000100101
+11000010000000000110000110100111
+01110000100000000010001100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111110100000000101111
+01101000000000001100001010111001
+01100000000100001000000010000110
+01101000000000001100001010111010
+01100000000100001000000010000111
+01011000000000000000001000011000
+01100000000100010000000010001010
+01011000000000000000001000011101
+01100000000100010000000010001100
+01101000000100001000000010000001
+01111001001000000111111000000000
+01111001001111111111111000000001
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000110
+01111001001000000111111000000111
+01100000000100001000000010000110
+01111001001111111111111000000111
+01100000000100001000000010000110
+00100000011000000000000000000000
+01111001001000000111111000000111
+01100000000000010000001000011000
+01111001001000000000000000100101
+01000100101111111100000000101111
+01110000100000001000100000000010
+01110000100000001000111000000000
+01110000100000000000011000000010
+00100000001000000110000111010011
+00011000000000000000010000000001
+01100000000000001000001000011000
+01111001001000000000000000100101
+01000100110000000100000000110000
+01110000100000001000100000000001
+01100000000110010000000010001110
+01110000100000000000011000000010
+00100000010000000110000111010011
+01101000000000001000001000011101
+00100000011000000000000000000000
+01101000000000010100000101110110
+00011111111000001111111000000001
+01100000000000010100000101110110
+01101000000100001000000100101100
+11000011000000011110000111010011
+00100000011000000000000000000000
+01110000100000001000011001000000
+01110000100000001000011100000000
+01101000000100001000000010000001
+01111001001111111111111000000000
+01111001001000000111111000000001
+01100000000100001000000010000001
+01011000000000000000000000000000
+01100000000000100000001000011000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000100010000000010001110
+01011000000000000000000000000001
+01100000000100001000000010001000
+01011000000000000000001000011000
+01100000000100010000000010001010
+01110000000000100001100000000110
+01110000100000000000011000000010
+00100000001000000110000111010011
+00011000010000001000010000000100
+01100000000110010000000010001000
+00011010001000001010001111111100
+11011000010000000000000000000010
+11100010001010001000000000000000
+00011111111100010000010000000000
+11100000101010001000000000000000
+00011111111011001000010000000000
+11100000101010001000000000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+01100000000100010000000010001010
+01011000000000000000000000000000
+01100000000100010000000010001110
+01110000100000000000011000000010
+00100000001000000110000111010011
+01100000000110010000000010001110
+01011000000000000000000000000100
+01100000000100010000000010001000
+01110000000000100001100000000011
+01011000000000000000001000011000
+01100000000100010000000010001010
+00011010001000100111111000000000
+01100000000100010000000010001100
+01101000000100001000000010000110
+00101010001011000000000000001111
+01111001001000001111111000000110
+01100000000100001000000010000110
+01110000100000000000011000000010
+01101000000100001000000100101100
+11000010100000111110001000001000
+11011000111000000000000000000011
+00100000010000000110000110010101
+00100000010000000110000111010011
+00101111111011111111111000000010
+00100000010000000110000110001110
+01101000000000001000001000011001
+00011111111100000010010000000000
+01101000000000001000001000011010
+00011111111011010111111000000000
+10011010010000011010010000000000
+01101000000000001000001000011011
+10011010010000011111111000000000
+10011000010000001111111000000000
+01100000000000001000001000011011
+00011111111011001111111000000000
+01100000000000001000001000011010
+00011111111011001111111000000000
+01100000000000001000001000011001
+00100000011000000000000000000000
+01110000100000001001000100000101
+01110000100000001001001000000111
+01110000100000001001001100000111
+01110000100000001001010000000111
+01110000100000001001010100000111
+01110000100000001001011000000101
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000101110001000100100
+00100000011000000000000000000000
+01100000000100010000000010011000
+00011010001000100111111000000000
+01100000000100010000000010011010
+00011010010000100111111000000000
+01100000000100010000000010011100
+00011000010000100111111000000000
+01100000000100010000000010011110
+11011000010000000000000000000001
+01111101001110100000010000000001
+01100000000100001000000010010000
+01110000100000000000011000000100
+00100000001000000110001000100100
+01111001001000000000000000101010
+01110000010000101011011000001000
+00100000011000000000000000000000
+01111001001111111000000000101010
+01110000010000101011011000100000
+00100000011000000000000000000000
+01101000000000001100001010101000
+10011010010000001111111000000000
+01100000000000001000001000011010
+00100000001000000110001001000000
+01101000000000010000001000011010
+00011111111100001111111000000000
+01100000000000001000001000011010
+01011000000000000000000000000011
+01100000000100010000000010011000
+01110000000000100001100110100000
+01110000000000100001101110100001
+00100000001000000110001001010100
+01111001001000000000000000100101
+01000100110000001100000000110000
+11000101000101010110001000111001
+01101000000000010100001010101000
+10011010010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+01111001001000000000000000100101
+01000100110000010100000000110000
+11000101000101010110001000111101
+00100000000000000111010100110000
+01011000000000000000000000000100
+01100000000100010000000010011000
+01110000000000100001100110100000
+01110000000000100001110010100001
+01011000000000000000001000011001
+01100000000100010000000010011010
+01100000000110010000000010011110
+00011010001000100111111000000000
+01100000000100010000000010011100
+01011000000000000000000000000010
+00101010001011000000000000001111
+01111001001000001111111000000000
+01100000000100001000000010010000
+01110000100000000000011000000100
+11011000111000000000000000000101
+00100000010000000110000110010101
+00100000010000000110001000100100
+00101111111011111111111000000100
+00100000010000000110000110001110
+11000101000101010110001001101010
+01101000000000010000001000011010
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000011000000000000000000000
+01101000000000001000001000011010
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000011000000000000000000000
+01101000000000010100001010101000
+10011010010000001111111000000000
+01100000000000010000100110111110
+01111001001000000000000000100101
+01000100110000011100000000110000
+01100000000010010000100111000110
+00011010001000100111111000000000
+01100000000000010000100111011101
+00100000010000000110001010000111
+01101000000010010000100111010110
+01101000000000010000100111011101
+00011111111000100010001000000000
+01101000000000010000100110111110
+00100000010000000110001010101000
+01101000000000010000100111010110
+01101000000010010000100111011101
+10011000010000001000010000000000
+01100000000010010000100111011101
+01101000000010010000100110111110
+10011000010000001000010000000000
+01100000000010010000100110111110
+01101000000000010000100111000110
+00100100001110100110001001110111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000100100000000110000
+01101000000000010100001010110110
+00011111111000001111111111111111
+01101000000010010000100110111110
+10011000010000011111111000000000
+00011111111000001111111000000001
+01100000000000011000100111011010
+01101000000000010000100111000110
+10011000010000001111111000000000
+01101000000010011000100111011010
+10011000010001100111111000000000
+00100100001000010110001010011010
+01100000000000010000100111000110
+01101000000000011000100111011010
+01101000000010010000100110111110
+10011000010001100111111000000000
+01100000000000010000100111010110
+00100000011000000000000000000000
+01101000000000010000100111000110
+01100000000000010000100111010110
+01011000000000000000000000000000
+01100000000000010000100111000110
+00100000011000000000000000000000
+00011000010000001000010000000010
+01100000000110010000000010011000
+00011010001000001010001111111110
+11101010001010011000000000000000
+00011000010000100010010000000000
+11011000010000000000000010100000
+11100010001010001000000000000000
+11100000101000001000000000000000
+00100000001000000110001010110111
+00011111111000100010010000000000
+01111001001000000000000000100101
+01000100110000101100000000110000
+00100000000000000111010100110000
+11000101000101010110001010011111
+00011010010000100111111000000000
+00011000010000001000010000000011
+01100000000110010000000010011000
+00011010001000001010001111111101
+11101010001010011000000000000000
+00011000010000100010010000000000
+11011000010000000000000010100000
+11100010001010001000000000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+01100000000100010000000010011010
+01011000000000000000000000000000
+01100000000100010000000010011110
+01110000100000001001000000000001
+01110000100000000000011000000100
+00100000010000000110001000100100
+00011010010000100111111000000000
+11100010001000011000000000000000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000011000000000000000000000
+01110000100010010111001101110000
+00100000000000000000101110111000
+00100000011000000000000000000000
+01110000100010010111001100110000
+00100000011000000000000000000000
+00011111111010011111111000000000
+01100000000100010000000001000101
+01110000100000000100101100000000
+00100000011000000000000000000000
+00100000010000000110001011001001
+00100000010000000110001011111010
+11101010001010001000000000000000
+00011010001000001010001000000001
+00011000000000000000111000000000
+10101000010011000000000000000000
+00100000001000001110001011110001
+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
+00100000001000001110001011010010
+01101000000100010000000001000101
+00011111111000001111111000000001
+01100000000100010000000001000101
+00011000111000001000111000000001
+00101000111000000001111000001000
+00100100001000001110001011010010
+11000010000000000110001011001111
+01110000100000000100011110000011
+00100000011000000000000000000000
+01110000100000000100011110000010
+00100000000000000000000000001100
+01110000100000000100011110000000
+01110000100000000100011110000010
+00100000000000000000000010010110
+00100000011000000000000000000000
+00100000010000000110001011111010
+01110000100000000100011110100010
+00011010001000100111111000000000
+01100000000100010000000001001000
+01111001001000000000010000001011
+00101111111011000000000000001111
+01111001001000001000010000001111
+01100000000110010000000001001010
+01110000100000000000011000000001
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000001110001100001010
+00100000011000000000000000000000
+00100000010000000110001011001001
+00100000010000000110001100000000
+00100000010000000110001100001010
+01110000100000000100011110000011
+00100000011000000000000000000000
+01101000000100010000000100100100
+01100000000100010000000001000101
+00100000010000000110001100000000
+11011000111000000000000000000001
+00100000010000000110000110010101
+00100000010000000110001100001010
+00101111111011111111111000000000
+00100000010000000110000110001110
+01110000100000000100011110000011
+00100000011000000000000000000000
+01101000000100010000000001011110
+10011000000000000001010000000000
+00100000011000000000000000000000
+00011001010000100111111000000000
+01100000000100010000000001011110
+00100000011000000000000000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000000010100001011010011
+01100000000100010000000001010010
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010110001100110101
+00100000011000101000000000000000
+00100000001000010110001100101010
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010110001100111000
+00100000011000101000000000000000
+00100000001000010110001100101111
+00011111001000001111001000000100
+00100000001000000110001100111011
+11101000110001000000000000000000
+11100001010001000000000000000000
+00100000011000000000000000000000
+11101000110000100000000000000000
+11100001010000100000000000000000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000110001100111101
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010110001101001110
+00100000011000101000000000000000
+00100000001000010110001101000011
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010110001101010001
+00100000011000101000000000000000
+00100000001000010110001101001000
+00011111001000001111001000000100
+00100000001000000110001101010100
+11101000011001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+11101000011000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+11000010000000000110001101010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000110100000000110000
+01101000000000001100001010111110
+00100000011110100000000000000000
+00100000010000000110001111110011
+00100000010000101110001111111001
+00100000010000000110001110001110
+01101000000000001100001010111110
+00011111111000100010011000000000
+01101000000010010100001010111100
+01100000000010010000000110101111
+00011010011000100111111000000000
+00100000001110100101110100110000
+00011010011000001010011111111111
+00011000010000100010001000000000
+11101010001000001000000000000000
+01101000000010001000000110100111
+10011000010001100111110000000000
+00100000010000101110001101110101
+00100000001000010110001101110001
+11101010001000001000000000000000
+00011111111000001111111000000001
+11100010001000001000000000000000
+01101000000010010000000110101111
+00011000010000001000010000100010
+01100000000010010000000110101111
+00100000001000000110001101100101
+01011000000000000000000000000000
+11100010001000001000000000000000
+01101000000000001000000110101000
+11100000101000001000000000000000
+11000000100110011110001110000011
+11011010010000000100001001100001
+11101000110000110000000000000000
+11100000101001000000000000000000
+01011000000000000000000000000000
+11100000101001000000000000000000
+00011010010000100000110000000000
+00100000010000000111111010000111
+00011000000000000111110000000001
+00100000011000000000000000000000
+11000000000110110110001110000111
+11000000000110111110001110001011
+11011010010000000100010010100010
+00100000001000000110001101111011
+11011000110000000100010101111011
+00100000010000000111111010000111
+11011000110000000100010010100010
+00100000001000000110001110000000
+11011000110000000100010101110011
+00100000010000000111111010000111
+00100000001000000110001110001001
+00100000010000000011000111010100
+01101000000000001100001010111110
+00100000011110100000000000000000
+01101000000000010100011100001011
+11000010100000000110001110100011
+01101000000000001100010100101011
+11000000000000000110001110011100
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000001000001110001110011100
+00101111111000011000000001000000
+00100000001000001110001110100001
+00101111111000011000000000000000
+00100000001000001110001110011111
+01110000000000011010100000110101
+01101000000000110000001101110010
+00100000001000000110001110100111
+01110000000000011010100000110111
+00100000001000000110001110100111
+01110000000000011010100000110110
+00100000001000000110001110100111
+01111001001000000000000000100101
+01000100110000111100000000110000
+01110000000000011010100000110011
+01101000000000110000000001000000
+01100000000000110000000110101001
+01101000000000010100001010111100
+11101111111010001000000000000000
+00011111111000001111111000000001
+01100000000000010000000110101111
+01100000000010001000000110100111
+01101000000000001100001010111110
+00011111111000100010011000000000
+01101000000000010000000110101111
+00011111111000100010001000000000
+00100000010000000110001110111111
+00100000011101000000000000000000
+01101000000010010000000110101111
+00011000010000001000010000100010
+01100000000010010000000110101111
+00011000010000001000010111111111
+11101000010000001000000000000000
+01100000000000001000000110100111
+00011010011000001010011111111111
+00100100001000101110001110101111
+01101000000000001100001010111110
+00011111111000001111111111111111
+01100000000000001000000110100111
+00100000011000000000000000000000
+01101000000000001000000110101000
+11000000100110011110001111000110
+11011010010000000000000110101000
+11011111001000000000000000000111
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+11000000000110110110001111001001
+11000000000110111110001111100100
+00100000001000000110001111000001
+11101010001010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+11011000101000000000100111100001
+11011111001000000000000000010000
+00100000010000000111111010011111
+01101000000000011000001101110101
+01100000000000011000100111100001
+00100000010000000110001111011011
+01101000000000010000100111111110
+00011111111100001111111000000000
+00011111111011010000010000000000
+11101000110000001000000000000000
+10011000010000001111111000000000
+01101000000010011000001101110010
+10011000010001100111110000000000
+00100000001000101110010011000000
+00100000011000000000000000000000
+11011000110000000000100111100001
+00100000010000000111000110101111
+11101010001000001000000000000000
+00100000010000000111000110110000
+00011000000000000110110000111000
+00011000000000000110110000000000
+00100000010000000111000101000101
+11011000101000000000100111110001
+00100000001000000111000111000000
+11101010001010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011000110000100010001000000000
+00011000110000001010011000001000
+11011010010000000100010101110011
+11011111001000000000000000001000
+00100000010000000111111101010101
+00100000001000101110010011000000
+00011010011000100010001000000000
+11011010010000000100010101111011
+11011111001000000000000000001000
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+01101000000000010100001010111100
+11101111111010001000000000000000
+00011111111000001111111000100010
+11101111111000001000000000000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100001010111110
+00011111111000100111001000000000
+01101000000010010100001010111100
+01011000000000000000000000000000
+11100000010000001000000000000000
+00011000010000001000010000100010
+00011111111000001111111000000001
+11000010000000000110001111111101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110001000100000000110001
+00100000010000000110001110001110
+00100100001101000110010000001010
+00011010001000001000110000001010
+11011000101000000100001001100001
+00100000010000000111111010000111
+00100000001000000110010010110001
+01110000010000100101110100000000
+00100000011000000000000000000000
+01101000000001001100010101110001
+00100000001110100110010000101100
+00100000010000000110001110001110
+00100100001101000110010000101100
+01101000000000010000000110101111
+00011111111000001000110000000001
+11011000101000000100010101111011
+00100000010000000111111010000111
+11011000101000000100010010100010
+00100000010000000111111010000111
+01110000010001001011001000000001
+00100000011000000000000000000000
+01101000000000010100010101110001
+00100100001110100110010000011100
+01101000000000110100010101110011
+00100000001110100110010000101011
+01110000010010001100011000000011
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+01110000010001001011001000000001
+00100000011000000000000000000000
+01110000010010001100011000000001
+01110000010001001011001000000000
+00100000011000000000000000000000
+01101000000000110000001101110010
+01100000000000110000000110101001
+01110000000000011010100000110100
+00100000001000000110010000110101
+01101000000000110000000001000000
+01100000000000110000000110101001
+01110000000000011010100000110011
+01111001001000000000000000100101
+01000100110001001100000000110001
+01101000000000001100000100110010
+11000000000001010110001101011010
+00100000010000000110010001100011
+00100000010000000110010001011111
+01101000000000001000000110101000
+11000000000110100110010000111111
+11000000000110011110010010001011
+00100000011000000000000000000000
+00100000010000000110010010001001
+00100000001000000110010001110010
+01111001001000000000000000100101
+01000100110001010100000000110001
+00100000010000000110010001001101
+01101000000000001000000110100111
+11000001011111111000000000000000
+01101000000000110000000110101001
+01100000000000110100001001110011
+01101000000000001000000110101000
+01100000000000001100001010110101
+11000000000110011110010001010001
+11000000000110100110010001010011
+00100000011000000000000000000000
+00100000010000000110010001011011
+01101000000000001000000110100111
+11000001011111111000000000000000
+00100000001000000110010001111010
+00100000010000000110010010010010
+00100000001000000110010010110001
+00100000010000000110010010010000
+00100000001000000110010010110111
+01111001001000000000000000100101
+01000100110001100100000000110001
+01011000000000000000000000000000
+01100000000000011000000001000000
+11100000101000011000000000000000
+00100000001000000110010001100011
+11011000010000000000000000000001
+11011010001000000000000110100111
+11011010010000000000000000011100
+00100000001000000110001001000101
+11011000010000000000000000000001
+11011010001000000000000110100111
+11011010010000000000000000011100
+00100000001000000110001001101111
+01111001001000000000000000100101
+01000100110001101100000000110001
+00100000010000000110010010010111
+01111000010101000111110000000000
+00100000010000000110010010011011
+00100000011101000000000000000000
+01110000000000011010011100000000
+01101000000000110000000110101001
+01100000000000110000000110000100
+01101000000000001000000110101000
+01100000000000001000000110000011
+11011000010000000000000000011100
+11011010001000000000000110000011
+11011010010000000000000000000000
+00100000001000000110001001101111
+11011000010000000000000000000110
+11011010001000000100010100111110
+11011010010000000000000000011101
+00100000001000000110001001101111
+11011000010000000000000000000110
+11011010001000000100010100111110
+11011010010000000000000000011101
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100110001110100000000110001
+11011000010000000000000000000111
+11011010001000000000000110101000
+11011010010000000000000000000000
+01101000000000001000000110100111
+00011111111011111111111000000111
+10011010010000001010010000000000
+00100000001000000110001001000101
+11011000010000000000000000010000
+11011010010000000000000000100011
+01101000000000001000000110100111
+00011111111100100111111000000000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11011010001000000100010010100010
+00100000001000000110010010001100
+11011010001000000100001001100001
+01111001001000000000000000100101
+01000100110001111100000000110001
+00100000010000000110010010000011
+00100000001000000110001001101111
+11011010001000000100010010100010
+00100000001000000110010010010011
+11011010001000000100001001100001
+01111001001000000000000000100101
+01000100110010000100000000110010
+00100000010000000110010010000011
+00100000001000000110001001000101
+11011000010000000000000000011100
+11011010001000000000000110001010
+11011010010000000000000000000000
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100110010001100000000110010
+01011000000000000000000110001010
+01100000000000010000000110101111
+01110000000000011010011100000000
+11011111001000000000000000000100
+00011111001000100111111000000000
+01100000000000001000100110111110
+01101000000000010000000110101111
+00011111111000100010001000000000
+00100000010000000110010010111011
+00100000011101000000000000000000
+01101000000000010000000110101111
+00011111111000001111111000000111
+01100000000000010000000110101111
+01101000000000001000000110100111
+00011111111000001111111000000001
+01100000000000001000000110100111
+01101000000000001000100110111110
+00011111111000100111001000000000
+11000010000000000110010010100001
+00100000011000000000000000000000
+01101000000001000100001001100001
+01101000000011000100001001101001
+10011000010000011111111000000000
+00100000011110100000000000000000
+01110000010000100101110100000001
+00100000011000000000000000000000
+01101000000000110100001001110011
+00100000011110100000000000000000
+01110000010001001011001000000001
+00100000011000000000000000000000
+11011010010000000000000110101000
+11011111001000000000000000000111
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110010010100000000110010
+01111001001000000000010000000111
+00100000010000000110010011110101
+01111101001000001000010000000111
+01111001001000000000000000100101
+01000100110010011100000000110010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100000
+11111001001000001111111000000000
+01100000000000100000000010100000
+01101000000000100000000010100100
+11111101001000001111111000000000
+01100000000000100000000010100100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110010100100000000110010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100000
+11111001001111111111111000000000
+01100000000000100000000010100000
+01101000000000100000000010100100
+11111001001111111111111000000000
+01100000000000100000000010100100
+00100000011000000000000000000000
+00100000010000000110010011010010
+00100000001000000110010011100000
+00100100010101011110010011000111
+11011000101000001000000001111100
+00100000010000000110010100000100
+01111001010000000000010000000111
+11011000101000001000000001111000
+00100000010000000110010100000100
+01111001001111111000010000000111
+11011000101000001000000001110000
+00100000001000000110010100000100
+01111001010000000000010000000111
+00100000010000000110010100000011
+01111001001000000000010000000111
+11011000101000001000000001110000
+00100000001000000110010100000100
+00011000010000010000111000000111
+00011000010010010111111000000000
+00011111111000010111111000000011
+10011000101000001000101000000000
+11101000101000001000000000000000
+00100000011000000000000000000000
+11011000101000001000000001110100
+00100000001000000110010011110110
+11011000101000001000000100011100
+00100000010000000110010011101101
+00101000010011111111111000000111
+00100000001000001110010011111011
+10101111111011000000000000000000
+00100000011000000000000000000000
+10101111111011111111111111111111
+00100000011000000000000000000000
+00101111110011111111111000000111
+00100000001000000110010100000000
+00101111110011000000000000000111
+01011000000000000000000000000000
+01111101001000001111111000000111
+10011000010000101000010000000000
+11011000101000001000000001110100
+00100000010000000110010011101101
+00101000010011111111111000000111
+11111001001000001111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11011010001111111111111111111111
+01101000000100001000000010000001
+00101111111011111111111000000001
+00100000010000001110010101001101
+00011111111000010010010000000011
+00011010010001100111110000000001
+00100000010000101110010101001111
+00101111111011111111111000000010
+00100000010000001110010101001001
+00101111111011111111111000000011
+00100000010000001110010101001011
+00101111111011111111111000000101
+00100000010000001110010101010001
+00101111111011111111111000000110
+11011000111000000000000000000100
+00100000010000001110010101010101
+01111101001000001010001000000100
+00101111111011111111111000000111
+11011000111000000000000000000101
+00100000010000001110010101010101
+01101000000100001000000010000010
+00101111111011111111111000000000
+11011000111000000000000000000011
+00100000010000001110010101010101
+01101000000110001000000010000000
+00101000010011111111111000000000
+11011000111000000000000000000101
+00100000010000001110010101010101
+10011000010000011111111000000000
+00101111111011111111111000000001
+11011000111000000000000000000110
+00100000010000001110010101010101
+00101111111011111111111000000010
+11011000111000000000000000000111
+00100000010000001110010101010101
+00101111111011111111111000000011
+11011000111000000000000000010010
+00100000010000001110010101010101
+00101111111011111111111000000100
+11011000111000000000000000010011
+00100000010000001110010101010101
+00101111111011111111111000000101
+11011000111000000000000000010100
+00100000010000001110010101010101
+00101111111011111111111000000110
+11011000111000000000000000010101
+00100000010000001110010101010101
+00101111111011111111111000000111
+11011000111000000000000000010110
+00100000010000001110010101010101
+01101000000100001000000001100010
+00101111111011111111111000000100
+00100000010000001110010101010011
+01111001001000000000000000100101
+01000100110010101100000000110010
+01101000000100100000000001111000
+01101000000110100000000001111100
+10011000010000011111111000000000
+00011111111001000111111000000000
+10011010001000010111111000000000
+01101000000110100000000001111100
+10011000010000011111111000000000
+01100000000100100000000001111100
+00100000011000000000000000000000
+11011000111000000000000000000110
+00100000001000000110010101011001
+11011000111000000000000000001001
+00100000001000000110010101010111
+11011000111000000000000000010111
+00100000001000000110010101010111
+11011000111000000000000000011001
+00100000001000000110010101011001
+11011000111000000000000000011011
+00100000001000000110010101011001
+11011000111000000000000000000010
+00100000001000000110010101011001
+11011111001000000000000000000001
+00100000001000000110010101011010
+11011111001000000000000000000100
+00100000001000000110010101011010
+11011111001000000000000000000010
+11111001001111111010001000000000
+00011000111000001000111000000001
+11000010000000000110010101011010
+00100000011000000000000000000000
+00100000010000000110010101101010
+11011000010000000000000000000110
+00100000001000000110010011101000
+00100000010000000110010101011110
+11011000010000000000000000000110
+00100000001000000110010011111101
+00100000010000000110010101101010
+01101000000100001000000001111000
+01111001001000000111111000000111
+01100000000100001000000001111000
+11011000010000000000000000000111
+00100000001000000110010011011111
+01101000000100001000000010000001
+00011111111000010111111011111011
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000001
+00101111111011111111111000000010
+00100000011000000000000000000000
+00100000010000000110001011000100
+01011000000000000000011111100000
+11011010001000000100000111110000
+11011000010000000000000000000010
+00100000010000000110001100001101
+00100000001000000110001011000111
+01111001001000000000000000100101
+01000100110010110100000000110010
+00100000010000000110001011000100
+01011000000000000000011111100010
+11011010001000000100001010111111
+11011000010000000000000000001110
+00100000010000000110001100001101
+00100000010000000110001011000111
+01101000000000001100001011001111
+11000010100000000110010110000100
+11000010100000001110010110011000
+11000010100000010110010110101100
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110001101
+01011000000000000100110111111010
+01100000000000010100001011001001
+01011000000000000100100010010100
+01100000000000010100001011000011
+00100000001000000110010110010101
+01101000000000010100001011001001
+00100100001110100110010110010001
+01011000000000000100110111111010
+01100000000000010100001011001001
+01101000000000010100001011000011
+00100100001110100110010110010101
+01011000000000000100100010010100
+01100000000000010100001011000011
+01011000000000000000000001100100
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110100001
+01011000000000000101100100110010
+01100000000000010100001011000111
+01011000000000000100001100100011
+01100000000000010100001011000001
+00100000001000000110010110101001
+01101000000000010100001011000111
+00100100001110100110010110100101
+01011000000000000101100100110010
+01100000000000010100001011000111
+01101000000000010100001011000001
+00100100001110100110010110101001
+01011000000000000100001100100011
+01100000000000010100001011000001
+01011000000000000000000110010000
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110110101
+01011000000000000110100101000110
+01100000000000010100001011000101
+01011000000000000101001101110111
+01100000000000010100001010111111
+00100000001000000110010110111101
+01101000000000010100001011000101
+00100100001110100110010110111001
+01011000000000000110100101000110
+01100000000000010100001011000101
+01101000000000010100001010111111
+00100100001110100110010110111101
+01011000000000000101001101110111
+01100000000000010100001010111111
+01011000000000000000000000110010
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000000001100001011001111
+11000010100000000110010111000101
+11000010100000001110010111000111
+11000010100000010110010111001001
+00100000011000000000000000000000
+01110000100010010111000110111111
+00100000001000000110010111001101
+01110000100010010111000110101111
+00100000001000000110010111001101
+01110000100010010111000110001111
+01101000000000001100001011010000
+01100000000100001000100101110011
+00100000001000000110010111001101
+01111001001000000000000000100101
+01000100110010111100000000110010
+01101000000100001000000001010011
+01111001001000000111111000000111
+01100000000100001000000001010011
+01101000000100001000100101110011
+00011111111000011111111000110000
+01100000000100001000100101110011
+01110000100010010000011001111100
+01110000100010010111001010101010
+00100000000000000001001110001000
+01101000000110010000000101010000
+01101000000100001000000001010011
+01111001001111111111111000000111
+01100000000100001000000001010011
+01100000000010010100001011010001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110011000100000000110011
+01101000000000001100001011001111
+11000010100000000110010111100101
+11000010100000001110010111101001
+11000010100000010110010111101101
+00100000011000000000000000000000
+01101000000000010100001011001001
+01101000000010010100001011000011
+11011010011000000000000011001000
+00100000001000000110010111110001
+01101000000000010100001011000111
+01101000000010010100001011000001
+11011010011000000000000001100100
+00100000001000000110010111110001
+01101000000000010100001011000101
+01101000000010010100001010111111
+11011010011000000000000000110010
+00100000001000000110010111110001
+10011000010001100010001000000000
+01101000000000010100001011010001
+10011000010001100111111000000000
+00100100001000010110010111111110
+01101000000010010100001011001101
+10011000010011111010010000000000
+00011010011000100111111000000000
+10011010001011111111111000000000
+10011010010000001111111000000000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00100000011000000000000000000000
+00011000010000100111111000000000
+01101000000010010100001011010001
+10011000010001100111111000000000
+01101000000010010100001011001101
+10011000010011111010010000000000
+00011010011000100111111000000000
+10011010001011111111111000000000
+10011010010001100111111000000000
+00100000001000000110010111111010
+00100000011101011000000000000000
+01110000010001011111111100000000
+01110000000001000001110000000011
+01110000000001000001110100000011
+01110000000001000010000100010001
+01110000000001000010001000010011
+01011000000000000000000000000000
+01100000000000011000010000011110
+01100000000000001100001011100100
+01110000010001110000101000000000
+01111001001000000000000000100101
+01000100110011001100000000110011
+01011000000000000000000000000000
+01100000000000001100001011100100
+01100000000000001100010111111100
+01100000000000001100010111110101
+01101000000000001100011000000011
+11000000000000001110011000011011
+01110000010001100000000101010000
+00100000011000000000000000000000
+01110000010001100000000100000000
+00100000011000000000000000000000
+00011000010000011000010000000010
+00100000011000000000000000000000
+00011000010000100111111000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111000111111
+00011111111011011111111000000000
+01100000000000001100010111111001
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100010111111000
+00100000010000000110011001010101
+00011000010000100111111000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111001110011
+00011111111011011111111000000000
+01100000000000001100010111111001
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100010111111000
+00100000001000000110011001010101
+01101000000000001100010111111011
+00100000001110100110011000111000
+01011000000000000000000001110000
+00100000011000000000000000000000
+01011000000000000000000010101010
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111011101111
+00100000010000000110011001001001
+01101000000010010000010000100110
+00011000010000100000101000000000
+11100000101000001000000000000000
+00011000101000100000010000000000
+01100000000010010000010000100110
+00011000000000000111111011111111
+00100000010000000110011001001001
+01101000000010010000010000100110
+00011000010000100000101000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111001
+01101000000000010100010111111001
+00011111111011010111111000000000
+01100000000000011000010000100011
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110011001100010
+00011111111000101111111011010111
+00011111111001000111111000000000
+00011111111011011111111000000000
+00100000011000000000000000000000
+01101000000000011100010111111000
+01100000000000011000010000100011
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110011001100010
+00011111111011010111111000000000
+11011010010000000000000000000111
+00100000010000000110011001100010
+00011111111000101111111000101011
+00011111111001000111111000000000
+00011111111011011111111000000000
+00011111111000100000010000000000
+00100000011000000000000000000000
+11011010011000000000000000000000
+00011010010000100111001000000000
+00100000010000000111111001000011
+00011111111000100000010000000000
+00011000010000100111111000000000
+00011010011000111010011000000000
+11000011000001000110011001101011
+10011010001000101000010000000000
+00011010011000001010011000000001
+00011000010000111000010000000000
+01101000000000011000010000100011
+00011010010000001010010111111111
+00101010010000011111111011111111
+00100000001000001110011001110101
+00011010010000100111001000000000
+00100000010000000111111001000011
+00101111111011111111111000000000
+01111001001000001000010000000000
+00100000001000000110011001100110
+00011000010000110111111000000000
+00100000011000000000000000000000
+01101000000010001100010111110101
+00011000010010111000010000000000
+01111001001000000000010000000000
+01101000000000001100010111111011
+00100100010110100110011000011101
+01100000000010001000010000111100
+00100000011000000000000000000000
+00011000010000111000010000000000
+01101000000000001100010111111011
+01111001001110100000010000000000
+00100000011000000000000000000000
+01101000000010001000010000101011
+01110000000001000010110111010111
+00100000010000000110011111000001
+01101000000000001100001011100001
+01111001001000000111111000000110
+01111001001000000111111000000111
+01100000000000001100001011100001
+01110000010001011111101100000000
+00100000001000000110011110100001
+01101000000000001100001011100001
+01111001001000000111111000000111
+01100000000000001100001011100001
+00100000001000000110011110100001
+01111001001000000000000000100101
+01000100110011010100000000110011
+01101000000000001100011100001010
+11000000000000000110011010010100
+00100000001000000110011101010101
+01101000000000010000001010001101
+00011111111000100000110000000000
+00100000010000000110011010111111
+01101000000000001000010000101011
+11000000000000000110011010011010
+00100000001000000110011100100000
+01111001001000000000000000100101
+01000100110011011100000000110011
+01101000000000001000010000101100
+11000000000111111110011010000010
+11000000001110011110011010001011
+11000000011101111110011010100010
+11000000001010011110011101001101
+00100000011000000000000000000000
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110011011001010
+01101000000000001000010000110010
+11000000001000001110011010101100
+11000000001000000110011010110100
+11000000001110001110011011101101
+11000000001110000110011011111001
+11000000001001001110011100000100
+00100000001000000110011110100001
+00100000010000000110011010110110
+00100000001000000110011010101110
+01101000000000001100001011100100
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100100
+00100000010000000110011111101101
+00100000001000000110011110100001
+00100000010000000110011010110110
+00100000001000000110011110100001
+00100000010000000110011011010010
+00100000001000000110011011011110
+00100000010000000110011011010010
+11101000110000001000000000000000
+00011111111010010111111000000000
+01100000000000001100011000000010
+11101000110000001000000000000000
+01100000000000001000010000110111
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001000010000101010
+00011111111010010111111000000000
+01100000000000001000010000101011
+11101000110000001000000000000000
+01100000000000001000010000101100
+00100000010000000110011011010101
+01100000000010010000010000101110
+00011000110000100111111000000000
+01100000000000010000010000110000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000110111111000000000
+01100000000000001000010000110010
+00100000010000000110011011010101
+01100000000010010000010000110011
+00011000110000100111111000000000
+01100000000000010000010000110101
+00100000011000000000000000000000
+01101000000000010000010000110101
+00011111111000100000110000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000010000000000
+00011000010000110000010000000000
+11000011100000000000000000000000
+11101000110000001000000000000000
+00011111111010011111111000000000
+00011111111100100111111000000000
+10011000010000001000010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001100010111110101
+11101000110000001000000000000000
+01100000000000001000010000111000
+11101000110000001000000000000000
+01100000000000001000010000111001
+11101000110000001000000000000000
+01100000000000001000010000111010
+11101000110000010000000000000000
+01100000000000010100010111110110
+11101000110000001000000000000000
+01100000000000001000010000111011
+11101000110000001000000000000000
+01100000000000001100011000000000
+00100000011000000000000000000000
+00100000010000000110011010111000
+00100000001000000110011011101111
+01101000000000001100001011100100
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001011100100
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110100000100000
+01110000010001011111111100000011
+00100000001000000110011110100001
+01110000000010011011110100001000
+00100000010000000111110110000110
+00100000010000000110011010111000
+01101000000000001100011000000010
+00011111111001100111110000000001
+00100000001000101110011100000000
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000111
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000010000000110011011010010
+11101000110000001000000000000000
+01100000000000001000100111100001
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110011100100000000110011
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110010001
+11100000101000010000000000000000
+01101000000000001000100111100001
+11100000101000001000000000000000
+01011000000000000000000000000111
+11100000101000101000000000000000
+01011000000000000000000000000001
+11100000101000010000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000001000000110011100100001
+01111001001000000000000000100101
+01000100110011101100000000110011
+01101000000000001000010000101100
+11000000001110011110011100101010
+11000000000111111110011100101110
+11000000011101111110011101001000
+11000000011111111110011101000000
+11000000001010011110011101001111
+00100000011000000000000000000000
+01101000000000001100001011100100
+01111001001000000111111000000011
+01100000000000001100001011100100
+00100000001000000110011110100001
+01101000000000001100001011100100
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001100001011100100
+01101000000000001000010000101010
+00100000010000000110011000101011
+01100000000000001000010000101101
+00100000010000000110011111000001
+01101000000000001000010000101010
+00011111111010110111111000000000
+01100000000000001100010111110101
+00011111111010111111111000000000
+01111001001111111111111000000001
+01111001001000000111111000000000
+11011000010000000100010111111101
+01100000000010010000010000100110
+00100000010000000110011000111010
+00100000001000000110011110100001
+01101000000000010000010000110000
+00011111111000100000110000000000
+00011111111000001111111000000001
+01100000000000010000010000110000
+11101000110000001000000000000000
+01101000000010001100011000000000
+10011000010000001111111000000000
+01100000000000001100011000000000
+00100000010000000110100001010011
+00100000010000000110011001110111
+00100000010000000110100000111000
+00100000010000000110100001011101
+00100000001000000110011110100001
+01110000000010011011110100001001
+00100000010000000111110110000110
+00100000010000000110011000010001
+01101000000000001000010000101010
+00100000010000000110011000101011
+01100000000000001000010000101101
+00100000010000000110011111000001
+00100000001000000110011110100001
+01101000000000010000001010001101
+00011111111000100000110000000000
+00100000010000000110011010111111
+01101000000000001000010000101011
+11000000000000000110011101011011
+00100000001000000110011110010000
+01111001001000000000000000100101
+01000100110011110100000000110011
+01101000000000001000010000101100
+11000000000111111110011010000010
+11000000001110011110011010001011
+11000000011101111110011101100010
+00100000001000000110011110100001
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110011011001010
+01101000000000001000010000110010
+11000000001000001110011101101011
+11000000001000000110011101101011
+11000000001110001110011101110110
+11000000001110000110011110000110
+00100000001000000110011110100001
+00100000010000000110011010110110
+01101000000000001100010111110101
+00011111111000110111111000000000
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011101110010
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000001
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000010000000110011010111000
+01101000000000001100011000000010
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011101111101
+00100000001000000011101100110001
+00100000001000000110011110100001
+01101000000000001100001011100100
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001011100100
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110100000100000
+00100000001000000110011110100001
+00100000010000000110011010111000
+01101000000000001100011000000010
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011110001100
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000111
+01100000000000001100001011100100
+00100000001000000110011110100001
+01101000000000001000010000101011
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011110010110
+00100000001000000011101100110001
+00100000001000000110011110100001
+01101000000000001000010000101100
+11000000001110011110011110011011
+11000000011101111110011101001000
+11000000011111111110011101000000
+11000000001010011110011110100000
+01101000000000001100001011100100
+01111001001000000111111000000011
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000001000000110011110011111
+00100000001000000110011101001111
+00100000011000000000000000000000
+01101000000000001100010111111111
+00100000011110100000000000000000
+11000000000000011110011110100110
+00100000001000000011101100110001
+01110000010001011111111100000000
+00100000010000000100100001111010
+11011000010000000000000000000001
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+11011010001000000000000010101010
+00100000010000000110100000001010
+00100000010000000100100010001001
+00011000101000100000110000000000
+11101000110000010000000000000000
+00100000001110100011101100110001
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000101010
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110011111100000000110011
+01011000000000000000000100111111
+11100000101000010000000000000000
+01101000000000001000010000101101
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000101010
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100000100000000110100
+01011000000000000000000101110011
+11100000101000010000000000000000
+01101000000000001000010000101101
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100001100000000110100
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000011110000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+01110000010001100000000100010000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100010100000000110100
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000001
+11100000101000010000000000000000
+01101000000000001100010111110101
+11100000101000001000000000000000
+01011000000000000000000011100000
+11100000101000011000000000000000
+01101000000000010100011000000100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01101000000000001100011000000110
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100011100000000110100
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+00011000010000100001011000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100100100000000110100
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100001
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100101100000000110100
+01101000000000001100011000000001
+00100000011110100000000000000000
+01101000000100010000000100010010
+00100100011110100000000000000000
+00011010001000100111111000000000
+01100000000000001000100110111111
+01100000000010001000100110111110
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000000101
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000111100
+11100000101000001000000000000000
+01011000000000000000000111111111
+11100000101000010000000000000000
+01101000000000001100011000000001
+11100000101000001000000000000000
+01101000000000001100010111111110
+11100000101000001000000000000000
+01110000010001100000000100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100110100000000110100
+01101000000000001100011000000011
+11000001000000001000000000000000
+01101000000000010000010000101110
+00100000011110100000000000000000
+01101000000000001100011000000001
+00011111111000001111111000000001
+01100000000000001100011000000001
+00100000011000000000000000000000
+01101000000000010100011000000111
+00100000001000000111111101101001
+01111001001000000000000000100101
+01000100110100111100000000110100
+01101000000000001100011000000000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011000000000
+01101000000000010100010111110110
+01101000000010010100011100101100
+10011000010001100111110000000000
+00100000001000010110100001101010
+01100000000000010100011100101100
+01101000000000001100011000000001
+00100000001110100110100001110010
+01110000000001000011111100000001
+01101000000000001100010111111110
+01100000000000001000010000111110
+01011000000000000000000011111111
+01100000000000001000010000111101
+00100000001000000110100001110111
+01110000000001000011111100000000
+01101000000000001100010111111101
+01100000000000001000010000111110
+01011000000000000000000011101111
+01100000000000001000010000111101
+01111001001000000000000000100101
+01000100110101000100000000110101
+01101000000000010100011100101100
+00011111111001100111110001111111
+00100000001000010110100001111111
+01101000000000001000010000111111
+00011111111000001111111000000001
+01100000000000001000010000111111
+00100000010000000110011001110111
+01101000000000010100011100101100
+00011111111000001111111000001000
+01101000000010001000010000111111
+10011000010000001010001000000000
+00100000010000000100011111011100
+01100000000000010000001010100000
+00011111111000001111111000000100
+01100000000000010000001010100010
+00011111111000100000101000000000
+01101000000000001000010000111100
+11100000101000001000000000000000
+01101000000000001000010000111101
+11100000101000001000000000000000
+00100000010000000110100010101010
+00100000010000000110100010111100
+01111001001000000000000000100101
+01000100110101001100000000110101
+01101000000000010100011000001001
+00011111111000100000011000000000
+01101000000000010100011100101100
+00011111111000100111001000000000
+00100000010000000110001101000001
+00011000101000100000010000000000
+00011000011000100111111000000000
+01100000000000010100011000001001
+00011000010000100000101000000000
+01101000000000001000010000111110
+11100000101000001000000000000000
+01101000000000010000001010100000
+00011111111000100000101000000000
+01101000000000010100011100101100
+01101000000010001000010000111111
+10011000010000001111111000000000
+00011111111000001111111000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01110000010001100000000100000000
+01101000000000010100011000001011
+11000000000000000101101100100000
+01110000000001000001100000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101010100000000110101
+01101000000000010100011100101100
+00011111111001100111110001111111
+00100100001000010110100010110011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000010100011100101100
+00011111111010010111111000000000
+00011111111100011000010000000000
+00011111111000010111111001111111
+00011111111000111111111000000000
+01111001001111111111111000000000
+11100000101000001000000000000000
+11100000101010001000000000000000
+00100000011000000000000000000000
+01101000000000001100011000000001
+00100000011110100000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101011100000000110101
+00100000010000000111110110011110
+00100000010000000011110101101001
+00100000010000000101100100100110
+01111001001000000000000000100101
+01000100110101100100000000110101
+00100000010000000111011011110111
+00100000010000000111011011001110
+00100000010000000111011011100000
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000010000000100001100101101
+00100000010000000100100000001110
+00100100011110100000000000000000
+01111001001000000000000000100101
+01000100110101101100000000110101
+00100000010000000110100100010011
+00100000010000000100010011110010
+00100000010000000110011110100010
+00100000010000000110100011011000
+01111001001000000000000000100101
+01000100110101110100000000110101
+00100000001000000011110101100101
+01101000000000001000001010101000
+11000010100000000100011000011001
+11000010100000111100011000100011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101111100000000110101
+00100000010000000100100000010110
+00100000011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00100000010000000100011111110101
+01100000000000010000000101101110
+00011111111000100000110000000000
+11101000110000010000000000000000
+00011111111000001111111000000100
+01100000000000010100001001111110
+01110000010000100111110100000110
+01111001001000000000000000100101
+01000100110110000100000000110110
+01101000000000010100001011010110
+00100000001110100110100011111001
+01101000000000001000000001001011
+11000100000000111000000000000000
+01111001001111111111111000000111
+01100000000000001000000001001011
+01110000010000100111110100000101
+01101000000010010100001011010110
+01101000000000010000000101101110
+10011000010000001111111000000000
+01100000000000010000000101101110
+01101000000000010100001001111110
+10011000010001100111111000000000
+01100000000000010100001001111110
+01111001001000000000000000100101
+01000100110110001100000000110110
+01101000000000010100001001111110
+00100000001110100011101100110001
+11011000010000000000000100000100
+10011000010001100111111000000000
+00100100001000010110100100000111
+01111001001000000000000000100101
+01000100110110010100000000110110
+01100000000010010100001001111110
+01101000000000010100001011010110
+10011000010000001111111000000000
+01100000000000010100001011010110
+00100000001000000110100100001001
+01011000000000000000000000000000
+01100000000000010100001011010110
+01101000000000001000000001001011
+01111001001000000111111000000110
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000000001100011100001101
+11000010100000000110100100010001
+01110000000000101011000000000001
+00100000011000000000000000000000
+01110000000000101011000000001111
+00100000011000000000000000000000
+01101000000000001100011100001010
+00100100001110100110100100011001
+01101000000000001000001010101111
+00100000011110100000000000000000
+01110000000000101010111100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110011100000000110110
+01101000000000001000001010110000
+00100000011110100000000000000000
+11000000000000001110100100111010
+11000000000000010110100110010011
+11000000000000011110100101000000
+11000000000000100110100110010111
+11000000000111011110100101001010
+11000000000111100110100110011010
+11000000000001101110100101001111
+11000000000001110110100110011111
+11000000000001111110100101010010
+11000000000010000110100110100101
+11000000000010001110100101011000
+11000000000010010110100110101001
+11000000000010011110100101011110
+11000000000010100110100110101101
+11000000000010101110100101100100
+11000000000010110110100110110001
+11000000000010111110100101101010
+11000000000011000110100110110110
+11000000000011001110100101110000
+11000000000011010110100110111010
+11000000000011011110100101110110
+11000000000011100110100110111110
+11000000000011101110100101111100
+11000000000011110110100111000011
+11000000000011111110100110000010
+11000000000100000110100111000111
+11000000000100001110100110001101
+11000000000100010110100111001011
+00100000011000000000000000000000
+00100000010000000110100111010110
+01110000000000101011000000000010
+01101000000000001100001011100000
+01111001001000000111111000000000
+01100000000000001100001011100000
+00100000011000000000000000000000
+01110000000000101011000000000100
+01101000000000001100001011100000
+11000011100000010000000000000000
+01110000000000101011000000000011
+00100000010000000110100111011110
+01110000000000101011000000000100
+01101000000000001100001011100000
+01111001001000000111111000000010
+01100000000000001100001011100000
+00100000011000000000000000000000
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000110100111101111
+01110000000000101011000000111100
+00100000011000000000000000000000
+00100000010000000110100111100100
+01110000000000101011000000001110
+00100000011000000000000000000000
+00100000010000000110101000000010
+01110000000000101011000000010000
+01101000000000001100001011100010
+01111001001000000111111000000000
+01100000000000001100001011100010
+00100000011000000000000000000000
+00100000010000000110101000001010
+01110000000000101011000000010010
+01101000000000001100001011100010
+01111001001000000111111000000010
+01100000000000001100001011100010
+00100000011000000000000000000000
+00100000010000000110101000010000
+01110000000000101011000000010100
+01101000000000001100001011100011
+01111001001000000111111000000000
+01100000000000001100001011100011
+00100000011000000000000000000000
+00100000010000000110101000011000
+01110000000000101011000000010110
+01101000000000001100001011100011
+01111001001000000111111000000010
+01100000000000001100001011100011
+00100000011000000000000000000000
+00100000010000000110100111110100
+01110000000000101011000000011000
+01101000000000001100001011100001
+01111001001000000111111000000000
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110100111111100
+01110000000000101011000000011010
+01101000000000001100001011100001
+01111001001000000111111000000010
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110101000011110
+01110000000000101011000000011100
+01101000000000001100001011100001
+01111001001000000111111000000110
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110101000100110
+01101000000000001100001011100100
+01111001001000000111111000000000
+01100000000000001100001011100100
+01110000000000101011000000011110
+00100000011000000000000000000000
+00100000010000000110101000101101
+01101000000000001100001011100100
+01111001001000000111111000000010
+01100000000000001100001011100100
+01110000000000101011000000100000
+01101000000000001100010111111100
+00011111111010011111111000000000
+00011111111000011111111000000011
+11011000010000000100010111111101
+01100000000010010000010000100110
+00100000001000000110011000111010
+00100000010000000110101000111000
+01101000000000001100001011100100
+01111001001000000111111000000100
+01100000000000001100001011100100
+01110000000000101011000000100010
+00100000011000000000000000000000
+01101000000000001100001011100000
+11000100000000001000000000000000
+01110000000000101011000000000011
+00100000001000000110100100011001
+01101000000000001100001011100000
+11000001100111111000000000000000
+01110000000000101011000000111011
+01101000000000001000001010101110
+11000001100010111000000000000000
+01110000000000101010111000000000
+01110000000000101011000000001101
+00100000001000000110100100011001
+01101000000000001100001011100000
+00100100011110100000000000000000
+01101000000000001100011100001101
+11000010100000000110100111001110
+11000010100000110110100111010000
+00100000001000000110100111010100
+01101000000000001100001011100010
+11000100000000001000000000000000
+01110000000000101011000000010001
+00100000001000000110100100011001
+01101000000000001100001011100010
+11000001100111111000000000000000
+01110000000000101011000000010011
+00100000001000000110100100011001
+01101000000000001100001011100011
+11000100000000001000000000000000
+01110000000000101011000000010101
+00100000001000000110100100011001
+01101000000000001100001011100011
+11000001100111111000000000000000
+01101000000000001100011100001101
+11000010100000110110100111010000
+00100000001000000110100111010100
+01101000000000001100001011100001
+11000100000000001000000000000000
+01110000000000101011000000011001
+00100000001000000110100100011001
+01101000000000001100001011100001
+11000001100111111000000000000000
+01110000000000101011000000011011
+00100000001000000110100100011001
+01101000000000001100001011100001
+11000001111111111000000000000000
+01101000000000001100011100001101
+11000010100000110110100111010010
+00100000001000000110100111010100
+01101000000000001100001011100100
+11000100000000001000000000000000
+01110000000000101011000000011111
+00100000001000000110100100011001
+01101000000000001100001011100100
+11000100000000011000000000000000
+01110000000000101011000000100001
+00100000001000000110100100011001
+01101000000000001100001011100100
+11000001111111111000000000000000
+00100000001000000110100111010100
+01110000000000101011000000001111
+00100000001000000110100100011001
+01110000000000101011000000010111
+00100000001000000110100100011001
+01110000000000101011000000011101
+00100000001000000110100100011001
+01110000000000101011000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110100100000000110110
+00100000010000000100100001011110
+01011000000000000000000000000001
+00011111111000100000010000000000
+01011000000000000000000001010000
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110110101100000000110110
+00100000010000000100100001011110
+01101000000000010100001011011000
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110110110100000000110110
+00100000010000000100100001011110
+01101000000000010100001011011000
+00011111111000100000010000000000
+11011001011000000000000001010000
+00100000010000000100011001100000
+01101000000000001100001011100000
+01111001001111111111111000000101
+01100000000000001100001011100000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110111100000000110110
+00100000010000000100100001101100
+00100000010000000110110100000001
+00100000001000000100011001111100
+01111001001000000000000000100101
+01000100110111000100000000110111
+00100000010000000100100001011110
+01011000000000000000000000000011
+00011111111000100000010000000000
+01011000000000000000000001010001
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111001100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011010
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111010100000000110111
+00100000010000000100100001011110
+01011000000000000000000000010001
+00011111111000100000010000000000
+01011000000000000000000001010010
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111011100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011100
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111100100000000110111
+00100000010000000100100001011110
+01011000000000000000000000010011
+00011111111000100000010000000000
+01011000000000000000000001010011
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111101100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011110
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111110100000000110111
+00100000010000000100100001111010
+01110000000001000010101000000011
+01110000000001000010110100011100
+00100000010000000110011110110011
+01110000010001011111101100000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110111111100000000110111
+00100000010000000100100001111010
+01101000000010001100010111111100
+00100000010000000110011001111110
+01100000000010001100010111110101
+00100000001000000110011111010000
+01111001001000000000000000100101
+01000100111000000100000000111000
+00100000010000000100100001111010
+01101000000010001100010111110101
+00100000010000000110011001111000
+00100000010000000110011000011111
+01100000000000001000010000101101
+01101000000010001100010111110101
+00100000010000000110011001111000
+01100000000010001000010000101010
+00100000001000000110011110110011
+01111001001000000000000000100101
+01000100111000001100000000111000
+00100000010000000100100001111010
+01101000000010001100010111110101
+00100000010000000110011001111000
+00100000001000000110100000001010
+01111001001000000000000000100101
+01000100111000010100000000111000
+01101000000000010000001010001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00011111111000100010010000000000
+01100000000000001000010001000110
+11101000110000010000000000000000
+01100000000000010000010001000111
+11101000110000001000000000000000
+00011111111011010001011000000000
+11101000110000001000000000000000
+10011001011000001001011000000000
+01111001001000000000000000100101
+01000100111000011100000000111000
+00011010010000100111111000000000
+11000000000000010110101001010011
+11000000000000100110101001111100
+11000000000000110110101101011101
+11000000000000111110110100011000
+00100000001000000110110101000000
+00100000010000000110110101001111
+00101000010000011111111000000001
+00100000001000001110110110111101
+00101000010000011111111011111111
+00100000001000001110110101000011
+11101000110000010000000000000000
+01100000000000010000010001001011
+00011001011000001001011111111110
+00011001011000001001011111111111
+00100100001000101110110100111101
+11011001011000000000010001000000
+11101001011000010000000000000000
+00100000011110100000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00100000010000000100100001111000
+00011000000000000111111000000011
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+00011000111010111111111000000000
+00011111111000001111111000000101
+00011111111000001010011000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000111000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11100000101000010000000000000000
+11011000110000000000010001011100
+00011000111000100111001000000000
+00100000001000101110101001110110
+11101000110000100000000000000000
+11100000101000100000000000000000
+11000010000000000110101001110011
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011010011000100111111000000000
+01100000000000001000001010011110
+00100000001110100011101100110001
+00100000011000000000000000000000
+11101000110000100000000000000000
+01100000000000100000010001010101
+00011001011000001001011111111100
+10011000000000000000010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111111101110
+01100000000000010000010001001001
+00011001011000001001011111111110
+00100000010000000110110110100110
+00100000001000101110110101000011
+00101010001000011111111000000101
+00100000001000001110101010001100
+11011000101000000000010000101000
+00011000000000000000111000000000
+00100000001000000110101010011100
+11101000110000001000000000000000
+11000000100001010110110101000011
+11101000110000010000000000000000
+00100100001110100110101010011010
+11101000110000001000000000000000
+11000000111111111110101010011000
+11101000110000001000000000000000
+11000000111111111110101010010110
+00011000110000001000110111111011
+00100000001000000110101011110010
+00011000110000001000110111111011
+00100000001000000110101010001001
+00011000110000001000110111111100
+00100000001000000110101010001001
+00011000110000001000110111111101
+00100000001000000110101010001001
+11101000110000001000000000000000
+11000000000001001110101010110001
+11000000000001010110101010011111
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011111111100001010010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011010010000001010010000000001
+10011010010001100111110000000000
+00100100001000010110101010101110
+00011111111000100010011000000000
+00011010010100001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011010011000100111111000000000
+00100000001000000110101010100101
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100000001000000110101010110110
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010110110101000011
+00100100001000101110101010011100
+00011001011000001001011111111111
+00100100001000101110110101000011
+00100000010000000100100001111000
+00011000101000001000101000001010
+11011010001000000000010000101000
+01111001001000000000000000100101
+01000100111000100100000000111000
+00011000111000100111111000000000
+00100000001110100110101011010010
+11101010001000010000000000000000
+00100000001110100110101011010010
+10011000000000000010010000000000
+01101000000000100000010001010101
+10011000000000000000010000000000
+00100000010000000110111001010010
+00100000001110100110101011001111
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000110110011101010
+00100000001110100110101011001111
+10011000000000000111001000000000
+00100000010000000111111011001101
+00011010001000001010001000000010
+00011000111000001000111111111111
+00100000001000000110101010111101
+01111001001000000000000000100101
+01000100111000101100000000111000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100010001000000000
+00011010001100001111111000000000
+00011000010000001010010000001000
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000101
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11000000100001010110110101000011
+11101000110000010000000000000000
+00100100001110100110110101000011
+11101000110000001000000000000000
+11000000111111111110110101000011
+11101000110000001000000000000000
+11000000111111111110110101000011
+00011001011000001001011111111011
+11101000110000001000000000000000
+11000000000000000110101011111111
+11000000000000001110101100000010
+11000000000000010110101100000110
+01100000000000010000010001000100
+00011001011000001001011111111111
+00100000001000000110101100001010
+11101000110000001000000000000000
+01100000000000010000010001000100
+00011001011000001001011111111110
+00100000001000000110101100001010
+11101000110000010000000000000000
+00011111111100001111111000000000
+01100000000000010000010001000100
+00011001011000001001011111111101
+00100100001000101110110100111101
+01111001001000000000000000100101
+01000100111000110100000000111000
+00100000010000000110111000100000
+00100100001000101110110100111010
+00011000110000100010001000000000
+00100000010000000100100001111000
+00011010001000100000110000000000
+00011000101000001000101000000011
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011010001000100111111000000000
+10011010010001100010010000000000
+01101000000000010000010001001001
+10011010010001100111110000000000
+00100100001000010110101100111000
+01111000010101000111110000000000
+01101000000000010000010001000100
+00100000001110100110101100101011
+10011001011000001000110000000000
+00011010010000001010010000000011
+00011010010000100111001000000000
+00011111001000100111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000110101101000110
+00011010001000001111001000000110
+00100000001101000110101100101111
+00011111001100001111111000000000
+00100000001000000110101100110010
+00011111001000100111111000000000
+00011111111000001111111000000010
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000001111001111111101
+00011111001100001111111000000000
+11100000101000010000000000000000
+00011001011000100000110000000000
+00100000001000000110101101000110
+01111000001101000111110000000000
+01101000000000010000010001001001
+00011111111000100010001000000000
+00011111111000100111001000000000
+01101000000000010000010001000100
+00100000001110100110101100101011
+10011001011000001000110000000000
+00011010001000100111111000000000
+00011111111000001111111000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000110101101000110
+00100100001101000110101101010001
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011000110000100111111000000000
+10011001011001100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000110101101010011
+00011000000000000111111000000000
+11100000101000001000000000000000
+01101000000000010000001010011100
+10011000101001100111111000000000
+00011111111001100111111000000000
+01100000000000010000001010011110
+00100000010000000100100001111000
+01011000000000000000000000000101
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000110110101001111
+00101000010000011111111011111111
+00100000001000001110101110001000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111111101110
+01100000000000010000010001001001
+00011001011000001001011111111110
+00100000010000000110110110100110
+11011000101000000000010000101000
+00011000000000000000111000000000
+11101000110000011000000000000000
+11000000100001001110101110001000
+00011111111011001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010110110101000011
+00100100001000101110101101101000
+00011001011000001001011111111111
+00100100001000101110110101000011
+00100000010000000100100001111000
+00011000101000001000101000001101
+01101000000000010000010001000000
+10011000000000000010011000000000
+11011010001000000000010000101000
+11101010001000100000000000000000
+00100000001110100110101110101110
+11101010001000010000000000000000
+10011000000000000010010000000000
+00100000010000000110111000101110
+00100000001110100110101110000110
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000110110011101010
+10011000000000000111001000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000110101110000011
+00011010001000001010001000000010
+00100000001000000110101101111000
+01111001001000000000000000100101
+01000100111000111100000000111000
+11101000110000001000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100100001000010110110101000011
+11101000110000001000000000000000
+00011001011000001001011111111111
+01110000000001000100010000000000
+01110000000001000100010100000000
+00100100001110100110101110011111
+11011001011000000000010001000000
+11101001011000010000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00011000111000100111111000000000
+01100000000000001000010001110100
+00100000001110100110110111000000
+11011000111000000000000000000000
+00100000010000000100100001111000
+00011000101000001000101000001010
+00100000001000000110110000000101
+11101000110000010000000000000000
+00011001011000001001011111111110
+00011111111100001111111000000000
+01100000000000010000010001000100
+11011001011000000000010001000000
+11101001011000010000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00011000111000100111111000000000
+01100000000000001000010001110100
+00100000001110100110110111000000
+11011000111000000000000000000000
+00100000010000000100100001111000
+00011000101000001000101000000111
+00100000001000000110110000010100
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000001101
+10011000101001100111111000000000
+00100000001000101110101111010010
+00011111111001100111111000000000
+00011000010000001010010000001100
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000101
+01100000000000001000001010011110
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000010000000000000000
+00011000010000001010010000001010
+11100010010000010000000000000000
+00100000011000000000000000000000
+01110000000000101001111000001010
+00100000010000000100100001111000
+01011000000000000000000000000111
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01011000000000000000000000110101
+11100000101000011000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000101110101111100101
+11000010000000000110101111011111
+00011000101000100001011000000000
+00011010010000100111111000000000
+01100000000000010000010001000100
+00011010001000100111111000000000
+01100000000000010000010001001001
+00100000001110100110110000100110
+00100000001101000110110010000101
+00011001011000100000101000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000000101
+00100000001000000110110010100100
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000101110101111111000
+11000010000000000110101111110010
+00011000101000100001011000000000
+00011010010000100111111000000000
+01100000000000010000010001000100
+00011010001000100111111000000000
+01100000000000010000010001001001
+00100000001110100110110001100001
+00100000001101000110110010000101
+00011001011000100000101000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000010100
+00100000001000000110110011001100
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000001111001000000011
+01101000000000010000010001001001
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011001011000100000110000000000
+00100000001000000110101111011111
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000001111111000000011
+01101000000010010000010001000100
+10011000010001100111001000000000
+01101000000000010000010001001001
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011001011000100000110000000000
+10011000110000001000110000000000
+00100000001000000110101111110010
+11011000111000000000000000000000
+11011010010000000000000000000000
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00100000010000000110110111101010
+00011111111000001111111000000011
+10011010010000001010010000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000101000
+00011001011000100000101000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000010000010001000100
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000101000001000101111111101
+01101000000010010000001010011100
+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
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+00011000010000001010010000000001
+01101000000000010000010001000111
+11100010010000010000000000000000
+00100000011000000000000000000000
+11011000111000000000000000000000
+11011010010000000000000000000000
+00011001011000100000101000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000010000010001000100
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000101000001000101111111101
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+00011000010000001010010000000001
+01101000000000010000010001000111
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011001011000100000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+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
+01100000000000010000001010011110
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110011110011
+11000000000000001110110111100010
+11000000000000100110110111100111
+11000000000000101110110111100101
+00100000001000000110110111100000
+00100000010000000110110011110101
+00100000001000000110110111100000
+00011111001000100111111000000000
+11000000000000101110110011111010
+11000000000000110110110011111101
+00011000000000000111001000000011
+00100000001000000110110111110001
+11101000110000001000000000000000
+00011111111000001111111000000010
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111000000011
+00100000011000000000000000000000
+00100000010000000100100001111000
+00011111111000100000101000000000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01011000000000000000000001101110
+11100000101000010000000000000000
+01011000000000000000111100000000
+11100000101000010000000000000000
+01011000000110100000010100110101
+11100000101000011000000000000000
+01011000000000000000000100010001
+00011111111100000111111000000000
+11100000101000100000000000000000
+01011000000000000010011000000000
+11100000101000010000000000000000
+01011000000000000000001100110101
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+01110000000000101001111000010100
+00100000011000000000000000000000
+00011000110000100000010000000000
+01101000000000010000010001000111
+11000000001101110110110100011100
+00100000001000000110110100100101
+00011000010000100000110000000000
+00011001011000001001011111111101
+00011001011000100111111000000000
+11000000000000010110110100100101
+00100000010000000110110100100110
+00100000011101000000000000000000
+01100000000000001100010111111100
+01110000000000101010111000010111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00011111111000100111001000000000
+11011000010000000000010000000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101110110100101111
+00011000110000001000110111111111
+11000010000000000110110100101001
+00100000011000000000000000000000
+11011000010000000000001100000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101110110100110110
+00011000110000001000110111111111
+11000010000000000110110100110000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+01011000000000000000001000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000010000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000011000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000001100000000
+01100000000000010000010001001101
+00100000010000000100100001111000
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01101000000000010000010001001101
+11100000101000010000000000000000
+01110000000000101001111000000111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001000100000000111001
+00011000000000000000010000000000
+11011000101000000000010001000000
+00100000010000000110110110100110
+00100000001000101110110110100100
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00101111111000011111000000011000
+00100100001000001110110110100100
+00101111111000000000111000000100
+00100100001000001110110101110010
+00011000000000000000010000000001
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000000110110101100110
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000000000000110110101110111
+00100000001000000110110101101001
+00011000110000001000110000000001
+00011010001000001010001111111111
+00011001011000001001011111111111
+00011000110000001000110000000010
+00011010001000001010001111111110
+00011001011000001001011111111110
+00101000010000011111111000000000
+00100000001000001110110110011111
+00011000110000001000110000001100
+00011010001000001010001111110100
+00011001011000001001011111110100
+00100000001000000110110110011111
+00101111111000000000111000000010
+00100100001000001110110101110101
+00100000001000000110110101011101
+00101111111000000000111000000001
+00100100001000001110110110100100
+11101000110000010000000000000000
+00011010001000001010001111111110
+00011001011000001001011111111110
+11100000101000010000000000000000
+00101000010000011111111000000000
+00100000001000001110110110011111
+00011000110000100000010000000000
+01111001001000000000000000100101
+01000100111001001100000000111001
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100010000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000110000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000110000000110110110011000
+11101000110000001000000000000000
+11000000101011111110110110011000
+11101000110000001000000000000000
+11000000110011011110110110011000
+11101000110000001000000000000000
+11000000100110100110110110011000
+11101000110000001000000000000000
+11000000011111011110110110011101
+00011000010000100000110000000000
+00011000110000001000110000001100
+00011000000000000000111000000000
+00011000000000000000010000000000
+00100000001000000110110110011101
+00011001011000001001011111110100
+00011010001000001010001111110100
+00101010001000011111111000000000
+00100100001000001110110101010101
+00011000000000000111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000011111111
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111111
+00101111111000011111000000110000
+00100100001000001110110110111011
+00101111111000000000111000000111
+00100000001000001110110110110100
+00101111111000000000111000000110
+00100000001000001110110110110110
+00101111111000000000111000000101
+00100100001000001110110110111011
+11101000110000001000000000000000
+00011111111000100010001000000000
+00011001011000001001011111111111
+00100000001000000110110110111001
+00011000110000001000110000000010
+00011001011000001001011111111110
+11101000110000010000000000000000
+00011111111100001010001000000000
+00011001011000001001011111111110
+00011000000000000111111000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01011000000000000000000000000011
+01100000000000001000010001000110
+00100000001000000110110111000010
+01011000000000000000000000000111
+01100000000000001000010001000110
+00100000010000000100100001111000
+01101000000000001000010001000110
+11100000101000001000000000000000
+00011111111000100010010000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+00101010010000011111111000000101
+00100000001000001110110111010010
+00101010010000011111111000000111
+00100000001000001110110111010010
+01011000000000000000000000000000
+11100000101000011000000000000000
+11100000101000010000000000000000
+00100000001000000110110111010110
+01011000001101010000001000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01110000000000101001111000001010
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110111100111
+11000000000000001110110111100010
+11000000000000100110110111100111
+11000000000000101110110111100101
+00011001011000100000110000000000
+00100000011000000000000000000000
+00100000010000000110111000000011
+00011111111000001111111000000001
+00100000001000000110110111100000
+00011000000000000111111000000010
+00100000001000000110110111100000
+00100000010000000110110111111001
+00011111111000001111111000000010
+00100000001000000110110111100000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110111111001
+11000000000000001110110111110001
+11000000000000101110110111111110
+00100000011000000000000000000000
+00100000010000000110111000000011
+10011000000000000111001000000000
+00011000000000000000010000000000
+00011000010011010000010000000000
+11101000110000001000000000000000
+10011000010000011000010000000000
+11000010000000000110110111110100
+00100000011000000000000000000000
+00011111001000100111111000000000
+11000000000000101110110111111110
+11000000000000110110111000000000
+00011000000000000111001000000011
+00100000001000000110110111110001
+11101000110000001000000000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+00011000000000000111111000000001
+00011111001000100111110000000000
+00100000011000101000000000000000
+00011111111000111111111000000000
+11000010000000000110111000000110
+00100000011000000000000000000000
+10011000000000000010011000000000
+01111001001000000000000000100101
+01000100111001010100000000111001
+00011000000000000000111000000000
+01101000000000010100011000001101
+10011000000000000000110000000000
+11011000101000000000010001011100
+01111000010101000111110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100100001000101110111000011000
+01111000001101000111110000000000
+11000010000000000110111000010100
+11101000110000100000000000000000
+00100100001101000110111000011101
+11100000101000100000000000000000
+00011000111000001000111000000001
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000010000
+01111001001000000000000000100101
+01000100111001011100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000100100
+01111001001000000000000000100101
+01000100111001100100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100110111001001111
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100000001000101110111000111101
+11000010000000000110111000110101
+00011000110000001000110000000100
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000110010
+00011111001000001111001111111111
+00011111001000111111111000000000
+10011000110000001000110000000000
+00011000110000001000110000000100
+00100000010000000110110111101010
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100001011000000000
+01111001001000101111111000000000
+00011001011000100001011000000000
+00100000011000101000000000000000
+00100000010000000110110111011000
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101110111001001111
+00100000001000000110111001000011
+00011000000000000000110000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001101100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100110111001101100
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000001000101110111001100000
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111001010110
+00100000010000000110110111101010
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100111110000000000
+00100000011000101000000000000000
+00100000010000000110110111011000
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101110111001101100
+00100000001000000110111001100010
+00011000000000000000110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001110100000000111001
+01110000000001010000100101010000
+11011000101000000000010100001010
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000100011001011010
+00100000010000000111111010000101
+11011000110000000000100011100010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000001101010010
+00100000010000000110111100101000
+00100000010000000110111011110010
+11011000101000000000101000010001
+00100000010000000110111100100100
+01011000000011110100001001000000
+00011111111000100010001000000000
+01101000000000100000101000010001
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+01100000000000100000100011011110
+00100000011000000000000000000000
+01110000000001010000100101000001
+11011000101000000000010100001010
+00100000010000000110111011010111
+00100000010000000110111011010010
+01101000000000011100010011011101
+11100000101000011000000000000000
+00100000010000000110111010010110
+11011000110000000000001101010010
+00100000010000000111111010000111
+11011000110000000100010011000011
+00100000010000000111111010000111
+00100000010000000110111100101101
+11011000110000000000101000110001
+11011000101000000000100111100001
+00100000010000000111111010000111
+00100000001000000110111011110010
+01101000000000100100010101101101
+11100000101000100000000000000000
+00100000010000000111111010011000
+00100000001000000111111010010101
+01111001001000000000000000100101
+01000100111001111100000000111001
+01110000000001010000100101000001
+11011000101000000000010100001010
+00100000010000000110111011010010
+00100000010000000110111011010111
+01101000000000011100010011010110
+11100000101000011000000000000000
+00100000010000000110111010010110
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000000001101010010
+00100000010000000111111010000111
+00100000010000000110111100101101
+11011000110000000000101000110001
+11011000101000000000100111100001
+00100000010000000111111010000111
+00100000010000000110111011110010
+11011000101000000000101000010001
+00100000001000000110111100100100
+01110000000001010000100100100000
+11011000110000000000100100100010
+11011000101000000000010100001010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000100011000010
+00100000010000000110111100101000
+00100000010000000110111011110010
+11011000101000000000100111100001
+00100000010000000111000111000000
+11011000010000000000000000000001
+00100000010000000110111011000000
+11011000101000000100010010100010
+00100000010000000110111100100100
+11011000010000000000000000000000
+00100000010000000110111011000000
+11011000101000000000101000110001
+00100000001000000111000111000000
+01111001001000000000000000100101
+01000100111010000100000000111010
+01110000000001010000100100110101
+01011000000000000000000100000000
+01100000000000010000010100001010
+00100000010000000110111011010010
+00100000010000000110111011010111
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000000001101010010
+00100000010000000111111010000111
+01011000000000000110110001100101
+11100000101000010000000000000000
+01011000000000000110001001110100
+11100000101000010000000000000000
+11100000101010001000000000000000
+00100000010000000110111100101101
+00100000001000000110111011110010
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000001100010100110010
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+01101000000000001100010100101011
+11100000101000001000000000000000
+00100000011000000000000000000000
+01110000000001010000100101000001
+01101000000000001100011011101100
+01100000000000001000010100001010
+11011000110000000100011001011010
+00100000010000000111111010000101
+11011000110000000000100011100010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000001101010010
+00100000010000000110111100101000
+00100000001000000110111011110010
+01110000000001010000100101000001
+01101000000000001100011011101100
+01100000000000001000010100001010
+11011000110000000000100011100010
+00100000010000000111111010000101
+11011000110000000100011001011010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000100010011000011
+00100000010000000110111100101000
+00100000001000000110111011110010
+01111001001000000000000000100101
+01000100111010001100000000111010
+00100000010000000110111101000010
+01101000000000001000010100001001
+00011111111000100000010000000000
+00011111111000001111111000001111
+00011111111100011111111000000000
+00011111111000100010010000000000
+00100000001110100110111100000101
+00011000010000010111111000001111
+00100100001110100110111100001000
+11011010011000000000100111110001
+11011111111000000000010100001010
+00011111111000001111111111110000
+10011000010000001010001000000000
+11011000101000000000101000100001
+11011111001000000000000000000100
+00100000010000000111111010101000
+00100000001000000110111100010011
+11011010010000000000000000000001
+11011010001000000000000000000000
+00100000001000000110111100001001
+00011000010000010010001000001111
+11011111111000000000010100001010
+10011000010000001111111000000000
+10011010001001100000110000000000
+11011000101000000000101000010001
+00100000010000000110111101101001
+11011010011000000000101000000001
+11011010001000000000101000010001
+11011000101000000000101000100001
+11011111001000000000000000000100
+00100000010000000111111010101000
+00100000010000000111000110111010
+00100000010000000111000101010000
+11011000110000000000010100001010
+00011010010000001010010111111111
+00011010010000100111111000000000
+00100000001110100110111100011100
+00100000010000000111000110101111
+00100000010000000111000101001010
+00100000001000000110111100010110
+11011000101000000000101000010001
+00100000010000000111000111000000
+11011000110000000000101000100001
+00100000010000000111000110101111
+00100000010000000111000101010000
+11011000110000000000101000010001
+00100000010000000111000110101111
+00100000001000000111000101001010
+00011000101000100010001000000000
+00100000010000000111000111000000
+11011111001000000000000000010000
+00100000001000000111111010110000
+11011000101000000000100111100001
+00100000010000000111111010000111
+11011111001000000000000000010000
+11011010001000000000100111100001
+00100000001000000111111010110000
+01101000000000001000010100001001
+00011111111000100111001000000000
+11011010001000000000010100001010
+00100000001000000111111010110000
+11101010001000001000000000000000
+00011111111000111111111000000000
+00101010011011111111111000000000
+01111001001000001111111000000000
+00101111111011111111111000001000
+01111001001000001010011000000000
+11100010001000001000000000000000
+00011010001000001010001111111111
+11000010000000000110111100110001
+00100000011000000000000000000000
+11011010001000000000100111110001
+00011010001000001010001000001111
+00011000000000000111001000010000
+00011000000000000010011000000000
+00100000001000000110111100110001
+11011010001000000000101000000001
+00100000001000000110111100111100
+11011000110000000000100111100001
+00100000010000000111000110101101
+00011000000000000111000000001000
+00100000010000000111000110111011
+00100000010000000111000110111010
+00100000010000000111000101000111
+11011000101000000000100111110001
+00100000010000000111000111000000
+01111001001000000000000000100101
+01000100111010010100000000111010
+01101000000000001000100111110001
+00101111111011111111111000000111
+00100100001000001110111101010100
+00100000010000000110111100111011
+11011010011000000000100111110001
+11011000101000000000100111110001
+00100000010000000110111101011110
+00100000001000000110111101010101
+00100000010000000110111100111011
+11011000110000000000100111110001
+11011000101000000000101000000001
+00100000010000000111111010000111
+01101000000000001000101000000001
+00101111111011111111111000000111
+00100100001000001110111101000000
+00100000010000000110111101000000
+11011010011000000000101000000001
+11011000101000000000101000000001
+11011111001000000000000000000011
+11011000010000000000000000000000
+00100000010000000110111101100101
+00011010011000001010011000000100
+11000010000000000110111101011111
+11011000010000001000011100000000
+00011000010100000000010000000000
+11101010011000100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010011100000000111010
+11011111001000000000000000010000
+11011111111000000000000000000000
+10011010001001100111110000000000
+00100000001000101110111101110101
+00100000001000010110111101111000
+11101000110010001000000000000000
+11100000101010001000000000000000
+00011111111000001111111000000001
+11000010000000000110111101101101
+00100000011000000000000000000000
+11011000010000000000000010000000
+11100000101010001000000000000000
+00100000001000000110111101110010
+11011000010000000000000000000000
+00100000001000000110111101110110
+00100000010000000110111110001101
+11011000110000000000010010110110
+11011000101000000000010010100110
+00100000001000000111111010000111
+01111000010101000111110000000000
+00100000010000000111000010000100
+11011000110000000000010010000110
+11011000101000000000010011000110
+00011000000000000111001000001111
+00100000010000000111111011001101
+11101000110000001000000000000000
+00011111111000101111111000000110
+11100000101000001000000000000000
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01101000000010001100011100011000
+00011000000000000010010000010000
+00011000010000001010011000000110
+00011010011001100111110000010000
+00100000001000010110111110010011
+00011000000000000010011000010000
+11011000101000000000010011000110
+11011000110000000100011100011001
+00011000010000100111001000000000
+01111000010101000111110000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010111111111
+00100000001000101110111110100001
+11000010000000000110111110010111
+00100000001101000110111110010100
+01111000001101000111110000000000
+00011000000000000111001000000110
+00011010001000100000110000000000
+00100000001000000110111110010111
+11011000110000000000010010000110
+11011000101000000000010011010110
+00100000010000000111111010000111
+01101000000000001000010011100101
+10011010011000101111111000000000
+01100000000000001000010011100101
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01111000010101000111110000000000
+00100000010000000111000010000100
+00100000001000000110111110110111
+11011010001000000000000001010110
+01111000001101000111110000000000
+00100000010000000111000010000100
+00100000010000000110111110110111
+11011000110000000000010010110110
+11011000101000000000000001100010
+00100000001000000111111010000111
+01011000000000000000010010000110
+01100000000000010000010011111010
+01011000000000000100001001100001
+01100000000000010000010011111000
+01111001001111111000000000010010
+00100000010000000110111111001101
+11011010001000000000010010110110
+11011010010000000000010010000110
+11011000101000000000010011000110
+00100000010000000111000001110111
+11011010001000000000010011000110
+11011010010000000000010011010110
+00011010010000100000101000000000
+01111000001101000111110000000000
+00100000010000000111000001110101
+00100000010000000111000010001111
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01110000000001001111110000000000
+01101000000000010000010011111000
+10011000000000000000110000000000
+11011000101000000000010011100110
+00100000010000000111111010000111
+01101000000000010000010011111010
+10011000000000000000110000000000
+11011000101000000000010010110110
+00100000010000000111111010000111
+00100000010000000110111111110100
+01111000010101000111110000000000
+11000101100010010110111111011110
+01101000000000001000010011111100
+11000000100000100110111111011110
+01101000000000010000010011111010
+10011000000000000010010000000000
+00100000010000000111000000100110
+00100000010000000111000000100101
+00100000010000000111000000111000
+01101000000000001000010011111100
+00011111111000001111111000000001
+01100000000000001000010011111100
+00100000010000000110111111110100
+01111000001101000111110000000000
+00100000010000000111000000100101
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+01101000000000001000010011111100
+00011111111000001111111000000001
+01100000000000001000010011111100
+11000000100010000110111111010110
+00100000010000000110111111110100
+01111000010101000111110000000000
+00100000001000000111000000100101
+01101000000000001000010011111100
+11011000110000000000010011100110
+00100000001110100111000000011011
+10011000000000000010010000000000
+00011000000000000111001000010001
+00011000110000100000101000000000
+11101000110000001000000000000000
+00011111111010011000010000000000
+00011111111010110111111000000000
+00011111111010010111111000000000
+10011000010000011111111000000000
+11100000101000001000000000000000
+11000010000000000110111111111010
+01011000000000000000010011100110
+10011010010000001000110000000000
+00011000000000000111001000010000
+11011000101000000000010010010110
+11101000110000001000000000000000
+11100000101000001000000000000000
+00101000110000011111111011110111
+00100100001000001111000000001010
+00011000110000001000110111101111
+11000010000000000111000000000101
+00011000000000000010001000000000
+00011010010000001010011111111111
+00011010011010111010011000000000
+00011010011010111010011000000000
+00100000010000000111000111100010
+01011000000000001000010000000000
+10011010011000001010011000000000
+11011000101000000000010010010110
+00011000000000000111001000010000
+11101010011010001000000000000000
+11101000101000001000000000000000
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010011000001010011000000001
+11000010000000000111000000010100
+00100000001000000111000111100110
+00011000000000000111001000010000
+00011000000000000000010000000000
+11101000110000001000000000000000
+10011000010000101000010000000000
+11000010000000000111000000011101
+00011000010000100111111000000000
+11100000110000001000000000000000
+11011000110000000000010011100110
+11011000101000000000010010010110
+00100000001000000111111010000111
+11011010010000000000010010010110
+00011000000000000111001000010000
+11011010001000000000010010110110
+00011010001000100000101000000000
+11101010001010001000000000000000
+11101010010000001000000000000000
+10011000010000101110000000000000
+00011111001000010010011000000011
+00100100001101000111000000101111
+00011010011000101010011000000011
+00011010011001100010011000000001
+00100000001000010111000000110010
+10011000010000001110000000000000
+00011110000000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111000000101001
+00100000011000000000000000000000
+00100000010000000111000111100010
+00011000000000000111001000010000
+11011010001000000000010010110110
+11101010001000001000000000000000
+11011000110000001000010100000000
+00011111001000010010011000000011
+00011010011001100111110000000001
+00100000001000010111000001000001
+11011000110000001000011000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+11100010001000001000000000000000
+00011010001000001010001000000001
+11000010000000000111000000111011
+00100000001000000111000111100110
+00011000000000000111001000001000
+11011000110000000000010010110110
+00011000110000100000101000000000
+11101000110000001000000000000000
+10011000000000000010001000000000
+11101000110000001000000000000000
+10011000000000000010010000000000
+00011010001000111111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+11000010000000000111000001001010
+00100000011000000000000000000000
+01011000100010101110010000101100
+10011000000000000000010000000000
+00011000000000000111001000000111
+00100000010000000111000001100101
+01011000000011010111010100011011
+10011000000000000000010000000000
+00011000000000000111001000000101
+00100000010000000111000001100101
+01101000000000001000010011000101
+10011000000000000010001000000000
+01101000000000001000010010111001
+01100000000000001000010011000101
+00011010001000100111111000000000
+01100000000000001000010010111001
+00100000011000000000000000000000
+00011000010000010010010000001111
+00011000010000010111111000001111
+11011000101000000000010010110110
+10011000101000001000101000000000
+11101000101000001000000000000000
+10011000000000000010011000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00011010011000100010001000000000
+00011000010100011000010000000000
+11000010000000000111000001100110
+01011000000000000000010010110110
+10011010010000001000101000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000001000000111000001111000
+01111000010101000111110000000000
+00011000000000000111001000010000
+11101010001010001000000000000000
+11101010010000001000000000000000
+00100000001101000111000001111110
+10011000010000101111111000000000
+00100000001000000111000001111111
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111000001111001
+00100000011000000000000000000000
+11011000101000000000010011010110
+11101010001000110000000000000000
+11100000101000110000000000000000
+00100000001101000111000010001010
+11101010001000110000000000000000
+00100000001000000111000010001011
+11101000110000110000000000000000
+11100000101000110000000000000000
+11101010001000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+11011000110000000100001001100001
+11011000101000000000010011000110
+11011000010000000000000000000000
+01011000100000111001010110100111
+00100000010000000111000010110000
+01011000101100111100000111011111
+00100000010000000111000010110000
+01011000000000001110010111101001
+00100000010000000111000010110001
+00011000010000100010100000000000
+01111000010101000111110000000000
+00100000010000000111000010011110
+00011010100000100000010000000000
+01111000001101000111110000000000
+00100000001000000111000010011110
+00011000000000000111001000001000
+11101000110000001000000000000000
+00101111001000000000001000000001
+00100000001101000111000010100101
+00100000001000001111000010100110
+10011000010000001111111000000000
+00100000001000000111000010100111
+00100000001000001111000010100011
+10011000010000101111111000000000
+11100000101000001000000000000000
+00011000010011001000010000000000
+11000010000000000111000010011111
+00100000011000000000000000000000
+01101000000000110000010010111010
+01100000000000110000000001010110
+11101000110000110000000000000000
+11100000101000110000000000000000
+00100000011000000000000000000000
+00011000010011010000010000000000
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000001000000111000010110100
+01111001001000000000000000100101
+01000100111010100100000000111010
+00100000010000000111000101010011
+11011000101000000100010010100010
+00100000001000000111000111000000
+11011000101000000100010011000011
+00100000001101001111000010111101
+11011000101000000000001101010010
+00011000110000100010001000000000
+00100000010000000111111010000111
+00100000010000000111000101101000
+11011000110000000100010010110011
+00100000001000000111000111011001
+11011010001000000000001101010010
+00100000001101001111000011000101
+11011010001000000100010011000011
+00011010001000100000101000000000
+00100000010000000101100100010111
+00100000001000000111000101101000
+11011000110000000100010101010001
+00100000010000000111000110101111
+11011000110000000100010010100010
+00100000010000000111000110110000
+00011000000000000110110000111000
+00011000000000000110110000000000
+00100000010000000111000101000101
+11011000101000000000001110100000
+00100000001000000111000111000000
+00011000000000000111111001001001
+00100000001000000111000011010100
+00011000000000000111111000000001
+00011000000000000111000000000000
+00011000010011010101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011000010011001101111000000000
+00011101111100010101111000000000
+01101000000000010100010010011010
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000010000000000000000
+00011010001100001101111000000000
+00011101111100000101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00100000011000000000000000000000
+00011010011000001000110000000001
+11101000110000001000000000000000
+10011000000000000010001000000000
+00100000010000000111000011010001
+00100000010000000111000101000111
+00011000000000000111000000000000
+11101010011000001000000000000000
+00011111111000010111111000000011
+00011111111100000101111000000000
+01111001001000000101111000001000
+00100000010000000111000110111000
+00100000010000000111000101001010
+00011010001000100111001000000000
+00011010011000001000110000000010
+00100000010000000111000110010111
+00100000010000000111000110100001
+00100000010000000111000101001010
+00011111001000100111111000000000
+00100000001110100111000011111011
+00100000001000000111000011110110
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001100111010
+00100000011000000000000000000000
+00011010001000001010001000000001
+00100000010000000111000011010011
+00011010011000100000110000000000
+00100000010000000111000110101011
+00100000010000000111000101001101
+00100000010000000111000111000111
+00011010011000001010011000010000
+00011010010000001010010111110000
+00100000001000010111000011111111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010101100000000111010
+11011010011000000100010001100101
+01101000000010101100010010001100
+00100000010000000111000011100111
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+00100000010000000111000011010011
+00100000010000000111000101001101
+11011010011000000100010001100111
+01101000000000001100010001100110
+00011111111000001010010111111111
+10011010011000001000101000000000
+00011000000000000111000000001100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00100000010000000111000011111111
+01101000000000001100010001100110
+00011111111000001111111000000100
+01100000000000001100010001100110
+01101000000010101100010010001100
+00011000010000001000010000000001
+01100000000010101100010010001100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010110100000000111010
+01101000000000001000001100000011
+00011111111001100111110000010100
+00100000001000010111000100100111
+11011010011000000000001100000100
+00011111111000001010010111111111
+00011111111000001111111111111100
+01100000000000001000001100000011
+10011010011000001000110000000000
+11101000110000100000000000000000
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+01101000000010101100010010010001
+00100000010000000111000011010011
+00100000010000000111000101001101
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001100111110
+00100000010000000111000011111111
+11011010011000000000001100000010
+00100000010000000111000011100111
+01101000000010100000001100111110
+10011000010001100111111000000000
+00100100011110100000000000000000
+01101000000000100100010010010110
+10011000010001100111111000000000
+00100000011110100000000000000000
+01100000000010100100010010010110
+01101000000000101100010010010001
+00011111111000001111111000000001
+01100000000000101100010010010001
+00011000000000000111111000000000
+00100000011000000000000000000000
+00100100001110111111000101000101
+00100000011000000000000000000000
+00011000000000000110110000110000
+00011000000000000110110000000000
+00100000001000000111000101000101
+00011000000000000110110000110010
+00011000000000000110110000000010
+00100000001000000111000101000101
+00011000000000000110110000110100
+00011000000000000110110000000100
+00100000001000000111000101000101
+00011000000000000110110000000001
+00011000000000000110110000000000
+00100000011000000000000000000000
+00011000000000000111000000000000
+01101000000000100000001101010010
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+01101000000000100100010011000011
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+00100000010000000111000110111011
+00011111000000001111000111111100
+01101000000000100100010101101101
+00011111111000100101111000000000
+00011111000000001111000000000100
+00011000000000000110110000111000
+00011000000000000110110000001000
+00100000001000000111000101000101
+01111001001000000000000000100101
+01000100111010111100000000111010
+01101000000000110100010100111110
+01101000000010110000001101110010
+00100000001101001111000101101111
+01101000000000110000001101110010
+01101000000010110100010100111110
+00011000000000000111000000001000
+00011000010000100101111000000000
+00011111000000001111000000000001
+00011000010011110101111000000000
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011111111011110101111000000000
+00011111000000001111000000000001
+00011000000000000101111000000000
+00011000000000000111111000000000
+01101000000000001100010100101011
+01101000000010001100010100100001
+00100100001101001111000101111111
+01101000000000001100010100110010
+01101000000010001100010100101011
+01100000000000001100010011010011
+01100000000010001100010011010100
+00011000000000000111000000000000
+11011010010000000100010011010011
+00011000000000000111001000000100
+11101010001000100000000000000000
+11101010010010100000000000000000
+10011000010000101101111000000000
+00011111000000001111000000000001
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111000110000100
+00100000010000000111000110111011
+00011111000000001111000111111100
+01101000000000100100010101101101
+00011111111000100101111000000000
+00011111000000001111000000000100
+00011000000000000110110000111000
+00011000000000000110110000001100
+00100000010000000111000101000101
+00100000010000000111000110111010
+00011000000000000110110000111010
+00011000000000000110110000001000
+00100000001000000111000101000101
+00101111001000000000011000000000
+00100000011000001000000000000000
+00011000110000100111111000000000
+10011111001000001000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011111001000001111001000000001
+00101111001000000000011000000000
+00100000011000001000000000000000
+00100000001000000111000110011100
+00011000000000000111000000000000
+00011111001000100111111000000000
+00100000001110100111000110100110
+11101000110000100000000000000000
+00011111001000001111001111111100
+10011000000000000101111000000000
+00011111000000001111000000000001
+00101111000000000001111000000100
+00100000011000001000000000000000
+00100000001000000111000110100010
+00011000000000000111000000001000
+00100000001000000111000110110000
+00011000000000000111000000000100
+00100000001000000111000110110000
+00011000000000000111000000000000
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111000110110001
+00100000011000000000000000000000
+11011000110000000000001110100000
+00100000001000000111000110101101
+00011000000000000111001000000100
+00100000001000000111000110111101
+00011000000000000111000000000000
+00011000000000000111001000000100
+00011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111000110111100
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+11000010000000000111000111000010
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011010011000100000101000000000
+00011010010000001111001000000001
+00011111001001100111110000001111
+00100000001000010111000111001101
+00011000000000000111001000010000
+00011101111000100111111000000000
+00011111001001100111110000000011
+00100000001000010111000111010101
+11100000101000100000000000000000
+00011111001000001111001111111100
+00100000011000101000000000000000
+00011111000000001111000000000001
+00100000001000000111000111001101
+11100000101000001000000000000000
+00011111111011001111111000000000
+11000010000000000111000111010101
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011101111001100111110000000000
+00100100011000101000000000000000
+00011111000000001111000000000001
+11000010000000000111000111011011
+00011000000000000111110000000000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001111111111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001000000111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+11011000101000000000011110101010
+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
+11011000101000000000100001000010
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001000000000000111111
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000000000000000000000
+00111000000001000000000000000000
+00111000000010000001000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000111111111100000000
+00111000000001111111111111111111
+00111000000010111111111111001111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011000000001111111111
+11100000101001001000000000000000
+00111000000000000000000000000000
+00111000000001000000000000000000
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000010000000000000000
+00111000000001000000000000000000
+00111000000010111111000000000000
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000101001011011111111
+00111000000001100010011000110000
+00111000000010111001010001011101
+00111000000011111101001010000100
+11100000101001001000000000000000
+00111000000000110011001110100000
+00111000000001000100101101111010
+00111000000010000011011111011000
+00111000000011111100100111011100
+11100000101001001000000000000000
+00111000000000111010010001000000
+00111000000001011011100101011000
+00111000000010111000101111001110
+00111000000011010000100100011111
+11100000101001001000000000000000
+00111000000000101110000100101100
+00111000000001011111010001111100
+00111000000010110101011010110001
+00111000000011101111110101000111
+11100000101001001000000000000000
+00111000000000000110100000110111
+00111000000001101110110110010000
+00111000000010011110110011101100
+00111000000011011010110011000101
+11100000101001001000000000000000
+00111000000000100011001101010111
+00111000000001011000101011110011
+00111000000010001111100111100001
+00111000000011010010100111110000
+11100000101001001000000000000000
+00111000000000101110011111101011
+00111000000001111110011011100011
+00111000000010111110000110100111
+00111000000011010000101110001011
+11100000101001001000000000000000
+00111000000000100100111111100011
+00111000000001000010000011101111
+00111000000010011011010110100110
+00111000000011001101110000101111
+11100000101001001000000000000000
+00111000000000010011100001100000
+00111000000001101011110101101001
+00111000000010000011100100011010
+00111000000011011011001000100010
+11100000101001001000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000111010011111101
+00100000010000000111010111001001
+01110000100000001000000100000000
+00100000010000000111001110100101
+01011000000000000111001101111100
+01100000000000010100001010001100
+01011000000000000111010010001100
+01100000000000010100001010001110
+01011000000000000111001101100101
+01100000000000010100001010011000
+01011000000000000111001101111010
+01100000000000010100001010010100
+01011000000000000111001101110001
+01100000000000010100001010010000
+01011000000000000111001011110100
+01100000000000010100001010010110
+01011000000000000111001011101111
+01100000000000010100001010001010
+01011000000000000111010011100101
+01100000000000010100001010011100
+01011000000000000111010011110100
+01100000000000010100001010011010
+00100000010000000111010010010110
+01110000010000100001001000000000
+01110000010010001100011100000000
+01111001001000000000000000100101
+01000100111011000100000000111011
+01101000000000001100011101010101
+11000000000000000111001010111000
+00100000010000000111001110000010
+00100000010000000111110011110110
+00100000010000000111110100000010
+01110000010001110101011000000000
+01101000000000010100011100001011
+11000011100001100000000000000000
+00100000001000000011111001110101
+01110000010001110101011000000001
+01110000010001110101101100000001
+00100000010000000111001110000010
+01011000000000000100011101110001
+00100000010000000111001110001110
+00100000010000000111110101000100
+01101000000000001100011100010011
+00100100001110100111001010111101
+01110000010000111111111100000001
+01011000000000000000000000000000
+01100000000000100100011100101001
+00100000010000000111001110000010
+01101000000000010100011101001000
+01100000000000010100011101001010
+00100000010000000111001011100101
+01110000010001110100011000000000
+00100000010000000101001000110100
+01101000000000110100010100111110
+00100000010000000111001011010110
+00100000010000000111001011010010
+00100000011000000000000000000000
+01100000000000010100000111110100
+00011111111000001111111111111100
+01100000000000010100010100011100
+01100000000000010100010100011110
+00100000011000000000000000000000
+01101000000010010100011101000001
+00100000011110100000000000000000
+11100000010000110000000000000000
+00100000011000000000000000000000
+01100000000000110000000100000000
+01101000000000001000000100000000
+01100000000000001000000100001011
+11101000110000001000000000000000
+01100000000000001000000100001010
+11101000110000001000000000000000
+01100000000000001000000100001001
+11101000110000001000000000000000
+01100000000000001000000100001000
+11101000110000001000000000000000
+01100000000000001000000100000111
+11101000110000001000000000000000
+01100000000000001000000100000110
+01101000000000110000000100000110
+00100000011000000000000000000000
+01110000010010001011101100000000
+01101000000000010100011101001110
+00100100001110100111001011101100
+01011000000000000100011101100011
+00100000010000000111001110001110
+01011000000000000000000010100000
+00100000010000000111001011001101
+01101000000000010100011101001100
+01100000000000010100011101001110
+00100000011000000000000000000000
+01101000000000001100011101000000
+11000000000000001011111000110101
+01101000000000001100100001110111
+00100100001110100011111000110101
+00100000001000000011111000110111
+00011010011000100111111000000000
+11000000000101101111010001110101
+11000000000010000111010001111010
+11000000000010100111001100110100
+11000000000010101111001101001100
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000111001011111101
+00100000011000000000000000000000
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+01111001001000000000000000100101
+01000100111011001100000000111011
+00100000010000000111110100011111
+00100000010000000111001100011111
+00100000010000000111001100101100
+00100000010000000111010001101100
+00100000010000000111010001100100
+00100000010000000111001100010011
+00100000010000000111001100001100
+00100000001000000111001011111110
+01101000000000001100100011000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100100011000111
+00100100011110100000000000000000
+01110000010000100001001000000101
+00100000011000000000000000000000
+01101000000000001100100011000010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100100011000010
+00100100011110100000000000000000
+01101000000000001000001101100010
+11000011000000100111001100011100
+01110000010010001100001000000001
+00100000011000000000000000000000
+00100000010000000011111001111111
+01110000000010011011110100010010
+00100000001000000111110110010000
+01101000000000001100011101010110
+11000001100000001000000000000000
+01101000000000010100011101001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101001110
+00100100011110100000000000000000
+01101000000000010100011100001011
+11000010100001001111001100101010
+01011000000000000100011101101010
+00100000010000000111001110001110
+01011000000000000000000101000000
+00100000001000000111001011001101
+01101000000000010100011101001010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101001010
+00100100011110100000000000000000
+01110000010001110101011000000010
+00100000010000000111010010000111
+00100000011000000000000000000000
+01110000010000010011000100000000
+01101000000000010100011101001000
+01100000000000010100011101001010
+01110000010001110100011000000000
+00100000010000000011111001100001
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+00100000010000000011111001100001
+00100000010000000011111001111111
+01110000010001110100111000000000
+01011000000000000100011101111111
+00100000010000000111001110001110
+01110000010001110000111000000000
+00100000011000000000000000000000
+01110000010000100001001000000000
+01110000010010001100011100000000
+01110000010001001011001000000000
+01110000010010001100011000000000
+01110000010010001100000000000000
+00100000010000000111010010011011
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000001100011101000011
+11000000100000000111001101101001
+00100000010000000111001011100101
+01110000010001110100011000000000
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000010000000111001101100011
+00100000010000000011111001100011
+00100000011000000000000000000000
+01110000010001110100000000000001
+00100000011000000000000000000000
+01101000000000001100011101000000
+00100000011000000000000000000000
+01110000010001110100000000000000
+00100000011000000000000000000000
+00100000001000000011111001110101
+01110000010001110100001100000001
+01101000000000010100011100001011
+11000010100001001011111001101011
+00100000010000000111001101101101
+00100000010000000111111101101011
+01110000010001110100001100000000
+00100000001000000011111000001010
+01011000000000000000000000000000
+01100000000000010000001010000110
+01100000000000010000001010001000
+00100000001000000111001101100011
+01101000000000001100011101000111
+00100100010110100111001101110101
+00100000010000000111010011001010
+00100000001000000111001111000101
+01110000010001110100011100000000
+01110000000010011011110100000011
+00100000001000000100101111010110
+01110000010001110100011100000001
+00100000011000000000000000000000
+00100000010000000111010011001010
+00100000001000000111001111000101
+00100000010000000111001110101111
+01101000000000010100011110110110
+00100000001110100111001110000000
+00100000001000000011111001110101
+00100000010000000110010100001001
+00100000001000000111010010001100
+01101000000000001100011101011110
+00011111111000100111001000000000
+01011000000000000100011101011111
+00011111111000100010001000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+11000000011111111111001110001100
+00011111111000100000010000000000
+01100000000000001100011100001110
+00100000010000000111110100101010
+11000010000000000111001110000110
+00100000011000000000000000000000
+00011111111000100000110000000000
+00011000000000000111001000000111
+11011000101000000100011110100010
+00100000010000000111111011001101
+01111001001000000000000000100101
+01000100111011010100000000111011
+01101000000000001100011110100010
+11000001011111111000000000000000
+01101000000010010100011110100100
+01100000000010010100011100010001
+01101000000010010100011110100110
+01100000000010010100011100001111
+01101000000010001100011110101000
+01100000000010001100011100010011
+00100000010000000111110100101111
+01101000000010001100011110100011
+01100000000010001100011100001110
+01101000000000001100011110100010
+11000000000000000111001110100011
+11000000000000001111110100111000
+11000000000000010111110100111111
+00100000011000000000000000000000
+00100000001000000111110100101111
+01101000000000001100011110101001
+00100000011110100000000000000000
+00011111111000100111001000000000
+01011000000000000100011110101010
+00011111111000100010001000000000
+11101010001010001000000000000000
+00100000010000000110010011011111
+00011010001000001010001000000010
+11000010000000000111001110101010
+00100000011000000000000000000000
+11011010001000000100011110101010
+00011000000000000010010000000000
+01110000010001111011011000000000
+11101010001010001000000000000000
+00100000010000000110010011110101
+01111001001000000000000000100101
+01000100111011011100000000111011
+01101000000000010100011110110110
+00011010010000100000111000000000
+11111001001000001111111000000000
+01100000000000010100011110110110
+00011010001000001010001000000010
+00011010010000001010010000000001
+01101000000000001100011110101001
+10011010010000101111110000000000
+00100100001000101111001110110010
+01101000000000010100011110110110
+01101000000010010100011110111000
+10011000010000101111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011000111000000000000000001100
+00100000010000000111111011100010
+00100100011110100000000000000000
+00100000010000000111010011000111
+01101000000000001100011101011011
+00100000011110100000000000000000
+01111000010101000111110000000000
+00100000010000000111010010001100
+01111001001000000000000000100101
+01000100111011100100000000111011
+01101000000000001100011110101001
+00100000011110100000000000000000
+00100000010000000111001110101111
+00100100001101000111110100101000
+00100000010000000111110100100110
+01111000010101000111110000000000
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000010100011100001011
+11000011000001001111001011100101
+00100000010000000111010011011110
+00100000001000010111001111110101
+01101000000000010100011110110110
+01100000000000010100011111000000
+01110000010001111100001000000000
+00011000000000000000111000000000
+01111001001000000000000000100101
+01000100111011101100000000111011
+01101000000000010100011110111000
+00011111111000110000010000000000
+01100000000010010100011110111000
+00011111111000010111111000000001
+01101000000010010100011111000000
+00011000010000010010001000000001
+00011000010000110000010000000000
+01100000000010010100011111000000
+10011010001000101111110000000000
+00100100010000101111001111111001
+01101000000000001100011110101001
+01101000000010001100011111000010
+00011000010000001000010000000001
+01100000000010001100011111000010
+00011000010000100000111000000000
+10011000111000101111110000000000
+00100100001000101111001111011111
+01101000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00100000001110100111010000011001
+01111001001000000000000000100101
+01000100111011110100000000111011
+00011000111000100111111000000000
+11000000000000000111010000100011
+11000000000000001111010000100111
+11000000000000010111010000101011
+11000000000000011111010000101111
+11000000000000100111010000110011
+11000000000000101111010000110111
+01101000000000001100010101101011
+11000001100000011000000000000000
+01101000000000001100100010111011
+00100100011110100000000000000000
+11101000010000001000000000000000
+00100000011110100000000000000000
+01100000000000001100011110111010
+00011000010000001000010000000001
+01100000000010010100011110111011
+01101000000000010100011110111011
+11101111111010001000000000000000
+00011000010000100111001000000000
+10011000010000001000010000000000
+01100000000010010100011110111011
+00011111111000100000010000000000
+00100000010000000111010010011100
+01101000000000001100011110111010
+00011111111000001111111111111111
+01100000000000001100011110111010
+00100100001000101111010000001101
+00100000001000000111010011001010
+01111001001000000000000000100101
+01000100111011111100000000111011
+00011000111000100111111000000000
+11000000000000000111010000111011
+11000000000000001111010000111111
+11000000000000010111010001000011
+11000000000000011111010001000111
+11000000000000100111010001001011
+11000000000000101111010001001111
+00100000001000000111010000000100
+01101000000000001100011110101011
+00100000010000000111010001010111
+11011000010000000100011111000011
+00100000001000000111010000000100
+01101000000000001100011110101101
+00100000010000000111010001010111
+11011000010000000100011111101011
+00100000001000000111010000000100
+01101000000000001100011110101111
+00100000010000000111010001010111
+11011000010000000100100000000111
+00100000001000000111010000000100
+01101000000000001100011110110001
+00100000010000000111010001010111
+11011000010000000100100000100011
+00100000001000000111010000000100
+01101000000000001100011110110011
+00100000010000000111010001010111
+11011000010000000100100000111111
+00100000001000000111010000000100
+01101000000000001100011110110101
+00100000010000000111010001010111
+11011000010000000100100001011011
+00100000001000000111010000000100
+01101000000000001100011110101011
+00100000010000000111010001010011
+11011000010000000100011111010111
+00100000001000000111010000000100
+01101000000000001100011110101101
+00100000010000000111010001010011
+11011000010000000100011111111001
+00100000001000000111010000000100
+01101000000000001100011110101111
+00100000010000000111010001010011
+11011000010000000100100000010101
+00100000001000000111010000000100
+01101000000000001100011110110001
+00100000010000000111010001010011
+11011000010000000100100000110001
+00100000001000000111010000000100
+01101000000000001100011110110011
+00100000010000000111010001010011
+11011000010000000100100001001101
+00100000001000000111010000000100
+01101000000000001100011110110101
+00100000010000000111010001010011
+11011000010000000100100001101001
+00100000001000000111010000000100
+00101111111000011111111000000001
+00100000011000001000000000000000
+00011000000000000111111000000011
+00100000001000000111010001010111
+11000000000000000111010001011100
+11000000000000001111010001011110
+11000000000000010111010001100000
+11000000000000011111010001100010
+00100000001000000111001110001110
+01011000000000000100011110000110
+00100000001000000111001110001110
+01011000000000000100011110001101
+00100000001000000111001110001110
+01011000000000000100011110010100
+00100000001000000111001110001110
+01011000000000000100011110011011
+00100000001000000111001110001110
+01101000000000001100011101011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011010
+00100100011110100000000000000000
+01101000000000001100011101010110
+11000000000000001111001011000000
+00100000001000000111010010001010
+01101000000000001100011101011000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011000
+00100100011110100000000000000000
+00100000001000000011111001110011
+01101000000000001100011101010111
+01100000000000001100011101011000
+00100000001000000011111001110001
+01101000000000001100011101010110
+11000000000000001111010001111000
+00100000001000000011111001110101
+01110000010001110101101100000001
+00100000011000000000000000000000
+01101000000000001100011101010110
+11000000000000001111010010000001
+01110000010001110101011000000001
+01011000000000000100011101110001
+01101000000010001100011101011001
+01100000000010001100011101011010
+00100000001000000111001110001110
+01110000010001110101011000000010
+01110000010001110101101100000000
+01110000010000111111111100000000
+01101000000000010100011100001011
+11000011000001001111010010000111
+00100000010000000011111001101011
+01110000010000111111111100000000
+01011000000000000100011101111000
+00100000001000000111010001111110
+00100000010000000111001110000010
+00100000001000000011111001110101
+01101000000000001100011110101001
+00100000011110100000000000000000
+00011111111000100111001000000000
+01011000000000000100011110101010
+00011111111000100010001000000000
+11101010001010001000000000000000
+00100000010000000110010011000010
+00011010001000001010001000000010
+11000010000000000111010010010001
+00100000011000000000000000000000
+01110000010010000111011100000000
+01011000000000000100100001111100
+01100000000000010100100001111000
+01100000000000010100100001111010
+00100000011000000000000000000000
+00100000001000000111010010010110
+01111000010101000111110000000000
+01101000000000001100100001110111
+00101111111000011111111000000110
+00100000011000001000000000000000
+01111000001101000111110000000000
+01101000000000010100100001111010
+00011111111000100000101000000000
+00011000010000100000110000000000
+00100000010000000111111011001101
+01101000000000001100100001110111
+00011111111000001111111000000001
+01100000000000001100100001110111
+01011000000000000100100001111010
+00100000010000000111010010101011
+00100000011000000000000000000000
+00011111111000100010001000000000
+11011000010000000100100010111000
+11101010001000010000000000000000
+00011111111000001111111000001010
+10011000010001100111110000000000
+00100100001000010111010010110010
+01011000000000000100100001111100
+11100010001000010000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100100001110111
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000001100100001110111
+00011111111000001111111111111111
+01100000000000001100100001110111
+01101000000000010100100001111000
+01100000000000010100100010111000
+01011000000000000100100001111000
+00100000010000000111010010101011
+01101000000000010100100010111000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100100001110111
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000010100100001111000
+00100000011000000000000000000000
+01101000000000010100011101011100
+11011000111000000000000000001100
+00100000001000000111111011010100
+00100000010000000111010011000001
+00100100011101000000000000000000
+01111000010101000111110000000000
+00011000000000000000010000010011
+01100000000010010100010011111000
+00100000001000000111010011010000
+11011111001000000000000000000010
+01101000000010010100010011111000
+11011000110000000100011100101001
+00100000010000000111010011010111
+00100000011000000000000000000000
+01110000000010011011110100011101
+00100000001000000111010011011100
+00100000010000000100101111010000
+00100100011110100000000000000000
+01101000000000001100100010111010
+00100100011110100000000000000000
+01110000000010011011110100011011
+00100000010000000100101111010110
+00100000001000000111001101011111
+01101000000010100100011100101111
+00011100010000100111111000000000
+01100000000000100100011100101111
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111111000010100
+00100000011000000000000000000000
+00100000010000000111010010110100
+00100100011101000000000000000000
+01111000010101000111110000000000
+00011111111000100000110000000000
+11101000110010001000000000000000
+00011000010000001000010111111101
+00011000010000100111001000000000
+11101000110010010000000000000000
+00011111001000001111111000000111
+01100000000000001100011100111111
+11011000101000000100010001101100
+11100000101010010000000000000000
+00100000010000000111111011001101
+01101000000010001100011100111111
+00100000001000000100111110001001
+01101000000000001000001110011010
+11000000000010010111010011111000
+11000000001010010111010011111011
+00100000011000000000000000000000
+01101000000000010000001110011011
+11000000000011000111010011111011
+00100000011000000000000000000000
+01110000010010001011101000000000
+00100000011000000000000000000000
+11011000101000000100100011001100
+00111000000000100000000000000001
+00111000000001100000000000000000
+00111000000010000001000000100010
+00111000000011000000100001100000
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010000011001000000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010101000000101
+00111000000001010000000000000000
+00111000000010000010000000000000
+00111000000011001010010000001000
+11100000101001001000000000000000
+00111000000000000000000000000010
+00111000000001000000000101000000
+00111000000010000000000000100000
+00111000000011000000100010100000
+11100000101001001000000000000000
+00111000000000100001100000000000
+00111000000001001000000000000001
+00111000000010101000000000110000
+00111000000011000000100000000100
+11100000101001001000000000000000
+00111000000000100000000000000111
+00111000000001101000000000000000
+00111000000010000011000100110010
+00111000000011011010010110100001
+11100000101001001000000000000000
+00111000000000010111001101110000
+00111000000001110101100001011001
+00111000000010001100010000100010
+00111000000011001000000100010101
+11100000101001001000000000000000
+00111000000000000010000000100000
+00111000000001000000100000001000
+00111000000010100000001000000010
+00111000000011000000000000100000
+11100000101001001000000000000000
+00111000000000000000001100000010
+00111000000001001000000001001010
+00111000000010000000000010010000
+00111000000011000000010000001000
+11100000101001001000000000000000
+00111000000000000000001000101010
+00111000000001101000000000110010
+00111000000010000010000000000000
+00111000000011001010000000001100
+11100000101001001000000000000000
+00111000000000110000001000000001
+00111000000001001000000000000010
+00111000000010101010000001000000
+00111000000011000001100000100000
+11100000101001001000000000000000
+00111000000000000000011000000000
+00111000000001000001100100000000
+00111000000010000001001011000000
+00111000000011000000000000110000
+11100000101001001000000000000000
+00111000000000000000000000000010
+00111000000001101000000010001010
+00111000000010001101000110000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010100000000011
+00111000000001111000000010000000
+00111000000010000010000000000000
+00111000000011001010100101000000
+11100000101001001000000000000000
+00111000000000100000001000000111
+00111000000001011000100100100010
+00111000000010000001100000100110
+00111000000011000011110000000000
+11100000101001001000000000000000
+00111000000000000000001000000000
+00111000000001001000101000000000
+00111000000010011000000100100000
+00111000000011000000000001000000
+11100000101001001000000000000000
+00111000000000000000001100000010
+00111000000001011000000001001010
+00111000000010000000000100010000
+00111000000011010011100000001000
+11100000101001001000000000000000
+01011000000000010000000100101010
+11100000101000011000000000000000
+00111000000000100000000000010010
+00111000000001100000000011000000
+00111000000010010010000000010010
+00111000000011000000000001001100
+11100000101001001000000000000000
+00111000000000100100110100000010
+00111000000001000000000010001010
+00111000000010010100001010000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000100010100100000010
+00111000000001000000000000000000
+00111000000010000000000101010000
+00111000000011000010000000001000
+11100000101001001000000000000000
+00111000000000100000001000101001
+00111000000001011000000001000000
+00111000000010000010000000000001
+00111000000011001010000000001100
+11100000101001001000000000000000
+00111000000000110001001000000001
+00111000000001001000000000000101
+00111000000010101010010011010000
+00111000000011000000000000001000
+11100000101001001000000000000000
+00111000000000000001100000101000
+00111000000001001000000010000000
+00111000000010000010001010010000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000100000000000011001
+00111000000001100100001000000000
+00111000000010000011000000100010
+00111000000011000110100000000100
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010011011000000100000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000000010101001001011
+00111000000001110000000101010001
+00111000000010000001000010010000
+00111000000011000000011010000100
+11100000101001001000000000000000
+00111000000000010000001010000101
+00111000000001100111101001000010
+00111000000010001001111010100000
+00111000000011000010011110001000
+11100000101001001000000000000000
+00111000000000010001010100110000
+00111000000001110000100101000000
+00111000000010010000011101010000
+00111000000011000000011001010100
+11100000101001001000000000000000
+00111000000000000000000010000001
+00111000000001000100000101110000
+00111000000010000110000010010000
+00111000000011000000011010000100
+11100000101001001000000000000000
+00111000000000010000001110000101
+00111000000001100100000111000001
+00111000000010101001111000000001
+00111000000011000101011110011100
+11100000101001001000000000000000
+00111000000000010010010100000000
+00111000000001000101110101000000
+00111000000010001000100101010000
+00111000000011000000101000000100
+11100000101001001000000000000000
+00111000000000010000100001110101
+00111000000001010100000001100101
+00111000000010100101000000000001
+00111000000011000001011111010000
+11100000101001001000000000000000
+00111000000000000001100100000111
+00111000000001010000101001000000
+00111000000010000000100000011111
+00111000000011000000001100000000
+11100000101001000000000000000000
+00111000000000100000000000011100
+00111000000001100000000011000000
+00111000000010000010000000010010
+00111000000011000000000001110100
+11100000101001001000000000000000
+00111000000000100100101000000010
+00111000000001000100000100001010
+00111000000010000000000000010001
+00111000000011000111100000000100
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010011111000001000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010101001001100
+00111000000001000000000000000000
+00111000000010000010000000000010
+00111000000011001010000000000000
+11100000101001001000000000000000
+00111000000000000000111100000010
+00111000000001000000100001000110
+00111000000010000011000000100000
+00111000000011000000010010100000
+11100000101001001000000000000000
+00111000000000000010001000010010
+00111000000001100100000010000000
+00111000000010000001001010100001
+00111000000011001000110000000000
+11100000101001001000000000000000
+00111000000000100000001000000000
+00111000000001001000101001000000
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00100000011000000000000000000000
+01110000010001001101111100000001
+01110000010001011010100000000001
+01110000010001010110110000000001
+01011000000000000000000000011011
+01100000000000010100010110001011
+01110000010001010010001000000001
+01110000010010001100100000000011
+01110000010001011001011001010000
+01110000010001010100110000010111
+01110000010001010100111000010111
+11011000101000000100010011011100
+00111000000000000000001100000010
+00111000000001000000000001000000
+00111000000010000001000000100001
+00111000000011000000000000000000
+11100000101000111000000000000000
+11011000101000000100010110001101
+00111000000000000000000000001000
+00111000000001000000000000000100
+00111000000010101100000000000000
+00111000000011000000000000000100
+11100000101001000000000000000000
+00100000011000000000000000000000
+01101000000000001100011011100010
+00100100001110100111010111110100
+00100000001000000111101010010110
+01111001001000000000000000100101
+01000100111100000100000000111100
+01101000000000001100011011100010
+00100000011110100000000000000000
+01101000000000001100011000111001
+11000001100000001000000000000000
+01101000000000001100010101100011
+00100000011110100000000000000000
+01101000000000001100010101101000
+11000001000000011000000000000000
+01101000000000010100011100001011
+11000010100000000111010111110010
+01101000000000001100010101100101
+11000000000000000111101010010110
+00100000011000000000000000000000
+01110000010001010110010100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100001100000000111100
+01101000000000001100011011100010
+00100000001110100101011100110111
+00100000010000000101011100101111
+00100000010000000111010111111011
+00100000001000000111011010000100
+01011000000000000000000000000000
+01100000000001000000100011010010
+01100000000000100000100011011010
+01100000000000111100011011100110
+00100000011000000000000000000000
+01110000000010001101010000000001
+00100000001000000111011000000101
+01101000000000001100011000111001
+11000000000000001111011010100010
+00100000001000000011101100110001
+01101000000000001100011000111001
+11000000000000001111011000001000
+00100000001000000111011010000100
+00100000010000000111011010100010
+01101000000000001000100011010011
+00100100011110100000000000000000
+01110000000010001101001000000011
+00100000011000000000000000000000
+01101000000000001000100011010110
+11000000100000000111011000101011
+00100000010000000111011000101000
+11011000101000000000100110100010
+01011000000000000000100101010010
+11100000101000010000000000000000
+01011000000000000100011011001010
+11100000101000010000000000000000
+01011000000000000000100100000010
+11100000101000010000000000000000
+00100000001000000111011000011111
+11011000101000000000100110100010
+01011000000000000000100101100010
+11100000101000010000000000000000
+01011000000000000000100100000010
+11100000101000010000000000000000
+01011000000000000100011011001010
+11100000101000010000000000000000
+00100000010000000111100110111101
+01101000000000001000100011010011
+11000000000000100111011000100101
+01110000000010001101010000000001
+01110000000010001101001000000101
+00100000011000000000000000000000
+01110000000010001101001100010100
+00100000010000000111011000000010
+00100000001000000111011011110011
+11011000101000000000100101000010
+00011000000000000000111000001000
+00100000001000000111011010111011
+01110000000010001101010000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100010100000000111100
+11011000101000000000011001001011
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000011100011011100110
+11100000101000011000000000000000
+00100000010000000111101000101011
+11011010001000000000100101110010
+11011010010000000000100110000010
+00011000000000000000111000000100
+00100000010000000111011011000000
+00100100001000001111011001001000
+00100000010000000111011000111111
+01110000000000000111110101000001
+00100000001000000101100100000011
+01101000000000001000100011010011
+11000000000001001111011001000101
+01110000000010001101001000001010
+01110000000010001101010000000001
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000010001101001100010101
+00100000001000000111011011110011
+01101000000000001000100011010011
+11000000000001001111011001001110
+01110000000010001101001000000000
+01110000000000000111110000000100
+01110000000000000111111000000101
+00100000011000000000000000000000
+01110000000000000111110000000100
+01110000000010001101001100000000
+00100000011000000000000000000000
+01101000000000001000100011010111
+11000000000000001111011001010101
+01110000000010001101001100001010
+00100000001000000111011011110011
+11011000101000000000011001001011
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000010000000111101001000011
+01101000000000001000100011010011
+11000000000001010111011001100010
+01110000000010001101001000001011
+01110000000010001101010000000001
+00100000011000000000000000000000
+01110000000010001101001100001011
+01110000000010001101010100000001
+00100000011000000000000000000000
+11011000101000000000100110100010
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01011000000000000000100101010010
+11100000101000010000000000000000
+01011000000000000000100101100010
+11100000101000010000000000000000
+00100000001000000111011001111001
+01110000000010001101001000001111
+11011000101000000000100110100010
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01011000000000000000100101100010
+11100000101000010000000000000000
+01011000000000000000100101010010
+11100000101000010000000000000000
+11011000101000000000011001001011
+01101000000000110000100110100010
+11100000101000110000000000000000
+01101000000000110000100110101000
+11100000101000110000000000000000
+00100000010000000111100111110101
+01110000010000100101110100000001
+11011000101000000100001001100001
+11011000110000000000100101110010
+00100000010000000111111010000111
+00100000001000000011000111101110
+01111001001000000000000000100101
+01000100111100011100000000111100
+01101000000000001100011000111001
+11000001100000000000000000000000
+01101000000000001000100011010110
+11000001100000000000000000000000
+11011000101000000100011010011010
+00011000000000000000111000001011
+00100000010000000111011010111011
+00011000000010100111111000000000
+00011111111000110111111000000000
+11100000101000010000000000000000
+11011000101000000000010111100010
+11011000110000000100011010011010
+00100000010000000111111010000110
+11011000101000000000010100001010
+11011000110000000000011111110010
+00100000010000000111111010000100
+11011000101000000000010100111010
+00100000010000000111111010010000
+01110000000001010011101000000001
+00100000010000000111101001111100
+01110000000010001101011000000001
+00100000011000000000000000000000
+11011000101000000100011010110010
+11011000110000000000010101010010
+00100000010000000111111010000100
+01110000010001100011100100000001
+01110000000010001101011000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100100100000000111100
+01101000000000001000100011011101
+11000001100000000000000000000000
+01101000000000001000100011010110
+11000001100000000000000000000000
+11011000101000000000010111100010
+11011000110000000100011010011010
+00100000010000000111111010000110
+11011000101000000000010100001010
+11011000110000000000100011101010
+00100000010000000111111010000100
+11011000101000000000010100111010
+00100000010000000111111010010000
+01110000000001010011101000000001
+00100000010000000111101001111100
+01110000000010001101011000000010
+00100000011000000000000000000000
+01110000000010001101011100000001
+11011000101000000000100100101010
+11011000110000000000010101010010
+00100000010000000111111010000110
+01110000000010001101110100000001
+01110000000010001101011000000000
+00100000011000000000000000000000
+00011000111000001000111111111111
+00100100011000010000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00100000001000000111011010111011
+00011000111000001000111111111111
+00100100001000010111011011001100
+11101010001000100000000000000000
+00011111111000100000010000000000
+11101010010000100000000000000000
+10011000010000101111111000000000
+00100100001000101111011011001010
+00011010001000001010001000000100
+00011010010000001010010000000100
+00100000001000000111011011000000
+01111000010000001111110000000000
+00100000011000000000000000000000
+01111000001000001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100101100000000111100
+01101000000000001000100011010100
+00100000011110100000000000000000
+00100000010000000101100011000101
+00100100011110100000000000000000
+01110000000010001101010000000000
+01101000000000001000100011010010
+11000000000000011101100000000110
+11000000000000101101100000100011
+11000000000000111101100000101110
+11000000000001011101100001000011
+11000000000000010111011000000000
+11000000000000100111011000001101
+11000000000001001111011000101101
+11000000000001010111011001010001
+11000000000001100111011001101111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100110100000000111100
+01101000000000001000100011010101
+00100000011110100000000000000000
+00100000010000000101100011000101
+00100100011110100000000000000000
+01110000000010001101010100000000
+01101000000000001000100011010011
+11000000000010010101011111101001
+11000000000010011101011111101110
+11000000000000011101011111110010
+11000000000000100111011000011000
+11000000000010100101011111110110
+11000000000000111101100000000100
+11000000000001010111011001010001
+11000000000001011101100001000010
+11000000000001001111011000101101
+11000000000010101101100000111100
+00100000011000000000000000000000
+01110000000010001101010100000001
+00100000011000000000000000000000
+01110000000010001101010100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100111100000000111100
+01101000000000001100011011100010
+00100000011110100000000000000000
+01101000000000001000100011010110
+00100000011110100000000000000000
+00011111111000001111111010000000
+01100000000000001000100011010110
+11000011100000111000000000000000
+01101000000000001000010100000111
+00100000001110100111011100000011
+00100000001000000111101010000111
+00100000010000000111100011101111
+01101000000000001000100011010110
+11000000000000001111011010011100
+11000000000000010111011010110100
+00100000011000000000000000000000
+00011111111000010000111000000111
+00011111111010010111111000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10101111111011000000000000000000
+00100000011000000000000000000000
+00100000010000000111111010000110
+00100000010000000111111010000110
+00100000001000000111111010000110
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100000011000000000000000000000
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100010111
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011010010000001010010000010100
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+00100100011000010000000000000000
+00100100011110100000000000000000
+00011010001000001010001111111100
+00011010010000001010010111111100
+11000010000000000111011100100011
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010000001111111000000000
+10011010011000001111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100101111
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+10011010011001100111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100111101
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000000000
+01111001001000001010011000000001
+00011111111000110111111000000000
+00101010011011111111111000000000
+01111001001000001111111000011111
+11100010001000100000000000000000
+00011010001000001010001111111100
+00011010011000110010011000000000
+11000010000000000111011101001100
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000011111
+01111001001000001010011000000001
+00011111111000111111111000000000
+00101010011011111111111000000000
+01111001001000001111111000000000
+11100010001000100000000000000000
+00011010001000001010001000000100
+00011010011000110010011000000000
+11000010000000000111011101011001
+00100000011000000000000000000000
+00100000010000000111011101010111
+00101010011011111111111000000000
+00100000001000001111011101101101
+11011010010000000000011110101010
+00011010001000100010011000000000
+00011010001000001010001111101000
+00100000010000000111011100100000
+00100100011000010000000000000000
+00011010011000100010001000000000
+00011010001000001010001111101000
+11011010010000000000011110101010
+00011010001000100000101000000000
+00100000001000000111011100111011
+00100000010000000111011100101101
+00011000101000100010001000000000
+00100000001000000111011101100101
+00100000010000000111011100111011
+00101010011011000000000000000000
+00100000011000001000000000000000
+11011010010000000000011110101010
+00011000101000001010001111101000
+00011010001000100000101000000000
+00100000001000000111011100101101
+00011000101000100001011000000000
+00011010001000100110000000000000
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011010001000001000110000011000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011001011000100000101000000000
+00100000010000000111011101110001
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011110000000001000110000100000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111011101110001
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011110000000001000110000101000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000001000000111011101110001
+00011000000000000111001000000110
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111011110011101
+00100000011000000000000000000000
+00011000101000100001011000000000
+11011000101000000000011000001010
+00100000010000000111111010010000
+11011000101000000000011000001010
+00011010001000100000110000000000
+00011000000000000111000000000000
+00100000010000000111011110011100
+00011010010000100000110000000000
+00100000010000000111011110011100
+00011000000000000010010000000000
+00011000000000000000010000000000
+00011000000000000010011000000110
+11101000101000100000000000000000
+10011000000000000010001000000000
+00011010010000100111000000000000
+00011101111000100111111000000000
+00011010011000100111000000000000
+10011101111011111111111000000000
+10011010001000001111111000000000
+10011000010000001111111000000000
+11100000101000100000000000000000
+00011111111011110000010000000000
+00011010011000001010011000000001
+00101010011000011111111000001100
+00100100001000001111011110101110
+00011000010000100111111000000000
+11100000101000100000000000000000
+00011000101000001000101111101000
+00011010010000001010010000000001
+00101010010000011111111000000110
+00100100001000001111011110101100
+11011010001000000000011000001010
+00011001011000100000101000000000
+00100000001000000111011101111011
+00011010001000100010010000000000
+00100000001000000111011110100010
+00011010001000100110000000000000
+00011110000000100010001000000000
+11101010001000001000000000000000
+00101111111011111111111000000000
+00100000011000001000000000000000
+00100000010000000111011101001001
+11101010010000001000000000000000
+00101111111011000000000000000000
+00100000001000001111011111010110
+11011010001000000000011110101010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00011010010000001010010111101000
+00011010010000001010001000011000
+00011000000000000111001000000111
+00100000010000000111011101001011
+00100000001000000111011111000111
+00011000101000100001011000000000
+11011000101000000000011001101010
+00100000010000000111111010010000
+00011000000000000111111000000000
+01100000000000100000011000100010
+01100000000000100000011010000010
+01110000000001100110101000000001
+11011000101000000000011000001010
+00100000010000000111111010010000
+11011000110000000000011110101010
+11011000101000000000011000111010
+00100000010000000111111010000110
+00011010001000100000110000000000
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011000110000000000011001010010
+00100000010000000111011100010001
+00100000001110100111100000010010
+11011010001000000000011001010010
+11011010010000000000011001101010
+00100000010000000111011111000110
+11011010001000000000011000111010
+11011010010000000000011000001010
+00100000010000000111011111000110
+11011010001000000000011001010010
+11011010010000000000011000111010
+00100000010000000111011100100000
+00100000001000010111100000000100
+11011010001000000000011000111010
+11011010010000000000011001010010
+00011010001000100000101000000000
+00100000010000000111011100111011
+11011010001000000000011001101010
+11011010010000000000011000001010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111011111101001
+11011010001000000000011001010010
+11011010010000000000011000111010
+00011010001000100000101000000000
+00100000010000000111011100111011
+11011010001000000000011000001010
+11011010010000000000011001101010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111011111101001
+11011000101000000000011001101010
+00100000010000000111111010010000
+01101000000000001000011000100010
+01100000000000001000011001101010
+01100000000000001000011001110010
+11011010001000000000011001101010
+11011010010000000000011000001010
+00011010010000100000101000000000
+00100000010000000111011101110001
+11011010001000000000011110101010
+11011010010000000000011000001010
+00011001011000100000101000000000
+00100000001000000111011101110100
+11011010001000000000010111001010
+11011000101000000000011010000010
+00100000010000000111011111000100
+11011010001000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011111000010
+11011010010000000000011010011010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000010110011010
+11011000101000000000011010000010
+00100000010000000111011111000100
+11011000110000000000011010000010
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011010000010
+11011010010000000000011001010010
+11011000101000000000011010000010
+00100000010000000111011101110001
+11011010001000000000011010000010
+11011010010000000000011010011010
+11011000101000000000011010000010
+00100000010000000111011101110001
+11011000110000000000010110011010
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011010001000000000010110110010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011000101000000000011001101010
+00100000010000000111011111000100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011000110000000000010110110010
+11011000101000000000011010011010
+00100000010000000111111010000110
+11011010001000000000011010011010
+00100000010000000111011101100100
+11011010001000000000011010011010
+11011010010000000000010111001010
+11011000101000000000010111001010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000010110011010
+00100000010000000111011101110100
+11011010001000000000011001010010
+11011010010000000000010110011010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011001101010
+11011000101000000000010110110010
+00100000001000000111011101110100
+11011010001000000000010100111010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011010110010
+11011000101000000000011001101010
+00100000010000000111011110100010
+11011010001000000000010100111010
+11011010010000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011110100010
+11011010001000000000010110110010
+11011010010000000000011010110010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000010100001010
+11011010010000000000011010110010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011010010000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011110100010
+11011010001000000000010100100010
+11011010010000000000011010110010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011001101010
+11011010010000000000011010000010
+11011000101000000000011010110010
+00100000010000000111011101110100
+11011010001000000000011001101010
+11011010010000000000011010000010
+11011000101000000000011001101010
+00100000010000000111011101110001
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011010000010
+00100000010000000111011101110100
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011101110001
+11011010001000000000011001010010
+11011010010000000000011010110010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011010010000000000010100111010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011010110010
+11011000101000000000010111001010
+00100000010000000111011110100010
+11011010001000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000011010110010
+11011010010000000000011001101010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010110010
+11011010010000000000011001010010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011000101000000000010110011010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011010011010
+11011000101000000000010110011010
+00100000010000000111011101110100
+11011000110000000000010110011010
+11011000101000000000011010110010
+00100000010000000111111010000110
+11011010001000000000011010110010
+00100000010000000111011101100100
+11011010001000000000011010011010
+11011010010000000000011010110010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011010000010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011010010000000000011001010010
+11011000101000000000010110110010
+00100000010000000111011101110100
+11011010001000000000010110110010
+11011010010000000000011110101010
+11011000101000000000010110110010
+00011000000000000010011000000000
+01101000000000001000010110110010
+00101111111011111111111000000000
+00100000010000001111011100101101
+00011010011000100110000000000000
+11011010001000000000010110110010
+00100000010000000111011101001001
+01101000000000001000010111001001
+00101110000011111111111000000000
+01111001001000001111111000000111
+01100000000000001000010111001001
+00100000011000000000000000000000
+01101000000000001000010100000111
+00011111111000001111111111111111
+00100100011000010000000000000000
+01100000000000001000010100000111
+01101000000000001000010100000110
+00100000010110100111100000011111
+01101000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000001000001111100011011100
+01101000000000001000010100000110
+00100100001110100111100011101010
+00100000010000000111100001110000
+00100000001000000111100011011100
+01110000000001010000011000000000
+11011000110000000000010100001010
+11011000101000000000010110011010
+00100000010000000111011100001110
+00100000001000000111100011011100
+11011010001000000000010111001010
+11011000101000000000011010011010
+00100000010000000111011111011010
+11011010001000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011001010010
+11011000101000000000010101010010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000010110110010
+11011010010000000000011010000010
+11011000101000000000010101101010
+00100000001000000111011110100010
+11101000110000100000000000000000
+00011000000000000010001000000100
+00011000101000001000101000000011
+11100000101000001000000000000000
+00011111111011001111111000000000
+00011000101000001000101111111110
+00011010001000001010001111111111
+00100100001000101111100100000100
+00011000101000001000101000000101
+11000010000000000111100100000001
+00100000011000000000000000000000
+00011000111010111111111000000000
+10011001011000001000110000000000
+11101000110000100000000000000000
+00100000011000000000000000000000
+00011000000000000110000000010000
+11011001011000000000010100001010
+00011110000000001000111111111001
+00100000010000000111100100001100
+10011000000000000000010000000000
+00011110000000001000111111110000
+00100000010000000111100100001100
+10011000010000001000010000000000
+00011110000000001000111111111110
+00100000010000000111100100001100
+00011111111011100111111000000001
+10011000010000001000010000000000
+00011110000000001000111111110001
+00100000010000000111100100001100
+00011111111011100111111000000000
+10011000010000001000010000000000
+00011110000010111111111000000000
+10011001011000001000101000000000
+11100000101010100000000000000000
+00011110000000001110000000000001
+00101110000000011111111001000000
+00100100001000001111100100010010
+00100000011000000000000000000000
+11011000110000000000100000100010
+00011000000000000111000000000111
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000111111111
+00100000001000010111100100101001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101000100000000111101
+00100000010000000111100100010000
+11011000101000000000011000001010
+00011000000000000111000000000000
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111100100110011
+00100000010000000111000111100010
+11011001011000001000011100000000
+11011110000000000000010100001010
+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
+11000010000000000111100100111100
+11011000110000000000011000001010
+00011000000000000111000000000000
+11101000110000100000000000000000
+10011101111000001101111000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111100101100101
+00100000001000000111000111100110
+11011000101000000000100101100010
+00011000000000000111000000000111
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000111111111
+00100000001000010111100101101101
+00100000011000000000000000000000
+11011000101000000000010100001010
+00011000110000001000110111111100
+00011111001001100010001000010000
+11101000110000100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111100101110101
+00011010001000100111001000000000
+00011000010000100111111000000000
+11100000101000100000000000000000
+11000010000000000111100101111100
+00100000011000000000000000000000
+00100000010000000111100110000100
+00100000010000000111100101101011
+00100000001000000111100110101010
+00100000010000000111100110000100
+00100000001000000111100110101010
+11011000110000000000100100000010
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000100011011001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100101100010
+00100000010000000111101010001111
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101010010
+11011000101000000000010100001010
+00100000001000000111100110100001
+11011000110000000100011011001010
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100100000010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100101010010
+00100000010000000111101010001111
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101100010
+11011000101000000000010100001010
+00100000010000000111100110100001
+00100000001000000111100110101010
+00100000010000000111101010001111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111001000000101
+00100000010000000111111010010001
+01011000000000000000001010000000
+11100000101000100000000000000000
+00100000001000000111100100101110
+01101000000000100000100101100010
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+01100000000000100000100011011110
+00011000000001111111111000000000
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+11011010001000000000001111101000
+10011010001011111111111000000000
+01101000000010100000100011011110
+10011000010000001111111000000000
+01100000000000100000100011011110
+00100000011000000000000000000000
+01110000010001101110110000000000
+00100000001000000111100110111111
+01101000000000001100011011101010
+11000000100000010111100110111011
+01111001001000000000000000100101
+01000100111101001100000000111101
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+01101000000000010000100110100010
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+01101000000000010000100110100100
+00011111111000100000110000000000
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+01101000000000010000100110100110
+00011111111000100000110000000000
+00011000000000000111001000000110
+00100000010000000111101010010000
+01011000100000000000000000000000
+11100000101000011000000000000000
+01101000000000001100011011101100
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110001000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+01101000000000010000100110100010
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+01101000000000010000100110101110
+00011111111000100000110000000000
+11011000101000000000010100001010
+00100000010000000111101010001111
+01101000000000010000100110110000
+00011111111000100000110000000000
+00100000010000000111101010001111
+01011000011000100111010001101100
+00011111111011010111111000000000
+00011111111000011111111001101011
+11100000101000100000000000000000
+11011000110000000000011001010111
+00011000000000000111001000000011
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01101000000000001100011011101010
+11000000100000010111101000111101
+01111001001000000000000000100101
+01000100111101010100000000111101
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101100010
+11011000101000000000010100001010
+00100000010000000111101010001111
+11011000110000000000100101010010
+00100000010000000111101010001111
+00100000001000000111101001010010
+01011000000000000000000000000000
+01100000000000100100011100011001
+00100000001000000111101000101101
+01011000000000000000000000000000
+01100000000000100100011100011001
+00100000001000000111101001000101
+01101000000000001100011011101010
+11000000100000010111101001000000
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101010010
+11011000101000000000010100001010
+00100000010000000111101010001111
+11011000110000000000100101100010
+00100000010000000111101010001111
+01011000000000000000000000000000
+11100000101001000000000000000000
+11100000101000100000000000000000
+01101000000000100100011100011001
+11100000101000100000000000000000
+00011000101000100000010000000000
+01110000000001100100101010000000
+00011000010000100000101000000000
+11011000110000000000011001011010
+00100000010000000111101010001111
+00100000010000000111100100101110
+11011000101000000000010100001010
+00011000000000000111001000000111
+00100000010000000111111010010001
+11100000101000100000000000000000
+01011000000000000000001111111000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01110000000001010000011111000000
+01101000000000001000010100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000001000001111101001111101
+11011000110000000000010100001010
+11011000101000000000010110011010
+00100000001000000111011100001110
+00100000010000000111100000011111
+01101000000000001000010100000111
+00011111111000001111111111111111
+01100000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000011000001000000000000000
+00100000001000000111100001110000
+00011000000000000111001000000100
+00011000110000001000110111111100
+11101000110000100000000000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111101010010001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101011100000000111101
+01101000000000001100010101100011
+00100000001110100100100011011110
+00100000010000000100100011011010
+00100000010000000111010111111011
+00100000001000000111101010011101
+01101000000000001100010101101000
+11000001100000000000000000000000
+01101000000000001100010101100101
+11000001100000000000000000000000
+11011000101000000100011000111010
+00011000000000000000111000001111
+00100000010000000111011010111011
+00011000000010100111111000000000
+00011111111000110111111000000000
+11100000101000010000000000000000
+11011000101000000000011010001010
+11011000110000000100011000111010
+00100000010000000111111010000101
+11011000101000000000010101101010
+11011000110000000000100010000010
+00100000010000000111111001111011
+11011000101000000000010110101010
+00100000010000000111111010011011
+01110000000001011010101000000001
+00100000010000000111101011101000
+01110000010001010110010100000011
+00100000011000000000000000000000
+11011000101000000100011001011010
+11011000110000000000010111001010
+00100000010000000111111001111011
+01110000010001010110100000000011
+01110000010001010110010100000000
+00100000011000000000000000000000
+01101000000000001000100011011101
+11000001100000000000000000000000
+01101000000000001100010101100101
+11000001100000000000000000000000
+11011000101000000000011010001010
+11011000110000000100011000111010
+00100000010000000111111010000101
+11011000101000000000010101101010
+11011000110000000000100011100010
+00100000010000000111111001111011
+11011000101000000000010110101010
+00100000010000000111111010011011
+01110000000001011010101000000001
+00100000010000000111101011101000
+01110000010001010110010100000100
+00100000011000000000000000000000
+11011000101000000000100100100010
+11011000110000000000010111001010
+00100000010000000111111010000101
+01110000000010001101110100000011
+01110000010001010110010100000000
+00100000011000000000000000000000
+01101000000000001100010101100011
+00100000011110100000000000000000
+01101000000000001100010101100101
+00100000011110100000000000000000
+00011111111000001111111010000000
+01100000000000001100010101100101
+11000011100000111000000000000000
+01101000000000010000010100000111
+00100000001110100111101011011001
+00100000001000000111101011100000
+01111001001000000000000000100101
+01000100111101100100000000111101
+00100000010000000111101011110110
+01101000000000001100010101100101
+11000000000000011111101010110011
+11000000000000100111101011001001
+00100000011000000000000000000000
+00100000010000000111101100001000
+01101000000000010000010100000111
+00011111111000001111111111111111
+01100000000000010000010100000111
+11011000110000000000011010001010
+00100000010000000111011100001000
+00100000011000001000000000000000
+00100000001000000111101101011001
+01111001001000000000000000100101
+01000100111101101100000000111101
+01011000000000000000000100000000
+01100000000000010000010100000111
+01101000000000010000010100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010000010100000111
+11011000110000000000011010001010
+00100000010000000111011100001000
+00100000001000001111101011101100
+11011000110000000000010101101010
+11011000101000000000011000101010
+00100000001000000111111001111010
+11011010001000000000011001101010
+11011000101000000000011101101010
+00100000010000000111101111000101
+11011010001000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011100001010
+11011000101000000000010111001010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011001001010
+11011010010000000000011101001010
+11011000101000000000010111101010
+00100000001000000111110000000011
+11011010001000000000011001101010
+11011000101000000000011101001010
+00100000010000000111110010011100
+11011010001000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000100001100010
+11011010010000000000011101101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011000101010
+11011000101000000000011101001010
+00100000010000000111110010011100
+11011000110000000000011101001010
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011101001010
+11011010010000000000011100001010
+11011000101000000000011101001010
+00100000010000000111110010100000
+11011010001000000000011101001010
+11011010010000000000011101101010
+11011000101000000000011101001010
+00100000010000000111110010100000
+11011000110000000000011000101010
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011010001000000000011001001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011100001010
+11011010010000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011000101000000000011100101010
+00100000010000000111110010011100
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011000110000000000011001001010
+11011000101000000000011101101010
+00100000010000000111111010000101
+11011010001000000000011101101010
+00100000010000000111110010100011
+11011010001000000000011101101010
+11011010010000000000011001101010
+11011000101000000000011001101010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011000101010
+00100000010000000111110010111001
+11011010001000000000011100001010
+11011010010000000000011000101010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011100101010
+11011000101000000000011001001010
+00100000001000000111110010111001
+11011010001000000000010110101010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011110001010
+11011000101000000000011100101010
+00100000010000000111110000000011
+11011010001000000000010110101010
+11011010010000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110000000011
+11011010001000000000011001001010
+11011010010000000000011110001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000010101101010
+11011010010000000000011110001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011010010000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110000000011
+11011010001000000000010110001010
+11011010010000000000011110001010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010010000000000011100101010
+11011010001000000000011101001010
+11011000101000000000011110001010
+00100000010000000111110010111001
+11011010001000000000011100101010
+11011010010000000000011101001010
+11011000101000000000011100101010
+00100000010000000111110010100000
+11011010010000000000011100001010
+11011010001000000000011101101010
+11011000101000000000011101001010
+00100000010000000111110010111001
+11011010001000000000011100001010
+11011010010000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110010100000
+11011010001000000000011100001010
+11011010010000000000011110001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011010010000000000010110101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011110001010
+11011000101000000000011001101010
+00100000010000000111110000000011
+11011010001000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000011110001010
+11011010010000000000011100101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011110001010
+11011010010000000000011100001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011000101000000000011000101010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011101101010
+11011000101000000000011000101010
+00100000010000000111110010111001
+11011000110000000000011000101010
+11011000101000000000011110001010
+00100000010000000111111010000101
+11011010001000000000011110001010
+00100000010000000111110010100011
+11011010001000000000011101101010
+11011010010000000000011110001010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011101001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011010010000000000011100001010
+11011000101000000000011001001010
+00100000010000000111110010111001
+11011010001000000000011001001010
+11011010010000000000100001000010
+11011000101000000000011001001010
+00011000000000000010011000000000
+01101000000000001000011001001010
+00101111111011111111111000000000
+00100000010000001111110010011110
+00011010011000100110000000000000
+11011010001000000000011001001010
+00100000010000000111110011001110
+01101000000000001000011001101001
+00101110000011111111111000000000
+01111001001000001111111000000111
+01100000000000001000011001101001
+00100000011000000000000000000000
+00011000101000100001011000000000
+11011000101000000000011100101010
+00100000010000000111111010011011
+00011000000000000111111000000000
+01100000000000100000011101001010
+01110000000001110010101000000001
+11011000101000000000011010101010
+00100000010000000111111010011101
+11011000110000000000100001000010
+11011000101000000000011011101010
+00100000010000000111111010000101
+00011010001000100000110000000000
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011000110000000000011100001010
+00100000010000000111110011011000
+00100000001110100111101111111100
+11011010001000000000011100001010
+11011010010000000000011100101010
+00100000010000000111110011011011
+11011010001000000000011011101010
+11011010010000000000011010101010
+00100000010000000111110011011011
+11011010001000000000011100001010
+11011010010000000000011011101010
+00100000010000000111110011010100
+00100000001000010111101111101110
+11011010001000000000011011101010
+11011010010000000000011100001010
+00011010001000100000101000000000
+00100000010000000111110011001100
+11011010001000000000011100101010
+11011010010000000000011010101010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111101111010011
+11011010001000000000011100001010
+11011010010000000000011011101010
+00011010001000100000101000000000
+00100000010000000111110011001100
+11011010001000000000011010101010
+11011010010000000000011100101010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111101111010011
+11011010001000000000011010101010
+00011001011000100000101000000000
+00100000010000000111110000101100
+11011010001000000000100001000010
+00011001011000100010010000000000
+00011001011000100000101000000000
+00100000001000000111110010111001
+00011000101000100001011000000000
+00011000000000000111000000000000
+11011000101000000000011010101010
+00100000010000000111111010011101
+11011000101000000000100111110001
+00100000010000000111111010011101
+00011010001000100000110000000000
+01110000000010011111000100000000
+01011000000000000000000000000000
+00100000010000000111110010010110
+00011010010000100000110000000000
+00100000010000000111110010011010
+00011000000000000000111000000000
+11011000101000000000011010101010
+11011000010000000000100111110001
+00011000111000100010010000000000
+00011010010010111111111000000000
+10011000010000001010010000000000
+00011000000000000000010000000000
+00011000000000000010011000000000
+11101000101000100000000000000000
+10011000000000000010001000000000
+11101010010000100000000000000000
+00011010011000100111000000000000
+10011101111011111111111000000000
+10011010001000001111111000000000
+10011000010000001111111000000000
+11100000101000100000000000000000
+00011111111011110000010000000000
+00011010011000001010011000000001
+00101010011000011111111000001000
+00100100001000001111110000010111
+00011000010000100111111000000000
+11100000101000100000000000000000
+00011000101000001000101111100000
+00011000111000001000111000000001
+00101000111000011111111000001000
+00100100001000001111110000010001
+11011010001000000000011010101010
+00011001011000100000101000000000
+00100000001000000111110000101100
+01111001001000000000000000100101
+01000100111101110100000000111101
+00011000101000100001011000000000
+00011010001000100110000000000000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011010001000001000110000101100
+00100000010000000111111010000001
+00100000010000000111111001111101
+00011010010000100010001000000000
+00100000010000000111110010100011
+11011010010000000000011011101010
+00011110000000100010001000000000
+00011001011000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000110000
+00100000010000000111111010000111
+00100000010000000111111010011000
+00011010010000100010001000000000
+00100000010000000111110010100011
+11011010010000000000011011101010
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000100000
+00100000010000000111111001111101
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000111000
+00100000010000000111111010000001
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000100100
+00100000010000000111111001111101
+00011110000000001000110000110100
+00100000010000000111111001111101
+00011110000000001000110000110100
+00100000010000000111111001111110
+00011110000000001000110000100000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000101100
+00100000010000000111111001111101
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000100000
+00100000010000000111111001111110
+00011110000000001000110000101000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000110000
+00100000010000000111111010000001
+00100000010000000111111010000001
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011110000000001000110000100100
+00100000010000000111111001111110
+00011110000000001000110000101100
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000110100
+00100000010000000111111001111101
+00011110000000001000110000100000
+00100000010000000111111001111101
+00100000010000000111111010011000
+00011110000000001000110000110000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000111000
+00100000010000000111111010000001
+00100000010000000111111010011000
+00011110000000001000110000100100
+00100000010000000111111001111101
+00100000010000000111111010011000
+00011110000000001000110000110100
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000001000000111110010111001
+00011000000000000111001000100000
+11011000101000000000100111110001
+10011000101000001000101000000000
+00100000001000000111111011001101
+00011000000000000111001000001000
+00100000001000000111011110011101
+00011010001000100010010000000000
+00100000001000000111110000000011
+00011000000000000111001000001000
+00100000001000000111011100101110
+00100000010000000111110010011110
+00011000101000100010001000000000
+00100000001000000111110010100100
+00100000010000000111110011010001
+00101010011011111111111000000000
+00100000001000001111110010101101
+11011010010000000000100001000010
+00011010001000100010011000000000
+00011010001000001010001111100000
+00100000010000000111110011010100
+00100100011000010000000000000000
+00011010011000100010001000000000
+00100000001000000111110010110101
+00100000010000000111110010110101
+00011010001000100010011000000000
+00011010001000001010001111100000
+11011010010000000000100001000010
+00100000010000000111110011010100
+00100100011000010000000000000000
+00011010011000100010001000000000
+00100000001000000111110010110101
+00011010001000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000001000000111110011001100
+00100000010000000111110011001100
+00100000001000001111110011000011
+00011000101000001010001111100000
+11011010010000000000100001000010
+00100000010000000111110011010100
+00100100011000010000000000000000
+11011010010000000000100001000010
+00011000101000001010001111100000
+00011010001000100000101000000000
+00100000001000000111110011001100
+00011000101000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000010000000111110010011110
+00100000011000001000000000000000
+00011000101000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000001000000111110010011110
+00011000000000000111001000001000
+00100000001000000111011100111100
+00011000000000000111001000001000
+00011010001000001010001000011100
+00100000001000000111011101001011
+00011000000000000111001000001000
+00011000000000000010011000000000
+00100000001000000111011101011001
+00011000000000000111001000001000
+00011010001000001010001000011100
+00011010010000001010010000011100
+00100000001000000111011100100011
+11101000110001000000000000000000
+00100100011110100000000000000000
+00100000001000000111011100010001
+00011010001000100110000000000000
+00011110000000100010001000000000
+11101010001000001000000000000000
+00101111111011111111111000000000
+00100000011000001000000000000000
+00100000010000000111110011001110
+11101010010000001000000000000000
+00101111111011000000000000000000
+00100000001000001111110011101011
+11011010001000000000100001000010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00011010010000001010010111100000
+00011010010000001010001000100000
+00011000000000000111001000001001
+00100000010000000111011101001011
+00100000001000000111110011011100
+00100000010000000011110100111110
+00100000011101011000000000000000
+00100000010000000111110011110110
+00100000010000000111110101110010
+00100000001000000111110100101010
+00100000010000000111110101000100
+00100000001000000111110101100000
+01111001001000000000000000100101
+01000100111101111100000000111101
+01101000000000001100011100010101
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110010011101000
+01101000000010001100011100010101
+00100000010000000110010011111101
+00100000000000000000000001100100
+01101000000010001100011100010101
+00100000010000000110010011011111
+00100000001000000111110100000010
+01111001001000000000000000100101
+01000100111110000100000000111110
+01101000000000001100011100010101
+11000001011111111000000000000000
+00011111111000100000010000000000
+00100000010000000110010011110101
+00100100001000001111110100010101
+00100000010000000111110100011111
+01101000000000010100011100001011
+01111001001000000111111000001100
+01100000000000010100011100001011
+01101000000000001100011100000010
+11000001000000000000000000000000
+01110000010001110000001000000000
+01101000000000001100011100010100
+01100000000000001100011100000001
+00100000010000000111110100100110
+01110000000010011011110100101100
+00100000001000000111110110000110
+01101000000000010100011100001011
+01111001001111111111111000001100
+01100000000000010100011100001011
+01101000000000001100011100000010
+11000001000000001000000000000000
+01110000010001110000001000000001
+01110000010001110000000100000000
+00100000010000000111110100101000
+01110000000010011011110100101101
+00100000001000000111110110000110
+01101000000000001100011100000001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100000001
+00100100011110100000000000000000
+01110000000010011011110100010000
+00100000001000000111110110000110
+11011000111000000000000000000111
+00100000001000000011110100000110
+11011000111000000000000000000111
+00100000001000000011110100001010
+01101000000000001100011100001110
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110010011101000
+00100000001000000111110100110011
+01101000000000010100011100001011
+01111001001111111111111000001101
+01100000000000010100011100001011
+01110000010001110000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001110
+01100000000000010100011100001011
+01101000000010001100011100001110
+00100000001000000110010011111101
+01101000000000010100011100001011
+01111001001000000111111000001110
+01100000000000010100011100001011
+01110000010001110000000000000000
+01101000000010001100011100001110
+00100000001000000110010011111111
+01110000010001110001001111111111
+01101000000000010100011100001011
+01111001001000000111111000001101
+01100000000000010100011100001011
+01110000010001110000000000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110001100000000111110
+01101000000000001100011100010011
+00100000011110100000000000000000
+01101000000000001100011100000000
+11000001000000000000000000000000
+11011000111000000000000000001001
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000000001100011100000000
+11000000000000010111110101010011
+00100000010000000111110100111000
+01110000010001110000000000000010
+01101000000000010100011100010001
+00100000001000000111110101011010
+00100000010000000111110100110011
+01101000000000001100011100010011
+11000000011111111111110101011000
+00011111111000001111111111111111
+01100000000000001100011100010011
+01110000010001110000000000000011
+01101000000000010100011100001111
+11011000111000000000000000001001
+00100000001000000111111011010100
+01011000000000000001000000000000
+00011111111100000111111000000000
+10011010010000001010010000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110010100000000111110
+11011010001000000000000000000000
+01101000000010100100011100000011
+00011100010000100010010000000000
+00011010010000100111111000000000
+10011000010001100111110000000000
+00100100010000010111110101011100
+00011010010000100111111000000000
+00011000010000001000010010100000
+00011000010000001000010010100000
+10011000010001100111110000000000
+00100100001000010111110101110101
+00011010001000001010001000000001
+00011010001000010111111000001111
+00100100001110100111110101101000
+11011010001000000000000000000000
+00100000010000000111110101111101
+00011100010000100111111000000000
+01100000000000100100011100000011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110011100000000111110
+00011010001000100111111000000000
+00100000011110100000000000000000
+00011000010000001000010101100000
+00011000010000001000010101100000
+01111001001111111000010000011100
+01100000000010100100011100000011
+00011111111000001111111001010000
+01100000000000001000100110111101
+00100000001000000111110110000110
+01110000010001101110111000000001
+01101000000000001100011011101111
+00100100001110100111110110000001
+00100000011000000000000000000000
+01110000010001101110111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110100100000000111110
+00100000010000000111110110000000
+00011010001000100111111000000000
+01100000000000100000100110110101
+11011010001000000100011011110000
+00100000010000000111111110001000
+01101000000000100000100110110101
+00011111111000100010001000000000
+00100000001000000111110110000100
+01111001001000000000000000100101
+01000100111110101100000000111110
+00100000010000000111110110000000
+00011010001000100111111000000000
+01100000000000100000100110110101
+11011010001000000100011011111000
+00100000010000000111111110001000
+01101000000000100000100110110101
+00011111111000100010001000000000
+00100000001000000111110110000100
+01011000000000000000000000000000
+01100000000001000100011011111000
+01100000000001000100011011110000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110110100000000111110
+01101000000000001100001001110001
+00100100011110100000000000000000
+11011010001000000100011011111000
+00100000010000000111111110100010
+00100000011110100000000000000000
+01110000000010011011010000000000
+00100000010000000111110110101010
+01101000000000001000100110110100
+00100000001110100111110110011110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110111100000000111110
+00100000010000000111110110000000
+11011010001000000100011011111000
+00100000010000000111111110010101
+00011111111000100000010000000000
+00100000010000000111110110000100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000000001111110111110000
+11000000000000010111110111110101
+11000000000000011111110111111011
+11000000000000111111111000000000
+11000000000001000111111000000001
+11000000000001001111111000000010
+11000000000001011111111000000101
+11000000000001100111111000000110
+11000000000001101111111000000111
+11000000000001110111111000001101
+11000000000001111111111000010010
+11000000000010000111111000011000
+11000000000010101111110100111110
+11000000000010100111110100111000
+11000000000010011111110100101111
+11000000000010110111111000100001
+11000000000010111111111000100100
+11000000000011000111111000100110
+11000000000011001111111000101011
+11000000000011011111111000101001
+11000000000011100111111000111011
+11000000000011110111111000111101
+01100000000000001000100110111101
+01111001001000000000000000100101
+01000100111111000100000000111111
+00100000010000000101100011000101
+00100100001110100111110111100101
+01101000000000001000100110111101
+11000101100001001111110111100000
+11000000000000101011111110101110
+11000000000000110011111110111101
+11000000000001010111111000000011
+11000000000000100111110111111101
+11000000000010001111111000011101
+11000000000011101111110111100111
+11000000000011111110010000101110
+11000000000100000110010000110010
+11000000000010010111110111011110
+11000000000100001111110111011011
+00100000011000000000000000000000
+00100000010000000101100100000011
+01110000000000000111110101000001
+00100000001000000101010110110100
+01110000000010011011110100101111
+00100000001000000100101111010110
+01100000000000001000100110111101
+00100000010000000011001010010010
+00100000001000101111110111100101
+00100000010000000011001010011010
+00100100011000101000000000000000
+01110000000010011011010000000001
+00100000001000000111110110010000
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100100011101001000000000000000
+01110000010001011111010000000000
+01110000000000000111110000010011
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000110
+01100000000000010100011100001011
+01110000010000010011001100000011
+00100000011000000000000000000000
+01110000010001110000100100000000
+01110000010000010011001100000000
+01101000000000010100011100001011
+01111001001111111111111000000110
+01100000000000010100011100001011
+00100000011000000000000000000000
+01110000010000100111000100000101
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000111111101000000010
+00100000001000000011111110100001
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000010000111111111100000001
+01110000010001010010000000000000
+01101000000000010100011100001011
+01111001001000000111111000001011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001011
+01100000000000010100011100001011
+01110000010000111111111100000000
+00100000011000000000000000000000
+01110000010000111111111100000001
+01110000010001010010000000000001
+01101000000000010100011100001011
+01111001001000000111111000001011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001011
+01100000000000010100011100001011
+01110000010000111111111100000000
+00100000011000000000000000000000
+01011000000000000000000000001010
+01100000000000010000001110010000
+01110000000010011011110100100010
+00100000001000000100101111010110
+01110000010000111111100100000001
+01110000010000100111000100011011
+00100000011000000000000000000000
+01110000010000111111100100000001
+00100000011000000000000000000000
+01110000010000111111100100000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01110000000010011011110101001011
+00100000001000000100101111010110
+01111001001000000000000000100101
+01000100111111001100000000111111
+01101000000000010100001010001100
+00100000010000000111111101101001
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110011110100
+01101000000000001100011100010101
+11000000011111111111111000111000
+00011111111000100000010000000000
+00100000010000000110010011011111
+00100000010000000111110100110011
+00100000010000000111110110011010
+00100000001000000011110000000100
+01110000010001011001010100000001
+00100000011000000000000000000000
+00011000000000000000111000000100
+00100000001000000111111011010011
+01101000000000001100011100001011
+11000100000001100000000000000000
+11000100000000111000000000000000
+00100000001000000111111000111101
+00011111001001100111110000000000
+00100000011000101000000000000000
+00011111111000110111111000000000
+11000010000000000111111001000101
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100111011111
+01100000000011000000100111000110
+00011001011000100111111000000000
+01100000000000100000100111001110
+00011010001000100111111000000000
+01100000000000100000100111010010
+00011010010000100111111000000000
+01100000000000100000100111010110
+00011010011000100111111000000000
+01100000000000011000100111011010
+00011000110000100111111000000000
+01100000000000010000100111011101
+00100000011000000000000000000000
+01101000000011000000100111000110
+01101000000000100000100111001110
+10011000000000000001011000000000
+01101000000000100000100111010010
+10011000000000000010001000000000
+01101000000000100000100111010110
+10011000000000000010010000000000
+01101000000000011000100111011010
+10011000000000000010011000000000
+01101000000000010000100111011111
+10011000000000000000101000000000
+01101000000000010000100111011101
+10011000000000000000110000000000
+00100000011000000000000000000000
+01101000000000010000100111011111
+00011111111000100000101000000000
+00100000011000000000000000000000
+01101000000000010000100111011101
+00011111111000100000110000000000
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100111011111
+00100000011000000000000000000000
+00011000110000100111111000000000
+01100000000000010000100111011101
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100110111011
+00011000110000100111111000000000
+01100000000000010000100110111001
+00100000011000000000000000000000
+01101000000000010000100110111011
+00011111111000100000101000000000
+01101000000000010000100110111001
+00011111111000100000110000000000
+00100000011000000000000000000000
+00100000010000000111111010000101
+00100000010000000111111010000101
+00100000001000000111111010000101
+00100000010000000111111010000001
+11101000110000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00100000010000000111111010000111
+00100000010000000111111010000001
+00100000010000000111111010000001
+00100000010000000111111010000001
+00100000001000000111111010000001
+00011100010000100111111000000000
+00011111111000001111111000010000
+00011111111000001111111000010000
+00011100010000100000010000000000
+10011000010001100111110000000000
+00100000001000010111111010001100
+00100000011000000000000000000000
+00011000000000000111001000000011
+00011000000000000111111000000000
+11100000101001000000000000000000
+11000010000000000111111010010010
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+00011000000000000111001000000100
+00100000001000000111111010010001
+00011000000000000111001000001000
+00100000001000000111111010010001
+00011111001000100111111000000000
+00100000011110100000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+11000010000000000111111010100010
+00100000011000000000000000000000
+11011111001000000000000000100000
+11011000101000000000100111100001
+00100000001000000111111010011111
+11101010011000100000000000000000
+11101010001010100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00011010001000001010001000000100
+00011010011000001010011000000100
+11000010000000000111111010101000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111010100000000111111
+00011111001000100111111000000000
+00011111111001100111110000000001
+00100000011000010000000000000000
+10011010001000001010010000000000
+00011010010000001010010111111111
+00011111001000110111001000000000
+11101010001010001000000000000000
+11101010010000001000000000000000
+11100010001000001000000000000000
+11100010010010001000000000000000
+00011010010000001010010111111111
+00011010001000001010001000000001
+11000010000000000111111010111000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010111111010000001
+00100000011000101000000000000000
+00100000001000010111111011000010
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010111111001111110
+00100000011000101000000000000000
+00100000001000010111111011000111
+00011111001000001111001000000100
+00100000001000000111111011001101
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000111111011001111
+00100000011000000000000000000000
+01011000000000000000000000000000
+00011100010000110000010000000000
+01100000000010100100000100110100
+11011000101000000100001000111101
+10011000000000000000010000000000
+00011000111000111111111000000000
+10011000101000001000101000000000
+11100000101010010000000000000000
+01111001001000000000000000100101
+01000100111111011100000000111111
+00100000011000000000000000000000
+11011001011000000000100000000000
+00011001011100000001011000000000
+10011001011000001111111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111100100000000111111
+01101000000010100100000100110100
+00011100010000110111111000000000
+01100000000000100100000100110100
+10011000010001100111110000000000
+00100100010000010111111011011110
+10011000010001100001011000000000
+00011001011000100000010000000000
+11011000110000000100001000111101
+00011000110000100000101000000000
+11011111001000000000000000010000
+11101000110000010000000000000000
+10011000010001100111111000000000
+00100000001000010111111011110010
+00011000000000000111111000000000
+11100000101000010000000000000000
+11000010000000000111111011101110
+11011000110000000100001000111101
+00011000111000111111111000000000
+10011000110000001000110000000000
+11101000110000010000000000000000
+00100000011000000000000000000000
+10011000010000001000010000000000
+00011000010000100111001000000000
+01011000000000000000111010100110
+10011111001001100111111000000000
+00100000011000010000000000000000
+00011111111001100111111000000000
+00011000010100010000010000000000
+00011000010000001000010000000001
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000010000000111111100000110
+00100000001000000111111100010000
+01111000010101000111110000000000
+10011000010001100111111000000000
+00100000001000010111111100001011
+01111000001101000111110000000000
+00011111111001100111111000000000
+11000100000001111000000000000000
+11011000010111110000111010100110
+10011000010000001111111000000000
+01111001001111111111111001000000
+00100000011000000000000000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+11011000010000000000111010100110
+10011000010011111111111000000000
+10011000110000001111111000000000
+00100000011000000000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+01101000000010011100001000001111
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111000010000000000
+00100000011000000000000000000000
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+00011000010000100010011000000000
+11101000011000001000000000000000
+00100000010000000111111100110001
+00011010011000100000010000000000
+00100000010000000111111101100010
+11011010010000000000000000001010
+10011010010011111111111000000000
+10011000010000001111111000000000
+00011111111000100000010000000000
+11000010000000000111111100100110
+00100000011000000000000000000000
+11011000010000000000000000111010
+10011000010001100111110000000000
+00100100001000010111111100111010
+11011000010000000000000001100001
+10011000010001100111110000000000
+00100000001000010111111100111101
+11011000010000000000000000110111
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000000110000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000001010111
+10011000010001100111111000000000
+00100000011000000000000000000000
+00011000010000100110000000000000
+01011000000000000000000111111111
+00011000000000000010010000000000
+00011111111010010010001000000000
+00011010001000110010001000000000
+10011010001000101010001000000000
+00101010001011111111111000000000
+01111001001000001111111000001001
+00011000010000110000010000000000
+00101111111011111111111000000000
+01111001001000001000010000000111
+00011111111000110111111000000000
+00011010010000001010010000000001
+00101010010000000000111000000000
+00100100001000001111111101000011
+11100000101010001000000000000000
+11000010000000000111111101000011
+00011110000000100000010000000000
+00100000011000000000000000000000
+00100000011110101000000000000000
+00100000001000000111111101010011
+11101010001000001000000000000000
+11101010010010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111111101010101
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010000001111111000000000
+10011000010001100000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011111001000000000001000000000
+11011000101000000100000000000000
+00100000001000000111111010010001
+00100000011110100000000000000000
+00011111111000100111101000000000
+01101000000100010000000100001110
+00100100001110100111111101101011
+00100000011000000000000000000000
+01101000000100010000000001011000
+00011111111000100000011000000000
+00100000011000000000000000000000
+01110000100000100000001100000001
+00100000011000000000000000000000
+01100000000100010000001000000101
+01101000000100001000001000000011
+01111001001000000111111000000100
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000111
+01101000000100001000001000000011
+01111001001000000111111000000110
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000101
+01110000100000100000001100110000
+00100000011000000000000000000000
+01101000000100001000000001000011
+01111001001111111111111000000100
+01100000000100001000000001000011
+00100000011000000000000000000000
+01101000000100010000000100001110
+11011000010000000000001000000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111101100000000111111
+11101010001011000000000000000000
+00011000010000010111111011111111
+00100100001110100111111110001111
+00011000010011001111111000000000
+11100010001001000000000000000000
+00011010001000001010001000000111
+11101010001000001000000000000000
+00100100001110100011101100110001
+01101000000000001000100110111101
+11100010001000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111110100000000111111
+11011111001000000000000000001000
+11101010001001000000000000000000
+00100000011110100000000000000000
+11101010001000001000000000000000
+00100100001110100111111110011111
+00011010001000001010001000000001
+11000010000000000111111110011010
+00100000001000000011101100110001
+11011000010000000000000000000000
+11100010001010001000000000000000
+00100000011000000000000000000000
+11101010001001000000000000000000
+00100000011000000000000000000000
+11101010001000001000000000000000
+00100000011000000000000000000000
+11101010001000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+01101000000000001000000000000110
+11000010000000000111111110101001
+00011000010000001000010000000001
+11000010000000000111111110101001
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
Index: ble fast connect receive/output/eeprom.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/eeprom.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/eeprom.dat	(working copy)
@@ -0,0 +1,3276 @@
+00
+02
+aa
+55
+6a
+09
+c5
+12
+80
+07
+c0
+01
+80
+14
+c0
+43
+02
+28
+c0
+45
+01
+f1
+c0
+45
+82
+4a
+c0
+5a
+00
+34
+20
+20
+3b
+31
+c0
+01
+80
+ce
+c0
+0c
+82
+20
+c0
+15
+80
+72
+c0
+17
+00
+c5
+c0
+19
+00
+1d
+c0
+19
+80
+b2
+c0
+1f
+00
+93
+c0
+4a
+81
+ea
+c0
+6c
+00
+5a
+c0
+6c
+81
+bb
+c0
+6e
+01
+31
+c0
+7b
+80
+85
+20
+20
+3b
+31
+d8
+e0
+00
+0e
+20
+40
+7e
+e2
+24
+5a
+00
+19
+20
+40
+00
+1a
+20
+40
+00
+93
+20
+20
+30
+1b
+58
+00
+00
+0e
+d8
+e0
+00
+0e
+20
+20
+7e
+d4
+68
+00
+c4
+6b
+c0
+00
+cc
+bb
+c0
+01
+00
+2c
+c0
+01
+cc
+da
+c0
+02
+4c
+e8
+c0
+02
+cc
+ed
+c0
+03
+4c
+f2
+c0
+03
+cd
+10
+c0
+04
+4d
+27
+c0
+04
+cd
+2d
+c0
+05
+4d
+32
+c0
+05
+cd
+35
+c0
+06
+4d
+39
+c0
+06
+cd
+64
+20
+20
+3b
+31
+59
+00
+03
+02
+60
+02
+44
+dc
+58
+01
+00
+10
+e0
+a1
+80
+00
+68
+03
+44
+dd
+60
+03
+44
+6c
+18
+00
+04
+0b
+20
+20
+4f
+89
+68
+00
+c1
+32
+20
+3a
+3d
+4b
+c0
+01
+c0
+0c
+c0
+04
+80
+3c
+c0
+05
+59
+dd
+c2
+83
+5d
+ca
+c2
+83
+c0
+0c
+20
+60
+00
+00
+20
+75
+80
+00
+20
+40
+74
+fd
+df
+20
+00
+87
+d8
+a0
+49
+b2
+d8
+c0
+4a
+c1
+20
+40
+7e
+cd
+20
+40
+75
+c9
+70
+80
+81
+00
+20
+40
+73
+a5
+58
+00
+73
+7c
+60
+01
+42
+8c
+58
+00
+74
+8c
+60
+01
+42
+8e
+58
+00
+73
+65
+60
+01
+42
+98
+58
+00
+73
+7a
+60
+01
+42
+94
+58
+00
+73
+71
+60
+01
+42
+90
+58
+00
+00
+bc
+60
+01
+42
+96
+20
+40
+01
+c6
+58
+00
+72
+ef
+60
+01
+42
+8a
+58
+00
+74
+f4
+60
+01
+42
+9a
+20
+40
+01
+01
+70
+42
+12
+00
+70
+48
+c7
+00
+20
+20
+72
+ad
+68
+00
+c7
+55
+c0
+00
+00
+5d
+20
+20
+72
+b1
+70
+47
+56
+01
+70
+47
+5b
+01
+20
+40
+73
+82
+58
+00
+47
+71
+20
+40
+73
+8e
+20
+40
+7d
+44
+68
+00
+c7
+13
+24
+3a
+00
+62
+70
+43
+f9
+01
+58
+00
+00
+00
+60
+02
+47
+29
+20
+40
+73
+82
+68
+01
+47
+48
+60
+01
+47
+4a
+20
+20
+00
+6c
+68
+01
+47
+48
+60
+01
+47
+4a
+70
+48
+bb
+00
+70
+43
+f9
+01
+58
+00
+47
+63
+20
+20
+73
+8e
+68
+03
+03
+04
+60
+03
+03
+72
+68
+03
+03
+72
+68
+0b
+45
+2c
+98
+46
+7c
+00
+20
+22
+cb
+b4
+20
+20
+00
+79
+68
+03
+03
+72
+68
+0b
+4b
+f2
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+03
+03
+72
+60
+03
+4b
+4b
+70
+43
+f7
+1c
+58
+00
+01
+00
+60
+01
+45
+39
+70
+43
+f9
+00
+70
+4b
+51
+01
+20
+20
+3e
+69
+20
+40
+7d
+80
+da
+20
+46
+f8
+20
+40
+7f
+95
+1f
+e2
+04
+00
+20
+40
+7d
+84
+18
+42
+7e
+00
+20
+7a
+00
+00
+c0
+0b
+00
+8e
+20
+20
+7d
+b3
+70
+43
+f9
+01
+70
+42
+71
+1b
+68
+03
+4b
+4b
+60
+03
+45
+2c
+20
+60
+00
+00
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+80
+99
+c0
+0d
+80
+98
+20
+60
+00
+00
+20
+20
+01
+df
+68
+00
+cb
+f8
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cb
+f8
+c0
+00
+80
+a0
+c0
+00
+00
+a9
+20
+60
+00
+00
+58
+00
+00
+27
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+20
+4b
+d6
+58
+00
+00
+60
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+20
+4b
+d6
+68
+00
+c4
+6b
+c0
+09
+00
+b5
+20
+20
+4c
+2b
+68
+01
+44
+f8
+60
+01
+44
+6c
+68
+00
+c5
+0b
+1f
+e2
+72
+00
+d8
+c0
+45
+0c
+20
+40
+7e
+cd
+20
+20
+4f
+81
+1a
+62
+7e
+00
+c0
+16
+f4
+75
+c0
+08
+74
+7a
+c0
+0a
+73
+34
+c0
+0a
+80
+ec
+1f
+e1
+04
+0f
+1f
+e1
+7e
+f0
+c0
+28
+72
+fd
+20
+60
+00
+00
+68
+01
+4b
+df
+60
+01
+47
+4a
+58
+00
+47
+7f
+20
+40
+73
+8e
+70
+4b
+51
+01
+70
+47
+5b
+01
+70
+4b
+52
+21
+20
+40
+4b
+c2
+20
+60
+00
+00
+68
+00
+80
+05
+1f
+e0
+fe
+01
+60
+00
+80
+05
+20
+40
+4b
+51
+20
+40
+00
+d5
+78
+54
+fc
+00
+20
+60
+00
+00
+68
+00
+cb
+52
+c0
+10
+80
+da
+c0
+12
+80
+e4
+c0
+13
+00
+eb
+20
+60
+00
+00
+58
+00
+00
+1a
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+40
+4b
+d6
+20
+60
+00
+00
+70
+4b
+52
+26
+70
+09
+bd
+02
+20
+40
+4b
+d6
+68
+01
+47
+0b
+79
+20
+7e
+09
+60
+01
+47
+0b
+20
+60
+00
+00
+20
+60
+00
+00
+58
+00
+00
+00
+60
+03
+45
+2c
+70
+4b
+f8
+02
+70
+4b
+51
+00
+70
+42
+12
+00
+70
+48
+c7
+00
+70
+44
+b2
+00
+70
+48
+c6
+00
+70
+48
+c0
+00
+20
+40
+01
+06
+68
+01
+47
+48
+60
+01
+47
+4a
+68
+00
+c7
+43
+c0
+80
+73
+69
+20
+40
+00
+6c
+70
+47
+46
+00
+58
+00
+00
+00
+60
+01
+02
+86
+58
+00
+00
+00
+60
+01
+02
+88
+20
+20
+73
+63
+70
+4b
+60
+00
+58
+00
+4b
+65
+60
+01
+4b
+61
+60
+01
+4b
+63
+20
+60
+00
+00
+20
+20
+01
+01
+78
+54
+7c
+00
+68
+00
+cb
+60
+2f
+e1
+fe
+06
+20
+60
+80
+00
+78
+34
+7c
+00
+68
+01
+4b
+63
+1f
+e2
+0a
+00
+18
+42
+0c
+00
+20
+40
+7e
+cd
+68
+00
+cb
+60
+1f
+e0
+fe
+01
+60
+00
+cb
+60
+58
+00
+4b
+63
+20
+20
+01
+15
+1f
+e2
+22
+00
+d8
+40
+4b
+dd
+ea
+21
+00
+00
+1f
+e0
+fe
+14
+98
+46
+7c
+00
+24
+21
+01
+1c
+58
+00
+4b
+65
+e2
+21
+00
+00
+20
+60
+00
+00
+78
+54
+7c
+00
+68
+00
+cb
+60
+20
+7a
+00
+00
+78
+34
+7c
+00
+68
+00
+cb
+60
+1f
+e0
+ff
+ff
+60
+00
+cb
+60
+68
+01
+4b
+61
+60
+01
+4b
+dd
+58
+00
+4b
+61
+20
+40
+01
+15
+68
+01
+4b
+dd
+20
+60
+00
+00
+78
+54
+7c
+00
+68
+00
+cb
+60
+20
+7a
+00
+00
+78
+34
+7c
+00
+68
+01
+4b
+61
+20
+60
+00
+00
+68
+00
+c7
+a9
+20
+7a
+00
+00
+20
+40
+73
+af
+24
+34
+7d
+28
+20
+40
+7d
+26
+78
+54
+7c
+00
+68
+01
+4b
+df
+60
+01
+47
+4a
+68
+00
+cb
+51
+c0
+00
+00
+6c
+20
+40
+74
+de
+20
+21
+01
+55
+68
+01
+47
+b6
+60
+01
+47
+c0
+70
+47
+c2
+00
+18
+00
+0e
+00
+68
+01
+47
+b8
+1f
+e3
+04
+00
+60
+09
+47
+b8
+1f
+e1
+7e
+01
+68
+09
+47
+c0
+18
+41
+22
+01
+18
+43
+04
+00
+60
+09
+47
+c0
+9a
+22
+fc
+00
+24
+42
+81
+59
+68
+00
+c7
+a9
+68
+08
+c7
+c2
+18
+40
+84
+01
+60
+08
+c7
+c2
+18
+42
+0e
+00
+98
+e2
+fc
+00
+24
+22
+81
+41
+68
+01
+47
+b6
+60
+01
+47
+b8
+20
+60
+00
+00
+58
+00
+00
+00
+60
+01
+47
+b6
+60
+01
+47
+b8
+20
+60
+00
+00
+1a
+22
+7e
+00
+20
+3a
+01
+77
+18
+e2
+7e
+00
+c0
+00
+01
+7d
+c0
+00
+81
+84
+c0
+01
+01
+8b
+c0
+01
+81
+92
+e8
+40
+80
+00
+20
+7a
+00
+00
+60
+00
+c7
+ba
+18
+40
+84
+01
+60
+09
+47
+bb
+68
+01
+47
+bb
+ef
+e8
+80
+00
+18
+42
+72
+00
+98
+40
+84
+00
+60
+09
+47
+bb
+1f
+e2
+04
+00
+20
+40
+01
+07
+68
+00
+c7
+ba
+1f
+e0
+ff
+ff
+60
+00
+c7
+ba
+24
+22
+81
+65
+20
+20
+01
+71
+20
+40
+01
+2b
+24
+74
+00
+00
+78
+54
+7c
+00
+70
+09
+bd
+12
+20
+40
+4b
+d6
+20
+20
+73
+5f
+18
+e2
+7e
+00
+c0
+00
+01
+99
+c0
+00
+81
+a0
+c0
+01
+01
+a7
+c0
+01
+81
+ae
+20
+20
+01
+60
+70
+4b
+5e
+01
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5e
+02
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5d
+01
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5d
+02
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5e
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5e
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5d
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+70
+4b
+5d
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+b5
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+60
+da
+20
+00
+00
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+01
+b6
+1a
+21
+7e
+ff
+20
+60
+00
+00
+20
+40
+73
+1f
+20
+40
+73
+13
+20
+20
+72
+fe
+68
+00
+c7
+5a
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+5a
+24
+7a
+00
+00
+68
+00
+c7
+56
+c0
+00
+80
+65
+20
+20
+74
+8a
+70
+80
+81
+04
+68
+12
+00
+78
+79
+20
+7e
+07
+60
+12
+00
+78
+70
+80
+43
+01
+58
+00
+40
+00
+60
+11
+00
+54
+58
+00
+40
+30
+60
+11
+00
+56
+58
+00
+1f
+00
+60
+11
+00
+5a
+58
+00
+1f
+10
+60
+11
+00
+5c
+58
+00
+40
+00
+60
+11
+00
+58
+58
+00
+1f
+00
+60
+11
+00
+5e
+60
+11
+00
+60
+58
+00
+01
+a0
+60
+11
+00
+52
+68
+11
+00
+50
+79
+3f
+fe
+0f
+60
+11
+00
+50
+70
+80
+62
+81
+20
+60
+00
+00
+68
+03
+83
+0b
+60
+03
+cb
+ea
+70
+4b
+e7
+02
+70
+4b
+e8
+29
+70
+4b
+e9
+08
+68
+11
+00
+5e
+1f
+e2
+14
+00
+df
+20
+00
+0b
+d8
+c0
+4b
+e7
+20
+40
+63
+3b
+20
+20
+63
+1f
+68
+12
+00
+78
+68
+1a
+00
+7c
+98
+41
+fe
+00
+1f
+e4
+7e
+00
+9a
+21
+7e
+00
+60
+12
+00
+70
+20
+60
+00
+00
+60
+08
+80
+17
+18
+40
+a2
+00
+20
+40
+3a
+13
+58
+00
+05
+00
+20
+40
+3b
+35
+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
+7f
+68
+00
+cb
+51
+c0
+00
+02
+11
+68
+00
+c2
+80
+c2
+80
+02
+09
+c2
+80
+82
+0d
+c2
+81
+02
+11
+c2
+81
+82
+15
+c2
+82
+02
+19
+70
+89
+56
+f0
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+df
+20
+40
+39
+f5
+70
+89
+55
+df
+20
+60
+00
+00
+70
+89
+56
+ff
+20
+40
+39
+f5
+70
+89
+55
+df
+20
+60
+00
+00
+70
+89
+56
+ce
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+cb
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+c0
+70
+89
+55
+d8
+20
+60
+00
+00
+20
+40
+49
+85
+20
+40
+02
+26
+20
+40
+4a
+6d
+68
+00
+c1
+32
+c0
+05
+5d
+8e
+20
+60
+00
+00
+20
+36
+81
+f6
+20
+20
+49
+94
+20
+30
+82
+39
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+68
+00
+cb
+51
+c0
+00
+02
+47
+68
+00
+c2
+80
+c2
+80
+02
+37
+c2
+80
+82
+44
+c2
+81
+02
+37
+c2
+81
+82
+44
+c2
+82
+02
+44
+70
+89
+55
+d0
+70
+89
+56
+e0
+18
+00
+2a
+00
+78
+50
+fc
+00
+78
+50
+7c
+00
+78
+2f
+7c
+00
+70
+89
+02
+00
+70
+89
+01
+00
+70
+89
+00
+00
+70
+89
+03
+00
+70
+89
+04
+70
+70
+89
+06
+00
+20
+60
+00
+00
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+20
+02
+39
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+60
+00
+00
+68
+00
+c2
+18
+24
+3a
+02
+50
+20
+40
+3c
+d2
+20
+00
+75
+30
+20
+00
+75
+30
+20
+00
+75
+30
+20
+40
+3a
+5f
+70
+80
+42
+05
+20
+00
+00
+01
+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
+d5
+23
+aa
+55
+00
+00
+aa
+55
+01
+00
+00
+40
+08
+aa
+55
+02
+00
+10
+40
+40
+0c
+aa
+55
+01
+00
+16
+40
+10
+aa
+55
+01
+00
+20
+40
+08
+aa
+55
+01
+00
+23
+40
+02
+aa
+55
+03
+00
+25
+40
+48
+0c
+40
+aa
+55
+01
+00
+32
+40
+20
+aa
+55
+01
+00
+3b
+40
+13
+aa
+55
+01
+00
+3e
+40
+80
+aa
+55
+01
+00
+32
+41
+09
+aa
+55
+01
+00
+29
+45
+07
+aa
+55
+01
+00
+f9
+43
+01
+aa
+55
+01
+00
+bb
+42
+ff
+aa
+55
+01
+00
+0e
+47
+1b
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+14
+47
+10
+aa
+55
+01
+00
+02
+47
+01
+aa
+55
+01
+00
+4c
+47
+32
+aa
+55
+04
+00
+50
+47
+96
+00
+96
+00
+aa
+55
+02
+00
+48
+47
+08
+07
+aa
+55
+01
+00
+df
+44
+01
+aa
+55
+02
+00
+1e
+45
+60
+01
+aa
+55
+01
+00
+3c
+47
+05
+aa
+55
+06
+00
+3e
+45
+02
+31
+00
+98
+07
+2a
+aa
+55
+0c
+00
+40
+44
+0b
+41
+42
+20
+53
+68
+75
+74
+74
+65
+72
+33
+aa
+55
+40
+00
+00
+44
+1b
+13
+09
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+02
+01
+05
+03
+02
+12
+18
+00
+00
+00
+00
+1f
+1e
+09
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+aa
+55
+87
+00
+c1
+4a
+47
+05
+0c
+09
+01
+a1
+01
+85
+02
+0a
+ae
+01
+09
+e9
+09
+ea
+09
+e2
+09
+30
+15
+01
+25
+0c
+75
+10
+95
+01
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+03
+05
+07
+19
+e0
+29
+e7
+15
+00
+25
+01
+75
+01
+95
+08
+81
+02
+75
+08
+95
+01
+15
+00
+25
+f4
+05
+07
+19
+00
+29
+f4
+81
+00
+c0
+1c
+00
+02
+03
+28
+01
+02
+1d
+00
+02
+4a
+2a
+04
+11
+01
+00
+01
+1e
+00
+02
+03
+28
+01
+04
+1f
+00
+02
+4c
+2a
+01
+00
+20
+00
+02
+00
+28
+02
+0f
+18
+21
+00
+02
+03
+28
+01
+12
+22
+00
+02
+19
+2a
+01
+00
+23
+00
+02
+02
+29
+02
+00
+00
+00
+00
+aa
+55
+02
+00
+41
+47
+03
+44
+aa
+55
+02
+00
+37
+46
+cc
+48
+aa
+55
+01
+00
+31
+41
+00
+aa
+55
+01
+00
+f6
+41
+06
+aa
+55
+01
+00
+13
+42
+02
+aa
+55
+03
+00
+55
+47
+00
+00
+0a
+aa
+55
+01
+00
+59
+47
+0c
+aa
+55
+02
+00
+5c
+47
+20
+00
+aa
+55
+04
+00
+33
+45
+06
+00
+20
+00
+aa
+55
+03
+00
+3b
+45
+01
+00
+00
+aa
+55
+04
+00
+fa
+43
+30
+00
+0c
+00
+aa
+55
+44
+00
+5e
+47
+01
+1b
+ff
+ff
+ff
+02
+1b
+96
+00
+96
+00
+ff
+02
+1b
+96
+00
+3a
+07
+ff
+02
+1b
+96
+00
+3a
+00
+01
+00
+1b
+48
+00
+96
+00
+02
+01
+1b
+00
+00
+00
+00
+00
+01
+1b
+00
+00
+00
+00
+00
+02
+1b
+96
+00
+96
+00
+01
+ff
+1b
+00
+00
+00
+00
+00
+00
+1b
+00
+00
+00
+00
+00
+aa
+55
+10
+00
+c3
+47
+03
+05
+17
+00
+00
+28
+05
+13
+00
+02
+00
+05
+13
+00
+01
+00
+aa
+55
+0b
+00
+d7
+47
+02
+05
+17
+00
+00
+00
+05
+13
+00
+00
+00
+aa
+55
+0b
+00
+eb
+47
+02
+05
+13
+00
+01
+00
+05
+13
+00
+02
+00
+aa
+55
+06
+00
+f9
+47
+01
+05
+13
+00
+00
+00
+aa
+55
+0c
+00
+54
+4b
+01
+0b
+14
+00
+5a
+6b
+02
+00
+02
+00
+00
+00
+aa
+55
+0d
+00
+a9
+47
+04
+04
+00
+05
+00
+06
+00
+03
+00
+ff
+00
+ff
+00
+aa
+55
+03
+00
+48
+4b
+0e
+10
+26
+aa
+55
+06
+00
+f2
+4b
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+02
+00
+df
+4b
+b8
+0b
+aa
+55
+01
+00
+80
+42
+02
+aa
+55
+01
+00
+f8
+4b
+02
+aa
+55
+03
+00
+15
+42
+8f
+1e
+ca
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+07
+aa
+55
+01
+00
+f7
+41
+00
+aa
+55
+08
+00
+a0
+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
+10
+12
+00
+00
+08
+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
+04
+00
+08
+aa
+55
+05
+00
+a9
+45
+08
+0e
+05
+03
+00
+aa
+55
+02
+00
+a8
+42
+30
+ff
+aa
+55
+01
+00
+b6
+42
+80
+aa
+55
+02
+00
+81
+42
+01
+ff
+aa
+55
+02
+00
+63
+41
+82
+42
+65
+ea
Index: ble fast connect receive/output/memmap.format
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/memmap.format	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/memmap.format	(working copy)
@@ -0,0 +1,1372 @@
+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_subsniff_instant
+0x0094 mem_subsniff_rate
+0x0095 mem_subsniff_tcmax
+0x0097 mem_subsniff_tsniff
+0x0098 mem_lpm_adjust
+0x0099 mem_sync_clke
+0x009f mem_lpm_current_mult
+0x00a0 mem_gpio_wakeup_low
+0x00a4 mem_gpio_wakeup_high
+0x00a8 mem_air_mode
+0x00a9 mem_sco_asso_handle
+0x00aa mem_sco_handle
+0x00ac mem_esco_desco
+0x00ad mem_esco_type
+0x00ae mem_neogotiation_state
+0x00af mem_saved_amaddr
+0x00b0 mem_esco_arq
+0x00b1 mem_esco_saved_arq
+0x00b2 mem_sco_obuf
+0x00d0 mem_sco_ibuf
+0x00ee mem_sco_poll
+0x00ef mem_npage_index
+0x00f0 mem_page_mode
+0x00f1 mem_page_clk
+0x00f5 mem_tst_pktcnt_sync
+0x00f7 mem_tst_pktcnt_hec
+0x00f9 mem_tst_pktcnt_crc
+0x00fb mem_tst_pktcnt_dmh
+0x00fd mem_tmp_buffer_head
+0x0100 mem_tmp_buffer
+0x0150 mem_tester_emulate
+0x0151 mem_temp_payload
+0x0151 test_mode_scenario
+0x0152 test_mode_hopping_mode
+0x0153 test_mode_tx_freq
+0x0154 test_mode_rx_freq
+0x0155 test_mode_power_mode
+0x0156 test_mode_poll_period
+0x0157 test_mode_packet_type
+0x0158 test_mode_data_length
+0x015a mem_test_mode_old_debug_config
+0x015b mem_tester_cnt
+0x015c mem_temp_am_addr
+0x015d mem_temp_arq
+0x015e mem_len
+0x0160 mem_clkn_bt
+0x0164 mem_clke_bt
+0x0168 mem_dpll_clkn
+0x016c mem_connection_options
+0x016d mem_nameres_cnt
+0x016e mem_txptr
+0x0170 mem_slot_offset
+0x0172 extm_fhs_misc
+0x0173 extm_newconn_am_addr
+0x0174 extm_class
+0x0177 extm_lap
+0x017a extm_uap
+0x017b extm_nap
+0x017e mem_debug_config
+0x017f mem_lch_code
+0x0180 mem_fhs_am_addr
+0x0181 mem_dpll_error
+0x0183 mem_bdaddr_list_buff
+0x01a7 mem_select_list_item
+0x01a8 mem_temp_reconn_record
+0x01a8 mem_record_bt_mode
+0x01a9 mem_temp_lap
+0x01af mem_list_item_ptr
+0x01b1 mem_eir
+0x0215 mem_ucode_status
+0x0216 mem_otp_ucode_flag
+0x0218 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0219 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0219 mem_addr_hi
+0x021a mem_addr_mi
+0x021b mem_addr_lo
+0x021c mem_iicd_addr
+0x021d mem_spid_rbuf
+0x0221 mem_ucode_buf
+0x0223 mem_ucode_len
+0x0225 mem_sched_addr
+0x0227 mem_ucode_ptr
+0x0229 mem_ucode_keybuf
+0x0239 mem_check_plap_temp
+0x024b mem_sensor_id
+0x024c mem_reconnect_flag
+0x024d mem_switch_fail_master_count
+0x024e mem_app_evt_timer_count
+0x024f mem_h5rx_ackcnt
+0x0250 mem_check_err_acl_cont
+0x0251 mem_rp_packets
+0x0252 mem_packet_type
+0x0254 mem_hci_sniff_conn_handle
+0x0256 mem_hci_sniff_max_interval
+0x0258 mem_hci_sniff_min_interval
+0x025a mem_hci_sniff_attempt
+0x025c mem_hci_sniff_timeout
+0x025e mem_voice_setting
+0x0260 mem_retransmission_effort
+0x0261 mem_sco_ptype
+0x0263 mem_extm_uap_restore
+0x0266 mem_h5rx_rptr
+0x0268 mem_h5rx_ack
+0x0269 mem_h5tx_ack
+0x026a mem_h5tx_rptr
+0x026c mem_h5tx_wptr
+0x026e mem_h5tx_free
+0x0270 mem_h5rx_tmp
+0x0271 mem_h5tx_seq
+0x0272 mem_hci_acl_queue_wptr
+0x0274 mem_hci_acl_queue_rptr
+0x0276 mem_hci_acl_queue_end
+0x0278 mem_hci_acl_queue_wcnt
+0x0279 mem_hci_acl_cnt
+0x027a mem_hci_acl_tx_trigger_wptr//tx via uart
+0x027c mem_ucode_id_local
+0x027d mem_ucode_id_remote
+0x027e mem_check_sum
+0x027f mem_ucode_temp
+0x0280 mem_ucode_temp1
+0x0281 mem_lock_in_enc//boolean
+0x0282 mem_hci_disconn_reason
+0x0283 mem_hci_curr_len
+0x0284 mem_hci_curr_target
+0x0286 mem_l2cap_mem_start
+0x0286 mem_l2cap_rxbuff1_len
+0x0288 mem_l2cap_rxbuff2_len
+0x028a mem_l2cap_rxbuff_new
+0x028c mem_l2cap_rxbuff_inuse
+0x028d mem_l2cap_payload_ptr
+0x028f mem_l2cap_rx_pkt_length
+0x0291 mem_l2cap_rx_cid
+0x0293 mem_l2cap_rx_done
+0x0294 mem_l2cap_signal_tx_buff_ptr
+0x0296 mem_l2cap_signal_tx_payload_ptr
+0x0298 mem_l2cap_signal_tx_length
+0x029a mem_sdp_tx_buff_ptr
+0x029c mem_sdp_tx_payload_ptr
+0x029e mem_sdp_tx_pkt_length
+0x02a0 mem_rfcomm_tx_buff_ptr
+0x02a2 mem_rfcomm_tx_payload_ptr
+0x02a4 mem_rfcomm_tx_pkt_length
+0x02a6 memL2CAP_T1
+0x02a8 mem_CONTROL_tasks
+0x02a9 mem_send_config_req
+0x02aa mem_config_identifier
+0x02ab mem_config_req_dest_CID
+0x02ad mem_rfcomm_malloc_fail_flag
+0x02ae mem_message_to_uppersm
+0x02af mem_upper_sm_remote_page
+0x02b0 mem_upper_sm_reconn
+0x02b1 mem_upper_sm_ss
+0x02b2 mem_tx_malloc_log
+0x02f2 mem_l2cap_mem_end
+0x02f2 mem_scid
+0x02f4 mem_cmd_length
+0x02f6 mem_tt2
+0x02f8 mem_tt3
+0x02fa mem_id
+0x02fc mem_psm
+0x02fe mem_l2cap_sdpres_delay_time
+0x0302 mem_le_rxbuf
+0x033a mem_le_mic
+0x033e mem_le_peer_mic
+0x0342 mem_le_peer_ltk
+0x0352 mem_le_mrand
+0x0362 mem_le_state
+0x0363 mem_le_mode
+0x0364 mem_le_tsniff
+0x0366 mem_le_anchor
+0x036a mem_le_clk_offset
+0x0370 mem_le_receive_window
+0x0372 mem_le_plap
+0x0378 mem_le_conn_handle
+0x0379 mem_le_arq
+0x037a mem_le_ch
+0x037b mem_le_hop
+0x037c mem_le_event_count
+0x037e mem_le_supervision_timer
+0x0382 mem_le_instant
+0x0384 mem_le_channels
+0x0385 mem_le_op
+0x0386 mem_le_access
+0x038a mem_le_crcinit
+0x038d mem_le_window_size
+0x038e mem_le_slave_latency
+0x0390 mem_le_superto
+0x0392 mem_le_channel_map
+0x0397 mem_le_no_using
+0x0399 mem_le_peer_sca
+0x039a mem_le_att_opcode
+0x039b mem_le_att_handle
+0x039d mem_le_err_code
+0x039e mem_le_l2cap_pdu_length
+0x03a0 mem_le_sk
+0x03b0 mem_le_testtype
+0x03b1 mem_le_test_sync
+0x03b3 mem_le_test_pcnt
+0x03b5 mem_le_rxon_ts
+0x03bb mem_le_rx_ll_opcode
+0x03bc mem_le_notify_attr_start
+0x03be mem_le_notify_len
+0x03bf mem_cmd_le_create_conn
+0x03c0 mem_24g_id
+0x03c1 mem_le_cur_attlist_start_ptr
+0x03c3 mem_le_cur_handle_start
+0x03c5 mem_le_cur_handle_end
+0x03c7 mem_le_cur_uuid_lenth
+0x03c8 mem_le_cur_uuid
+0x03d8 mem_le_search_len
+0x03d9 mem_le_search_res
+0x03da mem_le_continue_type
+0x03db mem_le_public_length
+0x03dc mem_lmo_header_length
+0x03dd mem_lmo_header_opcode
+0x03de mem_lmo_payload
+0x03ef mem_lmi_accepted_opcode
+0x03f0 mem_disconn_reason_send
+0x03f1 mem_tx_fixed_freq
+0x03f2 mem_rx_fixed_freq
+0x03f3 mem_ext_features_page
+0x03f4 mem_lmpext_ssp_enable
+0x03f6 mem_remote_sppcap
+0x03f7 mem_lmp_conn_state
+0x03f8 mem_soft_timer
+0x03fa mem_pincode_state
+0x03fb mem_sres_tid
+0x03fc mem_accptsco_tid
+0x03fd mem_auth_enable
+0x03fe mem_wait_encryption
+0x03ff mem_sniff_payload
+0x040f mem_aurand_send_delay_time
+0x0413 mem_module_temp_len
+0x0415 mem_uart_cmd
+0x0416 mem_uart_opcode
+0x0417 mem_uart_len
+0x0418 mem_module_temp_nl_discard_packet
+0x0419 mem_module_le_md_flag
+0x041a mem_init_cnt
+0x041c memRemoteRPNBitRate
+0x041d memRemotePRNDataBits
+0x041e memRemotePRNStopBit
+0x041f memRemotePRNParity
+0x0420 memRemotePRNFlowControl
+0x0421 memRemotePRNXon
+0x0422 memRemotePRNXoff
+0x0423 mem_mod2div_temp
+0x0426 mem_contw_temp
+0x0428 mem_attrib_list
+0x042a mem_current_adss
+0x042b mem_current_channel
+0x042c mem_current_frame_type
+0x042d mem_current_fcs
+0x042e mem_current_length
+0x0430 mem_rfcomm_uih_payload_ptr
+0x0432 mem_uih_cmd_type
+0x0433 mem_uih_length
+0x0435 mem_param_payload_ptr
+0x0437 mem_ms_param
+0x0438 mem_pn_credit_flow_type_info
+0x0439 mem_pn_priority
+0x043a mem_pn_acknowledg_timer
+0x043b mem_pn_max_retrans
+0x043c mem_rfcomm_send_adss
+0x043d mem_rfcomm_send_frame_type
+0x043e mem_rfcomm_send_fcs
+0x043f mem_rfcomm_send_offset
+0x0440 mem_sdp_mem_start
+0x0440 mem_uuid_search_pat
+0x0444 mem_sdp_continue_byte
+0x0446 mem_sdp_pduid
+0x0447 mem_sdp_transactionid
+0x0449 mem_sdp_attribute_maxbyte
+0x044b mem_sdp_record_maxcnt
+0x044d mem_sdp_error_code
+0x0455 mem_sdp_record_handle
+0x0459 mem_sdp_search_failed
+0x045a mem_sdp_LACAP_found
+0x045b mem_sdp_RFCOMM_found
+0x045c mem_handle_list
+0x0474 mem_handle_humber
+0x0475 mem_sdp_mem_end
+0x0475 mem_rxbuf
+0x0486 mem_random_number
+0x0496 mem_round_key
+0x04a6 mem_kinit
+0x04b6 mem_input_store
+0x04c6 mem_x
+0x04d6 mem_y
+0x04e5 mem_y15
+0x04e6 mem_key_store
+0x04f7 mem_key_store_end
+0x04f8 memp_ar_key
+0x04fa memp_ar_input
+0x04fc mem_ar_hround
+0x0506 mem_ec_infinite
+0x0507 mem_ec_loopc
+0x0509 mem_aes_cmac_data_length
+0x050a memdat
+0x050a mem_ax
+0x0522 mem_ay
+0x053a mem_az
+0x0552 mem_bx
+0x056a mem_ax_256//32 bytes
+0x056a mem_by
+0x0582 mem_bz
+0x058a mem_ay_256// 32 bytes
+0x059a mem_cx
+0x05aa mem_az_256// 32 bytes
+0x05b2 mem_cy
+0x05c9 mem_cy5
+0x05ca mem_bx_256// 32 bytes
+0x05ca mem_cz
+0x05e2 mem_k
+0x05ea mem_by_256// 31 bytes
+0x05fa mem_align
+0x060a mem_bz_256//32 bytes
+0x060a mem_tmp1
+0x060a memahbak
+0x0622 mem_tmp5
+0x062a mem_cx_256//32 bytes
+0x062a memahsave
+0x063a mem_tmp2
+0x064a mem_cy_256// 32 bytes
+0x064a memahsave_end
+0x064a mem_addr_padding
+0x064b mem_addr_value/* 12 bytes     */ 
+0x0652 mem_tmp3
+0x0652 mem_t1
+0x0657 mem_addr_value_end
+0x065a mem_addr_iocap_end
+0x0669 mem_cy5_256// 1 byte
+0x066a mem_cz_256// 32 bytes
+0x066a mem_tmp0
+0x066a mem_t0
+0x0672 mem_tmp0a
+0x0682 mem_t2
+0x068a mem_k_256//32 bytes
+0x069a mem_t3
+0x06aa mem_tmp1_256//32 bytes
+0x06b2 mem_t7
+0x06ca mem_tmp5_256
+0x06ea mem_tmp2_256
+0x070a mem_tmp3_256
+0x070a mem_t1_256
+0x072a mem_tmp0_256
+0x072a mem_t0_256
+0x074a mem_t2_256
+0x076a mem_t3_256
+0x078a mem_t7_256
+0x07aa mem_p
+0x07c2 mem_a
+0x07da mem_b
+0x07f2 mem_gx
+0x080a mem_gy
+0x0822 memh0
+0x0842 mem_p_256
+0x0862 mem_a_256
+0x0882 mem_gx_256
+0x08a2 mem_gy_256
+0x08c2 mem_le_slat
+0x08d2 mem_sp_state_start
+0x08d2 mem_sp_state
+0x08d3 mem_master_sp_state
+0x08d4 mem_sp_flag
+0x08d5 mem_master_sp_flag
+0x08d6 mem_sp_calc
+0x08d7 mem_sp_dh_ready
+0x08d8 mem_sp_localsm
+0x08d9 mem_pairing_auth
+0x08da mem_sp_flag_start
+0x08da mem_sp_local_key_send_count
+0x08db mem_sp_remote_key_recv_count
+0x08dc mem_sp_remote_key_invalid
+0x08dd mem_sp_dhkey_invalid
+0x08de mem_gkey
+0x08e2 mem_le_pubkey_remote_x_256
+0x08ea mem_sp_pubkey_remote
+0x08ea mem_sp_pubkey_remote_x
+0x0902 mem_sp_pubkey_remote_x_end
+0x0902 mem_le_pubkey_remote_y_256
+0x090a mem_sp_pubkey_remote_y
+0x0922 mem_le_dhkey_256
+0x092a mem_sp_dhkey
+0x0942 mem_sp_dhkey_end
+0x0942 mem_sp_random_local
+0x0952 mem_sp_random_local_end
+0x0952 mem_sp_random_remote
+0x0962 mem_sp_random_remote_end
+0x0962 memresult
+0x0962 mem_sp_calc_result
+0x0962 memh
+0x0966 memg
+0x096a memf
+0x096e meme
+0x0972 mem_sp_calc_result_high
+0x0972 memd
+0x0976 memc
+0x097a memb
+0x097e mema
+0x0982 mem_sp_check_result
+0x0992 mem_sp_confirm_remote
+0x09a2 mem_sp_prarm_stack
+0x09b2 mem_UI_data_txbuff_length
+0x09b4 mem_ipc_skip_continue_proc
+0x09b5 mem_ui_timer_temp//length 4
+0x09b5 mem_ipc_rega_temp
+0x09b9 mem_hold_contr
+0x09bb mem_hold_contw
+0x09bd mem_fifo_temp
+0x09be mem_pdatatemp
+0x09c6 mem_temp//8 bytes
+0x09ce mem_timeup// 4 bytes
+0x09d2 mem_rega//4 bytes
+0x09d6 mem_regb//4 bytes
+0x09da mem_regc//3 bytes
+0x09dd mem_contr//2 bytes
+0x09df mem_contw//2 bytes
+0x09e1 mem_le_data_len_temp//1byte
+0x09e1 mem_tx_fifo_map_temp
+0x09e1 mem_rpn_dlci//1byte
+0x09e1 mem_event_cmd_response_content//2byte
+0x09e1 mem_le_prand//16byte
+0x09e1 mem_AES_CMAC_k//16 bytes
+0x09e1 mem_regext_index//1 bytes
+0x09e1 mem_temp_block0
+0x09e2 mem_le_data_temp//15bytes
+0x09e2 mem_temp_block1
+0x09f1 mem_le_aes_128//16byte
+0x09f1 mem_regext//64 bytes
+0x09f1 mem_AES_CMAC_k1//16 bytes
+0x09f1 mem_temp_block2
+0x0a01 mem_AES_CMAC_k2//16 bytes
+0x0a01 mem_temp_block3
+0x0a11 mem_AES_CMAC_temp// 16 bytes
+0x0a11 mem_temp_block4
+0x0a21 mem_AES_CMAC_M_last// 16 bytes
+0x0a21 mem_temp_block5
+0x0a31 mem_le_mackey//16 bytes
+0x0a31 mem_temp_block6
+0x0a41 mem_temp_prepare_write_request
+0x0b09 mem_kb_map2_temp_start
+0x0b09 mem_kb_map2_vk
+0x0b0c mem_kb_current_vk
+0x0b0f mem_kb_vk_offset
+0x0b10 mem_kb_vk_processed_cnt
+0x0b11 mem_kb_map2_current_cell_ptr
+0x0b13 mem_kb_device_button
+0x0b14 mem_table_temp0
+0x0b1c mem_table_temp1
+0x0b24 mem_kb_map2_temp_end
+0x0b24 mem_check_count
+0x0b25 mem_store_key_count
+0x0b26 mem_kb_gpio_val
+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_rf_rccal
+0x416f mem_handle_num
+0x4170 mem_max_slot
+0x4171 mem_eir_enable
+0x4172 mem_afh_instant
+0x4176 mem_afh_error_total
+0x4178 mem_afh_cfg
+0x4179 mem_afh_new_mod
+0x417a mem_afh_map_lo
+0x417f mem_afh_map_hi
+0x4184 mem_afh_used
+0x4185 mem_afh_index
+0x4187 mem_afh_map_new
+0x4192 mem_afh_map
+0x41e2 mem_afh_timer
+0x41e6 mem_afh_classify_channel_map
+0x41f0 mem_chip_functions
+0x41f2 mem_lpm_wake_lock
+0x41f4 mem_lpm_interval
+0x41f6 mem_lpm_overhead
+0x41f7 mem_lpm_hibernate_switch
+0x41f8 mem_esco_addr
+0x41f9 mem_sniff_unint_lost
+0x41fa mem_ptt
+0x41fb mem_sleep_counter//should be 0x41fc in REVC
+0x41ff mem_sleep_counter_all
+0x4203 mem_sleep_clkn
+0x4209 mem_sniff_rcv
+0x420c mem_sniff_lost
+0x420f mem_clks_per_lpo
+0x4212 mem_lpm_mult
+0x4213 mem_lpm_mult_timeout
+0x4214 mem_lpm_mult_cnt
+0x4215 mem_lpm_config
+0x4218 mem_lpm_xtalcnt
+0x4219 mem_lpm_buckcnt
+0x421a mem_lpm_ldocnt
+0x421b mem_lpm_isogate
+0x421c mem_lpm_isogate_final
+0x421d mem_saved_gpio// should be 0x421e in REVC
+0x422d mem_saved_gsel
+0x4230 mem_saved_mark
+0x4238 mem_saved_spidctrl
+0x4239 mem_patch_ptr
+0x423b mem_patch_len
+0x423d mem_timers
+0x425d mem_link_key_exists
+0x425e mem_link_key_eeprom_head
+0x4261 mem_link_key
+0x4271 mem_hci_cmd
+0x4272 mem_hci_conn_handle
+0x4273 mem_hci_plap
+0x4276 mem_hci_puap
+0x4277 mem_hci_pnap
+0x4279 mem_uartd_rxitems_got_data
+0x427a mem_uartd_rxitems_threshold
+0x427b mem_uartd_rx_timeout
+0x427d mem_tx_lch
+0x427e mem_tx_len
+0x4280 mem_tx_power
+0x4281 mem_context_number
+0x4282 mem_rf_init_data
+0x4283 mem_app_handshake_flag
+0x4284 mem_sniff_param_interval
+0x4286 mem_sniff_param_attempt
+0x4288 mem_sniff_param_timeout
+0x428a mem_cb_check_wakelock
+0x428c mem_cb_before_hibernate
+0x428e mem_cb_before_lpm
+0x4290 mem_cb_le_process
+0x4292 mem_cb_bt_process
+0x4294 mem_cb_idle_process
+0x4296 mem_cb_bb_event_process
+0x4298 mem_cb_discovry_timeout
+0x429a mem_cb_att_write
+0x429c mem_cb_update_notify_value
+0x429e mem_cb_update_notify_continue
+0x42a0 mem_cb_event_timer
+0x42a2 mem_cb_le_set_mult
+0x42a4 mem_cb_bt_set_mult
+0x42a6 mem_soft_version_num
+0x42a8 mem_eeprom_base
+0x42aa mem_unsniff2sniff_timer_count
+0x42ab mem_wake_up_delay_timer
+0x42ac mem_app_connection_options
+0x42ad mem_app_disconn_reason
+0x42af mem_app_disconn_reason_flag
+0x42b1 mem_lpm_delay_after_sniff
+0x42b5 mem_xrecord_mode
+0x42b6 mem_eeprom_block_size
+0x42b8 mem_wakup_from_power_flag
+0x42b9 mem_spi_init_clk
+0x42ba mem_spi_init_delay_time
+0x42bb mem_spi_ncs_gpio
+0x42bc mem_nv_data_ptr
+0x42be mem_nv_data_number
+0x42bf mem_0_5_adc_io_data
+0x42c1 mem_1v_adc_hvin_data
+0x42c3 mem_2v_adc_vinlpm_data
+0x42c5 mem_1v_adc_io_data
+0x42c7 mem_5v_adc_hvin_data
+0x42c9 mem_3v_adc_vinlpm_data
+0x42cb mem_otp_adc_flag
+0x42cd mem_reference_voltage
+0x42cf mem_adc_config_flag
+0x42d0 mem_adc_channel
+0x42d1 mem_adc_current_value
+0x42d3 mem_baud
+0x42d5 mem_hci_lt_rx_state
+0x42d6 mem_l2cap_xmem_start
+0x42d6 mem_l2cap_tx_multi_offset//0 means single packet
+0x42d8 mem_sdp_remote_cid
+0x42da mem_rfcomm_remote_cid
+0x42dc mem_hid_ctrl_remote_cid
+0x42de mem_hid_int_remote_cid
+0x42e0 mem_sdp_state
+0x42e1 mem_rfcomm_state
+0x42e2 mem_hid_control_state
+0x42e3 mem_hid_interrupt_state
+0x42e4 mem_spp_state
+0x42e5 mem_ML2CAP_comm_id
+0x42e6 mem_used_map
+0x42e7 mem_tx_fifo0
+0x42e7 mem_tx_fifo0_map
+0x42e8 mem_tx_fifo0_ptr
+0x42ea mem_tx_fifo1
+0x42ea mem_tx_fifo1_map
+0x42eb mem_tx_fifo1_ptr
+0x42ed mem_tx_fifo2
+0x42ed mem_tx_fifo2_map
+0x42ee mem_tx_fifo2_ptr
+0x42f0 mem_tx_fifo3
+0x42f0 mem_tx_fifo3_map
+0x42f1 mem_tx_fifo3_ptr
+0x42f3 mem_tx_fifo_end
+0x42f3 mem_l2cap_lpm_txbuf
+0x43f3 mem_l2cap_flow_ctrl_flag
+0x43f4 mem_l2cap_pending_item
+0x43f5 mem_l2cap_xmem_end
+0x43f5 mem_le_dsniff
+0x43f7 mem_le_conn_interval
+0x43f9 mem_le_scan_enable
+0x43fa mem_le_scan_interval
+0x43fc mem_le_scan_window
+0x43fe mem_le_adv_led
+0x43ff mem_le_adv_enable
+0x4400 mem_le_adv_data_len
+0x4401 mem_le_adv_data
+0x4420 mem_le_scan_data_len
+0x4421 mem_le_scan_data
+0x4440 mem_le_name_len
+0x4441 mem_le_name
+0x4455 mem_le_led_on_time
+0x4456 mem_le_new_map
+0x445b mem_le_new_param
+0x445b mem_le_new_transmitwindowsize
+0x445c mem_le_new_transmitwindowoffset
+0x445e mem_le_new_conninterval
+0x4460 mem_le_new_connslavelatency
+0x4462 mem_le_new_connsupervisiontimeout
+0x4464 mem_le_temp
+0x4465 mem_le_txheader
+0x4466 mem_le_txlen
+0x4467 mem_le_txpayload
+0x4469 mem_le_txcid
+0x446b mem_le_l2cap
+0x446c mem_le_l2cap_response
+0x446d mem_le_txbdy
+0x448c mem_le_pcnt_tx
+0x4491 mem_le_pcnt_rx
+0x4496 mem_le_last_mic
+0x449a mem_le_ivm
+0x449e mem_le_ivs
+0x44a2 mem_le_ltk
+0x44b2 mem_ltk_exists
+0x44b3 mem_le_rconfirm
+0x44c3 mem_le_srand
+0x44d3 mem_le_iat
+0x44d4 mem_le_rat
+0x44d5 mem_le_preq
+0x44d6 mem_le_preq_iocap
+0x44d7 mem_le_preq_oob
+0x44d8 mem_le_preq_auth
+0x44d9 mem_le_preq_max_keysize
+0x44da mem_le_preq_init_key_distribution
+0x44db mem_le_preq_resp_key_distribution
+0x44dc mem_le_pres
+0x44dd mem_le_pres_iocap
+0x44de mem_le_pres_oob
+0x44df mem_le_pres_auth
+0x44e0 mem_le_pres_max_keysize
+0x44e1 mem_le_pres_init_key_distribution
+0x44e2 mem_le_pres_resp_key_distribution
+0x44e3 mem_le_search_handle_start
+0x44e5 mem_le_search_handle_end
+0x44e7 mem_le_att_offset
+0x44e7 mem_le_search_att_type_length
+0x44e8 mem_le_search_att_type
+0x44f8 mem_le_notify_handle
+0x44fa mem_le_search_uuid_length
+0x44fb mem_le_search_uuid
+0x450b mem_le_handle_data_len
+0x450c mem_le_handle_data
+0x451c mem_le_adv_param
+0x451c mem_le_adv_interval_min
+0x451e mem_le_adv_interval_max
+0x4520 mem_le_adv_type
+0x4521 mem_le_adv_own_addr_type
+0x4522 mem_le_adv_direct_addr_type
+0x4523 mem_le_adv_direct_addr
+0x4529 mem_le_adv_channel_map
+0x452a mem_le_adv_filter_policy
+0x452b mem_le_conn_param
+0x452b mem_le_conn_peer_addr_type
+0x452c mem_le_conn_peer_addr
+0x4532 mem_le_conn_own_addr_type
+0x4533 mem_le_conn_interval_min
+0x4535 mem_le_conn_interval_max
+0x4537 mem_le_conn_latency
+0x4539 mem_le_conn_superto
+0x453b mem_le_scan_params
+0x453b mem_le_scan_type
+0x453c mem_le_scan_own_addr_type
+0x453d mem_le_scan_filter_policy
+0x453e mem_le_lap
+0x4541 mem_le_uap
+0x4542 mem_le_nap
+0x4544 mem_le_xtype_fifo
+0x454c mem_le_local_mtu
+0x454e mem_le_remote_mtu
+0x4550 mem_le_ll_cur_opcode
+0x4551 mem_le_skdm
+0x4559 mem_le_skds
+0x4561 mem_le_init_superto
+0x4563 mem_le_secure_connect_enable
+0x4564 mem_le_secure_connect_flag
+0x4565 mem_le_sc_calc
+0x4566 mem_le_secure_connect_state
+0x4567 mem_le_sc_confirm_gkey_flag
+0x4568 mem_le_sc_local_key_invalid
+0x4569 mem_le_continue_flag
+0x456a mem_le_pairing_state
+0x456b mem_le_enc_state
+0x456c mem_le_pairing_mode
+0x456d mem_le_tk
+0x4571 mem_le_ediv
+0x4573 mem_le_rand
+0x457b mem_le_irk
+0x458b mem_le_pairing_handle
+0x458d mem_le_interal_min
+0x458f mem_le_interal_max
+0x4591 mem_le_latency
+0x4593 mem_le_timeout
+0x4595 mem_le_switch_send_data
+0x4596 mem_le_transmit_window
+0x459a mem_le_buff_len
+0x459c mem_le_buff_len_all
+0x459e mem_le_buff_data_len_all
+0x45a0 mem_prepare_write_len
+0x45a2 mem_le_prepare_write_req_offset
+0x45a4 mem_prepare_handle
+0x45a6 mem_prepare_write_offest
+0x45a8 mem_le_flag
+0x45a9 mem_lmp_version
+0x45ac mem_lmp_subversion
+0x45ae mem_local_name_length
+0x45af mem_local_name
+0x45b2 mem_local_name2
+0x45f2 mem_local_name_end
+0x45f3 mem_unsniff2sniff_timer
+0x45f4 mem_switch_flag
+0x45f5 mem_pn_dlci
+0x45f6 mem_pn_max_frame_size
+0x45f8 memFCStemp1
+0x45f9 memFCStemp2
+0x45fa memFCStemp3
+0x45fb mem_rfcomm_initiator
+0x45fc mem_remote_spp_channel
+0x45fd mem_HIUfcs_SPP
+0x45fe mem_HIUfcs_SPP_WCredits
+0x45ff mem_rfcomm_send_more_pkt
+0x4600 mem_remote_credits
+0x4601 mem_credit_given
+0x4602 mem_ms_channel
+0x4603 mem_credit_flag
+0x4604 mem_rfcomm_max_frame_size
+0x4606 mem_rfcomm_credit_init_data
+0x4607 mem_cb_receive_spp_data
+0x4609 mem_nl_rx_data_src
+0x460b mem_nl_rx_len_all
+0x460d mem_ui_uuid_table
+0x460f mem_all_uuid_16bits
+0x4625 mem_all_uuid_128bits
+0x4637 mem_ui_le_uuid_table
+0x4639 mem_sp_local_key_invalid
+0x463a mem_le_private_key_256
+0x465a mem_le_pubkey_local_x_256
+0x467a mem_le_pubkey_local_y_256
+0x469a mem_sp_private_key
+0x46b2 mem_sp_pubkey_local
+0x46b2 mem_sp_pubkey_local_x
+0x46ca mem_sp_pubkey_local_x_end
+0x46ca mem_sp_pubkey_local_y
+0x46e2 mem_ssp_enable
+0x46e3 mem_sp_iocap_local
+0x46e6 mem_sp_iocap_remote
+0x46e9 mem_flag_mode_ssp_pin
+0x46ea mem_ssp_mode_flag
+0x46eb mem_authentication_passkey_times
+0x46ec mem_passkey_1bit
+0x46ed mem_flag_pairing_state
+0x46ee mem_ipc_lock_bt
+0x46ef mem_ipc_lock_c51
+0x46f0 mem_ipc_fifo_bt2c51
+0x46f8 mem_ipc_fifo_c512bt
+0x4700 mem_led_switch
+0x4701 mem_ui_button_timer
+0x4702 mem_ui_button_last_state
+0x4703 mem_ui_timer_last_btclk
+0x4707 mem_discovery_timeout_timer_count
+0x4709 mem_hid_handshake_timer_count
+0x470a memui_reconnect_mode
+0x470b mem_ui_state_map
+0x470d mem_ui_profile_supported
+0x470e mem_led_gpio
+0x470f mem_led_dark_time
+0x4711 mem_led_light_time
+0x4713 mem_led_blink_count
+0x4714 mem_ui_button_timeout
+0x4715 mem_ui_button_gpio
+0x4716 mem_discovery_timeout
+0x4718 mem_pin_length
+0x4719 mem_pin
+0x4729 mem_24g_tx_btclk
+0x472d mem_24g_interval
+0x472e mem_24g_txfail_cnt
+0x472f mem_24g_attempt_cnt
+0x4730 mem_24g_attempt_flag
+0x4731 mem_24g_rxfail_cnt
+0x4734 mem_24g_retry
+0x4735 mem_24g_pid
+0x4736 mem_24g_datalen
+0x4737 mem_24g_crc
+0x4739 mem_24g_rxbuf
+0x4779 mem_24g_addr
+0x477d mem_24g_len
+0x477f mem_24g_txpayload
+0x4789 mem_24g_txdata
+0x4793 mem_24g_ch
+0x4794 mem_24g_scremble
+0x47a4 mem_24g_current_ch_number
+0x47a5 mem_24g_ch_map1
+0x47a9 mem_24g_ch_map2
+0x47ad mem_24g_ch_map3
+0x47b1 mem_24g_ch_map4
+0x47b5 mem_24g_interval_min
+0x47b6 mem_24g_interval_max
+0x47b7 mem_24g_ensure
+0x47b8 mem_24g_enter_hibernate
+0x47c0 mem_24g_enter_lpm_timer
+0x47c1 mem_24g_pairing_sm
+0x47c2 mem_24g_addr_copy
+0x47c6 mem_24g_sifs
+0x47c7 mem_24g_rxcnt
+0x47c8 mem_24g_addr_private_dongle
+0x47cc mem_24g_map_buff0_dongle
+0x47cd mem_24g_channel_cnt_dongle
+0x47ce mem_24g_pairing_sm_dongle
+0x47cf mem_24g_tx_btclk_dongle
+0x47d3 mem_24g_interval_dongle
+0x47d4 mem_24g_ch_update_dongle
+0x47d5 mem_24g_rx_sync_dongle
+0x47d6 mem_24g_ch_cnt_dongle
+0x47d7 mem_24g_rxbuf_temp_dongle
+0x47dd mem_24g_rxbuf_dongle
+0x47e3 mem_24g_rxfail_cnt_dongle
+0x47e6 mem_24g_spi_enable_flag
+0x4729 mem_acl_credits
+0x472b mem_allow_switch
+0x472c mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4730 mem_hci_wake_clk
+0x4729 mem_kb_state
+0x472b mem_kb_report_data
+0x4731 mem_kb_keys
+0x4732 mem_kb_rcv_led_data
+0x4733 mem_kb_fast_wake_last
+0x4737 mem_led_cap_gpio
+0x4738 mem_led_num_gpio
+0x4739 mem_led_scl_gpio
+0x473a mem_kb_current_vdd_value_10times
+0x473c mem_kb_read_adc_cnt_100ms
+0x473d mem_kb_current_vdd_value
+0x473f mem_led_power_blink_count
+0x4740 mem_led_power_500ms_cnt
+0x4741 mem_kb_map2
+0x49fd mem_3v1_adc_default
+0x49ff mem_kb_map
+0x4a9d mem_kb_discovery_timer
+0x4a9f mem_kb_direct_timer
+0x4aa1 mem_kb_no_data_timer
+0x4aa3 mem_kb_direct_timeout
+0x4aa5 mem_kscn_event_last
+0x4aa6 mem_kscan_event_num_last
+0x4aa7 mem_auto_enable_mult_timer
+0x4aa8 mem_auto_enable_mult_timer_init
+0x4aa9 mem_kb_temp_flag
+0x4aaa mem_map2_out_report0
+0x4ab2 mem_map2_out_report1
+0x4aba mem_table_last_repory_data0
+0x4ac2 mem_table_last_repory_data1
+0x4aca mem_kb_down
+0x4ad4 mem_kb_down_last
+0x4ade mem_table_temp
+0x4ae6 mem_pincode_vk_last
+0x4ae7 mem_kb_device_button_last
+0x4ae8 mem_kb_device_button_timer
+0x4ae9 mem_kb_current_status
+0x4aea mem_seq
+0x4aeb mem_dorx_cnt
+0x4aec mem_matched_btclk
+0x4aee mem_master_sniff_interval
+0x4aef mem_led_power_gpio
+0x4af0 mem_kb_check_vdd_count
+0x4af2 mem_0v_adc_data
+0x4af4 mem_2v2_adc_data
+0x4af6 mem_3v_adc_data
+0x4af8 mem_select_system_led_timer
+0x4af9 mem_led_cap_gpio_status
+0x4afa mem_kb_no_data_timeout
+0x4afc mem_kb_gpio_last_val
+0x4b00 mem_store_current_status
+0x4b01 mem_kb_led_on_timer
+0x4b02 mem_kb_debug_sm
+0x4b03 mem_kb_mode
+0x4b05 mem_kb_mode_revese
+0x4b07 mem_master_addr
+0x4b0d mem_led_device_blink_count
+0x4b0e mem_led_device_500ms_cnt
+0x4b0f mem_kb_caps_led_status
+0x4b10 mem_kb_reconnection_ssp
+0x4b11 mem_kb_rcv_hid_control_rsp
+0x4b12 mem_kb_down_regroup
+0x4b17 mem_kb_get_fn_flag
+0x4b18 mem_kb_kscan_cnt
+0x4b19 mem_kb_down_test
+0x4b23 mem_kb_release_fn_data
+0x4b24 mem_led_cap_delay_timer
+0x4b25 mem_led_cap_mult_timer
+0x4b26 mem_led_cap_flag
+0x4b27 mem_hid_rx_data
+0x4b28 mem_kb_fn_c
+0x4b29 mem_kb_c_fn
+0x4b2a mem_keyboard_uuid_list
+0x4db4 mem_keyboard_uuid_list_end
+0x4db4 mem_keyboard_le_att_list
+0x4fa8 mem_keyboard_le_att_list_end
+0x4729 mem_module_wake_up_gpio
+0x472a mem_module_state_gpio
+0x472b mem_module_connect_state_gpio
+0x472c mem_current_packet_length
+0x472e mem_module_state
+0x472f mem_module_task
+0x4730 mem_cmode_addr
+0x4736 mem_module_mcu_wake_pin
+0x4737 mem_module_mcu_wake_delay_us
+0x473b mem_module_spp_lpm_mult
+0x473c mem_module_le_lpm_mult
+0x473d mem_module_bluetooth_stauts_by_command
+0x473e mem_module_uart_rx_buffer
+0x4740 mem_module_uart_rx_buffer_end
+0x4742 mem_module_uart_tx_buffer
+0x4744 mem_module_uart_tx_buffer_end
+0x4746 mem_module_read_vdd_flag
+0x4747 mem_module_read_vdd_count
+0x4748 mem_module_vdd_quotient
+0x4749 mem_module_vdd_remainder
+0x474a mem_module_le_buff_len
+0x474c mem_module_le_buff_len_all
+0x474e mem_module_le_buff_data_len_all
+0x4750 mem_module_le_continue_flag
+0x4751 mem_module_le_rx_data_len
+0x4752 mem_module_le_rx_data_address
+0x4754 mem_module_le_rx_data_handle
+0x4756 mem_module_data_write_handle
+0x4758 mem_module_data_write_handle2
+0x475a mem_module_flag
+0x475b mem_le_notify_type
+0x475c mem_module_hci_notify_start
+0x475e mem_module_hci_notify_offset
+0x4760 mem_module_hci_notify_len
+0x4762 mem_module_hci_notify_att
+0x4764 mem_module_hci_notify_original_len
+0x4766 mem_module_uuid_list
+0x4892 mem_module_uuid_list_end
+0x4892 mem_module_le_att_list
+0x4a86 mem_module_le_att_list_end
+0x4a86 mem_nv_data
+0x4a86 mem_nv_data0
+0x4aa8 mem_nv_data1
+0x4aca mem_nv_data2
+0x4aec mem_nv_data3
+0x4b0e mem_nv_data4
+0x4729 mem_mouse_key
+0x472a mem_mouse_x
+0x472c mem_mouse_y
+0x472e mem_mouse_z
+0x472f mem_mouse_tz
+0x4730 mem_mouse_xy_h
+0x4731 mem_sensor_shutter_hi
+0x4732 mem_sensor_shutter_lo
+0x4733 mem_sensor_smart_flag
+0x4734 mem_sensor_squal_reg
+0x4735 mem_mouse_move_flag
+0x4736 mem_reconnect_timeout
+0x4737 mem_mouse_direct_timeout
+0x4739 mem_mouse_no_data_timeout
+0x473b mem_mouse_blank_data_timeout
+0x473d mem_mouse_discovery_timer
+0x473f mem_mouse_direct_timer
+0x4741 mem_mouse_no_data_timer
+0x4743 mem_mouse_blank_data_timer
+0x4745 mem_mouse_send_blank_timer
+0x4746 mem_mouse_dpi
+0x4747 mem_mouse_dpi_button_state
+0x4748 mem_mouse_test_cnt
+0x4749 mem_le_hibernate_timer
+0x474b mem_mouse_mode_state
+0x474c mem_mouse_le_notify_handle
+0x474d mem_lbutton_gpio
+0x474e mem_rbutton_gpio
+0x474f mem_mbutton_gpio
+0x4750 mem_sbutton1_gpio
+0x4751 mem_sbutton2_gpio
+0x4752 mem_dpi_button_gpio
+0x4753 mem_sensor_data_gpio
+0x4754 mem_whee_a_data_gpio
+0x4755 mem_whee_b_data_gpio
+0x4756 mem_sensor_reset_gpio
+0x4757 mem_device1_led_gpio
+0x4758 mem_device2_led_gpio
+0x4759 mem_device3_led_gpio
+0x475a mem_conn_cnt
+0x475b mem_whee_ta_data_gpio
+0x475c mem_whee_tb_data_gpio
+0x475d mem_wheel_tb_old_pinlevel
+0x475e mem_wheel_tb_new_pinlevel
+0x475f mem_wheel_tog
+0x4760 mem_mouse_tz_data
+0x4761 mem_mouse_tz_data_count
+0x4762 mem_mouse_tz_data_count1
+0x4763 mem_mwhee_a_data_gpio
+0x4764 mem_mwhee_b_data_gpio
+0x4765 mem_mwheel_b_old_pinlevel
+0x4766 mem_mwheel_b_new_pinlevel
+0x4767 mem_mwheel_tog
+0x4768 mem_mouse_z_data
+0x4769 mem_mouse_z_data_count
+0x476a mem_mouse_z_data_count1
+0x476b mem_reconn_mode
+0x476c mem_mouse_statue_led_timer
+0x476d mem_device_flag
+0x476e mem_mouse_uuid_list
+0x49f8 mem_mouse_uuid_list_end
+0x49f8 mem_mouse_le_att_list
+0x4bec mem_mouse_le_att_list_end
+0x4729 mem_shutter_send_data
+0x472d mem_shutter_key_temp
+0x472e mem_shutter_send_length
+0x472f mem_shutter_clkn_bt_last
+0x4733 mem_shutter_key
+0x4734 mem_shutter_flag
+0x4735 mem_shutter_cable_unplug_conut
+0x4736 mem_shutter_hid_disconn_count
+0x4737 mem_shutter_1key_send_sm
+0x4738 mem_shutter_iphonekey_gpio
+0x4739 mem_shutter_androidkey_gpio
+0x473a mem_shutter_key_number
+0x473b mem_read_eeprom_temp
+0x473c mem_read_eeprom_mac_addr
+0x473f mem_scale_tx_length
+0x4740 mem_scale_txbuff_inuse
+0x4741 mem_adv_lap_ptr
+0x4743 mem_le_sleep_flag
+0x4744 mem_rx_window_sniff_inc
+0x4746 mem_pair_state
+0x4747 mem_exchange_mtu_req
+0x4748 mem_le_sleep_timeout
+0x474a mem_le_sleep_timeout_timer_count
+0x474c mem_le_fast_adv_timeout
+0x474e mem_le_fast_adv_timeout_timer_count
+0x4750 mem_led_fast_dark_time
+0x4752 mem_led_fast_light_time
+0x4754 mem_power_on_pin
+0x4755 mem_hard_soft_switch_case
+0x4756 mem_shutter_powerup_flag
+0x4757 mem_shutter_button_timeout
+0x4758 mem_shutter_button_timer
+0x4759 mem_power_timeout
+0x475a mem_power_timer
+0x475b mem_enable_key_scan
+0x475c mem_packet_interval_set
+0x475e mem_shutter_led_num
+0x475f mem_led_map
+0x4763 mem_fast_adv_led_style
+0x4763 mem_fa_led_type
+0x4764 mem_fa_led_pin
+0x4765 mem_fa_led_on_time
+0x4767 mem_fa_led_off_time
+0x4769 mem_fa_blink_count
+0x476a mem_slow_adv_led_style
+0x476a mem_sa_led_type
+0x476b mem_sa_led_pin
+0x476c mem_sa_led_on_time
+0x476e mem_sa_led_off_time
+0x4770 mem_sa_blink_count
+0x4771 mem_power_on_led_style
+0x4771 mem_po_led_type
+0x4772 mem_po_led_pin
+0x4773 mem_po_led_on_time
+0x4775 mem_po_led_off_time
+0x4777 mem_po_blink_count
+0x4778 mem_powe_off_led_style
+0x4778 mem_pf_led_type
+0x4779 mem_pf_led_pin
+0x477a mem_pf_led_on_time
+0x477c mem_pf_led_off_time
+0x477e mem_pf_blink_count
+0x477f mem_connected_led_style
+0x477f mem_co_led_type
+0x4780 mem_co_led_pin
+0x4781 mem_co_led_on_time
+0x4783 mem_co_led_off_time
+0x4785 mem_co_blink_count
+0x4786 mem_key_led_style
+0x4786 mem_key_led_style_ind_0
+0x4786 mem_key_led_style_ind_0_data
+0x478d mem_key_led_style_ind_1
+0x478d mem_key_led_style_ind_1_data
+0x4794 mem_key_led_style_ind_2
+0x4794 mem_key_led_style_ind_2_data
+0x479b mem_key_led_style_ind_3
+0x479b mem_key_led_style_ind_key_release
+0x479b mem_key_led_style_ind_3_data
+0x47a2 mem_temp_led_style
+0x47a2 mem_temp_led_type
+0x47a3 mem_temp_led_pin
+0x47a4 mem_temp_led_on_time
+0x47a6 mem_temp_led_off_time
+0x47a8 mem_temp_blink_count
+0x47a9 mem_shutter_key_num
+0x47aa mem_key_conf0
+0x47aa mem_key_conf0_pin
+0x47ab mem_key_conf0_led
+0x47ac mem_key_conf1
+0x47ac mem_key_conf1_pin
+0x47ad mem_key_conf1_led
+0x47ae mem_key_conf2
+0x47ae mem_key_conf2_pin
+0x47af mem_key_conf2_led
+0x47b0 mem_key_conf3
+0x47b0 mem_key_conf3_pin
+0x47b1 mem_key_conf3_led
+0x47b2 mem_key_conf4
+0x47b2 mem_key_conf4_pin
+0x47b3 mem_key_conf4_led
+0x47b4 mem_key_conf5
+0x47b4 mem_key_conf5_pin
+0x47b5 mem_key_conf5_led
+0x47b6 mem_key_value_temp
+0x47b8 mem_key_value
+0x47ba mem_key_packet_count
+0x47bb mem_key_next_addr
+0x47bd mem_key_value_temp1
+0x47be mem_key_value_temp2
+0x47bf mem_key_value_temp3
+0x47c0 mem_key_value_temp4
+0x47c1 mem_key_value_temp5
+0x47c2 mem_key_value_temp6
+0x47c3 mem_key0_press
+0x47d7 mem_key0_release
+0x47eb mem_key1_press
+0x47f9 mem_key1_release
+0x4807 mem_key2_press
+0x4815 mem_key2_release
+0x4823 mem_key3_press
+0x4831 mem_key3_release
+0x483f mem_key4_press
+0x484d mem_key4_release
+0x485b mem_key5_press
+0x4869 mem_key5_release
+0x4877 mem_queue_ele_num
+0x4878 mem_queue_read
+0x487a mem_queue_write
+0x487c mem_queue_start
+0x487c mem_data_ele0
+0x4886 mem_data_ele1
+0x4890 mem_data_ele2
+0x489a mem_data_ele3
+0x48a4 mem_data_ele4
+0x48ae mem_data_ele5
+0x48b8 mem_queue_end
+0x48b8 mem_queue_temp
+0x48ba mem_shutter_key_data_flag
+0x48bb mem_shutter_key_data_flag_1
+0x48bc mem_le_find_type_value_start_handle
+0x48be mem_le_find_type_value_end_handle
+0x48c0 mem_shutter_find_type_value_flag
+0x48c1 mem_le_uuid
+0x48c2 mem_send_updata_le_param_timer
+0x48c3 mem_le_smp_key_dist
+0x48c6 mem_ltk_states
+0x48c7 mem_shutter_conn_update_timer
+0x48c8 mem_empty_count
+0x48c9 mem_shutter_notification_len
+0x48ca mem_shutter_notification_addr
+0x48cc mem_shutter_le_att_list
+0x4ac0 mem_timeout_disconnect_timer
+0x4ac1 mem_shutter_att_list_patch
+0x4b48 mem_le_app_peer_addr
+0x4b4b mem_app_peer_addr
+0x4b51 mem_le_conn_state
+0x4b52 mem_le_conn_sm
+0x4b53 mem_le_work_data_send_flag
+0x4b54 mem_le_car_write_cmd_data
+0x4b54 mem_le_car_write_cmd_head
+0x4b58 mem_le_car_write_cmd_data1
+0x4b5d mem_le_car_write_cmd_control
+0x4b5f mem_le_car_write_cmd_check_sum
+0x4b60 mem_queue_ele_num_patch
+0x4b61 mem_queue_read_patch
+0x4b63 mem_queue_write_patch
+0x4b65 mem_queue_start_patch
+0x4b65 mem_data_ele0_patch
+0x4b79 mem_data_ele1_patch
+0x4b8d mem_data_ele2_patch
+0x4ba1 mem_data_ele3_patch
+0x4bb5 mem_data_ele4_patch
+0x4bc9 mem_data_ele5_patch
+0x4bdd mem_queue_end_patch
+0x4bdd mem_queue_temp_patch
+0x4bdf mem_le_sleep_conn_timeout
+0x4be1 mem_slave_addr
+0x4be7 mem_uart_mouse_data_buff
+0x4bf2 mem_le_slave_peer_addr
+0x4bf8 mem_le_send_write_request_count
Index: ble fast connect receive/output/otp.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/otp.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/otp.dat	(working copy)
@@ -0,0 +1,12 @@
+00
+02
+aa
+55
+00
+00
+aa
+55
+00
+00
+82
+78
Index: ble fast connect receive/output/otp.rom
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/otp.rom	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/otp.rom	(working copy)
@@ -0,0 +1,16384 @@
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
Index: ble fast connect receive/output/program.lis
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/program.lis	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/program.lis	(working copy)
@@ -0,0 +1,27045 @@
+include "bt_format "
+org 0x0000
+0000 c5128007 bmark1 mark_ext_patch ,patch_ext 
+0001 c0018014 beq patch00_3 ,p_main_loop 
+0002 c0430228 beq patch10_6 ,p_shutdown_radio 
+0003 c04501f1 beq patch11_2 ,p_set_freq_tx 
+0004 c045824a beq patch11_3 ,p_initialize_radio_cont 
+0005 c05a0034 beq patch16_4 ,p_app_init 
+0006 20203b31 branch assert 
+
+patch_ext:
+0007 c00180ce beq patch20_3 ,p_le_master_dispatch_end 
+0008 c00c8220 beq patch23_1 ,p_le_transmit 
+0009 c0158072 beq patch25_3 ,p_le_scan 
+000a c01700c5 beq patch25_6 ,p_le_conn 
+000b c019001d beq patch26_2 ,p_le_prepare_smp1 
+000c c01980b2 beq patch26_3 ,p_le_prepare_att 
+000d c01f0093 beq patch27_6 ,p_le_parse_att 
+000e c04a81ea beq patch32_5 ,p_gpio_set_before_lpm_common 
+000f c06c005a beq patch3b_0 ,p_shutter_init_end 
+0010 c06c81bb beq patch3b_1 ,p_shutter_le_bb_event_100ms_loop 
+0011 c06e0131 beq patch3b_4 ,p_shutter_le_key_process 
+0012 c07b8085 beq patch3e_7 ,p_check_51cmd_once 
+0013 20203b31 branch assert 
+
+p_main_loop:
+0014 d8e0000e arg uart_rx_timer ,queue 
+0015 20407ee2 call timer_check 
+0016 245a0019 ncall p_main_loop_next ,blank 
+0017 2040001a call p_uart_send_data_timer_init 
+0018 20400093 call p_le_parse_att 
+
+p_main_loop_next:
+0019 2020301b branch main_loop + 2 
+
+p_uart_send_data_timer_init:
+001a 5800000e setarg timer_uart_send_data_delay 
+001b d8e0000e arg uart_rx_timer ,queue 
+001c 20207ed4 branch timer_init 
+
+p_le_prepare_smp1:
+001d 6800c46b fetch 1 ,mem_le_l2cap 
+
+p_le_prepare_smp0:
+001e c000ccbb beq smp_pairing_request ,le_send_smp_pairing_request 
+001f c001002c beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0020 c001ccda beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0021 c0024ce8 beq smp_pairing_random ,le_send_smp_pairing_random 
+0022 c002cced beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0023 c0034cf2 beq smp_encryption_information ,le_send_smp_encryption_information 
+0024 c003cd10 beq smp_master_identification ,le_send_smp_master_identification 
+0025 c0044d27 beq smp_identity_information ,le_send_smp_identity_information 
+0026 c004cd2d beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0027 c0054d32 beq smp_signing_information ,le_send_smp_signing_information 
+0028 c005cd35 beq smp_security_request ,le_send_smp_security_request 
+0029 c0064d39 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+002a c006cd64 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+002b 20203b31 branch assert 
+
+p_le_send_smp_pairing_response:
+002c 59000302 setarg param_smp_paring_response 
+002d 600244dc store 4 ,mem_le_pres 
+002e 58010010 setarg param_smp_key_dist2 
+002f e0a18000 istore 3 ,contw 
+0030 680344dd fetch 6 ,mem_le_pres + 1 
+0031 6003446c store 6 ,mem_le_l2cap_response 
+0032 1800040b force 11 ,temp 
+0033 20204f89 branch le_send_packet 
+
+p_app_init:
+0034 6800c132 fetch 1 ,mem_device_option 
+0035 203a3d4b branch app_init ,blank 
+0036 c001c00c beq dvc_op_kb ,kb_init 
+0037 c004803c beq dvc_op_shutter ,p_shutter_init 
+0038 c00559dd beq dvc_op_module ,module_init 
+0039 c2835dca bbit1 dvc_op_mouse ,mouse_init 
+003a c283c00c bbit1 dvc_op_keyboard ,kb_init 
+003b 20600000 rtn 
+
+p_shutter_init:
+003c 20758000 rtn wake 
+003d 204074fd call init_shutter_le_att_list 
+003e df200087 arg 135 ,loopcnt 
+003f d8a049b2 arg mem_shutter_le_att_list + 230 ,contw 
+0040 d8c04ac1 arg mem_shutter_att_list_patch ,contr 
+0041 20407ecd call memcpy 
+0042 204075c9 call shutter_init_param 
+0043 70808100 hjam 0x00 ,core_gpio_sel1 
+0044 204073a5 call shutter_key_init 
+0045 5800737c setarg shutter_le_before_hibernate 
+0046 6001428c store 2 ,mem_cb_before_hibernate 
+0047 5800748c setarg shutter_le_process_lpm_before 
+0048 6001428e store 2 ,mem_cb_before_lpm 
+0049 58007365 setarg shutter_le_discovery_timeout_sleep 
+004a 60014298 store 2 ,mem_cb_discovry_timeout 
+004b 5800737a setarg scale_process_idle 
+004c 60014294 store 2 ,mem_cb_idle_process 
+004d 58007371 setarg scale_process 
+004e 60014290 store 2 ,mem_cb_le_process 
+004f 580000bc setarg p_scale_process_bb_event 
+0050 60014296 store 2 ,mem_cb_bb_event_process 
+0051 204001c6 call p_shutter_uart_init 
+0052 580072ef setarg shutter_le_scale_lpm_lock 
+0053 6001428a store 2 ,mem_cb_check_wakelock 
+0054 580074f4 setarg shutter_le_receive_data 
+0055 6001429a store 2 ,mem_cb_att_write 
+0056 20400101 call p_shutter_le_queue_init 
+0057 70421200 jam 0 ,mem_lpm_mult 
+0058 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+0059 202072ad branch shutter_init0 + 5 
+
+p_shutter_init_end:
+005a 6800c755 fetch 1 ,mem_hard_soft_switch_case 
+005b c000005d beq hard_switch ,p_shutter_le_hard_switch_power_on_signal 
+005c 202072b1 branch shutter_init0 + 9 
+
+p_shutter_le_hard_switch_power_on_signal:
+005d 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+005e 70475b01 jam 1 ,mem_enable_key_scan 
+005f 20407382 call shutter_ui_led_init 
+0060 58004771 setarg mem_power_on_led_style 
+0061 2040738e call shutter_ui_led_send 
+
+p_in_poweron_hard_switch_led:
+0062 20407d44 call ui_led_blink_polling 
+0063 6800c713 fetch 1 ,mem_led_blink_count 
+0064 243a0062 nbranch p_in_poweron_hard_switch_led ,blank 
+
+p_shutter_le_soft_switch_power_on_signal:
+0065 7043f901 jam on ,mem_le_scan_enable 
+0066 58000000 setarg 0 
+0067 60024729 store 4 ,mem_shutter_send_data 
+0068 20407382 call shutter_ui_led_init 
+0069 68014748 fetch 2 ,mem_le_sleep_timeout 
+006a 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+006b 2020006c branch p_shutter_le_fast_scan 
+
+p_shutter_le_fast_scan:
+006c 68014748 fetch 2 ,mem_le_sleep_timeout 
+006d 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+006e 7048bb00 jam 0 ,mem_shutter_key_data_flag_1 
+006f 7043f901 jam on ,mem_le_scan_enable 
+0070 58004763 setarg mem_fast_adv_led_style 
+0071 2020738e branch shutter_ui_led_send 
+
+p_le_scan:
+0072 68030304 fetch 6 ,mem_le_rxbuf + 2 
+0073 60030372 store 6 ,mem_le_plap 
+0074 68030372 fetch 6 ,mem_le_plap 
+0075 680b452c fetcht 6 ,mem_le_conn_peer_addr 
+0076 98467c00 isub temp ,null 
+0077 2022cbb4 branch le_create_conn ,zero 
+0078 20200079 branch p_le_addr_compare 
+
+p_le_addr_compare:
+0079 68030372 fetch 6 ,mem_le_plap 
+007a 680b4bf2 fetcht 6 ,mem_le_slave_peer_addr 
+007b 98467c00 isub temp ,null 
+007c 24628000 nrtn zero 
+007d 68030372 fetch 6 ,mem_le_plap 
+007e 60034b4b store 6 ,mem_app_peer_addr 
+007f 7043f71c jam 28 ,mem_le_conn_interval 
+0080 58000100 setarg 0x100 
+0081 60014539 store 2 ,mem_le_conn_superto 
+0082 7043f900 jam off ,mem_le_scan_enable 
+0083 704b5101 jam 1 ,mem_le_conn_state 
+0084 20203e69 branch app_ble_start_conn 
+
+p_check_51cmd_once:
+0085 20407d80 call ui_ipc_get_lock 
+0086 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+0087 20407f95 call fifo_out 
+0088 1fe20400 copy pdata ,temp 
+0089 20407d84 call ui_ipc_put_lock 
+008a 18427e00 copy temp ,pdata 
+008b 207a0000 rtn blank 
+008c c00b008e beq bt_cmd_le_start_conn ,p_check_51cmd_le_start_con 
+008d 20207db3 branch check_51cmd_once + 9 
+
+p_check_51cmd_le_start_con:
+008e 7043f901 jam on ,mem_le_scan_enable 
+008f 7042711b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0090 68034b4b fetch 6 ,mem_app_peer_addr 
+0091 6003452c store 6 ,mem_le_conn_peer_addr 
+0092 20600000 rtn 
+
+p_le_parse_att:
+0093 e8c18000 ifetch 3 ,contr 
+0094 6001839a store 3 ,mem_le_att_opcode 
+0095 c0098099 beq attop_write_response ,p_le_parse_att_write_response 
+0096 c00d8098 beq attop_handle_value_notification ,p_le_parse_att_handle_value_notify 
+0097 20600000 rtn 
+
+p_le_parse_att_handle_value_notify:
+0098 202001df branch p_shutter_uart_tx_prepare 
+
+p_le_parse_att_write_response:
+0099 6800cbf8 fetch 1 ,mem_le_send_write_request_count 
+009a 207a0000 rtn blank 
+009b 1fe0ffff increase -1 ,pdata 
+009c 6000cbf8 store 1 ,mem_le_send_write_request_count 
+009d c00080a0 beq 1 ,p_le_att_send_write_request1 
+009e c00000a9 beq 0 ,p_le_att_send_write_request0 
+009f 20600000 rtn 
+
+p_le_att_send_write_request1:
+00a0 58000027 setarg 0x27 
+00a1 600144f8 store 2 ,mem_le_notify_handle 
+00a2 70450b02 jam 2 ,mem_le_handle_data_len 
+00a3 58000001 setarg 0x0001 
+00a4 6001450c store 2 ,mem_le_handle_data 
+00a5 704b5200 jam 0 ,mem_le_conn_sm 
+00a6 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00a7 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00a8 20204bd6 branch le_xtype_fifo_in 
+
+p_le_att_send_write_request0:
+00a9 58000060 setarg 0x60 
+00aa 600144f8 store 2 ,mem_le_notify_handle 
+00ab 70450b02 jam 2 ,mem_le_handle_data_len 
+00ac 58000001 setarg 0x0001 
+00ad 6001450c store 2 ,mem_le_handle_data 
+00ae 704b5200 jam 0 ,mem_le_conn_sm 
+00af 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00b0 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00b1 20204bd6 branch le_xtype_fifo_in 
+
+p_le_prepare_att:
+00b2 6800c46b fetch 1 ,mem_le_l2cap 
+00b3 c00900b5 beq attop_write_request ,p_le_send_att_write_request 
+00b4 20204c2b branch le_prepare_att + 5 
+
+p_le_send_att_write_request:
+
+p_le_send_att_write_request_end:
+00b5 680144f8 fetch 2 ,mem_le_notify_handle 
+00b6 6001446c store 2 ,mem_le_l2cap_response 
+00b7 6800c50b fetch 1 ,mem_le_handle_data_len 
+00b8 1fe27200 copy pdata ,loopcnt 
+00b9 d8c0450c arg mem_le_handle_data ,contr 
+00ba 20407ecd call memcpy 
+00bb 20204f81 branch le_send_autolen 
+
+p_scale_process_bb_event:
+00bc 1a627e00 copy regc ,pdata 
+00bd c016f475 beq bt_evt_button_up ,shutter_bb_event_button_up 
+00be c008747a beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+00bf c00a7334 beq bt_evt_le_connected ,scale_process_le_conn 
+00c0 c00a80ec beq bt_evt_le_disconnected ,p_scale_process_le_discon 
+00c1 1fe1040f and pdata ,0x0f ,temp 
+00c2 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+00c3 c02872fd beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+00c4 20600000 rtn 
+
+p_le_conn:
+00c5 68014bdf fetch 2 ,mem_le_sleep_conn_timeout 
+00c6 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+00c7 5800477f setarg mem_connected_led_style 
+00c8 2040738e call shutter_ui_led_send 
+00c9 704b5101 jam 1 ,mem_le_conn_state 
+00ca 70475b01 jam 1 ,mem_enable_key_scan 
+00cb 704b5221 jam conn_sm_send_write_req ,mem_le_conn_sm 
+00cc 20404bc2 call le_create_conn + 14 
+00cd 20600000 rtn 
+
+p_le_master_dispatch_end:
+00ce 68008005 fetch 1 ,mem_le_conn_rcv 
+00cf 1fe0fe01 increase 1 ,pdata 
+00d0 60008005 store 1 ,mem_le_conn_rcv 
+00d1 20404b51 call le_acknowledge 
+00d2 204000d5 call p_le_master_sm 
+00d3 7854fc00 disable master 
+00d4 20600000 rtn 
+
+p_le_master_sm:
+00d5 6800cb52 fetch 1 ,mem_le_conn_sm 
+00d6 c01080da beq conn_sm_send_write_req ,p_le_data_send_write_req 
+00d7 c01280e4 beq conn_sm_wait_write_res ,p_le_data_wait_write_res 
+00d8 c01300eb beq conn_sm_wait_write_res1 ,p_le_data_wait_write_res1 
+00d9 20600000 rtn 
+
+p_le_data_send_write_req:
+00da 5800001a setarg 0x1a 
+00db 600144f8 store 2 ,mem_le_notify_handle 
+00dc 70450b02 jam 2 ,mem_le_handle_data_len 
+00dd 58000001 setarg 0x0001 
+00de 6001450c store 2 ,mem_le_handle_data 
+00df 704b5200 jam 0 ,mem_le_conn_sm 
+00e0 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00e1 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00e2 20404bd6 call le_xtype_fifo_in 
+00e3 20600000 rtn 
+
+p_le_data_wait_write_res:
+00e4 704b5226 jam conn_sm_wait_write_res1 ,mem_le_conn_sm 
+00e5 7009bd02 jam attop_exchange_mtu_request ,mem_fifo_temp 
+00e6 20404bd6 call le_xtype_fifo_in 
+00e7 6801470b fetch 2 ,mem_ui_state_map 
+00e8 79207e09 set1 ui_state_ble_connected ,pdata 
+00e9 6001470b store 2 ,mem_ui_state_map 
+00ea 20600000 rtn 
+
+p_le_data_wait_write_res1:
+00eb 20600000 rtn 
+
+p_scale_process_le_discon:
+00ec 58000000 setarg 0 
+00ed 6003452c store 6 ,mem_le_conn_peer_addr 
+00ee 704bf802 jam 2 ,mem_le_send_write_request_count 
+00ef 704b5100 jam 0 ,mem_le_conn_state 
+00f0 70421200 jam 0 ,mem_lpm_mult 
+00f1 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+00f2 7044b200 jam 0 ,mem_ltk_exists 
+00f3 7048c600 jam default_states ,mem_ltk_states 
+00f4 7048c000 jam 0 ,mem_shutter_find_type_value_flag 
+00f5 20400106 call p_shutter_le_queue_clear 
+00f6 68014748 fetch 2 ,mem_le_sleep_timeout 
+00f7 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+00f8 6800c743 fetch 1 ,mem_le_sleep_flag 
+00f9 c0807369 bne 0 ,shutter_le_sleep_enter 
+00fa 2040006c call p_shutter_le_fast_scan 
+00fb 70474600 jam pair_unknown ,mem_pair_state 
+00fc 58000000 setarg 0 
+00fd 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+00fe 58000000 setarg 0 
+00ff 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+0100 20207363 branch shutter_le_tx_buff_unuse 
+
+p_shutter_le_queue_init:
+0101 704b6000 jam 0 ,mem_queue_ele_num_patch 
+0102 58004b65 setarg mem_queue_start_patch 
+0103 60014b61 store 2 ,mem_queue_read_patch 
+0104 60014b63 store 2 ,mem_queue_write_patch 
+0105 20600000 rtn 
+
+p_shutter_le_queue_clear:
+0106 20200101 branch p_shutter_le_queue_init 
+
+p_shutter_le_queue_put:
+0107 78547c00 disable user 
+0108 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0109 2fe1fe06 compare queue_ele_count_patch ,pdata ,0xff 
+010a 20608000 rtn true 
+010b 78347c00 enable user 
+010c 68014b63 fetch 2 ,mem_queue_write_patch 
+010d 1fe20a00 copy pdata ,contw 
+010e 18420c00 copy temp ,contr 
+010f 20407ecd call memcpy 
+0110 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0111 1fe0fe01 increase 1 ,pdata 
+0112 6000cb60 store 1 ,mem_queue_ele_num_patch 
+0113 58004b63 setarg mem_queue_write_patch 
+0114 20200115 branch p_shutter_le_queue_increase 
+
+p_shutter_le_queue_increase:
+0115 1fe22200 copy pdata ,rega 
+0116 d8404bdd arg mem_queue_end_patch ,temp 
+0117 ea210000 ifetch 2 ,rega 
+0118 1fe0fe14 increase queue_ele_length_patch ,pdata 
+0119 98467c00 isub temp ,null 
+011a 2421011c nbranch p_shutter_le_queue_put_end ,positive 
+011b 58004b65 setarg mem_queue_start_patch 
+
+p_shutter_le_queue_put_end:
+011c e2210000 istore 2 ,rega 
+011d 20600000 rtn 
+
+p_shutter_le_queue_get:
+011e 78547c00 disable user 
+011f 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0120 207a0000 rtn blank 
+0121 78347c00 enable user 
+0122 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0123 1fe0ffff increase -1 ,pdata 
+0124 6000cb60 store 1 ,mem_queue_ele_num_patch 
+0125 68014b61 fetch 2 ,mem_queue_read_patch 
+0126 60014bdd store 2 ,mem_queue_temp_patch 
+0127 58004b61 setarg mem_queue_read_patch 
+0128 20400115 call p_shutter_le_queue_increase 
+0129 68014bdd fetch 2 ,mem_queue_temp_patch 
+012a 20600000 rtn 
+
+p_shutter_le_queue_read_point:
+012b 78547c00 disable user 
+012c 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+012d 207a0000 rtn blank 
+012e 78347c00 enable user 
+012f 68014b61 fetch 2 ,mem_queue_read_patch 
+0130 20600000 rtn 
+
+p_shutter_le_key_process:
+0131 6800c7a9 fetch 1 ,mem_shutter_key_num 
+0132 207a0000 rtn blank 
+0133 204073af call shutter_shutter_scan_key 
+0134 24347d28 nbranch lpm_button_clean_wake_lock ,user 
+0135 20407d26 call lpm_button_get_wake_lock 
+0136 78547c00 disable user 
+0137 68014bdf fetch 2 ,mem_le_sleep_conn_timeout 
+0138 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+0139 6800cb51 fetch 1 ,mem_le_conn_state 
+013a c000006c beq 0 ,p_shutter_le_fast_scan 
+013b 204074de call shutter_shutter_cancel_key_shake 
+013c 20210155 branch p_in_le_key_process_end ,positive 
+013d 680147b6 fetch 2 ,mem_key_value_temp 
+013e 600147c0 store 2 ,mem_key_value_temp4 
+013f 7047c200 jam 0 ,mem_key_value_temp6 
+0140 18000e00 force 0 ,queue 
+
+p_shutter_le_key_lp1:
+0141 680147b8 fetch 2 ,mem_key_value 
+0142 1fe30400 rshift pdata ,temp 
+0143 600947b8 storet 2 ,mem_key_value 
+0144 1fe17e01 and pdata ,0x01 ,pdata 
+0145 680947c0 fetcht 2 ,mem_key_value_temp4 
+0146 18412201 and temp ,0x01 ,rega 
+0147 18430400 rshift temp ,temp 
+0148 600947c0 storet 2 ,mem_key_value_temp4 
+0149 9a22fc00 ixor rega ,null 
+014a 24428159 ncall p_shutter_le_send_key_data ,zero 
+014b 6800c7a9 fetch 1 ,mem_shutter_key_num 
+014c 6808c7c2 fetcht 1 ,mem_key_value_temp6 
+014d 18408401 increase 1 ,temp 
+014e 6008c7c2 storet 1 ,mem_key_value_temp6 
+014f 18420e00 copy temp ,queue 
+0150 98e2fc00 ixor queue ,null 
+0151 24228141 nbranch p_shutter_le_key_lp1 ,zero 
+0152 680147b6 fetch 2 ,mem_key_value_temp 
+0153 600147b8 store 2 ,mem_key_value 
+0154 20600000 rtn 
+
+p_in_le_key_process_end:
+0155 58000000 setarg 0 
+0156 600147b6 store 2 ,mem_key_value_temp 
+0157 600147b8 store 2 ,mem_key_value 
+0158 20600000 rtn 
+
+p_shutter_le_send_key_data:
+0159 1a227e00 deposit rega 
+015a 203a0177 branch p_in_le_key_is_release ,blank 
+015b 18e27e00 copy queue ,pdata 
+015c c000017d beq 0 ,p_in_le_send_key0_press 
+015d c0008184 beq 1 ,p_in_le_send_key1_press 
+015e c001018b beq 2 ,p_in_le_send_key2_press 
+015f c0018192 beq 3 ,p_in_le_send_key3_press 
+
+p_in_le_send_lable:
+0160 e8408000 ifetch 1 ,temp 
+0161 207a0000 rtn blank 
+0162 6000c7ba store 1 ,mem_key_packet_count 
+0163 18408401 increase 1 ,temp 
+0164 600947bb storet 2 ,mem_key_next_addr 
+
+p_in_le_send_lp1:
+0165 680147bb fetch 2 ,mem_key_next_addr 
+0166 efe88000 ifetcht 1 ,pdata 
+0167 18427200 copy temp ,loopcnt 
+0168 98408400 iadd temp ,temp 
+0169 600947bb storet 2 ,mem_key_next_addr 
+016a 1fe20400 copy pdata ,temp 
+016b 20400107 call p_shutter_le_queue_put 
+016c 6800c7ba fetch 1 ,mem_key_packet_count 
+016d 1fe0ffff increase -1 ,pdata 
+016e 6000c7ba store 1 ,mem_key_packet_count 
+016f 24228165 nbranch p_in_le_send_lp1 ,zero 
+0170 20200171 branch p_le_send_packet 
+
+p_le_send_packet:
+0171 2040012b call p_shutter_le_queue_read_point 
+0172 24740000 nrtn user 
+0173 78547c00 disable user 
+0174 7009bd12 jam attop_write_request ,mem_fifo_temp 
+0175 20404bd6 call le_xtype_fifo_in 
+0176 2020735f branch shutter_le_tx_buff_inuse 
+
+p_in_le_key_is_release:
+0177 18e27e00 copy queue ,pdata 
+0178 c0000199 beq 0 ,p_in_le_send_key0_rel 
+0179 c00081a0 beq 1 ,p_in_le_send_key1_rel 
+017a c00101a7 beq 2 ,p_in_le_send_key2_rel 
+017b c00181ae beq 3 ,p_in_le_send_key3_rel 
+017c 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key0_press:
+017d 704b5e01 jam 0x01 ,mem_le_car_write_cmd_control + 1 
+017e d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+017f df200007 arg 7 ,loopcnt 
+0180 204001b5 call p_calc_check_sum_start 
+0181 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+0182 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+0183 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key1_press:
+0184 704b5e02 jam 0x02 ,mem_le_car_write_cmd_control + 1 
+0185 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+0186 df200007 arg 7 ,loopcnt 
+0187 204001b5 call p_calc_check_sum_start 
+0188 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+0189 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+018a 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key2_press:
+018b 704b5d01 jam 0x01 ,mem_le_car_write_cmd_control 
+018c d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+018d df200007 arg 7 ,loopcnt 
+018e 204001b5 call p_calc_check_sum_start 
+018f 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+0190 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+0191 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key3_press:
+0192 704b5d02 jam 0x02 ,mem_le_car_write_cmd_control 
+0193 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+0194 df200007 arg 7 ,loopcnt 
+0195 204001b5 call p_calc_check_sum_start 
+0196 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+0197 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+0198 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key0_rel:
+0199 704b5e00 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+019a d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+019b df200007 arg 7 ,loopcnt 
+019c 204001b5 call p_calc_check_sum_start 
+019d 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+019e d8404b54 arg mem_le_car_write_cmd_data ,temp 
+019f 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key1_rel:
+01a0 704b5e00 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+01a1 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01a2 df200007 arg 7 ,loopcnt 
+01a3 204001b5 call p_calc_check_sum_start 
+01a4 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01a5 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01a6 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key2_rel:
+01a7 704b5d00 jam 0x00 ,mem_le_car_write_cmd_control 
+01a8 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01a9 df200007 arg 7 ,loopcnt 
+01aa 204001b5 call p_calc_check_sum_start 
+01ab 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01ac d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01ad 20200160 branch p_in_le_send_lable 
+
+p_in_le_send_key3_rel:
+01ae 704b5d00 jam 0x00 ,mem_le_car_write_cmd_control 
+01af d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01b0 df200007 arg 7 ,loopcnt 
+01b1 204001b5 call p_calc_check_sum_start 
+01b2 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01b3 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01b4 20200160 branch p_in_le_send_lable 
+
+p_calc_check_sum_start:
+01b5 da200000 arg 0 ,rega 
+
+p_calc_check_sum_loop:
+01b6 e8c08000 ifetch 1 ,contr 
+01b7 9a20a200 iadd rega ,rega 
+01b8 c20001b6 loop p_calc_check_sum_loop 
+
+p_calc_check_sum_and:
+01b9 1a217eff and rega ,0xff ,pdata 
+01ba 20600000 rtn 
+
+p_shutter_le_bb_event_100ms_loop:
+01bb 2040731f call shutter_le_shutter_fast_adv_timer 
+01bc 20407313 call shutter_app_updata_le_param_timer 
+01bd 202072fe branch shutter_le_bb_event_100ms_loop 
+
+p_shutter_ui_power_timeout_timer:
+01be 6800c75a fetch 1 ,mem_power_timer 
+01bf 207a0000 rtn blank 
+01c0 1fe0ffff increase -1 ,pdata 
+01c1 6000c75a store 1 ,mem_power_timer 
+01c2 247a0000 nrtn blank 
+01c3 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+01c4 c0008065 beq shutter_power_on ,p_shutter_le_soft_switch_power_on_signal 
+01c5 2020748a branch shutter_shutter_power_off_signal 
+
+p_shutter_uart_init:
+01c6 70808104 hjam 0x4 ,core_gpio_sel1 
+01c7 68120078 hfetch 4 ,core_gpio_pu0 
+01c8 79207e07 set1 7 ,pdata 
+01c9 60120078 hstore 4 ,core_gpio_pu0 
+01ca 70804301 hjam 0x01 ,core_uart_clksel 
+01cb 58004000 setarg mem_shutter_rx_buf 
+01cc 60110054 hstore 2 ,core_uart_rsaddr 
+01cd 58004030 setarg mem_shutter_rx_buf_end 
+01ce 60110056 hstore 2 ,core_uart_readdr 
+01cf 58001f00 setarg mem_shutter_tx_buf 
+01d0 6011005a hstore 2 ,core_uart_tsaddr 
+01d1 58001f10 setarg mem_shutter_tx_buf_end 
+01d2 6011005c hstore 2 ,core_uart_teaddr 
+01d3 58004000 setarg mem_shutter_rx_buf 
+01d4 60110058 hstore 2 ,core_uart_rrptr 
+01d5 58001f00 setarg mem_shutter_tx_buf 
+01d6 6011005e hstore 2 ,core_uart_twptr 
+01d7 60110060 hstore 2 ,core_uart_trptrp 
+01d8 580001a0 setarg uart_baud_115200 
+01d9 60110052 hstore 2 ,core_uart_baud 
+01da 68110050 hfetch 2 ,core_clkoff 
+01db 793ffe0f set0 clock_off_uart ,pdata 
+01dc 60110050 hstore 2 ,core_clkoff 
+01dd 70806281 hjam 0x81 ,core_uart_ctrl 
+01de 20600000 rtn 
+
+p_shutter_uart_tx_prepare:
+01df 6803830b fetch 7 ,mem_le_rxbuf + 9 
+01e0 6003cbea store 7 ,mem_uart_mouse_data_buff + 3 
+
+p_shutter_uart_tx_prepare_next:
+01e1 704be702 jam 0x02 ,mem_uart_mouse_data_buff 
+01e2 704be829 jam 0x29 ,mem_uart_mouse_data_buff + 1 
+01e3 704be908 jam 0x08 ,mem_uart_mouse_data_buff + 2 
+01e4 6811005e hfetch 2 ,core_uart_twptr 
+01e5 1fe21400 copy pdata ,contwu 
+01e6 df20000b arg 0x0b ,loopcnt 
+01e7 d8c04be7 arg mem_uart_mouse_data_buff ,contr 
+01e8 2040633b call uart_copy_tx_bytes 
+01e9 2020631f branch uartd_send 
+
+p_gpio_set_before_lpm_common:
+01ea 68120078 hfetch 4 ,core_gpio_pu0 
+01eb 681a007c hfetcht 4 ,core_gpio_pd0 
+01ec 9841fe00 ior temp ,pdata 
+01ed 1fe47e00 invert pdata ,pdata 
+01ee 9a217e00 iand rega ,pdata 
+01ef 60120070 hstore 4 ,core_gpio_oe0 
+01f0 20600000 rtn 
+
+p_set_freq_tx:
+01f1 60088017 storet 1 ,mem_last_freq 
+01f2 1840a200 add temp ,0 ,rega 
+01f3 20403a13 call rf_write_freq 
+01f4 58000500 setarg param_pll_setup 
+01f5 20403b35 call sleep 
+
+p_txon:
+01f6 70890601 hjam 0x1 ,rfen_adc 
+01f7 7089003c hjam 0x3c ,rfen_rx 
+01f8 708901e0 hjam 0xe0 ,rfen_tx 
+01f9 70896d12 hjam 0x12 ,0x96d 
+01fa 2000000a nop 10 
+01fb 70890201 hjam 0x01 ,rfen_mdm 
+01fc 7089023d hjam 0x3d ,rfen_mdm 
+01fd 2000000a nop 10 
+01fe 708903b7 hjam 0xb7 ,rfen_sn 
+01ff 2000000a nop 10 
+0200 7089027f hjam 0x7f ,rfen_mdm 
+0201 6800cb51 fetch 1 ,mem_le_conn_state 
+0202 c0000211 beq 0 ,p_set_tx_power_5db 
+0203 6800c280 fetch 1 ,mem_tx_power 
+0204 c2800209 bbit1 tx_power_0db ,p_set_tx_power_0db 
+0205 c280820d bbit1 tx_power_3db ,p_set_tx_power_3db 
+0206 c2810211 bbit1 tx_power_5db ,p_set_tx_power_5db 
+0207 c2818215 bbit1 tx_power_f3db ,p_set_tx_power_f3db 
+0208 c2820219 bbit1 tx_power_f5db ,p_set_tx_power_f5db 
+
+p_set_tx_power_0db:
+0209 708956f0 hjam 0xf0 ,0x956 
+020a 204039f5 call txon_common 
+020b 708955d8 hjam 0xd8 ,0x955 
+020c 20600000 rtn 
+
+p_set_tx_power_3db:
+020d 708956df hjam 0xdf ,0x956 
+020e 204039f5 call txon_common 
+020f 708955df hjam 0xdf ,0x955 
+0210 20600000 rtn 
+
+p_set_tx_power_5db:
+0211 708956ff hjam 0xff ,0x956 
+0212 204039f5 call txon_common 
+0213 708955df hjam 0xdf ,0x955 
+0214 20600000 rtn 
+
+p_set_tx_power_f3db:
+0215 708956ce hjam 0xce ,0x956 
+0216 204039f5 call txon_common 
+0217 708955d8 hjam 0xd8 ,0x955 
+0218 20600000 rtn 
+
+p_set_tx_power_f5db:
+0219 708956cb hjam 0xcb ,0x956 
+021a 204039f5 call txon_common 
+021b 708955d8 hjam 0xd8 ,0x955 
+021c 20600000 rtn 
+
+p_txon_scan:
+021d 708956c0 hjam 0xc0 ,0x956 
+021e 708955d8 hjam 0xd8 ,0x955 
+021f 20600000 rtn 
+
+p_le_transmit:
+0220 20404985 call le_prep 
+0221 20400226 call p_letx_setfreq 
+0222 20404a6d call le_transmit0 
+0223 6800c132 fetch 1 ,mem_device_option 
+0224 c0055d8e beq dvc_op_module ,module_le_transmit 
+0225 20600000 rtn 
+
+p_letx_setfreq:
+0226 203681f6 branch p_txon ,match 
+0227 20204994 branch letx_setfreq0 
+
+p_shutdown_radio:
+0228 20308239 branch p_shutdown_radio0 ,is_rx 
+0229 708955d4 hjam 0xd4 ,0x955 
+022a 20000004 nop 4 
+022b 708955d2 hjam 0xd2 ,0x955 
+022c 20000004 nop 4 
+022d 708955d1 hjam 0xd1 ,0x955 
+022e 20000004 nop 4 
+022f 6800cb51 fetch 1 ,mem_le_conn_state 
+0230 c0000247 beq 0 ,p_shutdowm_radio_scan 
+0231 6800c280 fetch 1 ,mem_tx_power 
+0232 c2800237 bbit1 tx_power_0db ,p_shutdown_radio_0db 
+0233 c2808244 bbit1 tx_power_3db ,p_shutdown_radio_3db 
+0234 c2810237 bbit1 tx_power_5db ,p_shutdown_radio_5db 
+0235 c2818244 bbit1 tx_power_f3db ,p_shutdown_radio_f3db 
+0236 c2820244 bbit1 tx_power_f5db ,p_shutdown_radio_f5db 
+
+p_shutdown_radio_5db:
+
+p_shutdown_radio_0db:
+0237 708955d0 hjam 0xd0 ,0x955 
+0238 708956e0 hjam 0xe0 ,0x956 
+
+p_shutdown_radio0:
+0239 18002a00 force 0 ,radio_ctrl 
+023a 7850fc00 disable is_rx 
+023b 78507c00 disable is_tx 
+023c 782f7c00 pulse packet_end 
+023d 70890200 hjam 0x0 ,rfen_mdm 
+023e 70890100 hjam 0x0 ,rfen_tx 
+023f 70890000 hjam 0x0 ,rfen_rx 
+0240 70890300 hjam 0 ,rfen_sn 
+0241 70890470 hjam 0x70 ,rfen_msc 
+0242 70890600 hjam 0x0 ,rfen_adc 
+0243 20600000 rtn 
+
+p_shutdown_radio_f5db:
+
+p_shutdown_radio_f3db:
+
+p_shutdown_radio_3db:
+0244 708955d0 hjam 0xd0 ,0x955 
+0245 708956c0 hjam 0xc0 ,0x956 
+0246 20200239 branch p_shutdown_radio0 
+
+p_shutdowm_radio_scan:
+0247 708955d0 hjam 0xd0 ,0x955 
+0248 708956c0 hjam 0xc0 ,0x956 
+0249 20600000 rtn 
+
+p_initialize_radio_cont:
+024a 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+024b 243a0250 nbranch p_switchdpll_nocal ,blank 
+024c 20403cd2 call lpm_cal_xtal_startup 
+024d 20007530 nop 30000 
+024e 20007530 nop 30000 
+024f 20007530 nop 30000 
+
+p_switchdpll_nocal:
+0250 20403a5f call switchto_dpllclk 
+0251 70804205 hjam clksel_dpll ,core_clksel 
+0252 20000001 nop 1 
+0253 70804204 hjam clksel_xtal ,core_clksel 
+0254 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+0255 1fe17ecf and_into 0xcf ,pdata 
+0256 6010896b hstore 1 ,rf_clkpll_frac + 2 
+0257 1fe1fe30 or_into 0x30 ,pdata 
+0258 6010896b hstore 1 ,rf_clkpll_frac + 2 
+0259 20600000 rtn 
+org 0x3000
+
+start:
+3000 20403bab call lpmstate 
+
+soft_reset:
+3001 70800608 hjam lock_otp ,core_misc_ctrl 
+3002 793f8025 set0 mark_ext_patch ,mark 
+3003 44804000 bpatch patch00_0 ,mem_patch00 
+3004 6810813b hfetch 1 ,0x813b 
+3005 6000c2b8 store 1 ,mem_wakup_from_power_flag 
+3006 204060e3 call spi_ncs_gpio_init 
+3007 20800000 clear_stack 
+3008 2455ff6b ncall wait_uarttx ,wake 
+3009 204039fc call initialize_radio 
+300a 2040621d call iicd_init_12m 
+300b 20403b3c call init_param 
+300c 204042ea call l2cap_init 
+300d 793f8025 set0 mark_ext_patch ,mark 
+300e 4480c000 bpatch patch00_1 ,mem_patch00 
+300f 20406607 call rfcomm_init 
+3010 2040530c call init_lmp 
+3011 20407cef call ui_init 
+3012 20403d4b call app_init 
+3013 2455e571 ncall load_chip_option ,wake 
+3014 793f8025 set0 mark_ext_patch ,mark 
+3015 44814000 bpatch patch00_2 ,mem_patch00 
+3016 2055bd55 call app_lpm_init ,wake 
+3017 204075e0 call publickey_init 
+3018 2055bc29 call lpm_recover_clk ,wake 
+
+main_loop:
+3019 793f8025 set0 mark_ext_patch ,mark 
+301a 4481c000 bpatch patch00_3 ,mem_patch00 
+301b 204076f7 call sp_calc_sequence 
+301c 20407acf call sp_calc_sequence_256 
+301d 204075e3 call publickey_calc 
+301e 20404911 call le_dispatch 
+301f 793f8025 set0 mark_ext_patch ,mark 
+3020 44824000 bpatch patch00_4 ,mem_patch00 
+3021 20403043 call idle_dispatch 
+3022 20403d60 call app_process_idle 
+3023 2040309e call inquiry_dispatch 
+3024 2040333e call inquiry_scan_dispatch 
+3025 204033b3 call page_scan_dispatch 
+3026 20403029 call connection_dispatch 
+3027 20403c53 call lpm_dispatch 
+3028 20203019 branch main_loop 
+
+connection_dispatch:
+3029 2040302e call connection_incontext 
+302a c6848000 rtnmark0 mark_context 
+302b 793f8009 set0 mark_context ,mark 
+302c 20403260 call context_save 
+302d 2020497d branch le_disable 
+
+connection_incontext:
+302e 793f8025 set0 mark_ext_patch ,mark 
+302f 4482c000 bpatch patch00_5 ,mem_patch00 
+3030 2040329f call context_search_insniff 
+3031 2422b038 nbranch connection_nosniff ,zero 
+3032 20403246 call context_load 
+3033 1a208c01 add rega ,coffset_mode ,contr 
+3034 e8c08000 ifetch 1 ,contr 
+3035 c2804915 bbit1 mode_le ,le_conn_dispatch 
+3036 c280b188 bbit1 mode_master ,master_dispatch 
+3037 2020341f branch slave_dispatch 
+
+connection_nosniff:
+3038 793f8025 set0 mark_ext_patch ,mark 
+3039 44834000 bpatch patch00_6 ,mem_patch00 
+303a 20403269 call context_get_next 
+303b 1f227c00 copy loopcnt ,null 
+303c 20628000 rtn zero 
+303d 20403246 call context_load 
+303e 68008030 fetch 1 ,mem_state 
+303f c281b0e8 bbit1 state_inpage ,master_page 
+3040 68008031 fetch 1 ,mem_mode 
+3041 c280b188 bbit1 mode_master ,master_dispatch 
+3042 2020341f branch slave_dispatch 
+
+idle_dispatch:
+3043 6800c271 fetch 1 ,mem_hci_cmd 
+3044 207a0000 rtn blank 
+3045 c000b053 beq hci_cmd_inquiry ,idle_inquiry 
+3046 c0013058 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+3047 c001b05b beq hci_cmd_remote_name_req ,idle_remote_name_req 
+3048 c002b060 beq hci_cmd_create_conn ,idle_create_conn 
+3049 c00db050 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+304a 20403297 call context_search_conn_handle 
+304b 20628000 rtn zero 
+304c 2040329a call context_search_plap 
+304d 20628000 rtn zero 
+
+idle_exit:
+304e 70427100 jam 0 ,mem_hci_cmd 
+304f 20600000 rtn 
+
+idle_le_create_conn:
+3050 7003bf1b jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+3051 70427100 jam 0 ,mem_hci_cmd 
+3052 20600000 rtn 
+
+idle_inquiry:
+3053 7920001c set1 mark_inquiry_on ,mark 
+3054 793f801e set0 mark_inquiry_trainb ,mark 
+3055 70008eff jam param_ninquiry ,mem_ninqy_index 
+3056 70008c1f jam 31 ,mem_nfreq_index_inq 
+3057 2020304e branch idle_exit 
+
+idle_inquiry_cancel:
+3058 793f801c set0 mark_inquiry_on ,mark 
+3059 18003600 force 0 ,stop_watch 
+305a 2020304e branch idle_exit 
+
+idle_remote_name_req:
+305b 2040329a call context_search_plap 
+305c 20628000 rtn zero 
+305d 18000401 force lmp_name_req ,temp 
+305e 70016d05 jam 5 ,mem_nameres_cnt 
+305f 20203068 branch idle_start_page 
+
+idle_create_conn:
+3060 793f8025 set0 mark_ext_patch ,mark 
+3061 4483c000 bpatch patch00_7 ,mem_patch00 
+
+idle_create_conn_device:
+3062 68034273 fetch 6 ,mem_hci_plap 
+3063 203a304e branch idle_exit ,blank 
+3064 70470a01 jam reconnect_hid ,memui_reconnect_mode 
+3065 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+3066 20203067 branch idle_create_conn_cont 
+
+idle_create_conn_cont:
+3067 18000425 force lmp_version_req ,temp 
+
+idle_start_page:
+3068 793f8025 set0 mark_ext_patch ,mark 
+3069 44844001 bpatch patch01_0 ,mem_patch01 
+306a 680080f0 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 600080ef store 1 ,mem_npage_index 
+3071 70008d1f jam 31 ,mem_nfreq_index_page 
+3072 793f800c set0 mark_page_trainb ,mark 
+3073 2040327a call context_new 
+3074 2422b091 nbranch idle_page_fail ,zero 
+3075 20403b11 call get_free_amaddr 
+3076 60008077 store 1 ,mem_amaddr 
+3077 6008807c storet 1 ,mem_lmo_opcode2 
+3078 68034273 fetch 6 ,mem_hci_plap 
+3079 60030040 store 6 ,mem_plap 
+307a 793f8025 set0 mark_ext_patch ,mark 
+307b 4484c001 bpatch patch01_1 ,mem_patch01 
+307c 20407ee2 call timer_check 
+307d 18007e00 force 0 ,pdata 
+307e 2841fe01 compare lmp_name_req ,temp ,0xff 
+307f 7d20fe05 nsetflag true ,state_init_seq ,pdata 
+3080 79207e03 set1 state_inpage ,pdata 
+3081 60008030 store 1 ,mem_state 
+3082 7009bd03 jam bt_evt_reconn_started ,mem_fifo_temp 
+3083 20407d86 call ui_ipc_send_event 
+3084 18007e00 force 0 ,pdata 
+3085 7920fe04 setflag true ,smap_name_req ,pdata 
+3086 6000804c store 1 ,mem_state_map 
+3087 58000000 setarg 0 
+3088 79207e01 set1 mode_master ,pdata 
+3089 60008031 store 1 ,mem_mode 
+308a 7834fc00 enable master 
+308b 20403260 call context_save 
+308c 7854fc00 disable master 
+308d 18000e04 force page_length_timer ,queue 
+308e 68014159 fetch 2 ,mem_page_to 
+308f 20407ed4 call timer_init 
+3090 2020304e branch idle_exit 
+
+idle_page_fail:
+3091 793f8025 set0 mark_ext_patch ,mark 
+3092 44854001 bpatch patch01_2 ,mem_patch01 
+3093 68034273 fetch 6 ,mem_hci_plap 
+3094 60030040 store 6 ,mem_plap 
+3095 2841fe01 compare lmp_name_req ,temp ,0xff 
+3096 2020b098 branch idle_name_fail ,true 
+3097 2020304e branch idle_exit 
+
+idle_name_fail:
+3098 d8a00100 arg mem_tmp_buffer ,contw 
+3099 df200008 arg 8 ,loopcnt 
+309a 20407e91 call memset0 
+309b 7009bd04 jam bt_evt_reconn_failed ,mem_fifo_temp 
+309c 20407d86 call ui_ipc_send_event 
+309d 2020304e branch idle_exit 
+
+inquiry_dispatch:
+309e c68e0000 rtnmark0 mark_inquiry_on 
+309f 18000e02 force inquiry_length_timer ,queue 
+30a0 20407ee2 call timer_check 
+30a1 7d3a001c nsetflag blank ,mark_inquiry_on ,mark 
+30a2 243a30a4 nbranch inquiry_start ,blank 
+30a3 20600000 rtn 
+
+inquiry_start:
+30a4 793f8025 set0 mark_ext_patch ,mark 
+30a5 4485c001 bpatch patch01_3 ,mem_patch01 
+30a6 6809415b fetcht 2 ,mem_inq_window 
+30a7 18000e04 force 4 ,queue 
+30a8 2040379f call sniff_check_window 
+30a9 20740000 rtn user 
+30aa 20403937 call afh_clear 
+30ab 18004800 force 0 ,freq_mode 
+
+inquiry_restart:
+30ac 20618000 rtn timeout 
+30ad 793f800b set0 mark_fhs_already_good ,mark 
+30ae 793f8000 set0 mark_fhs_eir ,mark 
+
+inquiry_rx_restart:
+30af 1c40c201 add clkn_bt ,1 ,bt_clk 
+30b0 280ffe1e isolate1 mark_inquiry_trainb ,mark 
+30b1 7920c802 setflag true ,2 ,freq_mode 
+30b2 2c200400 compare 0x00 ,bt_clk ,0x02 
+30b3 2420b0d0 nbranch inquiry_receive ,true 
+
+inquiry_transmit:
+30b4 793f8025 set0 mark_ext_patch ,mark 
+30b5 44864001 bpatch patch01_4 ,mem_patch01 
+30b6 68008012 fetch 1 ,mem_inquiry_transmit 
+30b7 1fe0fe01 increase 1 ,pdata 
+30b8 60008012 store 1 ,mem_inquiry_transmit 
+30b9 2040396e call fetch_giac 
+30ba 20403967 call tx_radio_freq 
+30bb 2040398b call fetch_diac 
+30bc 20403aee call start_transmitter 
+30bd 20403af4 call start_tx_native 
+30be 20403b05 call send_access_word 
+30bf 204036c6 call end_of_packet 
+30c0 204030c2 call inquiry_check_train 
+30c1 202030ac branch inquiry_restart 
+
+inquiry_check_train:
+30c2 793f8025 set0 mark_ext_patch ,mark 
+30c3 4486c001 bpatch patch01_5 ,mem_patch01 
+30c4 6800808c fetch 1 ,mem_nfreq_index_inq 
+30c5 1fe0ffff increase -1 ,pdata 
+30c6 6000808c store 1 ,mem_nfreq_index_inq 
+30c7 20610000 rtn positive 
+30c8 70008c1f jam 31 ,mem_nfreq_index_inq 
+30c9 6800808e fetch 1 ,mem_ninqy_index 
+30ca 1fe0ffff increase -1 ,pdata 
+30cb 6000808e store 1 ,mem_ninqy_index 
+30cc 20610000 rtn positive 
+30cd 7940001e setflip mark_inquiry_trainb ,mark 
+30ce 70008eff jam param_ninquiry ,mem_ninqy_index 
+30cf 20600000 rtn 
+
+inquiry_receive:
+30d0 793f8025 set0 mark_ext_patch ,mark 
+30d1 44874001 bpatch patch01_6 ,mem_patch01 
+30d2 2040396e call fetch_giac 
+30d3 20403960 call rx_radio_freq 
+30d4 2040398b call fetch_diac 
+30d5 20403afa call start_rx_native 
+30d6 20403a7f call start_receiver 
+30d7 20403aa3 call wait_access_clkn_rt 
+30d8 202c30db branch inquiry_sync ,sync 
+30d9 204030c2 call inquiry_check_train 
+30da 202030af branch inquiry_rx_restart 
+
+inquiry_sync:
+30db 793f8025 set0 mark_ext_patch ,mark 
+30dc 4487c001 bpatch patch01_7 ,mem_patch01 
+30dd 20403a50 call save_rssi 
+30de 20403b0d call scan_mode_whiten 
+30df 20403584 call receive_packet_whitened 
+30e0 793f8001 set0 mark_rxbuf_inuse ,mark 
+30e1 c6858000 rtnmark0 mark_fhs_already_good 
+
+inquiry_receive_rtn:
+30e2 793f8025 set0 mark_ext_patch ,mark 
+30e3 44884002 bpatch patch02_0 ,mem_patch02 
+
+inquiry_receive_eir_rtn:
+30e4 68008013 fetch 1 ,mem_inquiry_rcv 
+30e5 1fe0fe01 increase 1 ,pdata 
+30e6 60008013 store 1 ,mem_inquiry_rcv 
+30e7 20600000 rtn 
+
+master_page:
+30e8 793f8025 set0 mark_ext_patch ,mark 
+30e9 4488c002 bpatch patch02_1 ,mem_patch02 
+30ea 7834fc00 enable master 
+30eb 78387c00 enable clknt 
+30ec 68014155 fetch 2 ,mem_page_interval 
+30ed 203a30f1 branch master_page_no_interval ,blank 
+30ee 18000e0d force page_interval_timer ,queue 
+30ef 20407ee2 call timer_check 
+30f0 247a0000 nrtn blank 
+
+master_page_no_interval:
+30f1 793f8025 set0 mark_ext_patch ,mark 
+30f2 44894002 bpatch patch02_2 ,mem_patch02 
+30f3 68094157 fetcht 2 ,mem_page_window 
+30f4 18000e28 force 40 ,queue 
+30f5 2040379f call sniff_check_window 
+30f6 2034312f branch page_exit ,user 
+30f7 18000e04 force page_length_timer ,queue 
+30f8 20407ee2 call timer_check 
+30f9 243a3108 nbranch page_start ,blank 
+30fa 6800804c fetch 1 ,mem_state_map 
+30fb c28230fd bbit1 smap_name_req ,master_npage_timeout 
+30fc 20203100 branch master_page_timeout 
+
+master_npage_timeout:
+30fd d8a00100 arg mem_tmp_buffer ,contw 
+30fe df200008 arg 8 ,loopcnt 
+30ff 20407e91 call memset0 
+
+master_page_timeout:
+3100 793f8025 set0 mark_ext_patch ,mark 
+3101 4489c002 bpatch patch02_3 ,mem_patch02 
+3102 70003000 jam 0 ,mem_state 
+3103 2040530d call init_lmp_work 
+3104 70470a00 jam 0 ,memui_reconnect_mode 
+3105 7009bd13 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+3106 20407d86 call ui_ipc_send_event 
+3107 2020312f branch page_exit 
+
+page_start:
+3108 793f8025 set0 mark_ext_patch ,mark 
+3109 448a4002 bpatch patch02_4 ,mem_patch02 
+310a 18001600 force 0 ,timeup 
+310b 34730200 until clkn_rt ,meet 
+310c 680080f1 fetch 1 ,mem_page_clk 
+310d 1fe0ffff increase -1 ,pdata 
+310e 9c42fe00 ixor clkn_bt ,pdata 
+310f 2fe00600 compare 0 ,pdata ,3 
+3110 2420b108 nbranch page_start ,true 
+3111 18827e00 deposit am_addr 
+3112 60008180 store 1 ,mem_fhs_am_addr 
+3113 18004c00 force 0 ,n_tx_slot 
+3114 18004800 force 0 ,freq_mode 
+
+page_restart:
+3115 793f8025 set0 mark_ext_patch ,mark 
+3116 448ac002 bpatch patch02_5 ,mem_patch02 
+3117 2021b12f branch page_exit ,timeout 
+3118 20403972 call fetch_page_bt_adr 
+3119 d9600600 arg param_rf_setup ,timeup 
+311a 34730200 until clkn_rt ,meet 
+
+page_rx_restart:
+311b 793f8025 set0 mark_ext_patch ,mark 
+311c 448b4002 bpatch patch02_6 ,mem_patch02 
+311d 680200f1 fetch 4 ,mem_page_clk 
+311e 98004200 iforce bt_clk 
+311f 1fe0fe01 increase 1 ,pdata 
+3120 600200f1 store 4 ,mem_page_clk 
+3121 280ffe0c isolate1 mark_page_trainb ,mark 
+3122 7920c802 setflag true ,2 ,freq_mode 
+3123 2c200400 compare 0x00 ,bt_clk ,0x02 
+3124 2420b145 nbranch page_receive ,true 
+3125 6800800c fetch 1 ,mem_page_transmit 
+3126 1fe0fe01 increase 1 ,pdata 
+3127 6000800c store 1 ,mem_page_transmit 
+3128 20403967 call tx_radio_freq 
+3129 20403aee call start_transmitter 
+312a 20403af4 call start_tx_native 
+312b 20403b05 call send_access_word 
+312c 204036c6 call end_of_packet 
+312d 20403136 call page_check_train 
+312e 20203115 branch page_restart 
+
+page_exit:
+312f 793f8025 set0 mark_ext_patch ,mark 
+3130 448bc002 bpatch patch02_7 ,mem_patch02 
+3131 7854fc00 disable master 
+3132 68014155 fetch 2 ,mem_page_interval 
+3133 207a0000 rtn blank 
+3134 18000e0d force page_interval_timer ,queue 
+3135 20207ed4 branch timer_init 
+
+page_check_train:
+3136 793f8025 set0 mark_ext_patch ,mark 
+3137 448c4003 bpatch patch03_0 ,mem_patch03 
+3138 6800808d fetch 1 ,mem_nfreq_index_page 
+3139 1fe0ffff increase -1 ,pdata 
+313a 6000808d store 1 ,mem_nfreq_index_page 
+313b 20610000 rtn positive 
+313c 70008d1f jam 31 ,mem_nfreq_index_page 
+313d 680080ef fetch 1 ,mem_npage_index 
+313e 1fe0ffff increase -1 ,pdata 
+313f 600080ef store 1 ,mem_npage_index 
+3140 20610000 rtn positive 
+3141 7940000c setflip mark_page_trainb ,mark 
+3142 6800c146 fetch 1 ,mem_npage 
+3143 600080ef store 1 ,mem_npage_index 
+3144 20600000 rtn 
+
+page_receive:
+3145 793f8025 set0 mark_ext_patch ,mark 
+3146 448cc003 bpatch patch03_1 ,mem_patch03 
+3147 20403960 call rx_radio_freq 
+3148 20403afa call start_rx_native 
+3149 20403a7f call start_receiver 
+314a 20403aa3 call wait_access_clkn_rt 
+314b 202c314e branch page_sync ,sync 
+314c 20403136 call page_check_train 
+314d 2020311b branch page_rx_restart 
+
+page_sync:
+314e 204036c6 call end_of_packet 
+314f 6800800d fetch 1 ,mem_page_rcv 
+3150 1fe0fe01 increase 1 ,pdata 
+3151 6000800d store 1 ,mem_page_rcv 
+3152 18003600 force 0 ,stop_watch 
+3153 680200f1 fetch 4 ,mem_page_clk 
+
+page_send_fhs:
+3154 793f8025 set0 mark_ext_patch ,mark 
+3155 448d4003 bpatch patch03_2 ,mem_patch03 
+3156 20403aec call rf_setup_time_master_slot 
+3157 20403972 call fetch_page_bt_adr 
+3158 1cc0cc01 increase 1 ,n_tx_slot 
+
+page_send_fhs_continue:
+3159 1c2143fd and_into 0x1fd ,bt_clk 
+315a 1c8149fc and_into 0x1fc ,freq_mode 
+315b 20403967 call tx_radio_freq 
+315c 20403aee call start_transmitter 
+315d 20403af4 call start_tx_native 
+315e 20403b05 call send_access_word 
+315f 1c427e00 deposit clkn_bt 
+3160 60020160 store 4 ,mem_clkn_bt 
+3161 18000800 force 0 ,am_addr 
+3162 18000202 force type_fhs ,type 
+3163 20403b0d call scan_mode_whiten 
+3164 204037ee call transmit_packet_whitened 
+
+page_wait_fhs_reply:
+3165 793f8025 set0 mark_ext_patch ,mark 
+3166 448dc003 bpatch patch03_3 ,mem_patch03 
+3167 20403aea call rf_setup_time_slave_slot 
+3168 1c21c202 or_into 0x02 ,bt_clk 
+3169 1c8149fc and_into 0x1fc ,freq_mode 
+316a 20403960 call rx_radio_freq 
+316b 20403afa call start_rx_native 
+316c 20403a7f call start_receiver 
+316d 20403aa3 call wait_access_clkn_rt 
+316e 204c36c6 call end_of_packet ,sync 
+316f 202c3175 branch page_wait_fhs_reply_ok ,sync 
+3170 68008010 fetch 1 ,mem_fhs_wait_counter 
+3171 203a3115 branch page_restart ,blank 
+3172 1fe0ffff increase -1 ,pdata 
+3173 60008010 store 1 ,mem_fhs_wait_counter 
+3174 20203154 branch page_send_fhs 
+
+page_wait_fhs_reply_ok:
+3175 793f8025 set0 mark_ext_patch ,mark 
+3176 448e4003 bpatch patch03_4 ,mem_patch03 
+3177 6800800e fetch 1 ,mem_page_rcv_fhs 
+3178 1fe0fe01 increase 1 ,pdata 
+3179 6000800e store 1 ,mem_page_rcv_fhs 
+317a 2040348d call prepare_newconn 
+
+master_newconn_loop:
+317b 20403337 call master_newconn_once 
+317c 202c3180 branch newconn_poll_responded ,sync 
+317d 204034b0 call new_conn_timeout 
+317e 243a317b nbranch master_newconn_loop ,blank 
+317f 20203115 branch page_restart 
+
+newconn_poll_responded:
+3180 793f8025 set0 mark_ext_patch ,mark 
+3181 448ec003 bpatch patch03_5 ,mem_patch03 
+3182 68008030 fetch 1 ,mem_state 
+3183 793ffe03 set0 state_inpage ,pdata 
+3184 60008030 store 1 ,mem_state 
+3185 20403499 call newconn_init 
+3186 7854fc00 disable master 
+3187 20600000 rtn 
+
+master_dispatch:
+3188 793f8025 set0 mark_ext_patch ,mark 
+3189 448f4003 bpatch patch03_6 ,mem_patch03 
+318a 7834fc00 enable master 
+318b 78387c00 enable clknt 
+318c 2040321a call role_switch_master 
+318d 20740000 rtn user 
+318e 20403d42 call check_bt_disabled 
+318f 20403aec call rf_setup_time_master_slot 
+3190 1c40c201 add clkn_bt ,1 ,bt_clk 
+3191 20403979 call fetch_self_bt_adr 
+3192 18004803 force 0x03 ,freq_mode 
+3193 204068dc call scheduler_tx_l2cap_pkt 
+3194 204034e7 call prepare_tx 
+3195 20403967 call tx_radio_freq 
+3196 20403aee call start_transmitter 
+3197 20403af4 call start_tx_native 
+3198 20403b05 call send_access_word 
+3199 204037ec call transmit_packet 
+
+master_loop:
+319a 793f8025 set0 mark_ext_patch ,mark 
+319b 448fc003 bpatch patch03_7 ,mem_patch03 
+319c 2040531f call parse_lmp 
+319d 20403328 call master_conn_recv_packet 
+319e 2436b1a4 nbranch master_notmatch ,match 
+319f 20403b2c call supervision_flush 
+31a0 204037ac call parse_l2cap 
+31a1 6800800f fetch 1 ,mem_master_rcvcnt 
+31a2 1fe0fe01 increase 1 ,pdata 
+31a3 6000800f store 1 ,mem_master_rcvcnt 
+
+master_notmatch:
+31a4 793f8025 set0 mark_ext_patch ,mark 
+31a5 44904004 bpatch patch04_0 ,mem_patch04 
+31a6 204068c0 call scheduler_process 
+31a7 204031b0 call check_master_disconnect 
+31a8 24748000 nrtn master 
+31a9 20403775 call check_attempt 
+31aa 243a31ad nbranch master_attempt ,blank 
+
+master_exit:
+31ab 7854fc00 disable master 
+31ac 20600000 rtn 
+
+master_attempt:
+31ad 204034e7 call prepare_tx 
+31ae 2040331d call master_conn_send_packet 
+31af 2020319a branch master_loop 
+
+check_master_disconnect:
+31b0 2036b1b3 branch check_master_match ,match 
+31b1 20403b22 call supervision_update 
+31b2 202131c1 branch master_disconnect ,positive 
+
+check_master_match:
+31b3 204031cd call check_disconnect_timeout 
+31b4 243431c1 nbranch master_disconnect ,user 
+31b5 6800804c fetch 1 ,mem_state_map 
+31b6 c4020000 rtnbit0 smap_name_req 
+31b7 c3818000 rtnbit1 smap_name_res 
+31b8 6800804b fetch 1 ,mem_op 
+31b9 c3818000 rtnbit1 op_disconn 
+31ba 204031d6 call conn_timer_expired 
+31bb 247a0000 nrtn blank 
+31bc 6800816d fetch 1 ,mem_nameres_cnt 
+31bd 1fe0ffff increase -1 ,pdata 
+31be 6000816d store 1 ,mem_nameres_cnt 
+31bf 247a0000 nrtn blank 
+31c0 2020561d branch lmp_disconnect 
+
+master_disconnect:
+31c1 793f8025 set0 mark_ext_patch ,mark 
+31c2 4490c004 bpatch patch04_1 ,mem_patch04 
+31c3 204034b8 call quit_connection 
+31c4 7854fc00 disable master 
+31c5 6800804c fetch 1 ,mem_state_map 
+31c6 c28231c8 bbit1 smap_name_req ,master_name_disconnect 
+31c7 20600000 rtn 
+
+master_name_disconnect:
+31c8 6800804c fetch 1 ,mem_state_map 
+31c9 c3818000 rtnbit1 smap_name_res 
+
+master_name_error:
+31ca d8a00100 arg mem_tmp_buffer ,contw 
+31cb df200008 arg 8 ,loopcnt 
+31cc 20207e91 branch memset0 
+
+check_disconnect_timeout:
+31cd 793f8025 set0 mark_ext_patch ,mark 
+31ce 44914004 bpatch patch04_2 ,mem_patch04 
+31cf 78347c00 enable user 
+31d0 6800804b fetch 1 ,mem_op 
+31d1 c4018000 rtnbit0 op_disconn 
+31d2 204031d6 call conn_timer_expired 
+31d3 247a0000 nrtn blank 
+
+disable_usr:
+31d4 78547c00 disable user 
+31d5 20600000 rtn 
+
+conn_timer_expired:
+31d6 68008072 fetch 1 ,mem_conn_timer 
+31d7 1fe0ffff increase -1 ,pdata 
+31d8 60008072 store 1 ,mem_conn_timer 
+31d9 20600000 rtn 
+
+linkkey_ready:
+31da 793f8025 set0 mark_ext_patch ,mark 
+31db 4491c004 bpatch patch04_3 ,mem_patch04 
+31dc 68008030 fetch 1 ,mem_state 
+31dd c283b1e4 bbit1 state_linkkey ,linkkey_set 
+31de 680088d9 fetch 1 ,mem_pairing_auth 
+31df 203a31e4 branch linkkey_set ,blank 
+31e0 7008d900 jam defalt_pairing_auth ,mem_pairing_auth 
+31e1 7009bd18 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+31e2 20407d86 call ui_ipc_send_event 
+31e3 202031e4 branch linkkey_set 
+
+linkkey_set:
+31e4 793f8025 set0 mark_ext_patch ,mark 
+31e5 44924004 bpatch patch04_4 ,mem_patch04 
+31e6 20403294 call context_traverse_linkkey 
+31e7 68008030 fetch 1 ,mem_state 
+31e8 79207e07 set1 state_linkkey ,pdata 
+31e9 60008030 store 1 ,mem_state 
+31ea 70425d01 jam 1 ,mem_link_key_exists 
+31eb 68008055 fetch 1 ,mem_conn_sm 
+31ec c08b31ed bne conn_sm_pairing ,linkkey_set_continue 
+
+linkkey_set_continue:
+31ed 20600000 rtn 
+
+generate_linkkey_continue:
+31ee 7008d901 jam pairing_auth ,mem_pairing_auth 
+
+clear_linkstate:
+31ef 68008030 fetch 1 ,mem_state 
+31f0 793ffe07 set0 state_linkkey ,pdata 
+31f1 60008030 store 1 ,mem_state 
+31f2 20600000 rtn 
+
+role_switch_check:
+31f3 793f8025 set0 mark_ext_patch ,mark 
+31f4 4492c004 bpatch patch04_5 ,mem_patch04 
+31f5 78547c00 disable user 
+31f6 68008030 fetch 1 ,mem_state 
+31f7 c4008000 rtnbit0 state_insniff 
+31f8 68010032 fetch 2 ,mem_tsniff 
+31f9 247a0000 nrtn blank 
+31fa 68020034 fetch 4 ,mem_sniff_anchor 
+31fb 203831fe branch role_switch_clkn ,clknt 
+31fc 9d067e00 isub clke_bt ,pdata 
+31fd 202031ff branch role_switch_clke 
+
+role_switch_clkn:
+31fe 9c467e00 isub clkn_bt ,pdata 
+
+role_switch_clke:
+31ff 1fe67c04 sub pdata ,4 ,null 
+3200 24610000 nrtn positive 
+3201 68008030 fetch 1 ,mem_state 
+3202 793ffe01 set0 state_insniff ,pdata 
+3203 60008030 store 1 ,mem_state 
+3204 78347c00 enable user 
+3205 20600000 rtn 
+
+role_switch_prepare:
+3206 1fe20400 copy pdata ,temp 
+3207 793f8025 set0 mark_ext_patch ,mark 
+3208 44934004 bpatch patch04_6 ,mem_patch04 
+3209 60020034 store 4 ,mem_sniff_anchor 
+
+role_switch_prepare0:
+320a 7045f401 jam switch_flag_accept ,mem_switch_flag 
+320b 68008030 fetch 1 ,mem_state 
+320c 79207e01 set1 state_insniff ,pdata 
+320d 60008030 store 1 ,mem_state 
+320e 18007e00 force 0 ,pdata 
+320f 60010032 store 2 ,mem_tsniff 
+3210 70007301 jam 1 ,mem_sniff_attempt 
+3211 70007400 jam 0x0 ,mem_sniff_timeout 
+3212 70008b00 jam 0x0 ,mem_current_sniff_timeout 
+3213 68020034 fetch 4 ,mem_sniff_anchor 
+3214 1c420400 copy clkn_bt ,temp 
+3215 98467e00 isub temp ,pdata 
+3216 1feb7e00 rshift2 pdata ,pdata 
+3217 1fe0fff8 increase -8 ,pdata 
+3218 6000808a store 1 ,mem_current_sniff_attempt 
+3219 20600000 rtn 
+
+role_switch_master:
+321a 793f8025 set0 mark_ext_patch ,mark 
+321b 4493c004 bpatch patch04_7 ,mem_patch04 
+321c 204031f3 call role_switch_check 
+321d 24740000 nrtn user 
+321e 78547c00 disable user 
+321f 70001120 jam param_newconnto ,mem_newconnto_counter 
+3220 793f800b set0 mark_fhs_already_good ,mark 
+
+roles_waitfhs_loop:
+3221 20403aec call rf_setup_time_master_slot 
+3222 2040332b call master_recv_packet 
+3223 c505b22f bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+3224 204034b0 call new_conn_timeout 
+3225 243a3221 nbranch roles_waitfhs_loop ,blank 
+
+role_switch_fail_master:
+3226 793f8025 set0 mark_ext_patch ,mark 
+3227 44944005 bpatch patch05_0 ,mem_patch05 
+3228 78547c00 disable user 
+3229 1c427e00 deposit clkn_bt 
+322a 6002416a store 4 ,mem_next_btclk 
+322b 78387c00 enable clknt 
+322c 7834fc00 enable master 
+322d 7009bd2a jam bt_evt_switch_fail_master ,mem_fifo_temp 
+322e 20207d86 branch ui_ipc_send_event 
+
+roles_replyto_fhs:
+322f 793f8025 set0 mark_ext_patch ,mark 
+3230 4494c005 bpatch patch05_1 ,mem_patch05 
+3231 20403aea call rf_setup_time_slave_slot 
+3232 20403320 call master_send_packet 
+3233 78587c00 disable clknt 
+3234 7854fc00 disable master 
+3235 204038a7 call apply_switch_clke 
+3236 2040348d call prepare_newconn 
+
+roles_newconns_loop:
+3237 793f8025 set0 mark_ext_patch ,mark 
+3238 44954005 bpatch patch05_2 ,mem_patch05 
+3239 204034d9 call slave_newconn_once 
+323a 2036b23e branch roles_newconns_responded ,match 
+323b 204034b0 call new_conn_timeout 
+323c 243a3237 nbranch roles_newconns_loop ,blank 
+323d 20203226 branch role_switch_fail_master 
+
+roles_newconns_responded:
+323e 68008031 fetch 1 ,mem_mode 
+323f 793ffe01 set0 mode_master ,pdata 
+3240 60008031 store 1 ,mem_mode 
+3241 20403b2c call supervision_flush 
+3242 204038d1 call calc_clke_offset 
+3243 78347c00 enable user 
+3244 7009bd2b jam bt_evt_switch_success_master ,mem_fifo_temp 
+3245 20207d86 branch ui_ipc_send_event 
+
+context_load:
+3246 793f8025 set0 mark_ext_patch ,mark 
+3247 4495c005 bpatch patch05_3 ,mem_patch05 
+3248 79200009 set1 mark_context ,mark 
+3249 1a227e00 deposit rega 
+324a 6001001e store 2 ,mem_context_ptr 
+324b 18007250 force context_size ,loopcnt 
+324c d8a00362 arg mem_le_state ,contw 
+324d 1a208c01 add rega ,coffset_mode ,contr 
+324e e8c08000 ifetch 1 ,contr 
+324f 1a220c00 copy rega ,contr 
+3250 c2807ecd bbit1 mode_le ,memcpy 
+3251 d8a00030 arg mem_state ,contw 
+3252 20407ecd call memcpy 
+3253 78577c00 disable attempt 
+3254 68008077 fetch 1 ,mem_amaddr 
+3255 98000800 iforce am_addr 
+3256 70008a01 jam 1 ,mem_current_sniff_attempt 
+3257 2034b259 branch context_load_master ,master 
+3258 70008a01 jam 1 ,mem_current_sniff_attempt 
+
+context_load_master:
+3259 68008030 fetch 1 ,mem_state 
+325a c4008000 rtnbit0 state_insniff 
+325b 68008073 fetch 1 ,mem_sniff_attempt 
+325c 6000808a store 1 ,mem_current_sniff_attempt 
+325d 68008074 fetch 1 ,mem_sniff_timeout 
+325e 6000808b store 1 ,mem_current_sniff_timeout 
+325f 20600000 rtn 
+
+context_save:
+3260 793f8025 set0 mark_ext_patch ,mark 
+3261 44964005 bpatch patch05_4 ,mem_patch05 
+3262 6801001e fetch 2 ,mem_context_ptr 
+3263 98000a00 iforce contw 
+3264 18007250 force context_size ,loopcnt 
+3265 d8c00362 arg mem_le_state ,contr 
+3266 203b7ecd branch memcpy ,le 
+3267 d8c00030 arg mem_state ,contr 
+3268 20207ecd branch memcpy 
+
+context_get_next:
+3269 6800c281 fetch 1 ,mem_context_number 
+326a 1fe27200 copy pdata ,loopcnt 
+326b 68088015 fetcht 1 ,mem_current_context 
+
+context_get_next_loop:
+326c 18408401 increase 1 ,temp 
+326d 2841fe03 compare context_num ,temp ,0xff 
+326e 2420b270 nbranch context_get_next_cont ,true 
+326f d8400000 arg 0 ,temp 
+
+context_get_next_cont:
+3270 60088015 storet 1 ,mem_current_context 
+3271 184ffe50 mul32 temp ,context_size ,pdata 
+3272 da204040 arg mem_context ,rega 
+3273 9a20a200 iadd rega ,rega 
+3274 ea208000 ifetch 1 ,rega 
+3275 c280b278 bbit1 state_insniff ,context_get_next_sniff 
+3276 c3800000 rtnbit1 state_inconn 
+3277 c3818000 rtnbit1 state_inpage 
+
+context_get_next_sniff:
+3278 c200326c loop context_get_next_loop 
+3279 20600000 rtn 
+
+context_new:
+327a 793f8025 set0 mark_ext_patch ,mark 
+327b 4496c005 bpatch patch05_5 ,mem_patch05 
+327c da6032ad arg context_search_empty ,regc 
+327d 204032a2 call context_search 
+327e 24628000 nrtn zero 
+327f 1a227e00 deposit rega 
+3280 6001001e store 2 ,mem_context_ptr 
+3281 18007c00 force 0 ,null 
+3282 20600000 rtn 
+
+context_check_all_wack:
+3283 204037a9 call check_esco_amaddr 
+3284 2020b28b branch context_check_esco_wack ,true 
+3285 6801001e fetch 2 ,mem_context_ptr 
+3286 1fe08a17 add pdata ,coffset_arq ,contw 
+3287 68008047 fetch 1 ,mem_arq 
+3288 e0a08000 istore 1 ,contw 
+3289 da6032ed arg context_check_a_wack ,regc 
+328a 202032a2 branch context_search 
+
+context_check_esco_wack:
+328b 68008047 fetch 1 ,mem_arq 
+328c 2feffe03 isolate1 wack ,pdata 
+328d 2020b290 branch context_esco_wack ,true 
+328e 18007c01 force 1 ,null 
+328f 20600000 rtn 
+
+context_esco_wack:
+3290 18007c00 force 0 ,null 
+3291 20600000 rtn 
+
+context_check_idle:
+3292 da6032ea arg context_check_inconn ,regc 
+3293 202032a2 branch context_search 
+
+context_traverse_linkkey:
+3294 6809001e fetcht 2 ,mem_context_ptr 
+3295 da603312 arg context_traverse_clearkey ,regc 
+3296 202032a2 branch context_search 
+
+context_search_conn_handle:
+3297 6808c272 fetcht 1 ,mem_hci_conn_handle 
+
+context_search_conn_handle2:
+3298 da6032b8 arg context_search_handle ,regc 
+3299 202032a2 branch context_search 
+
+context_search_plap:
+329a 793f8025 set0 mark_ext_patch ,mark 
+329b 44974005 bpatch patch05_6 ,mem_patch05 
+329c 680b4273 fetcht 6 ,mem_hci_plap 
+
+context_search_plap2:
+329d da6032b1 arg context_search_lap ,regc 
+329e 202032a2 branch context_search 
+
+context_search_insniff:
+329f da6032be arg context_search_sniff ,regc 
+32a0 202032a2 branch context_search 
+
+context_search_sniff_window:
+32a1 da603309 arg context_search_window ,regc 
+
+context_search:
+32a2 793f8025 set0 mark_ext_patch ,mark 
+32a3 4497c005 bpatch patch05_7 ,mem_patch05 
+32a4 da204040 arg mem_context ,rega 
+32a5 6800c281 fetch 1 ,mem_context_number 
+32a6 1fe27200 copy pdata ,loopcnt 
+
+context_search_loop:
+32a7 ea208000 ifetch 1 ,rega 
+32a8 1a627a00 copy regc ,pc 
+
+context_search_next:
+32a9 1a20a250 increase context_size ,rega 
+32aa c20032a7 loop context_search_loop 
+32ab 18007c01 force 1 ,null 
+32ac 20600000 rtn 
+
+context_search_empty:
+32ad c28032a9 bbit1 state_inconn ,context_search_next 
+32ae c281b2a9 bbit1 state_inpage ,context_search_next 
+32af 18007c00 force 0 ,null 
+32b0 20600000 rtn 
+
+context_search_lap:
+32b1 c281b2b3 bbit1 state_inpage ,context_search_lap_cont 
+32b2 c30032a9 bbit0 state_inconn ,context_search_next 
+
+context_search_lap_cont:
+32b3 1a208c10 add rega ,coffset_plap ,contr 
+32b4 e8c30000 ifetch 6 ,contr 
+32b5 98467c00 isub temp ,null 
+32b6 20628000 rtn zero 
+32b7 202032a9 branch context_search_next 
+
+context_search_handle:
+32b8 c30032a9 bbit0 state_inconn ,context_search_next 
+32b9 1a208c16 add rega ,coffset_conn_handle ,contr 
+32ba e8c08000 ifetch 1 ,contr 
+32bb 98467c00 isub temp ,null 
+32bc 20628000 rtn zero 
+32bd 202032a9 branch context_search_next 
+
+context_search_sniff:
+32be c300b2a9 bbit0 state_insniff ,context_search_next 
+
+context_search_sniff_loop:
+32bf 204032f6 call context_get_anchor 
+32c0 204032da call sign_pdata_temp 
+32c1 98467e00 isub temp ,pdata 
+32c2 1fe0fe01 increase 1 ,pdata 
+32c3 202132d4 branch context_search_sniff_miss ,positive 
+32c4 18c22400 copy contr ,regb 
+32c5 600489c6 store 9 ,mem_temp 
+32c6 6800c565 fetch 1 ,mem_le_sc_calc 
+32c7 243a32cc nbranch context_search_sniff_sc ,blank 
+32c8 680489c6 fetch 9 ,mem_temp 
+32c9 1a420c00 copy regb ,contr 
+32ca 1fe0fe05 increase 5 ,pdata 
+32cb 202032cf branch context_search_meet1 
+
+context_search_sniff_sc:
+32cc 680489c6 fetch 9 ,mem_temp 
+32cd 1a420c00 copy regb ,contr 
+32ce 1fe0fe14 increase 20 ,pdata 
+
+context_search_meet1:
+32cf 242132a9 nbranch context_search_next ,positive 
+
+context_search_meet:
+32d0 18424200 copy temp ,bt_clk 
+32d1 20403302 call context_next_anchor 
+32d2 18007c00 force 0 ,null 
+32d3 20600000 rtn 
+
+context_search_sniff_miss:
+32d4 98002400 iforce regb 
+32d5 1a208c02 add rega ,coffset_tsniff ,contr 
+32d6 e8c10000 ifetch 2 ,contr 
+32d7 203a32d0 branch context_search_meet ,blank 
+32d8 20403302 call context_next_anchor 
+32d9 202032bf branch context_search_sniff_loop 
+
+sign_pdata_temp:
+32da 1ff11600 rshift16 pdata ,timeup 
+32db 196c9600 rshift8 timeup ,timeup 
+32dc 2022b2e4 branch sign_pdata_temp_p0 ,zero 
+32dd 29601e0f compare 0xf ,timeup ,0xf 
+32de 24608000 nrtn true 
+32df 18511600 rshift16 temp ,timeup 
+32e0 196c9600 rshift8 timeup ,timeup 
+32e1 24628000 nrtn zero 
+32e2 7920041c set1 28 ,temp 
+32e3 20600000 rtn 
+
+sign_pdata_temp_p0:
+32e4 18511600 rshift16 temp ,timeup 
+32e5 196c9600 rshift8 timeup ,timeup 
+32e6 29601e0f compare 0xf ,timeup ,0xf 
+32e7 24608000 nrtn true 
+32e8 79207e1c set1 28 ,pdata 
+32e9 20600000 rtn 
+
+context_check_inconn:
+32ea c30032a9 bbit0 state_inconn ,context_search_next 
+32eb 18007c00 force 0 ,null 
+32ec 20600000 rtn 
+
+context_check_a_wack:
+32ed c30032a9 bbit0 state_inconn ,context_search_next 
+32ee 1a208c01 add rega ,coffset_mode ,contr 
+32ef e8c08000 ifetch 1 ,contr 
+32f0 c28032a9 bbit1 mode_le ,context_search_next 
+32f1 1a208c17 add rega ,coffset_arq ,contr 
+32f2 e8c08000 ifetch 1 ,contr 
+32f3 c301b2a9 bbit0 wack ,context_search_next 
+32f4 18007c00 force 0 ,null 
+32f5 20600000 rtn 
+
+context_get_anchor:
+32f6 1a208c01 add rega ,coffset_mode ,contr 
+32f7 e8c88000 ifetcht 1 ,contr 
+32f8 1c427e00 deposit clkn_bt 
+32f9 284ffe01 isolate1 mode_master ,temp 
+32fa 1a208c04 add rega ,coffset_sniff_anchor ,contr 
+32fb e8ca0000 ifetcht 4 ,contr 
+32fc 20608000 rtn true 
+32fd 1a208c08 add rega ,coffset_clk_offset ,contr 
+32fe e8c30000 ifetch 6 ,contr 
+32ff 204038e5 call calc_clke2 
+3300 1d027e00 deposit clke_bt 
+3301 20600000 rtn 
+
+context_next_anchor:
+3302 1a208c02 add rega ,coffset_tsniff ,contr 
+3303 1a208a04 add rega ,coffset_sniff_anchor ,contw 
+3304 e8c10000 ifetch 2 ,contr 
+3305 98409600 iadd temp ,timeup 
+3306 19627e00 deposit timeup 
+3307 e0a20000 istore 4 ,contw 
+3308 202049dc branch le_context_nexthop 
+
+context_search_window:
+3309 c300b2a9 bbit0 state_insniff ,context_search_next 
+330a 204032f6 call context_get_anchor 
+330b 9b60fe00 iadd stop_watch ,pdata 
+330c 9b60fe00 iadd stop_watch ,pdata 
+330d 98e0fe00 iadd queue ,pdata 
+330e 98467c00 isub temp ,null 
+330f 242132a9 nbranch context_search_next ,positive 
+3310 18007c00 force 0 ,null 
+3311 20600000 rtn 
+
+context_traverse_clearkey:
+3312 c30032a9 bbit0 state_inconn ,context_search_next 
+3313 18427e00 deposit temp 
+3314 9a267c00 isub rega ,null 
+3315 203f32a9 branch context_search_next ,null 
+3316 1a208c01 add rega ,coffset_mode ,contr 
+3317 e8c08000 ifetch 1 ,contr 
+3318 c28032a9 bbit1 mode_le ,context_search_next 
+3319 ea208000 ifetch 1 ,rega 
+331a 793ffe07 set0 state_linkkey ,pdata 
+331b e2208000 istore 1 ,rega 
+331c 202032a9 branch context_search_next 
+
+master_conn_send_packet:
+331d 793f8025 set0 mark_ext_patch ,mark 
+331e 44984006 bpatch patch06_0 ,mem_patch06 
+331f 20403aec call rf_setup_time_master_slot 
+
+master_send_packet:
+3320 1c40c201 add clkn_bt ,1 ,bt_clk 
+3321 20403979 call fetch_self_bt_adr 
+3322 18004803 force 0x03 ,freq_mode 
+3323 20403967 call tx_radio_freq 
+3324 20403aee call start_transmitter 
+3325 20403af4 call start_tx_native 
+3326 20403b05 call send_access_word 
+3327 202037ec branch transmit_packet 
+
+master_conn_recv_packet:
+3328 793f8025 set0 mark_ext_patch ,mark 
+3329 4498c006 bpatch patch06_1 ,mem_patch06 
+332a 20403aea call rf_setup_time_slave_slot 
+
+master_recv_packet:
+332b 1c40c201 add clkn_bt ,1 ,bt_clk 
+332c 20403979 call fetch_self_bt_adr 
+332d 18004803 force 0x03 ,freq_mode 
+332e 20403960 call rx_radio_freq 
+332f 20403481 call init_rx_packet_flags 
+3330 20403a86 call prep_crypt 
+3331 20403afa call start_rx_native 
+3332 20403a7f call start_receiver 
+
+master_rx_conn_finish_packet:
+3333 20403aa3 call wait_access_clkn_rt 
+3334 246c0000 nrtn sync 
+3335 20403a50 call save_rssi 
+3336 20203582 branch receive_packet 
+
+master_newconn_once:
+3337 793f8025 set0 mark_ext_patch ,mark 
+3338 44994006 bpatch patch06_2 ,mem_patch06 
+3339 68008180 fetch 1 ,mem_fhs_am_addr 
+333a 98000800 iforce am_addr 
+333b 18000201 force type_poll ,type 
+333c 2040331d call master_conn_send_packet 
+333d 20203328 branch master_conn_recv_packet 
+
+inquiry_scan_dispatch:
+333e 6800c133 fetch 1 ,mem_scan_mode 
+333f c4000000 rtnbit0 inq_scan_mode 
+3340 18000e05 force iscan_interval_timer ,queue 
+3341 20407ee2 call timer_check 
+3342 247a0000 nrtn blank 
+3343 6809414d fetcht 2 ,mem_iscan_window 
+3344 18000e04 force 4 ,queue 
+3345 2040379f call sniff_check_window 
+3346 20740000 rtn user 
+3347 2040334e call inquiry_scan_start 
+3348 18000e05 force iscan_interval_timer ,queue 
+3349 6801414f fetch 2 ,mem_iscan_interval 
+334a 242c7ed4 nbranch timer_init ,sync 
+334b 180a7e00 random pdata 
+334c 9ea17e00 iand mask3ff ,pdata 
+334d 20207ed4 branch timer_init 
+
+inquiry_scan_start:
+334e 793f8025 set0 mark_ext_patch ,mark 
+334f 4499c006 bpatch patch06_3 ,mem_patch06 
+3350 70018000 jam 0 ,mem_fhs_am_addr 
+3351 78587c00 disable clknt 
+3352 78577c00 disable attempt 
+3353 20403937 call afh_clear 
+3354 1c4143fc and clkn_bt ,0x1fc ,bt_clk 
+3355 18004801 force 0x01 ,freq_mode 
+3356 2040396e call fetch_giac 
+3357 20403960 call rx_radio_freq 
+3358 7940001d setflip mark_inquiry_state ,mark 
+3359 68008006 fetch 1 ,mem_inquiryscan_waitcnt 
+335a 1fe0fe01 increase 1 ,pdata 
+335b 60008006 store 1 ,mem_inquiryscan_waitcnt 
+335c 2040398b call fetch_diac 
+335d 20403a7f call start_receiver 
+335e 20403aab call wait_access_forever 
+335f 246c0000 nrtn sync 
+3360 793f8025 set0 mark_ext_patch ,mark 
+3361 449a4006 bpatch patch06_4 ,mem_patch06 
+3362 18003600 force 0 ,stop_watch 
+3363 20403992 call shutdown_radio 
+3364 68008007 fetch 1 ,mem_inquiryscan_rcvcnt 
+3365 1fe0fe01 increase 1 ,pdata 
+3366 60008007 store 1 ,mem_inquiryscan_rcvcnt 
+3367 2040396e call fetch_giac 
+3368 20403aea call rf_setup_time_slave_slot 
+3369 1c21c202 or_into 0x002 ,bt_clk 
+336a 18004801 force 0x01 ,freq_mode 
+336b 20403967 call tx_radio_freq 
+336c 2040398b call fetch_diac 
+336d 20403aee call start_transmitter 
+336e 20403aff call start_tx_external 
+336f 1c427e00 deposit clkn_bt 
+3370 60020160 store 4 ,mem_clkn_bt 
+3371 20403b05 call send_access_word 
+3372 18000202 force type_fhs ,type 
+3373 18000800 force 0 ,am_addr 
+3374 20403b0d call scan_mode_whiten 
+3375 204037ee call transmit_packet_whitened 
+3376 2040337a call send_eir 
+3377 1c2143fd and_into 0x1fd ,bt_clk 
+3378 1cc0cc01 increase 1 ,n_tx_slot 
+3379 20600000 rtn 
+
+send_eir:
+337a 793f8025 set0 mark_ext_patch ,mark 
+337b 449ac006 bpatch patch06_5 ,mem_patch06 
+337c 6800c171 fetch 1 ,mem_eir_enable 
+337d 207a0000 rtn blank 
+337e d8a001b1 arg mem_eir ,contw 
+337f 6800c5ae fetch 1 ,mem_local_name_length 
+3380 1fe27200 copy pdata ,loopcnt 
+3381 1fe0fe01 increase 1 ,pdata 
+3382 e0a08000 istore 1 ,contw 
+3383 18a20400 copy contw ,temp 
+3384 1fe0fe01 increase 1 ,pdata 
+3385 6001427e store 2 ,mem_tx_len 
+3386 18420a00 copy temp ,contw 
+3387 58000009 setarg 0x09 
+3388 e0a08000 istore 1 ,contw 
+3389 d8c045af arg mem_local_name ,contr 
+338a 20407ecd call memcpy 
+338b da604625 arg mem_all_uuid_128bits ,regc 
+338c df200004 arg 4 ,loopcnt 
+338d 2040339d call get_all_uuid 
+338e da60460f arg mem_all_uuid_16bits ,regc 
+338f df200001 arg 1 ,loopcnt 
+3390 2040339d call get_all_uuid 
+3391 1800020a force type_dm3 ,type 
+3392 70427d02 jam 2 ,mem_tx_lch 
+3393 580001b1 setarg mem_eir 
+3394 6001016e store 2 ,mem_txptr 
+3395 20403aea call rf_setup_time_slave_slot 
+3396 20403967 call tx_radio_freq 
+3397 20403aee call start_transmitter 
+3398 20403aff call start_tx_external 
+3399 20403b05 call send_access_word 
+339a 20403b0d call scan_mode_whiten 
+339b 204037ee call transmit_packet_whitened 
+339c 20600000 rtn 
+
+get_all_uuid:
+339d 18a20400 copy contw ,temp 
+339e 1a620c00 copy regc ,contr 
+339f e8c08000 ifetch 1 ,contr 
+33a0 207a0000 rtn blank 
+
+lshift_loop:
+33a1 1fe3fe00 lshift pdata ,pdata 
+33a2 c20033a1 loop lshift_loop 
+33a3 1fe22200 copy pdata ,rega 
+33a4 1fe0fe02 increase 2 ,pdata 
+33a5 1fe20e00 copy pdata ,queue 
+33a6 6801427e fetch 2 ,mem_tx_len 
+33a7 98e0fe00 iadd queue ,pdata 
+33a8 6001427e store 2 ,mem_tx_len 
+33a9 18420a00 copy temp ,contw 
+33aa 1a227e00 copy rega ,pdata 
+33ab 1fe0fe01 increase 1 ,pdata 
+33ac e0a08000 istore 1 ,contw 
+33ad 1a620c00 copy regc ,contr 
+33ae e8c08000 ifetch 1 ,contr 
+33af e8c08000 ifetch 1 ,contr 
+33b0 e0a08000 istore 1 ,contw 
+33b1 1a227200 copy rega ,loopcnt 
+33b2 20207ecd branch memcpy 
+
+page_scan_dispatch:
+33b3 6800c133 fetch 1 ,mem_scan_mode 
+33b4 c4008000 rtnbit0 page_scan_mode 
+33b5 18000e06 force pscan_interval_timer ,queue 
+33b6 20407ee2 call timer_check 
+33b7 247a0000 nrtn blank 
+33b8 68094151 fetcht 2 ,mem_pscan_window 
+33b9 18000e28 force 40 ,queue 
+33ba 2040379f call sniff_check_window 
+33bb 20740000 rtn user 
+33bc 18000800 force 0 ,am_addr 
+33bd 70001008 jam param_pagerespto ,mem_fhs_wait_counter 
+33be 793f800b set0 mark_fhs_already_good ,mark 
+33bf 204033c3 call page_scan_start 
+33c0 18000e06 force pscan_interval_timer ,queue 
+33c1 68014153 fetch 2 ,mem_pscan_interval 
+33c2 20207ed4 branch timer_init 
+
+page_scan_start:
+33c3 793f8025 set0 mark_ext_patch ,mark 
+33c4 449b4006 bpatch patch06_6 ,mem_patch06 
+33c5 78587c00 disable clknt 
+33c6 20403937 call afh_clear 
+33c7 68008008 fetch 1 ,mem_pagescan_waitcnt 
+33c8 1fe0fe01 increase 1 ,pdata 
+33c9 60008008 store 1 ,mem_pagescan_waitcnt 
+33ca 18004c00 force 0 ,n_tx_slot 
+33cb 20403979 call fetch_self_bt_adr 
+33cc 1c40c201 add clkn_bt ,1 ,bt_clk 
+33cd 18004802 force 0x02 ,freq_mode 
+33ce 793f8025 set0 mark_ext_patch ,mark 
+33cf 449bc006 bpatch patch06_7 ,mem_patch06 
+33d0 20403960 call rx_radio_freq 
+33d1 20403a7f call start_receiver 
+33d2 20403aab call wait_access_forever 
+33d3 246c0000 nrtn sync 
+33d4 20403992 call shutdown_radio 
+33d5 68008009 fetch 1 ,mem_pagescan_rcvcnt 
+33d6 1fe0fe01 increase 1 ,pdata 
+33d7 60008009 store 1 ,mem_pagescan_rcvcnt 
+33d8 18003600 force 0 ,stop_watch 
+33d9 20403aea call rf_setup_time_slave_slot 
+33da 1c21c202 or_into 0x002 ,bt_clk 
+33db 18004801 force 0x01 ,freq_mode 
+33dc 20403967 call tx_radio_freq 
+33dd 20403aee call start_transmitter 
+33de 20403aff call start_tx_external 
+33df 20403b05 call send_access_word 
+33e0 204036c6 call end_of_packet 
+33e1 18000800 force 0 ,am_addr 
+33e2 d9600600 arg param_rf_setup ,timeup 
+33e3 35330200 until clke_rt ,meet 
+33e4 1d01d003 or_into 0x03 ,clke_bt 
+33e5 1c2143fd and_into 0x1fd ,bt_clk 
+
+page_scan_wait_fhs_restart:
+33e6 793f8025 set0 mark_ext_patch ,mark 
+33e7 449c4007 bpatch patch07_0 ,mem_patch07 
+33e8 1cc0cc01 increase 1 ,n_tx_slot 
+33e9 20403960 call rx_radio_freq 
+33ea 20403a7f call start_receiver 
+33eb 20403a9d call wait_access_mhalfbnd 
+33ec 242c33f0 nbranch page_scan_wait_fhs_again ,sync 
+33ed 20403b0d call scan_mode_whiten 
+33ee 20403584 call receive_packet_whitened 
+33ef c505b3f8 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+
+page_scan_wait_fhs_again:
+33f0 793f8025 set0 mark_ext_patch ,mark 
+33f1 449cc007 bpatch patch07_1 ,mem_patch07 
+33f2 68008010 fetch 1 ,mem_fhs_wait_counter 
+33f3 207a0000 rtn blank 
+33f4 1fe0ffff increase -1 ,pdata 
+33f5 60008010 store 1 ,mem_fhs_wait_counter 
+33f6 20403aec call rf_setup_time_master_slot 
+33f7 202033e6 branch page_scan_wait_fhs_restart 
+
+page_scan_reply_to_fhs:
+33f8 793f8025 set0 mark_ext_patch ,mark 
+33f9 449d4007 bpatch patch07_2 ,mem_patch07 
+33fa 793fd001 set0 1 ,clke_bt 
+33fb 79205000 set1 0 ,clke_bt 
+33fc 6800800a fetch 1 ,mem_pagescan_rcvfhscnt 
+33fd 1fe0fe01 increase 1 ,pdata 
+33fe 6000800a store 1 ,mem_pagescan_rcvfhscnt 
+33ff 20403aea call rf_setup_time_slave_slot 
+3400 1c21c202 or_into 0x02 ,bt_clk 
+3401 20403967 call tx_radio_freq 
+3402 20403aee call start_transmitter 
+3403 20403aff call start_tx_external 
+3404 20403b05 call send_access_word 
+3405 204036c6 call end_of_packet 
+
+slave_apply_clke_bt:
+3406 2d000603 compare 0x03 ,clke_bt ,0x03 
+3407 2020b40a branch slave_apply_clke_bt_now ,true 
+3408 37cb8200 until null ,mhalfbnd 
+3409 20203406 branch slave_apply_clke_bt 
+
+slave_apply_clke_bt_now:
+340a 68020164 fetch 4 ,mem_clke_bt 
+340b 1fe1fe03 or_into 0x03 ,pdata 
+340c 1fe25000 icopy clke_bt 
+
+start_slave_connection:
+340d 793f8025 set0 mark_ext_patch ,mark 
+340e 449dc007 bpatch patch07_3 ,mem_patch07 
+340f 68030177 fetch 6 ,extm_lap 
+3410 60030040 store 6 ,mem_plap 
+3411 2040348d call prepare_newconn 
+
+slave_newconn_loop:
+3412 204034d9 call slave_newconn_once 
+3413 2036b417 branch sconn_successful ,match 
+3414 204034b0 call new_conn_timeout 
+3415 243a3412 nbranch slave_newconn_loop ,blank 
+3416 20600000 rtn 
+
+sconn_successful:
+3417 793f8025 set0 mark_ext_patch ,mark 
+3418 449e4007 bpatch patch07_4 ,mem_patch07 
+3419 20403499 call newconn_init 
+341a 2040327a call context_new 
+341b 24628000 nrtn zero 
+341c 70003100 jam 0 ,mem_mode 
+341d 204038d1 call calc_clke_offset 
+341e 20203260 branch context_save 
+
+slave_dispatch:
+341f 793f8025 set0 mark_ext_patch ,mark 
+3420 449ec007 bpatch patch07_5 ,mem_patch07 
+3421 204038e1 call calc_clke 
+3422 20403447 call role_switch_slave 
+3423 20740000 rtn user 
+
+slave_loop:
+3424 793f8025 set0 mark_ext_patch ,mark 
+3425 449f4007 bpatch patch07_6 ,mem_patch07 
+3426 20403d42 call check_bt_disabled 
+3427 204068c0 call scheduler_process 
+3428 20403579 call slave_conn_recv_packet 
+3429 2436b434 nbranch slave_notmatch ,match 
+342a 20403b2c call supervision_flush 
+342b 204068dc call scheduler_tx_l2cap_pkt 
+342c 204034e7 call prepare_tx 
+342d 204037de call slave_conn_send_packet 
+342e 204037ac call parse_l2cap 
+342f 2040531f call parse_lmp 
+3430 6800800b fetch 1 ,mem_slave_rcvcnt 
+3431 1fe0fe01 increase 1 ,pdata 
+3432 6000800b store 1 ,mem_slave_rcvcnt 
+3433 204038d1 call calc_clke_offset 
+
+slave_notmatch:
+3434 793f8025 set0 mark_ext_patch ,mark 
+3435 449fc007 bpatch patch07_7 ,mem_patch07 
+3436 20403ca0 call lpm_set_mult 
+3437 20403b22 call supervision_update 
+3438 2021343e branch slave_disconnect ,positive 
+3439 204031cd call check_disconnect_timeout 
+343a 2434343e nbranch slave_disconnect ,user 
+343b 20403775 call check_attempt 
+343c 243a3424 nbranch slave_loop ,blank 
+343d 20600000 rtn 
+
+slave_disconnect:
+343e 793f8025 set0 mark_ext_patch ,mark 
+343f 44a04008 bpatch patch08_0 ,mem_patch08 
+3440 70015000 jam 0 ,mem_tester_emulate 
+3441 70017e00 jam 0 ,mem_debug_config 
+3442 204034b8 call quit_connection 
+3443 793f8011 set0 mark_testmode ,mark 
+3444 20407f80 call test_enable_white 
+3445 68008030 fetch 1 ,mem_state 
+3446 20600000 rtn 
+
+role_switch_slave:
+3447 793f8025 set0 mark_ext_patch ,mark 
+3448 44a0c008 bpatch patch08_1 ,mem_patch08 
+3449 204031f3 call role_switch_check 
+344a 24740000 nrtn user 
+344b 18820400 copy am_addr ,temp 
+344c 20403b11 call get_free_amaddr 
+344d 60008180 store 1 ,mem_fhs_am_addr 
+344e 18420800 copy temp ,am_addr 
+344f 70001120 jam param_newconnto ,mem_newconnto_counter 
+
+roles_sendfhs_loop:
+3450 793f8025 set0 mark_ext_patch ,mark 
+3451 44a14008 bpatch patch08_2 ,mem_patch08 
+3452 20403aec call rf_setup_time_master_slot 
+3453 18000202 force type_fhs ,type 
+3454 204037d5 call slave_send_access 
+3455 1c427e00 deposit clkn_bt 
+3456 60020160 store 4 ,mem_clkn_bt 
+3457 204037ec call transmit_packet 
+3458 20403aea call rf_setup_time_slave_slot 
+3459 7837fc00 enable user3 
+345a 2040355a call slave_receive_access 
+345b 202c3463 branch roles_got_fhs_reply ,sync 
+345c 20403992 call shutdown_radio 
+345d 204034b0 call new_conn_timeout 
+345e 243a3450 nbranch roles_sendfhs_loop ,blank 
+345f c6820000 rtnmark0 mark_accept_switch 
+3460 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+3461 79200003 set1 mark_switch_initiated ,mark 
+3462 20600000 rtn 
+
+roles_got_fhs_reply:
+3463 78387c00 enable clknt 
+3464 2040348d call prepare_newconn 
+3465 20403937 call afh_clear 
+
+roles_newconn_loop:
+3466 793f8025 set0 mark_ext_patch ,mark 
+3467 44a1c008 bpatch patch08_3 ,mem_patch08 
+3468 20403337 call master_newconn_once 
+3469 202c3470 branch roles_newconn_responded ,sync 
+346a 204034b0 call new_conn_timeout 
+346b 243a3466 nbranch roles_newconn_loop ,blank 
+346c 78587c00 disable clknt 
+346d 1d027e00 deposit clke_bt 
+346e 6002416a store 4 ,mem_next_btclk 
+346f 20600000 rtn 
+
+roles_newconn_responded:
+3470 7834fc00 enable master 
+3471 c5823476 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+3472 793f8004 set0 mark_accept_switch ,mark 
+3473 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+3474 70007d33 jam lmp_host_connection_req ,mem_lmi_opcode2 
+3475 20405903 call tid_set_reply 
+
+roles_newconn_nolmp:
+3476 18827e00 deposit am_addr 
+3477 60008077 store 1 ,mem_amaddr 
+3478 18007e00 force 0 ,pdata 
+3479 60030038 store 6 ,mem_clk_offset 
+347a 68008031 fetch 1 ,mem_mode 
+347b 79207e01 set1 mode_master ,pdata 
+347c 60008031 store 1 ,mem_mode 
+347d 20403b2c call supervision_flush 
+347e 7854fc00 disable master 
+347f 78347c00 enable user 
+3480 20600000 rtn 
+
+init_rx_packet_flags:
+3481 793f8025 set0 mark_ext_patch ,mark 
+3482 44a24008 bpatch patch08_4 ,mem_patch08 
+3483 7856fc00 disable match 
+3484 793f8005 set0 mark_loopback ,mark 
+3485 793f800a set0 mark_am_addr_broadcast ,mark 
+3486 793f8010 set0 mark_longpacket ,mark 
+3487 793f800f set0 mark_old_packet ,mark 
+3488 68008047 fetch 1 ,mem_arq 
+3489 793ffe05 set0 arqnx ,pdata 
+348a 79207e04 set1 flowx ,pdata 
+348b 60008047 store 1 ,mem_arq 
+348c 20600000 rtn 
+
+prepare_newconn:
+348d 793f8025 set0 mark_ext_patch ,mark 
+348e 44a2c008 bpatch patch08_5 ,mem_patch08 
+348f 70001120 jam param_newconnto ,mem_newconnto_counter 
+3490 70004750 jam param_newconn_arq ,mem_arq 
+3491 6801415f fetch 2 ,mem_rx_window_init 
+3492 6001003e store 2 ,mem_rx_window 
+3493 1c427e00 deposit clkn_bt 
+3494 6002416a store 4 ,mem_next_btclk 
+3495 20780000 rtn clknt 
+3496 1d027e00 deposit clke_bt 
+3497 6002416a store 4 ,mem_next_btclk 
+3498 20600000 rtn 
+
+newconn_init:
+3499 793f8025 set0 mark_ext_patch ,mark 
+349a 44a34008 bpatch patch08_6 ,mem_patch08 
+349b 2040531b call init_lmp_reinit 
+349c 204034b4 call new_conn_handle 
+349d 60008046 store 1 ,mem_conn_handle 
+349e 58000000 setarg 0 
+349f 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+34a0 58001c80 setarg param_supervision_to 
+34a1 60010051 store 2 ,mem_supervision_to 
+34a2 68008030 fetch 1 ,mem_state 
+34a3 79207e00 set1 state_inconn ,pdata 
+34a4 60008030 store 1 ,mem_state 
+34a5 70004b00 jam 0 ,mem_op 
+34a6 70004c00 jam 0 ,mem_state_map 
+34a7 70009f00 jam 0 ,mem_lpm_current_mult 
+34a8 20203b2c branch supervision_flush 
+
+clear_linkkey:
+34a9 793f8025 set0 mark_ext_patch ,mark 
+34aa 44a3c008 bpatch patch08_7 ,mem_patch08 
+34ab 18007e00 force 0 ,pdata 
+34ac 60044261 store 8 ,mem_link_key 
+34ad e0a40000 istore 8 ,contw 
+34ae 204031ef call clear_linkstate 
+34af 20203294 branch context_traverse_linkkey 
+
+new_conn_timeout:
+34b0 68008011 fetch 1 ,mem_newconnto_counter 
+34b1 1fe0ffff increase -1 ,pdata 
+34b2 60008011 store 1 ,mem_newconnto_counter 
+34b3 20600000 rtn 
+
+new_conn_handle:
+34b4 6800c16f fetch 1 ,mem_handle_num 
+34b5 1fe0fe01 increase 1 ,pdata 
+34b6 6000c16f store 1 ,mem_handle_num 
+34b7 20600000 rtn 
+
+quit_connection:
+34b8 793f8025 set0 mark_ext_patch ,mark 
+34b9 44a44009 bpatch patch09_0 ,mem_patch09 
+34ba 6800c271 fetch 1 ,mem_hci_cmd 
+34bb c001b4be beq hci_cmd_remote_name_req ,quit_connection_name 
+34bc 68008048 fetch 1 ,mem_lmp_to_send 
+34bd c080b4c2 bne lmp_name_req ,quit_connection_cont 
+
+quit_connection_name:
+34be 20403f9d call cmd_check_plap 
+34bf 2422b4c2 nbranch quit_connection_cont ,zero 
+34c0 204031ca call master_name_error 
+34c1 70427100 jam 0 ,mem_hci_cmd 
+
+quit_connection_cont:
+34c2 793f8025 set0 mark_ext_patch ,mark 
+34c3 44a4c009 bpatch patch09_1 ,mem_patch09 
+34c4 20403e12 call app_disconn_reason_collect_bt 
+34c5 2040376a call sniff_exit 
+34c6 7009bd02 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+34c7 20407d86 call ui_ipc_send_event 
+34c8 2040530d call init_lmp_work 
+34c9 204042eb call l2cap_init_work 
+34ca 204075f4 call sp_initialize 
+34cb 68008030 fetch 1 ,mem_state 
+34cc 793ffe00 set0 state_inconn 
+34cd 60008030 store 1 ,mem_state 
+34ce 70470a00 jam 0 ,memui_reconnect_mode 
+34cf 6800804c fetch 1 ,mem_state_map 
+34d0 2fe18000 compare 0x0 ,pdata ,0xc0 
+34d1 2020b4d3 branch quit_connection_not_clear_mark ,true 
+34d2 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+quit_connection_not_clear_mark:
+34d3 68008047 fetch 1 ,mem_arq 
+34d4 c301b4d5 bbit0 wack ,quit_connection_not_clear_tx 
+
+quit_connection_not_clear_tx:
+34d5 6800804b fetch 1 ,mem_op 
+34d6 c4030000 rtnbit0 op_txl2cap 
+34d7 793f8002 set0 mark_tx_l2cap ,mark 
+34d8 20600000 rtn 
+
+slave_newconn_once:
+34d9 793f8025 set0 mark_ext_patch ,mark 
+34da 44a54009 bpatch patch09_2 ,mem_patch09 
+34db 68008173 fetch 1 ,extm_newconn_am_addr 
+34dc 207a0000 rtn blank 
+34dd 1fe20800 icopy am_addr 
+34de 20403579 call slave_conn_recv_packet 
+34df 24768000 nrtn match 
+34e0 18000200 force type_null ,type 
+34e1 204037de call slave_conn_send_packet 
+34e2 18827e00 deposit am_addr 
+34e3 60008077 store 1 ,mem_amaddr 
+34e4 18007e00 force 0 ,pdata 
+34e5 60008173 store 1 ,extm_newconn_am_addr 
+34e6 20600000 rtn 
+
+prepare_tx:
+34e7 793f8025 set0 mark_ext_patch ,mark 
+34e8 44a5c009 bpatch patch09_3 ,mem_patch09 
+34e9 68008030 fetch 1 ,mem_state 
+34ea c30134f5 bbit0 state_insco ,prepare_tx_not_sco 
+34eb 18000207 force type_hv3 ,type 
+34ec c583b4f4 bmark0 mark_esco ,prepare_tx_not_esco 
+34ed 204037a9 call check_esco_amaddr 
+34ee 2420b4f5 nbranch prepare_tx_not_sco ,true 
+34ef 203734f5 branch prepare_tx_not_sco ,attempt 
+34f0 20403523 call set_wait_ack 
+34f1 58000002 setarg 2 
+34f2 60014168 store 2 ,mem_retransmission_cnt 
+34f3 20600000 rtn 
+
+prepare_tx_not_esco:
+34f4 24770000 nrtn attempt 
+
+prepare_tx_not_sco:
+34f5 793f8025 set0 mark_ext_patch ,mark 
+34f6 44a64009 bpatch patch09_4 ,mem_patch09 
+34f7 20403283 call context_check_all_wack 
+34f8 2422b508 nbranch prepare_tx_no_retransmit ,zero 
+34f9 68008047 fetch 1 ,mem_arq 
+34fa c301b511 bbit0 wack ,prepare_tx_pollnull 
+
+prepare_tx_retransmit:
+34fb c502b515 bmark1 mark_loopback ,prepare_tx_loopback 
+34fc 6800817e fetch 1 ,mem_debug_config 
+34fd c283351c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+34fe 68014168 fetch 2 ,mem_retransmission_cnt 
+34ff 1fe0ffff increase -1 ,pdata 
+3500 60014168 store 2 ,mem_retransmission_cnt 
+3501 203a3505 branch prepare_tx_nomore_retransmit ,blank 
+3502 6800c165 fetch 1 ,mem_last_type 
+3503 98000200 iforce type 
+3504 20600000 rtn 
+
+prepare_tx_nomore_retransmit:
+3505 793f8025 set0 mark_ext_patch ,mark 
+3506 44a6c009 bpatch patch09_5 ,mem_patch09 
+3507 20403703 call clear_got_tx 
+
+prepare_tx_no_retransmit:
+3508 204037a9 call check_esco_amaddr 
+3509 2020b511 branch prepare_tx_pollnull ,true 
+350a 20405621 call send_lmp 
+350b 20343520 branch prepare_tx_sendlmp ,user 
+350c 6800804b fetch 1 ,mem_op 
+350d c2833522 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+350e c502b515 bmark1 mark_loopback ,prepare_tx_loopback 
+350f 6800817e fetch 1 ,mem_debug_config 
+3510 c283351c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+
+prepare_tx_pollnull:
+3511 18000201 force type_poll ,type 
+3512 20748000 rtn master 
+3513 18000200 force type_null ,type 
+3514 20600000 rtn 
+
+prepare_tx_loopback:
+3515 793f8025 set0 mark_ext_patch ,mark 
+3516 44a74009 bpatch patch09_6 ,mem_patch09 
+3517 68008019 fetch 1 ,mem_rx_type 
+3518 98000200 iforce type 
+3519 c1808000 rtnne 1 
+351a 18000200 force type_null ,type 
+351b 20600000 rtn 
+
+prepare_tx_txpat:
+351c 68008157 fetch 1 ,test_mode_packet_type 
+351d 1fe1020f and pdata ,0xf ,type 
+351e 79200005 set1 mark_loopback ,mark 
+351f 20600000 rtn 
+
+prepare_tx_sendlmp:
+3520 18000213 force type_lmp ,type 
+3521 20203523 branch set_wait_ack 
+
+prepare_tx_sendl2cap:
+3522 2040352d call tx_l2cap_type 
+
+set_wait_ack:
+3523 793f8025 set0 mark_ext_patch ,mark 
+3524 44a7c009 bpatch patch09_7 ,mem_patch09 
+3525 68088047 fetcht 1 ,mem_arq 
+3526 79200403 set1 wack ,temp 
+3527 60088047 storet 1 ,mem_arq 
+3528 18227e00 deposit type 
+3529 6000c165 store 1 ,mem_last_type 
+352a 5800ffff setarg 0xffff 
+352b 60014168 store 2 ,mem_retransmission_cnt 
+352c 20600000 rtn 
+
+tx_l2cap_type:
+352d 793f8025 set0 mark_ext_patch ,mark 
+352e 44a8400a bpatch patch0a_0 ,mem_patch0a 
+352f 6800804c fetch 1 ,mem_state_map 
+3530 2feffe05 isolate1 smap_edr ,pdata 
+3531 6801427e fetch 2 ,mem_tx_len 
+3532 2020b544 branch tx_l2cap_type_edr ,true 
+3533 18000203 force type_dm1 ,type 
+3534 1fe67c11 sub pdata ,17 ,null 
+3535 20610000 rtn positive 
+3536 18000204 force type_dh1 ,type 
+3537 1fe67c1b sub pdata ,27 ,null 
+3538 20610000 rtn positive 
+3539 1800020a force type_dm3 ,type 
+353a 1fe67c79 sub pdata ,121 ,null 
+353b 20610000 rtn positive 
+353c 1800020b force type_dh3 ,type 
+353d 1fe67cb7 sub pdata ,183 ,null 
+353e 20610000 rtn positive 
+353f 1800020e force type_dm5 ,type 
+3540 1fe67ce0 sub pdata ,224 ,null 
+3541 20610000 rtn positive 
+3542 1800020f force type_dh5 ,type 
+3543 20600000 rtn 
+
+tx_l2cap_type_edr:
+3544 18000203 force type_dm1 ,type 
+3545 1fe67c11 sub pdata ,17 ,null 
+3546 20610000 rtn positive 
+3547 18000204 force type_dh1 ,type 
+3548 1fe67c36 sub pdata ,54 ,null 
+3549 20610000 rtn positive 
+354a 1800020a force type_dm3 ,type 
+354b d840016f arg 367 ,temp 
+354c 98467c00 isub temp ,null 
+354d 24610000 nrtn positive 
+354e 1800020e force type_dm5 ,type 
+354f d84002a7 arg 679 ,temp 
+3550 98467c00 isub temp ,null 
+3551 24610000 nrtn positive 
+3552 1800020f force type_dh5 ,type 
+3553 20600000 rtn 
+
+slave_receive_master_slot:
+3554 68008030 fetch 1 ,mem_state 
+3555 c300b559 bbit0 state_insniff ,slave_receive_notsniff 
+3556 68010032 fetch 2 ,mem_tsniff 
+3557 203a3559 branch slave_receive_notsniff ,blank 
+3558 2437355b nbranch slave_receive_sniff ,attempt 
+
+slave_receive_notsniff:
+3559 20403aec call rf_setup_time_master_slot 
+
+slave_receive_access:
+355a 1d00c201 add clke_bt ,1 ,bt_clk 
+
+slave_receive_sniff:
+355b 78287c00 enable swfine 
+355c 6801003e fetch 2 ,mem_rx_window 
+355d 1fe37e00 rshift pdata ,pdata 
+355e d8400500 arg param_pll_setup ,temp 
+355f 9840fe00 iadd temp ,pdata 
+3560 20403abd call ahead_window 
+3561 20403982 call fetch_extm_bt_adr 
+3562 18004803 force 0x03 ,freq_mode 
+3563 20403960 call rx_radio_freq 
+3564 20403481 call init_rx_packet_flags 
+3565 20403a86 call prep_crypt 
+3566 793f8025 set0 mark_ext_patch ,mark 
+3567 44a8c00a bpatch patch0a_1 ,mem_patch0a 
+3568 6801003e fetch 2 ,mem_rx_window 
+3569 1fe37e00 rshift pdata ,pdata 
+356a 20403abd call ahead_window 
+356b 20403a7f call start_receiver 
+356c 7826fc00 enable decode_fec0 
+356d 6801003e fetch 2 ,mem_rx_window 
+356e d84003bb arg param_clke_cal ,temp 
+356f 9840b600 iadd temp ,stop_watch 
+3570 37c18400 correlate null ,timeout 
+3571 1b420400 copy clke ,temp 
+3572 600b0099 storet 6 ,mem_sync_clke 
+3573 7846fc00 disable decode_fec0 
+3574 246c0000 nrtn sync 
+3575 dd2003bb arg param_clke_cal ,clke_rt 
+3576 1c225000 copy bt_clk ,clke_bt 
+3577 2035bbed branch lpm_adjust_clk ,wake 
+3578 20600000 rtn 
+
+slave_conn_recv_packet:
+3579 793f8025 set0 mark_ext_patch ,mark 
+357a 44a9400a bpatch patch0a_2 ,mem_patch0a 
+357b 20403554 call slave_receive_master_slot 
+357c 242c3992 nbranch shutdown_radio ,sync 
+357d 20403a50 call save_rssi 
+357e c588b582 bmark0 mark_testmode ,receive_packet 
+357f 680100f5 fetch 2 ,mem_tst_pktcnt_sync 
+3580 1fe0fe01 increase 1 ,pdata 
+3581 600100f5 store 2 ,mem_tst_pktcnt_sync 
+
+receive_packet:
+3582 1c230400 rshift bt_clk ,temp 
+3583 18419c40 or temp ,0x40 ,white_init 
+
+receive_packet_whitened:
+3584 793f8025 set0 mark_ext_patch ,mark 
+3585 44a9c00a bpatch patch0a_3 ,mem_patch0a 
+3586 7823fc00 enable enable_white 
+3587 78257c00 enable enable_hec 
+3588 7825fc00 enable decode_fec1 
+3589 09800003 parse demod ,bucket ,3 
+358a 198cfe00 rshift8 pwindow ,pdata 
+358b 6000815c store 1 ,mem_temp_am_addr 
+358c 09800004 parse demod ,bucket ,4 
+358d 08008007 inject bucket ,7 
+358e 19827e00 copy pwindow ,pdata 
+358f 60008019 store 1 ,mem_rx_type 
+3590 09800003 parse demod ,bucket ,3 
+3591 198cfe00 rshift8 pwindow ,pdata 
+3592 6000815d store 1 ,mem_temp_arq 
+3593 68008019 fetch 1 ,mem_rx_type 
+3594 1fe67c03 sub pdata ,3 ,null 
+3595 2021359a branch receive_packet_noedr ,positive 
+3596 c003b59a beq 7 ,receive_packet_noedr 
+3597 6800804c fetch 1 ,mem_state_map 
+3598 2feffe05 isolate1 smap_edr ,pdata 
+3599 7920aa01 setflag true ,psk ,radio_ctrl 
+
+receive_packet_noedr:
+359a 793f8025 set0 mark_ext_patch ,mark 
+359b 44aa400a bpatch patch0a_4 ,mem_patch0a 
+359c 09800008 parse demod ,bucket ,8 
+359d 7845fc00 disable decode_fec1 
+359e 78457c00 disable enable_hec 
+359f 202336a8 branch error_header ,crc_failed 
+35a0 c588b5a4 bmark0 mark_testmode ,receive_packet_amchk 
+35a1 680100f7 fetch 2 ,mem_tst_pktcnt_hec 
+35a2 1fe0fe01 increase 1 ,pdata 
+35a3 600100f7 store 2 ,mem_tst_pktcnt_hec 
+
+receive_packet_amchk:
+35a4 793f8025 set0 mark_ext_patch ,mark 
+35a5 44aac00a bpatch patch0a_5 ,mem_patch0a 
+35a6 6800815c fetch 1 ,mem_temp_am_addr 
+35a7 2fe00e00 compare 0 ,pdata ,0x07 
+35a8 7920800a setflag true ,mark_am_addr_broadcast ,mark 
+35a9 2020b5b5 branch am_addr_ok ,true 
+35aa a8800e00 icompare 0x07 ,am_addr 
+35ab 2020b5b4 branch am_addr_match ,true 
+35ac c583b6c6 bmark0 mark_esco ,end_of_packet 
+35ad 680880af fetcht 1 ,mem_saved_amaddr 
+35ae a8400e00 icompare 0x7 ,temp 
+35af 2420b6c6 nbranch end_of_packet ,true 
+35b0 68008047 fetch 1 ,mem_arq 
+35b1 793ffe05 set0 arqnx ,pdata 
+35b2 79207e04 set1 flowx ,pdata 
+35b3 60008047 store 1 ,mem_arq 
+
+am_addr_match:
+35b4 7836fc00 enable match 
+
+am_addr_ok:
+35b5 793f8025 set0 mark_ext_patch ,mark 
+35b6 44ab400a bpatch patch0a_6 ,mem_patch0a 
+35b7 68008019 fetch 1 ,mem_rx_type 
+35b8 1fe20200 icopy type 
+35b9 c50535c5 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+35ba 6808815d fetcht 1 ,mem_temp_arq 
+35bb 68008047 fetch 1 ,mem_arq 
+35bc 793ffe00 set0 flow ,pdata 
+35bd 284ffe00 isolate1 flow ,temp 
+35be 7920fe00 setflag true ,flow ,pdata 
+35bf 284ffe01 isolate1 arqn ,temp 
+35c0 7920fe01 setflag true ,arqn ,pdata 
+35c1 60008047 store 1 ,mem_arq 
+35c2 284c0001 isolate0 arqn ,temp 
+35c3 2020b5c5 branch arqn_bypass ,true 
+35c4 20403703 call clear_got_tx 
+
+arqn_bypass:
+35c5 793f8025 set0 mark_ext_patch ,mark 
+35c6 44abc00a bpatch patch0a_7 ,mem_patch0a 
+35c7 d8400000 arg 0 ,temp 
+35c8 20403ab4 call reserve_slot 
+35c9 18217e0f and type ,0xf ,pdata 
+35ca c000b5f4 beq type_poll ,process_poll 
+35cb c00036c6 beq type_null ,end_of_packet 
+35cc c00136d3 beq type_fhs ,process_fhs 
+35cd 6808815d fetcht 1 ,mem_temp_arq 
+35ce 68008047 fetch 1 ,mem_arq 
+35cf a8400800 icompare 0x04 ,temp 
+35d0 2420b5d4 nbranch rx_type_dispatch ,true 
+35d1 c58535d3 bmark0 mark_am_addr_broadcast ,failed_seqn 
+35d2 c303b5d4 bbit0 bcast1 ,rx_type_dispatch 
+
+failed_seqn:
+35d3 7920000f set1 mark_old_packet ,mark 
+
+rx_type_dispatch:
+35d4 793f8025 set0 mark_ext_patch ,mark 
+35d5 44ac400b bpatch patch0b_0 ,mem_patch0b 
+35d6 18227e00 deposit type 
+35d7 c001b5f6 beq type_dm1 ,process_dm1 
+35d8 c00235fa beq type_dh1 ,process_dh1 
+35d9 c003b5e4 beq type_hv3 ,process_hev 
+35da c00435f9 beq type_3dh1 ,process_3dh1 
+35db d8400004 arg 4 ,temp 
+35dc 20403ab4 call reserve_slot 
+35dd c00535f5 beq type_dm3 ,process_dm3 
+35de c005b5f8 beq type_dh3 ,process_dh3 
+35df d8400008 arg 8 ,temp 
+35e0 20403ab4 call reserve_slot 
+35e1 c00735f5 beq type_dm5 ,process_dm5 
+35e2 c007b5f8 beq type_dh5 ,process_dh5 
+35e3 20600000 rtn 
+
+process_hev:
+35e4 793f8025 set0 mark_ext_patch ,mark 
+35e5 44acc00b bpatch patch0b_1 ,mem_patch0b 
+35e6 7826fc00 enable decode_fec0 
+35e7 7824fc00 enable enable_crc 
+35e8 78277c00 enable encrypt 
+35e9 d8a000d0 arg mem_sco_ibuf ,contw 
+35ea 1800721e force 30 ,loopcnt 
+
+process_hev_loop:
+35eb 09800008 parse demod ,bucket ,8 
+35ec 19897e00 rshift3 pwindow ,pdata 
+35ed e0a08000 istore 1 ,contw 
+35ee c20035eb loop process_hev_loop 
+35ef c583b6c6 bmark0 mark_esco ,end_of_packet 
+35f0 09800010 parse demod ,bucket ,16 
+35f1 7d230008 nsetflag crc_failed ,mark_esco_rxok ,mark 
+35f2 202336b5 branch error_payload ,crc_failed 
+35f3 20203696 branch ack_payload 
+
+process_poll:
+35f4 202036c6 branch end_of_packet 
+
+process_dm3:
+
+process_dm5:
+35f5 79200010 set1 mark_longpacket ,mark 
+
+process_dm1:
+35f6 78267c00 enable decode_fec2 
+35f7 202035fb branch process_dmh 
+
+process_dh3:
+
+process_dh5:
+35f8 79200010 set1 mark_longpacket ,mark 
+
+process_3dh1:
+35f9 79202a02 set1 psk3m ,radio_ctrl 
+
+process_dh1:
+35fa 7826fc00 enable decode_fec0 
+
+process_dmh:
+35fb 793f8025 set0 mark_ext_patch ,mark 
+35fc 44ad400b bpatch patch0b_2 ,mem_patch0b 
+35fd c500b6c6 bmark1 mark_rxbuf_inuse ,end_of_packet 
+35fe 2aac0001 isolate0 psk ,radio_ctrl 
+35ff 2020b608 branch process_dmh_noedr ,true 
+3600 7843fc00 disable enable_white 
+3601 7826fc00 enable decode_fec0 
+3602 78467c00 disable decode_fec2 
+3603 1c409602 add clkn_bt ,2 ,timeup 
+3604 34530400 correlate clkn_bt ,meet 
+3605 242c36b5 nbranch error_payload ,sync 
+3606 79200010 set1 mark_longpacket ,mark 
+3607 7823fc00 enable enable_white 
+
+process_dmh_noedr:
+3608 793f8025 set0 mark_ext_patch ,mark 
+3609 44adc00b bpatch patch0b_3 ,mem_patch0b 
+360a 78277c00 enable encrypt 
+360b 7824fc00 enable enable_crc 
+360c 09800003 parse demod ,bucket ,3 
+360d 198cfe00 rshift8 pwindow ,pdata 
+360e 6000817f store 1 ,mem_lch_code 
+360f 09800005 parse demod ,bucket ,5 
+3610 c5083614 bmark1 mark_longpacket ,process_dmh_long 
+3611 19897200 rshift3 pwindow ,loopcnt 
+3612 1f297200 rshift3 loopcnt ,loopcnt 
+3613 20203617 branch process_dmh_common 
+
+process_dmh_long:
+3614 09800005 parse demod ,bucket ,5 
+3615 19837200 rshift pwindow ,loopcnt 
+3616 09800003 parse demod ,bucket ,3 
+
+process_dmh_common:
+3617 793f8025 set0 mark_ext_patch ,mark 
+3618 44ae400b bpatch patch0b_4 ,mem_patch0b 
+3619 1f227e00 deposit loopcnt 
+361a 6001015e store 2 ,mem_len 
+361b 203a365b branch process_dmh_data_end ,blank 
+361c 9ea67c00 isub mask3ff ,null 
+361d 202136b5 branch error_payload ,positive 
+361e 793f8025 set0 mark_ext_patch ,mark 
+361f 44aec00b bpatch patch0b_5 ,mem_patch0b 
+3620 793f8000 set0 mark_fhs_eir ,mark 
+3621 6800817f fetch 1 ,mem_lch_code 
+3622 1fe17e03 and_into 0x03 ,pdata 
+3623 d8a00475 arg mem_rxbuf ,contw 
+3624 c001b62b beq llid_lmp ,process_lmp 
+3625 c508b657 bmark1 mark_testmode ,process_dmh_data 
+3626 6800817f fetch 1 ,mem_lch_code 
+3627 1fe17e03 and_into 0x03 ,pdata 
+3628 c0013630 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+3629 c000b645 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+362a 202036b5 branch error_payload 
+
+process_lmp:
+362b 6801015e fetch 2 ,mem_len 
+362c 1fe67c70 sub pdata ,0x70 ,null 
+362d 242136b5 nbranch error_payload ,positive 
+362e c507b696 bmark1 mark_old_packet ,ack_payload 
+362f 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_start_pkt:
+3630 793f8025 set0 mark_ext_patch ,mark 
+3631 44af400b bpatch patch0b_6 ,mem_patch0b 
+3632 c507b696 bmark1 mark_old_packet ,ack_payload 
+3633 6801015e fetch 2 ,mem_len 
+3634 d84002e0 arg 0x2e0 ,temp 
+3635 98467c00 isub temp ,null 
+3636 202136b5 branch error_payload ,positive 
+3637 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+3638 c300363b bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+3639 c300b640 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+363a 202036c6 branch end_of_packet 
+
+process_dmh_data_into_buff1:
+363b 70028a01 jam 1 ,mem_l2cap_rxbuff_new 
+363c 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+363d c08036c6 bne 0 ,end_of_packet 
+363e d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+363f 20203657 branch process_dmh_data 
+
+process_dmh_data_into_buff2:
+3640 70028a02 jam 2 ,mem_l2cap_rxbuff_new 
+3641 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3642 c08036c6 bne 0 ,end_of_packet 
+3643 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+3644 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt:
+3645 793f8025 set0 mark_ext_patch ,mark 
+3646 44afc00b bpatch patch0b_7 ,mem_patch0b 
+3647 c507b696 bmark1 mark_old_packet ,ack_payload 
+3648 6801015e fetch 2 ,mem_len 
+3649 d84002e0 arg 0x2e0 ,temp 
+364a 98467c00 isub temp ,null 
+364b 202136b5 branch error_payload ,positive 
+364c 6800828a fetch 1 ,mem_l2cap_rxbuff_new 
+364d c000b650 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+364e c0013654 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+364f 202036c6 branch end_of_packet 
+
+process_dmh_data_l2cap_continue_pkt1:
+3650 d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+3651 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+3652 98a08a00 iadd contw ,contw 
+3653 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt2:
+3654 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+3655 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3656 98a08a00 iadd contw ,contw 
+
+process_dmh_data:
+3657 09800008 parse demod ,bucket ,8 
+3658 19897e00 rshift3 pwindow ,pdata 
+3659 e0a08000 istore 1 ,contw 
+365a c2003657 loop process_dmh_data 
+
+process_dmh_data_end:
+365b 793f8025 set0 mark_ext_patch ,mark 
+365c 44b0400c bpatch patch0c_0 ,mem_patch0c 
+365d 09800010 parse demod ,bucket ,16 
+365e 202336af branch error_payload_crc ,crc_failed 
+365f 6800c3f3 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+3660 c000b6c6 beq l2cap_flow_ctrl_enable ,end_of_packet 
+3661 c508b682 bmark1 mark_testmode ,process_dmh_cont 
+3662 c507b6c3 bmark1 mark_old_packet ,redundant_payload 
+3663 6800817f fetch 1 ,mem_lch_code 
+3664 2fe00603 compare 3 ,pdata ,3 
+3665 2020b682 branch process_dmh_cont ,true 
+3666 6801015e fetch 2 ,mem_len 
+3667 203a3682 branch process_dmh_cont ,blank 
+3668 793f8025 set0 mark_ext_patch ,mark 
+3669 44b0c00c bpatch patch0c_1 ,mem_patch0c 
+366a 6800828a fetch 1 ,mem_l2cap_rxbuff_new 
+366b c000b66e beq 1 ,process_l2cap_pass_crc_buff1 
+366c c0013678 beq 2 ,process_l2cap_pass_crc_buff2 
+366d 20203b31 branch assert 
+
+process_l2cap_pass_crc_buff1:
+366e 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+366f 6809015e fetcht 2 ,mem_len 
+3670 9840fe00 iadd temp ,pdata 
+3671 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+3672 c0003b31 beq 0 ,assert 
+3673 68091000 fetcht 2 ,mem_l2cap_rxbuff1 
+3674 18408404 increase 4 ,temp 
+3675 98467c00 isub temp ,null 
+3676 2042b7cd call l2cap_buff1_inuse ,zero 
+3677 20203682 branch process_dmh_cont 
+
+process_l2cap_pass_crc_buff2:
+3678 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3679 6809015e fetcht 2 ,mem_len 
+367a 9840fe00 iadd temp ,pdata 
+367b 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+367c c0003b31 beq 0 ,assert 
+367d 68091400 fetcht 2 ,mem_l2cap_rxbuff2 
+367e 18408404 add temp ,4 ,temp 
+367f 98467c00 isub temp ,null 
+3680 2042b7d1 call l2cap_buff2_inuse ,zero 
+3681 20203682 branch process_dmh_cont 
+
+process_dmh_cont:
+3682 793f8025 set0 mark_ext_patch ,mark 
+3683 44b1400c bpatch patch0c_2 ,mem_patch0c 
+3684 6808804c fetcht 1 ,mem_state_map 
+3685 6800817f fetch 1 ,mem_lch_code 
+3686 2fe00603 compare 3 ,pdata ,0x03 
+3687 79208406 setflag true ,smap_rxlmp ,temp 
+3688 7d208407 nsetflag true ,smap_rxl2cap ,temp 
+3689 6008804c storet 1 ,mem_state_map 
+368a 2420b68c nbranch process_dmh_cont_rxbuf_not_use ,true 
+368b 79200001 set1 mark_rxbuf_inuse ,mark 
+
+process_dmh_cont_rxbuf_not_use:
+368c c588b696 bmark0 mark_testmode ,ack_payload 
+368d 284ffe06 isolate1 smap_rxlmp ,temp 
+368e 2020b696 branch ack_payload ,true 
+368f 680100f9 fetch 2 ,mem_tst_pktcnt_crc 
+3690 1fe0fe01 increase 1 ,pdata 
+3691 600100f9 store 2 ,mem_tst_pktcnt_crc 
+3692 79200005 set1 mark_loopback ,mark 
+3693 793f8407 set0 smap_rxl2cap ,temp 
+3694 793f8001 set0 mark_rxbuf_inuse ,mark 
+3695 6008804c storet 1 ,mem_state_map 
+
+ack_payload:
+3696 793f8025 set0 mark_ext_patch ,mark 
+3697 44b1c00c bpatch patch0c_3 ,mem_patch0c 
+3698 6808815d fetcht 1 ,mem_temp_arq 
+3699 68008047 fetch 1 ,mem_arq 
+369a 79207e05 set1 arqnx ,pdata 
+369b 284ffe02 isolate1 seqn ,temp 
+369c 7920fe02 setflag true ,seqn ,pdata 
+369d 280ffe0a isolate1 mark_am_addr_broadcast ,mark 
+369e 7920fe07 setflag true ,bcast1 ,pdata 
+369f 60008047 store 1 ,mem_arq 
+36a0 6801015e fetch 2 ,mem_len 
+36a1 243a36c6 nbranch end_of_packet ,blank 
+36a2 6800804c fetch 1 ,mem_state_map 
+36a3 793ffe07 set0 smap_rxl2cap ,pdata 
+36a4 6000804c store 1 ,mem_state_map 
+36a5 6800817f fetch 1 ,mem_lch_code 
+36a6 2fe00e01 compare 0x01 ,pdata ,0x07 
+36a7 202036c6 branch end_of_packet 
+
+error_header:
+36a8 793f8025 set0 mark_ext_patch ,mark 
+36a9 44b2400c bpatch patch0c_4 ,mem_patch0c 
+36aa 7856fc00 disable match 
+36ab 6801001a fetch 2 ,mem_rx_hec_err 
+36ac 1fe0fe01 increase 1 ,pdata 
+36ad 6001001a store 2 ,mem_rx_hec_err 
+36ae 202036c6 branch end_of_packet 
+
+error_payload_crc:
+36af 6801001c fetch 2 ,mem_rx_crc_err 
+36b0 1fe0fe01 increase 1 ,pdata 
+36b1 6001001c store 2 ,mem_rx_crc_err 
+36b2 204036b6 call discard_pkt 
+36b3 c588b6b5 bmark0 mark_testmode ,error_payload 
+36b4 79200005 set1 mark_loopback ,mark 
+
+error_payload:
+36b5 202036c6 branch end_of_packet 
+
+discard_pkt:
+36b6 793f8025 set0 mark_ext_patch ,mark 
+36b7 44b2c00c bpatch patch0c_5 ,mem_patch0c 
+36b8 6800817f fetch 1 ,mem_lch_code 
+36b9 2fe00603 compare 3 ,pdata ,0x03 
+36ba 2420b6bf nbranch discard_pkt_l2cap ,true 
+
+discard_pkt_lmp:
+36bb 6808804c fetcht 1 ,mem_state_map 
+36bc 793f8406 set0 smap_rxlmp ,temp 
+36bd 6008804c storet 1 ,mem_state_map 
+36be 20600000 rtn 
+
+discard_pkt_l2cap:
+36bf 6808804c fetcht 1 ,mem_state_map 
+36c0 793f8407 set0 smap_rxl2cap ,temp 
+36c1 6008804c storet 1 ,mem_state_map 
+36c2 20203eca branch h4_send_acl_trigger_clear 
+
+redundant_payload:
+36c3 68008047 fetch 1 ,mem_arq 
+36c4 79207e05 set1 arqnx ,pdata 
+36c5 60008047 store 1 ,mem_arq 
+
+end_of_packet:
+36c6 793f8025 set0 mark_ext_patch ,mark 
+36c7 44b3400c bpatch patch0c_6 ,mem_patch0c 
+36c8 784efc00 disable encode_fec0 
+36c9 784e7c00 disable encode_fec2 
+36ca 7846fc00 disable decode_fec0 
+36cb 78467c00 disable decode_fec2 
+36cc 7844fc00 disable enable_crc 
+36cd 78477c00 disable encrypt 
+36ce 7843fc00 disable enable_white 
+36cf 2030b992 branch shutdown_radio ,is_rx 
+36d0 37d38200 until null ,tx_clear 
+36d1 20000064 nop 100 
+36d2 20203992 branch shutdown_radio 
+
+process_fhs:
+36d3 793f8025 set0 mark_ext_patch ,mark 
+36d4 44b3c00c bpatch patch0c_7 ,mem_patch0c 
+36d5 7824fc00 enable enable_crc 
+36d6 78267c00 enable decode_fec2 
+36d7 09800048 parse demod ,bucket ,72 
+36d8 2feffe3a isolate1 58 ,pdata 
+36d9 79208000 setflag true ,mark_fhs_eir ,mark 
+36da 1c020400 copy bt_adr ,temp 
+36db 57e04000 ialigned bt_adr 
+36dc 57e03c00 ialigned fhs0 
+36dd 782afc00 pulse recalc 
+36de 380bffff setsect 2 ,0xfffff 
+36df 380cffff setsect 3 ,0x0ffff 
+36e0 20000020 nop 32 
+36e1 29a80000 iverify fhs_parity 
+36e2 1d827e00 deposit lap 
+36e3 60018177 store 3 ,extm_lap 
+36e4 1da27e00 deposit uap 
+36e5 6000817a store 1 ,extm_uap 
+36e6 18424000 copy temp ,bt_adr 
+36e7 2020b6e9 branch fhs_parity_ok ,true 
+36e8 202036b5 branch error_payload 
+
+fhs_parity_ok:
+36e9 793f8025 set0 mark_ext_patch ,mark 
+36ea 44b4400d bpatch patch0d_0 ,mem_patch0d 
+36eb 09800048 parse demod ,bucket ,72 
+36ec 57e03e00 ialigned fhs1 
+36ed 57e00800 ialigned am_addr 
+36ee 57e05c00 ialigned nap 
+36ef 57e02400 ialigned regb 
+36f0 18007e00 force 0 ,pdata 
+36f1 09800010 parse demod ,bucket ,16 
+36f2 202336b5 branch error_payload ,crc_failed 
+36f3 5ffffffc setarg 0x0ffffffc 
+36f4 9a417e00 iand regb ,pdata 
+36f5 60020164 store 4 ,mem_clke_bt 
+36f6 1ba27e00 deposit fhs_class 
+36f7 60018174 store 3 ,extm_class 
+36f8 1b827e00 deposit fhs_misc 
+36f9 60008172 store 1 ,extm_fhs_misc 
+36fa 18827e00 deposit am_addr 
+36fb 60008173 store 1 ,extm_newconn_am_addr 
+36fc 1dc27e00 deposit nap 
+36fd 6001017b store 2 ,extm_nap 
+36fe 1c227e00 deposit bt_clk 
+36ff 08008220 inject rxf ,32 
+3700 28201e02 compare type_fhs ,type ,0x0f 
+3701 7920800b setflag true ,mark_fhs_already_good ,mark 
+3702 202036c6 branch end_of_packet 
+
+clear_got_tx:
+3703 793f8025 set0 mark_ext_patch ,mark 
+3704 44b4c00d bpatch patch0d_1 ,mem_patch0d 
+3705 68008047 fetch 1 ,mem_arq 
+3706 c4018000 rtnbit0 wack 
+3707 793ffe03 set0 wack ,pdata 
+3708 79407e06 setflip seqnx ,pdata 
+3709 60008047 store 1 ,mem_arq 
+370a 6800c165 fetch 1 ,mem_last_type 
+370b c009b719 beq type_lmp ,clear_got_txlmp 
+370c c1038000 rtneq type_hv3 
+370d 6800804b fetch 1 ,mem_op 
+370e c4030000 rtnbit0 op_txl2cap ,pdata 
+370f 793ffe06 set0 op_txl2cap ,pdata 
+3710 79207e07 set1 op_pkt_comp ,pdata 
+3711 6000804b store 1 ,mem_op 
+3712 793f8002 set0 mark_tx_l2cap ,mark 
+3713 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+3714 247a0000 nrtn blank 
+3715 6800804b fetch 1 ,mem_op 
+3716 793ffe07 set0 op_pkt_comp ,pdata 
+3717 6000804b store 1 ,mem_op 
+3718 202047fb branch l2cap_malloc_free 
+
+clear_got_txlmp:
+3719 793f8025 set0 mark_ext_patch ,mark 
+371a 44b5400d bpatch patch0d_2 ,mem_patch0d 
+371b 680083dd fetch 1 ,mem_lmo_header_opcode 
+371c 1fe37e00 rshift pdata ,pdata 
+371d c008b736 beq lmp_start_encryption_req ,start_encryption 
+371e c009373f beq lmp_stop_encryption_req ,stop_encryption 
+371f c00c376a beq lmp_unsniff_req ,sniff_exit 
+3720 c03fb726 beq lmp_escape ,clear_lmp_escape 
+3721 c1818000 rtnne lmp_accepted 
+3722 680083de fetch 1 ,mem_lmo_payload 
+3723 c015b72e beq lmp_sco_link_req ,sco_link_req_by_slave 
+3724 c008b729 beq lmp_start_encryption_req ,clear_send_setup_complete 
+3725 20600000 rtn 
+
+clear_lmp_escape:
+3726 680083de fetch 1 ,mem_lmo_payload 
+3727 79207e07 set1 7 ,pdata 
+3728 20600000 rtn 
+
+clear_send_setup_complete:
+3729 20748000 rtn master 
+372a 68008030 fetch 1 ,mem_state 
+372b c3820000 rtnbit1 state_conn_comp 
+372c 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+372d 20600000 rtn 
+
+sco_link_req_by_slave:
+372e 20748000 rtn master 
+372f 68008031 fetch 1 ,mem_mode 
+3730 2feffe04 isolate1 send_sco_when_slave ,pdata 
+3731 2020b733 branch clean_mem_mode ,true 
+3732 20600000 rtn 
+
+clean_mem_mode:
+3733 793ffe04 set0 send_sco_when_slave ,pdata 
+3734 60008031 store 1 ,mem_mode 
+3735 20600000 rtn 
+
+start_encryption:
+3736 793f8025 set0 mark_ext_patch ,mark 
+3737 44b5c00d bpatch patch0d_3 ,mem_patch0d 
+3738 6800804c fetch 1 ,mem_state_map 
+3739 79207e02 set1 smap_encryption ,pdata 
+373a 6000804c store 1 ,mem_state_map 
+373b 70801101 hjam 1 ,core_encrypt 
+373c 68008030 fetch 1 ,mem_state 
+373d 2feffe04 isolate1 state_conn_comp ,pdata 
+373e 20600000 rtn 
+
+stop_encryption:
+373f 793f8025 set0 mark_ext_patch ,mark 
+3740 44b6400d bpatch patch0d_4 ,mem_patch0d 
+3741 6800804c fetch 1 ,mem_state_map 
+3742 793ffe02 set0 smap_encryption ,pdata 
+3743 6000804c store 1 ,mem_state_map 
+3744 70801100 hjam 0 ,core_encrypt 
+3745 20600000 rtn 
+
+sniff_init:
+3746 793f8025 set0 mark_ext_patch ,mark 
+3747 44b6c00d bpatch patch0d_5 ,mem_patch0d 
+3748 1c427e00 copy clkn_bt ,pdata 
+3749 600242b1 store 4 ,mem_lpm_delay_after_sniff 
+374a 1c40a203 add clkn_bt ,3 ,rega 
+374b 2034b74d branch sniff_init_master ,master 
+374c 1d00a203 add clke_bt ,3 ,rega 
+
+sniff_init_master:
+374d 68090032 fetcht 2 ,mem_tsniff 
+374e 1a227e00 deposit rega 
+374f 793ffe1b set0 27 ,pdata 
+3750 9846fc00 idiv temp 
+3751 68010075 fetch 2 ,mem_dsniff 
+3752 20407f53 call wait_div_end 
+3753 18072600 remainder regc 
+3754 9a667e00 isub regc ,pdata 
+3755 20213757 branch sniff_init_nowrap ,positive 
+3756 9840fe00 iadd temp ,pdata 
+
+sniff_init_nowrap:
+3757 9a20fe00 iadd rega ,pdata 
+3758 60020034 store 4 ,mem_sniff_anchor 
+3759 7045f400 jam switch_flag_init ,mem_switch_flag 
+375a 68008030 fetch 1 ,mem_state 
+375b 79207e01 set1 state_insniff ,pdata 
+375c 60008030 store 1 ,mem_state 
+375d 68008073 fetch 1 ,mem_sniff_attempt 
+375e 6000808a store 1 ,mem_current_sniff_attempt 
+375f 58000000 setarg 0 
+3760 6001c209 store 3 ,mem_sniff_rcv 
+3761 6001c20c store 3 ,mem_sniff_lost 
+3762 6000c1f9 store 1 ,mem_sniff_unint_lost 
+3763 7009bd0b jam bt_evt_enter_sniff ,mem_fifo_temp 
+3764 20407d86 call ui_ipc_send_event 
+3765 68014161 fetch 2 ,mem_rx_window_sniff 
+3766 6001003e store 2 ,mem_rx_window 
+3767 24748000 nrtn master 
+3768 18808fff add am_addr ,-1 ,queue 
+3769 20600000 rtn 
+
+sniff_exit:
+376a 793f8025 set0 mark_ext_patch ,mark 
+376b 44b7400d bpatch patch0d_6 ,mem_patch0d 
+376c 68008030 fetch 1 ,mem_state 
+376d c4008000 rtnbit0 state_insniff 
+376e 793ffe01 set0 state_insniff ,pdata 
+376f 60008030 store 1 ,mem_state 
+3770 6801415f fetch 2 ,mem_rx_window_init 
+3771 6001003e store 2 ,mem_rx_window 
+3772 7855fc00 disable wake 
+3773 7009bd0c jam bt_evt_exit_sniff ,mem_fifo_temp 
+3774 20207d86 branch ui_ipc_send_event 
+
+check_attempt:
+3775 793f8025 set0 mark_ext_patch ,mark 
+3776 44b7c00d bpatch patch0d_7 ,mem_patch0d 
+3777 78377c00 enable attempt 
+3778 68008030 fetch 1 ,mem_state 
+3779 c280b783 bbit1 state_insniff ,check_attempt_sniff 
+377a c6088000 rtnmark1 mark_testmode 
+377b 68008047 fetch 1 ,mem_arq 
+377c c3818000 rtnbit1 wack 
+377d 68008048 fetch 1 ,mem_lmp_to_send 
+377e 247a0000 nrtn blank 
+377f 6800804b fetch 1 ,mem_op 
+3780 c3830000 rtnbit1 op_txl2cap 
+
+check_attempt_nomore:
+3781 18007e00 force 0 ,pdata 
+3782 20600000 rtn 
+
+check_attempt_sniff:
+3783 c3013792 bbit0 state_insco ,check_attempt_not_sco 
+3784 6800808a fetch 1 ,mem_current_sniff_attempt 
+3785 c0013789 beq 2 ,check_attempt_sniff_restore_sco 
+3786 68008047 fetch 1 ,mem_arq 
+3787 c281b79b bbit1 wack ,check_attempt_notimeout 
+3788 c584379b bmark0 mark_esco_rxok ,check_attempt_notimeout 
+
+check_attempt_sniff_restore_sco:
+3789 2434b79b nbranch check_attempt_notimeout ,master 
+378a 68008048 fetch 1 ,mem_lmp_to_send 
+378b 243a379b nbranch check_attempt_notimeout ,blank 
+
+check_attempt_sco_master:
+378c 680080ee fetch 1 ,mem_sco_poll 
+378d 1fe0ffff increase -1 ,pdata 
+378e 600080ee store 1 ,mem_sco_poll 
+378f 243a3781 nbranch check_attempt_nomore ,blank 
+3790 7000ee10 jam param_sco_poll ,mem_sco_poll 
+3791 2020379b branch check_attempt_notimeout 
+
+check_attempt_not_sco:
+3792 6800808a fetch 1 ,mem_current_sniff_attempt 
+3793 c080b79b bne 1 ,check_attempt_notimeout 
+3794 6800808b fetch 1 ,mem_current_sniff_timeout 
+3795 203a379b branch check_attempt_notimeout ,blank 
+3796 1fe0ffff increase -1 ,pdata 
+3797 6000808b store 1 ,mem_current_sniff_timeout 
+3798 68008047 fetch 1 ,mem_arq 
+3799 c3818000 rtnbit1 wack 
+379a 24768000 nrtn match 
+
+check_attempt_notimeout:
+379b 6800808a fetch 1 ,mem_current_sniff_attempt 
+379c 1fe0ffff increase -1 ,pdata 
+379d 6000808a store 1 ,mem_current_sniff_attempt 
+379e 20600000 rtn 
+
+sniff_check_window:
+379f 793f8025 set0 mark_ext_patch ,mark 
+37a0 44b8400e bpatch patch0e_0 ,mem_patch0e 
+37a1 78487c00 disable swfine 
+37a2 18423600 copy temp ,stop_watch 
+37a3 204032a1 call context_search_sniff_window 
+37a4 78547c00 disable user 
+37a5 24628000 nrtn zero 
+37a6 18003600 force 0 ,stop_watch 
+37a7 78347c00 enable user 
+37a8 20600000 rtn 
+
+check_esco_amaddr:
+37a9 6800c1f8 fetch 1 ,mem_esco_addr 
+37aa a881fe00 icompare 0xff ,am_addr 
+37ab 20600000 rtn 
+
+parse_l2cap:
+37ac 793f8025 set0 mark_ext_patch ,mark 
+37ad 44b8c00e bpatch patch0e_1 ,mem_patch0e 
+37ae 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+parse_l2cap_cont:
+37af 70029300 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+37b0 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37b1 207a0000 rtn blank 
+37b2 2feffe00 isolate1 l2cap_inuse_buff1 ,pdata 
+37b3 d8c01000 arg mem_l2cap_rxbuff1 ,contr 
+37b4 2040c2fa call process_rx_l2cap_pkt ,true 
+37b5 793f8025 set0 mark_ext_patch ,mark 
+37b6 44b9400e bpatch patch0e_2 ,mem_patch0e 
+37b7 68008293 fetch 1 ,mem_l2cap_rx_done 
+37b8 c000b7c1 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+37b9 70029300 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+37ba 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37bb c4008000 rtnbit0 l2cap_inuse_buff2 
+37bc d8c01400 arg mem_l2cap_rxbuff2 ,contr 
+37bd 204042fa call process_rx_l2cap_pkt 
+37be 68008293 fetch 1 ,mem_l2cap_rx_done 
+37bf c000b7c7 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+37c0 20600000 rtn 
+
+parse_l2cap_release_buff1:
+37c1 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37c2 793ffe00 set0 l2cap_inuse_buff1 ,pdata 
+37c3 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37c4 58000000 setarg 0 
+37c5 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+37c6 20600000 rtn 
+
+parse_l2cap_release_buff2:
+37c7 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37c8 793ffe01 set0 l2cap_inuse_buff2 ,pdata 
+37c9 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37ca 58000000 setarg 0 
+37cb 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+37cc 20600000 rtn 
+
+l2cap_buff1_inuse:
+37cd 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37ce 79207e00 set1 l2cap_inuse_buff1 ,pdata 
+37cf 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37d0 20600000 rtn 
+
+l2cap_buff2_inuse:
+37d1 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37d2 79207e01 set1 l2cap_inuse_buff2 ,pdata 
+37d3 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37d4 20600000 rtn 
+
+slave_send_access:
+37d5 793f8025 set0 mark_ext_patch ,mark 
+37d6 44b9c00e bpatch patch0e_3 ,mem_patch0e 
+37d7 1d00c201 add clke_bt ,1 ,bt_clk 
+37d8 20403982 call fetch_extm_bt_adr 
+37d9 18004803 force 0x03 ,freq_mode 
+37da 20403967 call tx_radio_freq 
+37db 20403aee call start_transmitter 
+37dc 20403aff call start_tx_external 
+37dd 20203b05 branch send_access_word 
+
+slave_conn_send_packet:
+37de 793f8025 set0 mark_ext_patch ,mark 
+37df 44ba400e bpatch patch0e_4 ,mem_patch0e 
+37e0 20403aea call rf_setup_time_slave_slot 
+37e1 1d027e00 deposit clke_bt 
+37e2 680a416a fetcht 4 ,mem_next_btclk 
+37e3 98467e00 isub temp ,pdata 
+37e4 c1808000 rtnne 1 
+37e5 28203e00 compare type_null ,type ,0x1f 
+37e6 2420b7e9 nbranch slave_conn_send_access ,true 
+37e7 68008019 fetch 1 ,mem_rx_type 
+37e8 207a0000 rtn blank 
+
+slave_conn_send_access:
+37e9 204037d5 call slave_send_access 
+37ea 28203e10 compare type_id ,type ,0x1f 
+37eb 2020b6c6 branch end_of_packet ,true 
+
+transmit_packet:
+37ec 1c230400 rshift bt_clk ,temp 
+37ed 18419c40 or temp ,0x40 ,white_init 
+
+transmit_packet_whitened:
+37ee 793f8025 set0 mark_ext_patch ,mark 
+37ef 44bac00e bpatch patch0e_5 ,mem_patch0e 
+37f0 7823fc00 enable enable_white 
+37f1 78257c00 enable enable_hec 
+37f2 782dfc00 enable encode_fec1 
+37f3 793f8010 set0 mark_longpacket ,mark 
+37f4 18827e00 deposit am_addr 
+37f5 08008603 inject mod ,3 
+37f6 18227e00 deposit type 
+37f7 08008604 inject mod ,4 
+37f8 68008047 fetch 1 ,mem_arq 
+37f9 08008004 inject bucket ,4 
+37fa 08008603 inject mod ,3 
+37fb 78247c00 enable enable_parity 
+37fc 08008608 inject mod ,8 
+37fd 784dfc00 disable encode_fec1 
+37fe 78447c00 disable enable_parity 
+37ff 78457c00 disable enable_hec 
+3800 793faa02 set0 psk3m ,radio_ctrl 
+3801 d8400000 arg 0 ,temp 
+3802 20403ab4 call reserve_slot 
+3803 793f8025 set0 mark_ext_patch ,mark 
+3804 44bb400e bpatch patch0e_6 ,mem_patch0e 
+3805 18217e1f and type ,0x1f ,pdata 
+3806 c009b840 beq type_lmp ,transmit_lmp 
+3807 c00036c6 beq type_null ,end_of_packet 
+3808 c000b6c6 beq type_poll ,end_of_packet 
+3809 c0013822 beq type_fhs ,transmit_fhs 
+380a c001b852 beq type_dm1 ,transmit_dm1 
+380b c0023858 beq type_dh1 ,transmit_dh1 
+380c c003b816 beq type_hv3 ,transmit_hev 
+380d c0043857 beq type_3dh1 ,transmit_3dh1 
+380e d8400004 arg 4 ,temp 
+380f 20403ab4 call reserve_slot 
+3810 c0053854 beq type_dm3 ,transmit_dm3 
+3811 c005b85a beq type_dh3 ,transmit_dh3 
+3812 d8400008 arg 8 ,temp 
+3813 20403ab4 call reserve_slot 
+3814 c007b85a beq type_dh5 ,transmit_dh5 
+3815 20203854 branch transmit_dm5 
+
+transmit_hev:
+3816 793f8025 set0 mark_ext_patch ,mark 
+3817 44bbc00e bpatch patch0e_7 ,mem_patch0e 
+3818 782efc00 enable encode_fec0 
+3819 7824fc00 enable enable_crc 
+381a 78277c00 enable encrypt 
+381b 1800721e force 30 ,loopcnt 
+381c d8c000b2 arg mem_sco_obuf ,contr 
+
+transmit_ev_loop:
+381d e8c08000 ifetch 1 ,contr 
+381e 08008608 inject mod ,8 
+381f c200381d loop transmit_ev_loop 
+3820 c503b885 bmark1 mark_esco ,transmit_end 
+3821 202036c6 branch end_of_packet 
+
+transmit_fhs:
+3822 793f8025 set0 mark_ext_patch ,mark 
+3823 44bc400f bpatch patch0f_0 ,mem_patch0f 
+3824 68008180 fetch 1 ,mem_fhs_am_addr 
+3825 1fe20800 icopy am_addr 
+3826 6800808f fetch 1 ,mem_fhs_misc 
+3827 1fe23800 icopy fhs_misc 
+3828 6801c14a fetch 3 ,mem_class 
+3829 1fe23a00 icopy fhs_class 
+382a 68014144 fetch 2 ,mem_nap 
+382b 1fe25c00 icopy nap 
+382c 7824fc00 enable enable_crc 
+382d 782e7c00 enable encode_fec2 
+382e 1c022200 copy bt_adr ,rega 
+382f 20403979 call fetch_self_bt_adr 
+3830 782afc00 pulse recalc 
+3831 20000020 nop 32 
+3832 1c221600 copy bt_clk ,timeup 
+3833 68020160 fetch 4 ,mem_clkn_bt 
+3834 1fe24200 icopy bt_clk 
+3835 53c07e00 preload fhs0 
+3836 79207e3a set1 58 ,pdata 
+3837 08008648 inject mod ,72 
+3838 53e07e00 preload fhs1 
+3839 08008648 inject mod ,72 
+383a 19624200 copy timeup ,bt_clk 
+383b 1a224000 copy rega ,bt_adr 
+383c 78247c00 enable enable_parity 
+383d 08008610 inject mod ,16 
+383e 78447c00 disable enable_parity 
+383f 202036c6 branch end_of_packet 
+
+transmit_lmp:
+3840 793f8025 set0 mark_ext_patch ,mark 
+3841 44bcc00f bpatch patch0f_1 ,mem_patch0f 
+3842 78277c00 enable encrypt 
+3843 7824fc00 enable enable_crc 
+3844 782e7c00 enable encode_fec2 
+3845 680083dc fetch 1 ,mem_lmo_header_length 
+3846 1fe105f8 and pdata ,0x1f8 ,temp 
+3847 d8c003dc arg mem_lmo_header_length ,contr 
+3848 18408408 increase 8 ,temp 
+
+transmit_lmp_loop:
+3849 1840a7b8 add temp ,-72 ,regc 
+384a 2421384f nbranch transmit_lmp_finish ,positive 
+384b e8c48000 ifetch 9 ,contr 
+384c 08008648 inject mod ,72 
+384d 1a620400 copy regc ,temp 
+384e 20203849 branch transmit_lmp_loop 
+
+transmit_lmp_finish:
+384f e8c48000 ifetch 9 ,contr 
+3850 08418600 iinject mod ,temp 
+3851 20203885 branch transmit_end 
+
+transmit_dm1:
+3852 782e7c00 enable encode_fec2 
+3853 2020385d branch transmit_dmh 
+
+transmit_dm3:
+
+transmit_dm5:
+3854 782e7c00 enable encode_fec2 
+3855 79200010 set1 mark_longpacket ,mark 
+3856 2020385d branch transmit_dmh 
+
+transmit_3dh1:
+3857 79202a02 set1 psk3m ,radio_ctrl 
+
+transmit_dh1:
+3858 782efc00 enable encode_fec0 
+3859 2020385d branch transmit_dmh 
+
+transmit_dh3:
+
+transmit_dh5:
+385a 79202a02 set1 psk3m ,radio_ctrl 
+385b 782efc00 enable encode_fec0 
+385c 79200010 set1 mark_longpacket ,mark 
+
+transmit_dmh:
+385d 793f8025 set0 mark_ext_patch ,mark 
+385e 44bd400f bpatch patch0f_2 ,mem_patch0f 
+385f 6800804c fetch 1 ,mem_state_map 
+3860 c302b873 bbit0 smap_edr ,transmit_noedr 
+3861 18267c03 sub type ,3 ,null 
+3862 20213873 branch transmit_noedr ,positive 
+3863 78477c00 disable encrypt 
+3864 784e7c00 disable encode_fec2 
+3865 782efc00 enable encode_fec0 
+3866 7843fc00 disable enable_white 
+3867 79202a01 set1 psk ,radio_ctrl 
+3868 2aaffe02 isolate1 psk3m ,radio_ctrl 
+3869 2020b86d branch transmit_edr3m ,true 
+386a 580abeee setarg 0xabeee 
+386b 08008614 inject mod ,20 
+386c 20203871 branch transmit_edr_sync_end 
+
+transmit_edr3m:
+386d 585faeba setarg 0x5faeba 
+386e 08008618 inject mod ,24 
+386f 58000012 setarg 0x12 
+3870 08008606 inject mod ,6 
+
+transmit_edr_sync_end:
+3871 7823fc00 enable enable_white 
+3872 79200010 set1 mark_longpacket ,mark 
+
+transmit_noedr:
+3873 78277c00 enable encrypt 
+3874 7824fc00 enable enable_crc 
+3875 c502b88e bmark1 mark_loopback ,transmit_loopback 
+3876 6800c27d fetch 1 ,mem_tx_lch 
+3877 08008603 inject mod ,3 
+3878 6801427e fetch 2 ,mem_tx_len 
+3879 98007200 iforce loopcnt 
+387a c508387d bmark1 mark_longpacket ,transmit_long 
+387b 08008605 inject mod ,5 
+387c 2020387e branch transmit_stuff 
+
+transmit_long:
+387d 0800860d inject mod ,13 
+
+transmit_stuff:
+387e 1f227e00 deposit loopcnt 
+387f 203a3885 branch transmit_end ,blank 
+3880 6801016e fetch 2 ,mem_txptr 
+3881 98000c00 iforce contr 
+
+transmit_stuff_loop:
+3882 e8c08000 ifetch 1 ,contr 
+3883 08008608 inject mod ,8 
+3884 c2003882 loop transmit_stuff_loop 
+
+transmit_end:
+3885 78247c00 enable enable_parity 
+3886 08008610 inject mod ,16 
+3887 78447c00 disable enable_parity 
+3888 20403523 call set_wait_ack 
+3889 6800804c fetch 1 ,mem_state_map 
+388a c302b6c6 bbit0 smap_edr ,end_of_packet 
+388b 18007e00 force 0 ,pdata 
+388c 08008606 inject mod ,6 
+388d 202036c6 branch end_of_packet 
+
+transmit_loopback:
+388e 793f8025 set0 mark_ext_patch ,mark 
+388f 44bdc00f bpatch patch0f_3 ,mem_patch0f 
+3890 c5083897 bmark1 mark_longpacket ,transmit_loopback_long 
+
+transmit_loopback_short:
+3891 6800817f fetch 1 ,mem_lch_code 
+3892 08008603 inject mod ,3 
+3893 6800815e fetch 1 ,mem_len 
+3894 98002600 iforce regc 
+3895 08008605 inject mod ,5 
+3896 2020389c branch transmit_loopback_cont 
+
+transmit_loopback_long:
+3897 6800817f fetch 1 ,mem_lch_code 
+3898 08008603 inject mod ,3 
+3899 6801015e fetch 2 ,mem_len 
+389a 98002600 iforce regc 
+389b 0800860d inject mod ,13 
+
+transmit_loopback_cont:
+389c d8c00475 arg mem_rxbuf ,contr 
+
+transmit_loopback_loop:
+389d 1a627c00 copy regc ,null 
+389e 2022b8a3 branch transmit_loopback_end ,zero 
+389f e8c08000 ifetch 1 ,contr 
+38a0 08008608 inject mod ,8 
+38a1 1a60a7ff increase -1 ,regc 
+38a2 2020389d branch transmit_loopback_loop 
+
+transmit_loopback_end:
+38a3 680100fb fetch 2 ,mem_tst_pktcnt_dmh 
+38a4 1fe0fe01 increase 1 ,pdata 
+38a5 600100fb store 2 ,mem_tst_pktcnt_dmh 
+38a6 20203885 branch transmit_end 
+
+apply_switch_clke:
+38a7 68020164 fetch 4 ,mem_clke_bt 
+38a8 1fe0a207 add pdata ,7 ,rega 
+38a9 68010170 fetch 2 ,mem_slot_offset 
+38aa 243a38ad nbranch apply_switch_nozero ,blank 
+38ab 1a20a3fd increase -3 ,rega 
+38ac 202038b5 branch apply_switch_wait_loop 
+
+apply_switch_nozero:
+38ad 1feffe0c mul32 pdata ,12 ,pdata 
+38ae 68190040 hfetcht 2 ,core_halfslot 
+38af 18408401 increase 1 ,temp 
+
+apply_switch_loop:
+38b0 98467e00 isub temp ,pdata 
+38b1 242138b4 nbranch apply_switch_bt ,positive 
+38b2 1a20a3ff increase -1 ,rega 
+38b3 202038b0 branch apply_switch_loop 
+
+apply_switch_bt:
+38b4 1fe67e00 sub pdata ,0 ,pdata 
+
+apply_switch_wait_loop:
+38b5 37d18200 until null ,oneslot 
+38b6 2c400600 compare 0 ,clkn_bt ,3 
+38b7 2420b8b5 nbranch apply_switch_wait_loop ,true 
+38b8 98005200 iforce clke_rt 
+38b9 1a225000 copy rega ,clke_bt 
+38ba 98005200 iforce clke_rt 
+38bb 20600000 rtn 
+
+calc_slot_offset:
+38bc 793f8025 set0 mark_ext_patch ,mark 
+38bd 44be400f bpatch patch0f_4 ,mem_patch0f 
+38be 37d10200 until null ,halfslot 
+38bf 1b427e00 deposit clke 
+38c0 98000c00 iforce contr 
+38c1 1ff17e00 rshift16 ,pdata ,pdata 
+38c2 9c467200 isub clkn_bt ,loopcnt 
+38c3 1f217203 and_into 3 ,loopcnt 
+38c4 2422b8c7 nbranch calc_bt_portion ,zero 
+38c5 18007e00 force 0 ,pdata 
+38c6 202038cb branch calc_skip_bt 
+
+calc_bt_portion:
+38c7 d8400ea6 arg 3750 ,temp 
+38c8 18007e00 force 0 ,pdata 
+
+calc_slot_offset_loop:
+38c9 9840fe00 iadd temp ,pdata 
+38ca c20038c9 loop calc_slot_offset_loop 
+
+calc_skip_bt:
+38cb 98c0fe00 iadd contr ,pdata 
+38cc 1fe6fc0c div pdata ,12 
+38cd 20407f53 call wait_div_end 
+38ce 1807fe00 quotient pdata 
+38cf 60010170 store 2 ,mem_slot_offset 
+38d0 20600000 rtn 
+
+calc_clke_offset:
+38d1 793f8025 set0 mark_ext_patch ,mark 
+38d2 44bec00f bpatch patch0f_5 ,mem_patch0f 
+38d3 1b427e00 deposit clke 
+38d4 1b220400 copy clkn ,temp 
+38d5 98467c00 isub temp ,null 
+38d6 7d217e2c nsetflag positive ,44 ,pdata 
+38d7 98460400 isub temp ,temp 
+38d8 58000ea6 setarg 3750 
+38d9 284c000f isolate0 15 ,temp 
+38da 2020b8dd branch calc_clke_pos ,true 
+38db 5fff0ea6 setarg -61786 
+38dc 98408400 iadd temp ,temp 
+
+calc_clke_pos:
+38dd 600b036a storet 6 ,mem_le_clk_offset 
+38de 207b0000 rtn le 
+38df 600b0038 storet 6 ,mem_clk_offset 
+38e0 20600000 rtn 
+
+calc_clke:
+38e1 78587c00 disable clknt 
+38e2 6803036a fetch 6 ,mem_le_clk_offset 
+38e3 203b38e5 branch calc_clke2 ,le 
+38e4 68030038 fetch 6 ,mem_clk_offset 
+
+calc_clke2:
+38e5 9b20e000 iadd clkn ,alarm 
+38e6 1e00e00a increase 10 ,alarm 
+38e7 58000ea6 setarg 3750 
+38e8 9e067e00 isub alarm ,pdata 
+38e9 2fec000f isolate0 15 ,pdata 
+38ea 2020b8ef branch calc_clke_pos_adj ,true 
+38eb 5800f15a setarg 0xf15a 
+38ec 9e00e000 iadd alarm ,alarm 
+
+calc_clke_pos2:
+38ed 1e023400 copy alarm ,clke 
+38ee 20600000 rtn 
+
+calc_clke_pos_adj:
+38ef 18007c00 force 0 ,null 
+38f0 202038ed branch calc_clke_pos2 
+
+calc_radio_freq:
+38f1 793f8025 set0 mark_ext_patch ,mark 
+38f2 44bf400f bpatch patch0f_6 ,mem_patch0f 
+38f3 204039b1 call set_sync_on 
+38f4 1c227e00 copy bt_clk ,pdata 
+38f5 1fe17f80 and_into 0x180 ,pdata 
+38f6 2c800e03 compare 3 ,freq_mode ,0x07 
+38f7 2420b8fb nbranch freq_not_connection ,true 
+38f8 1fe97e00 rshift3 pdata ,pdata 
+38f9 9ae0fe00 iadd freq_index ,pdata 
+38fa 202038fc branch do_hop_mod_now 
+
+freq_not_connection:
+38fb 1ae27e00 copy freq_index ,pdata 
+
+do_hop_mod_now:
+38fc 1fe6fc4f div pdata ,79 
+38fd 782afc00 pulse recalc 
+38fe 20407f53 call wait_div_end 
+38ff 18072200 remainder rega 
+3900 1a2085d8 add rega ,-40 ,temp 
+3901 20213904 branch odd_half ,positive 
+3902 1a238400 lshift rega ,temp 
+3903 20203906 branch freq_result 
+
+odd_half:
+3904 18438400 lshift temp ,temp 
+3905 18408401 increase 1 ,temp 
+
+freq_result:
+3906 793f8025 set0 mark_ext_patch ,mark 
+3907 44bfc00f bpatch patch0f_7 ,mem_patch0f 
+3908 68008031 fetch 1 ,mem_mode 
+3909 c301b918 bbit0 afh_change ,afh_process_con 
+
+afh_process_0:
+390a 68024172 fetch 4 ,mem_afh_instant 
+390b 9c267c00 isub bt_clk ,null 
+390c 20213918 branch afh_process_con ,positive 
+390d 20403937 call afh_clear 
+390e 6800c179 fetch 1 ,mem_afh_new_mod 
+390f 207a0000 rtn blank 
+3910 68008031 fetch 1 ,mem_mode 
+3911 79207e02 set1 afh_enable ,pdata 
+3912 60008031 store 1 ,mem_mode 
+3913 6802c187 fetch 5 ,mem_afh_map_new 
+3914 6002c17a store 5 ,mem_afh_map_lo 
+3915 e8c28000 ifetch 5 ,contr 
+3916 6002c17f store 5 ,mem_afh_map_hi 
+3917 2040393c call afh_process_freq_map 
+
+afh_process_con:
+3918 68008031 fetch 1 ,mem_mode 
+3919 c4010000 rtnbit0 afh_enable 
+391a 2c2ffe01 isolate1 1 ,bt_clk 
+391b 2020b934 branch afh_same_channel ,true 
+391c 18492200 rshift3 temp ,rega 
+391d 18410e07 and temp ,7 ,queue 
+391e 5800417a setarg mem_afh_map_lo 
+391f 9a20a200 iadd rega ,rega 
+3920 ea208000 ifetch 1 ,rega 
+3921 afec0000 qisolate0 pdata 
+3922 2020b925 branch afh_process_1 ,true 
+3923 18427e00 deposit temp 
+3924 20203931 branch afh_process_end 
+
+afh_process_1:
+3925 6800c184 fetch 1 ,mem_afh_used 
+3926 98002400 iforce regb 
+3927 1c227e00 deposit bt_clk 
+3928 1fe17f80 and_into 0x180 ,pdata 
+3929 1fe97e00 rshift3 pdata ,pdata 
+392a 9ae0fe00 iadd freq_index ,pdata 
+392b 9a46fc00 idiv regb 
+392c 58004192 setarg mem_afh_map 
+392d 20407f53 call wait_div_end 
+392e 18072200 remainder rega 
+392f 9a208c00 iadd rega ,contr 
+3930 e8c08000 ifetch 1 ,contr 
+
+afh_process_end:
+3931 6000c185 store 1 ,mem_afh_index 
+3932 98000400 iforce temp 
+3933 20600000 rtn 
+
+afh_same_channel:
+3934 6800c185 fetch 1 ,mem_afh_index 
+3935 98000400 iforce temp 
+3936 20600000 rtn 
+
+afh_clear:
+3937 68008031 fetch 1 ,mem_mode 
+3938 793ffe02 set0 afh_enable ,pdata 
+3939 793ffe03 set0 afh_change ,pdata 
+393a 60008031 store 1 ,mem_mode 
+393b 20600000 rtn 
+
+afh_process_freq_map:
+393c 793f8025 set0 mark_ext_patch ,mark 
+393d 44c04010 bpatch patch10_0 ,mem_patch10 
+393e d8a04192 arg mem_afh_map ,contw 
+393f 1800720a force 10 ,loopcnt 
+3940 20407e91 call memset0 
+3941 d8a04192 arg mem_afh_map ,contw 
+3942 18002600 force 0 ,regc 
+3943 18000e02 force 2 ,queue 
+
+process_freq_3:
+3944 6802c17a fetch 5 ,mem_afh_map_lo 
+3945 98000400 iforce temp 
+3946 28e1fe02 compare 2 ,queue ,0xff 
+3947 2020b949 branch process_freq_1 ,true 
+3948 18430400 rshift temp ,temp 
+
+process_freq_1:
+3949 284c0000 isolate0 0 ,temp 
+394a 2020b94d branch process_freq_0 ,true 
+394b 1a627e00 deposit regc 
+394c e0a08000 istore 1 ,contw 
+
+process_freq_0:
+394d 184b0400 rshift2 temp ,temp 
+394e 1a60a602 increase 2 ,regc 
+394f 2a61fc28 compare 40 ,regc ,0xfe 
+3950 2420b956 nbranch process_freq_2 ,true 
+3951 6802c17f fetch 5 ,mem_afh_map_hi 
+3952 98000400 iforce temp 
+3953 28e1fe02 compare 2 ,queue ,0xff 
+3954 2020b956 branch process_freq_2 ,true 
+3955 18430400 rshift temp ,temp 
+
+process_freq_2:
+3956 1a667c4e sub regc ,78 ,null 
+3957 20213949 branch process_freq_1 ,positive 
+3958 18002601 force 1 ,regc 
+3959 18e08fff increase -1 ,queue 
+395a 2422b944 nbranch process_freq_3 ,zero 
+395b da204192 arg mem_afh_map ,rega 
+395c 18a27e00 deposit contw 
+395d 9a267e00 isub rega ,pdata 
+395e 6000c184 store 1 ,mem_afh_used 
+395f 20600000 rtn 
+
+rx_radio_freq:
+3960 793f8025 set0 mark_ext_patch ,mark 
+3961 44c0c010 bpatch patch10_1 ,mem_patch10 
+3962 204038f1 call calc_radio_freq 
+3963 6800817e fetch 1 ,mem_debug_config 
+3964 c302b966 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+3965 680883f2 fetcht 1 ,mem_rx_fixed_freq 
+
+rx_radio_freq_now:
+3966 202039b9 branch set_freq_rx 
+
+tx_radio_freq:
+3967 793f8025 set0 mark_ext_patch ,mark 
+3968 44c14010 bpatch patch10_2 ,mem_patch10 
+3969 204038f1 call calc_radio_freq 
+396a 6800817e fetch 1 ,mem_debug_config 
+396b c302396d bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+396c 680883f1 fetcht 1 ,mem_tx_fixed_freq 
+
+tx_radio_freq_now:
+396d 202039c9 branch set_freq_tx 
+
+fetch_giac:
+396e 18005a00 force 0 ,uap 
+396f 6801c147 fetch 3 ,mem_glap 
+3970 98005800 iforce lap 
+3971 20600000 rtn 
+
+fetch_page_bt_adr:
+3972 793f8025 set0 mark_ext_patch ,mark 
+3973 44c1c010 bpatch patch10_3 ,mem_patch10 
+3974 6800c276 fetch 1 ,mem_hci_puap 
+3975 1fe25a00 icopy uap 
+3976 6801c273 fetch 3 ,mem_hci_plap 
+3977 1fe25800 icopy lap 
+3978 20600000 rtn 
+
+fetch_self_bt_adr:
+3979 793f8025 set0 mark_ext_patch ,mark 
+397a 44c24010 bpatch patch10_4 ,mem_patch10 
+397b 68014144 fetch 2 ,mem_nap 
+397c 1fe25c00 icopy nap 
+397d 6800c143 fetch 1 ,mem_uap 
+397e 1fe25a00 icopy uap 
+397f 6801c140 fetch 3 ,mem_lap 
+3980 1fe25800 icopy lap 
+3981 20600000 rtn 
+
+fetch_extm_bt_adr:
+3982 793f8025 set0 mark_ext_patch ,mark 
+3983 44c2c010 bpatch patch10_5 ,mem_patch10 
+3984 68010044 fetch 2 ,mem_pnap 
+3985 1fe25c00 icopy nap 
+3986 68008043 fetch 1 ,mem_puap 
+3987 1fe25a00 icopy uap 
+3988 68018040 fetch 3 ,mem_plap 
+3989 1fe25800 icopy lap 
+398a 20600000 rtn 
+
+fetch_diac:
+398b c510398e bmark1 mark_all_diac ,fetch_diac_do 
+398c c68e8000 rtnmark0 mark_inquiry_state 
+398d c68f8000 rtnmark0 mark_periodical_diac 
+
+fetch_diac_do:
+398e 1d815900 and_into -256 ,lap 
+398f 782afc00 pulse recalc 
+3990 20000020 nop 32 
+3991 20600000 rtn 
+
+shutdown_radio:
+3992 793f8025 set0 mark_ext_patch ,mark 
+3993 44c34010 bpatch patch10_6 ,mem_patch10 
+3994 2030b9a3 branch shutdown_radio0 ,is_rx 
+3995 708955d4 hjam 0xd4 ,0x955 
+3996 20000004 nop 4 
+3997 708955d2 hjam 0xd2 ,0x955 
+3998 20000004 nop 4 
+3999 708955d1 hjam 0xd1 ,0x955 
+399a 20000004 nop 4 
+399b 6800c280 fetch 1 ,mem_tx_power 
+399c c28039a1 bbit1 tx_power_0db ,shutdown_radio_0db 
+399d c280b9ae bbit1 tx_power_3db ,shutdown_radio_3db 
+399e c28139a1 bbit1 tx_power_5db ,shutdown_radio_5db 
+399f c281b9ae bbit1 tx_power_f3db ,shutdown_radio_f3db 
+39a0 c28239ae bbit1 tx_power_f5db ,shutdown_radio_f5db 
+
+shutdown_radio_5db:
+
+shutdown_radio_0db:
+39a1 708955d0 hjam 0xd0 ,0x955 
+39a2 708956e0 hjam 0xe0 ,0x956 
+
+shutdown_radio0:
+39a3 18002a00 force 0 ,radio_ctrl 
+39a4 7850fc00 disable is_rx 
+39a5 78507c00 disable is_tx 
+39a6 782f7c00 pulse packet_end 
+39a7 70890200 hjam 0x0 ,rfen_mdm 
+39a8 70890100 hjam 0x0 ,rfen_tx 
+39a9 70890000 hjam 0x0 ,rfen_rx 
+39aa 70890300 hjam 0 ,rfen_sn 
+39ab 70890470 hjam 0x70 ,rfen_msc 
+39ac 70890600 hjam 0x0 ,rfen_adc 
+39ad 20600000 rtn 
+
+shutdown_radio_f5db:
+
+shutdown_radio_f3db:
+
+shutdown_radio_3db:
+39ae 708955d0 hjam 0xd0 ,0x955 
+39af 708956c0 hjam 0xc0 ,0x956 
+39b0 202039a3 branch shutdown_radio0 
+
+set_sync_on:
+39b1 793f8025 set0 mark_ext_patch ,mark 
+39b2 44c3c010 bpatch patch10_7 ,mem_patch10 
+39b3 70890200 hjam 0x0 ,rfen_mdm 
+39b4 70890100 hjam 0x0 ,rfen_tx 
+39b5 70890018 hjam 0x18 ,rfen_rx 
+39b6 708903a7 hjam 0xa7 ,rfen_sn 
+39b7 7089047f hjam 0x7f ,rfen_msc 
+39b8 20600000 rtn 
+
+set_freq_rx:
+39b9 793f8025 set0 mark_ext_patch ,mark 
+39ba 44c44011 bpatch patch11_0 ,mem_patch11 
+39bb 60088017 storet 1 ,mem_last_freq 
+39bc 1840a204 add temp ,rx_freq_offset ,rega 
+39bd 70896d07 hjam 0x07 ,0x96d 
+39be 20203a13 branch rf_write_freq 
+
+rf_rx_enable:
+39bf 793f8025 set0 mark_ext_patch ,mark 
+39c0 44c4c011 bpatch patch11_1 ,mem_patch11 
+39c1 708901cf hjam 0xcf ,rfen_tx 
+39c2 2000000a nop 10 
+39c3 708900ff hjam 0xff ,rfen_rx 
+39c4 708903af hjam 0xaf ,rfen_sn 
+39c5 708904ff hjam 0xff ,rfen_msc 
+39c6 2000000a nop 10 
+39c7 708902a0 hjam 0xa0 ,rfen_mdm 
+39c8 20600000 rtn 
+
+set_freq_tx:
+39c9 793f8025 set0 mark_ext_patch ,mark 
+39ca 44c54011 bpatch patch11_2 ,mem_patch11 
+39cb 60088017 storet 1 ,mem_last_freq 
+39cc 1840a200 add temp ,0 ,rega 
+39cd 20403a13 call rf_write_freq 
+39ce 58000500 setarg param_pll_setup 
+39cf 20403b35 call sleep 
+
+txon:
+39d0 70890601 hjam 0x1 ,rfen_adc 
+39d1 7089003c hjam 0x3c ,rfen_rx 
+39d2 708901e0 hjam 0xe0 ,rfen_tx 
+39d3 70896d12 hjam 0x12 ,0x96d 
+39d4 2000000a nop 10 
+39d5 70890201 hjam 0x01 ,rfen_mdm 
+39d6 7089023d hjam 0x3d ,rfen_mdm 
+39d7 2000000a nop 10 
+39d8 708903b7 hjam 0xb7 ,rfen_sn 
+39d9 2000000a nop 10 
+39da 7089027f hjam 0x7f ,rfen_mdm 
+39db 6800c280 fetch 1 ,mem_tx_power 
+39dc c28039e1 bbit1 tx_power_0db ,set_tx_power_0db 
+39dd c280b9e5 bbit1 tx_power_3db ,set_tx_power_3db 
+39de c28139e9 bbit1 tx_power_5db ,set_tx_power_5db 
+39df c281b9ed bbit1 tx_power_f3db ,set_tx_power_f3db 
+39e0 c28239f1 bbit1 tx_power_f5db ,set_tx_power_f5db 
+
+set_tx_power_0db:
+39e1 708956f0 hjam 0xf0 ,0x956 
+39e2 204039f5 call txon_common 
+39e3 708955d8 hjam 0xd8 ,0x955 
+39e4 20600000 rtn 
+
+set_tx_power_3db:
+39e5 708956df hjam 0xdf ,0x956 
+39e6 204039f5 call txon_common 
+39e7 708955df hjam 0xdf ,0x955 
+39e8 20600000 rtn 
+
+set_tx_power_5db:
+39e9 708956ff hjam 0xff ,0x956 
+39ea 204039f5 call txon_common 
+39eb 708955df hjam 0xdf ,0x955 
+39ec 20600000 rtn 
+
+set_tx_power_f3db:
+39ed 708956ce hjam 0xce ,0x956 
+39ee 204039f5 call txon_common 
+39ef 708955d8 hjam 0xd8 ,0x955 
+39f0 20600000 rtn 
+
+set_tx_power_f5db:
+39f1 708956cb hjam 0xcb ,0x956 
+39f2 204039f5 call txon_common 
+39f3 708955d8 hjam 0xd8 ,0x955 
+39f4 20600000 rtn 
+
+txon_common:
+39f5 20000004 nop 4 
+39f6 708955d1 hjam 0xd1 ,0x955 
+39f7 20000004 nop 4 
+39f8 708955d2 hjam 0xd2 ,0x955 
+39f9 20000004 nop 4 
+39fa 708955d4 hjam 0xd4 ,0x955 
+39fb 20600000 rtn 
+
+initialize_radio:
+39fc 70804206 hjam clksel_rc ,core_clksel 
+39fd 20403b64 call init_rf_param 
+
+initialize_radio_wait:
+39fe 68014163 fetch 2 ,mem_rf_init_ptr 
+39ff c30739fe bbit0 14 ,initialize_radio_wait 
+3a00 98000c00 iforce contr 
+3a01 d8408900 arg 0x8900 ,temp 
+
+initialize_radio_loop:
+3a02 e8c08000 ifetch 1 ,contr 
+3a03 c07fba08 beq 0xff ,initialize_radio_cont 
+3a04 98418a00 ior temp ,contw 
+3a05 e8c08000 ifetch 1 ,contr 
+3a06 e0a08000 istore 1 ,contw 
+3a07 20203a02 branch initialize_radio_loop 
+
+initialize_radio_cont:
+3a08 793f8025 set0 mark_ext_patch ,mark 
+3a09 44c5c011 bpatch patch11_3 ,mem_patch11 
+3a0a 20403cd2 call lpm_cal_xtal_startup 
+3a0b 20403a5f call switchto_dpllclk 
+3a0c 580007d0 setarg param_dpll_start_delay 
+3a0d 9c40fe00 iadd clkn_bt ,pdata 
+3a0e 60020168 store 4 ,mem_dpll_clkn 
+3a0f 79202a03 set1 reset ,radio_ctrl 
+3a10 18002a00 force 0 ,radio_ctrl 
+3a11 2455ba2b ncall do_rccal ,wake 
+3a12 20203a3f branch set_rccal 
+
+rf_write_freq:
+3a13 793f8025 set0 mark_ext_patch ,mark 
+3a14 44c64011 bpatch patch11_4 ,mem_patch11 
+3a15 58000960 setarg 2400 
+3a16 9a208400 iadd rega ,temp 
+3a17 6800c15d fetch 1 ,mem_fcomp_mul 
+3a18 70895f04 hjam 0x04 ,rf_pll_rstn 
+3a19 984ffe00 imul32 temp ,pdata 
+3a1a 6808c15e fetcht 1 ,mem_fcomp_div 
+3a1b 9846fc00 idiv temp 
+3a1c 20407f53 call wait_div_end 
+3a1d 1807a200 quotient rega 
+3a1e 18077e00 remainder pdata 
+3a1f 1ff07e00 lshift16 pdata ,pdata 
+3a20 1ff27e00 lshift4 pdata ,pdata 
+3a21 9846fc00 idiv temp 
+3a22 20407f53 call wait_div_end 
+3a23 1807fe00 quotient pdata 
+3a24 1fed7e00 lshift8 pdata ,pdata 
+3a25 1fe3fe00 lshift pdata ,pdata 
+3a26 9a21fe00 ior rega ,pdata 
+3a27 60120960 hstore 4 ,rf_pll_intg 
+3a28 70895f44 hjam 0x44 ,rf_pll_rstn 
+3a29 70895fc4 hjam 0xc4 ,rf_pll_rstn 
+3a2a 20600000 rtn 
+
+do_rccal:
+3a2b 793f8025 set0 mark_ext_patch ,mark 
+3a2c 44c6c011 bpatch patch11_5 ,mem_patch11 
+3a2d 70890602 hjam 0x02 ,rfen_adc 
+3a2e 5803d090 setarg 250000 
+3a2f 20403b35 call sleep 
+3a30 7089007f hjam 0x7f ,rfen_rx 
+3a31 20000082 nop 130 
+3a32 70895230 hjam 0x30 ,rf_rccal_ctrl 
+3a33 708901d0 hjam 0xd0 ,rfen_tx 
+3a34 70895270 hjam 0x70 ,rf_rccal_ctrl 
+3a35 708952f0 hjam 0xf0 ,rf_rccal_ctrl 
+3a36 18007232 force 50 ,loopcnt 
+
+do_rccal_loop:
+3a37 68108980 hfetch 1 ,rf_rccal_result 
+3a38 c282ba3a bbit1 5 ,do_rccal_end 
+3a39 c2003a37 loop do_rccal_loop 
+
+do_rccal_end:
+3a3a 6000c16e store 1 ,mem_rf_rccal 
+3a3b 70890100 hjam 0 ,rfen_tx 
+3a3c 70890000 hjam 0 ,rfen_rx 
+3a3d 70890600 hjam 0x00 ,rfen_adc 
+3a3e 20600000 rtn 
+
+set_rccal:
+3a3f 793f8025 set0 mark_ext_patch ,mark 
+3a40 44c74011 bpatch patch11_6 ,mem_patch11 
+3a41 6800c16e fetch 1 ,mem_rf_rccal 
+3a42 79207e05 set1 5 ,pdata 
+3a43 60108952 hstore 1 ,rf_rccal_ctrl 
+3a44 68188950 hfetcht 1 ,rf_bpf_ctrim 
+3a45 18410407 and_into 7 ,temp 
+3a46 1fe9fe00 lshift3 pdata ,pdata 
+3a47 9841fe00 ior temp ,pdata 
+3a48 60108950 hstore 1 ,rf_bpf_ctrim 
+3a49 68108951 hfetch 1 ,rf_bpf_ib 
+3a4a 793ffe00 set0 bpf_rccal ,pdata 
+3a4b 60108951 hstore 1 ,rf_bpf_ib 
+3a4c 68108952 hfetch 1 ,rf_adc_rccal 
+3a4d 793ffe05 set0 adc_rccal ,pdata 
+3a4e 60108952 hstore 1 ,rf_adc_rccal 
+3a4f 20600000 rtn 
+
+save_rssi:
+3a50 793f8025 set0 mark_ext_patch ,mark 
+3a51 44c7c011 bpatch patch11_7 ,mem_patch11 
+3a52 68110981 hfetch 2 ,rf_afc_d2a 
+3a53 1ff1fe00 rshift4 pdata ,pdata 
+3a54 1fe97e00 rshift3 pdata ,pdata 
+3a55 1fe67e00 sub pdata ,0 ,pdata 
+3a56 1fe17eff and_into 0xff ,pdata 
+3a57 1fe6fc0a div pdata ,10 
+3a58 20407f53 call wait_div_end 
+3a59 1807fe00 quotient pdata 
+3a5a 1ff27e00 lshift4 pdata ,pdata 
+3a5b 18070400 remainder temp 
+3a5c 9841fe00 ior temp ,pdata 
+3a5d 60008018 store 1 ,mem_rssi 
+3a5e 20600000 rtn 
+
+switchto_dpllclk:
+3a5f 70804206 hjam clksel_rc ,core_clksel 
+3a60 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a61 793ffe04 set0 4 ,pdata 
+3a62 793ffe05 set0 5 ,pdata 
+3a63 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a64 70890500 hjam 0x00 ,rfen_ck 
+3a65 70890400 hjam 0x00 ,rfen_msc 
+3a66 70890470 hjam 0x70 ,rfen_msc 
+3a67 708905ff hjam 0xff ,rfen_ck 
+3a68 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a69 79207e04 set1 4 ,pdata 
+3a6a 79207e05 set1 5 ,pdata 
+3a6b 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a6c 20403a7d call init_lpm_ctrl 
+3a6d 68108968 hfetch 1 ,rf_clkpll_int 
+3a6e 79207e07 set1 7 ,pdata 
+3a6f 60108968 hstore 1 ,rf_clkpll_int 
+3a70 793ffe07 set0 7 ,pdata 
+3a71 60108968 hstore 1 ,rf_clkpll_int 
+3a72 79207e07 set1 7 ,pdata 
+3a73 60108968 hstore 1 ,rf_clkpll_int 
+3a74 70804204 hjam clksel_xtal ,core_clksel 
+3a75 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a76 1fe17ecf and_into 0xcf ,pdata 
+3a77 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a78 1fe1fe30 or_into 0x30 ,pdata 
+3a79 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a7a 20600000 rtn 
+
+xtal_fast_wake:
+3a7b 58000f0f setarg 0xf0f 
+3a7c 20203ceb branch lpm_write_config 
+
+init_lpm_ctrl:
+3a7d 5800080f setarg 0x80f 
+3a7e 20203ceb branch lpm_write_config 
+
+start_receiver:
+3a7f 793f8025 set0 mark_ext_patch ,mark 
+3a80 44c84012 bpatch patch12_0 ,mem_patch12 
+3a81 204039bf call rf_rx_enable 
+3a82 78507c00 disable is_tx 
+3a83 7830fc00 enable is_rx 
+3a84 782b7c00 pulse init_encrypt 
+3a85 20600000 rtn 
+
+prep_crypt:
+3a86 793f8025 set0 mark_ext_patch ,mark 
+3a87 44c8c012 bpatch patch12_1 ,mem_patch12 
+3a88 6800804c fetch 1 ,mem_state_map 
+3a89 2feffe02 isolate1 smap_encryption ,pdata 
+3a8a 7920fe00 setflag true ,0 ,pdata 
+3a8b 60108011 hstore 1 ,core_encrypt 
+3a8c d8c00062 arg mem_kc ,contr 
+3a8d e8c48000 ifetch 9 ,contr 
+3a8e 98006400 iforce kc_ls 
+3a8f e8c38000 ifetch 7 ,contr 
+3a90 98006600 iforce kc_ms 
+3a91 68008054 fetch 1 ,mem_key_size 
+3a92 1fe0e9ff add pdata ,-1 ,g1l 
+3a93 782d7c00 pulse kc_p_activate 
+3a94 20600000 rtn 
+
+wait_access_end:
+3a95 1b427e00 deposit clke 
+3a96 60030099 store 6 ,mem_sync_clke 
+3a97 7846fc00 disable decode_fec0 
+3a98 242c3992 nbranch shutdown_radio ,sync 
+3a99 dd2003bb arg param_clke_cal ,clke_rt 
+3a9a 1d00d001 increase 1 ,clke_bt 
+3a9b 1d0151fc and_into 0x1fc ,clke_bt 
+3a9c 20600000 rtn 
+
+wait_access_mhalfbnd:
+3a9d 7826fc00 enable decode_fec0 
+
+wait_access_mhalfbnd_correlate:
+3a9e 37cb8400 correlate null ,mhalfbnd 
+3a9f 202c3a95 branch wait_access_end ,sync 
+3aa0 2d000402 compare 0x02 ,clke_bt ,0x02 
+3aa1 2420ba9e nbranch wait_access_mhalfbnd_correlate ,true 
+3aa2 20203a95 branch wait_access_end 
+
+wait_access_clkn_rt:
+3aa3 793f8025 set0 mark_ext_patch ,mark 
+3aa4 44c94012 bpatch patch12_2 ,mem_patch12 
+3aa5 d9600600 arg param_conn_access ,timeup 
+3aa6 7826fc00 enable decode_fec0 
+3aa7 34730400 correlate clkn_rt ,meet 
+3aa8 7846fc00 disable decode_fec0 
+3aa9 242c3992 nbranch shutdown_radio ,sync 
+3aaa 20600000 rtn 
+
+wait_access_forever:
+3aab 793f8025 set0 mark_ext_patch ,mark 
+3aac 44c9c012 bpatch patch12_3 ,mem_patch12 
+3aad 7826fc00 enable decode_fec0 
+3aae 37c18400 correlate null ,timeout 
+3aaf 7846fc00 disable decode_fec0 
+3ab0 242c3992 nbranch shutdown_radio ,sync 
+3ab1 dd2003bb arg param_clke_cal ,clke_rt 
+3ab2 1d0151fc and_into 0x1fc ,clke_bt 
+3ab3 20600000 rtn 
+
+reserve_slot:
+3ab4 793f8025 set0 mark_ext_patch ,mark 
+3ab5 44ca4012 bpatch patch12_4 ,mem_patch12 
+3ab6 98002200 iforce rega 
+3ab7 1c227e00 deposit bt_clk 
+3ab8 98409600 iadd temp ,timeup 
+3ab9 19627e00 copy timeup ,pdata 
+3aba 6002416a store 4 ,mem_next_btclk 
+3abb 1a227e00 deposit rega 
+3abc 20600000 rtn 
+
+ahead_window:
+3abd 1fe20400 copy pdata ,temp 
+3abe 793f8025 set0 mark_ext_patch ,mark 
+3abf 44cac012 bpatch patch12_5 ,mem_patch12 
+3ac0 18427e00 copy temp ,pdata 
+3ac1 20407f1d call clk2bt 
+3ac2 1c307e00 lshift16 bt_clk ,pdata 
+3ac3 79207e2c set1 44 ,pdata 
+3ac4 20407f06 call clk_diff 
+3ac5 793ffe2c set0 44 ,pdata 
+3ac6 20403b1a call get_clk 
+3ac7 20407f06 call clk_diff 
+3ac8 20740000 rtn user 
+3ac9 20407f10 call clk2rt 
+3aca 98003600 iforce stop_watch 
+3acb 37c18200 until null ,timeout 
+3acc 20600000 rtn 
+
+setup_clk:
+3acd 793f8025 set0 mark_ext_patch ,mark 
+3ace 44cb4012 bpatch patch12_6 ,mem_patch12 
+3acf 20383ad3 branch setup_clkn ,clknt 
+3ad0 35330200 until clke_rt ,meet 
+
+skip_setup_clke:
+3ad1 1d020400 copy clke_bt ,temp 
+3ad2 20203ad6 branch setup_clknbt 
+
+setup_clkn:
+3ad3 20373ad5 branch skip_setup_clkn ,attempt 
+3ad4 34730200 until clkn_rt ,meet 
+
+skip_setup_clkn:
+3ad5 1c420400 copy clkn_bt ,temp 
+
+setup_clknbt:
+3ad6 20343ae3 branch setup_clk11 ,user 
+3ad7 28400601 compare 1 ,temp ,3 
+3ad8 2420bacd nbranch setup_clk ,true 
+
+setup_complete:
+3ad9 793f8025 set0 mark_ext_patch ,mark 
+3ada 44cbc012 bpatch patch12_7 ,mem_patch12 
+3adb 68008030 fetch 1 ,mem_state 
+3adc c4000000 rtnbit0 state_inconn 
+3add 6802416a fetch 4 ,mem_next_btclk 
+3ade 98467e00 isub temp ,pdata 
+3adf 24610000 nrtn positive 
+3ae0 1fe67cff sub pdata ,0xff ,null 
+3ae1 20213acd branch setup_clk ,positive 
+3ae2 20600000 rtn 
+
+setup_clk11:
+3ae3 28400603 compare 3 ,temp ,3 
+3ae4 2420bacd nbranch setup_clk ,true 
+3ae5 20203ad9 branch setup_complete 
+
+rf_setup_time:
+3ae6 793f8025 set0 mark_ext_patch ,mark 
+3ae7 44cc4013 bpatch patch13_0 ,mem_patch13 
+3ae8 d9600600 arg param_rf_setup ,timeup 
+3ae9 20203acd branch setup_clk 
+
+rf_setup_time_slave_slot:
+3aea 78547c00 disable user 
+3aeb 20203ae6 branch rf_setup_time 
+
+rf_setup_time_master_slot:
+3aec 78347c00 enable user 
+3aed 20203ae6 branch rf_setup_time 
+
+start_transmitter:
+3aee 793f8025 set0 mark_ext_patch ,mark 
+3aef 44ccc013 bpatch patch13_1 ,mem_patch13 
+3af0 20403a86 call prep_crypt 
+3af1 7850fc00 disable is_rx 
+3af2 78307c00 enable is_tx 
+3af3 20600000 rtn 
+
+start_tx_native:
+3af4 793f8025 set0 mark_ext_patch ,mark 
+3af5 44cd4013 bpatch patch13_2 ,mem_patch13 
+3af6 d9600e43 arg param_tx_setup ,timeup 
+3af7 34730200 until clkn_rt ,meet 
+3af8 782b7c00 pulse init_encrypt 
+3af9 20600000 rtn 
+
+start_rx_native:
+3afa 793f8025 set0 mark_ext_patch ,mark 
+3afb 44cdc013 bpatch patch13_3 ,mem_patch13 
+3afc d9600d00 arg param_rx_setup ,timeup 
+3afd 34730200 until clkn_rt ,meet 
+3afe 20600000 rtn 
+
+start_tx_external:
+3aff 793f8025 set0 mark_ext_patch ,mark 
+3b00 44ce4013 bpatch patch13_4 ,mem_patch13 
+3b01 d9600e43 arg param_tx_setup ,timeup 
+3b02 35330200 until clke_rt ,meet 
+3b03 782b7c00 pulse init_encrypt 
+3b04 20600000 rtn 
+
+send_access_word:
+3b05 793f8025 set0 mark_ext_patch ,mark 
+3b06 44cec013 bpatch patch13_5 ,mem_patch13 
+3b07 51207e00 preload access 
+3b08 782efc00 enable encode_fec0 
+3b09 79202a00 set1 txgfsk ,radio_ctrl 
+3b0a 08008648 inject mod ,72 
+3b0b 784efc00 disable encode_fec0 
+3b0c 20600000 rtn 
+
+scan_mode_whiten:
+3b0d 1ca20400 copy xin ,temp 
+3b0e 18418460 or_into 0x60 ,temp 
+3b0f 18421c00 copy temp ,white_init 
+3b10 20600000 rtn 
+
+get_free_amaddr:
+3b11 793f8025 set0 mark_ext_patch ,mark 
+3b12 44cf4013 bpatch patch13_6 ,mem_patch13 
+3b13 6800c130 fetch 1 ,mem_current_amaddr 
+3b14 1fe0fe01 increase 1 ,pdata 
+3b15 c083bb17 bne param_esco_addr ,get_free_amaddr_cont 
+3b16 18007e01 force 1 ,pdata 
+
+get_free_amaddr_cont:
+3b17 6000c130 store 1 ,mem_current_amaddr 
+3b18 98000800 iforce am_addr 
+3b19 20600000 rtn 
+
+get_clk:
+3b1a 1b220400 copy clkn ,temp 
+3b1b 20748000 rtn master 
+3b1c 1b420400 copy clke ,temp 
+3b1d 20600000 rtn 
+
+get_clkbt:
+3b1e 1c427e00 deposit clkn_bt 
+3b1f 20748000 rtn master 
+3b20 1d027e00 deposit clke_bt 
+3b21 20600000 rtn 
+
+supervision_update:
+3b22 793f8025 set0 mark_ext_patch ,mark 
+3b23 44cfc013 bpatch patch13_7 ,mem_patch13 
+3b24 680a004d fetcht 4 ,mem_supervision_timer 
+3b25 20403b1e call get_clkbt 
+3b26 98461600 isub temp ,timeup 
+3b27 19627e00 deposit timeup 
+3b28 68090051 fetcht 2 ,mem_supervision_to 
+3b29 18438400 lshift temp ,temp 
+3b2a 98467e00 isub temp ,pdata 
+3b2b 20600000 rtn 
+
+supervision_flush:
+3b2c 793f8025 set0 mark_ext_patch ,mark 
+3b2d 44d04014 bpatch patch14_0 ,mem_patch14 
+3b2e 20403b1e call get_clkbt 
+3b2f 6002004d store 4 ,mem_supervision_timer 
+3b30 20600000 rtn 
+
+assert:
+3b31 793f8025 set0 mark_ext_patch ,mark 
+3b32 44d0c014 bpatch patch14_1 ,mem_patch14 
+3b33 20600000 rtn 
+
+loop:
+3b34 20203b34 branch loop 
+
+sleep:
+3b35 207a0000 rtn blank 
+3b36 1fe37e00 rshift pdata ,pdata 
+3b37 1fe0fffd increase -3 ,pdata 
+
+sleep_loop:
+3b38 1fe0ffff increase -1 ,pdata 
+3b39 2422bb38 nbranch sleep_loop ,zero 
+3b3a 18007e00 force 0 ,pdata 
+3b3b 20600000 rtn 
+
+init_param:
+3b3c df200010 arg 0x10 ,loopcnt 
+3b3d d8a00000 arg 0 ,contw 
+3b3e 20407e91 call memset0 
+3b3f d8a00362 arg mem_le_state ,contw 
+3b40 df20000a arg 10 ,loopcnt 
+3b41 20407e91 call memset0 
+3b42 7008d600 jam 0 ,mem_sp_calc 
+3b43 7009bd00 jam 0 ,mem_fifo_temp 
+3b44 7003b000 jam 0 ,mem_le_testtype 
+3b45 70017e00 jam 0 ,mem_debug_config 
+3b46 7003f700 jam 0 ,mem_lmp_conn_state 
+3b47 793f8025 set0 mark_ext_patch ,mark 
+3b48 44d14014 bpatch patch14_2 ,mem_patch14 
+3b49 70016c00 jam 0 ,mem_connection_options 
+3b4a 70015000 jam 0 ,mem_tester_emulate 
+3b4b 70015b00 jam 0 ,mem_tester_cnt 
+3b4c 589e8b33 setarg param_glap 
+3b4d 6001c147 store 3 ,mem_glap 
+3b4e 58000153 setarg param_acl_pktlen 
+3b4f 60010083 store 2 ,mem_acl_pktlen 
+3b50 7000851e jam param_sco_pktlen ,mem_sco_pktlen 
+3b51 70008601 jam param_acl_pktcnt ,mem_acl_pktcnt 
+3b52 70008807 jam param_sco_pktcnt ,mem_sco_pktcnt 
+3b53 5812e904 setarg param_hci_version 
+3b54 60018080 store 3 ,mem_hci_version 
+3b55 70008f60 jam 0x60 ,mem_fhs_misc 
+3b56 70417005 jam param_max_slot ,mem_max_slot 
+3b57 70001402 jam 0x02 ,mem_fw_ver 
+3b58 6800c6e2 fetch 1 ,mem_ssp_enable 
+3b59 245a71ea ncall init_memp ,blank 
+3b5a 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+3b5b 245a7241 ncall init_memp_256 ,blank 
+3b5c 793f8025 set0 mark_ext_patch ,mark 
+3b5d 44d1c014 bpatch patch14_3 ,mem_patch14 
+3b5e 20758000 rtn wake 
+3b5f 58000000 setarg 0 
+3b60 6001427e store 2 ,mem_tx_len 
+3b61 1c437e00 rshift clkn_bt ,pdata 
+3b62 60024134 store 4 ,mem_last_clkn 
+3b63 20600000 rtn 
+
+init_rf_param:
+3b64 7089091f hjam 0x1f ,0x909 
+3b65 70891245 hjam 0x45 ,0x912 
+3b66 70895300 hjam 0x00 ,0x953 
+3b67 70896f88 hjam 0x88 ,0x96f 
+3b68 70897330 hjam 0x30 ,0x973 
+3b69 708956c9 hjam 0xc9 ,0x956 
+3b6a 708907ff hjam 0xff ,0x907 
+3b6b 70890801 hjam 0x01 ,0x908 
+3b6c 70890af8 hjam 0xf8 ,0x90a 
+3b6d 70890bff hjam 0xff ,0x90b 
+3b6e 70891afb hjam 0xfb ,0x91a 
+3b6f 70891bfb hjam 0xfb ,0x91b 
+3b70 70891cfb hjam 0xfb ,0x91c 
+3b71 70891df6 hjam 0xf6 ,0x91d 
+3b72 70891ef2 hjam 0xf2 ,0x91e 
+3b73 70891fee hjam 0xee ,0x91f 
+3b74 708920ea hjam 0xea ,0x920 
+3b75 708921e6 hjam 0xe6 ,0x921 
+3b76 708922e2 hjam 0xe2 ,0x922 
+3b77 708923de hjam 0xde ,0x923 
+3b78 708924da hjam 0xda ,0x924 
+3b79 708925d6 hjam 0xd6 ,0x925 
+3b7a 708926d2 hjam 0xd2 ,0x926 
+3b7b 708927ce hjam 0xce ,0x927 
+3b7c 708928ca hjam 0xca ,0x928 
+3b7d 708929c6 hjam 0xc6 ,0x929 
+3b7e 70892ac2 hjam 0xc2 ,0x92a 
+3b7f 70892bbd hjam 0xbd ,0x92b 
+3b80 70892cb9 hjam 0xb9 ,0x92c 
+3b81 70892db5 hjam 0xb5 ,0x92d 
+3b82 70892eb1 hjam 0xb1 ,0x92e 
+3b83 70892fad hjam 0xad ,0x92f 
+3b84 708930a9 hjam 0xa9 ,0x930 
+3b85 70893180 hjam 0x80 ,0x931 
+3b86 70893280 hjam 0x80 ,0x932 
+3b87 70893380 hjam 0x80 ,0x933 
+3b88 708934c0 hjam 0xc0 ,0x934 
+3b89 708935c1 hjam 0xc1 ,0x935 
+3b8a 708936c2 hjam 0xc2 ,0x936 
+3b8b 708937c3 hjam 0xc3 ,0x937 
+3b8c 708938c4 hjam 0xc4 ,0x938 
+3b8d 708939c5 hjam 0xc5 ,0x939 
+3b8e 70893ac6 hjam 0xc6 ,0x93a 
+3b8f 70893bc7 hjam 0xc7 ,0x93b 
+3b90 70893c06 hjam 0x06 ,0x93c 
+3b91 70893d07 hjam 0x07 ,0x93d 
+3b92 70893e46 hjam 0x46 ,0x93e 
+3b93 70893f85 hjam 0x85 ,0x93f 
+3b94 70894086 hjam 0x86 ,0x940 
+3b95 70894187 hjam 0x87 ,0x941 
+3b96 708942c6 hjam 0xc6 ,0x942 
+3b97 708943c7 hjam 0xc7 ,0x943 
+3b98 708944d6 hjam 0xd6 ,0x944 
+3b99 708945d7 hjam 0xd7 ,0x945 
+3b9a 708946e6 hjam 0xe6 ,0x946 
+3b9b 708947f5 hjam 0xf5 ,0x947 
+3b9c 70894800 hjam 0x00 ,0x948 
+3b9d 708949f8 hjam 0xf8 ,0x949 
+3b9e 70894a7f hjam 0x7f ,0x94a 
+3b9f 70894cfb hjam 0xfb ,0x94c 
+3ba0 70894def hjam 0xef ,0x94d 
+3ba1 70894eec hjam 0xec ,0x94e 
+3ba2 70894f5e hjam 0x5e ,0x94f 
+3ba3 7089574c hjam 0x4c ,0x957 
+3ba4 7089586c hjam 0x6c ,0x958 
+3ba5 70895950 hjam 0x50 ,0x959 
+3ba6 708968e4 hjam 0xe4 ,0x968 
+3ba7 70896900 hjam 0x00 ,0x969 
+3ba8 70896a00 hjam 0x00 ,0x96a 
+3ba9 70896b30 hjam 0x30 ,0x96b 
+3baa 20600000 rtn 
+
+lpmstate:
+3bab 5800ee21 setarg 0xee21 
+3bac 60110050 hstore 2 ,core_clkoff 
+3bad 6810813e hfetch 1 ,core_lpm_ldocnt 
+3bae c301e13b bbit0 gpio_latch ,loadcode 
+3baf 7835fc00 enable wake 
+3bb0 c303bbb6 bbit0 cold_wake ,lpmwake 
+3bb1 7855fc00 disable wake 
+3bb2 1ce27e00 deposit auxcnt 
+3bb3 243a3bb6 nbranch lpmwake ,blank 
+3bb4 d85fffff arg param_hibernate_clks ,temp 
+3bb5 20203c24 branch lpm_enter_sleep 
+
+lpmwake:
+3bb6 6811813c hfetch 3 ,core_lpm_xtalcnt 
+3bb7 6011804c hstore 3 ,core_lpm_reg 
+3bb8 e8c08000 ifetch 1 ,contr 
+3bb9 1fe1feef or_into isogate_mask ,pdata 
+3bba e0a08000 istore 1 ,contw 
+3bbb 20403cf6 call lpm_write_ctrl2 
+3bbc 6810804f hfetch 1 ,core_lpm_isogate 
+3bbd 79207e04 set1 enable_retmem ,pdata 
+3bbe 6010804f hstore 1 ,core_lpm_isogate 
+3bbf 20403cf6 call lpm_write_ctrl2 
+3bc0 2055bbc7 call lpm_load_context ,wake 
+3bc1 6810804e hfetch 1 ,core_lpm_reg + 2 
+3bc2 793ffe03 set0 gpio_latch ,pdata 
+3bc3 6010804e hstore 1 ,core_lpm_reg + 2 
+3bc4 20403cf6 call lpm_write_ctrl2 
+3bc5 20758000 rtn wake 
+3bc6 2020613b branch loadcode 
+
+lpm_load_context:
+3bc7 6800c238 fetch 1 ,mem_saved_spidctrl 
+3bc8 60108086 hstore 1 ,core_spid_ctrl 
+3bc9 6801c22d fetch 3 ,mem_saved_gsel 
+3bca 60118080 hstore 3 ,core_gpio_sel 
+3bcb 68024221 fetch 4 ,mem_saved_gpio + 4 
+3bcc 60120074 hstore 4 ,core_gpio_out0 
+3bcd 6802421d fetch 4 ,mem_saved_gpio 
+3bce 60120070 hstore 4 ,core_gpio_oe0 
+3bcf 68044225 fetch 8 ,mem_saved_gpio + 8 
+3bd0 60140078 hstore 8 ,core_gpio_pu0 
+3bd1 68044230 fetch 8 ,mem_saved_mark 
+3bd2 98000000 iforce mark 
+3bd3 68140140 hfetch 8 ,core_gpio_wakeup_low 
+3bd4 600400a0 store 8 ,mem_gpio_wakeup_low 
+3bd5 2040619f call load_ucode 
+3bd6 20600000 rtn 
+
+lpm_save_context:
+3bd7 18027e00 deposit mark 
+3bd8 60044230 store 8 ,mem_saved_mark 
+3bd9 68140070 hfetch 8 ,core_gpio_oe0 
+3bda 6004421d store 8 ,mem_saved_gpio 
+3bdb e8c40000 ifetch 8 ,contr 
+3bdc e0a40000 istore 8 ,contw 
+3bdd 68118080 hfetch 3 ,core_gpio_sel 
+3bde 6001c22d store 3 ,mem_saved_gsel 
+3bdf 68108086 hfetch 1 ,core_spid_ctrl 
+3be0 6000c238 store 1 ,mem_saved_spidctrl 
+3be1 20203cfc branch lpm_write_gpio_wakeup 
+
+lpo_calibration:
+3be2 681080b4 hfetch 1 ,core_bist_ctrl 
+3be3 243a3be8 nbranch lpo_cal_inited ,blank 
+3be4 6801c20f fetch 3 ,mem_clks_per_lpo 
+3be5 247a0000 nrtn blank 
+3be6 7080b4c0 hjam 0xc0 ,core_bist_ctrl 
+3be7 70800680 hjam ccnt_start ,core_misc_ctrl 
+
+lpo_cal_inited:
+3be8 6810812d hfetch 1 ,core_perf_status 
+3be9 c4008000 rtnbit0 1 
+3bea 68118149 hfetch 3 ,core_clk_counter 
+3beb 6001c20f store 3 ,mem_clks_per_lpo 
+3bec 20600000 rtn 
+
+lpm_adjust_clk:
+3bed 793f8025 set0 mark_ext_patch ,mark 
+3bee 44d24014 bpatch patch14_4 ,mem_patch14 
+3bef 1b427e00 deposit clke 
+3bf0 20407f04 call clk_diff_rt 
+3bf1 680a41ff fetcht 4 ,mem_sleep_counter_all 
+3bf2 18467cff sub temp ,0xff ,null 
+3bf3 20610000 rtn positive 
+3bf4 1fed7e00 lshift8 pdata ,pdata 
+3bf5 1ff27e00 lshift4 pdata ,pdata 
+3bf6 9846fc00 idiv temp 
+3bf7 20407f53 call wait_div_end 
+3bf8 1807fe00 quotient pdata 
+3bf9 d84000c8 arg param_lpm_adjmax ,temp 
+3bfa 20407f5e call ceiling 
+3bfb 60008098 store 1 ,mem_lpm_adjust 
+3bfc 24343bfe nbranch lpm_adjust_positive ,user 
+3bfd 1fe67e00 sub pdata ,0 ,pdata 
+
+lpm_adjust_positive:
+3bfe 6809c20f fetcht 3 ,mem_clks_per_lpo 
+3bff 9840fe00 iadd temp ,pdata 
+3c00 6001c20f store 3 ,mem_clks_per_lpo 
+
+lpm_clear_counter:
+3c01 58000000 setarg 0 
+3c02 600241ff store 4 ,mem_sleep_counter_all 
+3c03 20600000 rtn 
+
+lpm_hibernate:
+3c04 793f8025 set0 mark_ext_patch ,mark 
+3c05 44d2c014 bpatch patch14_5 ,mem_patch14 
+3c06 20403cfc call lpm_write_gpio_wakeup 
+3c07 68120138 hfetch 4 ,core_lpm_ctrl 
+3c08 793ffe0f set0 15 ,pdata 
+3c09 6012004c hstore 4 ,core_lpm_reg 
+3c0a 20403cf4 call lpm_write_ctrl 
+
+lpm_hibernate_normal:
+3c0b d85fffff arg param_hibernate_clks ,temp 
+3c0c 6800c1f7 fetch 1 ,mem_lpm_hibernate_switch 
+3c0d 6000c21c store 1 ,mem_lpm_xtalcnt + 4 
+3c0e 6800c21a fetch 1 ,mem_lpm_xtalcnt + 2 
+3c0f 79207e07 set1 cold_wake ,pdata 
+3c10 6000c21a store 1 ,mem_lpm_xtalcnt + 2 
+
+lpm_sleep:
+3c11 793f8025 set0 mark_ext_patch ,mark 
+3c12 44d34014 bpatch patch14_6 ,mem_patch14 
+3c13 20403a7b call xtal_fast_wake 
+3c14 680241ff fetch 4 ,mem_sleep_counter_all 
+3c15 9840fe00 iadd temp ,pdata 
+3c16 600241ff store 4 ,mem_sleep_counter_all 
+3c17 20403bd7 call lpm_save_context 
+3c18 6802c218 fetch 5 ,mem_lpm_xtalcnt 
+3c19 6012004c hstore 4 ,core_lpm_reg 
+3c1a 1fef2200 rshift32 pdata ,rega 
+3c1b 37d98200 until null ,lpo_edge 
+3c1c 1b227e00 deposit clkn 
+3c1d 60034203 store 6 ,mem_sleep_clkn 
+3c1e 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+3c1f 37d98200 until null ,lpo_edge 
+3c20 37d98200 until null ,lpo_edge 
+3c21 1a227e00 deposit rega 
+3c22 6010804f hstore 1 ,core_lpm_isogate 
+3c23 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+
+lpm_enter_sleep:
+3c24 37d98200 until null ,lpo_edge 
+3c25 37d98200 until null ,lpo_edge 
+3c26 601a004c hstoret 4 ,core_lpm_reg 
+3c27 70800510 hjam lpmreg_sel_counter ,core_lpm_wr 
+3c28 37df8200 until null ,never 
+
+lpm_recover_clk:
+3c29 793f8025 set0 mark_ext_patch ,mark 
+3c2a 44d3c014 bpatch patch14_7 ,mem_patch14 
+3c2b 58000000 setarg 0 
+3c2c 1ce27c00 copy auxcnt ,null 
+3c2d 2022bc35 branch lpm_recover_timeout ,zero 
+3c2e 6810813c hfetch 1 ,core_lpm_xtalcnt 
+3c2f 6818813d hfetcht 1 ,core_lpm_buckcnt 
+3c30 98467c00 isub temp ,null 
+3c31 20213c33 branch lpm_recover_xtal ,positive 
+3c32 18427e00 deposit temp 
+
+lpm_recover_xtal:
+3c33 9ce67e00 isub auxcnt ,pdata 
+3c34 1fe0fe01 increase 1 ,pdata 
+
+lpm_recover_timeout:
+3c35 1fe0fe08 increase 8 ,pdata 
+3c36 37d98200 until null ,lpo_edge 
+3c37 9e20fe00 iadd lpo_time ,pdata 
+3c38 680a41fb fetcht 4 ,mem_sleep_counter 
+3c39 9840fe00 iadd temp ,pdata 
+3c3a 6809c20f fetcht 3 ,mem_clks_per_lpo 
+3c3b 984ffe00 imul32 temp ,pdata 
+3c3c 1fecfe00 rshift8 pdata ,pdata 
+3c3d 1ff1fe00 rshift4 pdata ,pdata 
+3c3e 1fe0fe6e increase param_lpm_fix ,pdata 
+3c3f d8400ea6 arg 3750 ,temp 
+3c40 9846fc00 idiv temp 
+3c41 20407f53 call wait_div_end 
+3c42 1807fe00 quotient pdata 
+3c43 1ff07e00 lshift16 pdata ,pdata 
+3c44 18070400 remainder temp 
+3c45 9841fe00 ior temp ,pdata 
+3c46 680b4203 fetcht 6 ,mem_sleep_clkn 
+3c47 20407ef9 call clk_add 
+3c48 18423200 copy temp ,clkn 
+3c49 68034048 fetch 6 ,mem_context + coffset_clk_offset 
+3c4a 204038e5 call calc_clke2 
+3c4b 1b427e00 deposit clke 
+3c4c 600309be store 6 ,mem_pdatatemp 
+3c4d 1ce27e00 deposit auxcnt 
+3c4e e0a08000 istore 1 ,contw 
+3c4f 6810811d hfetch 1 ,core_gpio_in1 
+3c50 1fe1fef0 or_into 0xf0 ,pdata 
+3c51 e0a08000 istore 1 ,contw 
+3c52 20600000 rtn 
+
+lpm_dispatch:
+3c53 793f8025 set0 mark_ext_patch ,mark 
+3c54 44d44015 bpatch patch15_0 ,mem_patch15 
+3c55 20403be2 call lpo_calibration 
+3c56 6801c20f fetch 3 ,mem_clks_per_lpo 
+3c57 207a0000 rtn blank 
+3c58 6800c131 fetch 1 ,mem_lpm_mode 
+3c59 207a0000 rtn blank 
+3c5a 6800c6e2 fetch 1 ,mem_ssp_enable 
+3c5b 203a3c5e branch lpm_dispatch_next ,blank 
+3c5c 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+3c5d 207a0000 rtn blank 
+
+lpm_dispatch_next:
+3c5e 6800c565 fetch 1 ,mem_le_sc_calc 
+3c5f 247a0000 nrtn blank 
+3c60 20403d0e call lpm_check_wake_lock 
+3c61 247a0000 nrtn blank 
+3c62 6800c040 fetch 1 ,mem_context 
+3c63 2fe00e03 compare 3 ,pdata ,0x7 
+3c64 2420bc8a nbranch lpm_dispatch_unconn ,true 
+3c65 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3c66 207a0000 rtn blank 
+3c67 20758000 rtn wake 
+
+lpm_dispatch_next0:
+3c68 793f8025 set0 mark_ext_patch ,mark 
+3c69 44d4c015 bpatch patch15_1 ,mem_patch15 
+3c6a 6808809f fetcht 1 ,mem_lpm_current_mult 
+3c6b 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3c6c 984ffe00 imul32 temp ,pdata 
+3c6d 18518400 rshift4 temp ,temp 
+3c6e 184b0400 rshift2 temp ,temp 
+3c6f 98467e00 isub temp ,pdata 
+3c70 680a4044 fetcht 4 ,mem_context + coffset_sniff_anchor 
+3c71 9840fe00 iadd temp ,pdata 
+3c72 6808c1f6 fetcht 1 ,mem_lpm_overhead 
+3c73 98467e00 isub temp ,pdata 
+3c74 1ff06000 lshift16 pdata ,alarm 
+
+lpm_dispatch_next1:
+3c75 793f8025 set0 mark_ext_patch ,mark 
+3c76 44d54015 bpatch patch15_2 ,mem_patch15 
+3c77 6801404e fetch 2 ,mem_context + coffset_rx_window 
+3c78 1fe37e00 rshift pdata ,pdata 
+3c79 20407f1d call clk2bt 
+3c7a 1e027e00 deposit alarm 
+3c7b 20407f06 call clk_diff 
+3c7c 1b420400 copy clke ,temp 
+3c7d 20407f04 call clk_diff_rt 
+3c7e 20740000 rtn user 
+
+lpm_dispatch_sleep:
+3c7f 20407f16 call clk2lpo 
+
+lpm_dispatch_lpo:
+3c80 793f8025 set0 mark_ext_patch ,mark 
+3c81 44d5c015 bpatch patch15_3 ,mem_patch15 
+3c82 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+3c83 98467c00 isub temp ,null 
+3c84 20213c01 branch lpm_clear_counter ,positive 
+3c85 600a41fb storet 4 ,mem_sleep_counter 
+3c86 20403d9f call app_will_enter_lpm 
+3c87 204048a5 call l2cap_lpm_save_txbuf 
+3c88 680a41fb fetcht 4 ,mem_sleep_counter 
+3c89 20203c11 branch lpm_sleep 
+
+lpm_dispatch_unconn:
+3c8a 793f8025 set0 mark_ext_patch ,mark 
+3c8b 44d64015 bpatch patch15_4 ,mem_patch15 
+3c8c 6800c040 fetch 1 ,mem_context 
+3c8d c3800000 rtnbit1 state_inconn 
+3c8e c3818000 rtnbit1 state_inpage 
+3c8f 6800c6e2 fetch 1 ,mem_ssp_enable 
+3c90 203a3c93 branch lpm_unconn_nossp ,blank 
+3c91 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+3c92 207a0000 rtn blank 
+
+lpm_unconn_nossp:
+3c93 793f8025 set0 mark_ext_patch ,mark 
+3c94 44d6c015 bpatch patch15_5 ,mem_patch15 
+3c95 6800c3ff fetch 1 ,mem_le_adv_enable 
+3c96 243a3c99 nbranch lpm_unconn_cont ,blank 
+3c97 6800c133 fetch 1 ,mem_scan_mode 
+3c98 207a0000 rtn blank 
+
+lpm_unconn_cont:
+3c99 680141f4 fetch 2 ,mem_lpm_interval 
+3c9a 207a0000 rtn blank 
+
+lpm_sleep_btclk:
+3c9b 6808c1f6 fetcht 1 ,mem_lpm_overhead 
+3c9c 98467e00 isub temp ,pdata 
+3c9d d8401d4c arg 7500 ,temp 
+3c9e 984ffe00 imul32 temp ,pdata 
+3c9f 20203c7f branch lpm_dispatch_sleep 
+
+lpm_set_mult:
+3ca0 793f8025 set0 mark_ext_patch ,mark 
+3ca1 44d74015 bpatch patch15_6 ,mem_patch15 
+3ca2 7855fc00 disable wake 
+3ca3 68008030 fetch 1 ,mem_state 
+3ca4 c4008000 rtnbit0 state_insniff 
+3ca5 2436bcbc nbranch lpm_not_match ,match 
+3ca6 20403cb7 call lpm_match 
+3ca7 68014161 fetch 2 ,mem_rx_window_sniff 
+3ca8 6001003e store 2 ,mem_rx_window 
+3ca9 68008047 fetch 1 ,mem_arq 
+3caa c281bccb bbit1 wack ,lpm_mult_short 
+3cab c586bccb bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3cac 20404816 call l2cap_malloc_is_fifo_empty 
+3cad 243a3ccb nbranch lpm_mult_short ,blank 
+3cae 680142a4 fetch 2 ,mem_cb_bt_set_mult 
+3caf 20407f69 call callback_func 
+
+lpm_mult_wait_timeout:
+3cb0 70009f00 jam 0 ,mem_lpm_current_mult 
+3cb1 c586bccb bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3cb2 6800c214 fetch 1 ,mem_lpm_mult_cnt 
+3cb3 203a3ccf branch lpm_mult_long ,blank 
+3cb4 1fe0ffff increase -1 ,pdata 
+3cb5 6000c214 store 1 ,mem_lpm_mult_cnt 
+3cb6 20600000 rtn 
+
+lpm_match:
+3cb7 7041f900 jam 0 ,mem_sniff_unint_lost 
+3cb8 6801c209 fetch 3 ,mem_sniff_rcv 
+3cb9 1fe0fe01 increase 1 ,pdata 
+3cba 6001c209 store 3 ,mem_sniff_rcv 
+3cbb 20600000 rtn 
+
+lpm_not_match:
+3cbc 793f8025 set0 mark_ext_patch ,mark 
+3cbd 44d7c015 bpatch patch15_7 ,mem_patch15 
+3cbe 68094161 fetcht 2 ,mem_rx_window_sniff 
+3cbf 18430400 rshift temp ,temp 
+3cc0 6801003e fetch 2 ,mem_rx_window 
+3cc1 9840fe00 iadd temp ,pdata 
+3cc2 6001003e store 2 ,mem_rx_window 
+
+lpm_lost:
+3cc3 70009f00 jam 0 ,mem_lpm_current_mult 
+3cc4 6801c20c fetch 3 ,mem_sniff_lost 
+3cc5 1fe0fe01 increase 1 ,pdata 
+3cc6 6001c20c store 3 ,mem_sniff_lost 
+3cc7 6800c1f9 fetch 1 ,mem_sniff_unint_lost 
+3cc8 1fe0fe01 increase 1 ,pdata 
+3cc9 6000c1f9 store 1 ,mem_sniff_unint_lost 
+3cca 20600000 rtn 
+
+lpm_mult_short:
+3ccb 70009f00 jam 0 ,mem_lpm_current_mult 
+3ccc 6800c213 fetch 1 ,mem_lpm_mult_timeout 
+3ccd 6000c214 store 1 ,mem_lpm_mult_cnt 
+3cce 20600000 rtn 
+
+lpm_mult_long:
+3ccf 6808c212 fetcht 1 ,mem_lpm_mult 
+3cd0 6008809f storet 1 ,mem_lpm_current_mult 
+3cd1 20600000 rtn 
+
+lpm_cal_xtal_startup:
+3cd2 793f8025 set0 mark_ext_patch ,mark 
+3cd3 44d84016 bpatch patch16_0 ,mem_patch16 
+3cd4 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+3cd5 247a0000 nrtn blank 
+3cd6 70804206 hjam clksel_rc ,core_clksel 
+3cd7 58000f0c setarg 0xf0c 
+3cd8 20403ceb call lpm_write_config 
+3cd9 58030d40 setarg 200000 
+3cda 20403b35 call sleep 
+3cdb 37d98200 until null ,lpo_edge 
+3cdc 1e226000 copy lpo_time ,alarm 
+3cdd 20403a7b call xtal_fast_wake 
+3cde 70804204 hjam clksel_xtal ,core_clksel 
+3cdf 2000000a nop 10 
+3ce0 37d98200 until null ,lpo_edge 
+3ce1 1e227e00 deposit lpo_time 
+3ce2 9e067e00 isub alarm ,pdata 
+3ce3 1fe0fe30 increase 0x30 ,pdata 
+3ce4 d84000ff arg 0xff ,temp 
+3ce5 20407f5e call ceiling 
+3ce6 6000c218 store 1 ,mem_lpm_xtalcnt 
+3ce7 20007530 nop 30000 
+3ce8 20007530 nop 30000 
+3ce9 20007530 nop 30000 
+3cea 20600000 rtn 
+
+lpm_write_config:
+3ceb d8a00fff arg 0xfff ,contw 
+3cec 98a10a00 iand contw ,contw 
+3ced 6800c215 fetch 1 ,mem_lpm_config 
+3cee 1fe17ef0 and_into 0xf0 ,pdata 
+3cef 1fed7e00 lshift8 pdata ,pdata 
+3cf0 98a1fe00 ior contw ,pdata 
+3cf1 6011004c hstore 2 ,core_lpm_reg 
+3cf2 e8c10000 ifetch 2 ,contr 
+3cf3 e0a10000 istore 2 ,contw 
+
+lpm_write_ctrl:
+3cf4 58000001 setarg lpmreg_sel_ctrl 
+3cf5 20203cf7 branch lpm_write 
+
+lpm_write_ctrl2:
+3cf6 58000002 setarg lpmreg_sel_ctrl2 
+
+lpm_write:
+3cf7 37d98200 until null ,lpo_edge 
+3cf8 60108005 hstore 1 ,core_lpm_wr 
+3cf9 37d98200 until null ,lpo_edge 
+3cfa 37d98200 until null ,lpo_edge 
+3cfb 20600000 rtn 
+
+lpm_write_gpio_wakeup:
+3cfc 793f8025 set0 mark_ext_patch ,mark 
+3cfd 44d8c016 bpatch patch16_1 ,mem_patch16 
+3cfe 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+3cff 6012004c hstore 4 ,core_lpm_reg 
+3d00 58000004 setarg lpmreg_sel_gpiolow 
+3d01 20403cf7 call lpm_write 
+3d02 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+3d03 6012004c hstore 4 ,core_lpm_reg 
+3d04 58000008 setarg lpmreg_sel_gpiohigh 
+3d05 20203cf7 branch lpm_write 
+
+lpm_get_wake_lock:
+3d06 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d07 f9207e00 qset1 pdata 
+3d08 600141f2 store 2 ,mem_lpm_wake_lock 
+3d09 20600000 rtn 
+
+lpm_put_wake_lock:
+3d0a 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d0b f93ffe00 qset0 pdata 
+3d0c 600141f2 store 2 ,mem_lpm_wake_lock 
+3d0d 20600000 rtn 
+
+lpm_check_wake_lock:
+3d0e 793f8025 set0 mark_ext_patch ,mark 
+3d0f 44d94016 bpatch patch16_2 ,mem_patch16 
+3d10 20403d9d call app_check_wake_lock 
+3d11 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d12 1fe22200 copy pdata ,rega 
+3d13 6800804c fetch 1 ,mem_state_map 
+3d14 2feffe06 isolate1 smap_rxlmp ,pdata 
+3d15 7920a20b setflag true ,wake_lock_lmp_rx ,rega 
+3d16 68008078 fetch 1 ,mem_lmo_opcode1 
+3d17 6808807c fetcht 1 ,mem_lmo_opcode2 
+3d18 9840fe00 iadd temp ,pdata 
+3d19 68088048 fetcht 1 ,mem_lmp_to_send 
+3d1a 9840fe00 iadd temp ,pdata 
+3d1b 7d3a220a nsetflag blank ,wake_lock_lmp_tx ,rega 
+
+lpm_check_wake_lock0:
+3d1c 793f8025 set0 mark_ext_patch ,mark 
+3d1d 44d9c016 bpatch patch16_3 ,mem_patch16 
+3d1e 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+3d1f 68090288 fetcht 2 ,mem_l2cap_rxbuff2_len 
+3d20 9840fe00 iadd temp ,pdata 
+3d21 7d3a220d nsetflag blank ,wake_lock_l2cap_rx ,rega 
+3d22 6802c6f0 fetch 5 ,mem_ipc_fifo_bt2c51 
+3d23 7d3a220f nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+3d24 6802c6f8 fetch 5 ,mem_ipc_fifo_c512bt 
+3d25 7d3a220e nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+3d26 6800c271 fetch 1 ,mem_hci_cmd 
+3d27 7d3a2208 nsetflag blank ,wake_lock_cmd ,rega 
+3d28 6800c132 fetch 1 ,mem_device_option 
+3d29 2fe1fe0a compare dvc_op_module ,pdata ,0xff 
+3d2a 2040bd2c call lpm_uart_wake_lock ,true 
+3d2b 20203d31 branch lpm_check_wake_lock_nothci 
+
+lpm_uart_wake_lock:
+3d2c 68110112 hfetch 2 ,core_uart_rxitems 
+3d2d 7d3a2206 nsetflag blank ,wake_lock_uart_rx ,rega 
+3d2e 6811010e hfetch 2 ,core_uart_txitems 
+3d2f 7d3a2205 nsetflag blank ,wake_lock_uart_tx ,rega 
+3d30 20600000 rtn 
+
+lpm_check_wake_lock_nothci:
+3d31 5ffffff8 setarg -8 
+3d32 9a212200 iand rega ,rega 
+
+lpm_check_wake_lock_end:
+3d33 1a227e00 copy rega ,pdata 
+3d34 600141f2 store 2 ,mem_lpm_wake_lock 
+3d35 207a0000 rtn blank 
+3d36 20768000 rtn match 
+3d37 7835fc00 enable wake 
+3d38 20600000 rtn 
+
+lpm_shut_down:
+3d39 68120138 hfetch 4 ,core_lpm_ctrl 
+3d3a 793ffe1b set0 27 ,pdata 
+3d3b 6012004c hstore 4 ,core_lpm_reg 
+3d3c 20403cf4 call lpm_write_ctrl 
+3d3d 20203b31 branch assert 
+
+lpm_disable_exen_output:
+3d3e 6812013c hfetch 4 ,core_lpm_xtalcnt 
+3d3f 793ffe14 set0 20 ,pdata 
+3d40 6012004c hstore 4 ,core_lpm_reg 
+3d41 20203cf6 branch lpm_write_ctrl2 
+
+check_bt_disabled:
+3d42 680141f0 fetch 2 ,mem_chip_functions 
+3d43 c2803b31 bbit1 bt_disabled ,assert 
+3d44 20600000 rtn 
+
+check_ble_disabled:
+3d45 680141f0 fetch 2 ,mem_chip_functions 
+3d46 c280bb31 bbit1 ble_disabled ,assert 
+3d47 20600000 rtn 
+
+check_module_disabled:
+3d48 680141f0 fetch 2 ,mem_chip_functions 
+3d49 c2813b31 bbit1 module_disable ,assert 
+3d4a 20600000 rtn 
+
+app_init:
+3d4b 793f8025 set0 mark_ext_patch ,mark 
+3d4c 44da4016 bpatch patch16_4 ,mem_patch16 
+3d4d 6800c132 fetch 1 ,mem_device_option 
+3d4e 203a3d4b branch app_init ,blank 
+3d4f c001c00c beq dvc_op_kb ,kb_init 
+3d50 c004f293 beq dvc_op_shutter ,shutter_init 
+3d51 c00559dd beq dvc_op_module ,module_init 
+3d52 c2835dca bbit1 dvc_op_mouse ,mouse_init 
+3d53 c283c00c bbit1 dvc_op_keyboard ,kb_init 
+3d54 20600000 rtn 
+
+app_lpm_init:
+3d55 793f8025 set0 mark_ext_patch ,mark 
+3d56 44dac016 bpatch patch16_5 ,mem_patch16 
+3d57 70015000 jam 0 ,mem_tester_emulate 
+3d58 70017e00 jam 0 ,mem_debug_config 
+3d59 70017f00 jam 0 ,mem_lch_code 
+3d5a 58000000 setarg 0 
+3d5b 600288d2 store 5 ,mem_sp_state_start 
+3d5c 6800c132 fetch 1 ,mem_device_option 
+3d5d 203a3d55 branch app_lpm_init ,blank 
+3d5e c0055a12 beq dvc_op_module ,module_lpm_init 
+
+app_lpm_init0:
+3d5f 20600000 rtn 
+
+app_process_idle:
+3d60 20407cf4 call ui_dispatch 
+3d61 20407d9e call check_51cmd 
+3d62 20403d69 call app_process_bb_event 
+3d63 68014294 fetch 2 ,mem_cb_idle_process 
+3d64 20207f69 branch callback_func 
+
+app_process_bt:
+3d65 68014292 fetch 2 ,mem_cb_bt_process 
+3d66 20207f69 branch callback_func 
+
+app_process_ble:
+3d67 68014290 fetch 2 ,mem_cb_le_process 
+3d68 20207f69 branch callback_func 
+
+app_process_bb_event:
+3d69 793f8025 set0 mark_ext_patch ,mark 
+3d6a 44db4016 bpatch patch16_6 ,mem_patch16 
+3d6b da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+3d6c 20407f95 call fifo_out 
+3d6d 207a0000 rtn blank 
+3d6e 1fe22600 copy pdata ,regc 
+3d6f 20403d73 call app_event_normal_process 
+3d70 20203d9b branch app_process_bb_event_priority 
+
+app_discard_event:
+3d71 da600000 arg 0 ,regc 
+3d72 20600000 rtn 
+
+app_event_normal_process:
+3d73 c000bd88 beq bt_evt_bb_connected ,app_evt_bt_conn 
+3d74 c0083dcf beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+3d75 c002bdac beq bt_evt_setup_complete ,app_evt_setup_complete 
+3d76 c0093db3 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+3d77 c0033dcb beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+3d78 c0023df6 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+3d79 c0013dfb beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+3d7a c009bdf6 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+3d7b c00a3dc2 beq bt_evt_le_connected ,app_le_event_bb_connected 
+3d7c c00abdc6 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+3d7d c001bda5 beq bt_evt_reconn_started ,app_event_reconn_start 
+3d7e c005bdb7 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+3d7f c0063dbe beq bt_evt_exit_sniff ,app_event_exit_sniff 
+3d80 c00b3dd3 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+3d81 c00c3da1 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+3d82 c0153d91 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+3d83 c015bd8f beq bt_evt_switch_success_master ,app_event_switch_success 
+3d84 1fe1040f and pdata ,0x0f ,temp 
+3d85 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+3d86 c0283dd7 beq bt_evt_timer_init ,app_evt_timer 
+3d87 20600000 rtn 
+
+app_evt_bt_conn:
+3d88 6801470b fetch 2 ,mem_ui_state_map 
+3d89 79207e00 set1 ui_state_bt_connected ,pdata 
+3d8a 6001470b store 2 ,mem_ui_state_map 
+3d8b 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d8c 793ffe00 set0 app_disc_by_button ,pdata 
+3d8d 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d8e 20600000 rtn 
+
+app_event_switch_success:
+3d8f 70024d00 jam 0 ,mem_switch_fail_master_count 
+3d90 20600000 rtn 
+
+app_event_switch_fail_master:
+3d91 6800824d fetch 1 ,mem_switch_fail_master_count 
+3d92 1fe0fe01 increase 1 ,pdata 
+3d93 6000824d store 1 ,mem_switch_fail_master_count 
+3d94 1fe67c01 sub pdata ,1 ,null 
+3d95 20213e47 branch app_bt_role_switch ,positive 
+3d96 70024d00 jam 0 ,mem_switch_fail_master_count 
+3d97 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d98 79207e09 set1 app_disc_switch_fail ,pdata 
+3d99 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d9a 20203e52 branch app_bt_disconnect 
+
+app_process_bb_event_priority:
+3d9b 68014296 fetch 2 ,mem_cb_bb_event_process 
+3d9c 20207f69 branch callback_func 
+
+app_check_wake_lock:
+3d9d 6801428a fetch 2 ,mem_cb_check_wakelock 
+3d9e 20207f69 branch callback_func 
+
+app_will_enter_lpm:
+3d9f 6801428e fetch 2 ,mem_cb_before_lpm 
+3da0 20207f69 branch callback_func 
+
+app_event_linkkey_generate:
+3da1 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da2 79207e01 set1 app_disc_after_pairing ,pdata 
+3da3 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da4 20203e7d branch app_bt_store_reconn_info 
+
+app_event_reconn_start:
+3da5 6801470b fetch 2 ,mem_ui_state_map 
+3da6 79207e07 set1 ui_state_bt_reconnect ,pdata 
+3da7 6001470b store 2 ,mem_ui_state_map 
+3da8 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da9 79207e02 set1 app_disc_after_reconn ,pdata 
+3daa 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dab 20600000 rtn 
+
+app_evt_setup_complete:
+3dac 6801470b fetch 2 ,mem_ui_state_map 
+3dad 79207e01 set1 ui_state_bt_setup_complete ,pdata 
+3dae 6001470b store 2 ,mem_ui_state_map 
+3daf 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3db0 79207e04 set1 app_disc_after_setup_done ,pdata 
+3db1 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3db2 20600000 rtn 
+
+app_evt_hid_handshake:
+3db3 6801470b fetch 2 ,mem_ui_state_map 
+3db4 79207e03 set1 ui_state_bt_hid_handshake ,pdata 
+3db5 6001470b store 2 ,mem_ui_state_map 
+3db6 20600000 rtn 
+
+app_event_enter_sniff:
+3db7 6801470b fetch 2 ,mem_ui_state_map 
+3db8 79207e05 set1 ui_state_bt_sniff ,pdata 
+3db9 6001470b store 2 ,mem_ui_state_map 
+3dba 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dbb 79207e03 set1 app_disc_after_sniff ,pdata 
+3dbc 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dbd 20600000 rtn 
+
+app_event_exit_sniff:
+3dbe 6801470b fetch 2 ,mem_ui_state_map 
+3dbf 793ffe05 set0 ui_state_bt_sniff ,pdata 
+3dc0 6001470b store 2 ,mem_ui_state_map 
+3dc1 20600000 rtn 
+
+app_le_event_bb_connected:
+3dc2 6801470b fetch 2 ,mem_ui_state_map 
+3dc3 79207e09 set1 ui_state_ble_connected ,pdata 
+3dc4 6001470b store 2 ,mem_ui_state_map 
+3dc5 20600000 rtn 
+
+app_le_event_bb_disconn:
+3dc6 6801470b fetch 2 ,mem_ui_state_map 
+3dc7 793ffe09 set0 ui_state_ble_connected ,pdata 
+3dc8 6001470b store 2 ,mem_ui_state_map 
+3dc9 70459500 jam 0 ,mem_le_switch_send_data 
+3dca 20203e81 branch app_lpm_mult_disable 
+
+app_bb_event_hid_connected:
+3dcb 6801470b fetch 2 ,mem_ui_state_map 
+3dcc 79207e02 set1 ui_state_bt_hid_conn ,pdata 
+3dcd 6001470b store 2 ,mem_ui_state_map 
+3dce 20600000 rtn 
+
+app_evt_button_long_pressed:
+3dcf 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd0 79207e00 set1 app_disc_by_button ,pdata 
+3dd1 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd2 20600000 rtn 
+
+app_event_ml2cap_conn_refused:
+3dd3 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd4 79207e08 set1 app_disc_l2cap_refused ,pdata 
+3dd5 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd6 20203e52 branch app_bt_disconnect 
+
+app_evt_timer:
+3dd7 793f8025 set0 mark_ext_patch ,mark 
+3dd8 44dbc016 bpatch patch16_7 ,mem_patch16 
+3dd9 6008824e storet 1 ,mem_app_evt_timer_count 
+
+app_evt_100ms_loop:
+3dda 6800824e fetch 1 ,mem_app_evt_timer_count 
+3ddb 207a0000 rtn blank 
+3ddc 1fe0ffff increase -1 ,pdata 
+3ddd 6000824e store 1 ,mem_app_evt_timer_count 
+3dde 20407d02 call ui_button_polling 
+3ddf 20403e3b call app_lpm_wake_auto_lock_timer 
+3de0 20403de5 call app_unsniff_delay_timer 
+3de1 20403ded call app_discovery_timer 
+3de2 680142a0 fetch 2 ,mem_cb_event_timer 
+3de3 20407f69 call callback_func 
+3de4 20203dda branch app_evt_100ms_loop 
+
+app_unsniff_delay_timer:
+3de5 6800c2aa fetch 1 ,mem_unsniff2sniff_timer_count 
+3de6 207a0000 rtn blank 
+3de7 1fe0ffff increase -1 ,pdata 
+3de8 6000c2aa store 1 ,mem_unsniff2sniff_timer_count 
+3de9 247a0000 nrtn blank 
+3dea 20403292 call context_check_idle 
+3deb 2022be79 branch app_bt_enter_sniff ,zero 
+3dec 20600000 rtn 
+
+app_discovery_timer:
+3ded 68014707 fetch 2 ,mem_discovery_timeout_timer_count 
+3dee 207a0000 rtn blank 
+3def 1fe0ffff increase -1 ,pdata 
+3df0 60014707 store 2 ,mem_discovery_timeout_timer_count 
+3df1 247a0000 nrtn blank 
+3df2 20403e59 call app_bt_stop_discovery 
+3df3 20403e73 call app_led_off 
+3df4 68014298 fetch 2 ,mem_cb_discovry_timeout 
+3df5 20207f69 branch callback_func 
+
+app_bb_event_reconn_failed:
+3df6 20403e0f call app_disconn_reason_flag_clear 
+
+app_clear_reconnect_flag:
+3df7 6801470b fetch 2 ,mem_ui_state_map 
+3df8 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+3df9 6001470b store 2 ,mem_ui_state_map 
+3dfa 20600000 rtn 
+
+app_bb_event_bb_disconn:
+3dfb 7042aa00 jam 0 ,mem_unsniff2sniff_timer_count 
+3dfc 6801470b fetch 2 ,mem_ui_state_map 
+3dfd c283be00 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+3dfe 2fec0001 isolate0 ui_state_bt_setup_complete ,pdata 
+3dff 2040bd71 call app_discard_event ,true 
+
+app_bb_event_bb_reconn_disconn:
+3e00 793f8025 set0 mark_ext_patch ,mark 
+3e01 44dc4017 bpatch patch17_0 ,mem_patch17 
+3e02 6801470b fetch 2 ,mem_ui_state_map 
+3e03 793ffe00 set0 ui_state_bt_connected ,pdata 
+3e04 793ffe01 set0 ui_state_bt_setup_complete ,pdata 
+3e05 793ffe02 set0 ui_state_bt_hid_conn ,pdata 
+3e06 793ffe03 set0 ui_state_bt_hid_handshake ,pdata 
+3e07 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+3e08 6001470b store 2 ,mem_ui_state_map 
+3e09 20203e81 branch app_lpm_mult_disable 
+
+app_bb_hibernate:
+3e0a 20403e0c call app_disconn_reason_clear 
+3e0b 20203e75 branch app_enter_hibernate 
+
+app_disconn_reason_clear:
+3e0c 58000000 setarg 0 
+3e0d 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e0e 20600000 rtn 
+
+app_disconn_reason_flag_clear:
+3e0f 58000000 setarg 0 
+3e10 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e11 20600000 rtn 
+
+app_disconn_reason_collect_bt:
+3e12 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e13 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e14 58000000 setarg 0 
+3e15 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e16 20600000 rtn 
+
+app_disconn_reason_collect_ble:
+3e17 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e18 79207e07 set1 app_disc_ble ,pdata 
+3e19 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e1a 58000000 setarg 0 
+3e1b 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e1c 20600000 rtn 
+
+app_check_sniff:
+3e1d 6800c70b fetch 1 ,mem_ui_state_map 
+3e1e 2feffe05 isolate1 ui_state_bt_sniff ,pdata 
+3e1f 20600000 rtn 
+
+app_initflag_store:
+3e20 5800aa55 setarg eeprom_init_flag 
+
+app_flag_store:
+3e21 600109ce store 2 ,mem_timeup 
+3e22 793f8025 set0 mark_ext_patch ,mark 
+3e23 44dcc017 bpatch patch17_1 ,mem_patch17 
+3e24 d8400002 arg 2 ,temp 
+3e25 da2009ce arg mem_timeup ,rega 
+3e26 da4000c3 arg eeprom_module_init_flag ,regb 
+3e27 2020626f branch iicd_write_eep_data 
+
+app_initflag_check:
+3e28 793f8025 set0 mark_ext_patch ,mark 
+3e29 44dd4017 bpatch patch17_2 ,mem_patch17 
+3e2a d8400002 arg 2 ,temp 
+3e2b da2009be arg mem_pdatatemp ,rega 
+3e2c da4000c3 arg eeprom_module_init_flag ,regb 
+3e2d 20406245 call iicd_read_eep_data 
+3e2e 680109be fetch 2 ,mem_pdatatemp 
+3e2f d840aa55 arg eeprom_init_flag ,temp 
+3e30 98467c00 isub temp ,null 
+3e31 20600000 rtn 
+
+app_start_auto_sniff:
+3e32 6800c5f3 fetch 1 ,mem_unsniff2sniff_timer 
+3e33 6000c2aa store 1 ,mem_unsniff2sniff_timer_count 
+3e34 20600000 rtn 
+
+app_get_lpm_wake_lock:
+3e35 d8e00009 arg wake_lock_app ,queue 
+3e36 20203d06 branch lpm_get_wake_lock 
+
+app_put_lpm_wake_lock:
+3e37 d8e00009 arg wake_lock_app ,queue 
+3e38 20203d0a branch lpm_put_wake_lock 
+
+app_lpm_wake_auto_lock:
+3e39 7042ab05 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+3e3a 20203e35 branch app_get_lpm_wake_lock 
+
+app_lpm_wake_auto_lock_timer:
+3e3b 6800c2ab fetch 1 ,mem_wake_up_delay_timer 
+3e3c 207a0000 rtn blank 
+3e3d 1fe0ffff increase -1 ,pdata 
+3e3e 6000c2ab store 1 ,mem_wake_up_delay_timer 
+3e3f 247a0000 nrtn blank 
+3e40 20203e37 branch app_put_lpm_wake_lock 
+
+app_l2cap_flow_control_enable:
+3e41 7043f301 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+3e42 20600000 rtn 
+
+app_l2cap_flow_control_disable:
+3e43 7043f300 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+3e44 20600000 rtn 
+
+app_bt_set_pincode:
+3e45 7009bd0a jam bt_cmd_set_pin_code ,mem_fifo_temp 
+3e46 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_role_switch:
+3e47 7009bd1d jam bt_cmd_role_switch ,mem_fifo_temp 
+3e48 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_start_reconnect:
+3e49 793f8025 set0 mark_ext_patch ,mark 
+3e4a 44ddc017 bpatch patch17_3 ,mem_patch17 
+3e4b 6800c2ac fetch 1 ,mem_app_connection_options 
+3e4c 6000816c store 1 ,mem_connection_options 
+3e4d 70024c01 jam app_flag_reconnect ,mem_reconnect_flag 
+3e4e 7009bd03 jam bt_cmd_reconnect ,mem_fifo_temp 
+3e4f 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_reconnect_cancel:
+3e50 7009bd1e jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+3e51 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_disconnect:
+3e52 7009bd04 jam bt_cmd_disconnect ,mem_fifo_temp 
+3e53 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_start_discovery_short:
+3e54 68014716 fetch 2 ,mem_discovery_timeout 
+3e55 60014707 store 2 ,mem_discovery_timeout_timer_count 
+
+app_bt_start_discovery_led_blink:
+3e56 20403e6f call app_led_start_blink 
+
+app_bt_start_discovery:
+3e57 7009bd01 jam bt_cmd_start_discovery ,mem_fifo_temp 
+3e58 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_stop_discovery:
+3e59 58000000 setarg 0 
+3e5a 60014707 store 2 ,mem_discovery_timeout_timer_count 
+3e5b 7009bd02 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+3e5c 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_direct_adv:
+3e5d 7009bd0f jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+3e5e 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_direct_adv:
+3e5f 7009bd10 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+3e60 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_adv:
+3e61 7009bd0e jam bt_cmd_stop_adv ,mem_fifo_temp 
+3e62 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_adv:
+3e63 7009bd0d jam bt_cmd_start_adv ,mem_fifo_temp 
+3e64 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_scan:
+3e65 7009bd17 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+3e66 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_scan:
+3e67 7009bd18 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+3e68 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_conn:
+3e69 7009bd16 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+3e6a 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_disconnect:
+3e6b 7009bd11 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+3e6c 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_write:
+3e6d 7009bd1c jam bt_cmd_le_start_write ,mem_fifo_temp 
+3e6e 20207d90 branch ui_ipc_send_cmd 
+
+app_led_start_blink:
+3e6f 7009bd15 jam bt_cmd_led_blink ,mem_fifo_temp 
+3e70 20207d90 branch ui_ipc_send_cmd 
+
+app_led_on:
+3e71 7009bd14 jam bt_cmd_led_on ,mem_fifo_temp 
+3e72 20207d90 branch ui_ipc_send_cmd 
+
+app_led_stop_blink:
+
+app_led_off:
+3e73 7009bd13 jam bt_cmd_led_off ,mem_fifo_temp 
+3e74 20207d90 branch ui_ipc_send_cmd 
+
+app_enter_hibernate:
+3e75 7009bd19 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+3e76 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_sniff_exit:
+3e77 7009bd06 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+3e78 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_enter_sniff:
+3e79 7009bd05 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+3e7a 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_store_reconn_info:
+3e7b 7009bd1f jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+3e7c 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_store_reconn_info:
+3e7d 7009bd20 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+3e7e 20207d90 branch ui_ipc_send_cmd 
+
+app_lpm_mult_enable:
+3e7f 7920000d set1 mark_lpm_mult_enable ,mark 
+3e80 20600000 rtn 
+
+app_lpm_mult_disable:
+3e81 793f800d set0 mark_lpm_mult_enable ,mark 
+3e82 20600000 rtn 
+
+hci_rx_h4:
+3e83 793f8025 set0 mark_ext_patch ,mark 
+3e84 44de4017 bpatch patch17_4 ,mem_patch17 
+3e85 6800c271 fetch 1 ,mem_hci_cmd 
+3e86 247a0000 nrtn blank 
+
+hci_rx_h4_1:
+3e87 20403e8a call hci_h4_parse_packet 
+3e88 24543ea3 ncall h4_rx_discard_packet ,user 
+3e89 20600000 rtn 
+
+hci_h4_parse_packet:
+3e8a 793f8025 set0 mark_ext_patch ,mark 
+3e8b 44dec017 bpatch patch17_5 ,mem_patch17 
+3e8c 18622200 copy contru ,rega 
+3e8d d8400004 arg 4 ,temp 
+3e8e e8608000 ifetch 1 ,contru 
+3e8f c000be95 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+3e90 18408401 increase 1 ,temp 
+3e91 c0013e95 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+3e92 18627e00 copy contru ,pdata 
+3e93 60110058 hstore 2 ,core_uart_rrptr 
+3e94 20600000 rtn 
+
+hci_h4_parse_packet_wait_len:
+3e95 68110112 hfetch 2 ,core_uart_rxitems 
+3e96 98467c00 isub temp ,null 
+3e97 24213e95 nbranch hci_h4_parse_packet_wait_len ,positive 
+3e98 78547c00 disable user 
+3e99 1a220600 copy rega ,contru 
+3e9a 20403eac call h4_get_rx_payload_len 
+3e9b 98408400 iadd temp ,temp 
+
+hci_h4_parse_packet_wait:
+3e9c 68110112 hfetch 2 ,core_uart_rxitems 
+3e9d 98467c00 isub temp ,null 
+3e9e 24213e9c nbranch hci_h4_parse_packet_wait ,positive 
+3e9f 1a220600 copy rega ,contru 
+3ea0 e8608000 ifetch 1 ,contru 
+3ea1 c000bf06 beq hci_h4_type_cmd ,process_hci_cmd 
+3ea2 20203b31 branch assert 
+
+h4_rx_discard_packet:
+3ea3 793f8025 set0 mark_ext_patch ,mark 
+3ea4 44df4017 bpatch patch17_6 ,mem_patch17 
+3ea5 68110058 hfetch 2 ,core_uart_rrptr 
+3ea6 98000600 iforce contru 
+3ea7 20403eac call h4_get_rx_payload_len 
+3ea8 98608600 iadd contru ,contru 
+3ea9 18627e00 deposit contru 
+3eaa 60110058 hstore 2 ,core_uart_rrptr 
+3eab 20600000 rtn 
+
+h4_get_rx_payload_len:
+3eac e8608000 ifetch 1 ,contru 
+3ead 18608602 increase 2 ,contru 
+3eae c0013eb1 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+3eaf e8608000 ifetch 1 ,contru 
+3eb0 20600000 rtn 
+
+h4_get_rx_payload_len_acl:
+3eb1 e8610000 ifetch 2 ,contru 
+3eb2 20600000 rtn 
+
+h4_get_tx_ptr:
+3eb3 6811005e hfetch 2 ,core_uart_twptr 
+3eb4 194095fb increase -5 ,contwu 
+3eb5 99409400 iadd contwu ,contwu 
+3eb6 20600000 rtn 
+
+h4_send_packet_event:
+3eb7 d8400004 arg hci_h4_type_event ,temp 
+3eb8 20203eba branch h4_send_packet 
+
+h4_send_packet_acl:
+3eb9 d8400002 arg hci_h4_type_acl ,temp 
+
+h4_send_packet:
+3eba 793f8025 set0 mark_ext_patch ,mark 
+3ebb 44dfc017 bpatch patch17_7 ,mem_patch17 
+3ebc 1f20f201 increase 1 ,loopcnt 
+3ebd 6811005e hfetch 2 ,core_uart_twptr 
+3ebe 1fe21400 copy pdata ,contwu 
+3ebf 1f227e00 copy loopcnt ,pdata 
+3ec0 e1488000 istoret 1 ,contwu 
+3ec1 1fe0ffff increase -1 ,pdata 
+3ec2 99409400 iadd contwu ,contwu 
+3ec3 19427e00 copy contwu ,pdata 
+3ec4 6001027a store 2 ,mem_hci_acl_tx_trigger_wptr 
+3ec5 18427e00 copy temp ,pdata 
+3ec6 c1010000 rtneq hci_h4_type_acl 
+3ec7 6801027a fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+3ec8 6011005e hstore 2 ,core_uart_twptr 
+3ec9 20203eca branch h4_send_acl_trigger_clear 
+
+h4_send_acl_trigger_clear:
+3eca 58000000 setarg 0 
+3ecb 6001027a store 2 ,mem_hci_acl_tx_trigger_wptr 
+3ecc 20600000 rtn 
+
+hci_init:
+3ecd 793f8025 set0 mark_ext_patch ,mark 
+3ece 44e04018 bpatch patch18_0 ,mem_patch18 
+3ecf 20758000 rtn wake 
+3ed0 58003fbf setarg hci_idle_dispatch 
+3ed1 60014294 store 2 ,mem_cb_idle_process 
+3ed2 580001a0 setarg uart_baud_115200 
+3ed3 600142d3 store uart_baud_len ,mem_baud 
+
+hci_lpm_init:
+3ed4 793f8025 set0 mark_ext_patch ,mark 
+3ed5 44e0c018 bpatch patch18_1 ,mem_patch18 
+3ed6 58001800 setarg mem_h5rx_buf 
+3ed7 60110054 hstore 2 ,core_uart_rsaddr 
+3ed8 58001bff setarg mem_h5rx_buf_end 
+3ed9 60110056 hstore 2 ,core_uart_readdr 
+3eda 58001c00 setarg mem_h5tx_buf 
+3edb 6011005a hstore 2 ,core_uart_tsaddr 
+3edc 20403eed call hci_sel_init 
+
+hci_reinit:
+3edd 70806200 hjam 0x0 ,core_uart_ctrl 
+3ede 58001c00 setarg mem_h5tx_buf 
+3edf 6011005e hstore 2 ,core_uart_twptr 
+3ee0 60110060 hstore 2 ,core_uart_trptrp 
+3ee1 58001800 setarg mem_h5rx_buf 
+3ee2 60110058 hstore 2 ,core_uart_rrptr 
+3ee3 60010266 store 2 ,mem_h5rx_rptr 
+
+hci_init_common:
+3ee4 793f8025 set0 mark_ext_patch ,mark 
+3ee5 44e14018 bpatch patch18_2 ,mem_patch18 
+3ee6 68110050 hfetch 2 ,core_clkoff 
+3ee7 793ffe0f set0 clock_off_uart ,pdata 
+3ee8 60110050 hstore 2 ,core_clkoff 
+3ee9 20406325 call uart_set_baud_by_mem 
+3eea 70804301 hjam uartclk_dpll ,core_uart_clksel 
+3eeb 70806281 hjam uart_ctrl_h4 ,core_uart_ctrl 
+3eec 20600000 rtn 
+
+hci_sel_init:
+3eed 58001fff setarg mem_h5tx_buf_end 
+3eee 6011005c hstore 2 ,core_uart_teaddr 
+3eef 68108081 hfetch 1 ,core_gpio_sel1 
+3ef0 1fe1fe07 or_into 0x07 ,pdata 
+3ef1 60108081 hstore 1 ,core_gpio_sel1 
+3ef2 70027cff jam 0xff ,mem_ucode_id_local 
+3ef3 20600000 rtn 
+
+hci_rx_packet:
+3ef4 793f8025 set0 mark_ext_patch ,mark 
+3ef5 44e1c018 bpatch patch18_3 ,mem_patch18 
+3ef6 6810810c hfetch 1 ,core_uart_status 
+3ef7 98002400 iforce regb 
+3ef8 c301befe bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+3ef9 68110112 hfetch 2 ,core_uart_rxitems 
+3efa 98002600 iforce regc 
+3efb d840044f arg 0x44f ,temp 
+3efc 98467c00 isub temp ,null 
+3efd 24628000 nrtn zero 
+
+hci_rx_packet_cont:
+3efe 68110058 hfetch 2 ,core_uart_rrptr 
+3eff 98000600 iforce contru 
+3f00 20203e83 branch hci_rx_h4 
+
+uart_send_byte:
+3f01 6818810c hfetcht 1 ,core_uart_status 
+3f02 284ffe06 isolate1 6 ,temp 
+3f03 2020bf01 branch uart_send_byte ,true 
+3f04 60108015 hstore 1 ,core_uart_txd 
+3f05 20600000 rtn 
+
+process_hci_cmd:
+3f06 793f8025 set0 mark_ext_patch ,mark 
+3f07 44e24018 bpatch patch18_4 ,mem_patch18 
+3f08 6800c271 fetch 1 ,mem_hci_cmd 
+3f09 203a3f0c branch process_hci_cmd_cont ,blank 
+3f0a 78347c00 enable user 
+3f0b 20600000 rtn 
+
+process_hci_cmd_cont:
+3f0c e8610000 ifetch 2 ,contru 
+3f0d 98006000 iforce alarm 
+3f0e 98000e00 iforce queue 
+3f0f e8608000 ifetch 1 ,contru 
+3f10 98000400 iforce temp 
+3f11 1e0b7e00 rshift2 alarm ,pdata 
+3f12 1fecfe00 rshift8 pdata ,pdata 
+3f13 c01fbf15 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+3f14 20600000 rtn 
+
+phci_grp_vendor_specific:
+3f15 793f8025 set0 mark_ext_patch ,mark 
+3f16 44e2c018 bpatch patch18_5 ,mem_patch18 
+3f17 18e27e00 deposit queue 
+3f18 c0003f70 beq hci_vendor_cmd_reset ,hci_normal_reply 
+3f19 c000bf2d beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+3f1a c0013f32 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+3f1b c001bf36 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+3f1c c0023f49 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+3f1d c002bf70 beq hci_vendor_cmd_echo ,hci_normal_reply 
+3f1e c0033f5a beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+3f1f c003bf23 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+3f20 c0083f5d beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+3f21 c008bf65 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+3f22 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_enter_lpm:
+3f23 20403f70 call hci_normal_reply 
+3f24 20407f6b call wait_uarttx 
+3f25 20406561 call gpio_pu_uart_tx 
+
+hci_enter_lpm:
+3f26 20403e37 call app_put_lpm_wake_lock 
+3f27 20403e41 call app_l2cap_flow_control_enable 
+3f28 20206564 branch gpio_rx_config_input_with_pu 
+
+hci_exit_lpm:
+3f29 7042d500 jam hci_rx_ready ,mem_hci_lt_rx_state 
+3f2a 20403e35 call app_get_lpm_wake_lock 
+3f2b 20403ed4 call hci_lpm_init 
+3f2c 20203e43 branch app_l2cap_flow_control_disable 
+
+phci_grp_vendor_chipid:
+3f2d 20403f89 call hci_get_cmd_complete_ptr 
+3f2e 68110000 hfetch 2 ,core_chipid 
+3f2f e1410000 istore 2 ,contwu 
+3f30 18007206 force 6 ,loopcnt 
+3f31 20203f73 branch hci_command_complete 
+
+phci_grp_vendor_baud:
+3f32 e8610000 ifetch 2 ,contru 
+3f33 600142d3 store 2 ,mem_baud 
+3f34 60110052 hstore 2 ,core_uart_baud 
+3f35 20600000 rtn 
+
+phci_grp_vendor_patch:
+3f36 e8608000 ifetch 1 ,contru 
+3f37 1fe20400 copy pdata ,temp 
+3f38 60108024 hstore 1 ,core_ucode_low 
+3f39 e8608000 ifetch 1 ,contru 
+3f3a 98408400 iadd temp ,temp 
+3f3b 79207e07 set1 7 ,pdata 
+3f3c 60108023 hstore 1 ,core_ucode_ctrl 
+3f3d e8608000 ifetch 1 ,contru 
+3f3e 98408400 iadd temp ,temp 
+3f3f 1fe27200 copy pdata ,loopcnt 
+
+phci_grp_vendor_patch_loop:
+3f40 e8608000 ifetch 1 ,contru 
+3f41 60108025 hstore 1 ,core_ucode_data 
+3f42 98408400 iadd temp ,temp 
+3f43 c2003f40 loop phci_grp_vendor_patch_loop 
+3f44 184104ff and temp ,0xff ,temp 
+3f45 e8608000 ifetch 1 ,contru 
+3f46 98467c00 isub temp ,null 
+3f47 2422bf58 nbranch phci_grp_vendor_patch_bad ,zero 
+3f48 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_done:
+3f49 df200020 arg 0x20 ,loopcnt 
+3f4a d8a04000 arg mem_patch00 ,contw 
+3f4b d8400000 arg 0 ,temp 
+
+phci_grp_vendor_done_loop:
+3f4c e8608000 ifetch 1 ,contru 
+3f4d e0a08000 istore 1 ,contw 
+3f4e 98408400 iadd temp ,temp 
+3f4f c2003f4c loop phci_grp_vendor_done_loop 
+3f50 184104ff and temp ,0xff ,temp 
+3f51 e8608000 ifetch 1 ,contru 
+3f52 98467c00 isub temp ,null 
+3f53 2422bf58 nbranch phci_grp_vendor_patch_bad ,zero 
+3f54 70802300 hjam 0 ,core_ucode_ctrl 
+3f55 20403f70 call hci_normal_reply 
+3f56 20403ea3 call h4_rx_discard_packet 
+3f57 20203001 branch soft_reset 
+
+phci_grp_vendor_patch_bad:
+3f58 70802300 hjam 0 ,core_ucode_ctrl 
+3f59 20203000 branch start 
+
+phci_grp_vendor_bdaddr:
+3f5a e8630000 ifetch 6 ,contru 
+3f5b 60034140 store 6 ,mem_lap 
+3f5c 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_mem:
+3f5d e8608000 ifetch 1 ,contru 
+3f5e 60008283 store 1 ,mem_hci_curr_len 
+3f5f 1fe27200 copy pdata ,loopcnt 
+3f60 e8610000 ifetch 2 ,contru 
+3f61 60010284 store 2 ,mem_hci_curr_target 
+3f62 1fe20a00 copy pdata ,contw 
+3f63 20406354 call uart_copy_rx_bytes 
+3f64 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_eep:
+3f65 e8608000 ifetch 1 ,contru 
+3f66 60008283 store 1 ,mem_hci_curr_len 
+3f67 1fe27200 copy pdata ,loopcnt 
+3f68 e8610000 ifetch 2 ,contru 
+3f69 60010284 store 2 ,mem_hci_curr_target 
+3f6a d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+3f6b 20406354 call uart_copy_rx_bytes 
+3f6c 68088283 fetcht 1 ,mem_hci_curr_len 
+3f6d da201000 arg mem_l2cap_rxbuff1 ,rega 
+3f6e 68010284 fetch 2 ,mem_hci_curr_target 
+3f6f 20206271 branch iicd_write_ota_data 
+
+hci_normal_reply:
+3f70 793f8025 set0 mark_ext_patch ,mark 
+3f71 44e34018 bpatch patch18_6 ,mem_patch18 
+3f72 18007204 force 4 ,loopcnt 
+
+hci_command_complete:
+3f73 20403f8b call hci_get_payload_ptr 
+3f74 18007e01 force 0x1 ,pdata 
+3f75 e1408000 istore 1 ,contwu 
+3f76 1e027e00 deposit alarm 
+3f77 e1418000 istore 3 ,contwu 
+3f78 18000e0e force hci_event_command_complete ,queue 
+
+hci_send_event:
+3f79 793f8025 set0 mark_ext_patch ,mark 
+3f7a 44e3c018 bpatch patch18_7 ,mem_patch18 
+3f7b 20403f8d call hci_get_packet_ptr 
+3f7c 18e27e00 deposit queue 
+3f7d e1408000 istore 1 ,contwu 
+3f7e 1f227e00 deposit loopcnt 
+3f7f e1408000 istore 1 ,contwu 
+
+hci_send_event_raw:
+3f80 18000e05 force 5 ,queue 
+3f81 1f20f202 increase 2 ,loopcnt 
+
+hci_send_packet:
+3f82 20203eb7 branch h4_send_packet_event 
+
+hci_send_commu_ready_event:
+3f83 18000eff force hci_event_vendor_specific ,queue 
+3f84 20403f8b call hci_get_payload_ptr 
+3f85 58000001 setarg hci_vendor_event_commu_ready 
+3f86 e1408000 istore 1 ,contwu 
+3f87 18007201 force 1 ,loopcnt 
+3f88 20203f79 branch hci_send_event 
+
+hci_get_cmd_complete_ptr:
+3f89 1800140c force 12 ,contwu 
+3f8a 20203f8e branch hci_get_tx_ptr 
+
+hci_get_payload_ptr:
+3f8b 18001408 force 8 ,contwu 
+3f8c 20203f8e branch hci_get_tx_ptr 
+
+hci_get_packet_ptr:
+3f8d 18001406 force 6 ,contwu 
+
+hci_get_tx_ptr:
+3f8e 20203eb3 branch h4_get_tx_ptr 
+
+calc_tx_crc16:
+3f8f 7827fc00 pulse crc16 
+3f90 7824fc00 enable enable_crc 
+
+crcloop:
+3f91 e9408000 ifetch 1 ,contwu 
+3f92 08008008 inject bucket ,8 
+3f93 c2003f91 loop crcloop 
+3f94 78247c00 enable enable_parity 
+3f95 08008010 inject bucket ,16 
+3f96 78447c00 disable enable_parity 
+3f97 7844fc00 disable enable_crc 
+3f98 7847fc00 disable crc16 
+3f99 1ff0fe00 byteswap pdata ,pdata 
+3f9a 20600000 rtn 
+
+cmd_exit:
+3f9b 70427100 jam 0 ,mem_hci_cmd 
+3f9c 20600000 rtn 
+
+cmd_check_plap:
+3f9d 68034273 fetch 6 ,mem_hci_plap 
+3f9e 680b0040 fetcht 6 ,mem_plap 
+3f9f 98467c00 isub temp ,null 
+3fa0 20600000 rtn 
+
+cmd_pair:
+3fa1 6800804b fetch 1 ,mem_op 
+3fa2 c2813fa6 bbit1 op_inrand_req ,cmd_pair_passive 
+3fa3 204058fa call tid_initiate 
+3fa4 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+3fa5 20203f9b branch cmd_exit 
+
+cmd_pair_passive:
+3fa6 793ffe02 set0 op_inrand_req ,pdata 
+3fa7 6000804b store 1 ,mem_op 
+3fa8 20405618 call lmp_accept_inrand 
+3fa9 58000000 setarg 0 
+3faa 7934fe01 setflag master ,smap_lmptid ,pdata 
+3fab 6000807f store 1 ,mem_lmo_tid2 
+3fac 20203f9b branch cmd_exit 
+3fad 20600000 rtn 
+
+cmd_in_sniff:
+3fae 70007c17 jam lmp_sniff_req ,mem_lmo_opcode2 
+3faf d8a003ff arg mem_sniff_payload ,contw 
+3fb0 58000000 setarg 0 
+3fb1 2d0ffe1b isolate1 27 ,clke_bt 
+3fb2 7920fe01 setflag true ,1 ,pdata 
+3fb3 e0a08000 istore 1 ,contw 
+3fb4 58000000 setarg 0 
+3fb5 e0a10000 istore 2 ,contw 
+3fb6 68014284 fetch 2 ,mem_sniff_param_interval 
+3fb7 e0a10000 istore 2 ,contw 
+3fb8 6800c286 fetch 1 ,mem_sniff_param_attempt 
+3fb9 e0a10000 istore 2 ,contw 
+3fba 6800c288 fetch 1 ,mem_sniff_param_timeout 
+3fbb e0a10000 istore 2 ,contw 
+3fbc 20203f9b branch cmd_exit 
+
+cmd_exit_sniff:
+3fbd 70007c18 jam lmp_unsniff_req ,mem_lmo_opcode2 
+3fbe 20203f9b branch cmd_exit 
+
+hci_idle_dispatch:
+3fbf 2040656e call gpio_check_uart_state 
+3fc0 20608000 rtn true 
+3fc1 d8400007 arg uart_wakeup_rx ,temp 
+3fc2 204064f5 call gpio_get_bit 
+3fc3 2420bfc6 nbranch uart_wake_up ,true 
+3fc4 7042d501 jam hci_rx_wake ,mem_hci_lt_rx_state 
+3fc5 20600000 rtn 
+
+uart_wake_up:
+3fc6 6800c2d5 fetch 1 ,mem_hci_lt_rx_state 
+3fc7 c1808000 rtnne hci_rx_wake 
+3fc8 20403f29 call hci_exit_lpm 
+3fc9 20203f83 branch hci_send_commu_ready_event 
+
+hid_rx_process:
+3fca 793f8025 set0 mark_ext_patch ,mark 
+3fcb 44e44019 bpatch patch19_0 ,mem_patch19 
+3fcc 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+3fcd 1fe20c00 copy pdata ,contr 
+3fce e8c08000 ifetch 1 ,contr 
+3fcf 1fe1040f and pdata ,0x0f ,temp 
+3fd0 1ff1fe00 rshift4 pdata ,pdata 
+3fd1 c004bfeb beq hid_type_set_idle ,hid_rx_process_handshake 
+3fd2 c003bfeb beq hid_type_set_protocol ,hid_rx_process_handshake 
+3fd3 c0053ff7 beq hid_type_data ,hid_rx_process_data 
+3fd4 c002bfe3 beq hid_type_set_report ,hid_rx_process_set_report 
+3fd5 c000bfd7 beq hid_type_control ,hid_rx_process_hid_control 
+3fd6 20600000 rtn 
+
+hid_rx_process_hid_control:
+3fd7 18427e00 copy temp ,pdata 
+3fd8 c002bfdb beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+3fd9 c001bfe2 beq hid_control_p_suspend ,hid_rx_process_suspend 
+3fda 20600000 rtn 
+
+hid_rx_process_virtual_cable_unplug:
+3fdb 7009bd27 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+3fdc 20407d86 call ui_ipc_send_event 
+3fdd 6800c132 fetch 1 ,mem_device_option 
+3fde c1830000 rtnne dvc_op_mouse ,pdata 
+3fdf 18427e00 copy temp ,pdata 
+3fe0 c002e455 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+3fe1 20600000 rtn 
+
+hid_rx_process_suspend:
+3fe2 20600000 rtn 
+
+hid_rx_process_set_report:
+3fe3 20403ff7 call hid_rx_process_data 
+3fe4 da200001 arg 0x01 ,rega 
+3fe5 20404005 call hid_malloc_tx_buff 
+3fe6 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+3fe7 e0a10000 istore 2 ,contw 
+3fe8 58000000 setarg 0x00 
+3fe9 e0a08000 istore 1 ,contw 
+3fea 20600000 rtn 
+
+hid_rx_process_handshake:
+3feb da200001 arg 1 ,rega 
+3fec 20404005 call hid_malloc_tx_buff 
+3fed 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+3fee e0a10000 istore 2 ,contw 
+3fef 58000000 setarg 0 
+3ff0 e0a08000 istore 1 ,contw 
+3ff1 7009b201 jam 1 ,mem_ui_data_txbuff_length 
+3ff2 6800c2e2 fetch 1 ,mem_hid_control_state 
+3ff3 79207e06 set1 l2cap_channel_hid_handshake_done 
+3ff4 6000c2e2 store 1 ,mem_hid_control_state 
+3ff5 7009bd12 jam bt_evt_hid_handshake ,mem_fifo_temp 
+3ff6 20207d86 branch ui_ipc_send_event 
+
+hid_rx_process_data:
+3ff7 e8c08000 ifetch 1 ,contr 
+3ff8 c000bffa beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+3ff9 20600000 rtn 
+
+hid_rx_process_data_hid_kb:
+3ffa 18c22200 copy contr ,rega 
+3ffb 6800c132 fetch 1 ,mem_device_option 
+3ffc c1818000 rtnne dvc_op_kb ,pdata 
+3ffd 1a220c00 copy rega ,contr 
+3ffe e8c08000 ifetch 1 ,contr 
+3fff 6000cb0f store 1 ,mem_kb_caps_led_status 
+4000 6000cb27 store 1 ,mem_hid_rx_data 
+4001 6800cb01 fetch 1 ,mem_kb_led_on_timer 
+4002 247a0000 nrtn blank 
+4003 704b2402 jam 2 ,mem_led_cap_delay_timer 
+4004 20600000 rtn 
+
+hid_malloc_tx_buff:
+4005 204047dc call l2cap_malloc 
+4006 1a220400 copy rega ,temp 
+4007 600889b2 storet 1 ,mem_ui_data_txbuff_length 
+4008 1fe20a00 copy pdata ,contw 
+4009 1a227e00 copy rega ,pdata 
+400a e0a10000 istore 2 ,contw 
+400b 20600000 rtn 
+
+kb_init:
+400c 20404196 call kb_clear_keys 
+400d 20758000 rtn wake 
+400e 20404034 call kb_init_common 
+400f 20404055 call kb_led_int 
+4010 580041a1 setarg kb_process_idle 
+4011 60014294 store 2 ,mem_cb_idle_process 
+4012 58004082 setarg kb_send_process 
+4013 60014292 store 2 ,mem_cb_bt_process 
+4014 580041e6 setarg kb_process_bb_event 
+4015 60014296 store 2 ,mem_cb_bb_event_process 
+4016 58004268 setarg kb_process_lpm_before 
+4017 6001428e store 2 ,mem_cb_before_lpm 
+4018 58004246 setarg kb_discovery_timeout_sleep 
+4019 60014298 store 2 ,mem_cb_discovry_timeout 
+401a 5800424b setarg kb_before_hibernate 
+401b 6001428c store 2 ,mem_cb_before_hibernate 
+401c 7008d400 jam 0 ,mem_sp_flag 
+401d 7008d500 jam 0 ,mem_master_sp_flag 
+401e 20404027 call kb_init_environment 
+401f 6801470b fetch 2 ,mem_ui_state_map 
+4020 c2863e54 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+
+kb_check_reconn_target:
+4021 6800c2b5 fetch 1 ,mem_xrecord_mode 
+4022 c019c024 beq rec_3_mode ,kb_3_check_reconn_target 
+4023 2020423e branch kb_start_discovery 
+
+kb_3_check_reconn_target:
+4024 68034273 fetch 6 ,mem_hci_plap 
+4025 203a3e54 branch app_bt_start_discovery_short ,blank 
+4026 20203e49 branch app_bt_start_reconnect 
+
+kb_init_environment:
+4027 20403e28 call app_initflag_check 
+4028 2022c032 branch kb_load_eeprom_param ,zero 
+4029 58000001 setarg kb_map2_status_win 
+402a 6000cae9 store 1 ,mem_kb_current_status 
+402b 2040427d call store_current_status 
+402c 68034b07 fetch 6 ,mem_master_addr 
+402d 60030040 store 6 ,mem_plap 
+402e 60034273 store 6 ,mem_hci_plap 
+402f 20406432 call eeprom_store_bd_reconn_info 
+4030 7042b533 jam rec_3_mode ,mem_xrecord_mode 
+4031 20203e20 branch app_initflag_store 
+
+kb_load_eeprom_param:
+4032 20404284 call read_current_status 
+4033 20206441 branch eeprom_load_reconn_info 
+
+kb_init_common:
+4034 793f8025 set0 mark_ext_patch ,mark 
+4035 44e4c019 bpatch patch19_1 ,mem_patch19 
+4036 70807000 hjam 0 ,core_gpio_oe0 
+4037 708078ff hjam 0xff ,core_gpio_pu0 
+4038 708071ff hjam 0xff ,core_gpio_oe1 
+4039 708072ff hjam 0xff ,core_gpio_oe2 
+403a 68108073 hfetch 1 ,core_gpio_oe3 
+403b 1fe1fe07 or_into 0x07 ,pdata 
+403c 60108073 hstore 1 ,core_gpio_oe3 
+403d 70808000 hjam 0x00 ,core_gpio_sel 
+403e 70808100 hjam 0x00 ,core_gpio_sel1 
+403f 70806f00 hjam 0x00 ,core_kscn_rowmask 
+4040 58000013 setarg kb_kscan_col_1 
+4041 1fe9fe00 lshift3 pdata ,pdata 
+4042 1fe0fe07 add pdata ,kb_kscan_row_1 ,pdata 
+4043 60108064 hstore 1 ,core_kscn_rctc 
+4044 708083ff hjam 0xff ,core_gpio_key0 
+4045 708084ff hjam 0xFf ,core_gpio_key1 
+4046 68108085 hfetch 1 ,core_gpio_key2 
+4047 1fe1fe01 or_into 0x01 ,pdata 
+4048 60108085 hstore 1 ,core_gpio_key2 
+4049 68108043 hfetch 1 ,core_config 
+404a 79207e02 set1 2 ,pdata 
+404b 60108043 hstore 1 ,core_config 
+404c 7080630c hjam 0x0c ,core_kscn_ksctrl 
+404d 70806630 hjam 0x30 ,core_kscn_scancycle_timer_h 
+404e 68108051 hfetch 1 ,core_clkoff + 1 
+404f 793ffe01 set0 1 ,pdata 
+4050 60108051 hstore 1 ,core_clkoff + 1 
+4051 68108063 hfetch 1 ,core_kscn_ksctrl 
+4052 79207e00 set1 0 ,pdata 
+4053 60108063 hstore 1 ,core_kscn_ksctrl 
+4054 20600000 rtn 
+
+kb_led_int:
+4055 20404058 call kb_led_cap_init 
+4056 2040405c call kb_led_num_init 
+4057 20204060 branch kb_led_scl_init 
+
+kb_led_cap_init:
+4058 6800c737 fetch 1 ,mem_led_cap_gpio 
+4059 c17f8000 rtneq 0xff 
+405a 6808c737 fetcht 1 ,mem_led_cap_gpio 
+405b 202064e8 branch gpio_config_output 
+
+kb_led_num_init:
+405c 6800c738 fetch 1 ,mem_led_num_gpio 
+405d c17f8000 rtneq 0xff 
+405e 6808c738 fetcht 1 ,mem_led_num_gpio 
+405f 202064e8 branch gpio_config_output 
+
+kb_led_scl_init:
+4060 6800c739 fetch 1 ,mem_led_scl_gpio 
+4061 c17f8000 rtneq 0xff 
+4062 6808c739 fetcht 1 ,mem_led_scl_gpio 
+4063 202064e8 branch gpio_config_output 
+
+kb_led_cap_delay_timer:
+4064 6800cb24 fetch 1 ,mem_led_cap_delay_timer 
+4065 207a0000 rtn blank 
+4066 1fe0ffff increase -1 ,pdata 
+4067 6000cb24 store 1 ,mem_led_cap_delay_timer 
+4068 247a0000 nrtn blank 
+
+kb_led_capslock:
+4069 793f8025 set0 mark_ext_patch ,mark 
+406a 44e54019 bpatch patch19_2 ,mem_patch19 
+406b 6800cb27 fetch 1 ,mem_hid_rx_data 
+406c 1fe22200 copy pdata ,rega 
+406d 6808c738 fetcht 1 ,mem_led_num_gpio 
+406e 2a2ffe00 isolate1 kb_num_lock_selected ,rega 
+406f 20406500 call gpio_out_flag 
+4070 6808c737 fetcht 1 ,mem_led_cap_gpio 
+4071 2a2ffe01 isolate1 kb_caps_lock_selected ,rega 
+4072 20406500 call gpio_out_flag 
+4073 6808c739 fetcht 1 ,mem_led_scl_gpio 
+4074 2a2ffe02 isolate1 kb_scroll_lock_selected ,rega 
+4075 20406500 call gpio_out_flag 
+4076 2020407d branch kb_auto_disable_mult 
+
+kb_enble_mult_timer:
+4077 6800caa7 fetch 1 ,mem_auto_enable_mult_timer 
+4078 207a0000 rtn blank 
+4079 1fe0ffff increase -1 ,pdata 
+407a 6000caa7 store 1 ,mem_auto_enable_mult_timer 
+407b 247a0000 nrtn blank 
+407c 20203e7f branch app_lpm_mult_enable 
+
+kb_auto_disable_mult:
+407d 6800caa8 fetch 1 ,mem_auto_enable_mult_timer_init 
+407e 6000caa7 store 1 ,mem_auto_enable_mult_timer 
+407f 20203e81 branch app_lpm_mult_disable 
+
+kb_led_cap_status:
+4080 704b2601 jam 1 ,mem_led_cap_flag 
+4081 202040b4 branch bt_send_kb_data_by_report0 + 8 
+
+kb_send_process:
+4082 20404812 call l2cap_malloc_is_fifo_nearly_full 
+4083 247a0000 nrtn blank 
+4084 68034b07 fetch 6 ,mem_master_addr 
+4085 680b0040 fetcht 6 ,mem_plap 
+4086 98467c00 isub temp ,null 
+4087 2022c097 branch kb_debug_send_keydata ,zero 
+4088 680083fa fetch 1 ,mem_pincode_state 
+4089 c000c119 beq pincode_state_wait_pincode ,kb_pincode 
+408a 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+408b c19f8000 rtnne l2cap_channel_setup_complete 
+408c 680c4aba fetcht 8 ,mem_table_last_repory_data0 
+408d 68044aaa fetch 8 ,mem_map2_out_report0 
+408e 60044aba store 8 ,mem_table_last_repory_data0 
+408f 98467c00 isub temp ,null 
+4090 2442c0ac ncall bt_send_kb_data_by_report0 ,zero 
+4091 680c4ac2 fetcht 8 ,mem_table_last_repory_data1 
+4092 68044ab2 fetch 8 ,mem_map2_out_report1 
+4093 60044ac2 store 8 ,mem_table_last_repory_data1 
+4094 98467c00 isub temp ,null 
+4095 2442c0c7 ncall bt_send_kb_data_by_report1 ,zero 
+4096 20600000 rtn 
+
+kb_debug_send_keydata:
+4097 6800caca fetch 1 ,mem_kb_down 
+4098 c03fc0aa beq 0x7f ,fn_test 
+4099 680c4aba fetcht 8 ,mem_table_last_repory_data0 
+409a 68044aaa fetch 8 ,mem_map2_out_report0 
+409b 60044aba store 8 ,mem_table_last_repory_data0 
+409c 98467c00 isub temp ,null 
+409d 20628000 rtn zero 
+409e d8c04aaa arg mem_map2_out_report0 ,contr 
+409f da204ade arg mem_table_temp ,rega 
+40a0 204040bb call fill_kb_send_data 
+40a1 da20000a arg 10 ,rega 
+40a2 20404005 call hid_malloc_tx_buff 
+40a3 58000053 setarg l2cap_hid_interrupt_channel 
+40a4 e0a10000 istore 2 ,contw 
+40a5 580001a1 setarg 0x01a1 
+40a6 e0a10000 istore 2 ,contw 
+40a7 68044ade fetch 8 ,mem_table_temp 
+40a8 e0a40000 istore 8 ,contw 
+40a9 20600000 rtn 
+
+fn_test:
+40aa 60044aaa store 8 ,mem_map2_out_report0 
+40ab 20204099 branch kb_debug_send_keydata + 2 
+
+bt_send_kb_data_by_report0:
+40ac 20404812 call l2cap_malloc_is_fifo_nearly_full 
+40ad 247a0000 nrtn blank 
+40ae 6800caa9 fetch 1 ,mem_kb_temp_flag 
+40af c3810000 rtnbit1 key_search_m_key_flag 
+40b0 204040e0 call init_kb_no_data_timer 
+40b1 6800caaa fetch 1 ,mem_map2_out_report0 
+40b2 c01cc080 beq caps_lock_data ,kb_led_cap_status 
+40b3 704b2600 jam 0 ,mem_led_cap_flag 
+40b4 d8c04aaa arg mem_map2_out_report0 ,contr 
+40b5 da204ade arg mem_table_temp ,rega 
+40b6 204040bb call fill_kb_send_data 
+40b7 204040f1 call bt_send_kb_data_by_report0_ptr 
+40b8 68044ade fetch 8 ,mem_table_temp 
+40b9 e0a40000 istore 8 ,contw 
+40ba 20600000 rtn 
+
+fill_kb_send_data:
+40bb d8400000 arg 0 ,temp 
+40bc 1a208a02 add rega ,2 ,contw 
+40bd df200008 arg kb_map2_report_length ,loopcnt 
+
+store_key:
+40be e8c08000 ifetch 1 ,contr 
+40bf c303c0c3 bbit0 7 ,not_key_status 
+40c0 1fe10e07 and pdata ,7 ,queue 
+40c1 f9200400 qset1 temp 
+40c2 202040c4 branch store_key_next 
+
+not_key_status:
+40c3 e0a08000 istore 1 ,contw 
+
+store_key_next:
+40c4 c20040be loop store_key 
+40c5 e2290000 istoret 2 ,rega 
+40c6 20600000 rtn 
+
+bt_send_kb_data_by_report1:
+40c7 20404812 call l2cap_malloc_is_fifo_nearly_full 
+40c8 247a0000 nrtn blank 
+40c9 204040e0 call init_kb_no_data_timer 
+40ca 6800cab2 fetch 1 ,mem_map2_out_report1 
+40cb c07fc10d beq sfk_android_map ,android_search_m_key 
+40cc c07f4109 beq sfk_ios_screenshot ,ios_screenshot 
+40cd 58000000 setarg 0 
+40ce 60044ade store 8 ,mem_table_temp 
+40cf 204040d6 call fill_kb_send_report1_data 
+40d0 6800caa9 fetch 1 ,mem_kb_temp_flag 
+40d1 c28140ff bbit1 key_search_m_key_flag ,android_search_m_key_releas 
+40d2 204040f8 call bt_send_kb_data_by_report1_ptr 
+40d3 68024ade fetch 4 ,mem_table_temp 
+40d4 e0a20000 istore 4 ,contw 
+40d5 20600000 rtn 
+
+fill_kb_send_report1_data:
+40d6 6800cab2 fetch 1 ,mem_map2_out_report1 
+40d7 207a0000 rtn blank 
+40d8 7820fc00 enable true 
+40d9 6800cab2 fetch 1 ,mem_map2_out_report1 
+40da 1fe20e00 copy pdata ,queue 
+40db 68044ade fetch 8 ,mem_table_temp 
+40dc f920fe00 qsetflag true ,pdata 
+40dd 60044ade store 8 ,mem_table_temp 
+40de 7840fc00 disable true 
+40df 20600000 rtn 
+
+init_kb_no_data_timer:
+40e0 68014afa fetch 2 ,mem_kb_no_data_timeout 
+40e1 60014aa1 store 2 ,mem_kb_no_data_timer 
+40e2 20600000 rtn 
+
+kb_check_no_data_timer:
+40e3 68014aa1 fetch 2 ,mem_kb_no_data_timer 
+40e4 207a0000 rtn blank 
+40e5 68014aa1 fetch 2 ,mem_kb_no_data_timer 
+40e6 1fe0ffff increase -1 ,pdata 
+40e7 60014aa1 store 2 ,mem_kb_no_data_timer 
+40e8 247a0000 nrtn blank 
+40e9 202040ea branch kb_disconnect 
+
+kb_disconnect:
+40ea 58000000 setarg 0 
+40eb 60014aa1 store 2 ,mem_kb_no_data_timer 
+40ec 6801470b fetch 2 ,mem_ui_state_map 
+40ed c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+40ee 6801470b fetch 2 ,mem_ui_state_map 
+40ef c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+40f0 20600000 rtn 
+
+bt_send_kb_data_by_report0_ptr:
+40f1 da20000a arg 10 ,rega 
+40f2 20404005 call hid_malloc_tx_buff 
+40f3 680142de fetch 2 ,mem_hid_int_remote_cid 
+40f4 e0a10000 istore 2 ,contw 
+40f5 580001a1 setarg 0x01a1 
+40f6 e0a10000 istore 2 ,contw 
+40f7 20600000 rtn 
+
+bt_send_kb_data_by_report1_ptr:
+40f8 da200006 arg 6 ,rega 
+40f9 20404005 call hid_malloc_tx_buff 
+40fa 680142de fetch 2 ,mem_hid_int_remote_cid 
+40fb e0a10000 istore 2 ,contw 
+40fc 580002a1 setarg 0x02a1 
+40fd e0a10000 istore 2 ,contw 
+40fe 20600000 rtn 
+
+android_search_m_key_releas:
+40ff 204040f1 call bt_send_kb_data_by_report0_ptr 
+4100 58000000 setarg 0 
+4101 e0a40000 istore 8 ,contw 
+4102 204040f8 call bt_send_kb_data_by_report1_ptr 
+4103 58000000 setarg 0 
+4104 e0a20000 istore 4 ,contw 
+4105 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4106 793ffe02 set0 key_search_m_key_flag ,pdata 
+4107 6000caa9 store 1 ,mem_kb_temp_flag 
+4108 20600000 rtn 
+
+ios_screenshot:
+4109 204040f8 call bt_send_kb_data_by_report1_ptr 
+410a 58002002 setarg 0x2002 
+410b e0a20000 istore 4 ,contw 
+410c 20600000 rtn 
+
+android_search_m_key:
+410d 204040f8 call bt_send_kb_data_by_report1_ptr 
+410e 58000040 setarg 0x40 
+410f e0a20000 istore 4 ,contw 
+4110 204040f1 call bt_send_kb_data_by_report0_ptr 
+4111 58000000 setarg 0 
+4112 e0a10000 istore 2 ,contw 
+4113 58000010 setarg 0x10 
+4114 e0a38000 istore 7 ,contw 
+4115 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4116 79207e02 set1 key_search_m_key_flag ,pdata 
+4117 6000caa9 store 1 ,mem_kb_temp_flag 
+4118 20600000 rtn 
+
+kb_pincode:
+4119 793f8025 set0 mark_ext_patch ,mark 
+411a 44e5c019 bpatch patch19_3 ,mem_patch19 
+411b 6800caa9 fetch 1 ,mem_kb_temp_flag 
+411c c4008000 rtnbit0 key_event_flag 
+411d 793ffe01 set0 key_event_flag ,pdata 
+411e 6000caa9 store 1 ,mem_kb_temp_flag 
+411f 6808c718 fetcht 1 ,mem_pin_length 
+4120 58004719 setarg mem_pin 
+4121 98408a00 iadd temp ,contw 
+4122 6800caca fetch 1 ,mem_kb_down 
+4123 203a4128 branch kb_pincode_rtn ,blank 
+4124 c015412a beq kb_kcode_bksp ,kb_pincode_bksp 
+4125 c0944134 bne kb_kcode_enter ,kb_pincode_data 
+4126 6008c718 storet 1 ,mem_pin_length 
+4127 20203e45 branch app_bt_set_pincode 
+
+kb_pincode_rtn:
+4128 6008c718 storet 1 ,mem_pin_length 
+4129 20600000 rtn 
+
+kb_pincode_bksp:
+412a 6800c718 fetch 1 ,mem_pin_length 
+412b 207a0000 rtn blank 
+412c 1fe0ffff increase -1 ,pdata 
+412d 6000c718 store 1 ,mem_pin_length 
+412e d8a04719 arg mem_pin ,contw 
+412f 98a08a00 iadd contw ,contw 
+4130 58000000 setarg 0 
+4131 e0a08000 istore 1 ,contw 
+4132 78367c00 enable user2 
+4133 20204143 branch kb_send_pin 
+
+kb_pincode_data:
+4134 1fe67c1d sub pdata ,kb_kcode_1_m1 ,null 
+4135 20610000 rtn positive 
+4136 d8400030 arg 0x30 ,temp 
+4137 1fe67c27 sub pdata ,kb_kcode_0 ,null 
+4138 24610000 nrtn positive 
+4139 2022c13d branch kb_pincode_0 ,zero 
+413a d840001d arg kb_kcode_1_m1 ,temp 
+413b 98460400 isub temp ,temp 
+413c 18418430 or_into 0x30 ,temp 
+
+kb_pincode_0:
+413d e0a88000 istoret 1 ,contw 
+413e 6800c718 fetch 1 ,mem_pin_length 
+413f 1fe0fe01 increase 1 ,pdata 
+4140 6000c718 store 1 ,mem_pin_length 
+4141 78567c00 disable user2 
+4142 20204143 branch kb_send_pin 
+
+kb_send_pin:
+4143 680142de fetch 2 ,mem_hid_int_remote_cid 
+4144 207a0000 rtn blank 
+4145 da200003 arg 3 ,rega 
+4146 20404005 call hid_malloc_tx_buff 
+4147 680142de fetch 2 ,mem_hid_int_remote_cid 
+4148 e0a10000 istore 2 ,contw 
+4149 5800ffa1 setarg 0xffa1 
+414a e0a10000 istore 2 ,contw 
+414b 58000000 setarg 0 
+414c 79367e00 setflag user2 ,0 ,pdata 
+414d e0a08000 istore 1 ,contw 
+414e 20600000 rtn 
+
+kb_kscan_check_if_empty:
+414f 78547c00 disable user 
+4150 78567c00 disable user2 
+4151 68108119 hfetch 1 ,core_kscn_kstat 
+4152 c3800000 rtnbit1 kb_kscan_stat_empty 
+
+kb_kscan_check_ghost:
+4153 6810811b hfetch 1 ,core_kscn_event_num 
+4154 c2804159 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+4155 68108119 hfetch 1 ,core_kscn_kstat 
+4156 c3034159 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+4157 6810811a hfetch 1 ,core_kscn_event 
+4158 2020414f branch kb_kscan_check_if_empty 
+
+kb_kscan_process_event:
+4159 78347c00 enable user 
+415a 78367c00 enable user2 
+415b 6810811b hfetch 1 ,core_kscn_event_num 
+415c 2fec0000 isolate0 kb_kscan_key_event_stat ,pdata 
+415d 6810811a hfetch 1 ,core_kscn_event 
+415e d8c049ff arg mem_kb_map ,contr 
+415f 98c08c00 iadd contr ,contr 
+4160 e8c08000 ifetch 1 ,contr 
+4161 c283c191 bbit1 7 ,kb_kscan_read_statekey 
+4162 2420c182 nbranch kb_kscan_release_a_key_data ,true 
+4163 78567c00 disable user2 
+4164 98000400 iforce temp 
+4165 6800c731 fetch 1 ,mem_kb_keys 
+4166 1fe67c04 sub pdata ,4 ,null 
+4167 24610000 nrtn positive 
+4168 1fe22200 copy pdata ,rega 
+4169 df200003 arg 3 ,loopcnt 
+416a d8c0472b arg mem_kb_report_data ,contr 
+
+kb_kscan_check_report_data:
+416b e8c08000 ifetch 1 ,contr 
+416c 98467c00 isub temp ,null 
+416d 2022c14f branch kb_kscan_check_if_empty ,zero 
+416e c200416b loop kb_kscan_check_report_data 
+
+kb_kscan_store_a_key_data:
+416f 1a227e00 copy rega ,pdata 
+4170 d8a0472b arg mem_kb_report_data ,contw 
+4171 98a08a00 iadd contw ,contw 
+4172 e0a88000 istoret 1 ,contw 
+4173 1fe0fe01 increase 1 ,pdata 
+4174 6000c731 store 1 ,mem_kb_keys 
+4175 6810811b hfetch 1 ,core_kscn_event_num 
+4176 1fe97e00 rshift3 pdata ,pdata 
+4177 243a4179 nbranch kb_kscan_check_nextevent ,blank 
+4178 20204180 branch kb_kscan_prepare_send 
+
+kb_kscan_check_nextevent:
+4179 1fe0ffff increase -1 ,pdata 
+417a 2022c180 branch kb_kscan_prepare_send ,zero 
+417b 6810811b hfetch 1 ,core_kscn_event_num 
+417c 1fe17e01 and_into 0x01 ,pdata 
+417d c000414f beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+417e c000c180 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+417f 20600000 rtn 
+
+kb_kscan_prepare_send:
+4180 78367c00 enable user2 
+4181 20600000 rtn 
+
+kb_kscan_release_a_key_data:
+4182 1fe104ff and pdata ,0xff ,temp 
+4183 6800c731 fetch 1 ,mem_kb_keys 
+4184 207a0000 rtn blank 
+4185 98007200 iforce loopcnt 
+4186 d8c0472b arg mem_kb_report_data ,contr 
+
+kb_kscan_find_same_key_data:
+4187 e8c08000 ifetch 1 ,contr 
+4188 98467c00 isub temp ,null 
+4189 2022c291 branch kb_kscan_release_foundkey ,zero 
+418a c2004187 loop kb_kscan_find_same_key_data 
+418b 20600000 rtn 
+
+kb_kscan_check_nextevent2:
+418c 6810811b hfetch 1 ,core_kscn_event_num 
+418d 1fe17e01 and_into 0x01 ,pdata 
+418e c0004180 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+418f c000c14f beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+4190 20600000 rtn 
+
+kb_kscan_read_statekey:
+4191 1fe10e07 and pdata ,7 ,queue 
+4192 6800c729 fetch 1 ,mem_kb_state 
+4193 f920fe00 qsetflag true ,pdata 
+4194 6000c729 store 1 ,mem_kb_state 
+4195 20600000 rtn 
+
+kb_clear_keys:
+4196 58000000 setarg 0 
+4197 60044aca store 8 ,mem_kb_down 
+4198 6000c731 store 1 ,mem_kb_keys 
+4199 20600000 rtn 
+
+kb_clean_kscan_fifo:
+419a 6810811b hfetch 1 ,core_kscn_event_num 
+419b 6810811a hfetch 1 ,core_kscn_event 
+419c 68108119 hfetch 1 ,core_kscn_kstat 
+419d c300419a bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+419e 580000ff setarg 0xff 
+419f 78347c00 enable user 
+41a0 20600000 rtn 
+
+kb_process_idle:
+41a1 204041ac call kb_ui_check_paring_button 
+41a2 20758000 rtn wake 
+
+kb_process:
+41a3 6800cb17 fetch 1 ,mem_kb_get_fn_flag 
+41a4 205a4299 call kb_recover_kb_down_data ,blank 
+41a5 2040429c call kb_kscan_fn 
+41a6 6800c731 fetch 1 ,mem_kb_keys 
+41a7 207a0000 rtn blank 
+41a8 204041bf call kb_read_gpio 
+41a9 68020b26 fetch 4 ,mem_kb_gpio_val 
+41aa 60024afc store 4 ,mem_kb_gpio_last_val 
+41ab 20600000 rtn 
+
+kb_ui_check_paring_button:
+41ac 6801470b fetch 2 ,mem_ui_state_map 
+41ad c4038000 rtnbit0 ui_state_bt_reconnect 
+41ae 6800caa9 fetch 1 ,mem_kb_temp_flag 
+41af c3800000 rtnbit1 cacel_reconn_flag ,pdata 
+41b0 68014aca fetch 2 ,mem_kb_down 
+41b1 68094b28 fetcht 2 ,mem_kb_fn_c 
+41b2 98467c00 isub temp ,null 
+41b3 2022c1bb branch check_bb_reconn_cancel ,zero 
+41b4 68014aca fetch 2 ,mem_kb_down 
+41b5 68094b29 fetcht 2 ,mem_kb_c_fn 
+41b6 98467c00 isub temp ,null 
+41b7 2022c1bb branch check_bb_reconn_cancel ,zero 
+41b8 6801470b fetch 2 ,mem_ui_state_map 
+41b9 c28641bb bbit1 ui_state_btn_down ,check_bb_reconn_cancel 
+41ba 20600000 rtn 
+
+check_bb_reconn_cancel:
+41bb 6800caa9 fetch 1 ,mem_kb_temp_flag 
+41bc 79207e00 set1 cacel_reconn_flag ,pdata 
+41bd 6000caa9 store 1 ,mem_kb_temp_flag 
+41be 20207e3d branch check_51cmd_bb_reconn_cancel 
+
+kb_read_gpio:
+41bf 68118083 hfetch 3 ,core_gpio_key0 
+41c0 98002400 iforce regb 
+41c1 68120078 hfetch 4 ,core_gpio_pu0 
+41c2 98002200 iforce rega 
+41c3 681c0070 hfetcht 8 ,core_gpio_oe0 
+41c4 58000000 setarg 0 
+41c5 60118083 hstore 3 ,core_gpio_key0 
+41c6 20000064 nop 100 
+41c7 6810811c hfetch 1 ,core_gpio_in 
+41c8 60008b26 store 1 ,mem_kb_gpio_val 
+41c9 70807800 hjam 0 ,core_gpio_pu0 
+41ca 68108073 hfetch 1 ,core_gpio_oe3 
+41cb 1fe17ef0 and_into 0xf0 ,pdata 
+41cc 60108073 hstore 1 ,core_gpio_oe3 
+41cd 1fe2feff xor_into 0xff ,pdata 
+41ce 6010807b hstore 1 ,core_gpio_pu3 
+41cf 580000ff setarg 0xff 
+41d0 60118070 hstore 3 ,core_gpio_oe0 
+41d1 5800ffff setarg 0xffff 
+41d2 60110079 hstore 2 ,core_gpio_pu1 
+41d3 20000064 nop 100 
+41d4 6811811d hfetch 3 ,core_gpio_in1 
+41d5 9a417e00 iand regb ,pdata 
+41d6 60018b27 store 3 ,mem_kb_gpio_val + 1 
+41d7 1a227e00 deposit rega 
+41d8 60120078 hstore 4 ,core_gpio_pu0 
+41d9 601c0070 hstoret 8 ,core_gpio_oe0 
+41da 1a427e00 deposit regb 
+41db 60118083 hstore 3 ,core_gpio_key0 
+41dc 20600000 rtn 
+
+kb_pairing_button_check:
+41dd 6800c133 fetch 1 ,mem_scan_mode 
+41de 247a0000 nrtn blank 
+41df 6800c283 fetch 1 ,mem_app_handshake_flag 
+41e0 247a0000 nrtn blank 
+41e1 6800c701 fetch 1 ,mem_ui_button_timer 
+41e2 207a0000 rtn blank 
+41e3 6800c702 fetch 1 ,mem_ui_button_last_state 
+41e4 247a0000 nrtn blank 
+41e5 20203e75 branch app_enter_hibernate 
+
+kb_process_bb_event:
+41e6 1a627e00 copy regc ,pdata 
+41e7 c003426d beq bt_evt_hid_connected ,kb_hid_connected 
+41e8 c0054247 beq bt_evt_pincode_req ,kb_process_pincode 
+41e9 c0094271 beq bt_evt_hid_handshake ,kb_bt_hid_handshake 
+41ea c0084223 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+41eb c0173e32 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+41ec c000c23a beq bt_evt_bb_connected ,kb_stop_discovery 
+41ed c001420c beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+41ee c0024201 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+41ef c009c201 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+41f0 1fe1040f and pdata ,0x0f ,temp 
+41f1 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+41f2 c02841f4 beq bt_evt_timer_init ,kb_bb_event_timer 
+41f3 20600000 rtn 
+
+kb_bb_event_timer:
+41f4 793f8025 set0 mark_ext_patch ,mark 
+41f5 44e64019 bpatch patch19_4 ,mem_patch19 
+41f6 6008824e storet 1 ,mem_app_evt_timer_count 
+
+kb_bb_event_100ms_loop:
+41f7 6800824e fetch 1 ,mem_app_evt_timer_count 
+41f8 207a0000 rtn blank 
+41f9 1fe0ffff increase -1 ,pdata 
+41fa 6000824e store 1 ,mem_app_evt_timer_count 
+41fb 20404064 call kb_led_cap_delay_timer 
+41fc 2040421d call kb_check_hid_handshake_timer 
+41fd 20404077 call kb_enble_mult_timer 
+41fe 204040e3 call kb_check_no_data_timer 
+41ff 204042b3 call select_system_led_timer 
+4200 202041f7 branch kb_bb_event_100ms_loop 
+
+kb_bb_event_reconn_failed:
+4201 6801470b fetch 2 ,mem_ui_state_map 
+4202 c286423e bbit1 ui_state_btn_down ,kb_start_discovery 
+4203 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4204 c3003e0a bbit0 ,cacel_reconn_flag ,app_bb_hibernate 
+4205 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4206 793ffe00 set0 cacel_reconn_flag ,pdata 
+4207 6000caa9 store 1 ,mem_kb_temp_flag 
+4208 6801470b fetch 2 ,mem_ui_state_map 
+4209 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+420a 6001470b store 2 ,mem_ui_state_map 
+420b 20600000 rtn 
+
+kb_bb_disconnected:
+420c 793f8025 set0 mark_ext_patch ,mark 
+420d 44e6c019 bpatch patch19_5 ,mem_patch19 
+420e 2040421a call kb_bb_discon_clear_stack 
+420f 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+4210 c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+4211 c280c214 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+4212 c2814217 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+4213 2020423e branch kb_start_discovery 
+
+kb_event_light_state_pairing:
+4214 c282c217 bbit1 app_disc_after_handshake ,kb_event_light_state_hibernate 
+4215 c281c217 bbit1 app_disc_after_sniff ,kb_event_light_state_hibernate 
+4216 2020423e branch kb_start_discovery 
+
+kb_event_light_state_reconn:
+
+kb_event_light_state_hibernate:
+4217 6801470b fetch 2 ,mem_ui_state_map 
+4218 c286423e bbit1 ui_state_btn_down ,kb_start_discovery 
+4219 20203e0a branch app_bb_hibernate 
+
+kb_bb_discon_clear_stack:
+421a 70428300 jam app_handshake_null ,mem_app_handshake_flag 
+421b 704b0200 jam 0 ,mem_kb_debug_sm 
+421c 20600000 rtn 
+
+kb_check_hid_handshake_timer:
+421d 6800c709 fetch 1 ,mem_hid_handshake_timer_count 
+421e 207a0000 rtn blank 
+421f 1fe0ffff increase -1 ,pdata 
+4220 6000c709 store 1 ,mem_hid_handshake_timer_count 
+4221 247a0000 nrtn blank 
+4222 20204271 branch kb_bt_hid_handshake 
+
+kb_bb_event_discovery_btn:
+4223 58000000 setarg 0 
+4224 60014a9f store 2 ,mem_kb_direct_timer 
+4225 6000c718 store 1 ,mem_pin_length 
+4226 2040422a call led_cap_darking 
+4227 2040422d call kb_3_0_bb_event_discovery_btn 
+4228 20403e81 call app_lpm_mult_disable 
+4229 2020423e branch kb_start_discovery 
+
+led_cap_darking:
+422a 704af901 jam 1 ,mem_led_cap_gpio_status 
+422b 6808c737 fetcht 1 ,mem_led_cap_gpio 
+422c 202064fd branch gpio_out_inactive 
+
+kb_3_0_bb_event_discovery_btn:
+422d 793f8025 set0 mark_ext_patch ,mark 
+422e 44e74019 bpatch patch19_6 ,mem_patch19 
+422f 6801470b fetch 2 ,mem_ui_state_map 
+4230 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+4231 2040be50 call app_bt_reconnect_cancel ,true 
+4232 68014716 fetch 2 ,mem_discovery_timeout 
+4233 60014707 store 2 ,mem_discovery_timeout_timer_count 
+4234 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4235 79207e00 set1 app_disc_by_button ,pdata 
+4236 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4237 6801470b fetch 2 ,mem_ui_state_map 
+4238 c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+4239 20600000 rtn 
+
+kb_stop_discovery:
+423a 20403e73 call app_led_stop_blink 
+423b 58000000 setarg 0 
+423c 60014a9d store 2 ,mem_kb_discovery_timer 
+423d 20203e59 branch app_bt_stop_discovery 
+
+kb_start_discovery:
+423e 20403e81 call app_lpm_mult_disable 
+423f 68014716 fetch 2 ,mem_discovery_timeout 
+4240 60014a9d store 2 ,mem_kb_discovery_timer 
+4241 20403e57 call app_bt_start_discovery 
+4242 704b0100 jam 0 ,mem_kb_led_on_timer 
+4243 20403e6f call app_led_start_blink 
+4244 2040419a call kb_clean_kscan_fifo 
+4245 20204196 branch kb_clear_keys 
+
+kb_discovery_timeout_sleep:
+4246 20203e75 branch app_enter_hibernate 
+
+kb_process_pincode:
+4247 70470900 jam 0 ,mem_hid_handshake_timer_count 
+4248 70471800 jam 0 ,mem_pin_length 
+4249 20404196 call kb_clear_keys 
+424a 2020419a branch kb_clean_kscan_fifo 
+
+kb_before_hibernate:
+424b 6800cb01 fetch 1 ,mem_kb_led_on_timer 
+424c 203a4254 branch kb_before_hibernate_cont ,blank 
+424d d8400140 arg 320 ,temp 
+424e 984f8400 imul32 temp ,temp 
+424f 1c427e00 copy clkn_bt ,pdata 
+4250 98408400 iadd temp ,temp 
+
+kb_before_hibernate_wait:
+4251 1c427e00 copy clkn_bt ,pdata 
+4252 98467c00 isub temp ,null 
+4253 24214251 nbranch kb_before_hibernate_wait ,positive 
+
+kb_before_hibernate_cont:
+4254 6808caef fetcht 1 ,mem_led_power_gpio 
+4255 204064fd call gpio_out_inactive 
+4256 78347c00 enable user 
+4257 68120138 hfetch 4 ,0x8138 
+4258 79347e1a setflag user ,26 ,pdata 
+4259 6012004c hstore 4 ,core_lpm_reg 
+425a 20403cf4 call lpm_write_ctrl 
+
+kb_wake_common:
+425b 70808300 hjam 0x00 ,core_gpio_key0 
+425c 70808400 hjam 0x00 ,core_gpio_key1 
+425d 68108085 hfetch 1 ,core_gpio_key2 
+425e 1fe17ef0 and_into 0xf0 ,pdata 
+425f 60108085 hstore 1 ,core_gpio_key2 
+4260 58000000 setarg 0x00 
+4261 600200a4 store 4 ,mem_gpio_wakeup_high 
+4262 580000ff setarg 0xff 
+4263 6808c715 fetcht 1 ,mem_ui_button_gpio 
+4264 18420e00 copy temp ,queue 
+4265 f9207e00 qset1 pdata 
+4266 600200a0 store 4 ,mem_gpio_wakeup_low 
+4267 20600000 rtn 
+
+kb_process_lpm_before:
+4268 2040425b call kb_wake_common 
+4269 6800809f fetch 1 ,mem_lpm_current_mult 
+426a 247a0000 nrtn blank 
+426b 7000a000 jam 0 ,mem_gpio_wakeup_low 
+426c 20600000 rtn 
+
+kb_hid_connected:
+426d 58000002 setarg hid_handshake_timeout 
+426e 6000c709 store 1 ,mem_hid_handshake_timer_count 
+426f 2040419a call kb_clean_kscan_fifo 
+4270 20204196 branch kb_clear_keys 
+
+kb_bt_hid_handshake:
+4271 793f8025 set0 mark_ext_patch ,mark 
+4272 44e7c019 bpatch patch19_7 ,mem_patch19 
+4273 20407d33 call ui_led_off 
+4274 70428301 jam app_handshake_done ,mem_app_handshake_flag 
+4275 2040419a call kb_clean_kscan_fifo 
+4276 20404196 call kb_clear_keys 
+4277 20403e7f call app_lpm_mult_enable 
+4278 20403e7d call app_bt_store_reconn_info 
+4279 58000000 setarg 0 
+427a 60014707 store 2 ,mem_discovery_timeout_timer_count 
+427b 6000c709 store 1 ,mem_hid_handshake_timer_count 
+427c 20203e79 branch app_bt_enter_sniff 
+
+store_current_status:
+427d 6800cae9 fetch 1 ,mem_kb_current_status 
+427e 1fe17e07 and_into 0x7 ,pdata 
+427f 6000cb00 store 1 ,mem_store_current_status 
+4280 d8400001 arg 1 ,temp 
+4281 da204b00 arg mem_store_current_status ,rega 
+4282 58001fec setarg eeprom_system_falg 
+4283 202062a8 branch iicd_write_eep 
+
+read_current_status:
+4284 d8400001 arg 1 ,temp 
+4285 da204b00 arg mem_store_current_status ,rega 
+4286 58001fec setarg eeprom_system_falg 
+4287 1ff0fe00 byteswap pdata ,pdata 
+4288 6001021a store 2 ,mem_addr_mi 
+4289 2040624c call iicd_read_eep 
+428a 6800cb00 fetch 1 ,mem_store_current_status 
+428b 1fe22400 copy pdata ,regb 
+428c 1fe17e0f and_into 0x0f ,pdata 
+428d c007c2b9 beq 0x0f ,kb_current_status_regroup 
+428e 1a427e00 copy regb ,pdata 
+428f 6000cae9 store 1 ,mem_kb_current_status 
+4290 20600000 rtn 
+
+kb_kscan_release_foundkey:
+4291 18c08bff add contr ,-1 ,contw 
+4292 20407ecd call memcpy 
+4293 6800c731 fetch 1 ,mem_kb_keys 
+4294 1fe0ffff increase -1 ,pdata 
+4295 6000c731 store 1 ,mem_kb_keys 
+4296 6800cb23 fetch 1 ,mem_kb_release_fn_data 
+4297 c03fc2bd beq 0x7f ,kb_clear_fn_lock_flag 
+4298 202042c0 branch kb_kscan_check 
+
+kb_recover_kb_down_data:
+4299 68044aca fetch 8 ,mem_kb_down 
+429a 60044b19 store 8 ,mem_kb_down_test 
+429b 202042c0 branch kb_kscan_check 
+
+kb_kscan_fn:
+429c 6800c731 fetch 1 ,mem_kb_keys 
+429d 203a42ca branch kb_kscan_no_data ,blank 
+429e 1fe22400 copy pdata ,regb 
+429f 6802caca fetch 5 ,mem_kb_down 
+42a0 1fe20400 copy pdata ,temp 
+
+kb_kscan_fn_loop:
+42a1 18427e00 copy temp ,pdata 
+42a2 2fe1fe7f compare 0x7f ,pdata ,0xff 
+42a3 2020c2b0 branch kb_get_fn ,true 
+42a4 1a40a5ff increase -1 ,regb 
+42a5 58004b12 setarg mem_kb_down_regroup 
+42a6 9a408a00 iadd regb ,contw 
+42a7 18427e00 copy temp ,pdata 
+42a8 e0a08000 istore 1 ,contw 
+42a9 18427e00 copy temp ,pdata 
+42aa 1fecfe00 rshift8 pdata ,pdata 
+42ab 1fe20400 copy pdata ,temp 
+42ac 243a42a1 nbranch kb_kscan_fn_loop ,blank 
+42ad 6802cb12 fetch 5 ,mem_kb_down_regroup 
+42ae 205a42cc call kb_down_data ,blank 
+42af 202042c0 branch kb_kscan_check 
+
+kb_get_fn:
+42b0 58000001 setarg 1 
+42b1 6000cb17 store 1 ,mem_kb_get_fn_flag 
+42b2 202042a9 branch kb_kscan_fn_loop + 8 
+
+select_system_led_timer:
+42b3 6800caf8 fetch 1 ,mem_select_system_led_timer 
+42b4 207a0000 rtn blank 
+42b5 1fe0ffff increase -1 ,pdata 
+42b6 6000caf8 store 1 ,mem_select_system_led_timer 
+42b7 247a0000 nrtn blank 
+42b8 20207d2f branch ui_led_blink_stop 
+
+kb_current_status_regroup:
+42b9 1a427e00 copy regb ,pdata 
+42ba 1fe17e01 and_into kb_map2_status_win ,pdata 
+42bb 6000cae9 store 1 ,mem_kb_current_status 
+42bc 20600000 rtn 
+
+kb_clear_fn_lock_flag:
+42bd 704b1700 jam 0 ,mem_kb_get_fn_flag 
+42be 204042cc call kb_down_data 
+42bf 202042c0 branch kb_kscan_check 
+
+kb_kscan_check:
+42c0 793f8025 set0 mark_ext_patch ,mark 
+42c1 44e8c01a bpatch patch1a_1 ,mem_patch1a 
+42c2 68108119 hfetch 1 ,core_kscn_kstat 
+42c3 c3800000 rtnbit1 kb_kscan_stat_empty 
+42c4 6810811b hfetch 1 ,core_kscn_event_num 
+42c5 c28042d4 bbit1 kb_kscan_key_event_stat ,kb_kscan_read_event 
+42c6 68108119 hfetch 1 ,core_kscn_kstat 
+42c7 c30342d4 bbit0 kb_kscan_stat_ghost ,kb_kscan_read_event 
+42c8 6810811a hfetch 1 ,core_kscn_event 
+42c9 202042c0 branch kb_kscan_check 
+
+kb_kscan_no_data:
+42ca 204042cf call kb_clear_data 
+42cb 202042c0 branch kb_kscan_check 
+
+kb_down_data:
+42cc 68044aca fetch 8 ,mem_kb_down 
+42cd 60044b19 store 8 ,mem_kb_down_test 
+42ce 20600000 rtn 
+
+kb_clear_data:
+42cf 58000000 setarg 0 
+42d0 6000cb17 store 1 ,mem_kb_get_fn_flag 
+42d1 6002cb12 store 5 ,mem_kb_down_regroup 
+42d2 60044aca store 8 ,mem_kb_down 
+42d3 20600000 rtn 
+
+kb_kscan_read_event:
+42d4 6800caa9 fetch 1 ,mem_kb_temp_flag 
+42d5 79207e01 set1 key_event_flag ,pdata 
+42d6 6000caa9 store 1 ,mem_kb_temp_flag 
+42d7 6810811b hfetch 1 ,core_kscn_event_num 
+42d8 2feffe00 isolate1 kb_kscan_key_event_stat ,pdata 
+42d9 6000caa6 store 1 ,mem_kscan_event_num_last 
+42da 6810811a hfetch 1 ,core_kscn_event 
+42db 6000caa5 store 1 ,mem_kscn_event_last 
+42dc d8c049ff arg mem_kb_map ,contr 
+42dd 98c08c00 iadd contr ,contr 
+42de e8c08000 ifetch 1 ,contr 
+42df 6808c731 fetcht 1 ,mem_kb_keys 
+42e0 18467c04 sub temp ,4 ,null 
+42e1 242142c0 nbranch kb_kscan_check ,positive 
+42e2 98000c00 iforce contr 
+42e3 58004aca setarg mem_kb_down 
+42e4 98408a00 iadd temp ,contw 
+42e5 18c27e00 deposit contr 
+42e6 e0a08000 istore 1 ,contw 
+42e7 18408401 increase 1 ,temp 
+42e8 6008c731 storet 1 ,mem_kb_keys 
+42e9 2020429c branch kb_kscan_fn 
+
+l2cap_init:
+42ea 2035c2ef branch l2cap_init_wake ,wake 
+
+l2cap_init_work:
+42eb 580043f5 setarg mem_l2cap_xmem_end 
+42ec d8a042d6 arg mem_l2cap_xmem_start ,contw 
+42ed 98a67200 isub contw ,loopcnt 
+42ee 20407e9f call clear_mem 
+
+l2cap_init_wake:
+42ef 793f8025 set0 mark_ext_patch ,mark 
+42f0 44e9401a bpatch patch1a_2 ,mem_patch1a 
+42f1 58000475 setarg mem_sdp_mem_end 
+42f2 d8a00440 arg mem_sdp_mem_start ,contw 
+42f3 98a67200 isub contw ,loopcnt 
+42f4 20407e9f call clear_mem 
+42f5 580002f2 setarg mem_l2cap_mem_end 
+42f6 d8a00286 arg mem_l2cap_mem_start ,contw 
+42f7 98a67200 isub contw ,loopcnt 
+42f8 20407e9f call clear_mem 
+42f9 202048c3 branch l2cap_lpm_load_txbuf 
+
+process_rx_l2cap_pkt:
+42fa 793f8025 set0 mark_ext_patch ,mark 
+42fb 44e9c01a bpatch patch1a_3 ,mem_patch1a 
+42fc 18c20400 copy contr ,temp 
+42fd 18420c00 copy temp ,contr 
+42fe e8c10000 ifetch 2 ,contr 
+42ff 6001028f store 2 ,mem_l2cap_rx_pkt_length 
+4300 e8c10000 ifetch 2 ,contr 
+4301 60010291 store 2 ,mem_l2cap_rx_cid 
+4302 18c27e00 deposit contr 
+4303 6001028d store 2 ,mem_l2cap_payload_ptr 
+4304 6800c70a fetch 1 ,memui_reconnect_mode 
+4305 c0004307 beq no_reconnection ,l2cap_rx_multiplexing 
+4306 20204684 branch ml2cap_rx_multiplexing 
+
+l2cap_rx_multiplexing:
+4307 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4308 203a4383 branch l2cap_rx_reset_state ,blank 
+4309 793f8025 set0 mark_ext_patch ,mark 
+430a 44ea401a bpatch patch1a_4 ,mem_patch1a 
+430b 68008291 fetch 1 ,mem_l2cap_rx_cid 
+430c c000c321 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+
+l2cap_rx_multiplexing0:
+430d c0284366 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+430e c028c37b beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+430f c0294379 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+4310 c029c379 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+4311 20204383 branch l2cap_rx_reset_state 
+
+l2cap_check_map:
+4312 793f8025 set0 mark_ext_patch ,mark 
+4313 44eac01a bpatch patch1a_5 ,mem_patch1a 
+4314 20404821 call l2cap_malloc_get_full_map 
+4315 6800c2e6 fetch 1 ,mem_used_map 
+4316 c000431f beq 0 ,set_pdata_0 
+4317 c000c31f beq 1 ,set_pdata_0 
+4318 c001431f beq 2 ,set_pdata_0 
+4319 c001c31f beq 3 ,set_pdata_0 
+431a c040c31f beq 0x81 ,set_pdata_0 
+431b c060431f beq 0xc0 ,set_pdata_0 
+431c c040431f beq 0x80 ,set_pdata_0 
+431d c020431f beq 0x40 ,set_pdata_0 
+431e 20600000 rtn 
+
+set_pdata_0:
+431f 58000000 setarg 0 
+4320 20600000 rtn 
+
+l2cap_call_proc_signal:
+4321 20404312 call l2cap_check_map 
+4322 247a0000 nrtn blank 
+
+l2cap_call_proc_signal0:
+4323 2040485e call l2cap_malloc_signal_channel 
+4324 20404388 call l2cap_process_signal_pkt 
+4325 68090298 fetcht 2 ,mem_l2cap_signal_tx_length 
+4326 203a4382 branch l2cap_call_proc_no_reply ,blank 
+4327 20404868 call l2cap_get_signal_tx_buff 
+4328 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+4329 e0a10000 istore 2 ,contw 
+432a 18007e01 force l2cap_signal_channel ,pdata 
+432b e0a10000 istore 2 ,contw 
+432c 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_sigal_pending:
+432d 6800c3f4 fetch 1 ,mem_l2cap_pending_item 
+432e 207a0000 rtn blank 
+432f 1fe22200 copy pdata ,rega 
+4330 793f8025 set0 mark_ext_patch ,mark 
+4331 44eb401a bpatch patch1a_6 ,mem_patch1a 
+4332 680202fe fetch 4 ,mem_l2cap_sdpres_delay_time 
+4333 d8400100 arg 0x100 ,temp 
+4334 98408400 iadd temp ,temp 
+4335 1c427e00 copy clkn_bt ,pdata 
+4336 98467c00 isub temp ,null 
+4337 24610000 nrtn positive 
+4338 7043f400 jam 0 ,mem_l2cap_pending_item 
+4339 1a227e00 copy rega ,pdata 
+433a c028433c beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+433b 20203b31 branch assert 
+
+l2cap_sdp_conn_succ:
+433c d9000000 arg 0 ,debug 
+433d 2040485e call l2cap_malloc_signal_channel 
+433e 20404404 call restore_l2cap_req_param 
+433f 2040486a call l2cap_get_signal_tx_payload 
+4340 20407e70 call save_cont_pointers 
+4341 20404437 call send_connection_sdp_res 
+4342 20404868 call l2cap_get_signal_tx_buff 
+4343 5800000c setarg 0x000c 
+4344 e0a10000 istore 2 ,contw 
+4345 18007e01 force l2cap_signal_channel ,pdata 
+4346 e0a10000 istore 2 ,contw 
+4347 20204383 branch l2cap_rx_reset_state 
+
+l2cap_reset_sdp_map:
+4348 793f8025 set0 mark_ext_patch ,mark 
+4349 44ebc01a bpatch patch1a_7 ,mem_patch1a 
+434a 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+434b 1fe0fe04 increase 4 ,pdata 
+434c 1ff1fe00 rshift4 pdata ,pdata 
+434d 1fe97e00 rshift3 pdata ,pdata 
+434e 1fe08401 add pdata ,1 ,temp 
+434f d8c042f0 arg mem_tx_fifo3 ,contr 
+4350 e8c18000 ifetch 3 ,contr 
+4351 207a0000 rtn blank 
+4352 600189e1 store 3 ,mem_tx_fifo_map_temp 
+4353 680089e1 fetch 1 ,mem_tx_fifo_map_temp 
+4354 1fe22200 copy pdata ,rega 
+4355 20404359 call check_l2cap_map 
+4356 1a427e00 copy regb ,pdata 
+4357 6000c2f0 store 1 ,mem_tx_fifo3 
+4358 20600000 rtn 
+
+check_l2cap_map:
+4359 d8e00000 arg 0 ,queue 
+435a da400000 arg 0 ,regb 
+
+check_l2cap_map_loop:
+435b 18e67c07 sub queue ,7 ,null 
+435c 24610000 nrtn positive 
+435d aa2fffff qisolate1 rega 
+435e 2020c360 branch check_l2cap_map_used ,true 
+435f 20204364 branch check_l2cap_map_used2 
+
+check_l2cap_map_used:
+4360 18427e00 copy temp ,pdata 
+4361 203a4364 branch check_l2cap_map_used2 ,blank 
+4362 f9202400 qset1 regb 
+4363 184085ff increase -1 ,temp 
+
+check_l2cap_map_used2:
+4364 18e08e01 increase 1 ,queue 
+4365 2020435b branch check_l2cap_map_loop 
+
+l2cap_call_proc_sdp:
+4366 20404816 call l2cap_malloc_is_fifo_empty 
+4367 247a0000 nrtn blank 
+4368 20404312 call l2cap_check_map 
+4369 247a0000 nrtn blank 
+436a 2040486c call l2cap_malloc_sdp_channel 
+436b 20406a3e call sdp_process 
+436c 20404348 call l2cap_reset_sdp_map 
+436d 20204372 branch l2cap_call_proc_sdp_common 
+
+ml2cap_call_proc_sdp:
+436e 20404816 call l2cap_malloc_is_fifo_empty 
+436f 247a0000 nrtn blank 
+4370 2040486c call l2cap_malloc_sdp_channel 
+4371 20406a3e call sdp_process 
+
+l2cap_call_proc_sdp_common:
+4372 20404876 call l2cap_get_sdp_tx_buff 
+4373 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+4374 203a4382 branch l2cap_call_proc_no_reply ,blank 
+4375 e0a10000 istore 2 ,contw 
+4376 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4377 e0a10000 istore 2 ,contw 
+4378 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_hid:
+4379 20403fca call hid_rx_process 
+437a 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_rfcomm:
+437b 793f8025 set0 mark_ext_patch ,mark 
+437c 44ec401b bpatch patch1b_0 ,mem_patch1b 
+437d 7002ad00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+437e 2040668f call rfcomm_rx_process 
+437f 680082ad fetch 1 ,mem_rfcomm_malloc_fail_flag 
+4380 c1008000 rtneq rfcomm_malloc_fail 
+4381 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_no_reply:
+4382 20404803 call l2cap_malloc_discard 
+
+l2cap_rx_reset_state:
+4383 58000000 setarg 0 
+4384 6001028f store 2 ,mem_l2cap_rx_pkt_length 
+4385 60010291 store 2 ,mem_l2cap_rx_cid 
+4386 70029301 jam l2cap_rx_done ,mem_l2cap_rx_done 
+4387 20600000 rtn 
+
+l2cap_process_signal_pkt:
+4388 793f8025 set0 mark_ext_patch ,mark 
+4389 44ecc01b bpatch patch1b_1 ,mem_patch1b 
+438a 2040486a call l2cap_get_signal_tx_payload 
+438b 18002400 force 0 ,regb 
+438c 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+438d 1fe22600 copy pdata ,regc 
+438e 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+438f 98000c00 iforce contr 
+
+l2cap_process_signal_pkt_loop:
+4390 20404398 call l2cap_process_one_signal 
+4391 1a627e00 deposit regc 
+4392 1a60a7fc increase -4 ,regc 
+4393 1fe0fffc increase -4 ,pdata 
+4394 243a4390 nbranch l2cap_process_signal_pkt_loop ,blank 
+4395 1a427e00 copy regb ,pdata 
+4396 60010298 store 2 ,mem_l2cap_signal_tx_length 
+4397 20600000 rtn 
+
+l2cap_process_one_signal:
+4398 793f8025 set0 mark_ext_patch ,mark 
+4399 44ed401b bpatch patch1b_2 ,mem_patch1b 
+439a e8c08000 ifetch 1 ,contr 
+439b c000c3d2 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+439c c00143da beq signal_connect_req ,l2cap_proc_signal_connect_req 
+439d c001c460 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+439e c0024491 beq signal_config_req ,l2cap_proc_signal_config_req 
+439f c002c531 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+43a0 c003455b beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+43a1 c003c5ac beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+43a2 c00445e2 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+43a3 c004c5f2 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+43a4 c00543a8 beq signal_info_req ,l2cap_proc_signal_info_req 
+43a5 c005c5f3 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+43a6 204045f4 call l2cap_reject_command 
+
+l2cap_process_one_signal_rtn:
+43a7 20600000 rtn 
+
+l2cap_proc_signal_info_req:
+43a8 e8c08000 ifetch 1 ,contr 
+43a9 1fe20e00 copy pdata ,queue 
+43aa e8c10000 ifetch 2 ,contr 
+43ab 1fe22200 copy pdata ,rega 
+43ac 1a627e00 copy regc ,pdata 
+43ad 9a262600 isub rega ,regc 
+43ae 5800000b setarg signal_info_rsp 
+43af e0a08000 istore 1 ,contw 
+43b0 18e27e00 copy queue ,pdata 
+43b1 e0a08000 istore 1 ,contw 
+43b2 e8c10000 ifetch 2 ,contr 
+
+l2cap_proc_signal_info_req_reply:
+43b3 c00143b6 beq l2cap_sig_ext_featrue ,l2cap_proc_signal_info_req_ext 
+43b4 c001c3bc beq l2cap_sig_fix_featrue ,l2cap_proc_signal_info_req_fix 
+43b5 20600000 rtn 
+
+l2cap_proc_signal_info_req_ext:
+43b6 58020008 setarg 0x020008 
+43b7 e0a30000 istore 6 ,contw 
+43b8 58000280 setarg 0x0280 
+43b9 e0a20000 istore 4 ,contw 
+43ba 18007e0c force 12 ,pdata 
+43bb 202043c1 branch l2cap_proc_signal_info_req_common 
+
+l2cap_proc_signal_info_req_fix:
+43bc 5803000c setarg 0x3000c 
+43bd e0a30000 istore 6 ,contw 
+43be 58000006 setarg 0x0006 
+43bf e0a40000 istore 8 ,contw 
+43c0 18007e10 force 16 ,pdata 
+
+l2cap_proc_signal_info_req_common:
+43c1 9a40a400 iadd regb ,regb 
+43c2 202043a7 branch l2cap_process_one_signal_rtn 
+
+ml2cap_proc_signal_info_req:
+43c3 e8c08000 ifetch 1 ,contr 
+43c4 1fe20e00 copy pdata ,queue 
+43c5 e8c10000 ifetch 2 ,contr 
+43c6 1fe22200 copy pdata ,rega 
+43c7 e8c10000 ifetch 2 ,contr 
+43c8 600109c6 store 2 ,mem_temp 
+43c9 1a627e00 copy regc ,pdata 
+43ca 9a262600 isub rega ,regc 
+43cb 2040486a call l2cap_get_signal_tx_payload 
+43cc 5800000b setarg signal_info_rsp 
+43cd e0a08000 istore 1 ,contw 
+43ce 18e27e00 copy queue ,pdata 
+43cf e0a08000 istore 1 ,contw 
+43d0 680109c6 fetch 2 ,mem_temp 
+43d1 202043b3 branch l2cap_proc_signal_info_req_reply 
+
+l2cap_proc_signal_cmd_reject:
+43d2 e8c08000 ifetch 1 ,contr 
+43d3 1fe20e00 copy pdata ,queue 
+43d4 e8c10000 ifetch 2 ,contr 
+43d5 1fe22200 copy pdata ,rega 
+43d6 98c08c00 iadd contr ,contr 
+43d7 1a627e00 copy regc ,pdata 
+43d8 9a262600 isub rega ,regc 
+
+l2cap_proc_signal_cmd_reject_rtn:
+43d9 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_req:
+43da 20407e70 call save_cont_pointers 
+43db 20407e75 call load_cont_pointers 
+43dc d9000000 arg 0 ,debug 
+43dd e8c08000 ifetch 1 ,contr 
+43de 1fe20e00 copy pdata ,queue 
+43df e8c10000 ifetch 2 ,contr 
+43e0 1fe22200 copy pdata ,rega 
+43e1 e8c10000 ifetch 2 ,contr 
+43e2 1fe20400 copy pdata ,temp 
+43e3 e8c10000 ifetch 2 ,contr 
+43e4 1fe21600 copy pdata ,timeup 
+43e5 793f8025 set0 mark_ext_patch ,mark 
+43e6 44edc01b bpatch patch1b_3 ,mem_patch1b 
+43e7 18427e00 copy temp ,pdata 
+43e8 c000c3ee beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+43e9 c001c410 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+43ea c008c41c beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+43eb c009c427 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+43ec 204045f4 call l2cap_reject_command 
+43ed 2020445f branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_sdp:
+43ee 20407e70 call save_cont_pointers 
+43ef d8400050 arg l2cap_sdp_channel ,temp 
+43f0 680142d8 fetch 2 ,mem_sdp_remote_cid 
+43f1 243a4459 nbranch already_connected ,blank 
+43f2 19627e00 copy timeup ,pdata 
+43f3 600142d8 store 2 ,mem_sdp_remote_cid 
+43f4 1c427e00 copy clkn_bt ,pdata 
+43f5 600202fe store 4 ,mem_l2cap_sdpres_delay_time 
+43f6 204043f8 call store_l2cap_req_param 
+43f7 20204433 branch send_connection_pending 
+
+store_l2cap_req_param:
+43f8 600902fc storet 2 ,mem_psm 
+43f9 19627e00 deposit timeup 
+43fa 600102f2 store 2 ,mem_scid 
+43fb 1a227e00 deposit rega 
+43fc 600102f4 store 2 ,mem_cmd_length 
+43fd 1a427e00 deposit regb 
+43fe 600102f6 store 2 ,mem_tt2 
+43ff 1a627e00 deposit regc 
+4400 600102f8 store 2 ,mem_tt3 
+4401 18e27e00 deposit queue 
+4402 600102fa store 2 ,mem_id 
+4403 20600000 rtn 
+
+restore_l2cap_req_param:
+4404 680902fc fetcht 2 ,mem_psm 
+4405 680102f2 fetch 2 ,mem_scid 
+4406 1fe21600 copy pdata ,timeup 
+4407 680102f4 fetch 2 ,mem_cmd_length 
+4408 1fe22200 copy pdata ,rega 
+4409 680102f6 fetch 2 ,mem_tt2 
+440a 1fe22400 copy pdata ,regb 
+440b 680102f8 fetch 2 ,mem_tt3 
+440c 1fe22600 copy pdata ,regc 
+440d 680102fa fetch 2 ,mem_id 
+440e 1fe20e00 copy pdata ,queue 
+440f 20600000 rtn 
+
+l2cap_proc_signal_connect_req_rfcomm:
+4410 20407e70 call save_cont_pointers 
+4411 58000051 setarg l2cap_rfcomm_channel 
+4412 d8400051 arg l2cap_rfcomm_channel ,temp 
+4413 680142da fetch 2 ,mem_rfcomm_remote_cid 
+4414 243a4459 nbranch already_connected ,blank 
+4415 19627e00 copy timeup ,pdata 
+4416 600142da store 2 ,mem_rfcomm_remote_cid 
+4417 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4418 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4419 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+441a 6000c2e1 store 1 ,mem_rfcomm_state 
+441b 2020443b branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_ctrl:
+441c 20407e70 call save_cont_pointers 
+441d d8400052 arg l2cap_hid_control_channel ,temp 
+441e 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+441f 243a4459 nbranch already_connected ,blank 
+4420 19627e00 copy timeup ,pdata 
+4421 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+4422 6800c2e2 fetch 1 ,mem_hid_control_state 
+4423 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4424 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4425 6000c2e2 store 1 ,mem_hid_control_state 
+4426 2020443b branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_int:
+4427 20407e70 call save_cont_pointers 
+4428 1b427e00 deposit clke 
+4429 d8400053 arg l2cap_hid_interrupt_channel ,temp 
+442a 680142de fetch 2 ,mem_hid_int_remote_cid 
+442b 243a4459 nbranch already_connected ,blank 
+442c 19627e00 copy timeup ,pdata 
+442d 600142de store 2 ,mem_hid_int_remote_cid 
+442e 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+442f 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4430 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4431 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4432 2020443b branch send_connection_res 
+
+send_connection_pending:
+4433 58000001 setarg l2cap_connect_pending 
+4434 600102a6 store 2 ,meml2cap_t1 
+4435 7043f450 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+4436 2020443d branch send_connection_res0 
+
+send_connection_sdp_res:
+4437 6800c2e0 fetch 1 ,mem_sdp_state 
+4438 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4439 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+443a 6000c2e0 store 1 ,mem_sdp_state 
+
+send_connection_res:
+443b 58000000 setarg l2cap_connect_successful 
+443c 600102a6 store 2 ,meml2cap_t1 
+
+send_connection_res0:
+443d 793f8025 set0 mark_ext_patch ,mark 
+443e 44ee401b bpatch patch1b_4 ,mem_patch1b 
+443f 20407e75 call load_cont_pointers 
+4440 58000003 setarg signal_connect_rsp 
+4441 e0a08000 istore 1 ,contw 
+4442 18e27e00 copy queue ,pdata 
+4443 e0a08000 istore 1 ,contw 
+4444 58000008 setarg 0x0008 
+4445 e0a10000 istore 2 ,contw 
+4446 18427e00 copy temp ,pdata 
+4447 e0a10000 istore 2 ,contw 
+4448 19627e00 copy timeup ,pdata 
+4449 e0a10000 istore 2 ,contw 
+444a 680102a6 fetch 2 ,meml2cap_t1 
+444b c000c454 beq l2cap_connect_pending ,connect_pending 
+444c 290c0000 isolate0 0 ,debug 
+444d 2020c44f branch connect_suc ,true 
+444e 58000004 setarg l2cap_connect_refused_no_resources 
+
+connect_suc:
+444f e0a10000 istore 2 ,contw 
+4450 18007e00 force 0x0000 ,pdata 
+4451 e0a10000 istore 2 ,contw 
+4452 5800000c setarg 12 
+4453 2020445b branch connect_req_update_byte_counts 
+
+connect_pending:
+4454 e0a10000 istore 2 ,contw 
+4455 18007e02 force 0x0002 ,pdata 
+4456 e0a10000 istore 2 ,contw 
+4457 5800000c setarg 12 
+4458 2020445b branch connect_req_update_byte_counts 
+
+already_connected:
+4459 79201000 set1 0 ,debug 
+445a 2020443b branch send_connection_res 
+
+connect_req_update_byte_counts:
+445b 9a40a400 iadd regb ,regb 
+445c 1a627e00 copy regc ,pdata 
+445d 9a262600 isub rega ,regc 
+445e 2020445f branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_rtn:
+445f 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp:
+4460 e8c08000 ifetch 1 ,contr 
+4461 1fe20e00 copy pdata ,queue 
+4462 e8c10000 ifetch 2 ,contr 
+4463 1fe22200 copy pdata ,rega 
+4464 1a627e00 copy regc ,pdata 
+4465 9a262600 isub rega ,regc 
+4466 e8c10000 ifetch 2 ,contr 
+4467 1fe21600 copy pdata ,timeup 
+4468 e8c10000 ifetch 2 ,contr 
+4469 1fe20400 copy pdata ,temp 
+446a 793f8025 set0 mark_ext_patch ,mark 
+446b 44eec01b bpatch patch1b_5 ,mem_patch1b 
+446c 58000050 setarg l2cap_sdp_channel 
+446d 98467c00 isub temp ,null 
+446e 2022c479 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+446f 58000051 setarg l2cap_rfcomm_channel 
+4470 98467c00 isub temp ,null 
+4471 2022c47f branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+4472 58000052 setarg l2cap_hid_control_channel 
+4473 98467c00 isub temp ,null 
+4474 2022c48b branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+4475 58000053 setarg l2cap_hid_interrupt_channel 
+4476 98467c00 isub temp ,null 
+4477 2022c485 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+4478 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_sdp:
+4479 19627e00 copy timeup ,pdata 
+447a 600142d8 store 2 ,mem_sdp_remote_cid 
+447b 6800c2e0 fetch 1 ,mem_sdp_state 
+447c 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+447d 6000c2e0 store 1 ,mem_sdp_state 
+447e 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp_rfcomm:
+447f 19627e00 copy timeup ,pdata 
+4480 600142da store 2 ,mem_rfcomm_remote_cid 
+4481 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4482 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4483 6000c2e1 store 1 ,mem_rfcomm_state 
+4484 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_int:
+4485 19627e00 copy timeup ,pdata 
+4486 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+4487 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4488 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4489 6000c2e3 store 1 ,mem_hid_interrupt_state 
+448a 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+448b 19627e00 copy timeup ,pdata 
+448c 600142de store 2 ,mem_hid_int_remote_cid 
+448d 6800c2e2 fetch 1 ,mem_hid_control_state 
+448e 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+448f 6000c2e2 store 1 ,mem_hid_control_state 
+4490 20600000 rtn 
+
+l2cap_proc_signal_config_req:
+4491 e8c08000 ifetch 1 ,contr 
+4492 1fe20e00 copy pdata ,queue 
+4493 e8c10000 ifetch 2 ,contr 
+4494 1fe22200 copy pdata ,rega 
+4495 1a627e00 copy regc ,pdata 
+4496 9a262600 isub rega ,regc 
+4497 e8c10000 ifetch 2 ,contr 
+4498 1fe20400 copy pdata ,temp 
+4499 18422200 copy temp ,rega 
+449a 793f8025 set0 mark_ext_patch ,mark 
+449b 44ef401b bpatch patch1b_6 ,mem_patch1b 
+449c 58000050 setarg l2cap_sdp_channel 
+449d 98467c00 isub temp ,null 
+449e 2022c4a9 branch l2cap_proc_signal_config_req_sdp ,zero 
+449f 58000051 setarg l2cap_rfcomm_channel 
+44a0 98467c00 isub temp ,null 
+44a1 2022c4c7 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+44a2 58000052 setarg l2cap_hid_control_channel 
+44a3 98467c00 isub temp ,null 
+44a4 2022c4b3 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+44a5 58000053 setarg l2cap_hid_interrupt_channel 
+44a6 98467c00 isub temp ,null 
+44a7 2022c4bd branch l2cap_proc_signal_config_req_hid_int ,zero 
+44a8 202045f4 branch l2cap_reject_command 
+
+l2cap_proc_signal_config_req_sdp:
+44a9 18a21600 copy contw ,timeup 
+44aa 6800c2e0 fetch 1 ,mem_sdp_state 
+44ab 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44ac 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44ad 6000c2e0 store 1 ,mem_sdp_state 
+44ae 19620a00 copy timeup ,contw 
+44af d9600050 arg l2cap_sdp_channel ,timeup 
+44b0 680142d8 fetch 2 ,mem_sdp_remote_cid 
+44b1 1fe20400 copy pdata ,temp 
+44b2 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_ctrl:
+44b3 18a21600 copy contw ,timeup 
+44b4 6800c2e2 fetch 1 ,mem_hid_control_state 
+44b5 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44b6 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44b7 6000c2e2 store 1 ,mem_hid_control_state 
+44b8 19620a00 copy timeup ,contw 
+44b9 d9600052 arg l2cap_hid_control_channel ,timeup 
+44ba 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+44bb 1fe20400 copy pdata ,temp 
+44bc 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_int:
+44bd 18a21600 copy contw ,timeup 
+44be 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+44bf 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44c0 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44c1 6000c2e3 store 1 ,mem_hid_interrupt_state 
+44c2 19620a00 copy timeup ,contw 
+44c3 d9600053 arg l2cap_hid_interrupt_channel ,timeup 
+44c4 680142de fetch 2 ,mem_hid_int_remote_cid 
+44c5 1fe20400 copy pdata ,temp 
+44c6 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_rfcomm:
+44c7 18a21600 copy contw ,timeup 
+44c8 6800c2e1 fetch 1 ,mem_rfcomm_state 
+44c9 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44ca 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44cb 6000c2e1 store 1 ,mem_rfcomm_state 
+44cc 19620a00 copy timeup ,contw 
+44cd d9600051 arg l2cap_rfcomm_channel ,timeup 
+44ce 680142da fetch 2 ,mem_rfcomm_remote_cid 
+44cf 1fe20400 copy pdata ,temp 
+
+l2cap_send_config_rsp:
+44d0 793f8025 set0 mark_ext_patch ,mark 
+44d1 44efc01b bpatch patch1b_7 ,mem_patch1b 
+44d2 58000005 setarg signal_config_rsp 
+44d3 e0a08000 istore 1 ,contw 
+44d4 18e27e00 copy queue ,pdata 
+44d5 e0a08000 istore 1 ,contw 
+44d6 58000006 setarg 0x0006 
+44d7 e0a10000 istore 2 ,contw 
+44d8 18427e00 copy temp ,pdata 
+44d9 e0a10000 istore 2 ,contw 
+44da 18007e00 force 0x00 ,pdata 
+44db e0a10000 istore 2 ,contw 
+44dc 18007e00 force l2cap_config_success ,pdata 
+44dd e0a10000 istore 2 ,contw 
+44de 18007e0a force 10 ,pdata 
+44df 9a40a400 iadd regb ,regb 
+44e0 600902ab storet 2 ,mem_config_req_dest_cid 
+44e1 18e27e00 copy queue ,pdata 
+44e2 600082aa store 1 ,mem_config_identifier 
+44e3 18007e50 force l2cap_sdp_channel ,pdata 
+44e4 a961fe00 icompare 0xff ,timeup 
+44e5 2020c4e7 branch l2cap_send_config_rsp_is_sdp ,true 
+44e6 1fe0fe01 increase 1 ,pdata 
+
+l2cap_send_config_rsp_is_sdp:
+44e7 20600000 rtn 
+
+l2cap_check_channel_state:
+44e8 78547c00 disable user 
+44e9 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+44ea c4000000 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+44eb c4008000 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+44ec 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+44ed 18c20a00 copy contr ,contw 
+44ee 18a08bff increase -1 ,contw 
+44ef e0a08000 istore 1 ,contw 
+44f0 78347c00 enable user 
+44f1 20600000 rtn 
+
+l2cap_send_config_req:
+
+l2cap_send_config_req_sdp:
+44f2 6800c2e0 fetch 1 ,mem_sdp_state 
+44f3 204044e8 call l2cap_check_channel_state 
+44f4 243444f9 nbranch l2cap_send_config_req_rfcomm ,user 
+44f5 7002a950 jam l2cap_sdp_channel ,mem_send_config_req 
+44f6 680142d8 fetch 2 ,mem_sdp_remote_cid 
+44f7 600102ab store 2 ,mem_config_req_dest_cid 
+44f8 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_rfcomm:
+44f9 6800c2e1 fetch 1 ,mem_rfcomm_state 
+44fa 204044e8 call l2cap_check_channel_state 
+44fb 24344500 nbranch l2cap_send_config_req_hid_ctrl ,user 
+44fc 7002a951 jam l2cap_rfcomm_channel ,mem_send_config_req 
+44fd 680142da fetch 2 ,mem_rfcomm_remote_cid 
+44fe 600102ab store 2 ,mem_config_req_dest_cid 
+44ff 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_ctrl:
+4500 6800c2e2 fetch 1 ,mem_hid_control_state 
+4501 204044e8 call l2cap_check_channel_state 
+4502 24344507 nbranch l2cap_send_config_req_hid_int ,user 
+4503 7002a952 jam l2cap_hid_control_channel ,mem_send_config_req 
+4504 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4505 600102ab store 2 ,mem_config_req_dest_cid 
+4506 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_int:
+4507 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4508 204044e8 call l2cap_check_channel_state 
+4509 24740000 nrtn user 
+450a 7002a953 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+450b 680142de fetch 2 ,mem_hid_int_remote_cid 
+450c 600102ab store 2 ,mem_config_req_dest_cid 
+
+l2cap_generate_config_req:
+450d 793f8025 set0 mark_ext_patch ,mark 
+450e 44f0401c bpatch patch1c_0 ,mem_patch1c 
+450f 204047d6 call l2cap_get_req_id 
+4510 2040485e call l2cap_malloc_signal_channel 
+4511 18002400 force 0 ,regb 
+4512 2040486a call l2cap_get_signal_tx_payload 
+4513 18007e04 force signal_config_req ,pdata 
+4514 e0a08000 istore 1 ,contw 
+4515 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4516 e0a08000 istore 1 ,contw 
+4517 58000008 setarg 0x0008 
+4518 e0a10000 istore 2 ,contw 
+4519 680102ab fetch 2 ,mem_config_req_dest_cid 
+451a e0a10000 istore 2 ,contw 
+451b 58000000 setarg 0x0000 
+451c e0a10000 istore 2 ,contw 
+451d 18007e01 force 1 ,pdata 
+451e e0a08000 istore 1 ,contw 
+451f 18007e02 force 2 ,pdata 
+4520 e0a08000 istore 1 ,contw 
+4521 680082a9 fetch 1 ,mem_send_config_req 
+4522 c028c526 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+4523 58000030 setarg l2cap_config_mtu_sdp 
+4524 e0a10000 istore 2 ,contw 
+4525 20204528 branch l2cap_generate_config_req_done 
+
+l2cap_generate_config_req_rfcomm:
+4526 580003e3 setarg l2cap_config_mtu_rfcomm 
+4527 e0a10000 istore 2 ,contw 
+
+l2cap_generate_config_req_done:
+4528 d840000c arg 0x0c ,temp 
+4529 60090298 storet 2 ,mem_l2cap_signal_tx_length 
+452a 20404868 call l2cap_get_signal_tx_buff 
+452b 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+452c e0a10000 istore 2 ,contw 
+452d 18007e01 force l2cap_signal_channel ,pdata 
+452e e0a10000 istore 2 ,contw 
+452f 7002a900 jam 0 ,mem_send_config_req 
+
+l2cap_proc_signal_config_req_rtn:
+4530 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp:
+4531 18c08c01 increase 1 ,contr 
+4532 e8c10000 ifetch 2 ,contr 
+4533 1fe22200 copy pdata ,rega 
+4534 1a627e00 copy regc ,pdata 
+4535 9a262600 isub rega ,regc 
+4536 e8c10000 ifetch 2 ,contr 
+4537 1fe22200 copy pdata ,rega 
+4538 793f8025 set0 mark_ext_patch ,mark 
+4539 44f0c01c bpatch patch1c_1 ,mem_patch1c 
+453a 58000050 setarg l2cap_sdp_channel 
+453b 9a267c00 isub rega ,null 
+453c 2022c54a branch l2cap_proc_signal_config_rsp_sdp ,zero 
+453d 58000051 setarg l2cap_rfcomm_channel 
+453e 9a267c00 isub rega ,null 
+453f 2022c54e branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+4540 58000052 setarg l2cap_hid_control_channel 
+4541 9a267c00 isub rega ,null 
+4542 2022c552 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+4543 58000053 setarg l2cap_hid_interrupt_channel 
+4544 9a267c00 isub rega ,null 
+4545 2022c556 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+4546 18c08c02 increase 2 ,contr 
+4547 e8c10000 ifetch 2 ,contr 
+4548 98007c00 iforce null 
+4549 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_sdp:
+454a 6800c2e0 fetch 1 ,mem_sdp_state 
+454b 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+454c 6000c2e0 store 1 ,mem_sdp_state 
+454d 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_rfcomm:
+454e 6800c2e1 fetch 1 ,mem_rfcomm_state 
+454f 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4550 6000c2e1 store 1 ,mem_rfcomm_state 
+4551 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_ctrl:
+4552 6800c2e2 fetch 1 ,mem_hid_control_state 
+4553 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4554 6000c2e2 store 1 ,mem_hid_control_state 
+4555 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_int:
+4556 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4557 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4558 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4559 7009bd06 jam bt_evt_hid_connected ,mem_fifo_temp 
+455a 20207d86 branch ui_ipc_send_event 
+
+l2cap_proc_signal_disconnect_req:
+455b e8c08000 ifetch 1 ,contr 
+455c 1fe20e00 copy pdata ,queue 
+455d e8c10000 ifetch 2 ,contr 
+455e 1fe22200 copy pdata ,rega 
+455f 1a627e00 copy regc ,pdata 
+4560 9a262600 isub rega ,regc 
+4561 e8c10000 ifetch 2 ,contr 
+4562 1fe22200 copy pdata ,rega 
+4563 e8c10000 ifetch 2 ,contr 
+4564 1fe21600 copy pdata ,timeup 
+4565 1a220400 copy rega ,temp 
+4566 20407e70 call save_cont_pointers 
+4567 793f8025 set0 mark_ext_patch ,mark 
+4568 44f1401c bpatch patch1c_2 ,mem_patch1c 
+4569 58000050 setarg l2cap_sdp_channel 
+456a 98467c00 isub temp ,null 
+456b 2022c583 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+456c 58000051 setarg l2cap_rfcomm_channel 
+456d 98467c00 isub temp ,null 
+456e 2022c593 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+456f 58000052 setarg l2cap_hid_control_channel 
+4570 98467c00 isub temp ,null 
+4571 2022c577 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+4572 58000053 setarg l2cap_hid_interrupt_channel 
+4573 98467c00 isub temp ,null 
+4574 2022c57d branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+4575 204045f4 call l2cap_reject_command 
+4576 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+4577 19620400 copy timeup ,temp 
+4578 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4579 98467c00 isub temp ,null 
+457a 2022c589 branch l2cap_disconnect_hid_control_now ,zero 
+457b 204045f4 call l2cap_reject_command 
+457c 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_int:
+457d 19620400 copy timeup ,temp 
+457e 680142de fetch 2 ,mem_hid_int_remote_cid 
+457f 98467c00 isub temp ,null 
+4580 2022c58b branch l2cap_disconnect_hid_interrupt_now ,zero 
+4581 204045f4 call l2cap_reject_command 
+4582 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_sdp:
+4583 19620400 copy timeup ,temp 
+4584 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4585 98467c00 isub temp ,null 
+4586 2022c58f branch l2cap_disconnect_sdp_now ,zero 
+4587 204045f4 call l2cap_reject_command 
+4588 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_hid_control_now:
+4589 2040460b call l2cap_reset_hid_ctrl_state 
+458a 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_hid_interrupt_now:
+458b 20404611 call l2cap_reset_hid_int_state 
+458c 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+458d 203a459b branch l2cap_send_disconnect_rsp_pkt ,blank 
+458e 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_sdp_now:
+458f 20404606 call l2cap_reset_sdp_channel_state 
+4590 680082b1 fetch 1 ,mem_upper_sm_ss 
+4591 243a459b nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+4592 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_proc_signal_disconnect_req_rfcomm:
+4593 19620400 copy timeup ,temp 
+4594 680142da fetch 2 ,mem_rfcomm_remote_cid 
+4595 98467c00 isub temp ,null 
+4596 2022c599 branch l2cap_disconnect_rfcomm_now ,zero 
+4597 204045f4 call l2cap_reject_command 
+4598 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_rfcomm_now:
+4599 20404601 call l2cap_reset_rfcomm_channel_state 
+459a 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_send_disconnect_rsp_pkt:
+459b 20407e75 call load_cont_pointers 
+459c 58000007 setarg signal_disconnect_rsp 
+459d e0a08000 istore 1 ,contw 
+459e 18e27e00 copy queue ,pdata 
+459f e0a08000 istore 1 ,contw 
+45a0 58000004 setarg 0x0004 
+45a1 e0a10000 istore 2 ,contw 
+45a2 1a227e00 copy rega ,pdata 
+45a3 e0a10000 istore 2 ,contw 
+45a4 19627e00 copy timeup ,pdata 
+45a5 e0a10000 istore 2 ,contw 
+45a6 18007e08 force 8 ,pdata 
+45a7 202045aa branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_err_rtn:
+45a8 20407e75 call load_cont_pointers 
+45a9 202045aa branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_rtn:
+45aa 9a40a400 iadd regb ,regb 
+45ab 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp:
+45ac e8c08000 ifetch 1 ,contr 
+45ad 1fe20e00 copy pdata ,queue 
+45ae e8c10000 ifetch 2 ,contr 
+45af 1fe22200 copy pdata ,rega 
+45b0 1a627e00 copy regc ,pdata 
+45b1 9a262600 isub rega ,regc 
+45b2 e8c10000 ifetch 2 ,contr 
+45b3 1fe21600 copy pdata ,timeup 
+45b4 e8c10000 ifetch 2 ,contr 
+45b5 1fe20400 copy pdata ,temp 
+45b6 20407e70 call save_cont_pointers 
+45b7 793f8025 set0 mark_ext_patch ,mark 
+45b8 44f1c01c bpatch patch1c_3 ,mem_patch1c 
+45b9 58000050 setarg l2cap_sdp_channel 
+45ba 98467c00 isub temp ,null 
+45bb 2022c5c7 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+45bc 58000051 setarg l2cap_rfcomm_channel 
+45bd 98467c00 isub temp ,null 
+45be 2022c5cd branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+45bf 58000052 setarg l2cap_hid_control_channel 
+45c0 98467c00 isub temp ,null 
+45c1 2022c5d3 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+45c2 58000053 setarg l2cap_hid_interrupt_channel 
+45c3 98467c00 isub temp ,null 
+45c4 2022c5d9 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+45c5 204045f4 call l2cap_reject_command 
+45c6 202045e1 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+
+l2cap_proc_signal_disconnect_rsp_sdp:
+45c7 18422200 copy temp ,rega 
+45c8 19620400 copy timeup ,temp 
+45c9 680142d8 fetch 2 ,mem_sdp_remote_cid 
+45ca 98467c00 isub temp ,null 
+45cb 2042c606 call l2cap_reset_sdp_channel_state ,zero 
+45cc 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+45cd 18422200 copy temp ,rega 
+45ce 19620400 copy timeup ,temp 
+45cf 680142da fetch 2 ,mem_rfcomm_remote_cid 
+45d0 98467c00 isub temp ,null 
+45d1 2042c601 call l2cap_reset_rfcomm_channel_state ,zero 
+45d2 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+45d3 18422200 copy temp ,rega 
+45d4 19620400 copy timeup ,temp 
+45d5 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+45d6 98467c00 isub temp ,null 
+45d7 2042c60b call l2cap_reset_hid_ctrl_state ,zero 
+45d8 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_int:
+45d9 18422200 copy temp ,rega 
+45da 19620400 copy timeup ,temp 
+45db 680142de fetch 2 ,mem_hid_int_remote_cid 
+45dc 98467c00 isub temp ,null 
+45dd 2042c611 call l2cap_reset_hid_int_state ,zero 
+45de 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rtn:
+45df 20407e75 call load_cont_pointers 
+45e0 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+45e1 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_req:
+45e2 e8c08000 ifetch 1 ,contr 
+45e3 1fe20e00 copy pdata ,queue 
+45e4 e8c10000 ifetch 2 ,contr 
+45e5 1fe22200 copy pdata ,rega 
+45e6 98c08c00 iadd contr ,contr 
+45e7 58000009 setarg 9 
+45e8 e0a08000 istore 1 ,contw 
+45e9 18e27e00 copy queue ,pdata 
+45ea e0a08000 istore 1 ,contw 
+45eb 18007e00 force 0x0000 ,pdata 
+45ec e0a10000 istore 2 ,contw 
+45ed 18007e04 force 4 ,pdata 
+45ee 9a40a400 iadd regb ,regb 
+45ef 1a627e00 copy regc ,pdata 
+45f0 9a262600 isub rega ,regc 
+45f1 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_rsp:
+45f2 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_info_rsp:
+45f3 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_reject_command:
+45f4 18002400 force 0 ,regb 
+45f5 2040486a call l2cap_get_signal_tx_payload 
+45f6 58000001 setarg signal_cmd_reject 
+45f7 e0a08000 istore 1 ,contw 
+45f8 18e27e00 copy queue ,pdata 
+45f9 e0a08000 istore 1 ,contw 
+45fa 58000002 setarg 2 
+45fb e0a10000 istore 2 ,contw 
+45fc 58000000 setarg cmd_not_understood 
+45fd e0a10000 istore 2 ,contw 
+45fe 1a40a406 increase 6 ,regb 
+45ff da600004 arg 4 ,regc 
+4600 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_reset_rfcomm_channel_state:
+4601 58000000 setarg 0 
+4602 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+4603 600142da store 2 ,mem_rfcomm_remote_cid 
+4604 7042e100 jam 0 ,mem_rfcomm_state 
+4605 20600000 rtn 
+
+l2cap_reset_sdp_channel_state:
+4606 58000000 setarg 0 
+4607 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4608 600142d8 store 2 ,mem_sdp_remote_cid 
+4609 7042e000 jam 0 ,mem_sdp_state 
+460a 20600000 rtn 
+
+l2cap_reset_hid_ctrl_state:
+460b 58000000 setarg 0 
+460c 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+460d 7042e200 jam 0 ,mem_hid_control_state 
+460e 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+460f c0004617 beq 0 ,l2cap_reset_hid_disconnected 
+4610 20600000 rtn 
+
+l2cap_reset_hid_int_state:
+4611 58000000 setarg 0 
+4612 600142de store 2 ,mem_hid_int_remote_cid 
+4613 7042e300 jam 0 ,mem_hid_interrupt_state 
+4614 6800c2e2 fetch 1 ,mem_hid_control_state 
+4615 c0004617 beq 0 ,l2cap_reset_hid_disconnected 
+4616 20600000 rtn 
+
+l2cap_reset_hid_disconnected:
+4617 7009bd07 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+4618 20207d86 branch ui_ipc_send_event 
+
+l2cap_disconnect_interrupt_req:
+4619 680082a8 fetch 1 ,mem_control_tasks 
+461a 793ffe00 set0 l2cap_disconnect_interrupt ,pdata 
+461b 600082a8 store 1 ,mem_control_tasks 
+461c 680142de fetch 2 ,mem_hid_int_remote_cid 
+461d 207a0000 rtn blank 
+461e 2040485e call l2cap_malloc_signal_channel 
+461f 680142de fetch 2 ,mem_hid_int_remote_cid 
+4620 1fe22200 copy pdata ,rega 
+4621 18002453 force l2cap_hid_interrupt_channel ,regb 
+4622 2020462c branch l2cap_generate_disconnect_req 
+
+l2cap_disconnect_control_req:
+4623 680082a8 fetch 1 ,mem_control_tasks 
+4624 793ffe07 set0 l2cap_disconnect_control ,pdata 
+4625 600082a8 store 1 ,mem_control_tasks 
+4626 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4627 207a0000 rtn blank 
+4628 2040485e call l2cap_malloc_signal_channel 
+4629 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+462a 1fe22200 copy pdata ,rega 
+462b 18002452 force l2cap_hid_control_channel ,regb 
+
+l2cap_generate_disconnect_req:
+462c 204047d6 call l2cap_get_req_id 
+462d 2040486a call l2cap_get_signal_tx_payload 
+462e 18007e06 force signal_disconnect_req ,pdata 
+462f e0a08000 istore 1 ,contw 
+4630 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4631 e0a08000 istore 1 ,contw 
+4632 58000004 setarg 0x0004 
+4633 e0a10000 istore 2 ,contw 
+4634 1a227e00 copy rega ,pdata 
+4635 e0a10000 istore 2 ,contw 
+4636 1a427e00 copy regb ,pdata 
+4637 e0a10000 istore 2 ,contw 
+4638 18000408 force 0x08 ,temp 
+4639 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_connect_req:
+463a 793f8025 set0 mark_ext_patch ,mark 
+463b 44f2401c bpatch patch1c_4 ,mem_patch1c 
+463c 204047d6 call l2cap_get_req_id 
+463d 2040486a call l2cap_get_signal_tx_payload 
+463e 58000002 setarg signal_connect_req 
+463f e0a08000 istore 1 ,contw 
+4640 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4641 e0a08000 istore 1 ,contw 
+4642 58000004 setarg 0x0004 
+4643 e0a10000 istore 2 ,contw 
+4644 18427e00 copy temp ,pdata 
+4645 e0a10000 istore 2 ,contw 
+4646 19627e00 copy timeup ,pdata 
+4647 e0a10000 istore 2 ,contw 
+4648 d8400008 arg 8 ,temp 
+4649 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_config_req:
+464a 793f8025 set0 mark_ext_patch ,mark 
+464b 44f2c01c bpatch patch1c_5 ,mem_patch1c 
+464c 204047d6 call l2cap_get_req_id 
+464d 2040486a call l2cap_get_signal_tx_payload 
+464e 58000004 setarg signal_config_req 
+464f e0a08000 istore 1 ,contw 
+4650 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4651 e0a08000 istore 1 ,contw 
+4652 58000008 setarg 0x0008 
+4653 e0a10000 istore 2 ,contw 
+4654 18427e00 copy temp ,pdata 
+4655 e0a10000 istore 2 ,contw 
+4656 58000000 setarg 0x0000 
+4657 e0a10000 istore 2 ,contw 
+4658 58000001 setarg 0x01 
+4659 e0a08000 istore 1 ,contw 
+465a 58000002 setarg 0x02 
+465b e0a08000 istore 1 ,contw 
+465c 580003e3 setarg l2cap_config_mtu_rfcomm 
+465d e0a10000 istore 2 ,contw 
+465e d840000c arg 0xc ,temp 
+465f 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_disconn_req:
+4660 793f8025 set0 mark_ext_patch ,mark 
+4661 44f3401c bpatch patch1c_6 ,mem_patch1c 
+4662 204047d6 call l2cap_get_req_id 
+4663 2040486a call l2cap_get_signal_tx_payload 
+4664 58000006 setarg signal_disconnect_req 
+4665 e0a08000 istore 1 ,contw 
+4666 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4667 1fe0fe01 increase 1 ,pdata 
+4668 18a22200 copy contw ,rega 
+4669 6000c2e5 store 1 ,mem_ml2cap_comm_id 
+466a 1a220a00 copy rega ,contw 
+466b e0a08000 istore 1 ,contw 
+466c 58000004 setarg 0x0004 
+466d e0a10000 istore 2 ,contw 
+466e 18427e00 copy temp ,pdata 
+466f e0a10000 istore 2 ,contw 
+4670 19627e00 copy timeup ,pdata 
+4671 e0a10000 istore 2 ,contw 
+4672 d8400008 arg 0x8 ,temp 
+
+ml2cap_send_signal:
+4673 60090298 storet 2 ,mem_l2cap_signal_tx_length 
+4674 18427e00 copy temp ,pdata 
+4675 203a4803 branch l2cap_malloc_discard ,blank 
+4676 20404868 call l2cap_get_signal_tx_buff 
+4677 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+4678 e0a10000 istore 2 ,contw 
+4679 18007e01 force l2cap_signal_channel ,pdata 
+467a e0a10000 istore 2 ,contw 
+467b 20600000 rtn 
+
+msdp_send_req_done:
+467c 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+467d 203a3b31 branch assert ,blank 
+467e 20404876 call l2cap_get_sdp_tx_buff 
+467f 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+4680 e0a10000 istore 2 ,contw 
+4681 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4682 e0a10000 istore 2 ,contw 
+4683 20600000 rtn 
+
+ml2cap_rx_multiplexing:
+4684 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4685 203a4383 branch l2cap_rx_reset_state ,blank 
+4686 793f8025 set0 mark_ext_patch ,mark 
+4687 44f3c01c bpatch patch1c_7 ,mem_patch1c 
+4688 68008291 fetch 1 ,mem_l2cap_rx_cid 
+4689 c000c68f beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+468a c028436e beq l2cap_sdp_channel ,ml2cap_call_proc_sdp 
+468b c028c37b beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+468c c0294379 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+468d c029c379 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+468e 20204383 branch l2cap_rx_reset_state 
+
+ml2cap_call_proc_signal:
+468f 793f8025 set0 mark_ext_patch ,mark 
+4690 44f4401d bpatch patch1d_0 ,mem_patch1d 
+4691 2040485e call l2cap_malloc_signal_channel 
+4692 18002400 force 0 ,regb 
+4693 2040486a call l2cap_get_signal_tx_payload 
+4694 1fe20a00 copy pdata ,contw 
+4695 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4696 1fe22600 copy pdata ,regc 
+4697 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+4698 98000c00 iforce contr 
+
+ml2cap_proc_one_comm_loop:
+4699 2040469f call ml2cap_proc_one_comm 
+469a 1a60a7fc increase -4 ,regc 
+469b 2422c699 nbranch ml2cap_proc_one_comm_loop ,zero 
+469c 1a420400 copy regb ,temp 
+469d 20404673 call ml2cap_send_signal 
+469e 20204383 branch l2cap_rx_reset_state 
+
+ml2cap_proc_one_comm:
+469f e8c08000 ifetch 1 ,contr 
+46a0 c00146aa beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+46a1 c000c6ad beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+46a2 c001c6b7 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+46a3 c002c6f4 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+46a4 c0024727 beq signal_config_req ,ml2cap_proc_signal_config_req 
+46a5 c003c7ae beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+46a6 c003477b beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+46a7 c00445e2 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+46a8 c00543c3 beq signal_info_req ,ml2cap_proc_signal_info_req 
+46a9 202047ca branch ml2cap_proc_send_reject 
+
+ml2cap_proc_signal_connect_req:
+46aa 20407e70 call save_cont_pointers 
+46ab 20407e75 call load_cont_pointers 
+46ac 202043da branch l2cap_proc_signal_connect_req 
+
+ml2cap_proc_signal_cmd_reject:
+46ad e8c08000 ifetch 1 ,contr 
+46ae 1fe20e00 copy pdata ,queue 
+46af e8c10000 ifetch 2 ,contr 
+46b0 1fe22200 copy pdata ,rega 
+46b1 1a627e00 copy regc ,pdata 
+46b2 9a262600 isub rega ,regc 
+
+mvptr:
+46b3 e8c08000 ifetch 1 ,contr 
+46b4 1a20a3ff increase -1 ,rega 
+46b5 2422c6b3 nbranch mvptr ,zero 
+46b6 20600000 rtn 
+
+ml2cap_proc_signal_connect_rsp:
+46b7 e8c08000 ifetch 1 ,contr 
+46b8 1fe20e00 copy pdata ,queue 
+46b9 e8c10000 ifetch 2 ,contr 
+46ba 1fe22200 copy pdata ,rega 
+46bb e8c10000 ifetch 2 ,contr 
+46bc 1fe21600 copy pdata ,timeup 
+46bd e8c10000 ifetch 2 ,contr 
+46be 1fe20400 copy pdata ,temp 
+46bf e8c10000 ifetch 2 ,contr 
+46c0 1fe67c00 sub pdata ,0 ,null 
+46c1 2022c6c9 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+46c2 c00146c5 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+46c3 c00246c5 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+46c4 202046c7 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+
+ml2cap_proc_signal_connect_refused_result:
+46c5 7009bd16 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+46c6 20407d86 call ui_ipc_send_event 
+
+ml2cap_proc_signal_connect_rsp_mnosucc:
+46c7 e8c10000 ifetch 2 ,contr 
+46c8 202046f1 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sucessful:
+46c9 20407e70 call save_cont_pointers 
+46ca 793f8025 set0 mark_ext_patch ,mark 
+46cb 44f4c01d bpatch patch1d_1 ,mem_patch1d 
+46cc 58000050 setarg l2cap_sdp_channel 
+46cd 98467c00 isub temp ,null 
+46ce 2022c6d9 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+46cf 58000051 setarg l2cap_rfcomm_channel 
+46d0 98467c00 isub temp ,null 
+46d1 2022c6df branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+46d2 58000053 setarg l2cap_hid_interrupt_channel 
+46d3 98467c00 isub temp ,null 
+46d4 2022c6eb branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+46d5 58000052 setarg l2cap_hid_control_channel 
+46d6 98467c00 isub temp ,null 
+46d7 2022c6e5 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+46d8 202046f1 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sdp:
+46d9 19627e00 copy timeup ,pdata 
+46da 600142d8 store 2 ,mem_sdp_remote_cid 
+46db 6800c2e0 fetch 1 ,mem_sdp_state 
+46dc 79207e01 set1 l2cap_channel_state_conn_res 
+46dd 6000c2e0 store 1 ,mem_sdp_state 
+46de 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_rfcomm:
+46df 19627e00 copy timeup ,pdata 
+46e0 600142da store 2 ,mem_rfcomm_remote_cid 
+46e1 6800c2e1 fetch 1 ,mem_rfcomm_state 
+46e2 79207e01 set1 l2cap_channel_state_conn_res 
+46e3 6000c2e1 store 1 ,mem_rfcomm_state 
+46e4 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+46e5 19627e00 copy timeup ,pdata 
+46e6 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+46e7 6800c2e2 fetch 1 ,mem_hid_control_state 
+46e8 79207e01 set1 l2cap_channel_state_conn_res 
+46e9 6000c2e2 store 1 ,mem_hid_control_state 
+46ea 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_int:
+46eb 19627e00 copy timeup ,pdata 
+46ec 600142de store 2 ,mem_hid_int_remote_cid 
+46ed 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+46ee 79207e01 set1 l2cap_channel_state_conn_res 
+46ef 6000c2e3 store 1 ,mem_hid_interrupt_state 
+
+mnosucc1:
+46f0 20407e75 call load_cont_pointers 
+
+mnosucc:
+46f1 1a627e00 copy regc ,pdata 
+46f2 9a262600 isub rega ,regc 
+46f3 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp:
+46f4 e8c08000 ifetch 1 ,contr 
+46f5 1fe20e00 copy pdata ,queue 
+46f6 e8c10000 ifetch 2 ,contr 
+46f7 1fe22200 copy pdata ,rega 
+46f8 1a627e00 copy regc ,pdata 
+46f9 9a262600 isub rega ,regc 
+46fa e8c10000 ifetch 2 ,contr 
+46fb 1fe21600 copy pdata ,timeup 
+46fc e8c10000 ifetch 2 ,contr 
+46fd e8c10000 ifetch 2 ,contr 
+46fe 243a4721 nbranch mcrsdone1 ,blank 
+46ff 20407e70 call save_cont_pointers 
+4700 19620400 copy timeup ,temp 
+4701 793f8025 set0 mark_ext_patch ,mark 
+4702 44f5401d bpatch patch1d_2 ,mem_patch1d 
+4703 58000050 setarg l2cap_sdp_channel 
+4704 98467c00 isub temp ,null 
+4705 2022c70f branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+4706 58000051 setarg l2cap_rfcomm_channel 
+4707 98467c00 isub temp ,null 
+4708 2022c713 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+4709 58000052 setarg l2cap_hid_control_channel 
+470a 98467c00 isub temp ,null 
+470b 2022c717 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+470c 58000053 setarg l2cap_hid_interrupt_channel 
+470d 98467c00 isub temp ,null 
+470e 2022c71b branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+
+ml2cap_proc_signal_config_rsp_sdp:
+470f 6800c2e0 fetch 1 ,mem_sdp_state 
+4710 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4711 6000c2e0 store 1 ,mem_sdp_state 
+4712 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_rfcomm:
+4713 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4714 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4715 6000c2e1 store 1 ,mem_rfcomm_state 
+4716 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+4717 6800c2e2 fetch 1 ,mem_hid_control_state 
+4718 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4719 6000c2e2 store 1 ,mem_hid_control_state 
+471a 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_int:
+471b 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+471c 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+471d 6000c2e3 store 1 ,mem_hid_interrupt_state 
+471e 7009bd06 jam bt_evt_hid_connected ,mem_fifo_temp 
+471f 20207d86 branch ui_ipc_send_event 
+
+mcfrsdone:
+4720 20407e75 call load_cont_pointers 
+
+mcrsdone1:
+4721 1a20a3fa increase -6 ,rega 
+
+mloop2:
+4722 2022c726 branch mcrsdone ,zero 
+4723 18c08c01 increase 1 ,contr 
+4724 1a20a3ff increase -1 ,rega 
+4725 20204722 branch mloop2 
+
+mcrsdone:
+4726 20600000 rtn 
+
+ml2cap_proc_signal_config_req:
+4727 e8c08000 ifetch 1 ,contr 
+4728 1fe20e00 copy pdata ,queue 
+4729 e8c10000 ifetch 2 ,contr 
+472a 1fe22200 copy pdata ,rega 
+472b 1a627e00 copy regc ,pdata 
+472c 9a262600 isub rega ,regc 
+472d e8c10000 ifetch 2 ,contr 
+472e 18c08c02 increase 2 ,contr 
+472f 1fe20400 copy pdata ,temp 
+4730 58000005 setarg signal_config_rsp 
+4731 e0a08000 istore 1 ,contw 
+4732 18e27e00 copy queue ,pdata 
+4733 e0a08000 istore 1 ,contw 
+4734 1a20a202 increase 2 ,rega 
+4735 1a227e00 copy rega ,pdata 
+4736 e0a10000 istore 2 ,contw 
+4737 20407e70 call save_cont_pointers 
+4738 793f8025 set0 mark_ext_patch ,mark 
+4739 44f5c01d bpatch patch1d_3 ,mem_patch1d 
+473a 58000050 setarg l2cap_sdp_channel 
+473b 98467c00 isub temp ,null 
+473c 2022c747 branch ml2cap_proc_signal_config_req_sdp ,zero 
+473d 58000051 setarg l2cap_rfcomm_channel 
+473e 98467c00 isub temp ,null 
+473f 2022c758 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+4740 58000052 setarg l2cap_hid_control_channel 
+4741 98467c00 isub temp ,null 
+4742 2022c75e branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+4743 58000053 setarg l2cap_hid_interrupt_channel 
+4744 98467c00 isub temp ,null 
+4745 2022c764 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+4746 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_sdp:
+4747 6800c2e0 fetch 1 ,mem_sdp_state 
+4748 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4749 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+474a 6000c2e0 store 1 ,mem_sdp_state 
+474b c2814755 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+474c 680882a8 fetcht 1 ,mem_control_tasks 
+474d 79200406 set1 l2cap_init_config_req ,temp 
+474e 600882a8 storet 1 ,mem_control_tasks 
+474f 18e27e00 copy queue ,pdata 
+4750 1fe0fe01 increase 1 ,pdata 
+4751 600082aa store 1 ,mem_config_identifier 
+4752 6800c2e0 fetch 1 ,mem_sdp_state 
+4753 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+4754 6000c2e0 store 1 ,mem_sdp_state 
+
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+4755 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4756 600102ab store 2 ,mem_config_req_dest_cid 
+4757 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_rfcomm:
+4758 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4759 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+475a 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+475b 6000c2e1 store 1 ,mem_rfcomm_state 
+475c 680142da fetch 2 ,mem_rfcomm_remote_cid 
+475d 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_ctrl:
+475e 6800c2e2 fetch 1 ,mem_hid_control_state 
+475f 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4760 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4761 6000c2e2 store 1 ,mem_hid_control_state 
+4762 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4763 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_int:
+4764 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4765 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4766 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4767 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4768 680142de fetch 2 ,mem_hid_int_remote_cid 
+
+mcfgrq_done:
+4769 1fe21600 copy pdata ,timeup 
+476a 20407e75 call load_cont_pointers 
+476b 19627e00 copy timeup ,pdata 
+476c e0a10000 istore 2 ,contw 
+476d 18007e00 force 0x0000 ,pdata 
+476e e0a10000 istore 2 ,contw 
+476f 18007e00 force 0x0000 ,pdata 
+4770 e0a10000 istore 2 ,contw 
+4771 18007e0a force 10 ,pdata 
+4772 9a40a400 iadd regb ,regb 
+4773 1a20a3fa increase -6 ,rega 
+
+mloop1:
+4774 2022c77a branch mcrqdone ,zero 
+4775 e8c08000 ifetch 1 ,contr 
+4776 e0a08000 istore 1 ,contw 
+4777 1a40a401 increase 1 ,regb 
+4778 1a20a3ff increase -1 ,rega 
+4779 20204774 branch mloop1 
+
+mcrqdone:
+477a 20600000 rtn 
+
+ml2cap_proc_signal_disconn_req:
+477b e8c08000 ifetch 1 ,contr 
+477c 1fe20e00 copy pdata ,queue 
+477d e8c10000 ifetch 2 ,contr 
+477e 1fe22200 copy pdata ,rega 
+477f 1a627e00 copy regc ,pdata 
+4780 9a262600 isub rega ,regc 
+4781 e8c10000 ifetch 2 ,contr 
+4782 1fe22200 copy pdata ,rega 
+4783 e8c10000 ifetch 2 ,contr 
+4784 1fe21600 copy pdata ,timeup 
+4785 20407e70 call save_cont_pointers 
+4786 793f8025 set0 mark_ext_patch ,mark 
+4787 44f6401d bpatch patch1d_4 ,mem_patch1d 
+4788 58000050 setarg l2cap_sdp_channel 
+4789 1a220400 copy rega ,temp 
+478a 98467c00 isub temp ,null 
+478b 2022c795 branch ml2cap_proc_signal_disconn_sdp ,zero 
+478c 58000052 setarg l2cap_hid_control_channel 
+478d 1a220400 copy rega ,temp 
+478e 98467c00 isub temp ,null 
+478f 2022c79a branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+4790 58000053 setarg l2cap_hid_interrupt_channel 
+4791 1a220400 copy rega ,temp 
+4792 98467c00 isub temp ,null 
+4793 2022c79c branch ml2cap_proc_signal_disconn_hid_int ,zero 
+4794 2020479e branch mclsrfc 
+
+ml2cap_proc_signal_disconn_sdp:
+4795 58000000 setarg 0x0000 
+4796 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4797 600142d8 store 2 ,mem_sdp_remote_cid 
+4798 6000c2e0 store 1 ,mem_sdp_state 
+4799 202047a0 branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_ctrl:
+479a 2040460b call l2cap_reset_hid_ctrl_state 
+479b 202047a0 branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_int:
+479c 20404611 call l2cap_reset_hid_int_state 
+479d 202047a0 branch mclssdp 
+
+mclsrfc:
+479e 58000000 setarg 0x0000 
+479f 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+
+mclssdp:
+47a0 20407e75 call load_cont_pointers 
+47a1 58000007 setarg signal_disconnect_rsp 
+47a2 e0a08000 istore 1 ,contw 
+47a3 18e27e00 copy queue ,pdata 
+47a4 e0a08000 istore 1 ,contw 
+47a5 58000004 setarg 0x0004 
+47a6 e0a10000 istore 2 ,contw 
+47a7 1a227e00 copy rega ,pdata 
+47a8 e0a10000 istore 2 ,contw 
+47a9 19627e00 copy timeup ,pdata 
+47aa e0a10000 istore 2 ,contw 
+47ab 18007e08 force 8 ,pdata 
+47ac 9a40a400 iadd regb ,regb 
+47ad 20600000 rtn 
+
+ml2cap_proc_signal_disconn_rsp:
+47ae e8c08000 ifetch 1 ,contr 
+47af 1fe20e00 copy pdata ,queue 
+47b0 e8c10000 ifetch 2 ,contr 
+47b1 1fe22200 copy pdata ,rega 
+47b2 e8c10000 ifetch 2 ,contr 
+47b3 1fe21600 copy pdata ,timeup 
+47b4 e8c10000 ifetch 2 ,contr 
+47b5 1fe20400 copy pdata ,temp 
+47b6 20407e70 call save_cont_pointers 
+47b7 793f8025 set0 mark_ext_patch ,mark 
+47b8 44f6c01d bpatch patch1d_5 ,mem_patch1d 
+47b9 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+47ba a8e1fe00 icompare 0xff ,queue 
+47bb 2420c7c6 nbranch mdisdone ,true 
+47bc 58000050 setarg l2cap_sdp_channel 
+47bd 98467c00 isub temp ,null 
+47be 2022c7c3 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+47bf 58000051 setarg l2cap_rfcomm_channel 
+47c0 98467c00 isub temp ,null 
+47c1 2022c7c6 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+47c2 202047c6 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_sdp:
+47c3 7042d800 jam 0 ,mem_sdp_remote_cid 
+47c4 7042e000 jam 0 ,mem_sdp_state 
+47c5 202047c6 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+
+mdisdone:
+47c6 20407e75 call load_cont_pointers 
+47c7 1a627e00 copy regc ,pdata 
+47c8 9a262600 isub rega ,regc 
+47c9 20600000 rtn 
+
+ml2cap_proc_send_reject:
+47ca 58000001 setarg signal_cmd_reject 
+47cb e0a08000 istore 1 ,contw 
+47cc e8c08000 ifetch 1 ,contr 
+47cd e0a08000 istore 1 ,contw 
+47ce 58000002 setarg 0x0002 
+47cf e0a10000 istore 2 ,contw 
+47d0 58000000 setarg 0x0000 
+47d1 e0a10000 istore 2 ,contw 
+47d2 58000006 setarg 0x0006 
+47d3 9a40a400 iadd regb ,regb 
+47d4 18002604 force 4 ,regc 
+47d5 20600000 rtn 
+
+l2cap_get_req_id:
+47d6 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+47d7 1fe0fe01 increase 1 ,pdata 
+47d8 c08047da bne 0 ,l2cap_get_req_id_ok 
+47d9 1fe0fe01 increase 1 ,pdata 
+
+l2cap_get_req_id_ok:
+47da 6000c2e5 store 1 ,mem_ml2cap_comm_id 
+47db 20600000 rtn 
+
+l2cap_malloc:
+47dc 793f8025 set0 mark_ext_patch ,mark 
+47dd 44f7401d bpatch patch1d_6 ,mem_patch1d 
+47de da400000 arg 0 ,regb 
+47df 2040480e call l2cap_malloc_is_fifo_full 
+47e0 243a3b31 nbranch assert ,blank 
+47e1 20404821 call l2cap_malloc_get_full_map 
+47e2 da401800 arg mem_tx_buff0 ,regb 
+47e3 d8e00000 arg 0 ,queue 
+
+l2cap_malloc_loop:
+47e4 6808c2e6 fetcht 1 ,mem_used_map 
+47e5 a84fffff qisolate1 temp 
+47e6 2020c7ec branch l2cap_malloc_next ,true 
+47e7 20404845 call l2cap_malloc_enough 
+47e8 19667c00 sub timeup ,0 ,null 
+47e9 202147ec branch l2cap_malloc_next ,positive 
+47ea 2040482c call l2cap_malloc_into_fifo 
+47eb 202047f2 branch l2cap_malloc_rtn 
+
+l2cap_malloc_next:
+47ec 1a40a480 increase 128 ,regb 
+47ed 18e08e01 increase 1 ,queue 
+47ee 58000008 setarg 8 
+47ef 98e67c00 isub queue ,null 
+47f0 202147e4 branch l2cap_malloc_loop ,positive 
+47f1 da400000 arg 0 ,regb 
+
+l2cap_malloc_rtn:
+47f2 1a427e00 copy regb ,pdata 
+47f3 203a3b31 branch assert ,blank 
+47f4 20600000 rtn 
+
+l2cap_malloc_fifo_out:
+47f5 793f8025 set0 mark_ext_patch ,mark 
+47f6 44f7c01d bpatch patch1d_7 ,mem_patch1d 
+47f7 2040481a call l2cap_malloc_fifo_get_first_ptr 
+47f8 18c08c01 increase 1 ,contr 
+47f9 e8c10000 ifetch 2 ,contr 
+47fa 20600000 rtn 
+
+l2cap_malloc_free:
+47fb 793f8025 set0 mark_ext_patch ,mark 
+47fc 44f8401e bpatch patch1e_0 ,mem_patch1e 
+47fd 2040481a call l2cap_malloc_fifo_get_first_ptr 
+47fe 18c20a00 copy contr ,contw 
+47ff 18c20400 copy contr ,temp 
+4800 58000000 setarg 0 
+4801 e0a18000 istore 3 ,contw 
+4802 20600000 rtn 
+
+l2cap_malloc_discard:
+4803 793f8025 set0 mark_ext_patch ,mark 
+4804 44f8c01e bpatch patch1e_1 ,mem_patch1e 
+4805 20404816 call l2cap_malloc_is_fifo_empty 
+4806 203a3b31 branch assert ,blank 
+4807 6801c2ed fetch 3 ,mem_tx_fifo2 
+4808 6001c2f0 store 3 ,mem_tx_fifo3 
+4809 6801c2ea fetch 3 ,mem_tx_fifo1 
+480a 6001c2ed store 3 ,mem_tx_fifo2 
+480b 6801c2e7 fetch 3 ,mem_tx_fifo0 
+480c 6001c2ea store 3 ,mem_tx_fifo1 
+480d 20600000 rtn 
+
+l2cap_malloc_is_fifo_full:
+480e 793f8025 set0 mark_ext_patch ,mark 
+480f 44f9401e bpatch patch1e_2 ,mem_patch1e 
+4810 6801c2e7 fetch 3 ,mem_tx_fifo0 
+4811 20600000 rtn 
+
+l2cap_malloc_is_fifo_nearly_full:
+4812 793f8025 set0 mark_ext_patch ,mark 
+4813 44f9c01e bpatch patch1e_3 ,mem_patch1e 
+4814 6801c2ea fetch 3 ,mem_tx_fifo1 
+4815 20600000 rtn 
+
+l2cap_malloc_is_fifo_empty:
+4816 793f8025 set0 mark_ext_patch ,mark 
+4817 44fa401e bpatch patch1e_4 ,mem_patch1e 
+4818 6801c2f0 fetch 3 ,mem_tx_fifo3 
+4819 20600000 rtn 
+
+l2cap_malloc_fifo_get_first_ptr:
+481a 20404816 call l2cap_malloc_is_fifo_empty 
+481b 203a3b31 branch assert ,blank 
+481c d8c042e7 arg mem_tx_fifo0 ,contr 
+
+l2cap_malloc_free_loop:
+481d e8c18000 ifetch 3 ,contr 
+481e 203a481d branch l2cap_malloc_free_loop ,blank 
+481f 18c08dfd increase -3 ,contr 
+4820 20600000 rtn 
+
+l2cap_malloc_get_full_map:
+4821 793f8025 set0 mark_ext_patch ,mark 
+4822 44fac01e bpatch patch1e_5 ,mem_patch1e 
+4823 df200004 arg 4 ,loopcnt 
+4824 d8c042e7 arg mem_tx_fifo0_map ,contr 
+4825 d8400000 arg 0 ,temp 
+
+l2cap_malloc_get_full_map_loop:
+4826 e8c18000 ifetch 3 ,contr 
+4827 1fe17eff and pdata ,0xff ,pdata 
+4828 98418400 ior temp ,temp 
+4829 c2004826 loop l2cap_malloc_get_full_map_loop 
+482a 6008c2e6 storet 1 ,mem_used_map 
+482b 20600000 rtn 
+
+l2cap_malloc_into_fifo:
+482c 793f8025 set0 mark_ext_patch ,mark 
+482d 44fb401e bpatch patch1e_6 ,mem_patch1e 
+482e 2040480e call l2cap_malloc_is_fifo_full 
+482f 243a3b31 nbranch assert ,blank 
+4830 20404816 call l2cap_malloc_is_fifo_empty 
+4831 203a483a branch l2cap_malloc_into_fifo_no_push ,blank 
+4832 6801c2ea fetch 3 ,mem_tx_fifo1 
+4833 6001c2e7 store 3 ,mem_tx_fifo0 
+4834 e8c18000 ifetch 3 ,contr 
+4835 e0a18000 istore 3 ,contw 
+4836 e8c18000 ifetch 3 ,contr 
+4837 e0a18000 istore 3 ,contw 
+4838 58000000 setarg 0 
+4839 e0a18000 istore 3 ,contw 
+
+l2cap_malloc_into_fifo_no_push:
+483a d8400000 arg 0 ,temp 
+483b 19627e00 copy timeup ,pdata 
+483c 98e0fe00 iadd queue ,pdata 
+
+l2cap_malloc_into_fifo_loop:
+483d f9200400 qset1 temp 
+483e 18e08e01 increase 1 ,queue 
+483f 98e67c00 isub queue ,null 
+4840 2422c83d nbranch l2cap_malloc_into_fifo_loop ,zero 
+4841 1a4d7e00 lshift8 regb ,pdata 
+4842 9841fe00 ior temp ,pdata 
+4843 6001c2f0 store 3 ,mem_tx_fifo3 
+4844 20600000 rtn 
+
+l2cap_malloc_enough:
+4845 793f8025 set0 mark_ext_patch ,mark 
+4846 44fbc01e bpatch patch1e_7 ,mem_patch1e 
+4847 20404821 call l2cap_malloc_get_full_map 
+4848 18e22600 copy queue ,regc 
+4849 d8400000 arg 0 ,temp 
+484a d9600000 arg 0 ,timeup 
+
+l2cap_malloc_enough_loop:
+484b 18e27e00 copy queue ,pdata 
+484c c0044856 beq 8 ,l2cap_malloc_enough_end 
+484d 6800c2e6 fetch 1 ,mem_used_map 
+484e afefffff qisolate1 pdata 
+484f 2020c856 branch l2cap_malloc_enough_end ,true 
+4850 18408480 increase 128 ,temp 
+4851 18e08e01 increase 1 ,queue 
+4852 1a227e00 copy rega ,pdata 
+4853 98467c00 isub temp ,null 
+4854 2022c856 branch l2cap_malloc_enough_end ,zero 
+4855 2021484b branch l2cap_malloc_enough_loop ,positive 
+
+l2cap_malloc_enough_end:
+4856 18427e00 copy temp ,pdata 
+4857 9a267c00 isub rega ,null 
+4858 2421485c nbranch l2cap_malloc_enough_rtn ,positive 
+4859 18e27e00 copy queue ,pdata 
+485a 1a620400 copy regc ,temp 
+485b 98461600 isub temp ,timeup 
+
+l2cap_malloc_enough_rtn:
+485c 1a620e00 copy regc ,queue 
+485d 20600000 rtn 
+
+l2cap_malloc_signal_channel:
+485e 793f8025 set0 mark_ext_patch ,mark 
+485f 44fc401f bpatch patch1f_0 ,mem_patch1f 
+4860 da20007f arg l2cap_signal_malloc_size ,rega 
+4861 204047dc call l2cap_malloc 
+4862 60010294 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+4863 1fe0fe04 increase 4 ,pdata 
+4864 60010296 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+4865 58000000 setarg 0 
+4866 60010298 store 2 ,mem_l2cap_signal_tx_length 
+4867 20600000 rtn 
+
+l2cap_get_signal_tx_buff:
+4868 68010294 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+4869 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_get_signal_tx_payload:
+486a 68010296 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+486b 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_sdp_channel:
+486c 793f8025 set0 mark_ext_patch ,mark 
+486d 44fcc01f bpatch patch1f_1 ,mem_patch1f 
+486e da2002ff arg sdp_malloc_size ,rega 
+486f 204047dc call l2cap_malloc 
+4870 6001029a store 2 ,mem_sdp_tx_buff_ptr 
+4871 1fe0fe04 increase 4 ,pdata 
+4872 6001029c store 2 ,mem_sdp_tx_payload_ptr 
+4873 58000000 setarg 0 
+4874 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4875 20600000 rtn 
+
+l2cap_get_sdp_tx_buff:
+4876 6801029a fetch 2 ,mem_sdp_tx_buff_ptr 
+4877 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_get_sdp_tx_payload:
+4878 6801029c fetch 2 ,mem_sdp_tx_payload_ptr 
+4879 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_rfcomm_channel:
+487a 793f8025 set0 mark_ext_patch ,mark 
+487b 44fd401f bpatch patch1f_2 ,mem_patch1f 
+487c 20407e48 call push_stack 
+487d 7002ad01 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+487e 2040480e call l2cap_malloc_is_fifo_full 
+487f 247a0000 nrtn blank 
+4880 da20007f arg rfcomm_malloc_size ,rega 
+4881 204047dc call l2cap_malloc 
+4882 600102a0 store 2 ,mem_rfcomm_tx_buff_ptr 
+4883 1fe0fe04 increase 4 ,pdata 
+4884 600102a2 store 2 ,mem_rfcomm_tx_payload_ptr 
+4885 58000000 setarg 0 
+4886 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+4887 7002ad00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+4888 20207e56 branch pop_stack 
+
+l2cap_get_rfcomm_tx_buff:
+4889 680102a0 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+488a 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_util_pdata_to_contw:
+488b 203a3b31 branch assert ,blank 
+488c 1fe20a00 copy pdata ,contw 
+488d 20600000 rtn 
+
+l2cap_lpm_save_calc_len:
+488e 793f8025 set0 mark_ext_patch ,mark 
+488f 44fdc01f bpatch patch1f_3 ,mem_patch1f 
+4890 da400000 arg 0 ,regb 
+4891 da2042e7 arg mem_tx_fifo0_map ,rega 
+4892 1a20a3fe increase -2 ,rega 
+
+l2cap_lpm_save_calc_len_loop:
+4893 1a20a202 increase 2 ,rega 
+4894 580042f3 setarg mem_tx_fifo_end 
+4895 9a267c00 isub rega ,null 
+4896 2022c89f branch l2cap_lpm_save_calc_len_end ,zero 
+4897 ea208000 ifetch 1 ,rega 
+4898 1a20a201 increase 1 ,rega 
+4899 203a4893 branch l2cap_lpm_save_calc_len_loop ,blank 
+489a ea290000 ifetcht 2 ,rega 
+489b e8410000 ifetch 2 ,temp 
+489c 9a40a400 iadd regb ,regb 
+489d 1a40a404 increase 4 ,regb 
+489e 20204893 branch l2cap_lpm_save_calc_len_loop 
+
+l2cap_lpm_save_calc_len_end:
+489f 1a427e00 copy regb ,pdata 
+48a0 20600000 rtn 
+
+l2cap_lpm_get_wake_lock:
+48a1 d8e0000c arg wake_lock_l2cap_tx ,queue 
+48a2 20203d06 branch lpm_get_wake_lock 
+
+l2cap_lpm_put_wake_lock:
+48a3 d8e0000c arg wake_lock_l2cap_tx ,queue 
+48a4 20203d0a branch lpm_put_wake_lock 
+
+l2cap_lpm_save_txbuf:
+48a5 793f8025 set0 mark_ext_patch ,mark 
+48a6 44fe401f bpatch patch1f_4 ,mem_patch1f 
+48a7 20404821 call l2cap_malloc_get_full_map 
+48a8 6800c2e6 fetch 1 ,mem_used_map 
+48a9 207a0000 rtn blank 
+48aa 2040488e call l2cap_lpm_save_calc_len 
+48ab d8400100 arg l2cap_lpm_txbuf_len ,temp 
+48ac 98467c00 isub temp ,null 
+48ad 202148a1 branch l2cap_lpm_get_wake_lock ,positive 
+48ae 204048a3 call l2cap_lpm_put_wake_lock 
+48af d8a042f3 arg mem_l2cap_lpm_txbuf ,contw 
+48b0 da2042e7 arg mem_tx_fifo0 ,rega 
+
+l2cap_lpm_save_txbuf_loop:
+48b1 580042f3 setarg mem_tx_fifo_end 
+48b2 9a267c00 isub rega ,null 
+48b3 20628000 rtn zero 
+48b4 ea208000 ifetch 1 ,rega 
+48b5 1a20a201 increase 1 ,rega 
+48b6 243a48ba nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+48b7 e0a10000 istore 2 ,contw 
+48b8 1a20a202 increase 2 ,rega 
+48b9 202048b1 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_save_txbuf_nempty:
+48ba ea210000 ifetch 2 ,rega 
+48bb 1a20a202 increase 2 ,rega 
+48bc 1fe20c00 copy pdata ,contr 
+48bd e8c10000 ifetch 2 ,contr 
+48be e0a10000 istore 2 ,contw 
+48bf 1fe27200 copy pdata ,loopcnt 
+48c0 1f20f202 increase 2 ,loopcnt 
+48c1 20407ecd call memcpy 
+48c2 202048b1 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_load_txbuf:
+48c3 793f8025 set0 mark_ext_patch ,mark 
+48c4 44fec01f bpatch patch1f_5 ,mem_patch1f 
+48c5 20404821 call l2cap_malloc_get_full_map 
+48c6 6800c2e6 fetch 1 ,mem_used_map 
+48c7 207a0000 rtn blank 
+48c8 da2042e8 arg mem_tx_fifo0_ptr ,rega 
+48c9 1a20a3fd increase -3 ,rega 
+48ca d8c042f3 arg mem_l2cap_lpm_txbuf ,contr 
+
+l2cap_lpm_load_txbuf_loop:
+48cb 1a20a203 increase 3 ,rega 
+48cc 580042f4 setarg mem_tx_fifo_end + 1 
+48cd 9a267c00 isub rega ,null 
+48ce 20628000 rtn zero 
+48cf e8c10000 ifetch 2 ,contr 
+48d0 203a48cb branch l2cap_lpm_load_txbuf_loop ,blank 
+48d1 1fe0fe04 increase 4 ,pdata 
+48d2 1fe27200 copy pdata ,loopcnt 
+48d3 18c22400 copy contr ,regb 
+48d4 ea210000 ifetch 2 ,rega 
+48d5 1fe20a00 copy pdata ,contw 
+48d6 1a420c00 copy regb ,contr 
+48d7 18c08dfe increase -2 ,contr 
+48d8 20407ecd call memcpy 
+48d9 202048cb branch l2cap_lpm_load_txbuf_loop 
+
+le_secure_connection_enable:
+48da 6800c4df fetch 1 ,mem_le_pres_auth 
+48db 79207e03 set1 le_auth_secure_connection_pairing_bit ,pdata 
+48dc 6000c4df store 1 ,mem_le_pres_auth 
+48dd 20600000 rtn 
+
+le_secure_connection_disable:
+48de 6800c4df fetch 1 ,mem_le_pres_auth 
+48df 793ffe03 set0 le_auth_secure_connection_pairing_bit ,pdata 
+48e0 6000c4df store 1 ,mem_le_pres_auth 
+48e1 20600000 rtn 
+
+le_init_conn:
+48e2 793f8025 set0 mark_ext_patch ,mark 
+48e3 44ff401f bpatch patch1f_6 ,mem_patch1f 
+48e4 7855fc00 disable wake 
+48e5 70037801 jam 1 ,mem_le_conn_handle 
+48e6 70036203 jam 3 ,mem_le_state 
+48e7 70037901 jam 1 ,mem_le_arq 
+48e8 5fffffff setarg -1 
+48e9 6001037c store 2 ,mem_le_event_count 
+48ea 18007e00 force 0 ,pdata 
+48eb 6000837a store 1 ,mem_le_ch 
+48ec 60008385 store 1 ,mem_le_op 
+48ed 6001c209 store 3 ,mem_sniff_rcv 
+48ee 6001c20c store 3 ,mem_sniff_lost 
+48ef 6002c48c store 5 ,mem_le_pcnt_tx 
+48f0 79207e27 set1 39 ,pdata 
+48f1 6002c491 store 5 ,mem_le_pcnt_rx 
+48f2 70446501 jam 1 ,mem_le_txheader 
+48f3 70446600 jam 0 ,mem_le_txlen 
+48f4 20205179 branch le_supervision_flush 
+
+le_init_master:
+48f5 793f8025 set0 mark_ext_patch ,mark 
+48f6 44ffc01f bpatch patch1f_7 ,mem_patch1f 
+48f7 7834fc00 enable master 
+48f8 70036303 jam lemode_master ,mem_le_mode 
+48f9 70039b01 jam 1 ,mem_le_att_handle 
+48fa 7044e301 jam 1 ,mem_le_search_handle_start 
+48fb 5800ffff setarg 0xffff 
+48fc 600144e5 store 2 ,mem_le_search_handle_end 
+48fd 18007e00 force 0 ,pdata 
+48fe 6002c491 store 5 ,mem_le_pcnt_rx 
+48ff 79207e27 set1 39 ,pdata 
+4900 6002c48c store 5 ,mem_le_pcnt_tx 
+4901 202048e2 branch le_init_conn 
+
+le_init_slave:
+4902 79200025 set1 mark_ext_patch ,mark 
+4903 44804020 bpatch patch20_0 ,mem_patch20 
+4904 7854fc00 disable master 
+4905 70036301 jam lemode_slave ,mem_le_mode 
+4906 7043ff00 jam 0 ,mem_le_adv_enable 
+4907 70009f00 jam 0 ,mem_lpm_current_mult 
+4908 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4909 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+490a 68010390 fetch 2 ,mem_le_superto 
+490b 60014561 store 2 ,mem_le_init_superto 
+490c 68010364 fetch 2 ,mem_le_tsniff 
+490d 1feffe05 mul32 pdata ,5 ,pdata 
+490e 1ff1fe00 rshift4 pdata ,pdata 
+490f 60010390 store 2 ,mem_le_superto 
+4910 202048e2 branch le_init_conn 
+
+le_dispatch:
+4911 20404976 call le_enable 
+4912 20404b91 call le_scan 
+4913 2040517c call le_adv 
+4914 2020497d branch le_disable 
+
+le_conn_dispatch:
+4915 79200025 set1 mark_ext_patch ,mark 
+4916 4480c020 bpatch patch20_1 ,mem_patch20 
+4917 20404976 call le_enable 
+4918 20403d67 call app_process_ble 
+4919 68008363 fetch 1 ,mem_le_mode 
+491a c001c91c beq lemode_master ,le_master_dispatch 
+491b 20204932 branch le_slave_dispatch 
+
+le_master_dispatch:
+491c 79200025 set1 mark_ext_patch ,mark 
+491d 44814020 bpatch patch20_2 ,mem_patch20 
+491e 7834fc00 enable master 
+491f 20405170 call le_supervision_update 
+4920 2021492f branch le_master_disconn ,positive 
+4921 20403d45 call check_ble_disabled 
+4922 204049c4 call le_setup 
+4923 20404bd8 call le_prepare_tx 
+4924 7856fc00 disable match 
+4925 20404a5a call le_transmit_receive_sifs 
+4926 24768000 nrtn match 
+4927 79200025 set1 mark_ext_patch ,mark 
+4928 4481c020 bpatch patch20_3 ,mem_patch20 
+4929 68008005 fetch 1 ,mem_le_conn_rcv 
+492a 1fe0fe01 increase 1 ,pdata 
+492b 60008005 store 1 ,mem_le_conn_rcv 
+492c 20404b51 call le_acknowledge 
+492d 7854fc00 disable master 
+492e 20600000 rtn 
+
+le_master_disconn:
+492f 2040495b call le_disconnect 
+4930 7854fc00 disable master 
+4931 20600000 rtn 
+
+le_slave_dispatch:
+4932 79200025 set1 mark_ext_patch ,mark 
+4933 44824020 bpatch patch20_4 ,mem_patch20 
+4934 20407acf call sp_calc_sequence_256 
+4935 204052a9 call le_secure_connect_sm 
+4936 78577c00 disable attempt 
+4937 20405170 call le_supervision_update 
+4938 2021495b branch le_slave_disconn ,positive 
+4939 20403d45 call check_ble_disabled 
+493a 204049c4 call le_setup 
+493b 20404a20 call le_receive_slave 
+493c 242c494f nbranch le_slave_unsync ,sync 
+493d 20404968 call le_got_first_packet 
+493e 2036c940 branch le_slave_match ,match 
+493f 20204949 branch le_slave_transmit_last 
+
+le_slave_match:
+4940 79200025 set1 mark_ext_patch ,mark 
+4941 4482c020 bpatch patch20_5 ,mem_patch20 
+4942 20404968 call le_got_first_packet 
+4943 20404b51 call le_acknowledge 
+4944 20404bd8 call le_prepare_tx 
+4945 68008302 fetch 1 ,mem_le_rxbuf 
+4946 c2824955 bbit1 md ,le_slave_more_data 
+4947 20404bd0 call le_xtype_fifo_is_empty 
+4948 243a4955 nbranch le_slave_more_data ,blank 
+
+le_slave_transmit_last:
+4949 79200025 set1 mark_ext_patch ,mark 
+494a 44834020 bpatch patch20_6 ,mem_patch20 
+494b 20404a63 call le_transmit_norx 
+
+le_slave_cont:
+494c 20407d9e call check_51cmd 
+494d 68008385 fetch 1 ,mem_le_op 
+494e c281c95b bbit1 op_disconn ,le_slave_disconn 
+
+le_slave_unsync:
+494f 79200025 set1 mark_ext_patch ,mark 
+4950 4483c020 bpatch patch20_7 ,mem_patch20 
+4951 20405287 call le_lpm_set_mult 
+4952 20404b43 call le_update_channel_map 
+4953 20404b22 call le_update_param 
+4954 202038d1 branch calc_clke_offset 
+
+le_slave_more_data:
+4955 79200025 set1 mark_ext_patch ,mark 
+4956 44844021 bpatch patch21_0 ,mem_patch21 
+4957 78377c00 enable attempt 
+4958 20404a5a call le_transmit_receive_sifs 
+4959 2036c940 branch le_slave_match ,match 
+495a 2020494c branch le_slave_cont 
+
+le_slave_disconn:
+
+le_disconnect:
+495b 79200025 set1 mark_ext_patch ,mark 
+495c 4484c021 bpatch patch21_1 ,mem_patch21 
+
+le_disconnect0:
+495d 20404962 call le_clear_connection_info 
+495e 20403e17 call app_disconn_reason_collect_ble 
+495f 20407a96 call sp_initialize_256 
+4960 7009bd15 jam bt_evt_le_disconnected ,mem_fifo_temp 
+4961 20207d86 branch ui_ipc_send_event 
+
+le_clear_connection_info:
+4962 70037800 jam 0 ,mem_le_conn_handle 
+4963 70036300 jam lemode_idle ,mem_le_mode 
+4964 70036200 jam 0 ,mem_le_state 
+4965 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4966 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4967 20600000 rtn 
+
+le_got_first_packet:
+4968 79200025 set1 mark_ext_patch ,mark 
+4969 44854021 bpatch patch21_2 ,mem_patch21 
+496a 68008005 fetch 1 ,mem_le_conn_rcv 
+496b 1fe0fe01 increase 1 ,pdata 
+496c 60008005 store 1 ,mem_le_conn_rcv 
+496d 68008362 fetch 1 ,mem_le_state 
+496e c3818000 rtnbit1 lestate_got_first_packet 
+496f 79207e03 set1 lestate_got_first_packet 
+4970 60008362 store 1 ,mem_le_state 
+4971 68014561 fetch 2 ,mem_le_init_superto 
+4972 60010390 store 2 ,mem_le_superto 
+4973 58000000 setarg 0 
+4974 60024596 store 4 ,mem_le_transmit_window 
+4975 20600000 rtn 
+
+le_enable:
+4976 79200025 set1 mark_ext_patch ,mark 
+4977 4485c021 bpatch patch21_3 ,mem_patch21 
+4978 70890f36 hjam 0x36 ,0x90f 
+4979 70890b5f hjam 0x5f ,0x90b 
+497a 783b7c00 enable le 
+497b 70891407 hjam 7 ,rfen_ulp 
+497c 20203d45 branch check_ble_disabled 
+
+le_disable:
+497d 79200025 set1 mark_ext_patch ,mark 
+497e 44864021 bpatch patch21_4 ,mem_patch21 
+497f 70890f2e hjam 0x2e ,0x90f 
+4980 70890bff hjam 0xff ,0x90b 
+4981 785b7c00 disable le 
+4982 70891403 hjam 3 ,rfen_ulp 
+4983 db600000 arg 0 ,stop_watch 
+4984 20600000 rtn 
+
+le_prep:
+4985 7844fc00 disable enable_crc 
+4986 7843fc00 disable enable_white 
+4987 6801838a fetch 3 ,mem_le_crcinit 
+4988 98001e00 iforce crc24_init 
+4989 68008016 fetch 1 ,mem_le_ch_mapped 
+498a 1fed8400 reverse pdata ,temp 
+498b 79200401 set1 1 ,temp 
+498c 18431c00 rshift temp ,white_init 
+498d 20600000 rtn 
+
+lerx_setfreq:
+498e 20404996 call le_setfreq 
+498f 204039b9 call set_freq_rx 
+4990 58000500 setarg param_pll_setup 
+4991 20403b35 call sleep 
+4992 202039bf branch rf_rx_enable 
+
+letx_setfreq:
+4993 2036b9d0 branch txon ,match 
+
+letx_setfreq0:
+4994 20404996 call le_setfreq 
+4995 202039c9 branch set_freq_tx 
+
+le_setfreq:
+4996 79200025 set1 mark_ext_patch ,mark 
+4997 4486c021 bpatch patch21_5 ,mem_patch21 
+4998 204039b1 call set_sync_on 
+4999 680083b0 fetch 1 ,mem_le_testtype 
+499a 243a49aa nbranch le_ctf_test ,blank 
+499b 68008016 fetch 1 ,mem_le_ch_mapped 
+499c 1fe67c24 sub pdata ,36 ,null 
+499d 202149a4 branch le_ctf_normal ,positive 
+499e 18000400 force 0 ,temp 
+499f c1128000 rtneq 37 
+49a0 18000418 force 24 ,temp 
+49a1 c1130000 rtneq 38 
+49a2 1800044e force 78 ,temp 
+49a3 20600000 rtn 
+
+le_ctf_normal:
+49a4 1fe67c0a sub pdata ,10 ,null 
+49a5 202149a7 branch le_ctf_low ,positive 
+49a6 1fe0fe01 increase 1 ,pdata 
+
+le_ctf_low:
+49a7 1fe3fe00 lshift pdata ,pdata 
+49a8 1fe08402 add pdata ,2 ,temp 
+49a9 20600000 rtn 
+
+le_ctf_test:
+49aa 68008016 fetch 1 ,mem_le_ch_mapped 
+49ab 1fe38400 lshift pdata ,temp 
+49ac 20600000 rtn 
+
+le_sca_map:
+49ad d84001f4 arg 500 ,temp 
+49ae 207a0000 rtn blank 
+49af d84000fa arg 250 ,temp 
+49b0 c1008000 rtneq 1 
+49b1 d8400096 arg 150 ,temp 
+49b2 c1010000 rtneq 2 
+49b3 d8400064 arg 100 ,temp 
+49b4 c1018000 rtneq 3 
+49b5 d840004b arg 75 ,temp 
+49b6 c1020000 rtneq 4 
+49b7 d8400032 arg 50 ,temp 
+49b8 c1028000 rtneq 5 
+49b9 d8400028 arg 40 ,temp 
+49ba c1030000 rtneq 6 
+49bb d8400014 arg 20 ,temp 
+49bc 20600000 rtn 
+
+le_adv_access:
+49bd 588e89be setarg 0x8e89be 
+49be 1fed7e00 lshift8 pdata ,pdata 
+49bf 1fe1fed6 or_into 0xd6 ,pdata 
+49c0 98001200 iforce access 
+49c1 58555555 setarg 0x555555 
+49c2 6001838a store 3 ,mem_le_crcinit 
+49c3 20600000 rtn 
+
+le_setup:
+49c4 79200025 set1 mark_ext_patch ,mark 
+49c5 44874021 bpatch patch21_6 ,mem_patch21 
+49c6 78287c00 enable swfine 
+49c7 68020386 fetch 4 ,mem_le_access 
+49c8 98001200 iforce access 
+49c9 204049fb call le_map_channel 
+49ca 58000200 setarg 0x200 
+49cb 2034c9ce branch le_setup_master ,master 
+49cc 68010370 fetch 2 ,mem_le_receive_window 
+49cd 1fe37e00 rshift pdata ,pdata 
+
+le_setup_master:
+49ce d8400500 arg param_pll_setup ,temp 
+49cf 9840fe00 iadd temp ,pdata 
+49d0 20403abd call ahead_window 
+49d1 1b427e00 deposit clke 
+49d2 600303b5 store 6 ,mem_le_rxon_ts 
+49d3 20600000 rtn 
+
+le_next_adv_channel:
+49d4 79200025 set1 mark_ext_patch ,mark 
+49d5 4487c021 bpatch patch21_7 ,mem_patch21 
+49d6 68008016 fetch 1 ,mem_le_ch_mapped 
+49d7 1fe0fe01 increase 1 ,pdata 
+49d8 60008016 store 1 ,mem_le_ch_mapped 
+49d9 c1940000 rtnne 40 
+49da 70001625 jam 37 ,mem_le_ch_mapped 
+49db 20600000 rtn 
+
+le_context_nexthop:
+49dc 79200025 set1 mark_ext_patch ,mark 
+49dd 44884022 bpatch patch22_0 ,mem_patch22 
+49de 1a208c01 add rega ,coffset_mode ,contr 
+49df e8c08000 ifetch 1 ,contr 
+49e0 c4000000 rtnbit0 mode_le 
+49e1 1a208a1a add rega ,coffset_le_event_cnt ,contw 
+49e2 e8a10000 ifetch 2 ,contw 
+49e3 1fe0fe01 increase 1 ,pdata 
+49e4 e0a10000 istore 2 ,contw 
+49e5 1a208c19 add rega ,coffset_le_hop ,contr 
+49e6 e8c08000 ifetch 1 ,contr 
+49e7 1a208a18 add rega ,coffset_le_ch ,contw 
+49e8 e8a88000 ifetcht 1 ,contw 
+49e9 9840fe00 iadd temp ,pdata 
+49ea 1fe67c24 sub pdata ,36 ,null 
+49eb 202149ed branch le_nexthop_nowrap ,positive 
+49ec 1fe0ffdb increase -37 ,pdata 
+
+le_nexthop_nowrap:
+49ed e0a08000 istore 1 ,contw 
+49ee 20600000 rtn 
+
+le_calc_channel_map:
+49ef 79200025 set1 mark_ext_patch ,mark 
+49f0 4488c022 bpatch patch22_1 ,mem_patch22 
+49f1 68028392 fetch 5 ,mem_le_channel_map 
+49f2 18000400 force 0 ,temp 
+49f3 18007225 force 37 ,loopcnt 
+
+le_count_channels_loop:
+49f4 c30049f6 bbit0 0 ,le_count_channels_notused 
+49f5 18408401 increase 1 ,temp 
+
+le_count_channels_notused:
+49f6 1fe37e00 rshift pdata ,pdata 
+49f7 c20049f4 loop le_count_channels_loop 
+49f8 1840ffff add temp ,-1 ,pdata 
+49f9 60008384 store 1 ,mem_le_channels 
+49fa 20600000 rtn 
+
+le_map_channel:
+49fb 79200025 set1 mark_ext_patch ,mark 
+49fc 44894022 bpatch patch22_2 ,mem_patch22 
+49fd 6800837a fetch 1 ,mem_le_ch 
+49fe 98000e00 iforce queue 
+49ff 680a8392 fetcht 5 ,mem_le_channel_map 
+4a00 a84fffff qisolate1 temp 
+4a01 2020ca13 branch le_map_channel_end ,true 
+
+le_map_channel_next:
+4a02 79200025 set1 mark_ext_patch ,mark 
+4a03 4489c022 bpatch patch22_3 ,mem_patch22 
+4a04 68008384 fetch 1 ,mem_le_channels 
+4a05 98e67e00 isub queue ,pdata 
+4a06 20214a09 branch le_map_channel_cont ,positive 
+4a07 1fe60fff sub pdata ,-1 ,queue 
+4a08 20204a02 branch le_map_channel_next 
+
+le_map_channel_cont:
+4a09 18e27200 copy queue ,loopcnt 
+4a0a 18000e00 force 0 ,queue 
+
+le_map_channel_loop:
+4a0b a84fffff qisolate1 temp 
+4a0c 2020ca0e branch le_map_channel_skip ,true 
+4a0d 1f20f201 increase 1 ,loopcnt 
+
+le_map_channel_skip:
+4a0e 1f227e00 deposit loopcnt 
+4a0f 203a4a13 branch le_map_channel_end ,blank 
+4a10 18e08e01 increase 1 ,queue 
+4a11 1f20f3ff increase -1 ,loopcnt 
+4a12 20204a0b branch le_map_channel_loop 
+
+le_map_channel_end:
+4a13 18e27e00 deposit queue 
+4a14 60008016 store 1 ,mem_le_ch_mapped 
+4a15 20600000 rtn 
+
+le_wait_tx:
+4a16 2034ca19 branch le_wait_master ,master 
+4a17 37c18200 until null ,timeout 
+4a18 20600000 rtn 
+
+le_wait_master:
+4a19 d9600ea0 arg 0xea0 ,timeup 
+4a1a 34730200 until clkn_rt ,meet 
+4a1b 20600000 rtn 
+
+le_receive_adv:
+4a1c 78487c00 disable swfine 
+4a1d 680143fc fetch 2 ,mem_le_scan_window 
+4a1e 1fe21600 copy pdata ,timeup 
+4a1f 20204a26 branch le_receive_packet 
+
+le_receive_slave:
+4a20 79200025 set1 mark_ext_patch ,mark 
+4a21 448a4022 bpatch patch22_4 ,mem_patch22 
+4a22 78287c00 enable swfine 
+4a23 68010370 fetch 2 ,mem_le_receive_window 
+4a24 680a4596 fetcht 4 ,mem_le_transmit_window 
+4a25 98409600 iadd temp ,timeup 
+
+le_receive_packet:
+4a26 2040498e call lerx_setfreq 
+
+le_receive_rxon:
+4a27 79200025 set1 mark_ext_patch ,mark 
+4a28 448ac022 bpatch patch22_5 ,mem_patch22 
+4a29 20404985 call le_prep 
+4a2a 7856fc00 disable match 
+4a2b 7826fc00 enable decode_fec0 
+4a2c 7830fc00 enable is_rx 
+4a2d 78507c00 disable is_tx 
+4a2e 19623600 copy timeup ,stop_watch 
+4a2f 37c18400 correlate null ,timeout 
+4a30 20374a33 branch le_receive_on_attempt ,attempt 
+4a31 1b420400 copy clke ,temp 
+4a32 600b0099 storet 6 ,mem_sync_clke 
+
+le_receive_on_attempt:
+4a33 242c36c6 nbranch end_of_packet ,sync 
+4a34 20374a3a branch le_receive_skip ,attempt 
+4a35 dd2001e0 arg param_clke_cal_le ,clke_rt 
+4a36 1c225000 copy bt_clk ,clke_bt 
+4a37 68008362 fetch 1 ,mem_le_state 
+4a38 c301ca3a bbit0 lestate_got_first_packet ,le_receive_skip 
+4a39 2055bbed call lpm_adjust_clk ,wake 
+
+le_receive_skip:
+4a3a 79200025 set1 mark_ext_patch ,mark 
+4a3b 448b4022 bpatch patch22_6 ,mem_patch22 
+4a3c 20403a50 call save_rssi 
+4a3d 7823fc00 enable enable_white 
+4a3e 7824fc00 enable enable_crc 
+4a3f 09800008 parse demod ,bucket ,8 
+4a40 19897e00 rshift3 pwindow ,pdata 
+4a41 60008302 store 1 ,mem_le_rxbuf 
+4a42 09800008 parse demod ,bucket ,8 
+4a43 19897e00 rshift3 pwindow ,pdata 
+4a44 e0a08000 istore 1 ,contw 
+4a45 1fe1723f and pdata ,0x3f ,loopcnt 
+4a46 2022ca4b branch lerx_nopayload ,zero 
+
+lerx_loop:
+4a47 09800008 parse demod ,bucket ,8 
+4a48 19897e00 rshift3 pwindow ,pdata 
+4a49 e0a08000 istore 1 ,contw 
+4a4a c2004a47 loop lerx_loop 
+
+lerx_nopayload:
+4a4b 79200025 set1 mark_ext_patch ,mark 
+4a4c 448bc022 bpatch patch22_7 ,mem_patch22 
+4a4d 09800018 parse demod ,bucket ,24 
+4a4e 78287c00 enable swfine 
+4a4f db600664 arg param_sifs ,stop_watch 
+4a50 1fef7e00 rshift32 pdata ,pdata 
+4a51 1ff17e00 rshift16 pdata ,pdata 
+4a52 e0a18000 istore 3 ,contw 
+4a53 202336c6 branch end_of_packet ,crc_failed 
+4a54 7836fc00 enable match 
+4a55 68008017 fetch 1 ,mem_last_freq 
+4a56 1fe0a200 add pdata ,0 ,rega 
+4a57 20403a13 call rf_write_freq 
+4a58 7846fc00 disable decode_fec0 
+4a59 202039b1 branch set_sync_on 
+
+le_transmit_receive_sifs:
+4a5a 79200025 set1 mark_ext_patch ,mark 
+4a5b 448c4023 bpatch patch23_0 ,mem_patch23 
+4a5c 20404a65 call le_transmit 
+4a5d 68088017 fetcht 1 ,mem_last_freq 
+4a5e 204039b9 call set_freq_rx 
+4a5f 204039bf call rf_rx_enable 
+4a60 78287c00 enable swfine 
+4a61 d960157c arg 5500 ,timeup 
+4a62 20204a27 branch le_receive_rxon 
+
+le_transmit_norx:
+4a63 20404a65 call le_transmit 
+4a64 202036c6 branch end_of_packet 
+
+le_transmit:
+4a65 79200025 set1 mark_ext_patch ,mark 
+4a66 448cc023 bpatch patch23_1 ,mem_patch23 
+4a67 20404985 call le_prep 
+4a68 20404993 call letx_setfreq 
+4a69 20404a6d call le_transmit0 
+4a6a 6800c132 fetch 1 ,mem_device_option 
+4a6b c0055d8e beq dvc_op_module ,module_le_transmit 
+4a6c 20600000 rtn 
+
+le_transmit0:
+4a6d 79202a00 set1 txgfsk ,radio_ctrl 
+4a6e 782efc00 enable encode_fec0 
+4a6f 78307c00 enable is_tx 
+4a70 7850fc00 disable is_rx 
+4a71 20404a16 call le_wait_tx 
+4a72 19317e00 rshift16 access ,pdata 
+4a73 1fecfe00 rshift8 pdata ,pdata 
+4a74 1ff1fe00 rshift4 pdata ,pdata 
+4a75 08008628 inject mod ,40 
+4a76 7823fc00 enable enable_white 
+4a77 7824fc00 enable enable_crc 
+4a78 79200025 set1 mark_ext_patch ,mark 
+4a79 448d4023 bpatch patch23_2 ,mem_patch23 
+4a7a 6800c465 fetch 1 ,mem_le_txheader 
+4a7b 08008608 inject mod ,8 
+4a7c e8c08000 ifetch 1 ,contr 
+4a7d 1fe1723f and pdata ,0x3f ,loopcnt 
+4a7e 08008608 inject mod ,8 
+4a7f 2022ca83 branch letr_nopayload ,zero 
+
+letr_loop:
+4a80 e8c08000 ifetch 1 ,contr 
+4a81 08008608 inject mod ,8 
+4a82 c2004a80 loop letr_loop 
+
+letr_nopayload:
+4a83 78247c00 enable enable_parity 
+4a84 08008618 inject mod ,24 
+4a85 78447c00 disable enable_parity 
+4a86 37d38200 until null ,tx_clear 
+4a87 20000064 nop 100 
+4a88 784efc00 disable encode_fec0 
+4a89 20600000 rtn 
+
+le_send_adv_ind:
+4a8a 79200025 set1 mark_ext_patch ,mark 
+4a8b 448dc023 bpatch patch23_3 ,mem_patch23 
+4a8c 6800c520 fetch 1 ,mem_le_adv_type 
+4a8d c000ca9b beq adv_direct_ind ,le_send_adv_direct_ind 
+4a8e 6800c521 fetch 1 ,mem_le_adv_own_addr_type 
+4a8f 1ff27e00 lshift4 pdata ,pdata 
+4a90 1febfe00 lshift2 pdata ,pdata 
+4a91 6000c465 store 1 ,mem_le_txheader 
+4a92 6808c400 fetcht 1 ,mem_le_adv_data_len 
+4a93 1840fe06 add temp ,6 ,pdata 
+4a94 6000c466 store 1 ,mem_le_txlen 
+4a95 6803453e fetch 6 ,mem_le_lap 
+4a96 60034467 store 6 ,mem_le_txpayload 
+4a97 18427200 copy temp ,loopcnt 
+4a98 d8c04401 arg mem_le_adv_data ,contr 
+4a99 20407ec0 call memcpy_fast 
+4a9a 20204aab branch le_send_adv_transmit 
+
+le_send_adv_direct_ind:
+4a9b 680944f8 fetcht 2 ,mem_le_notify_handle 
+4a9c 20404f6a call le_att_check_notification_enable 
+4a9d 1a220a00 copy rega ,contw 
+4a9e 58000001 setarg 1 
+4a9f e0a08000 istore 1 ,contw 
+4aa0 6800c522 fetch 1 ,mem_le_adv_direct_addr_type 
+4aa1 1ff27e00 lshift4 pdata ,pdata 
+4aa2 1febfe00 lshift2 pdata ,pdata 
+4aa3 1fe0fe01 increase 1 ,pdata 
+4aa4 6000c465 store 1 ,mem_le_txheader 
+4aa5 5800000c setarg 12 
+4aa6 6000c466 store 1 ,mem_le_txlen 
+4aa7 6803453e fetch 6 ,mem_le_lap 
+4aa8 60034467 store 6 ,mem_le_txpayload 
+4aa9 68034273 fetch 6 ,mem_hci_plap 
+4aaa e0a30000 istore 6 ,contw 
+
+le_send_adv_transmit:
+4aab 79200025 set1 mark_ext_patch ,mark 
+4aac 448e4023 bpatch patch23_4 ,mem_patch23 
+4aad 68008000 fetch 1 ,mem_le_adv_transmit 
+4aae 1fe0fe01 increase 1 ,pdata 
+4aaf 60008000 store 1 ,mem_le_adv_transmit 
+4ab0 db600708 arg 1800 ,stop_watch 
+4ab1 7856fc00 disable match 
+4ab2 20204a5a branch le_transmit_receive_sifs 
+
+le_send_scan_request:
+4ab3 79200025 set1 mark_ext_patch ,mark 
+4ab4 448ec023 bpatch patch23_5 ,mem_patch23 
+4ab5 6800c53b fetch 1 ,mem_le_scan_type 
+4ab6 c1808000 rtnne le_scan_type_active ,pdata 
+4ab7 68008000 fetch 1 ,mem_le_adv_transmit 
+4ab8 1fe0fe01 increase 1 ,pdata 
+4ab9 60008000 store 1 ,mem_le_adv_transmit 
+4aba d8400c03 arg 0x0c03 ,temp 
+4abb 6800c53c fetch 1 ,mem_le_scan_own_addr_type 
+4abc 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+4abd 1a227e00 copy rega ,pdata 
+4abe 7d3a0407 nsetflag blank ,le_receiver_addr_bit ,temp 
+4abf 60094465 storet 2 ,mem_le_txheader 
+4ac0 6803453e fetch 6 ,mem_le_lap 
+4ac1 e0a30000 istore 6 ,contw 
+4ac2 68030372 fetch 6 ,mem_le_plap 
+4ac3 e0a30000 istore 6 ,contw 
+4ac4 20204a5a branch le_transmit_receive_sifs 
+
+le_send_scan_response:
+4ac5 79200025 set1 mark_ext_patch ,mark 
+4ac6 448f4023 bpatch patch23_6 ,mem_patch23 
+4ac7 d8400004 arg scan_rsp ,temp 
+4ac8 6800c521 fetch 1 ,mem_le_adv_own_addr_type 
+4ac9 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+4aca 6008c465 storet 1 ,mem_le_txheader 
+4acb 6808c420 fetcht 1 ,mem_le_scan_data_len 
+4acc 1840fe06 add temp ,6 ,pdata 
+4acd 6000c466 store 1 ,mem_le_txlen 
+4ace 6803453e fetch 6 ,mem_le_lap 
+4acf 60034467 store 6 ,mem_le_txpayload 
+4ad0 d8c04421 arg mem_le_scan_data ,contr 
+4ad1 18427200 copy temp ,loopcnt 
+4ad2 20407ec0 call memcpy_fast 
+4ad3 20204a63 branch le_transmit_norx 
+
+le_connect_request:
+4ad4 79200025 set1 mark_ext_patch ,mark 
+4ad5 448fc023 bpatch patch23_7 ,mem_patch23 
+4ad6 18007fff force -1 ,pdata 
+4ad7 38080001 setsect 2 ,1 
+4ad8 60028392 store 5 ,mem_le_channel_map 
+4ad9 204049ef call le_calc_channel_map 
+4ada 18007204 force 4 ,loopcnt 
+4adb d8a00386 arg mem_le_access ,contw 
+4adc 20405918 call generate_random_loop 
+4add 68014539 fetch 2 ,mem_le_conn_superto 
+4ade 60010390 store 2 ,mem_le_superto 
+
+le_con_req_hop_retry:
+4adf 180a7e00 random pdata 
+4ae0 1fe17e0f and_into 0xf ,pdata 
+4ae1 1fe67c04 sub pdata ,4 ,null 
+4ae2 20214adf branch le_con_req_hop_retry ,positive 
+4ae3 6000837b store 1 ,mem_le_hop 
+4ae4 6000860a store 1 ,mem_tmp1 
+4ae5 79200025 set1 mark_ext_patch ,mark 
+4ae6 44904024 bpatch patch24_0 ,mem_patch24 
+4ae7 680943f7 fetcht 2 ,mem_le_conn_interval 
+4ae8 60090364 storet 2 ,mem_le_tsniff 
+4ae9 18422600 copy temp ,regc 
+4aea 1c40fe07 add clkn_bt ,7 ,pdata 
+4aeb 9a66fc00 idiv regc 
+4aec 20407f53 call wait_div_end 
+4aed 18072200 remainder rega 
+4aee 9a267e00 isub rega ,pdata 
+4aef 9a60fe00 iadd regc ,pdata 
+4af0 680943f5 fetcht 2 ,mem_le_dsniff 
+4af1 9840fe00 iadd temp ,pdata 
+4af2 60020366 store 4 ,mem_le_anchor 
+4af3 9c462200 isub clkn_bt ,rega 
+4af4 1a20a3fa increase -6 ,rega 
+4af5 da402205 arg 0x2205 ,regb 
+4af6 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+4af7 7d3a2406 nsetflag blank ,le_sender_addr_bit ,regb 
+4af8 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+4af9 7d3a2407 nsetflag blank ,le_receiver_addr_bit ,regb 
+4afa 1a427e00 copy regb ,pdata 
+4afb 60014465 store 2 ,mem_le_txheader 
+4afc 6803453e fetch 6 ,mem_le_lap 
+4afd e0a30000 istore 6 ,contw 
+4afe 68030372 fetch 6 ,mem_le_plap 
+4aff e0a30000 istore 6 ,contw 
+4b00 68020386 fetch 4 ,mem_le_access 
+4b01 e0a20000 istore 4 ,contw 
+4b02 180a7e00 random pdata 
+4b03 e0a10000 istore 2 ,contw 
+4b04 180a7e00 random pdata 
+4b05 e0a08000 istore 1 ,contw 
+4b06 18007e02 force 2 ,pdata 
+4b07 e0a08000 istore 1 ,contw 
+4b08 1a2b7e00 rshift2 rega ,pdata 
+4b09 e0a10000 istore 2 ,contw 
+4b0a 1a6b7e00 rshift2 regc ,pdata 
+4b0b e0a10000 istore 2 ,contw 
+4b0c 79200025 set1 mark_ext_patch ,mark 
+4b0d 4490c024 bpatch patch24_1 ,mem_patch24 
+4b0e 68014537 fetch 2 ,mem_le_conn_latency 
+4b0f e0a10000 istore 2 ,contw 
+4b10 68014539 fetch 2 ,mem_le_conn_superto 
+4b11 e0a10000 istore 2 ,contw 
+4b12 68028392 fetch 5 ,mem_le_channel_map 
+4b13 e0a28000 istore 5 ,contw 
+4b14 6800837b fetch 1 ,mem_le_hop 
+4b15 d84000a0 arg param_le_sca ,temp 
+4b16 9841fe00 ior temp ,pdata 
+4b17 e0a08000 istore 1 ,contw 
+4b18 20404a63 call le_transmit_norx 
+4b19 58004465 setarg mem_le_txheader 
+4b1a 1fe08c12 add pdata ,18 ,contr 
+4b1b e8c18000 ifetch 3 ,contr 
+4b1c 6001838a store 3 ,mem_le_crcinit 
+4b1d 20600000 rtn 
+
+le_init_adv:
+4b1e 79200025 set1 mark_ext_patch ,mark 
+4b1f 44914024 bpatch patch24_2 ,mem_patch24 
+4b20 7854fc00 disable master 
+4b21 202049bd branch le_adv_access 
+
+le_update_param:
+4b22 68008362 fetch 1 ,mem_le_state 
+4b23 c4028000 rtnbit0 lestate_update_param 
+4b24 6801037c fetch 2 ,mem_le_event_count 
+4b25 68090382 fetcht 2 ,mem_le_instant 
+4b26 98467e00 isub temp ,pdata 
+4b27 24610000 nrtn positive 
+4b28 79200025 set1 mark_ext_patch ,mark 
+4b29 4491c024 bpatch patch24_3 ,mem_patch24 
+4b2a 6800c132 fetch 1 ,mem_device_option 
+4b2b c084cb2d bne dvc_op_shutter ,le_update_param_common 
+4b2c 70413101 jam 1 ,mem_lpm_mode 
+
+le_update_param_common:
+4b2d 68008362 fetch 1 ,mem_le_state 
+4b2e 793ffe05 set0 lestate_update_param ,pdata 
+4b2f 793ffe03 set0 lestate_got_first_packet ,pdata 
+4b30 60008362 store 1 ,mem_le_state 
+4b31 68020366 fetch 4 ,mem_le_anchor 
+4b32 68090364 fetcht 2 ,mem_le_tsniff 
+4b33 98462200 isub temp ,rega 
+4b34 79200025 set1 mark_ext_patch ,mark 
+4b35 44924024 bpatch patch24_4 ,mem_patch24 
+4b36 6800c45b fetch 1 ,mem_le_new_param 
+4b37 6000838d store 1 ,mem_le_window_size 
+4b38 e8c90000 ifetcht 2 ,contr 
+4b39 e8c10000 ifetch 2 ,contr 
+4b3a 1febfe00 lshift2 pdata ,pdata 
+4b3b 60010364 store 2 ,mem_le_tsniff 
+4b3c 184b8400 lshift2 temp ,temp 
+4b3d 9840fe00 iadd temp ,pdata 
+4b3e e8ca0000 ifetcht 4 ,contr 
+4b3f 600a038e storet 4 ,mem_le_slave_latency 
+4b40 9a20fe00 iadd rega ,pdata 
+4b41 60020366 store 4 ,mem_le_anchor 
+4b42 20205199 branch le_receive_window_size 
+
+le_update_channel_map:
+4b43 79200025 set1 mark_ext_patch ,mark 
+4b44 4492c024 bpatch patch24_5 ,mem_patch24 
+4b45 68008362 fetch 1 ,mem_le_state 
+4b46 c4030000 rtnbit0 lestate_update_map 
+4b47 6801037c fetch 2 ,mem_le_event_count 
+4b48 68090382 fetcht 2 ,mem_le_instant 
+4b49 98467e00 isub temp ,pdata 
+4b4a 24610000 nrtn positive 
+4b4b 68008362 fetch 1 ,mem_le_state 
+4b4c 793ffe06 set0 lestate_update_map ,pdata 
+4b4d 60008362 store 1 ,mem_le_state 
+4b4e 6802c456 fetch 5 ,mem_le_new_map 
+4b4f 60028392 store 5 ,mem_le_channel_map 
+4b50 202049ef branch le_calc_channel_map 
+
+le_acknowledge:
+4b51 79200025 set1 mark_ext_patch ,mark 
+4b52 44934024 bpatch patch24_6 ,mem_patch24 
+4b53 20405179 call le_supervision_flush 
+4b54 20404b66 call le_check_wak 
+4b55 68008302 fetch 1 ,mem_le_rxbuf 
+4b56 1fe37e00 rshift pdata ,pdata 
+4b57 9842fe00 ixor temp ,pdata 
+4b58 2feffe02 isolate1 nesn ,pdata 
+4b59 7920800f setflag true ,mark_old_packet ,mark 
+4b5a 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4b5b 203a4b61 branch le_ack_unenc ,blank 
+4b5c 68008362 fetch 1 ,mem_le_state 
+4b5d c3024b61 bbit0 lestate_encryption ,le_ack_unenc 
+4b5e 204071b6 call load_sk 
+4b5f 20407122 call le_decrypt 
+4b60 247a0000 nrtn blank 
+
+le_ack_unenc:
+4b61 c6078000 rtnmark1 mark_old_packet 
+4b62 68088379 fetcht 1 ,mem_le_arq 
+4b63 79400402 setflip nesn ,temp 
+4b64 60088379 storet 1 ,mem_le_arq 
+4b65 20204fa5 branch le_parse 
+
+le_check_wak:
+4b66 79200025 set1 mark_ext_patch ,mark 
+4b67 4493c024 bpatch patch24_7 ,mem_patch24 
+4b68 68088379 fetcht 1 ,mem_le_arq 
+4b69 284c0005 isolate0 wak ,temp 
+4b6a 20608000 rtn true 
+4b6b 68008302 fetch 1 ,mem_le_rxbuf 
+4b6c 1fe3fe00 lshift pdata ,pdata 
+4b6d 9842fe00 ixor temp ,pdata 
+4b6e c4018000 rtnbit0 sn 
+4b6f 793f8405 set0 wak ,temp 
+4b70 79400403 setflip sn ,temp 
+4b71 60088379 storet 1 ,mem_le_arq 
+4b72 28400603 compare 3 ,temp ,3 
+4b73 24608000 nrtn true 
+4b74 6800c467 fetch 1 ,mem_le_txpayload 
+4b75 c002cb79 beq ll_start_enc_req ,le_set_enc 
+4b76 6800c56b fetch 1 ,mem_le_enc_state 
+4b77 c0014b7d beq flag_le_enc_pause ,le_clear_enc 
+4b78 20600000 rtn 
+
+le_set_enc:
+4b79 68008362 fetch 1 ,mem_le_state 
+4b7a 79207e04 set1 lestate_encryption ,pdata 
+4b7b 60008362 store 1 ,mem_le_state 
+4b7c 20600000 rtn 
+
+le_clear_enc:
+4b7d 79200025 set1 mark_ext_patch ,mark 
+4b7e 44944025 bpatch patch25_0 ,mem_patch25 
+4b7f 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4b80 dfe00000 arg 0 ,pdata 
+4b81 60024496 store 4 ,mem_le_last_mic 
+4b82 6002c48c store 5 ,mem_le_pcnt_tx 
+4b83 79207e27 set1 39 ,pdata 
+4b84 6002c491 store 5 ,mem_le_pcnt_rx 
+4b85 68008362 fetch 1 ,mem_le_state 
+4b86 793ffe04 set0 lestate_encryption ,pdata 
+4b87 60008362 store 1 ,mem_le_state 
+4b88 20600000 rtn 
+
+le_wait_adv:
+4b89 79200025 set1 mark_ext_patch ,mark 
+4b8a 4494c025 bpatch patch25_1 ,mem_patch25 
+4b8b 204049d4 call le_next_adv_channel 
+4b8c 20404a1c call le_receive_adv 
+4b8d 68008001 fetch 1 ,mem_le_adv_waitcnt 
+4b8e 1fe0fe01 increase 1 ,pdata 
+4b8f 60008001 store 1 ,mem_le_adv_waitcnt 
+4b90 20600000 rtn 
+
+le_scan:
+4b91 79200025 set1 mark_ext_patch ,mark 
+4b92 44954025 bpatch patch25_2 ,mem_patch25 
+4b93 6800c3f9 fetch 1 ,mem_le_scan_enable 
+4b94 c1808000 rtnne le_scan_enable 
+4b95 d8e00003 arg le_scan_interval_timer ,queue 
+4b96 20407ee2 call timer_check 
+4b97 247a0000 nrtn blank 
+4b98 680143fa fetch 2 ,mem_le_scan_interval 
+4b99 680943fc fetcht 2 ,mem_le_scan_window 
+4b9a 98467e00 isub temp ,pdata 
+4b9b d8e00003 arg le_scan_interval_timer ,queue 
+4b9c 20407ed4 call timer_init 
+4b9d 7854fc00 disable master 
+4b9e 20404b1e call le_init_adv 
+4b9f 20404b89 call le_wait_adv 
+4ba0 24768000 nrtn match 
+4ba1 79200025 set1 mark_ext_patch ,mark 
+4ba2 4495c025 bpatch patch25_3 ,mem_patch25 
+4ba3 68030304 fetch 6 ,mem_le_rxbuf + 2 
+4ba4 60030372 store 6 ,mem_le_plap 
+4ba5 68008002 fetch 1 ,mem_le_adv_rcv 
+4ba6 1fe0fe01 increase 1 ,pdata 
+4ba7 60008002 store 1 ,mem_le_adv_rcv 
+4ba8 20404bb4 call le_create_conn 
+4ba9 20748000 rtn master 
+4baa 20404ab3 call le_send_scan_request 
+4bab 24768000 nrtn match 
+4bac 79200025 set1 mark_ext_patch ,mark 
+4bad 44964025 bpatch patch25_4 ,mem_patch25 
+4bae 68008004 fetch 1 ,mem_le_scanrsp_rcv 
+4baf 1fe0fe01 increase 1 ,pdata 
+4bb0 60008004 store 1 ,mem_le_scanrsp_rcv 
+4bb1 6804830a fetch 9 ,mem_le_rxbuf + 8 
+4bb2 60048100 store 9 ,mem_tmp_buffer 
+4bb3 20600000 rtn 
+
+le_create_conn:
+4bb4 79200025 set1 mark_ext_patch ,mark 
+4bb5 4496c025 bpatch patch25_5 ,mem_patch25 
+4bb6 680083bf fetch 1 ,mem_cmd_le_create_conn 
+4bb7 c18d8000 rtnne hci_cmd_le_create_conn ,pdata 
+4bb8 68030372 fetch 6 ,mem_le_plap 
+4bb9 680b452c fetcht 6 ,mem_le_conn_peer_addr 
+4bba 98467c00 isub temp ,null 
+4bbb 24628000 nrtn zero 
+4bbc 2040327a call context_new 
+4bbd 24628000 nrtn zero 
+4bbe 20404ad4 call le_connect_request 
+4bbf 204048f5 call le_init_master 
+4bc0 79200025 set1 mark_ext_patch ,mark 
+4bc1 44974025 bpatch patch25_6 ,mem_patch25 
+4bc2 70427100 jam 0 ,mem_hci_cmd 
+4bc3 70039900 jam 0 ,mem_le_peer_sca 
+4bc4 7043f900 jam 0 ,mem_le_scan_enable 
+4bc5 7003bf00 jam 0 ,mem_cmd_le_create_conn 
+4bc6 7009bd2c jam xt_ll_version_ind ,mem_fifo_temp 
+4bc7 20404bd6 call le_xtype_fifo_in 
+4bc8 20203260 branch context_save 
+
+le_scan_check_sender_addr_type:
+4bc9 da200001 arg 1 ,rega 
+4bca 68008302 fetch 1 ,mem_le_rxbuf 
+4bcb c3830000 rtnbit1 le_sender_addr_bit 
+4bcc da200000 arg 0 ,rega 
+4bcd 20600000 rtn 
+
+le_xtype_fifo_count:
+4bce d8c04544 arg mem_le_xtype_fifo ,contr 
+4bcf 20207fa8 branch fifo_content_count 
+
+le_xtype_fifo_is_empty:
+4bd0 da204544 arg mem_le_xtype_fifo ,rega 
+4bd1 20207fa2 branch fifo_is_empty 
+
+le_xtype_fifo_is_full:
+4bd2 da204544 arg mem_le_xtype_fifo ,rega 
+4bd3 20207fa4 branch fifo_is_full 
+
+le_xtype_fifo_is_near_full:
+4bd4 da204544 arg mem_le_xtype_fifo ,rega 
+4bd5 20207fa6 branch fifo_is_near_full 
+
+le_xtype_fifo_in:
+4bd6 da204544 arg mem_le_xtype_fifo ,rega 
+4bd7 20207f88 branch fifo_in 
+
+le_prepare_tx:
+4bd8 79200025 set1 mark_ext_patch ,mark 
+4bd9 4497c025 bpatch patch25_7 ,mem_patch25 
+4bda 68008379 fetch 1 ,mem_le_arq 
+4bdb c3828000 rtnbit1 wak 
+4bdc 6800c132 fetch 1 ,mem_device_option 
+4bdd c004cbe2 beq dvc_op_shutter ,le_prepare_tx_shutter 
+
+le_prepare_tx_1:
+4bde da204544 arg mem_le_xtype_fifo ,rega 
+4bdf 20407f95 call fifo_out 
+4be0 243a4bf1 nbranch le_prepare_tx_cmd ,blank 
+4be1 20204f87 branch le_send_empty 
+
+le_prepare_tx_shutter:
+4be2 6800c8c8 fetch 1 ,mem_empty_count 
+4be3 243a4be9 nbranch le_send_empty_shutter ,blank 
+4be4 68008362 fetch 1 ,mem_le_state 
+4be5 c3024bed bbit0 lestate_encryption ,le_tx_4 
+4be6 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4be7 203a4bed branch le_tx_4 ,blank 
+4be8 20204f87 branch le_send_empty 
+
+le_send_empty_shutter:
+4be9 6800c8c8 fetch 1 ,mem_empty_count 
+4bea 1fe0ffff increase -1 ,pdata 
+4beb 6000c8c8 store 1 ,mem_empty_count 
+4bec 20204f87 branch le_send_empty 
+
+le_tx_4:
+4bed 6800c56a fetch 1 ,mem_le_pairing_state 
+4bee c0814bf0 bne flag_le_pairing_after_auth ,in_le_tx_4 
+4bef 7048c803 jam 3 ,mem_empty_count 
+
+in_le_tx_4:
+4bf0 20204bde branch le_prepare_tx_1 
+
+le_prepare_tx_cmd:
+4bf1 1fe20400 copy pdata ,temp 
+4bf2 79200025 set1 mark_ext_patch ,mark 
+4bf3 44984026 bpatch patch26_0 ,mem_patch26 
+4bf4 18427e00 copy temp ,pdata 
+4bf5 c302cc0d bbit0 5 ,le_prepare_l2cap 
+4bf6 18000203 force 3 ,type 
+4bf7 793ffe05 set0 5 ,pdata 
+4bf8 6000c467 store 1 ,mem_le_txpayload 
+4bf9 79200025 set1 mark_ext_patch ,mark 
+4bfa 4498c026 bpatch patch26_1 ,mem_patch26 
+
+le_prepare_tx_ll:
+4bfb 6800c467 fetch 1 ,mem_le_txpayload 
+4bfc c0004c54 beq ll_connection_update_req ,le_send_connection_update_req 
+4bfd c000cc56 beq ll_channel_map_req ,le_send_channel_map_req 
+4bfe c0014c58 beq ll_terminate_ind ,le_send_terminate_ind 
+4bff c001cc5a beq ll_enc_req ,le_send_enc_req 
+4c00 c0024c6b beq ll_enc_rsp ,le_send_enc_rsp 
+4c01 c002cc84 beq ll_start_enc_req ,le_send_start_enc_req 
+4c02 c0034c86 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+4c03 c003cc9c beq ll_unknown_rsp ,le_send_unknown_rsp 
+4c04 c0044ca0 beq ll_feature_req ,le_send_feature 
+4c05 c004cca0 beq ll_feature_rsp ,le_send_feature 
+4c06 c0054ca4 beq ll_pause_enc_req ,le_send_pause_enc_req 
+4c07 c005cca4 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+4c08 c0064ca6 beq ll_version_ind ,le_send_version_ind 
+4c09 c006ccaa beq ll_reject_ind ,le_send_reject_ind 
+4c0a c007ccae beq ll_connection_param_req ,le_send_conn_param_req 
+4c0b c009cca4 beq ll_ping_rsp ,le_send_ping_response 
+4c0c 20203b31 branch assert 
+
+le_prepare_l2cap:
+4c0d 70446a00 jam 0 ,mem_le_txcid + 1 
+4c0e 18000202 force 2 ,type 
+4c0f c3034c26 bbit0 6 ,le_prepare_att 
+4c10 c0294c26 beq attop_write_command ,le_prepare_att 
+4c11 c0694c26 beq attop_signed_write_command ,le_prepare_att 
+4c12 70446906 jam le_l2cap_cid_smp ,mem_le_txcid 
+4c13 793ffe06 set0 6 ,pdata 
+4c14 6000c46b store 1 ,mem_le_l2cap 
+4c15 79200025 set1 mark_ext_patch ,mark 
+4c16 44994026 bpatch patch26_2 ,mem_patch26 
+4c17 6800c46b fetch 1 ,mem_le_l2cap 
+
+le_prepare_smp0:
+4c18 c000ccbb beq smp_pairing_request ,le_send_smp_pairing_request 
+4c19 c0014cc3 beq smp_pairing_response ,le_send_smp_pairing_response 
+4c1a c001ccda beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+4c1b c0024ce8 beq smp_pairing_random ,le_send_smp_pairing_random 
+4c1c c002cced beq smp_pairing_failed ,le_send_smp_pairing_failed 
+4c1d c0034cf2 beq smp_encryption_information ,le_send_smp_encryption_information 
+4c1e c003cd10 beq smp_master_identification ,le_send_smp_master_identification 
+4c1f c0044d27 beq smp_identity_information ,le_send_smp_identity_information 
+4c20 c004cd2d beq smp_identity_address_information ,le_send_smp_identity_address_information 
+4c21 c0054d32 beq smp_signing_information ,le_send_smp_signing_information 
+4c22 c005cd35 beq smp_security_request ,le_send_smp_security_request 
+4c23 c0064d39 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+4c24 c006cd64 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+4c25 20203b31 branch assert 
+
+le_prepare_att:
+4c26 70446904 jam le_l2cap_cid_att ,mem_le_txcid 
+4c27 6000c46b store 1 ,mem_le_l2cap 
+4c28 79200025 set1 mark_ext_patch ,mark 
+4c29 4499c026 bpatch patch26_3 ,mem_patch26 
+4c2a 6800c46b fetch 1 ,mem_le_l2cap 
+4c2b c000cd6f beq attop_error_response ,le_send_att_error_response 
+4c2c c0014d75 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu_req 
+4c2d c001cd75 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu_rsp 
+4c2e c0024d78 beq attop_find_information_request ,le_send_att_find_information_request 
+4c2f c002cd7d beq attop_find_information_response ,le_send_att_find_information_response 
+4c30 c0034d93 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+4c31 c003cda7 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+4c32 c0044dec beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+4c33 c004cdf4 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+4c34 c0054e58 beq attop_read_request ,le_send_att_read_request 
+4c35 c005ce60 beq attop_read_response ,le_send_att_read_response 
+4c36 c0064e77 beq attop_read_blob_request ,le_send_att_read_blob_request 
+4c37 c006ce7c beq attop_read_blob_response ,le_send_att_read_blob_response 
+4c38 c0074e8b beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+4c39 c007ce92 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+4c3a c0084eb8 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+4c3b c008cec0 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+4c3c c0094f1e beq attop_write_request ,le_send_att_write_request 
+4c3d c009cf25 beq attop_write_response ,le_send_att_write_response 
+4c3e c00b4f27 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+4c3f c00bcf46 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+4c40 c00c4f66 beq attop_execute_write_request ,le_send_att_execute_write_request 
+4c41 c00ccf68 beq attop_execute_write_response ,le_send_att_execute_write_response 
+4c42 c00dcf77 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+4c43 c00ecf79 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+4c44 c00f4f7b beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+4c45 c0294f7d beq attop_write_command ,le_send_att_write_command 
+4c46 c0694f7f beq attop_signed_write_command ,le_send_att_signed_write_command 
+4c47 c04f4c4b beq empty_le_data_pre ,le_send_empty_le_data_pre 
+4c48 c04fcc4d beq empty_le_data ,le_send_empty_le_data 
+4c49 c00fcf29 beq attop_continue ,le_send_att_continue 
+4c4a 20203b31 branch assert 
+
+le_send_empty_le_data_pre:
+4c4b 7009bd10 jam attop_read_by_group_type_request ,mem_fifo_temp 
+4c4c 20404bd6 call le_xtype_fifo_in 
+
+le_send_empty_le_data:
+4c4d 58000011 setarg 0x0011 
+4c4e 60014465 store 2 ,mem_le_txheader 
+4c4f 68008379 fetch 1 ,mem_le_arq 
+4c50 79207e05 set1 wak ,pdata 
+4c51 60008379 store 1 ,mem_le_arq 
+4c52 7009bd12 jam attop_write_request ,mem_fifo_temp 
+4c53 20204bd6 branch le_xtype_fifo_in 
+
+le_send_connection_update_req:
+4c54 1800040c force 12 ,temp 
+4c55 20204f89 branch le_send_packet 
+
+le_send_channel_map_req:
+4c56 18000408 force 8 ,temp 
+4c57 20204f89 branch le_send_packet 
+
+le_send_terminate_ind:
+4c58 18000402 force 2 ,temp 
+4c59 20204f89 branch le_send_packet 
+
+le_send_enc_req:
+4c5a 18007e00 force 0 ,pdata 
+4c5b e0a40000 istore 8 ,contw 
+4c5c e0a10000 istore 2 ,contw 
+4c5d 18a20400 copy contw ,temp 
+4c5e d8a04551 arg mem_le_skdm ,contw 
+4c5f 18007208 force 8 ,loopcnt 
+4c60 20405918 call generate_random_loop 
+4c61 68044551 fetch 8 ,mem_le_skdm 
+4c62 e0440000 istore 8 ,temp 
+4c63 18a20400 copy contw ,temp 
+4c64 d8a0449a arg mem_le_ivm ,contw 
+4c65 18007204 force 4 ,loopcnt 
+4c66 20405918 call generate_random_loop 
+4c67 6802449a fetch 4 ,mem_le_ivm 
+4c68 e0420000 istore 4 ,temp 
+4c69 18000417 force 23 ,temp 
+4c6a 20204f89 branch le_send_packet 
+
+le_send_enc_rsp:
+4c6b 18a20400 copy contw ,temp 
+4c6c d8a04559 arg mem_le_skds ,contw 
+4c6d 18007208 force 8 ,loopcnt 
+4c6e 20405918 call generate_random_loop 
+4c6f 68044559 fetch 8 ,mem_le_skds 
+4c70 e0440000 istore 8 ,temp 
+4c71 18a20400 copy contw ,temp 
+4c72 d8a0449e arg mem_le_ivs ,contw 
+4c73 18007204 force 4 ,loopcnt 
+4c74 20405918 call generate_random_loop 
+4c75 6802449e fetch 4 ,mem_le_ivs 
+4c76 e0420000 istore 4 ,temp 
+4c77 204070c8 call generate_sk 
+4c78 6800c4b2 fetch 1 ,mem_ltk_exists 
+4c79 c0004c7e beq 0 ,le_ltk_lost 
+4c7a 7009bd25 jam xt_ll_start_enc_req ,mem_fifo_temp 
+4c7b 20404bd6 call le_xtype_fifo_in 
+4c7c 1800040d force 13 ,temp 
+4c7d 20204f89 branch le_send_packet 
+
+le_ltk_lost:
+4c7e 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4c7f 7009bd2d jam xt_ll_reject_ind ,mem_fifo_temp 
+4c80 20404bd6 call le_xtype_fifo_in 
+4c81 20407e29 call check_51cmd_le_smp_sec_req 
+4c82 1800040d force 13 ,temp 
+4c83 20204f89 branch le_send_packet 
+
+le_send_start_enc_req:
+4c84 18000401 force 1 ,temp 
+4c85 20204f89 branch le_send_packet 
+
+le_send_start_enc_rsp:
+4c86 18000401 force 1 ,temp 
+4c87 2034cf89 branch le_send_packet ,master 
+4c88 6800c132 fetch 1 ,mem_device_option 
+4c89 c004cc92 beq dvc_op_shutter ,le_send_start_enc_rsp_shutter 
+4c8a 6800c56a fetch 1 ,mem_le_pairing_state 
+4c8b c0814c8f bne flag_le_pairing_after_auth ,le_send_start_enc_rsp_end 
+4c8c 7009bd46 jam xt_smp_encryption_information ,mem_fifo_temp 
+4c8d 20404bd6 call le_xtype_fifo_in 
+4c8e 20204c90 branch le_send_start_enc_rsp_common 
+
+le_send_start_enc_rsp_end:
+4c8f 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+
+le_send_start_enc_rsp_common:
+4c90 18000401 force 1 ,temp 
+4c91 20204f89 branch le_send_packet 
+
+le_send_start_enc_rsp_shutter:
+4c92 70413101 jam 1 ,mem_lpm_mode 
+4c93 6800c56a fetch 1 ,mem_le_pairing_state 
+4c94 c0814c97 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp0 
+4c95 7009bd46 jam xt_smp_encryption_information ,mem_fifo_temp 
+4c96 20404bd6 call le_xtype_fifo_in 
+
+le_send_start_enc_rsp0:
+4c97 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+4c98 18000401 force 1 ,temp 
+4c99 20404f89 call le_send_packet 
+4c9a 7048c201 jam 1 ,mem_send_updata_le_param_timer 
+4c9b 20600000 rtn 
+
+le_send_unknown_rsp:
+4c9c 6800c550 fetch 1 ,mem_le_ll_cur_opcode 
+4c9d e0a08000 istore 1 ,contw 
+4c9e 18000402 force 2 ,temp 
+4c9f 20204f89 branch le_send_packet 
+
+le_send_feature:
+4ca0 58000001 setarg param_le_features 
+4ca1 e0a40000 istore 8 ,contw 
+4ca2 18000409 force 9 ,temp 
+4ca3 20204f89 branch le_send_packet 
+
+le_send_pause_enc_req:
+
+le_send_pause_enc_rsp:
+
+le_send_ping_response:
+4ca4 18000401 force 1 ,temp 
+4ca5 20204f89 branch le_send_packet 
+
+le_send_version_ind:
+4ca6 6802c5a9 fetch 5 ,mem_lmp_version 
+4ca7 e0a28000 istore 5 ,contw 
+4ca8 18000406 force 6 ,temp 
+4ca9 20204f89 branch le_send_packet 
+
+le_send_reject_ind:
+4caa 58000006 setarg le_err_pin_or_key_missing 
+4cab e0a08000 istore 1 ,contw 
+4cac 18000402 force 2 ,temp 
+4cad 20204f89 branch le_send_packet 
+
+le_send_conn_param_req:
+4cae 18a08bff increase -1 ,contw 
+4caf 5800000c setarg 0x000c 
+4cb0 e0a10000 istore 2 ,contw 
+4cb1 58000005 setarg 0x0005 
+4cb2 e0a10000 istore 2 ,contw 
+4cb3 5800b412 setarg 0xb412 
+4cb4 e0a10000 istore 2 ,contw 
+4cb5 58000008 setarg 0x0008 
+4cb6 e0a10000 istore 2 ,contw 
+4cb7 6804458d fetch 8 ,mem_le_interal_min 
+4cb8 e0a40000 istore 8 ,contw 
+4cb9 18000202 force 2 ,type 
+4cba 20204f81 branch le_send_autolen 
+
+le_send_smp_pairing_request:
+4cbb 59000401 setarg 0x1000401 
+4cbc 600244d5 store 4 ,mem_le_preq 
+4cbd 58070710 setarg 0x070710 
+4cbe e0a18000 istore 3 ,contw 
+4cbf 680344d6 fetch 6 ,mem_le_preq_iocap 
+4cc0 6003446c store 6 ,mem_le_l2cap_response 
+4cc1 1800040b force 11 ,temp 
+4cc2 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_response:
+4cc3 6800c132 fetch 1 ,mem_device_option 
+4cc4 1fe67c0a sub pdata ,dvc_op_module ,null 
+4cc5 2042ccd1 call le_parse_smp_pairing_request_check_irk ,zero 
+4cc6 6800c132 fetch 1 ,mem_device_option 
+4cc7 c084cccd bne dvc_op_shutter ,le_send_smp_pairing_response_common 
+4cc8 70474601 jam pair_ing ,mem_pair_state 
+4cc9 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4cca c280cccd bbit1 initator_irk ,le_send_smp_pairing_response_common 
+4ccb 58010010 setarg param_smp_key_dist2 
+4ccc e0a18000 istore 3 ,contw 
+
+le_send_smp_pairing_response_common:
+4ccd 680344dd fetch 6 ,mem_le_pres_iocap 
+4cce 6003446c store 6 ,mem_le_l2cap_response 
+4ccf 1800040b force 11 ,temp 
+4cd0 20204f89 branch le_send_packet 
+
+le_parse_smp_pairing_request_check_irk:
+4cd1 6808c4e1 fetcht 1 ,mem_le_pres_init_key_distribution 
+4cd2 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4cd3 2feffe01 isolate1 le_initator_irk_bit ,pdata 
+4cd4 79208401 setflag true ,le_initator_irk_bit ,temp 
+4cd5 6008c4e1 storet 1 ,mem_le_pres_init_key_distribution 
+4cd6 6808c4e2 fetcht 1 ,mem_le_pres_resp_key_distribution 
+4cd7 79208401 setflag true ,le_initator_irk_bit ,temp 
+4cd8 6008c4e2 storet 1 ,mem_le_pres_resp_key_distribution 
+4cd9 20600000 rtn 
+
+le_send_smp_pairing_confirm:
+4cda 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+4cdb c000cce1 beq 1 ,le_send_smp_pairing_confirm_sc 
+4cdc 204070c2 call generate_confirm 
+4cdd d8a0446c arg mem_le_l2cap_response ,contw 
+4cde 204071c0 call store_aes_result 
+4cdf 18000415 force 21 ,temp 
+4ce0 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_confirm_sc:
+4ce1 d8a044c3 arg mem_le_srand ,contw 
+4ce2 20405917 call generate_random 
+4ce3 20406ee7 call function_f4_cb 
+4ce4 d8a0446c arg mem_le_l2cap_response ,contw 
+4ce5 20406f24 call load_inverse_result 
+4ce6 18000415 force 21 ,temp 
+4ce7 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_random:
+4ce8 68040352 fetch 8 ,mem_le_mrand 
+4ce9 2034cceb branch le_send_smp_mrandom ,master 
+4cea 680444c3 fetch 8 ,mem_le_srand 
+
+le_send_smp_mrandom:
+4ceb 20404d69 call le_send_smp_128 
+4cec 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_failed:
+4ced 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4cee dfe00008 arg pairing_failed_unspecified_reason ,pdata 
+4cef e0a08000 istore 1 ,contw 
+4cf0 18000406 force 6 ,temp 
+4cf1 20204f89 branch le_send_packet 
+
+le_send_smp_encryption_information:
+4cf2 7009bd29 jam bt_evt_le_enc_info ,mem_fifo_temp 
+4cf3 20407d86 call ui_ipc_send_event 
+4cf4 7009bd47 jam xt_smp_master_identification ,mem_fifo_temp 
+4cf5 20404bd6 call le_xtype_fifo_in 
+4cf6 6800c132 fetch 1 ,mem_device_option 
+4cf7 c004cd01 beq dvc_op_shutter ,le_send_smp_encryption_information_shutter 
+4cf8 680444a2 fetch 8 ,mem_le_ltk 
+4cf9 20404d69 call le_send_smp_128 
+4cfa 20404f89 call le_send_packet 
+4cfb 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+4cfc c0003e7b beq master_public_addr ,app_ble_store_reconn_info 
+4cfd 68008377 fetch 1 ,mem_le_plap + 5 
+4cfe 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+4cff 2020be7b branch app_ble_store_reconn_info ,true 
+4d00 20600000 rtn 
+
+le_send_smp_encryption_information_shutter:
+4d01 58112233 setarg 0x112233 
+4d02 6001c4a2 store 3 ,mem_le_ltk 
+4d03 58445566 setarg 0x445566 
+4d04 e0a18000 istore 3 ,contw 
+4d05 58778899 setarg 0x778899 
+4d06 e0a18000 istore 3 ,contw 
+4d07 58001122 setarg 0x001122 
+4d08 e0a18000 istore 3 ,contw 
+4d09 58334455 setarg 0x334455 
+4d0a e0a18000 istore 3 ,contw 
+4d0b 58000066 setarg 0x66 
+4d0c e0a08000 istore 1 ,contw 
+4d0d 680444a2 fetch 8 ,mem_le_ltk 
+4d0e 20404d69 call le_send_smp_128 
+4d0f 20204f89 branch le_send_packet 
+
+le_send_smp_master_identification:
+4d10 6800c132 fetch 1 ,mem_device_option 
+4d11 c004cd22 beq dvc_op_shutter ,le_send_smp_master_identification_shutter 
+4d12 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4d13 c300cd17 bbit0 le_initator_irk_bit ,le_send_smp_master_identification_only 
+4d14 7009bd48 jam xt_smp_identity_information ,mem_fifo_temp 
+4d15 20404bd6 call le_xtype_fifo_in 
+4d16 20204d19 branch le_send_smp_master_identification_common 
+
+le_send_smp_master_identification_only:
+4d17 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+4d18 70456a03 jam flag_le_pairing_end ,mem_le_pairing_state 
+
+le_send_smp_master_identification_common:
+4d19 d8a04571 arg mem_le_ediv ,contw 
+4d1a 1800720a force 10 ,loopcnt 
+4d1b 20405918 call generate_random_loop 
+4d1c 68014571 fetch 2 ,mem_le_ediv 
+4d1d 6001446c store 2 ,mem_le_l2cap_response 
+4d1e 68044573 fetch 8 ,mem_le_rand 
+4d1f e0a40000 istore 8 ,contw 
+4d20 1800040f force 15 ,temp 
+4d21 20204f89 branch le_send_packet 
+
+le_send_smp_master_identification_shutter:
+4d22 d8a0446c arg mem_le_l2cap_response ,contw 
+4d23 18007208 force 8 ,loopcnt 
+4d24 20405918 call generate_random_loop 
+4d25 1800040f force 15 ,temp 
+4d26 20204f89 branch le_send_packet 
+
+le_send_smp_identity_information:
+4d27 7009bd49 jam xt_smp_identity_address_information ,mem_fifo_temp 
+4d28 20404bd6 call le_xtype_fifo_in 
+4d29 58000000 setarg 0 
+4d2a 6004446c store 8 ,mem_le_l2cap_response 
+4d2b e0a40000 istore 8 ,contw 
+4d2c 20204f81 branch le_send_autolen 
+
+le_send_smp_identity_address_information:
+4d2d 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+4d2e 6000c46c store 1 ,mem_le_l2cap_response 
+4d2f 6803453e fetch 6 ,mem_le_lap 
+4d30 e0a30000 istore 6 ,contw 
+4d31 20204f81 branch le_send_autolen 
+
+le_send_smp_signing_information:
+4d32 d8a0446c arg mem_le_l2cap_response ,contw 
+4d33 20405917 call generate_random 
+4d34 20204f81 branch le_send_autolen 
+
+le_send_smp_security_request:
+4d35 6800c4df fetch 1 ,mem_le_pres_auth 
+4d36 6000c46c store 1 ,mem_le_l2cap_response 
+4d37 18000406 force 6 ,temp 
+4d38 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_public_key:
+4d39 680083da fetch 1 ,mem_le_continue_type 
+4d3a c001cd4e beq le_continue_type_public_key ,le_send_public_key_continue 
+4d3b d8400041 arg 65 ,temp 
+4d3c 60094467 storet 2 ,mem_le_txpayload 
+4d3d 79200025 set1 mark_ext_patch ,mark 
+4d3e 449a4026 bpatch patch26_4 ,mem_patch26 
+4d3f d8200002 arg 0x02 ,type 
+4d40 58000006 setarg le_l2cap_cid_smp 
+4d41 60014469 store 2 ,mem_le_txcid 
+4d42 d8a0446c arg mem_le_l2cap_response ,contw 
+4d43 df200016 arg 22 ,loopcnt 
+4d44 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+4d45 20407ec0 call memcpy_fast 
+4d46 7003db16 jam 22 ,mem_le_public_length 
+4d47 7044661b jam 27 ,mem_le_txlen 
+4d48 68088379 fetcht 1 ,mem_le_arq 
+4d49 79200404 set1 md ,temp 
+4d4a 60088379 storet 1 ,mem_le_arq 
+4d4b 7003da03 jam le_continue_type_public_key ,mem_le_continue_type 
+4d4c 68088379 fetcht 1 ,mem_le_arq 
+4d4d 20204f93 branch le_send_non_l2cap2 
+
+le_send_public_key_continue:
+4d4e 7003da00 jam le_continue_type_null ,mem_le_continue_type 
+4d4f 680083db fetch 1 ,mem_le_public_length 
+4d50 c00b4d5e beq 22 ,le_send_public_key_continue2 
+4d51 df20000f arg 15 ,loopcnt 
+4d52 7044660f jam 15 ,mem_le_txlen 
+4d53 20404d58 call le_send_smp_publickey_continue_common 
+4d54 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+4d55 70456603 jam le_sc_stat_send_public_key ,mem_le_secure_connect_state 
+4d56 7003db00 jam 0 ,mem_le_public_length 
+4d57 20600000 rtn 
+
+le_send_smp_publickey_continue_common:
+4d58 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+4d59 98c08c00 iadd contr ,contr 
+4d5a d8a04467 arg mem_le_txpayload ,contw 
+4d5b 20407ec0 call memcpy_fast 
+4d5c d8200001 arg 1 ,type 
+4d5d 20204f90 branch le_send_non_l2cap 
+
+le_send_public_key_continue2:
+4d5e 7003db31 jam 49 ,mem_le_public_length 
+4d5f df20001b arg 27 ,loopcnt 
+4d60 7044661b jam 27 ,mem_le_txlen 
+4d61 20404d58 call le_send_smp_publickey_continue_common 
+4d62 7003da03 jam le_continue_type_public_key ,mem_le_continue_type 
+4d63 20600000 rtn 
+
+le_send_smp_pairing_dhkey_check:
+4d64 20406e86 call function_f6_eb 
+4d65 d8a0446c arg mem_le_l2cap_response ,contw 
+4d66 20406f24 call load_inverse_result 
+4d67 18000415 force 21 ,temp 
+4d68 20204f89 branch le_send_packet 
+
+le_send_smp_128:
+4d69 6004446c store 8 ,mem_le_l2cap_response 
+4d6a e8c40000 ifetch 8 ,contr 
+4d6b e0a40000 istore 8 ,contw 
+4d6c 18000415 force 21 ,temp 
+4d6d 20600000 rtn 
+
+le_send_att_error_response_notfound:
+4d6e 70039d0a jam att_err_attribute_not_found ,mem_le_err_code 
+
+le_send_att_error_response:
+4d6f 70446b01 jam attop_error_response ,mem_le_l2cap 
+4d70 6801839a fetch 3 ,mem_le_att_opcode 
+4d71 6001c46c store 3 ,mem_le_l2cap_response 
+4d72 6800839d fetch 1 ,mem_le_err_code 
+4d73 e0a08000 istore 1 ,contw 
+4d74 20204f81 branch le_send_autolen 
+
+le_send_att_exchange_mtu_rsp:
+
+le_send_att_exchange_mtu_req:
+4d75 6801454c fetch 2 ,mem_le_local_mtu 
+4d76 e0a10000 istore 2 ,contw 
+4d77 20204f81 branch le_send_autolen 
+
+le_send_att_find_information_request:
+4d78 680144e3 fetch 2 ,mem_le_search_handle_start 
+4d79 6001446c store 2 ,mem_le_l2cap_response 
+4d7a 680144e5 fetch 2 ,mem_le_search_handle_end 
+4d7b e0a10000 istore 2 ,contw 
+4d7c 20204f81 branch le_send_autolen 
+
+le_send_att_find_information_response:
+4d7d d9600002 arg 2 ,timeup 
+4d7e 18007e01 force 1 ,pdata 
+4d7f 6000c46c store 1 ,mem_le_l2cap_response 
+4d80 204051e0 call le_init_attlist_search 
+
+le_send_att_find_information_res_loop:
+4d81 204051ea call le_att_handle_inrange 
+4d82 203a4d91 branch le_send_att_find_information_res_end ,blank 
+4d83 24214d8e nbranch le_send_att_find_information_res_next ,positive 
+4d84 78547c00 disable user 
+4d85 e0a10000 istore 2 ,contw 
+4d86 e8c08000 ifetch 1 ,contr 
+4d87 1fe27200 copy pdata ,loopcnt 
+4d88 20407ec0 call memcpy_fast 
+4d89 196097ff increase -1 ,timeup 
+4d8a 2022cd91 branch le_send_att_find_information_res_end ,zero 
+
+le_send_att_find_information_res_cont:
+4d8b e8c08000 ifetch 1 ,contr 
+4d8c 98c08c00 iadd contr ,contr 
+4d8d 20204d81 branch le_send_att_find_information_res_loop 
+
+le_send_att_find_information_res_next:
+4d8e e8c08000 ifetch 1 ,contr 
+4d8f 98c08c00 iadd contr ,contr 
+4d90 20204d8b branch le_send_att_find_information_res_cont 
+
+le_send_att_find_information_res_end:
+4d91 20344d6e branch le_send_att_error_response_notfound ,user 
+4d92 20204f81 branch le_send_autolen 
+
+le_send_att_find_by_type_value_request:
+4d93 680144e3 fetch 2 ,mem_le_search_handle_start 
+4d94 203a4c4d branch le_send_empty_le_data ,blank 
+4d95 6001446c store 2 ,mem_le_l2cap_response 
+4d96 680144e5 fetch 2 ,mem_le_search_handle_end 
+4d97 e0a10000 istore 2 ,contw 
+4d98 680144fb fetch 2 ,mem_le_search_uuid 
+4d99 e0a10000 istore 2 ,contw 
+4d9a 680144e8 fetch 2 ,mem_le_search_att_type 
+4d9b e0a10000 istore 2 ,contw 
+4d9c 20204f81 branch le_send_autolen 
+
+le_start_end_handle_check_1:
+4d9d 78547c00 disable user 
+4d9e 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4d9f 680144e5 fetch 2 ,mem_le_search_handle_end 
+4da0 98467c00 isub temp ,null 
+4da1 24214da4 nbranch le_start_end_handle_check_1_fail ,positive 
+4da2 18427e00 deposit temp 
+4da3 c1800000 rtnne 0 
+
+le_start_end_handle_check_1_fail:
+4da4 78347c00 enable user 
+4da5 70039d01 jam att_err_invalid_handle ,mem_le_err_code 
+4da6 20204d6f branch le_send_att_error_response 
+
+le_send_att_find_by_type_value_response:
+4da7 20404d9d call le_start_end_handle_check_1 
+4da8 20740000 rtn user 
+4da9 680944fb fetcht 2 ,mem_le_search_uuid 
+4daa 58002800 setarg uuid_gatt_primary_service 
+4dab 98467c00 isub temp ,null 
+4dac 2022cdb7 branch le_send_att_find_by_type_value_res_primary ,zero 
+4dad 58002801 setarg uuid_gatt_secondary_service 
+4dae 98467c00 isub temp ,null 
+4daf 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db0 58002802 setarg uuid_gatt_include 
+4db1 98467c00 isub temp ,null 
+4db2 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db3 58002803 setarg uuid_gatt_characteristic 
+4db4 98467c00 isub temp ,null 
+4db5 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db6 20204d6e branch le_send_att_error_response_notfound 
+
+le_send_att_find_by_type_value_res_primary:
+4db7 7003d900 jam le_find_by_type_val_res_not_found ,mem_le_search_res 
+4db8 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4db9 600909c6 storet 2 ,mem_temp 
+4dba 2040521a call le_att_get_handle_info 
+4dbb 243a4d6e nbranch le_send_att_error_response_notfound ,blank 
+
+le_send_att_find_primary_search_loop:
+4dbc 680909c6 fetcht 2 ,mem_temp 
+4dbd 2040521a call le_att_get_handle_info 
+4dbe 243a4dd0 nbranch le_send_att_error_response_notfound2 ,blank 
+4dbf 18c22200 copy contr ,rega 
+4dc0 680083d8 fetch 1 ,mem_le_search_len 
+4dc1 1fe27200 copy pdata ,loopcnt 
+4dc2 6808c4e7 fetcht 1 ,mem_le_search_att_type_length 
+4dc3 98467c00 isub temp ,null 
+4dc4 2422cdcc nbranch le_send_att_find_primary_search_loop1 ,zero 
+4dc5 da4044e8 arg mem_le_search_att_type ,regb 
+4dc6 20407f55 call string_compare 
+4dc7 2022cdd3 branch le_send_att_find_primary_search_end_start_handle_found ,zero 
+4dc8 680103c8 fetch 2 ,mem_le_cur_uuid 
+4dc9 680944fb fetcht 2 ,mem_le_search_uuid 
+4dca 98467c00 isub temp ,null 
+4dcb 2022cddb branch le_send_att_find_primary_search_end_ending_handle_found ,zero 
+
+le_send_att_find_primary_search_loop1:
+4dcc 680109c6 fetch 2 ,mem_temp 
+4dcd 1fe0fe01 increase 1 ,pdata 
+4dce 600109c6 store 2 ,mem_temp 
+4dcf 20204dbc branch le_send_att_find_primary_search_loop 
+
+le_send_att_error_response_notfound2:
+4dd0 680083d9 fetch 1 ,mem_le_search_res 
+4dd1 c000cddb beq le_find_by_type_val_res_found_starting_handle ,le_send_att_find_primary_search_end_ending_handle_found 
+4dd2 20204d6e branch le_send_att_error_response_notfound 
+
+le_send_att_find_primary_search_end_start_handle_found:
+4dd3 680103c8 fetch 2 ,mem_le_cur_uuid 
+4dd4 680944fb fetcht 2 ,mem_le_search_uuid 
+4dd5 98467c00 isub temp ,null 
+4dd6 2422cdcc nbranch le_send_att_find_primary_search_loop1 ,zero 
+4dd7 7003d901 jam le_find_by_type_val_res_found_starting_handle ,mem_le_search_res 
+4dd8 680909c6 fetcht 2 ,mem_temp 
+4dd9 600903c3 storet 2 ,mem_le_cur_handle_start 
+4dda 20204dcc branch le_send_att_find_primary_search_loop1 
+
+le_send_att_find_primary_search_end_ending_handle_found:
+4ddb 680083d9 fetch 1 ,mem_le_search_res 
+4ddc c0004dcc beq le_find_by_type_val_res_not_found ,le_send_att_find_primary_search_loop1 
+4ddd 7003d902 jam le_find_by_type_val_res_found_ending_handle ,mem_le_search_res 
+4dde 680909c6 fetcht 2 ,mem_temp 
+4ddf 184085ff increase -1 ,temp 
+4de0 600903c5 storet 2 ,mem_le_cur_handle_end 
+
+le_send_att_find_primary_search_end:
+4de1 680103c3 fetch 2 ,mem_le_cur_handle_start 
+4de2 1fe22200 icopy rega 
+4de3 680103c5 fetch 2 ,mem_le_cur_handle_end 
+4de4 1fe22400 icopy regb 
+4de5 70446b07 jam attop_find_by_type_value_response ,mem_le_l2cap 
+4de6 1a227e00 deposit rega 
+4de7 6001446c store 2 ,mem_le_l2cap_response 
+4de8 1a427e00 deposit regb 
+4de9 e0a10000 istore 2 ,contw 
+4dea 18000409 force 9 ,temp 
+4deb 20204f89 branch le_send_packet 
+
+le_send_att_read_by_type_request:
+4dec 680144e3 fetch 2 ,mem_le_search_handle_start 
+4ded e0a10000 istore 2 ,contw 
+4dee 680144e5 fetch 2 ,mem_le_search_handle_end 
+4def e0a10000 istore 2 ,contw 
+4df0 680144e8 fetch 2 ,mem_le_search_att_type 
+4df1 e0a10000 istore 2 ,contw 
+4df2 1800040b force 11 ,temp 
+4df3 20204f89 branch le_send_packet 
+
+le_send_att_read_by_type_response:
+4df4 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4df5 600909c6 storet 2 ,mem_temp 
+4df6 204051e0 call le_init_attlist_search 
+4df7 204051f8 call le_att_get_handle_ptr2 
+4df8 18c08dfe increase -2 ,contr 
+4df9 18c27e00 copy contr ,pdata 
+4dfa 600103c1 store 2 ,mem_le_cur_attlist_start_ptr 
+4dfb 680944fb fetcht 2 ,mem_le_search_uuid 
+4dfc 58002803 setarg uuid_gatt_characteristic 
+4dfd 98467c00 isub temp ,null 
+4dfe 2422ce3d nbranch le_send_att_read_by_type_res_not_characteristic ,zero 
+4dff d9600002 arg 2 ,timeup 
+4e00 79200025 set1 mark_ext_patch ,mark 
+4e01 449ac026 bpatch patch26_5 ,mem_patch26 
+
+le_send_att_read_by_type_response_loop:
+4e02 20404eff call le_att_check_handle_end 
+4e03 24214e13 nbranch le_send_att_read_by_type_response_end ,positive 
+4e04 680909c6 fetcht 2 ,mem_temp 
+4e05 20405217 call le_att_get_handle_info_from_ptr 
+4e06 c000ce13 beq 1 ,le_send_att_read_by_type_response_end 
+4e07 20404f0b call le_att_same_uuid 
+4e08 2422ce11 nbranch le_send_att_read_by_type_response_next_handle ,zero 
+4e09 24344e15 nbranch le_send_att_read_by_type_res_found_next ,user 
+4e0a 78547c00 disable user 
+4e0b 20404e28 call le_send_att_read_by_type_write_properties 
+4e0c 20404efb call le_att_next_handle 
+4e0d 20405217 call le_att_get_handle_info_from_ptr 
+4e0e 20404e2f call le_send_att_read_by_type_write_uuid 
+4e0f 196097ff increase -1 ,timeup 
+4e10 2022ce13 branch le_send_att_read_by_type_response_end ,zero 
+
+le_send_att_read_by_type_response_next_handle:
+4e11 20404efb call le_att_next_handle 
+4e12 20204e02 branch le_send_att_read_by_type_response_loop 
+
+le_send_att_read_by_type_response_end:
+4e13 20344d6e branch le_send_att_error_response_notfound ,user 
+4e14 20204f13 branch le_send_auto_len_by_mem 
+
+le_send_att_read_by_type_res_found_next:
+4e15 20404f0e call le_store_att_record 
+4e16 20404efb call le_att_next_handle 
+4e17 20405217 call le_att_get_handle_info_from_ptr 
+4e18 6800c46c fetch 1 ,mem_le_l2cap_response 
+4e19 c00ace13 beq 21 ,le_send_att_read_by_type_response_end 
+4e1a 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4e1b 1fe0fe05 increase 5 ,pdata 
+4e1c 6808c46c fetcht 1 ,mem_le_l2cap_response 
+4e1d 98467c00 isub temp ,null 
+4e1e 2422ce13 nbranch le_send_att_read_by_type_response_end ,zero 
+4e1f 20407e64 call get_contw 
+4e20 680109c6 fetch 2 ,mem_temp 
+4e21 1fe0ffff increase -1 ,pdata 
+4e22 e0a10000 istore 2 ,contw 
+4e23 20404f1a call le_write_att_record_common 
+4e24 20404e2f call le_send_att_read_by_type_write_uuid 
+4e25 196097ff increase -1 ,timeup 
+4e26 2022ce13 branch le_send_att_read_by_type_response_end ,zero 
+4e27 20204e11 branch le_send_att_read_by_type_response_next_handle 
+
+le_send_att_read_by_type_write_properties:
+4e28 680109c6 fetch 2 ,mem_temp 
+4e29 6001446d store 2 ,mem_le_l2cap_response + 1 
+4e2a 680083d8 fetch 1 ,mem_le_search_len 
+4e2b 1fe27200 copy pdata ,loopcnt 
+4e2c 20407e67 call get_contr 
+4e2d 20407ec0 call memcpy_fast 
+4e2e 20207e6a branch store_contw 
+
+le_send_att_read_by_type_write_uuid:
+4e2f 20407e64 call get_contw 
+4e30 680109c6 fetch 2 ,mem_temp 
+4e31 e0a10000 istore 2 ,contw 
+4e32 20407e6a call store_contw 
+4e33 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4e34 1fe27200 copy pdata ,loopcnt 
+4e35 1fe0fe05 increase 5 ,pdata 
+4e36 6000c46c store 1 ,mem_le_l2cap_response 
+4e37 20407e64 call get_contw 
+4e38 20407e67 call get_contr 
+4e39 9f260c00 isub loopcnt ,contr 
+4e3a 18c08dff increase -1 ,contr 
+4e3b 20407ec0 call memcpy_fast 
+4e3c 20207e6a branch store_contw 
+
+le_send_att_read_by_type_res_not_characteristic:
+4e3d 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4e3e 600909c6 storet 2 ,mem_temp 
+
+le_send_att_read_by_type_res_not_char_loop:
+4e3f 20404eff call le_att_check_handle_end 
+4e40 24214d6e nbranch le_send_att_error_response_notfound ,positive 
+4e41 20405217 call le_att_get_handle_info_from_ptr 
+4e42 c000cd6e beq 1 ,le_send_att_error_response_notfound 
+4e43 20404f0b call le_att_same_uuid 
+4e44 2422ce56 nbranch le_send_att_read_by_type_res_not_char_next ,zero 
+
+le_check_if_name_uuid:
+4e45 6800c4fa fetch 1 ,mem_le_search_uuid_length 
+4e46 c0814e4d bne 2 ,le_send_att_read_by_type_res_not_name 
+4e47 680144fb fetch 2 ,mem_le_search_uuid 
+4e48 d8402a00 arg uuid_chrctr_device_name ,temp 
+4e49 98467c00 isub temp ,null 
+4e4a 2422ce4d nbranch le_send_att_read_by_type_res_not_name ,zero 
+4e4b 6800c440 fetch 1 ,mem_le_name_len 
+4e4c 20204e4e branch le_send_att_read_by_type_res_not_char_common 
+
+le_send_att_read_by_type_res_not_name:
+4e4d 680083d8 fetch 1 ,mem_le_search_len 
+
+le_send_att_read_by_type_res_not_char_common:
+4e4e 1fe27200 copy pdata ,loopcnt 
+4e4f 1fe0fe02 increase 2 ,pdata 
+4e50 6000c46c store 1 ,mem_le_l2cap_response 
+4e51 680109c6 fetch 2 ,mem_temp 
+4e52 e0a10000 istore 2 ,contw 
+4e53 20407e67 call get_contr 
+4e54 20407ec0 call memcpy_fast 
+4e55 20204f81 branch le_send_autolen 
+
+le_send_att_read_by_type_res_not_char_next:
+4e56 20404efb call le_att_next_handle 
+4e57 20204e3f branch le_send_att_read_by_type_res_not_char_loop 
+
+le_send_att_read_request:
+4e58 6800c464 fetch 1 ,mem_le_temp 
+4e59 1fe0ffff increase -1 ,pdata 
+4e5a 6000c464 store 1 ,mem_le_temp 
+4e5b 1fe3fe00 lshift pdata ,pdata 
+4e5c 98c08c00 iadd contr ,contr 
+4e5d e8c90000 ifetcht 2 ,contr 
+4e5e 6009446c storet 2 ,mem_le_l2cap_response 
+4e5f 20204f81 branch le_send_autolen 
+
+le_send_att_read_response:
+4e60 6800c5a8 fetch 1 ,mem_le_flag 
+4e61 c3004e66 bbit0 flag_ble_insufficient_authentication ,le_send_att_read_response_common 
+4e62 6801039b fetch 2 ,mem_le_att_handle 
+4e63 6809458b fetcht 2 ,mem_le_pairing_handle 
+4e64 98467c00 isub temp ,null 
+4e65 2022ce71 branch le_send_att_read_response_error_insufficient_authentication ,zero 
+
+le_send_att_read_response_common:
+4e66 6809039b fetcht 2 ,mem_le_att_handle 
+4e67 204051f5 call le_att_get_handle_ptr 
+4e68 203a4d6e branch le_send_att_error_response_notfound ,blank 
+4e69 e8c08000 ifetch 1 ,contr 
+4e6a 203a4f81 branch le_send_autolen ,blank 
+4e6b 1fe67c16 sub pdata ,22 ,null 
+4e6c 20214e6e branch le_send_att_read_response_less ,positive 
+4e6d 18007e16 force 22 ,pdata 
+
+le_send_att_read_response_less:
+4e6e 1fe27200 icopy loopcnt 
+4e6f 20407ec0 call memcpy_fast 
+4e70 20204f81 branch le_send_autolen 
+
+le_send_att_read_response_error_insufficient_authentication:
+4e71 6800c56c fetch 1 ,mem_le_pairing_mode 
+4e72 203a4e66 branch le_send_att_read_response_common ,blank 
+4e73 68008362 fetch 1 ,mem_le_state 
+4e74 c2824e66 bbit1 lestate_encryption ,le_send_att_read_response_common 
+4e75 70039d05 jam att_err_insufficient_authentication ,mem_le_err_code 
+4e76 20204d6f branch le_send_att_error_response 
+
+le_send_att_read_blob_request:
+4e77 58000003 setarg 0x0003 
+4e78 6001446c store 2 ,mem_le_l2cap_response 
+4e79 58000008 setarg 0x0008 
+4e7a e0a10000 istore 2 ,contw 
+4e7b 20204f81 branch le_send_autolen 
+
+le_send_att_read_blob_response:
+4e7c 680144e7 fetch 2 ,mem_le_att_offset 
+4e7d 98002200 iforce rega 
+4e7e 6809039b fetcht 2 ,mem_le_att_handle 
+4e7f 204051f5 call le_att_get_handle_ptr 
+4e80 203a4d6e branch le_send_att_error_response_notfound ,blank 
+4e81 e8c08000 ifetch 1 ,contr 
+4e82 9a267200 isub rega ,loopcnt 
+4e83 24214d6e nbranch le_send_att_error_response_notfound ,positive 
+4e84 1f267c16 sub loopcnt ,22 ,null 
+4e85 20214e87 branch le_send_att_read_blob_response_less ,positive 
+4e86 18007216 force 22 ,loopcnt 
+
+le_send_att_read_blob_response_less:
+4e87 1a227e00 deposit rega 
+4e88 98c08c00 iadd contr ,contr 
+4e89 20407ec0 call memcpy_fast 
+4e8a 20204f81 branch le_send_autolen 
+
+le_send_att_read_multiple_request:
+4e8b 58000003 setarg 0x0003 
+4e8c e0a10000 istore 2 ,contw 
+4e8d 58000007 setarg 0x0007 
+4e8e e0a10000 istore 2 ,contw 
+4e8f 58000009 setarg 0x0009 
+4e90 e0a10000 istore 2 ,contw 
+4e91 20204f81 branch le_send_autolen 
+
+le_send_att_read_multiple_response:
+4e92 6800c464 fetch 1 ,mem_le_temp 
+4e93 1fe22600 icopy regc 
+4e94 da200309 arg mem_le_rxbuf + 7 ,rega 
+4e95 da40446c arg mem_le_l2cap_response ,regb 
+4e96 d9600000 arg 0 ,timeup 
+4e97 7858fc00 disable user7 
+
+le_send_att_read_multiple_response_loop:
+4e98 1a220c00 copy rega ,contr 
+4e99 e8c90000 ifetcht 2 ,contr 
+4e9a 18c22200 copy contr ,rega 
+4e9b 204051f5 call le_att_get_handle_ptr 
+4e9c 203a4eab branch le_send_att_read_multiple_response_end ,blank 
+4e9d e8c08000 ifetch 1 ,contr 
+4e9e 1fe27200 icopy loopcnt 
+4e9f 99609600 iadd timeup ,timeup 
+4ea0 19667c18 sub timeup ,24 ,null 
+4ea1 24214eb0 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+4ea2 1a420a00 copy regb ,contw 
+
+le_copy_att_value_loop_3:
+4ea3 e8c08000 ifetch 1 ,contr 
+4ea4 e0a08000 istore 1 ,contw 
+4ea5 c2004ea3 loop le_copy_att_value_loop_3 
+4ea6 18a22400 copy contw ,regb 
+4ea7 7838fc00 enable user7 
+4ea8 1a60a7ff increase -1 ,regc 
+4ea9 2022ceab branch le_send_att_read_multiple_response_end ,zero 
+4eaa 20204e98 branch le_send_att_read_multiple_response_loop 
+
+le_send_att_read_multiple_response_end:
+4eab 2438ceb6 nbranch le_send_att_read_multiple_response_fail ,user7 
+4eac 7858fc00 disable user7 
+4ead 19620400 copy timeup ,temp 
+4eae 18408405 increase 5 ,temp 
+4eaf 20204f89 branch le_send_packet 
+
+le_send_att_read_multiple_response_end_1:
+4eb0 2438ceb6 nbranch le_send_att_read_multiple_response_fail ,user7 
+4eb1 7858fc00 disable user7 
+4eb2 19627e00 deposit timeup 
+4eb3 9f260400 isub loopcnt ,temp 
+4eb4 18408405 increase 5 ,temp 
+4eb5 20204f89 branch le_send_packet 
+
+le_send_att_read_multiple_response_fail:
+4eb6 70039d10 jam att_err_unsupported_group_type ,mem_le_err_code 
+4eb7 20204d6f branch le_send_att_error_response 
+
+le_send_att_read_by_group_type_request:
+4eb8 6801039b fetch 2 ,mem_le_att_handle 
+4eb9 203a4c4d branch le_send_empty_le_data ,blank 
+4eba e0a10000 istore 2 ,contw 
+4ebb 5800ffff setarg 0xffff 
+4ebc e0a10000 istore 2 ,contw 
+4ebd 58002800 setarg 0x2800 
+4ebe e0a10000 istore 2 ,contw 
+4ebf 20204f81 branch le_send_autolen 
+
+le_send_att_read_by_group_type_response:
+4ec0 d9600002 arg 2 ,timeup 
+4ec1 680144e3 fetch 2 ,mem_le_search_handle_start 
+4ec2 600109c6 store 2 ,mem_temp 
+4ec3 7003d900 jam 0 ,mem_le_search_res 
+4ec4 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4ec5 600909c6 storet 2 ,mem_temp 
+4ec6 204051e0 call le_init_attlist_search 
+4ec7 204051f8 call le_att_get_handle_ptr2 
+4ec8 18c08dfe increase -2 ,contr 
+4ec9 18c27e00 copy contr ,pdata 
+4eca 600103c1 store 2 ,mem_le_cur_attlist_start_ptr 
+4ecb 79200025 set1 mark_ext_patch ,mark 
+4ecc 449b4026 bpatch patch26_6 ,mem_patch26 
+
+le_send_att_read_by_group_type_response_loop:
+4ecd 20404eff call le_att_check_handle_end 
+4ece 24214ef1 nbranch le_send_att_read_by_group_type_end0 ,positive 
+4ecf 680909c6 fetcht 2 ,mem_temp 
+4ed0 20405217 call le_att_get_handle_info_from_ptr 
+4ed1 c000cef4 beq 1 ,le_send_att_read_by_group_type_end1 
+4ed2 20404f03 call le_att_same_type 
+4ed3 2422ceed nbranch le_send_att_read_by_group_type_next_handle ,zero 
+4ed4 680083d9 fetch 1 ,mem_le_search_res 
+4ed5 c000cef4 beq 1 ,le_send_att_read_by_group_type_end1 
+4ed6 24344edd nbranch le_send_att_read_by_group_type_store_write_record ,user 
+4ed7 78547c00 disable user 
+4ed8 680083d8 fetch 1 ,mem_le_search_len 
+4ed9 1fe0fe04 increase 4 ,pdata 
+4eda 6000c46c store 1 ,mem_le_l2cap_response 
+4edb 20407e6a call store_contw 
+4edc 20204ee8 branch le_send_att_read_by_group_type_store_record 
+
+le_send_att_read_by_group_type_store_write_record:
+4edd 6800c46c fetch 1 ,mem_le_l2cap_response 
+4ede c00a4ef4 beq 20 ,le_send_att_read_by_group_type_end1 
+4edf 680083d8 fetch 1 ,mem_le_search_len 
+4ee0 1fe0fe04 increase 4 ,pdata 
+4ee1 6808c46c fetcht 1 ,mem_le_l2cap_response 
+4ee2 98467c00 isub temp ,null 
+4ee3 2422cef4 nbranch le_send_att_read_by_group_type_end1 ,zero 
+4ee4 680109c6 fetch 2 ,mem_temp 
+4ee5 1fe0ffff increase -1 ,pdata 
+4ee6 600103c5 store 2 ,mem_le_cur_handle_end 
+4ee7 20404f15 call le_write_att_record 
+
+le_send_att_read_by_group_type_store_record:
+4ee8 680109c6 fetch 2 ,mem_temp 
+4ee9 600103c3 store 2 ,mem_le_cur_handle_start 
+4eea 20404f0e call le_store_att_record 
+4eeb 196097ff increase -1 ,timeup 
+4eec 2022ceef branch le_send_att_read_by_group_type_last_find ,zero 
+
+le_send_att_read_by_group_type_next_handle:
+4eed 20404efb call le_att_next_handle 
+4eee 20204ecd branch le_send_att_read_by_group_type_response_loop 
+
+le_send_att_read_by_group_type_last_find:
+4eef 7003d901 jam 1 ,mem_le_search_res 
+4ef0 20204eed branch le_send_att_read_by_group_type_next_handle 
+
+le_send_att_read_by_group_type_end0:
+4ef1 680109c6 fetch 2 ,mem_temp 
+4ef2 600103c5 store 2 ,mem_le_cur_handle_end 
+4ef3 20204ef8 branch le_send_att_read_by_group_type_end_common 
+
+le_send_att_read_by_group_type_end1:
+4ef4 680109c6 fetch 2 ,mem_temp 
+4ef5 1fe0ffff increase -1 ,pdata 
+4ef6 600103c5 store 2 ,mem_le_cur_handle_end 
+4ef7 20204ef8 branch le_send_att_read_by_group_type_end_common 
+
+le_send_att_read_by_group_type_end_common:
+4ef8 20344d6e branch le_send_att_error_response_notfound ,user 
+4ef9 20404f15 call le_write_att_record 
+4efa 20204f13 branch le_send_auto_len_by_mem 
+
+le_att_next_handle:
+4efb 680909c6 fetcht 2 ,mem_temp 
+4efc 18408401 increase 1 ,temp 
+4efd 600909c6 storet 2 ,mem_temp 
+4efe 20600000 rtn 
+
+le_att_check_handle_end:
+4eff 680909c6 fetcht 2 ,mem_temp 
+4f00 680144e5 fetch 2 ,mem_le_search_handle_end 
+4f01 98467c00 isub temp ,null 
+4f02 20600000 rtn 
+
+le_att_same_type:
+4f03 6808c4e7 fetcht 1 ,mem_le_search_att_type_length 
+4f04 da2044e8 arg mem_le_search_att_type ,rega 
+
+le_att_check_same_common:
+4f05 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4f06 1fe27200 copy pdata ,loopcnt 
+4f07 98467c00 isub temp ,null 
+4f08 24628000 nrtn zero 
+4f09 da4003c8 arg mem_le_cur_uuid ,regb 
+4f0a 20207f55 branch string_compare 
+
+le_att_same_uuid:
+4f0b 6808c4fa fetcht 1 ,mem_le_search_uuid_length 
+4f0c da2044fb arg mem_le_search_uuid ,rega 
+4f0d 20204f05 branch le_att_check_same_common 
+
+le_store_att_record:
+4f0e 680083d8 fetch 1 ,mem_le_search_len 
+4f0f 60008100 store 1 ,mem_tmp_buffer 
+4f10 1fe27200 copy pdata ,loopcnt 
+4f11 20407e67 call get_contr 
+4f12 20207ec0 branch memcpy_fast 
+
+le_send_auto_len_by_mem:
+4f13 20407e64 call get_contw 
+4f14 20204f81 branch le_send_autolen 
+
+le_write_att_record:
+4f15 20407e64 call get_contw 
+4f16 680103c3 fetch 2 ,mem_le_cur_handle_start 
+4f17 e0a10000 istore 2 ,contw 
+4f18 680103c5 fetch 2 ,mem_le_cur_handle_end 
+4f19 e0a10000 istore 2 ,contw 
+
+le_write_att_record_common:
+4f1a 68008100 fetch 1 ,mem_tmp_buffer 
+4f1b 1fe27200 copy pdata ,loopcnt 
+4f1c 20407ec0 call memcpy_fast 
+4f1d 20207e6a branch store_contw 
+
+le_send_att_write_request:
+4f1e 680144f8 fetch 2 ,mem_le_notify_handle 
+4f1f 6001446c store 2 ,mem_le_l2cap_response 
+4f20 6800c50b fetch 1 ,mem_le_handle_data_len 
+4f21 1fe27200 copy pdata ,loopcnt 
+4f22 d8c0450c arg mem_le_handle_data ,contr 
+4f23 20407ec0 call memcpy_fast 
+4f24 20204f81 branch le_send_autolen 
+
+le_send_att_write_response:
+4f25 18000405 force 5 ,temp 
+4f26 20204f89 branch le_send_packet 
+
+le_send_att_prepare_write_request:
+4f27 18000406 force 6 ,temp 
+4f28 20204f89 branch le_send_packet 
+
+le_send_att_continue:
+4f29 680083da fetch 1 ,mem_le_continue_type 
+4f2a c000cf2e beq le_continue_type_notification ,le_send_att_notify_continue 
+4f2b c0014f30 beq le_continue_type_prepare_write_response ,le_send_att_prepare_write_response_continue 
+4f2c 7003da00 jam le_continue_type_null ,mem_le_continue_type 
+4f2d 20600000 rtn 
+
+le_send_att_notify_continue:
+4f2e 6801429e fetch 2 ,mem_cb_update_notify_continue 
+4f2f 20207f69 branch callback_func 
+
+le_send_att_prepare_write_response_continue:
+4f30 680145a0 fetch 2 ,mem_prepare_write_len 
+4f31 203a3b31 branch assert ,blank 
+4f32 680945a6 fetcht 2 ,mem_prepare_write_offest 
+4f33 203a3b31 branch assert ,blank 
+4f34 98467e00 isub temp ,pdata 
+4f35 d840001b arg 27 ,temp 
+4f36 20407faf call not_greater_than 
+4f37 1fe27200 copy pdata ,loopcnt 
+4f38 da200a41 arg mem_temp_prepare_write_request ,rega 
+4f39 680145a6 fetch 2 ,mem_prepare_write_offest 
+4f3a 9a20a200 iadd rega ,rega 
+4f3b 9f20fe00 iadd loopcnt ,pdata 
+4f3c 600145a6 store 2 ,mem_prepare_write_offest 
+4f3d 680945a0 fetcht 2 ,mem_prepare_write_len 
+4f3e 98460400 isub temp ,temp 
+4f3f 2442cf5e ncall le_send_att_insert_continue ,zero 
+4f40 7003da02 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+4f41 d8a04467 arg mem_le_txpayload ,contw 
+4f42 1a220c00 copy rega ,contr 
+4f43 20407ec0 call memcpy_fast 
+4f44 d8200001 arg 1 ,type 
+4f45 20204f59 branch le_send_not_fill_l2cap_len 
+
+le_send_att_prepare_write_response:
+4f46 680145a0 fetch 2 ,mem_prepare_write_len 
+4f47 203a3b31 branch assert ,blank 
+4f48 1fe08405 add pdata ,5 ,temp 
+4f49 60094467 storet 2 ,mem_le_txpayload 
+4f4a d8400012 arg 18 ,temp 
+4f4b 20407faf call not_greater_than 
+4f4c 1fe27200 copy pdata ,loopcnt 
+4f4d 600145a6 store 2 ,mem_prepare_write_offest 
+4f4e 680945a0 fetcht 2 ,mem_prepare_write_len 
+4f4f 98460400 isub temp ,temp 
+4f50 2442cf5e ncall le_send_att_insert_continue ,zero 
+4f51 7003da02 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+4f52 d8200002 arg 0x02 ,type 
+4f53 680145a4 fetch 2 ,mem_prepare_handle 
+4f54 6001446c store 2 ,mem_le_l2cap + 1 
+4f55 680145a2 fetch 2 ,mem_le_prepare_write_req_offset 
+4f56 e0a10000 istore 2 ,contw 
+4f57 d8c00a41 arg mem_temp_prepare_write_request ,contr 
+4f58 20407ec0 call memcpy_fast 
+
+le_send_not_fill_l2cap_len:
+4f59 58004467 setarg mem_le_txpayload 
+4f5a 98a67e00 isub contw ,pdata 
+4f5b 1fe60400 sub pdata ,0 ,temp 
+4f5c 6008c466 storet 1 ,mem_le_txlen 
+4f5d 20204f90 branch le_send_non_l2cap 
+
+le_send_att_insert_continue:
+4f5e 6801c544 fetch 3 ,mem_le_xtype_fifo 
+4f5f 243a4f62 nbranch le_send_att_insert_cont_next ,blank 
+4f60 7045461f jam attop_continue ,mem_le_xtype_fifo + 2 
+4f61 20600000 rtn 
+
+le_send_att_insert_cont_next:
+4f62 20404bd4 call le_xtype_fifo_is_near_full 
+4f63 243a3b31 nbranch assert ,blank 
+4f64 7045451f jam attop_continue ,mem_le_xtype_fifo + 1 
+4f65 20600000 rtn 
+
+le_send_att_execute_write_request:
+4f66 18000406 force 6 ,temp 
+4f67 20204f89 branch le_send_packet 
+
+le_send_att_execute_write_response:
+4f68 18000405 force 5 ,temp 
+4f69 20204f89 branch le_send_packet 
+
+le_att_check_notification_enable:
+4f6a 79200025 set1 mark_ext_patch ,mark 
+4f6b 449bc026 bpatch patch26_7 ,mem_patch26 
+4f6c 18408401 increase 1 ,temp 
+4f6d 204051f5 call le_att_get_handle_ptr 
+4f6e 18c08dfe increase -2 ,contr 
+4f6f e8c10000 ifetch 2 ,contr 
+4f70 d8402902 arg client_charactertic_configuration ,temp 
+4f71 98467c00 isub temp ,null 
+4f72 24628000 nrtn zero 
+4f73 18c08c01 increase 1 ,contr 
+4f74 18c22200 copy contr ,rega 
+4f75 e8c08000 ifetch 1 ,contr 
+4f76 20600000 rtn 
+
+le_send_att_handle_value_notification:
+4f77 6801429c fetch 2 ,mem_cb_update_notify_value 
+4f78 20207f69 branch callback_func 
+
+le_send_att_handle_value_indication:
+4f79 18000406 force 6 ,temp 
+4f7a 20204f89 branch le_send_packet 
+
+le_send_att_handle_value_confirmation:
+4f7b 18000406 force 6 ,temp 
+4f7c 20204f89 branch le_send_packet 
+
+le_send_att_write_command:
+4f7d 18000406 force 6 ,temp 
+4f7e 20204f89 branch le_send_packet 
+
+le_send_att_signed_write_command:
+4f7f 18000406 force 6 ,temp 
+4f80 20204f89 branch le_send_packet 
+
+le_send_autolen:
+4f81 79200025 set1 mark_ext_patch ,mark 
+4f82 449c4027 bpatch patch27_0 ,mem_patch27 
+4f83 58004467 setarg mem_le_txpayload 
+4f84 98a67e00 isub contw ,pdata 
+4f85 1fe60400 sub pdata ,0 ,temp 
+4f86 20204f89 branch le_send_packet 
+
+le_send_empty:
+4f87 18000400 force 0 ,temp 
+4f88 18000201 force 1 ,type 
+
+le_send_packet:
+4f89 79200025 set1 mark_ext_patch ,mark 
+4f8a 449cc027 bpatch patch27_1 ,mem_patch27 
+4f8b 6008c466 storet 1 ,mem_le_txlen 
+4f8c 28200602 compare 2 ,type ,3 
+4f8d 2420cf90 nbranch le_send_non_l2cap ,true 
+4f8e 1840fffc add temp ,-4 ,pdata 
+4f8f 60014467 store 2 ,mem_le_txpayload 
+
+le_send_non_l2cap:
+4f90 68088379 fetcht 1 ,mem_le_arq 
+4f91 20404bd0 call le_xtype_fifo_is_empty 
+
+le_send_non_l2cap1:
+4f92 7d3a0404 nsetflag blank ,md ,temp 
+
+le_send_non_l2cap2:
+4f93 79200405 set1 wak ,temp 
+4f94 18417efc and temp ,0xfc ,pdata 
+4f95 9821fe00 ior type ,pdata 
+4f96 60008379 store 1 ,mem_le_arq 
+4f97 1fe17e1f and_into 0x1f ,pdata 
+4f98 6000c465 store 1 ,mem_le_txheader 
+4f99 79200025 set1 mark_ext_patch ,mark 
+4f9a 449d4027 bpatch patch27_2 ,mem_patch27 
+4f9b 6800c465 fetch 1 ,mem_le_txheader 
+4f9c 28200601 compare 1 ,type ,3 
+4f9d 2420cfa0 nbranch le_send_no_txlen ,true 
+4f9e 6800c466 fetch 1 ,mem_le_txlen 
+4f9f 207a0000 rtn blank 
+
+le_send_no_txlen:
+4fa0 6803c466 fetch 7 ,mem_le_txheader + 1 
+4fa1 68008362 fetch 1 ,mem_le_state 
+4fa2 c4020000 rtnbit0 lestate_encryption 
+4fa3 204071b6 call load_sk 
+4fa4 20207109 branch le_encrypt 
+
+le_parse:
+4fa5 79200025 set1 mark_ext_patch ,mark 
+4fa6 449dc027 bpatch patch27_3 ,mem_patch27 
+4fa7 20404bd2 call le_xtype_fifo_is_full 
+4fa8 243a3b31 nbranch assert ,blank 
+4fa9 247a0000 nrtn blank 
+4faa 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fab 207a0000 rtn blank 
+4fac 68008302 fetch 1 ,mem_le_rxbuf 
+4fad 2fe00601 compare 1 ,pdata ,3 
+4fae 2020d307 branch le_parse_continue ,true 
+4faf 68038303 fetch 7 ,mem_le_rxbuf + 1 
+4fb0 68008302 fetch 1 ,mem_le_rxbuf 
+4fb1 2fe00602 compare 2 ,pdata ,3 
+4fb2 2020cfcb branch le_parse_l2cap ,true 
+
+le_parse0:
+4fb3 68008304 fetch 1 ,mem_le_rxbuf + 2 
+4fb4 600083bb store 1 ,mem_le_rx_ll_opcode 
+4fb5 1fe22600 copy pdata ,regc 
+4fb6 79200025 set1 mark_ext_patch ,mark 
+4fb7 449e4027 bpatch patch27_4 ,mem_patch27 
+4fb8 1a627e00 copy regc ,pdata 
+4fb9 c000501f beq ll_connection_update_req ,le_parse_connection_update_req 
+4fba c000d02b beq ll_channel_map_req ,le_parse_channel_map_req 
+4fbb c0015033 beq ll_terminate_ind ,le_parse_terminate_ind 
+4fbc c001d039 beq ll_enc_req ,le_parse_enc_req 
+4fbd c002504a beq ll_enc_rsp ,le_parse_enc_rsp 
+4fbe c002d04f beq ll_start_enc_req ,le_parse_start_enc_req 
+4fbf c0035054 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+4fc0 c003d059 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+4fc1 c004505a beq ll_feature_req ,le_parse_feature_req 
+4fc2 c004d05c beq ll_feature_rsp ,le_parse_feature_rsp 
+4fc3 c005505d beq ll_pause_enc_req ,le_parse_pause_enc_req 
+4fc4 c005d062 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+4fc5 c0065065 beq ll_version_ind ,le_parse_version_ind 
+4fc6 c006d068 beq ll_reject_ind ,le_parse_reject_ind 
+4fc7 c0095063 beq ll_ping_req ,le_parse_ping_req 
+4fc8 6000c550 store 1 ,mem_le_ll_cur_opcode 
+4fc9 7009bd27 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+4fca 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_l2cap:
+4fcb 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fcc 1fe17e1f and pdata ,0x1f ,pdata 
+4fcd 207a0000 rtn blank 
+4fce 68010304 fetch 2 ,mem_le_rxbuf + 2 
+4fcf 6001039e store 2 ,mem_le_l2cap_pdu_length 
+4fd0 68010306 fetch 2 ,mem_le_rxbuf + 4 
+4fd1 c002500d beq le_l2cap_cid_att ,le_parse_att 
+4fd2 c0034ffb beq le_l2cap_cid_smp ,le_parse_smp 
+4fd3 20600000 rtn 
+
+le_parse_continue_att:
+4fd4 70456901 jam le_continue_flag_rx ,mem_le_continue_flag 
+4fd5 6800839a fetch 1 ,mem_le_att_opcode 
+4fd6 c0094fea beq attop_write_request ,le_parse_l2cap_continue_write_request 
+4fd7 c00b4fee beq attop_prepare_write_request ,le_parse_l2cap_continue_prepare_write_request 
+4fd8 c0294fe6 beq attop_write_command ,le_parse_l2cap_continue_write_command 
+4fd9 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fda 20600000 rtn 
+
+le_parse_l2cap_continue_common:
+4fdb 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fdc 1fe22400 icopy regb 
+4fdd da200304 arg mem_le_rxbuf + 2 ,rega 
+4fde 2040516d call le_writeatt_cb 
+4fdf 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fe0 6809459a fetcht 2 ,mem_le_buff_len 
+4fe1 9840fe00 iadd temp ,pdata 
+4fe2 6001459a store 2 ,mem_le_buff_len 
+4fe3 6809459c fetcht 2 ,mem_le_buff_len_all 
+4fe4 98467c00 isub temp ,null 
+4fe5 20600000 rtn 
+
+le_parse_l2cap_continue_write_command:
+4fe6 20404fdb call le_parse_l2cap_continue_common 
+4fe7 24628000 nrtn zero 
+4fe8 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fe9 20600000 rtn 
+
+le_parse_l2cap_continue_write_request:
+4fea 20404fdb call le_parse_l2cap_continue_common 
+4feb 24628000 nrtn zero 
+4fec 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fed 20205123 branch le_parse_att_write_request_end 
+
+le_parse_l2cap_continue_prepare_write_request:
+4fee 680945a0 fetcht 2 ,mem_prepare_write_len 
+4fef 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4ff0 1fe27200 icopy loopcnt 
+4ff1 9840fe00 iadd temp ,pdata 
+4ff2 600145a0 store 2 ,mem_prepare_write_len 
+4ff3 dfe00a41 arg mem_temp_prepare_write_request ,pdata 
+4ff4 98408a00 iadd temp ,contw 
+4ff5 d8c00304 arg mem_le_rxbuf + 2 ,contr 
+4ff6 20407ec0 call memcpy_fast 
+4ff7 20404fdb call le_parse_l2cap_continue_common 
+4ff8 24628000 nrtn zero 
+4ff9 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4ffa 20205169 branch le_parse_att_prepare_write_request_end 
+
+le_parse_smp:
+4ffb 79200025 set1 mark_ext_patch ,mark 
+4ffc 449ec027 bpatch patch27_5 ,mem_patch27 
+4ffd e8c08000 ifetch 1 ,contr 
+4ffe c000d069 beq smp_pairing_request ,le_parse_smp_pairing_request 
+4fff c001508b beq smp_pairing_response ,le_parse_smp_pairing_response 
+5000 c001d090 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+5001 c00250a0 beq smp_pairing_random ,le_parse_smp_pairing_random 
+5002 c002d0a8 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+5003 c00350d5 beq smp_encryption_information ,le_parse_smp_encryption_information 
+5004 c003d0d7 beq smp_master_identification ,le_parse_smp_master_identification 
+5005 c00450d8 beq smp_identity_information ,le_parse_smp_identity_information 
+5006 c004d0e0 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+5007 c00550e3 beq smp_signing_information ,le_parse_smp_signing_information 
+5008 c005d0e4 beq smp_security_request ,le_parse_smp_security_request 
+5009 c00650c9 beq smp_pairing_public_key ,le_parse_smp_public_key 
+500a c006d0d0 beq smp_pairing_dhkey_check ,le_parse_smp_dhkey_check 
+500b 7009bd45 jam xt_smp_pairing_failed ,mem_fifo_temp 
+500c 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att:
+500d 79200025 set1 mark_ext_patch ,mark 
+500e 449f4027 bpatch patch27_6 ,mem_patch27 
+500f e8c18000 ifetch 3 ,contr 
+5010 6001839a store 3 ,mem_le_att_opcode 
+5011 c00150e8 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+5012 c001d0e5 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+5013 c00250eb beq attop_find_information_request ,le_parse_att_find_information_request 
+5014 c00350ee beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+5015 c00450f8 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+5016 c005510c beq attop_read_request ,le_parse_att_read_request 
+5017 c0065110 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+5018 c0075114 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+5019 c008511a beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+501a c0095120 beq attop_write_request ,le_parse_att_write_request 
+501b c00b5142 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+501c c00c516b beq attop_execute_write_request ,le_parse_att_execute_write_request 
+501d c029511e beq attop_write_command ,le_parse_att_write_command 
+501e 20600000 rtn 
+
+le_parse_connection_update_req:
+501f e8c48000 ifetch 9 ,contr 
+5020 6004c45b store 9 ,mem_le_new_param 
+5021 e8c10000 ifetch 2 ,contr 
+5022 60010382 store 2 ,mem_le_instant 
+5023 68008362 fetch 1 ,mem_le_state 
+5024 79207e05 set1 lestate_update_param ,pdata 
+5025 60008362 store 1 ,mem_le_state 
+5026 6800c132 fetch 1 ,mem_device_option 
+5027 c1848000 rtnne dvc_op_shutter 
+5028 70413100 jam 0 ,mem_lpm_mode 
+5029 7048c71e jam 30 ,mem_shutter_conn_update_timer 
+502a 20600000 rtn 
+
+le_parse_channel_map_req:
+502b e8c28000 ifetch 5 ,contr 
+502c 6002c456 store 5 ,mem_le_new_map 
+502d e8c10000 ifetch 2 ,contr 
+502e 60010382 store 2 ,mem_le_instant 
+502f 68008362 fetch 1 ,mem_le_state 
+5030 79207e06 set1 lestate_update_map ,pdata 
+5031 60008362 store 1 ,mem_le_state 
+5032 20600000 rtn 
+
+le_parse_terminate_ind:
+5033 6800c132 fetch 1 ,mem_device_option 
+5034 c084d036 bne dvc_op_shutter ,le_parse_terminate_ind_common 
+5035 7048bb01 jam 1 ,mem_shutter_key_data_flag_1 
+
+le_parse_terminate_ind_common:
+5036 58000014 setarg 20 
+5037 60010390 store 2 ,mem_le_superto 
+5038 20600000 rtn 
+
+le_parse_enc_req:
+5039 e8c40000 ifetch 8 ,contr 
+503a 60044573 store 8 ,mem_le_rand 
+503b e8c10000 ifetch 2 ,contr 
+503c 60014571 store 2 ,mem_le_ediv 
+503d e8c40000 ifetch 8 ,contr 
+503e 60044551 store 8 ,mem_le_skdm 
+503f e8c20000 ifetch 4 ,contr 
+5040 6002449a store 4 ,mem_le_ivm 
+5041 7009bd24 jam xt_ll_enc_rsp ,mem_fifo_temp 
+5042 20404bd6 call le_xtype_fifo_in 
+5043 70456b01 jam flag_le_enc_start ,mem_le_enc_state 
+5044 6800c56a fetch 1 ,mem_le_pairing_state 
+5045 c1010000 rtneq flag_le_pairing_after_auth 
+5046 6800c132 fetch 1 ,mem_device_option 
+5047 c004e418 beq dvc_op_shutter ,load_device_list_mode_4_shutter 
+5048 c1850000 rtnne dvc_op_module 
+5049 2020640c branch load_device_list_mode_4 
+
+le_parse_enc_rsp:
+504a e8c40000 ifetch 8 ,contr 
+504b 60044559 store 8 ,mem_le_skds 
+504c e8c20000 ifetch 4 ,contr 
+504d 6002449e store 4 ,mem_le_ivs 
+504e 202070c8 branch generate_sk 
+
+le_parse_start_enc_req:
+504f 68008362 fetch 1 ,mem_le_state 
+5050 79207e04 set1 lestate_encryption ,pdata 
+5051 60008362 store 1 ,mem_le_state 
+5052 7009bd26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+5053 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_start_enc_rsp:
+5054 20748000 rtn master 
+5055 7009bd26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+5056 20404bd6 call le_xtype_fifo_in 
+5057 7009bd32 jam bt_evt_le_start_enc ,mem_fifo_temp 
+5058 20207d86 branch ui_ipc_send_event 
+
+le_parse_unknown_rsp:
+5059 20600000 rtn 
+
+le_parse_feature_req:
+505a 7009bd29 jam xt_ll_feature_rsp ,mem_fifo_temp 
+505b 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_feature_rsp:
+505c 20600000 rtn 
+
+le_parse_pause_enc_req:
+505d 70456b02 jam flag_le_enc_pause ,mem_le_enc_state 
+505e 7009bd2b jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+505f 20404bd6 call le_xtype_fifo_in 
+5060 7009bd33 jam bt_evt_le_pause_enc ,mem_fifo_temp 
+5061 20207d86 branch ui_ipc_send_event 
+
+le_parse_pause_enc_rsp:
+5062 20600000 rtn 
+
+le_parse_ping_req:
+5063 7009bd33 jam xt_ll_ping_rsp ,mem_fifo_temp 
+5064 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_version_ind:
+5065 20748000 rtn master 
+5066 7009bd2c jam xt_ll_version_ind ,mem_fifo_temp 
+5067 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_reject_ind:
+5068 20600000 rtn 
+
+le_parse_smp_pairing_request:
+5069 6000c4d5 store 1 ,mem_le_preq 
+506a e8c30000 ifetch 6 ,contr 
+506b e0a30000 istore 6 ,contw 
+506c 7009bd42 jam xt_smp_pairing_response ,mem_fifo_temp 
+506d 20404bd6 call le_xtype_fifo_in 
+506e 6800c132 fetch 1 ,mem_device_option 
+506f c004d07b beq dvc_op_shutter ,le_parse_smp_pairing_request_shutter 
+5070 20405086 call le_check_master_support_secure_connect 
+5071 70456a01 jam flag_le_pairing_start ,mem_le_pairing_state 
+5072 6800c4d6 fetch 1 ,mem_le_preq_iocap 
+5073 c0005078 beq flag_iocap_displayonly ,le_set_tk_0 
+5074 c000d078 beq flag_iocap_displayyesno ,le_set_tk_0 
+5075 c001d078 beq flag_iocap_noinputnooutput ,le_set_tk_0 
+5076 6800c56c fetch 1 ,mem_le_pairing_mode 
+5077 c001507d beq le_pairing_mode_lagacy_passkey ,le_genernate_tk 
+
+le_set_tk_0:
+5078 dfe00000 arg 0 ,pdata 
+5079 6002456d store 4 ,mem_le_tk 
+507a 20600000 rtn 
+
+le_parse_smp_pairing_request_shutter:
+507b 7048ba01 jam 1 ,mem_shutter_key_data_flag 
+507c 20600000 rtn 
+
+le_genernate_tk:
+507d da20456d arg mem_le_tk ,rega 
+507e 1a220a00 copy rega ,contw 
+507f df200003 arg 3 ,loopcnt 
+5080 20405918 call generate_random_loop 
+5081 6801456f fetch 2 ,mem_le_tk + 2 
+5082 1fe17e07 and_into 0x7 ,pdata 
+5083 6001456f store 2 ,mem_le_tk + 2 
+5084 7009bd34 jam bt_evt_le_tk_generate ,mem_fifo_temp 
+5085 20207d86 branch ui_ipc_send_event 
+
+le_check_master_support_secure_connect:
+5086 6800c4d8 fetch 1 ,mem_le_preq_auth 
+5087 c3818000 rtnbit1 le_auth_secure_connection_pairing_bit 
+5088 6800c56c fetch 1 ,mem_le_pairing_mode 
+5089 c4038000 rtnbit0 le_pairing_mode_secure_connect_bit 
+508a 20203e6b branch app_ble_disconnect 
+
+le_parse_smp_pairing_response:
+508b 6000c4dc store 1 ,mem_le_pres 
+508c e8c30000 ifetch 6 ,contr 
+508d e0a30000 istore 6 ,contw 
+508e 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+508f 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_confirm:
+5090 18c22200 copy contr ,rega 
+5091 6800c56c fetch 1 ,mem_le_pairing_mode 
+5092 c041d09a beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_confirm_secure_passkey 
+5093 1a220c00 copy rega ,contr 
+5094 d8a044b3 arg mem_le_rconfirm ,contw 
+5095 20407e87 call memcpy16 
+5096 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+5097 2034cbd6 branch le_xtype_fifo_in ,master 
+5098 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+5099 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_confirm_secure_passkey:
+509a 1a220c00 copy rega ,contr 
+509b d8a044b3 arg mem_le_rconfirm ,contw 
+509c 20407e87 call memcpy16 
+509d 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+509e 70456608 jam le_sc_stat_passkey_wait_confirm ,mem_le_secure_connect_state 
+509f 20600000 rtn 
+
+le_parse_smp_pairing_random:
+50a0 18c22200 copy contr ,rega 
+50a1 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+50a2 c000d0ab beq 1 ,le_parse_smp_pairing_random_sc 
+50a3 1a220c00 copy rega ,contr 
+50a4 204070ba call authenticate_rconfirm 
+50a5 2022d0c0 branch le_parse_smp_pairing_random_success ,zero 
+
+le_pairing_failed:
+50a6 7009bd45 jam xt_smp_pairing_failed ,mem_fifo_temp 
+50a7 20404bd6 call le_xtype_fifo_in 
+
+le_parse_smp_pairing_failed:
+50a8 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+50a9 7009bd30 jam bt_evt_le_pairing_fail ,mem_fifo_temp 
+50aa 20207d86 branch ui_ipc_send_event 
+
+le_parse_smp_pairing_random_sc:
+50ab d8a00352 arg mem_le_mrand ,contw 
+50ac 1a220c00 copy rega ,contr 
+50ad 20407e87 call memcpy16 
+50ae 6800c56c fetch 1 ,mem_le_pairing_mode 
+50af c041d0b6 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_random_sc_passkey 
+50b0 20406e6e call function_g2 
+50b1 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50b2 20404bd6 call le_xtype_fifo_in 
+50b3 6800c56c fetch 1 ,mem_le_pairing_mode 
+50b4 c0415d60 beq le_pairing_mode_secure_connect_numeric ,module_hci_event_le_gkey 
+50b5 20600000 rtn 
+
+le_parse_smp_pairing_random_sc_passkey:
+50b6 20406edc call function_f4_ca 
+50b7 d8a00a11 arg mem_aes_cmac_temp ,contw 
+50b8 20406f24 call load_inverse_result 
+50b9 da200a11 arg mem_aes_cmac_temp ,rega 
+50ba da4044b3 arg mem_le_rconfirm ,regb 
+50bb df200010 arg 16 ,loopcnt 
+50bc 20407f55 call string_compare 
+50bd 2422d2d8 nbranch le_dhkey_check_fail ,zero 
+50be 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50bf 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_random_success:
+50c0 204070b5 call generate_stk 
+50c1 7009bd31 jam bt_evt_le_pairing_success ,mem_fifo_temp 
+50c2 20407d86 call ui_ipc_send_event 
+50c3 7044b201 jam 1 ,mem_ltk_exists 
+50c4 70456a02 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+50c5 7009bd23 jam xt_ll_enc_req ,mem_fifo_temp 
+50c6 2034cbd6 branch le_xtype_fifo_in ,master 
+50c7 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50c8 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_public_key:
+50c9 68008303 fetch 1 ,mem_le_rxbuf + 1 
+50ca 1fe0fffb increase -5 ,pdata 
+50cb 600083db store 1 ,mem_le_public_length 
+50cc 1fe27200 copy pdata ,loopcnt 
+50cd d8a008e2 arg mem_le_pubkey_remote_x_256 ,contw 
+50ce 18c08c05 increase 5 ,contr 
+50cf 20207ec0 branch memcpy_fast 
+
+le_parse_smp_dhkey_check:
+50d0 d8a00992 arg mem_sp_confirm_remote ,contw 
+50d1 20407e87 call memcpy16 
+50d2 70456606 jam le_sc_stat_receive_dhkey ,mem_le_secure_connect_state 
+50d3 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+50d4 20600000 rtn 
+
+le_parse_smp_encryption_information:
+50d5 d8a00342 arg mem_le_peer_ltk ,contw 
+50d6 20207e87 branch memcpy16 
+
+le_parse_smp_master_identification:
+50d7 20600000 rtn 
+
+le_parse_smp_identity_information:
+50d8 d8a0457b arg mem_le_irk ,contw 
+50d9 20407e87 call memcpy16 
+50da 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+50db c1000000 rtneq master_public_addr 
+50dc 68008377 fetch 1 ,mem_le_plap + 5 
+50dd 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+50de 20608000 rtn true 
+50df 20203e7b branch app_ble_store_reconn_info 
+
+le_parse_smp_identity_address_information:
+50e0 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+50e1 70456a03 jam flag_le_pairing_end ,mem_le_pairing_state 
+50e2 20600000 rtn 
+
+le_parse_smp_signing_information:
+50e3 20600000 rtn 
+
+le_parse_smp_security_request:
+50e4 20600000 rtn 
+
+le_parse_att_exchange_mtu_response:
+50e5 68010309 fetch 2 ,mem_le_rxbuf + 7 
+50e6 6001454e store 2 ,mem_le_remote_mtu 
+50e7 20600000 rtn 
+
+le_parse_att_exchange_mtu_request:
+50e8 204050e5 call le_parse_att_exchange_mtu_response 
+50e9 7009bd03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+50ea 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_find_information_request:
+50eb 204050fc call le_get_search_handle_start_end_common 
+50ec 7009bd05 jam attop_find_information_response ,mem_fifo_temp 
+50ed 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_find_by_type_value_request:
+50ee 204050fc call le_get_search_handle_start_end_common 
+50ef e8c10000 ifetch 2 ,contr 
+50f0 600144fb store 2 ,mem_le_search_uuid 
+50f1 20407e6d call store_contr 
+50f2 d8a044e7 arg mem_le_search_att_type_length ,contw 
+50f3 6801039e fetch 2 ,mem_le_l2cap_pdu_length 
+50f4 1fe0fff9 increase -7 ,pdata 
+50f5 20405105 call le_get_search_common2 
+50f6 7009bd07 jam attop_find_by_type_value_response ,mem_fifo_temp 
+50f7 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_type_request:
+50f8 204050fc call le_get_search_handle_start_end_common 
+50f9 20405109 call le_get_search_att_uuid 
+50fa 7009bd09 jam attop_read_by_type_response ,mem_fifo_temp 
+50fb 20204bd6 branch le_xtype_fifo_in 
+
+le_get_search_handle_start_end_common:
+50fc 1fecfe00 rshift8 pdata ,pdata 
+50fd 600144e3 store 2 ,mem_le_search_handle_start 
+50fe e8c10000 ifetch 2 ,contr 
+50ff 600144e5 store 2 ,mem_le_search_handle_end 
+5100 20600000 rtn 
+
+le_get_search_att_type:
+5101 20407e6d call store_contr 
+5102 d8a044e7 arg mem_le_search_att_type_length ,contw 
+
+le_get_search_common:
+5103 6801039e fetch 2 ,mem_le_l2cap_pdu_length 
+5104 1fe0fffb increase -5 ,pdata 
+
+le_get_search_common2:
+5105 e0a08000 istore 1 ,contw 
+5106 1fe27200 copy pdata ,loopcnt 
+5107 20407e67 call get_contr 
+5108 20207ec0 branch memcpy_fast 
+
+le_get_search_att_uuid:
+5109 20407e6d call store_contr 
+510a d8a044fa arg mem_le_search_uuid_length ,contw 
+510b 20205103 branch le_get_search_common 
+
+le_parse_att_read_request:
+510c 68010309 fetch 2 ,mem_le_rxbuf + 7 
+510d 6001039b store 2 ,mem_le_att_handle 
+510e 7009bd0b jam attop_read_response ,mem_fifo_temp 
+510f 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_blob_request:
+5110 e8c10000 ifetch 2 ,contr 
+5111 600144e7 store 2 ,mem_le_att_offset 
+5112 7009bd0d jam attop_read_blob_response ,mem_fifo_temp 
+5113 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_multiple_request:
+5114 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5115 1fe0fffb increase -5 ,pdata 
+5116 1fe37e00 rshift pdata ,pdata 
+5117 6000c464 store 1 ,mem_le_temp 
+5118 7009bd0f jam attop_read_multiple_response ,mem_fifo_temp 
+5119 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_group_type_request:
+511a 204050fc call le_get_search_handle_start_end_common 
+511b 20405101 call le_get_search_att_type 
+511c 7009bd11 jam attop_read_by_group_type_response ,mem_fifo_temp 
+511d 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_write_command:
+511e 2040512f call le_parse_att_write_common 
+511f 20205125 branch le_check_long_packet_patch 
+
+le_parse_att_write_request:
+5120 2040512f call le_parse_att_write_common 
+5121 20405125 call le_check_long_packet_patch 
+5122 24628000 nrtn zero 
+
+le_parse_att_write_request_end:
+5123 7009bd13 jam attop_write_response ,mem_fifo_temp 
+5124 20204bd6 branch le_xtype_fifo_in 
+
+le_check_long_packet_patch:
+5125 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5126 1fe0fffc increase -4 ,pdata 
+5127 6001459a store 2 ,mem_le_buff_len 
+5128 1fe0fffd increase -3 ,pdata 
+5129 e8c90000 ifetcht 2 ,contr 
+512a 6009459c storet 2 ,mem_le_buff_len_all 
+512b 6009459e storet 2 ,mem_le_buff_data_len_all 
+512c 184085fd increase -3 ,temp 
+512d 98467c00 isub temp ,null 
+512e 20600000 rtn 
+
+le_parse_att_write_common:
+512f 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5130 1fe0fff9 increase -7 ,pdata 
+5131 1fe27200 icopy loopcnt 
+5132 1f222400 copy loopcnt ,regb 
+5133 6800c5a8 fetch 1 ,mem_le_flag 
+5134 c300d140 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_write_common1 
+5135 6809039b fetcht 2 ,mem_le_att_handle 
+5136 204051f5 call le_att_get_handle_ptr 
+5137 207a0000 rtn blank 
+5138 e8c08000 ifetch 1 ,contr 
+5139 9f267c00 isub loopcnt ,null 
+513a 2021513c branch le_parse_att_write_common0 ,positive 
+513b 1fe27200 copy pdata ,loopcnt 
+
+le_parse_att_write_common0:
+513c 18c20a00 copy contr ,contw 
+513d 1f222400 copy loopcnt ,regb 
+513e d8c0030b arg mem_le_rxbuf + 9 ,contr 
+513f 20407ec0 call memcpy_fast 
+
+le_parse_att_write_common1:
+5140 da20030b arg mem_le_rxbuf + 9 ,rega 
+5141 2020516d branch le_writeatt_cb 
+
+le_parse_att_prepare_write_request:
+5142 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5143 1fe0fffc increase -4 ,pdata 
+5144 6001459a store 2 ,mem_le_buff_len 
+5145 e8c90000 ifetcht 2 ,contr 
+5146 6009459c storet 2 ,mem_le_buff_len_all 
+5147 184085fe increase -2 ,temp 
+5148 6009459e storet 2 ,mem_le_buff_data_len_all 
+5149 68008303 fetch 1 ,mem_le_rxbuf + 1 
+514a 1fe0fff7 increase -9 ,pdata 
+514b 600145a0 store 2 ,mem_prepare_write_len 
+514c 1fe27200 icopy loopcnt 
+514d 1f222400 copy loopcnt ,regb 
+514e 6800c5a8 fetch 1 ,mem_le_flag 
+514f c300d15b bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_prepare_write_request1 
+5150 6809039b fetcht 2 ,mem_le_att_handle 
+5151 204051f5 call le_att_get_handle_ptr 
+5152 203a5169 branch le_parse_att_prepare_write_request_end ,blank 
+5153 e8c08000 ifetch 1 ,contr 
+5154 9f267c00 isub loopcnt ,null 
+5155 20215157 branch le_parse_att_prepare_write_request0 ,positive 
+5156 1fe27200 copy pdata ,loopcnt 
+
+le_parse_att_prepare_write_request0:
+5157 18c20a00 copy contr ,contw 
+5158 1f222400 copy loopcnt ,regb 
+5159 d8c0030d arg mem_le_rxbuf + 11 ,contr 
+515a 20407ec0 call memcpy_fast 
+
+le_parse_att_prepare_write_request1:
+515b 1a427200 copy regb ,loopcnt 
+515c d8a00a41 arg mem_temp_prepare_write_request ,contw 
+515d d8c0030d arg mem_le_rxbuf + 11 ,contr 
+515e 20407ec0 call memcpy_fast 
+515f da20030d arg mem_le_rxbuf + 11 ,rega 
+5160 6801030b fetch 2 ,mem_le_rxbuf + 9 
+5161 600145a2 store 2 ,mem_le_prepare_write_req_offset 
+5162 6809039b fetcht 2 ,mem_le_att_handle 
+5163 600945a4 storet 2 ,mem_prepare_handle 
+5164 2040516d call le_writeatt_cb 
+5165 6801459a fetch 2 ,mem_le_buff_len 
+5166 6809459c fetcht 2 ,mem_le_buff_len_all 
+5167 98467c00 isub temp ,null 
+5168 24628000 nrtn zero 
+
+le_parse_att_prepare_write_request_end:
+5169 7009bd17 jam attop_prepare_write_response ,mem_fifo_temp 
+516a 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_execute_write_request:
+516b 7009bd19 jam attop_execute_write_response ,mem_fifo_temp 
+516c 20204bd6 branch le_xtype_fifo_in 
+
+le_writeatt_cb:
+516d 6801429a fetch 2 ,mem_cb_att_write 
+516e 207a0000 rtn blank 
+516f 98007a00 iforce pc 
+
+le_supervision_update:
+5170 680a037e fetcht 4 ,mem_le_supervision_timer 
+5171 20403b1e call get_clkbt 
+5172 98461600 isub temp ,timeup 
+5173 19627e00 deposit timeup 
+5174 68090390 fetcht 2 ,mem_le_superto 
+5175 18520400 lshift4 temp ,temp 
+5176 18438400 lshift temp ,temp 
+5177 98467e00 isub temp ,pdata 
+5178 20600000 rtn 
+
+le_supervision_flush:
+5179 20403b1e call get_clkbt 
+517a 6002037e store 4 ,mem_le_supervision_timer 
+517b 20600000 rtn 
+
+le_adv:
+517c 70001624 jam 36 ,mem_le_ch_mapped 
+
+le_adv_loop:
+517d 79200025 set1 mark_ext_patch ,mark 
+517e 449fc027 bpatch patch27_7 ,mem_patch27 
+517f 6800c3ff fetch 1 ,mem_le_adv_enable 
+5180 207a0000 rtn blank 
+5181 d8e00001 arg le_adv_interval_timer ,queue 
+5182 20407ee2 call timer_check 
+5183 247a0000 nrtn blank 
+5184 7854fc00 disable master 
+5185 78287c00 enable swfine 
+5186 20404b1e call le_init_adv 
+5187 204049d4 call le_next_adv_channel 
+5188 20404a8a call le_send_adv_ind 
+5189 2436d193 nbranch le_adv_not_match ,match 
+518a 68008003 fetch 1 ,mem_le_req_rcv 
+518b 1fe0fe01 increase 1 ,pdata 
+518c 60008003 store 1 ,mem_le_req_rcv 
+518d 79200025 set1 mark_ext_patch ,mark 
+518e 44a04028 bpatch patch28_0 ,mem_patch28 
+518f 68008302 fetch 1 ,mem_le_rxbuf 
+5190 1fe17e0f and pdata ,0x0f ,pdata 
+5191 c001cac5 beq scan_req ,le_send_scan_response 
+5192 c002d1af beq connect_req ,le_parse_connect_req 
+
+le_adv_not_match:
+5193 20002710 nop 10000 
+5194 68008016 fetch 1 ,mem_le_ch_mapped 
+5195 c093d17d bne 39 ,le_adv_loop 
+5196 d8e00001 arg le_adv_interval_timer ,queue 
+5197 6801451e fetch 2 ,mem_le_adv_interval_max 
+5198 20207ed4 branch timer_init 
+
+le_receive_window_size:
+5199 79200025 set1 mark_ext_patch ,mark 
+519a 44a0c028 bpatch patch28_1 ,mem_patch28 
+519b 68008399 fetch 1 ,mem_le_peer_sca 
+519c 204049ad call le_sca_map 
+519d 68010364 fetch 2 ,mem_le_tsniff 
+519e 984ffe00 imul32 temp ,pdata 
+519f d8400177 arg 375 ,temp 
+51a0 984ffe00 imul32 temp ,pdata 
+51a1 d84186a0 arg 100000 ,temp 
+51a2 9846fc00 idiv temp 
+51a3 6800838d fetch 1 ,mem_le_window_size 
+51a4 d8404e20 arg 20000 ,temp 
+51a5 984ffe00 imul32 temp ,pdata 
+51a6 60024596 store 4 ,mem_le_transmit_window 
+51a7 79200025 set1 mark_ext_patch ,mark 
+51a8 44a14028 bpatch patch28_2 ,mem_patch28 
+51a9 68014161 fetch 2 ,mem_rx_window_sniff 
+51aa 20407f53 call wait_div_end 
+51ab 18078400 quotient temp 
+51ac 9840fe00 iadd temp ,pdata 
+51ad 60010370 store 2 ,mem_le_receive_window 
+51ae 20600000 rtn 
+
+le_parse_connect_req:
+51af 79200025 set1 mark_ext_patch ,mark 
+51b0 44a1c028 bpatch patch28_3 ,mem_patch28 
+51b1 6803030a fetch 6 ,mem_le_rxbuf + 8 
+51b2 680b453e fetcht 6 ,mem_le_lap 
+51b3 98467c00 isub temp ,null 
+51b4 24628000 nrtn zero 
+51b5 20404bc9 call le_scan_check_sender_addr_type 
+51b6 1a227e00 copy rega ,pdata 
+51b7 6000c52b store 1 ,mem_le_conn_peer_addr_type 
+51b8 68038317 fetch 7 ,mem_le_rxbuf + 21 
+51b9 60038100 store 7 ,mem_tmp_buffer 
+51ba e8c40000 ifetch 8 ,contr 
+51bb e0a40000 istore 8 ,contw 
+51bc 68030304 fetch 6 ,mem_le_rxbuf + 2 
+51bd 60030372 store 6 ,mem_le_plap 
+51be 79200025 set1 mark_ext_patch ,mark 
+51bf 44a24028 bpatch patch28_4 ,mem_patch28 
+51c0 18c08c06 increase 6 ,contr 
+51c1 e8c40000 ifetch 8 ,contr 
+51c2 60040386 store 8 ,mem_le_access 
+51c3 e8c90000 ifetcht 2 ,contr 
+51c4 184b8400 lshift2 temp ,temp 
+51c5 e8c10000 ifetch 2 ,contr 
+51c6 1febfe00 lshift2 pdata ,pdata 
+51c7 60010364 store 2 ,mem_le_tsniff 
+51c8 60020366 store 4 ,mem_le_anchor 
+51c9 98467e00 isub temp ,pdata 
+51ca 1fe0d1fe add pdata ,-2 ,clke_bt 
+51cb e8c48000 ifetch 9 ,contr 
+51cc 6004838e store 9 ,mem_le_slave_latency 
+51cd 79200025 set1 mark_ext_patch ,mark 
+51ce 44a2c028 bpatch patch28_5 ,mem_patch28 
+51cf e8c08000 ifetch 1 ,contr 
+51d0 1ff18400 rshift4 pdata ,temp 
+51d1 18430400 rshift temp ,temp 
+51d2 60088399 storet 1 ,mem_le_peer_sca 
+51d3 1fe17e1f and_into 0x1f ,pdata 
+51d4 6000837b store 1 ,mem_le_hop 
+51d5 20405199 call le_receive_window_size 
+51d6 204049ef call le_calc_channel_map 
+51d7 20404902 call le_init_slave 
+51d8 2040327a call context_new 
+51d9 24628000 nrtn zero 
+51da 79200025 set1 mark_ext_patch ,mark 
+51db 44a34028 bpatch patch28_6 ,mem_patch28 
+51dc 204038d1 call calc_clke_offset 
+51dd 7009bd14 jam bt_evt_le_connected ,mem_fifo_temp 
+51de 20407d86 call ui_ipc_send_event 
+51df 20203260 branch context_save 
+
+le_init_attlist_search:
+51e0 79200025 set1 mark_ext_patch ,mark 
+51e1 44a3c028 bpatch patch28_7 ,mem_patch28 
+51e2 680144e3 fetch 2 ,mem_le_search_handle_start 
+51e3 98002400 iforce regb 
+51e4 680144e5 fetch 2 ,mem_le_search_handle_end 
+51e5 98002600 iforce regc 
+51e6 68014637 fetch 2 ,mem_ui_le_uuid_table 
+51e7 98000c00 iforce contr 
+51e8 78347c00 enable user 
+51e9 20600000 rtn 
+
+le_att_handle_inrange:
+51ea e8c10000 ifetch 2 ,contr 
+51eb 207a0000 rtn blank 
+51ec 9a467c00 isub regb ,null 
+51ed 24610000 nrtn positive 
+51ee 9a667c00 isub regc ,null 
+51ef 20628000 rtn zero 
+51f0 202151f3 branch le_att_handle_blank ,positive 
+51f1 18007c01 force 1 ,null 
+51f2 20600000 rtn 
+
+le_att_handle_blank:
+51f3 18007e00 force 0 ,pdata 
+51f4 20600000 rtn 
+
+le_att_get_handle_ptr:
+51f5 204051f8 call le_att_get_handle_ptr2 
+51f6 2022d205 branch le_att_get_handle_ptr_found ,zero 
+51f7 20600000 rtn 
+
+le_att_get_handle_ptr2:
+51f8 79200025 set1 mark_ext_patch ,mark 
+51f9 44a44029 bpatch patch29_0 ,mem_patch29 
+51fa 68014637 fetch 2 ,mem_ui_le_uuid_table 
+51fb 98000c00 iforce contr 
+
+le_att_get_handle_loop1:
+51fc e8c10000 ifetch 2 ,contr 
+51fd 207a0000 rtn blank 
+51fe 98467c00 isub temp ,null 
+51ff 20628000 rtn zero 
+5200 e8c08000 ifetch 1 ,contr 
+5201 98c08c00 iadd contr ,contr 
+5202 e8c08000 ifetch 1 ,contr 
+5203 98c08c00 iadd contr ,contr 
+5204 202051fc branch le_att_get_handle_loop1 
+
+le_att_get_handle_ptr_found:
+5205 e8c08000 ifetch 1 ,contr 
+5206 98c08c00 iadd contr ,contr 
+5207 20600000 rtn 
+
+le_att_get_short_uuid_ptr:
+5208 79200025 set1 mark_ext_patch ,mark 
+5209 44a4c029 bpatch patch29_1 ,mem_patch29 
+520a 68014637 fetch 2 ,mem_ui_le_uuid_table 
+520b 98000c00 iforce contr 
+
+le_att_get_short_uuid_loop:
+520c e8c10000 ifetch 2 ,contr 
+520d 207a0000 rtn blank 
+520e e8c08000 ifetch 1 ,contr 
+520f 98c08c00 iadd contr ,contr 
+5210 18c08dfe increase -2 ,contr 
+5211 e8c10000 ifetch 2 ,contr 
+5212 98467c00 isub temp ,null 
+5213 20628000 rtn zero 
+5214 e8c08000 ifetch 1 ,contr 
+5215 98c08c00 iadd contr ,contr 
+5216 2020520c branch le_att_get_short_uuid_loop 
+
+le_att_get_handle_info_from_ptr:
+5217 680103c1 fetch 2 ,mem_le_cur_attlist_start_ptr 
+5218 1fe20c00 copy pdata ,contr 
+5219 2020521b branch le_att_get_handle_info + 1 
+
+le_att_get_handle_info:
+521a 79200025 set1 mark_ext_patch ,mark 
+521b 44a54029 bpatch patch29_2 ,mem_patch29 
+521c 68014637 fetch 2 ,mem_ui_le_uuid_table 
+521d 98000c00 iforce contr 
+521e 18422200 copy temp ,rega 
+
+le_att_get_handle_loop:
+521f e8c10000 ifetch 2 ,contr 
+5220 203a5228 branch le_att_unfind_handle ,blank 
+5221 9a267c00 isub rega ,null 
+5222 2022d22a branch le_att_finded_handle ,zero 
+5223 e8c08000 ifetch 1 ,contr 
+5224 98c08c00 iadd contr ,contr 
+5225 e8c08000 ifetch 1 ,contr 
+5226 98c08c00 iadd contr ,contr 
+5227 2020521f branch le_att_get_handle_loop 
+
+le_att_unfind_handle:
+5228 58000001 setarg 1 
+5229 20600000 rtn 
+
+le_att_finded_handle:
+522a e8c08000 ifetch 1 ,contr 
+522b 600083c7 store 1 ,mem_le_cur_uuid_lenth 
+522c 1fe27200 copy pdata ,loopcnt 
+522d d8a003c8 arg mem_le_cur_uuid ,contw 
+522e 20407ec0 call memcpy_fast 
+522f e8c08000 ifetch 1 ,contr 
+5230 600083d8 store 1 ,mem_le_search_len 
+5231 20407e6d call store_contr 
+5232 58000000 setarg 0 
+5233 20600000 rtn 
+
+le_modified_name:
+5234 79200025 set1 mark_ext_patch ,mark 
+5235 44a5c029 bpatch patch29_3 ,mem_patch29 
+5236 20405238 call le_modified_name_att_list 
+5237 2020524a branch le_modified_name_adv 
+
+le_modified_name_att_list:
+5238 d8402a00 arg uuid_chrctr_device_name ,temp 
+5239 20405208 call le_att_get_short_uuid_ptr 
+523a 207a0000 rtn blank 
+523b e8c08000 ifetch 1 ,contr 
+523c 18c20a00 copy contr ,contw 
+523d 6808c440 fetcht 1 ,mem_le_name_len 
+523e 18427200 copy temp ,loopcnt 
+523f 98467c00 isub temp ,null 
+5240 24215247 nbranch le_name_length_longer_than_att ,positive 
+5241 98460400 isub temp ,temp 
+5242 d8c04441 arg mem_le_name ,contr 
+5243 20407ecd call memcpy 
+5244 18427200 copy temp ,loopcnt 
+5245 2442d283 ncall memcpy_empty ,zero 
+5246 20600000 rtn 
+
+le_name_length_longer_than_att:
+5247 1fe27200 copy pdata ,loopcnt 
+5248 d8c04441 arg mem_le_name ,contr 
+5249 20207ec0 branch memcpy_fast 
+
+le_modified_name_adv:
+524a da604420 arg mem_le_adv_data_len + 32 ,regc 
+524b da204401 arg mem_le_adv_data ,rega 
+524c 20405257 call le_modified_name_adv_and_scan 
+524d 58000000 setarg 0 
+524e 79347e00 setflag user ,0 ,pdata 
+524f 600089be store 1 ,mem_pdatatemp 
+5250 da604440 arg mem_le_scan_data_len + 32 ,regc 
+5251 da204421 arg mem_le_scan_data ,rega 
+5252 20405257 call le_modified_name_adv_and_scan 
+5253 20740000 rtn user 
+5254 680089be fetch 1 ,mem_pdatatemp 
+5255 203a3b31 branch assert ,blank 
+5256 20600000 rtn 
+
+le_modified_name_adv_and_scan:
+5257 79200025 set1 mark_ext_patch ,mark 
+5258 44a64029 bpatch patch29_4 ,mem_patch29 
+5259 204064c0 call enable_usr 
+525a 20407ea5 call clear_temp_block 
+525b da400000 arg 0 ,regb 
+525c d8a009e2 arg mem_le_data_temp ,contw 
+525d 20405272 call le_modified_name_adv_loop 
+525e 6800c440 fetch 1 ,mem_le_name_len 
+525f 1fe08401 add pdata ,1 ,temp 
+5260 9a40a200 iadd regb ,rega 
+5261 1a20a202 increase 2 ,rega 
+5262 1a267c1f sub rega ,0x1f ,null 
+5263 24215270 nbranch le_modified_name_adv_and_scan_name_overflow ,positive 
+5264 e0a88000 istoret 1 ,contw 
+5265 d8400009 arg 0x09 ,temp 
+5266 e0a88000 istoret 1 ,contw 
+5267 98007200 iforce loopcnt 
+5268 20407ec0 call memcpy_fast 
+5269 1a222400 copy rega ,regb 
+
+le_modified_name_adv_and_scan_store_data:
+526a 1a427e00 deposit regb 
+526b 600089e1 store 1 ,mem_le_data_len_temp 
+526c d8c009e1 arg mem_le_data_len_temp ,contr 
+526d 5fffffe0 setarg -32 
+526e 9a608a00 iadd regc ,contw 
+526f 20207e85 branch memcpy32 
+
+le_modified_name_adv_and_scan_name_overflow:
+5270 204031d4 call disable_usr 
+5271 2020526a branch le_modified_name_adv_and_scan_store_data 
+
+le_modified_name_adv_loop:
+5272 ea208000 ifetch 1 ,rega 
+5273 207a0000 rtn blank 
+5274 1fe0fe01 pincrease 1 
+5275 e8c88000 ifetcht 1 ,contr 
+5276 18467c09 sub temp ,0x09 ,null 
+5277 2022d281 branch le_modified_name_adv_found_name ,zero 
+5278 9a40a400 iadd regb ,regb 
+5279 1a220c00 copy rega ,contr 
+527a 98007200 iforce loopcnt 
+527b 20407ec0 call memcpy_fast 
+527c 18c22200 copy contr ,rega 
+
+le_modified_name_adv_loop2:
+527d 1a227e00 deposit rega 
+527e 9a667c00 isub regc ,null 
+527f 20610000 rtn positive 
+5280 20205272 branch le_modified_name_adv_loop 
+
+le_modified_name_adv_found_name:
+5281 9a20a200 iadd rega ,rega 
+5282 2020527d branch le_modified_name_adv_loop2 
+
+memcpy_empty:
+5283 58000020 setarg space 
+5284 e0a08000 istore 1 ,contw 
+5285 c2005283 loop memcpy_empty 
+5286 20600000 rtn 
+
+le_lpm_set_mult:
+5287 79200025 set1 mark_ext_patch ,mark 
+5288 44a6c029 bpatch patch29_5 ,mem_patch29 
+5289 7855fc00 disable wake 
+528a 2037528c branch le_lpm_set_mult_attempt ,attempt 
+528b 2436d29a nbranch le_lpm_lost ,match 
+
+le_lpm_set_mult_attempt:
+528c 20403cb7 call lpm_match 
+528d 68014161 fetch 2 ,mem_rx_window_sniff 
+528e 60010370 store 2 ,mem_le_receive_window 
+528f 68008302 fetch 1 ,mem_le_rxbuf 
+5290 2fe00601 compare 1 ,pdata ,3 
+5291 2420bccb nbranch lpm_mult_short ,true 
+5292 6800c465 fetch 1 ,mem_le_txheader 
+5293 2fe00601 compare 1 ,pdata ,3 
+5294 2420bccb nbranch lpm_mult_short ,true 
+5295 680142a2 fetch 2 ,mem_cb_le_set_mult 
+5296 20407f69 call callback_func 
+5297 68008362 fetch 1 ,mem_le_state 
+5298 c282bccb bbit1 lestate_update_param ,lpm_mult_short 
+5299 20203cb0 branch lpm_mult_wait_timeout 
+
+le_lpm_lost:
+529a 68094161 fetcht 2 ,mem_rx_window_sniff 
+529b 18430400 rshift temp ,temp 
+529c 68010370 fetch 2 ,mem_le_receive_window 
+529d 9840fe00 iadd temp ,pdata 
+529e 60010370 store 2 ,mem_le_receive_window 
+529f 20203cc3 branch lpm_lost 
+
+le_clean_att_list_handle_enable:
+52a0 79200025 set1 mark_ext_patch ,mark 
+52a1 44a74029 bpatch patch29_6 ,mem_patch29 
+52a2 70459500 jam 0 ,mem_le_switch_send_data 
+52a3 680944f8 fetcht 2 ,mem_le_notify_handle 
+52a4 20404f6a call le_att_check_notification_enable 
+52a5 1a220a00 copy rega ,contw 
+52a6 58000000 setarg 0 
+52a7 e0a08000 istore 1 ,contw 
+52a8 20600000 rtn 
+
+le_secure_connect_sm:
+52a9 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+52aa c1000000 rtneq 0 
+52ab 6800c564 fetch 1 ,mem_le_secure_connect_flag 
+52ac c1810000 rtnne le_sp_flag_commit_256 
+52ad 79200025 set1 mark_ext_patch ,mark 
+52ae 44a8402a bpatch patch2a_0 ,mem_patch2a 
+52af 70456400 jam sp_flag_standby ,mem_le_secure_connect_flag 
+52b0 6800c566 fetch 1 ,mem_le_secure_connect_state 
+52b1 c000d2e8 beq le_sc_stat_receive_public_key ,le_sc_receive_public_key 
+52b2 c00152f0 beq le_sc_stat_wait_send_public_key ,le_sc_wait_send_public_key 
+52b3 c001d2e1 beq le_sc_stat_send_public_key ,le_sc_send_public_key 
+52b4 c00352ca beq le_sc_stat_receive_dhkey ,le_sc_receive_dhkey 
+52b5 c003d2c2 beq le_sc_stat_wait_confirm_gkey ,le_sc_wait_confirm_gkey 
+52b6 c00452b8 beq le_sc_stat_passkey_wait_confirm ,le_sc_passkey_wait_confirm 
+52b7 20600000 rtn 
+
+le_sc_passkey_wait_confirm:
+52b8 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+52b9 1fe20e00 copy pdata ,queue 
+52ba 1fe0fe01 increase 1 ,pdata 
+52bb 6000c6eb store 1 ,mem_authentication_passkey_times 
+52bc 6802456d fetch 4 ,mem_le_tk 
+52bd afefffff qisolate1 pdata 
+52be 58000080 setarg 0x80 
+52bf 7920fe00 setflag true ,0 ,pdata 
+52c0 6000c6ec store 1 ,mem_passkey_1bit 
+52c1 202052e4 branch le_sc_ready_send_pairing_confirm 
+
+le_sc_wait_confirm_gkey:
+52c2 6800c567 fetch 1 ,mem_le_sc_confirm_gkey_flag 
+52c3 70456700 jam flag_le_sc_confrim_null ,mem_le_sc_confirm_gkey_flag 
+52c4 c000d2c7 beq flag_le_sc_confrim_gkey_ok ,le_sc_confirm_gkey_ok 
+52c5 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52c6 20600000 rtn 
+
+le_sc_confirm_gkey_ok:
+52c7 70456a02 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+52c8 7009bd4d jam xt_smp_pairing_dhkey_check ,mem_fifo_temp 
+52c9 20204bd6 branch le_xtype_fifo_in 
+
+le_sc_receive_dhkey:
+52ca 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+52cb c001d2ce beq sp_key_valid_256 ,le_dhkey_ready 
+52cc 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52cd 20600000 rtn 
+
+le_dhkey_ready:
+52ce 20406eae call function_f5 
+52cf 6800c56c fetch 1 ,mem_le_pairing_mode 
+52d0 c041d2d9 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok_passkey 
+52d1 20405078 call le_set_tk_0 
+
+le_dhkey_ready_common:
+52d2 20406e9a call function_f6_ea 
+52d3 da200a11 arg mem_aes_cmac_temp ,rega 
+52d4 da400992 arg mem_sp_confirm_remote ,regb 
+52d5 df200010 arg 16 ,loopcnt 
+52d6 20407f55 call string_compare 
+52d7 2022d2da branch le_dhkey_check_ok ,zero 
+
+le_dhkey_check_fail:
+52d8 202050a6 branch le_pairing_failed 
+
+le_sc_confirm_gkey_ok_passkey:
+52d9 202052d2 branch le_dhkey_ready_common 
+
+le_dhkey_check_ok:
+52da 7044b201 jam 1 ,mem_ltk_exists 
+52db 6800c56c fetch 1 ,mem_le_pairing_mode 
+52dc c040d2c7 beq le_pairing_mode_secure_connect_justwork ,le_sc_confirm_gkey_ok 
+52dd c041d2c7 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok 
+52de 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52df 70456607 jam le_sc_stat_wait_confirm_gkey ,mem_le_secure_connect_state 
+52e0 20600000 rtn 
+
+le_sc_send_public_key:
+52e1 6800c56c fetch 1 ,mem_le_pairing_mode 
+52e2 c041d2e6 beq le_pairing_mode_secure_connect_passkey ,le_sc_send_public_key_passkey 
+52e3 7046ec00 jam 0 ,mem_passkey_1bit 
+
+le_sc_ready_send_pairing_confirm:
+52e4 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+52e5 20204bd6 branch le_xtype_fifo_in 
+
+le_sc_send_public_key_passkey:
+52e6 7046eb00 jam 0 ,mem_authentication_passkey_times 
+52e7 2020507d branch le_genernate_tk 
+
+le_sc_receive_public_key:
+52e8 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52e9 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+52ea c001d2ec beq sp_key_valid_256 ,le_public_key_ready 
+52eb 20600000 rtn 
+
+le_public_key_ready:
+52ec 7008dd00 jam sp_key_invalid ,mem_sp_dhkey_invalid 
+52ed 20407ab9 call sp_dhkey_calc_256 
+52ee 70456602 jam le_sc_stat_wait_send_public_key ,mem_le_secure_connect_state 
+52ef 20600000 rtn 
+
+le_sc_wait_send_public_key:
+52f0 20404bd0 call le_xtype_fifo_is_empty 
+52f1 203a52f4 branch le_public_key_ready_send ,blank 
+52f2 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52f3 20600000 rtn 
+
+le_public_key_ready_send:
+52f4 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f5 20404bd6 call le_xtype_fifo_in 
+52f6 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f7 20404bd6 call le_xtype_fifo_in 
+52f8 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f9 20204bd6 branch le_xtype_fifo_in 
+
+le_pairing_public_key_continue:
+52fa dfe008e2 arg mem_le_pubkey_remote_x_256 ,pdata 
+52fb 680883db fetcht 1 ,mem_le_public_length 
+52fc 98408a00 iadd temp ,contw 
+52fd 68008303 fetch 1 ,mem_le_rxbuf + 1 
+52fe 1fe27200 copy pdata ,loopcnt 
+52ff 98408400 iadd temp ,temp 
+5300 20407ec0 call memcpy_fast 
+5301 600883db storet 1 ,mem_le_public_length 
+5302 18427e00 copy temp ,pdata 
+5303 c1a00000 rtnne 64 
+5304 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+5305 70456601 jam le_sc_stat_receive_public_key ,mem_le_secure_connect_state 
+5306 20600000 rtn 
+
+le_parse_continue:
+5307 79200025 set1 mark_ext_patch ,mark 
+5308 44a8c02a bpatch patch2a_1 ,mem_patch2a 
+5309 680083db fetch 1 ,mem_le_public_length 
+530a c08052fa bne 0 ,le_pairing_public_key_continue 
+530b 20204fd4 branch le_parse_continue_att 
+
+init_lmp:
+530c 20758000 rtn wake 
+
+init_lmp_work:
+530d 79200025 set1 mark_ext_patch ,mark 
+530e 44a9402a bpatch patch2a_2 ,mem_patch2a 
+530f 58000000 setarg 0 
+5310 60008048 store 1 ,mem_lmp_to_send 
+5311 60008055 store 1 ,mem_conn_sm 
+5312 60008078 store 1 ,mem_lmo_opcode1 
+5313 6000807c store 1 ,mem_lmo_opcode2 
+5314 6000c1f8 store 1 ,mem_esco_addr 
+5315 600083fd store 1 ,mem_auth_enable 
+5316 6000816c store 1 ,mem_connection_options 
+5317 600088d9 store 1 ,mem_pairing_auth 
+5318 7045f400 jam switch_flag_init ,mem_switch_flag 
+5319 70024d00 jam 0 ,mem_switch_fail_master_count 
+531a 7003fe00 jam null_encryp ,mem_wait_encryption 
+
+init_lmp_reinit:
+531b 7008d900 jam 0 ,mem_pairing_auth 
+531c 7008d800 jam 0 ,mem_sp_localsm 
+531d 7003f700 jam 0 ,mem_lmp_conn_state 
+
+parse_rx_done:
+531e 20600000 rtn 
+
+parse_lmp:
+531f 79200025 set1 mark_ext_patch ,mark 
+5320 44a9c02a bpatch patch2a_3 ,mem_patch2a 
+5321 2054d90a call setlocalsm_master ,master 
+5322 2454d90e ncall setlocalsm_slave ,master 
+5323 204058c5 call lmo_fifo_check 
+5324 247a0000 nrtn blank 
+5325 6800804c fetch 1 ,mem_state_map 
+5326 c4030000 rtnbit0 smap_rxlmp 
+5327 793ffe06 set0 smap_rxlmp ,pdata 
+5328 793f8001 set0 mark_rxbuf_inuse ,mark 
+5329 6000804c store 1 ,mem_state_map 
+532a 68008475 fetch 1 ,mem_rxbuf 
+532b 6808804c fetcht 1 ,mem_state_map 
+532c 2feffe00 isolate1 smap_lmptidinit ,pdata 
+532d 79208401 setflag true ,smap_lmptid ,temp 
+532e 6008804c storet 1 ,mem_state_map 
+532f 18410402 and_into 0x2 ,temp 
+5330 6008807f storet 1 ,mem_lmo_tid2 
+5331 6808804c fetcht 1 ,mem_state_map 
+5332 1fe37e00 rshift pdata ,pdata 
+5333 6000807d store 1 ,mem_lmi_opcode2 
+5334 79200025 set1 mark_ext_patch ,mark 
+5335 44aa402a bpatch patch2a_4 ,mem_patch2a 
+5336 6800807d fetch 1 ,mem_lmi_opcode2 
+5337 c03fd37f beq lmp_escape ,parse_lmp_escape 
+5338 c001d3cb beq lmp_accepted ,parse_lmp_accepted 
+5339 c00253dd beq lmp_not_accepted ,parse_lmp_not_accepted 
+533a c01e5372 beq lmp_set_afh ,parse_lmp_set_afh 
+533b c002d36e beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+533c c007d5bf beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+533d c0085440 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+533e c011d45e beq lmp_auto_rate ,parse_lmp_auto_rate 
+533f c01cd5d8 beq lmp_test_control ,parse_lmp_test_control 
+5340 c01c55d3 beq lmp_test_activate ,parse_lmp_test_activate 
+5341 c018d443 beq lmp_setup_complete ,parse_lmp_setup_complete 
+5342 c01bd4cc beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+5343 c013d4c8 beq lmp_features_req ,parse_lmp_features_req 
+5344 c019d4c5 beq lmp_host_connection_req ,parse_lmp_conn_req 
+5345 c012d4ca beq lmp_version_req ,parse_lmp_version_req 
+5346 c013545a beq lmp_version_res ,parse_lmp_version_res 
+5347 c003d452 beq lmp_detach ,parse_lmp_detach 
+5348 c016d449 beq lmp_max_slot ,parse_lmp_max_slot 
+5349 c017544a beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+534a c000d4c1 beq lmp_name_req ,parse_lmp_name_req 
+534b c00154ac beq lmp_name_res ,parse_lmp_name_res 
+534c c01455ca beq lmp_features_res ,parse_lmp_features_res 
+534d c004d4a2 beq lmp_comb_key ,parse_lmp_comb_key 
+534e c005d47b beq lmp_au_rand ,parse_lmp_au_rand 
+534f c004545f beq lmp_in_rand ,parse_lmp_in_rand 
+5350 c0065486 beq lmp_sres ,parse_lmp_sres 
+5351 c00fd456 beq lmp_incr_power_req ,parse_lmp_incr_power 
+5352 c0105458 beq lmp_decr_power_req ,parse_lmp_decr_power 
+5353 c010d4e6 beq lmp_max_power ,parse_lmp_max_power 
+5354 c01154e6 beq lmp_min_power ,parse_lmp_min_power 
+5355 c01ad4e7 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+5356 c01b54e8 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+5357 c01254e6 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+5358 c01a54e9 beq lmp_slot_offset ,parse_lmp_slot_offset 
+5359 c00bd4f2 beq lmp_sniff_req ,parse_lmp_sniff_req 
+535a c008d509 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+535b c009550d beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+535c c009d50f beq lmp_switch_req ,parse_lmp_switch_req 
+535d c006d521 beq lmp_temp_rand ,parse_lmp_temp_rand 
+535e c0075521 beq lmp_temp_key ,parse_lmp_temp_key 
+535f c017d4c6 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+5360 c0185521 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+5361 c0055521 beq lmp_unit_key ,parse_lmp_unit_key 
+5362 c00c5522 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+5363 c0195521 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+5364 c01ed527 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+5365 c01f5568 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+5366 c01fd562 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+5367 c020558f beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+5368 c020d5a1 beq lmp_dhkey_check ,parse_dhkey_check 
+5369 c00355be beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+536a c01d5370 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+
+reject_unknown_packet:
+536b 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+
+reject_lmp_packet:
+536c 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+536d 20600000 rtn 
+
+parse_lmp_clkoffset_req:
+536e 70007c06 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+536f 20600000 rtn 
+
+parse_enc_key_size_mask_req:
+5370 70007c3b jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+5371 20600000 rtn 
+
+parse_lmp_set_afh:
+5372 68020476 fetch 4 ,mem_rxbuf + 1 
+5373 1fe3fe00 lshift pdata ,pdata 
+5374 60024172 store 4 ,mem_afh_instant 
+5375 6800847a fetch 1 ,mem_rxbuf + 5 
+5376 6000c179 store 1 ,mem_afh_new_mod 
+5377 6802847b fetch 5 ,mem_rxbuf + 6 
+5378 6002c187 store 5 ,mem_afh_map_new 
+5379 68028480 fetch 5 ,mem_rxbuf + 11 
+537a e0a28000 istore 5 ,contw 
+537b 68008031 fetch 1 ,mem_mode 
+537c 79207e03 set1 afh_change ,pdata 
+537d 60008031 store 1 ,mem_mode 
+537e 20600000 rtn 
+
+parse_lmp_escape:
+537f 79200025 set1 mark_ext_patch ,mark 
+5380 44aac02a bpatch patch2a_5 ,mem_patch2a 
+5381 68008476 fetch 1 ,mem_rxbuf + 1 
+5382 79207e07 set1 7 ,pdata 
+5383 6000807d store 1 ,mem_lmi_opcode2 
+5384 c040d3a2 beq lmp_ext_accepted ,parse_lmpext_accepted 
+5385 c04153a7 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+5386 c04ad4cd beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+5387 c04b54e6 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+5388 c045d4db beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+5389 c041d3bf beq lmp_ext_features_req ,parse_lmpext_features_req 
+538a c04253c1 beq lmp_ext_features_res ,parse_lmpext_features_res 
+538b c0485394 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+538c c04bd3b8 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+538d c04c53bd beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+538e c04cd397 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+538f c04d539a beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+5390 c1420000 rtneq lmp_ext_features_res 
+
+reject_unknown_ext_packet:
+5391 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5392 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+5393 20600000 rtn 
+
+parse_lmpext_chn_classification_req:
+5394 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5395 70007e2e jam not_support_chn_classification ,mem_lmo_reason2 
+5396 20600000 rtn 
+
+parse_lmpext_iocap_req:
+5397 2040539c call iocap_lmpext_load 
+5398 70007c9a jam lmp_io_cap_res ,mem_lmo_opcode2 
+5399 20600000 rtn 
+
+parse_lmpext_iocap_res:
+539a 2040539c call iocap_lmpext_load 
+539b 202053a0 branch iocap_lmpext_common 
+
+iocap_lmpext_load:
+539c d8a046e6 arg mem_sp_iocap_remote ,contw 
+539d 68018477 fetch 3 ,mem_rxbuf + 2 
+539e e0a18000 istore 3 ,contw 
+539f 20600000 rtn 
+
+iocap_lmpext_common:
+53a0 2020f6f3 branch master_set_mem_master_sp_flag ,true 
+53a1 20600000 rtn 
+
+parse_lmpext_accepted:
+53a2 68008478 fetch 1 ,mem_rxbuf + 3 
+53a3 79207e07 set1 7 ,pdata 
+53a4 600083ef store 1 ,mem_lmi_accepted_opcode 
+53a5 c045d3ac beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+53a6 20600000 rtn 
+
+parse_lmpext_not_accepted:
+53a7 68008478 fetch 1 ,mem_rxbuf + 3 
+53a8 79207e07 set1 7 ,pdata 
+53a9 600083ef store 1 ,mem_lmi_accepted_opcode 
+53aa c045d3b0 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+53ab 20600000 rtn 
+
+parse_lmpext_accepted_ptt:
+53ac 6800c1fa fetch 1 ,mem_ptt 
+53ad 6808804c fetcht 1 ,mem_state_map 
+53ae 7d3a0405 nsetflag blank ,smap_edr ,temp 
+53af 6008804c storet 1 ,mem_state_map 
+
+parse_lmpext_not_accepted_ptt:
+53b0 68008030 fetch 1 ,mem_state 
+53b1 c4028000 rtnbit0 state_init_seq 
+53b2 793ffe05 set0 state_init_seq ,pdata 
+53b3 60008030 store 1 ,mem_state 
+53b4 680083fd fetch 1 ,mem_auth_enable 
+53b5 247a0000 nrtn blank 
+53b6 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+53b7 20600000 rtn 
+
+parse_lmpext_pause_encrypt:
+53b8 2434d3bb nbranch parse_lmpext_pause_encrypt_slave ,master 
+53b9 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+53ba 202058f6 branch tid_reply 
+
+parse_lmpext_pause_encrypt_slave:
+53bb 70007c97 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+53bc 20600000 rtn 
+
+parse_lmpext_resume_encrypt:
+53bd 204058f6 call tid_reply 
+53be 20205615 branch lmp_start_encryption 
+
+parse_lmpext_features_req:
+53bf 70007c84 jam lmp_ext_features_res ,mem_lmo_opcode2 
+53c0 20600000 rtn 
+
+parse_lmpext_features_res:
+53c1 68088479 fetcht 1 ,mem_rxbuf + 4 
+53c2 18410401 and temp ,0x1 ,temp 
+53c3 600883f6 storet 1 ,mem_remote_sppcap 
+53c4 6800c271 fetch 1 ,mem_hci_cmd 
+53c5 c0a8d3c7 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+53c6 70427100 jam 0 ,mem_hci_cmd 
+
+parse_lmpext_features_res_not_hci:
+53c7 68008055 fetch 1 ,mem_conn_sm 
+53c8 c18a8000 rtnne conn_sm_wait_features_ext 
+53c9 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+53ca 20205926 branch process_conn_sm 
+
+parse_lmp_accepted:
+53cb 79200025 set1 mark_ext_patch ,mark 
+53cc 44ab402a bpatch patch2a_6 ,mem_patch2a 
+53cd 68008476 fetch 1 ,mem_rxbuf + 1 
+53ce 600083ef store 1 ,mem_lmi_accepted_opcode 
+53cf c019d3f4 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+53d0 c0045403 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+53d1 c007d40a beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+53d2 c0085410 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+53d3 c008d411 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+53d4 c0095419 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+53d5 c00c542f beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+53d6 c00bd432 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+53d7 c009d3eb beq lmp_switch_req ,parse_lmp_accepted_switch 
+53d8 c01ed535 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+53d9 c01f5581 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+53da c0205537 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+53db c020d554 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+53dc 20600000 rtn 
+
+parse_lmp_not_accepted:
+53dd 79200025 set1 mark_ext_patch ,mark 
+53de 44abc02a bpatch patch2a_7 ,mem_patch2a 
+53df 68008476 fetch 1 ,mem_rxbuf + 1 
+53e0 600083ef store 1 ,mem_lmi_accepted_opcode 
+53e1 c000d426 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+53e2 c019d3fe beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+53e3 c005d41a beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+53e4 c004541d beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+53e5 c009d3ee beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+53e6 c0205427 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+53e7 c020d42a beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+53e8 c00c542d beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+53e9 c00bd43e beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+53ea 20600000 rtn 
+
+parse_lmp_accepted_switch:
+53eb 7009bd20 jam bt_evt_switch_accept ,mem_fifo_temp 
+53ec 20407d86 call ui_ipc_send_event 
+53ed 2020320a branch role_switch_prepare0 
+
+parse_lmp_not_accepted_switch:
+53ee 7009bd19 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+53ef 20407d86 call ui_ipc_send_event 
+53f0 7045f402 jam switch_flag_not_accept ,mem_switch_flag 
+53f1 58000050 setarg timer_switch_waite 
+53f2 d8e0000a arg switch_wait_timer ,queue 
+53f3 20207ed4 branch timer_init 
+
+parse_lmp_accepted_hostconn:
+53f4 680083f7 fetch 1 ,mem_lmp_conn_state 
+53f5 79207e00 set1 received_conn_req ,pdata 
+53f6 600083f7 store 1 ,mem_lmp_conn_state 
+53f7 7009bd01 jam bt_evt_bb_connected ,mem_fifo_temp 
+53f8 20407d86 call ui_ipc_send_event 
+53f9 70007c8b jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+
+parse_lmp_accepted_hostconn_ctn:
+53fa 68008055 fetch 1 ,mem_conn_sm 
+53fb c082d31e bne conn_sm_wait_conn_accept ,parse_rx_done 
+53fc 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+53fd 20600000 rtn 
+
+parse_lmp_not_accepted_hostconn:
+53fe 7003f00b jam acl_connection_already_exists ,mem_disconn_reason_send 
+53ff 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5400 70005500 jam conn_sm_standby ,mem_conn_sm 
+5401 2020d31e branch parse_rx_done ,true 
+5402 20600000 rtn 
+
+parse_lmp_accepted_inrand:
+5403 6800c25d fetch 1 ,mem_link_key_exists 
+5404 247a0000 nrtn blank 
+5405 204034a9 call clear_linkkey 
+5406 20405613 call lmp_generate_key 
+5407 20748000 rtn master 
+5408 79200021 set1 mark_slave_in_rand_accepted ,mark 
+5409 20600000 rtn 
+
+parse_lmp_accepted_enc_mode:
+540a 24748000 nrtn master 
+540b 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+540c 6800804c fetch 1 ,mem_state_map 
+540d c4010000 rtnbit0 smap_encryption 
+540e 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+540f 20600000 rtn 
+
+parse_lmp_accepted_enc_keysize:
+5410 20205615 branch lmp_start_encryption 
+
+parse_lmp_accepted_start_enc:
+5411 20405672 call send_create_conn_start_l2cap_timer_sm 
+5412 68008030 fetch 1 ,mem_state 
+5413 c3820000 rtnbit1 state_conn_comp 
+5414 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5415 68008055 fetch 1 ,mem_conn_sm 
+5416 c1850000 rtnne conn_sm_encrypt_wait 
+5417 7000550b jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+5418 20600000 rtn 
+
+parse_lmp_accepted_stop_enc:
+5419 20600000 rtn 
+
+parse_lmp_not_accepted_aurand:
+
+parse_lmp_not_accepted_aurand_send_detach:
+541a 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+541b 7003f013 jam other_end_terminated ,mem_disconn_reason_send 
+541c 20600000 rtn 
+
+parse_lmp_not_accepted_inrand:
+541d 68008477 fetch 1 ,mem_rxbuf + 2 
+541e c0035423 beq key_missing ,parse_lmp_inrand_key_missing 
+541f c18c0000 rtnne pairing_not_allowed 
+5420 7003f018 jam pairing_not_allowed ,mem_disconn_reason_send 
+5421 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5422 20600000 rtn 
+
+parse_lmp_inrand_key_missing:
+5423 7003f006 jam key_missing ,mem_disconn_reason_send 
+5424 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5425 20600000 rtn 
+
+parse_lmp_not_accepted_name_req:
+5426 20600000 rtn 
+
+parse_lmp_not_accepted_simple_pairing_number:
+5427 7008d200 jam sp_stat_null ,mem_sp_state 
+5428 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5429 2020531e branch parse_rx_done 
+
+parse_lmp_not_accepted_dhkey_check:
+542a 7008d200 jam sp_stat_null ,mem_sp_state 
+542b 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+542c 2020531e branch parse_rx_done 
+
+parse_lmp_not_accepted_unsniff_req:
+542d 7009bd24 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+542e 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_accepted_unsniff_req:
+542f 7009bd23 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+5430 20407d86 call ui_ipc_send_event 
+5431 2020376a branch sniff_exit 
+
+parse_lmp_accepted_sniff_req:
+5432 7009bd22 jam bt_evt_sniff_accept ,mem_fifo_temp 
+5433 20407d86 call ui_ipc_send_event 
+5434 58000000 setarg 0 
+5435 60010075 store 2 ,mem_dsniff 
+5436 68014284 fetch 2 ,mem_sniff_param_interval 
+5437 1fe3fe00 lshift pdata ,pdata 
+5438 60010032 store 2 ,mem_tsniff 
+5439 6800c286 fetch 1 ,mem_sniff_param_attempt 
+543a 60008073 store 1 ,mem_sniff_attempt 
+543b 6800c288 fetch 1 ,mem_sniff_param_timeout 
+543c 60008074 store 1 ,mem_sniff_timeout 
+543d 20203746 branch sniff_init 
+
+parse_lmp_not_acdcept_sniff_req:
+543e 7009bd21 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+543f 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_crypt_key:
+5440 68088476 fetcht 1 ,mem_rxbuf + 1 
+5441 60088054 storet 1 ,mem_key_size 
+5442 20205454 branch accept_lmp_msg 
+
+parse_lmp_setup_complete:
+5443 680083f7 fetch 1 ,mem_lmp_conn_state 
+5444 79207e02 set1 received_setup_complete ,pdata 
+5445 600083f7 store 1 ,mem_lmp_conn_state 
+5446 c3818000 rtnbit1 sent_setup_complete 
+5447 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5448 2020531e branch parse_rx_done 
+
+parse_lmp_max_slot:
+5449 20600000 rtn 
+
+parse_lmp_max_slot_req:
+544a 6800c170 fetch 1 ,mem_max_slot 
+544b 68088476 fetcht 1 ,mem_rxbuf + 1 
+544c 98467c00 isub temp ,null 
+544d 20215454 branch accept_lmp_msg ,positive 
+544e 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+544f 70007e1f jam unspecified_error ,mem_lmo_reason2 
+5450 70007d2e jam lmp_max_slot_req ,mem_lmi_opcode2 
+5451 20600000 rtn 
+
+parse_lmp_detach:
+5452 20405764 call prepare_disconnect 
+5453 20205454 branch accept_lmp_msg 
+
+accept_lmp_msg:
+5454 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5455 20600000 rtn 
+
+parse_lmp_incr_power:
+5456 70007c21 jam lmp_max_power ,mem_lmo_opcode2 
+5457 20600000 rtn 
+
+parse_lmp_decr_power:
+5458 70007c22 jam lmp_min_power ,mem_lmo_opcode2 
+5459 20600000 rtn 
+
+parse_lmp_version_res:
+545a 68008055 fetch 1 ,mem_conn_sm 
+545b c1098000 rtneq conn_sm_wait_version 
+545c 70005502 jam conn_sm_send_features ,mem_conn_sm 
+545d 20600000 rtn 
+
+parse_lmp_auto_rate:
+545e 20600000 rtn 
+
+parse_lmp_in_rand:
+545f 20405610 call lmp_copy_rand 
+5460 7003fa01 jam pincode_state_wait_pincode ,mem_pincode_state 
+5461 7009bd0a jam bt_evt_pincode_req ,mem_fifo_temp 
+5462 20407d86 call ui_ipc_send_event 
+5463 204058fe call tid_check 
+5464 2420d618 nbranch lmp_accept_inrand ,true 
+5465 2434d46a nbranch parse_lmp_inrand_res ,master 
+5466 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5467 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+5468 70007e23 jam transaction_collision ,mem_lmo_reason2 
+5469 20600000 rtn 
+
+parse_lmp_inrand_res:
+546a 6800804b fetch 1 ,mem_op 
+546b 79207e02 set1 op_inrand_req ,pdata 
+546c 6000804b store 1 ,mem_op 
+546d 20600000 rtn 
+
+pop_tid_follow:
+546e 6808804c fetcht 1 ,mem_state_map 
+546f 7d3a0401 nsetflag blank ,smap_lmptid ,temp 
+5470 6008804c storet 1 ,mem_state_map 
+5471 20600000 rtn 
+
+push_tid_follow:
+5472 6800807f fetch 1 ,mem_lmo_tid2 
+5473 1fe37e00 rshift pdata ,pdata 
+5474 1fe17e01 and_into 1 ,pdata 
+5475 20600000 rtn 
+
+parse_lmp_au_rand_moudle:
+5476 6800c132 fetch 1 ,mem_device_option 
+5477 c1850000 rtnne dvc_op_module 
+5478 680088d9 fetch 1 ,mem_pairing_auth 
+5479 205a6402 call load_device_list ,blank 
+547a 20600000 rtn 
+
+parse_lmp_au_rand:
+547b 20405476 call parse_lmp_au_rand_moudle 
+547c 20405472 call push_tid_follow 
+547d 600083fb store 1 ,mem_sres_tid 
+547e 20405610 call lmp_copy_rand 
+547f 70007c0c jam lmp_sres ,mem_lmo_opcode2 
+5480 6800c25d fetch 1 ,mem_link_key_exists 
+5481 247a0000 nrtn blank 
+5482 68008030 fetch 1 ,mem_state 
+5483 c3830000 rtnbit1 state_combkey 
+5484 70007e06 jam key_missing ,mem_lmo_reason2 
+5485 2020536c branch reject_lmp_packet 
+
+parse_lmp_sres:
+5486 da200040 arg mem_plap ,rega 
+5487 20406fad call function_e1 
+5488 68020476 fetch 4 ,mem_rxbuf + 1 
+5489 680a04b6 fetcht 4 ,mem_input_store 
+548a 98467c00 isub temp ,null 
+548b 2022d48f branch authentication_ok ,zero 
+548c 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+548d 7003f005 jam authentication_failure_error ,mem_disconn_reason_send 
+548e 20600000 rtn 
+
+authentication_ok:
+548f 20405493 call authentication_ok_common 
+5490 6800c6e2 fetch 1 ,mem_ssp_enable 
+5491 203a5555 branch pairing_success ,blank 
+5492 20600000 rtn 
+
+authentication_ok_common:
+5493 204070ab call copy_aco 
+5494 204031da call linkkey_ready 
+5495 6800804b fetch 1 ,mem_op 
+5496 2feffe01 isolate1 op_auth_req ,pdata 
+5497 793ffe01 set0 op_auth_req ,pdata 
+5498 6000804b store 1 ,mem_op 
+5499 68008055 fetch 1 ,mem_conn_sm 
+549a c00cd49d beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+549b c00c549d beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+549c 20600000 rtn 
+
+authentication_ok_conn_sm:
+549d 680088d9 fetch 1 ,mem_pairing_auth 
+549e c1800000 rtnne defalt_pairing_auth 
+549f 6800804c fetch 1 ,mem_state_map 
+54a0 c3810000 rtnbit1 smap_encryption 
+54a1 202059bd branch host_create_conn_encrypt 
+
+parse_lmp_comb_key:
+54a2 da200476 arg mem_rxbuf + 1 ,rega 
+54a3 da4004a6 arg mem_kinit ,regb 
+54a4 d8a00486 arg mem_random_number ,contw 
+54a5 20407077 call xor16 
+54a6 da200040 arg mem_plap ,rega 
+54a7 2040591c call generate_linkkey 
+54a8 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+54a9 68008030 fetch 1 ,mem_state 
+54aa c3035613 bbit0 state_combkey ,lmp_generate_key 
+54ab 20600000 rtn 
+
+parse_lmp_name_res:
+54ac 6801015e fetch 2 ,mem_len 
+54ad 1fe0f3fd add pdata ,-3 ,loopcnt 
+54ae 68088476 fetcht 1 ,mem_rxbuf + 1 
+54af 58000100 setarg mem_tmp_buffer 
+54b0 98408a00 iadd temp ,contw 
+54b1 d8c00478 arg mem_rxbuf + 3 ,contr 
+54b2 20407ecd call memcpy 
+54b3 68088053 fetcht 1 ,mem_name_offset 
+54b4 68008477 fetch 1 ,mem_rxbuf + 2 
+54b5 98467e00 isub temp ,pdata 
+54b6 1fe67c0e sub pdata ,14 ,null 
+54b7 202154bc branch parse_lmp_name_res_end ,positive 
+54b8 1840fe0e add temp ,14 ,pdata 
+54b9 60008053 store 1 ,mem_name_offset 
+54ba 70007c01 jam lmp_name_req ,mem_lmo_opcode2 
+54bb 20600000 rtn 
+
+parse_lmp_name_res_end:
+54bc 6800804c fetch 1 ,mem_state_map 
+54bd 79207e03 set1 smap_name_res ,pdata 
+54be 6000804c store 1 ,mem_state_map 
+54bf c282561d bbit1 smap_name_req ,lmp_disconnect 
+54c0 20600000 rtn 
+
+parse_lmp_name_req:
+54c1 68008476 fetch 1 ,mem_rxbuf + 1 
+54c2 6000807d store 1 ,mem_lmi_opcode2 
+54c3 70007c02 jam lmp_name_res ,mem_lmo_opcode2 
+54c4 20600000 rtn 
+
+parse_lmp_conn_req:
+54c5 20205454 branch accept_lmp_msg 
+
+parse_lmp_timing_accuracy_req:
+54c6 70007c30 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+54c7 20600000 rtn 
+
+parse_lmp_features_req:
+54c8 70007c28 jam lmp_features_res ,mem_lmo_opcode2 
+54c9 20600000 rtn 
+
+parse_lmp_version_req:
+54ca 70007c26 jam lmp_version_res ,mem_lmo_opcode2 
+54cb 20600000 rtn 
+
+parse_lmp_supervision_timeout:
+54cc 20600000 rtn 
+
+parse_lmp_sniff_subrating_req:
+54cd 68010032 fetch 2 ,mem_tsniff 
+54ce 98000400 iforce temp 
+54cf 68008477 fetch 1 ,mem_rxbuf + 2 
+54d0 60008094 store 1 ,mem_subsniff_rate 
+54d1 984f8400 imul32 temp ,temp 
+54d2 68010478 fetch 2 ,mem_rxbuf + 3 
+54d3 1fe3fe00 lshift pdata ,pdata 
+54d4 60010095 store 2 ,mem_subsniff_tcmax 
+54d5 6802047a fetch 4 ,mem_rxbuf + 5 
+54d6 1fe3fe00 lshift pdata ,pdata 
+54d7 60020090 store 4 ,mem_subsniff_instant 
+54d8 18427e00 deposit temp 
+54d9 60010097 store 2 ,mem_subsniff_tsniff 
+54da 20600000 rtn 
+
+parse_lmpext_packet_type_table_req:
+54db 6808c1fa fetcht 1 ,mem_ptt 
+54dc 68008477 fetch 1 ,mem_rxbuf + 2 
+54dd 9842fc00 ixor temp ,null 
+54de 2422d391 nbranch reject_unknown_ext_packet ,zero 
+54df 2feffe00 isolate1 0 ,pdata 
+54e0 6800804c fetch 1 ,mem_state_map 
+54e1 7920fe05 setflag true ,smap_edr ,pdata 
+54e2 6000804c store 1 ,mem_state_map 
+54e3 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+54e4 70007d8b jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+54e5 20600000 rtn 
+
+parse_lmp_sniff_subrating_res:
+
+parse_lmp_preferred_rate:
+
+parse_lmp_max_power:
+
+parse_lmp_min_power:
+54e6 20600000 rtn 
+
+parse_lmp_page_mode_req:
+54e7 20205454 branch accept_lmp_msg 
+
+parse_lmp_page_scan_mode_req:
+54e8 20205454 branch accept_lmp_msg 
+
+parse_lmp_slot_offset:
+54e9 68010476 fetch 2 ,mem_rxbuf + 1 
+54ea 60010170 store 2 ,mem_slot_offset 
+54eb 20600000 rtn 
+
+parse_lmp_sniff_req_check_sniff_para:
+54ec 68010479 fetch 2 ,mem_rxbuf + 4 
+54ed 6808c212 fetcht 1 ,mem_lpm_mult 
+54ee 984ffe00 imul32 temp ,pdata 
+54ef d8400640 arg 0x640 ,temp 
+54f0 98467c00 isub temp ,null 
+54f1 20600000 rtn 
+
+parse_lmp_sniff_req:
+54f2 204054ec call parse_lmp_sniff_req_check_sniff_para 
+54f3 20215507 branch lmp_reject_sniff ,positive 
+54f4 68008030 fetch 1 ,mem_state 
+54f5 c280d507 bbit1 state_insniff ,lmp_reject_sniff 
+54f6 68010477 fetch 2 ,mem_rxbuf + 2 
+54f7 1fe3fe00 lshift pdata ,pdata 
+54f8 60010075 store 2 ,mem_dsniff 
+54f9 68010479 fetch 2 ,mem_rxbuf + 4 
+54fa 1fe3fe00 lshift pdata ,pdata 
+54fb 60010032 store 2 ,mem_tsniff 
+54fc 6801047b fetch 2 ,mem_rxbuf + 6 
+54fd 60008073 store 1 ,mem_sniff_attempt 
+54fe 98000400 iforce temp 
+54ff 6801047d fetch 2 ,mem_rxbuf + 8 
+5500 60008074 store 1 ,mem_sniff_timeout 
+5501 98467c00 isub temp ,null 
+5502 24215504 nbranch set_big_value_to_attempt ,positive 
+5503 60008073 store 1 ,mem_sniff_attempt 
+
+set_big_value_to_attempt:
+5504 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5505 70007d17 jam lmp_sniff_req ,mem_lmi_opcode2 
+5506 20600000 rtn 
+
+lmp_reject_sniff:
+5507 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5508 2020536c branch reject_lmp_packet 
+
+parse_lmp_start_encryption_req:
+5509 20405454 call accept_lmp_msg 
+550a 20405610 call lmp_copy_rand 
+550b 20406fb0 call function_e3 
+550c 20203736 branch start_encryption 
+
+parse_lmp_stop_encryption_req:
+550d 20405454 call accept_lmp_msg 
+550e 2020373f branch stop_encryption 
+
+parse_lmp_switch_req:
+550f 68020476 fetch 4 ,mem_rxbuf + 1 
+5510 1fe3fe00 lshift pdata ,pdata 
+5511 2034d51b branch parse_lmp_switch_accept ,master 
+5512 6808c25d fetcht 1 ,mem_link_key_exists 
+5513 243a5518 nbranch parse_lmp_switch_req_clear_mark ,blank 
+
+parse_lmp_switch_req_not_accept:
+5514 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5515 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+5516 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5517 20600000 rtn 
+
+parse_lmp_switch_req_clear_mark:
+5518 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+5519 70005500 jam 0 ,mem_conn_sm 
+551a 20203206 branch role_switch_prepare 
+
+parse_lmp_switch_accept:
+551b 20403206 call role_switch_prepare 
+551c 79200022 set1 mark_reconn_recieve_switch ,mark 
+551d 6800816c fetch 1 ,mem_connection_options 
+551e 793ffe02 set0 connection_switch ,pdata 
+551f 6000816c store 1 ,mem_connection_options 
+5520 20205454 branch accept_lmp_msg 
+
+parse_lmp_temp_rand:
+
+parse_lmp_temp_key:
+
+parse_lmp_timing_accuracy_res:
+
+parse_lmp_unit_key:
+
+parse_lmp_use_semi_permanend_key:
+5521 20600000 rtn 
+
+parse_lmp_unsniff_req:
+5522 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5523 70007d18 jam lmp_unsniff_req ,mem_lmi_opcode2 
+5524 7009bd2e jam bt_evt_remote_unsniff ,mem_fifo_temp 
+5525 20407d86 call ui_ipc_send_event 
+5526 2020376a branch sniff_exit 
+
+parse_lmp_encapsulated_header:
+5527 68008476 fetch 1 ,mem_rxbuf + 1 
+5528 c080d533 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+5529 68008477 fetch 1 ,mem_rxbuf + 2 
+552a c080d533 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+552b 68008478 fetch 1 ,mem_rxbuf + 3 
+552c c0985533 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+552d 20405907 call check_localsm 
+552e 2020d530 branch parse_lmp_encapsulated_header_master ,true 
+552f 7008d201 jam sp_stat_key_recv ,mem_sp_state 
+
+parse_lmp_encapsulated_header_master:
+5530 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5531 70007d3d jam lmp_encapsulated_header ,mem_lmi_opcode2 
+5532 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_header_reject:
+5533 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5534 2020536c branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_header:
+5535 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5536 20600000 rtn 
+
+parse_lmp_accepted_simple_pairing_number:
+5537 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5538 c000d53e beq ssp_mode_ssp_pin_flag ,parse_lmp_accepted_simple_pairing_number_ssp_pin 
+5539 c0015542 beq ssp_mode_passkey_entry_flag ,parse_lmp_accepted_simple_pairing_number_passkey 
+
+parse_lmp_accepted_simple_pairing_number_common:
+553a 20405907 call check_localsm 
+553b 20608000 rtn true 
+553c 7008d208 jam sp_stat_confirm_recv ,mem_sp_state 
+553d 20600000 rtn 
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+553e 2040797f call g_noninit_number_confirm 
+553f 7009bd35 jam bt_evt_bt_gkey_generate ,mem_fifo_temp 
+5540 20407d86 call ui_ipc_send_event 
+5541 2020553a branch parse_lmp_accepted_simple_pairing_number_common 
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+5542 20405907 call check_localsm 
+5543 20608000 rtn true 
+5544 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+5545 c009d552 beq 19 ,authentication_passkey_end 
+5546 1fe0fe01 increase 1 ,pdata 
+5547 6000c6eb store 1 ,mem_authentication_passkey_times 
+
+authentication_passkey:
+5548 7008d401 jam sp_flag_commit ,mem_sp_flag 
+5549 7008d204 jam sp_stat_commit_calc ,mem_sp_state 
+554a 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+554b 1fe20e00 copy pdata ,queue 
+554c 68034719 fetch 6 ,mem_pin 
+554d afefffff qisolate1 pdata 
+554e 58000080 setarg 0x80 
+554f 7920fe00 setflag true ,0 ,pdata 
+5550 6000c6ec store 1 ,mem_passkey_1bit 
+5551 20600000 rtn 
+
+authentication_passkey_end:
+5552 7008d208 jam sp_stat_confirm_recv ,mem_sp_state 
+5553 20600000 rtn 
+
+parse_lmp_accepted_dhkey_check:
+5554 2040555a call parse_lmp_accepted_dhkey_check_common 
+
+pairing_success:
+5555 6800c6ed fetch 1 ,mem_flag_pairing_state 
+5556 207a0000 rtn blank 
+5557 7046ed00 jam flag_pairing_state_not_pairing ,mem_flag_pairing_state 
+5558 7009bd38 jam bt_evt_bt_pairing_success ,mem_fifo_temp 
+5559 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_accepted_dhkey_check_common:
+555a 20405907 call check_localsm 
+555b 2440f982 ncall g_noninit ,true 
+555c 2040f992 call g_init ,true 
+555d 20405907 call check_localsm 
+555e 20608000 rtn true 
+555f 7008d20c jam sp_stat_link_key_calc ,mem_sp_state 
+5560 7008d401 jam sp_flag_commit ,mem_sp_flag 
+5561 20600000 rtn 
+
+parse_simple_pairing_confirm:
+5562 d8a00992 arg mem_sp_confirm_remote ,contw 
+5563 d8c00476 arg mem_rxbuf + 1 ,contr 
+5564 20407e87 call memcpy16 
+5565 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5566 c1010000 rtneq ssp_mode_passkey_entry_flag 
+5567 202076f3 branch master_set_mem_master_sp_flag 
+
+parse_lmp_encapsulated_payload:
+5568 680088d3 fetch 1 ,mem_master_sp_state 
+5569 c003d56c beq sp_stat_random_send ,parse_encapsulated_payload_master 
+556a 680088d2 fetch 1 ,mem_sp_state 
+556b c080d57f bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+
+parse_encapsulated_payload_master:
+556c 680088db fetch 1 ,mem_sp_remote_key_recv_count 
+556d 1fe60a20 sub pdata ,0x20 ,contw 
+556e 2421557f nbranch parse_lmp_encapsulated_payload_reject ,positive 
+556f d8a008ea arg mem_sp_pubkey_remote ,contw 
+5570 98a08a00 iadd contw ,contw 
+5571 68040476 fetch 8 ,mem_rxbuf + 1 
+5572 e0a40000 istore 8 ,contw 
+5573 6804047e fetch 8 ,mem_rxbuf + 9 
+5574 e0a40000 istore 8 ,contw 
+5575 680088db fetch 1 ,mem_sp_remote_key_recv_count 
+5576 1fe0fe10 increase 16 ,pdata 
+5577 600088db store 1 ,mem_sp_remote_key_recv_count 
+5578 c0985454 bne encapsulated_len_p192 ,accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_completed:
+5579 20405907 call check_localsm 
+557a 2020d454 branch accept_lmp_msg ,true 
+557b 7008dc01 jam sp_key_valid ,mem_sp_remote_key_invalid 
+557c 7008d202 jam sp_stat_key_generate ,mem_sp_state 
+557d 7008d401 jam sp_flag_commit ,mem_sp_flag 
+557e 20205454 branch accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_reject:
+557f 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5580 2020536c branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_payload:
+5581 680088da fetch 1 ,mem_sp_local_key_send_count 
+5582 c0185585 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+5583 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5584 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted:
+5585 20405907 call check_localsm 
+5586 2020d58e branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+5587 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5588 c001558c beq ssp_mode_passkey_entry_flag ,parse_lmp_encapsulated_payload_all_accepted_get_passkey 
+5589 7008d401 jam sp_flag_commit ,mem_sp_flag 
+558a 7008d204 jam sp_stat_commit_calc ,mem_sp_state 
+558b 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+558c 7009bd36 jam bt_evt_bt_get_passkey ,mem_fifo_temp 
+558d 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_encapsulated_payload_all_accepted_master:
+558e 2020531e branch parse_rx_done 
+
+parse_lmp_simple_pairing_number:
+558f 680088d3 fetch 1 ,mem_master_sp_state 
+5590 c003d593 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+5591 680088d2 fetch 1 ,mem_sp_state 
+5592 c083559f bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+
+parse_lmp_simple_pairing_number_master:
+5593 d8a00952 arg mem_sp_random_remote ,contw 
+5594 68040476 fetch 8 ,mem_rxbuf + 1 
+5595 e0a40000 istore 8 ,contw 
+5596 6804047e fetch 8 ,mem_rxbuf + 9 
+5597 e0a40000 istore 8 ,contw 
+5598 20405907 call check_localsm 
+5599 2020d59d branch parse_lmp_simple_pairing_number_master0 ,true 
+559a 7008d207 jam sp_stat_random_send ,mem_sp_state 
+559b 7008d401 jam sp_flag_commit ,mem_sp_flag 
+559c 20205454 branch accept_lmp_msg 
+
+parse_lmp_simple_pairing_number_master0:
+559d 7008d304 jam sp_stat_commit_calc ,mem_master_sp_state 
+559e 202076f3 branch master_set_mem_master_sp_flag 
+
+parse_lmp_simple_pairing_number_reject:
+559f 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+55a0 2020536c branch reject_lmp_packet 
+
+parse_dhkey_check:
+55a1 680088d3 fetch 1 ,mem_master_sp_state 
+55a2 c005d5a5 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+55a3 680088d2 fetch 1 ,mem_sp_state 
+55a4 c08455b4 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+
+parse_dhkey_check_master:
+55a5 d8a00982 arg mem_sp_check_result ,contw 
+55a6 d8c00476 arg mem_rxbuf + 1 ,contr 
+55a7 20407e87 call memcpy16 
+55a8 20405907 call check_localsm 
+55a9 2020d5b1 branch parse_dhkey_check_master0 ,true 
+55aa 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+55ab c000d5b6 beq ssp_mode_ssp_pin_flag ,number_comparison_mode 
+
+number_comparison_successed:
+55ac 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+55ad 7008d209 jam sp_stat_confirm_check ,mem_sp_state 
+55ae 7008d401 jam sp_flag_commit ,mem_sp_flag 
+55af 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+55b0 2020531e branch parse_rx_done 
+
+parse_dhkey_check_master0:
+55b1 7008d309 jam sp_stat_confirm_check ,mem_master_sp_state 
+55b2 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+55b3 2020531e branch parse_rx_done 
+
+parse_lmp_dhkey_check_reject:
+55b4 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+55b5 2020536c branch reject_lmp_packet 
+
+number_comparison_mode:
+55b6 6800c6e9 fetch 1 ,mem_flag_mode_ssp_pin 
+55b7 c283d5bb bbit1 flag_mode_ssp_pin_reviceve_comparison_bit ,comparison_result 
+55b8 79207e06 set1 flag_mode_ssp_pin_recieve_dhkey_bit ,pdata 
+55b9 6000c6e9 store 1 ,mem_flag_mode_ssp_pin 
+55ba 20600000 rtn 
+
+comparison_result:
+55bb c28055ac bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+55bc 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+55bd 202055b4 branch parse_lmp_dhkey_check_reject 
+
+parse_lmp_clkoffset_res:
+55be 2020531e branch parse_rx_done 
+
+parse_lmp_encryption_mode_req:
+55bf 6800816c fetch 1 ,mem_connection_options 
+55c0 793ffe01 set0 connection_encrypt 
+55c1 6000816c store 1 ,mem_connection_options 
+55c2 20405454 call accept_lmp_msg 
+55c3 24748000 nrtn master 
+55c4 68008476 fetch 1 ,mem_rxbuf + 1 
+55c5 6808804b fetcht 1 ,mem_op 
+55c6 793a0404 setflag blank ,op_stop_enc ,temp 
+55c7 7d3a0405 nsetflag blank ,op_start_enc ,temp 
+55c8 6008804b storet 1 ,mem_op 
+55c9 20600000 rtn 
+
+parse_lmp_features_res:
+55ca 680c0476 fetcht 8 ,mem_rxbuf + 1 
+
+parse_lmp_features_res_not_hci:
+55cb 68008055 fetch 1 ,mem_conn_sm 
+55cc c1818000 rtnne conn_sm_wait_features_res 
+55cd 6800816c fetch 1 ,mem_connection_options 
+55ce c30255d1 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+55cf 70005514 jam conn_sm_send_features_ext ,mem_conn_sm 
+55d0 20600000 rtn 
+
+parse_lmp_send_conn:
+55d1 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+55d2 20600000 rtn 
+
+parse_lmp_test_activate:
+55d3 6800817e fetch 1 ,mem_debug_config 
+55d4 6000815a store 1 ,mem_test_mode_old_debug_config 
+55d5 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+55d6 70007d38 jam lmp_test_activate ,mem_lmi_opcode2 
+55d7 20600000 rtn 
+
+parse_lmp_test_control:
+55d8 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+55d9 70007d39 jam lmp_test_control ,mem_lmi_opcode2 
+55da 18007209 force 9 ,loopcnt 
+55db d8c00476 arg mem_rxbuf + 1 ,contr 
+55dc d8a00151 arg mem_temp_payload ,contw 
+
+parse_lmp_test_xor:
+55dd e8c08000 ifetch 1 ,contr 
+55de 1fe2fe55 xor_into 0x55 ,pdata 
+55df e0a08000 istore 1 ,contw 
+55e0 c20055dd loop parse_lmp_test_xor 
+55e1 68008151 fetch 1 ,test_mode_scenario 
+55e2 68088150 fetcht 1 ,mem_tester_emulate 
+55e3 793f8407 set0 tester_no_whitening ,temp 
+55e4 793f8404 set0 tester_pattern_test ,temp 
+55e5 c07fd5f1 beq exit_test_mode ,parse_lmp_test_control_exit 
+55e6 c000560a beq pause_test_mode ,parse_lmp_test_control_pause 
+55e7 c002d5fe beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+55e8 c003d5fd beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+55e9 c00355fe beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+55ea c00455fd beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+55eb c000d5f6 beq zero_pattern ,parse_lmp_test_control_pattern 
+55ec c00155f6 beq one_pattern ,parse_lmp_test_control_pattern 
+55ed c001d5f6 beq alt_pattern ,parse_lmp_test_control_pattern 
+55ee c004d5f6 beq alt2_pattern ,parse_lmp_test_control_pattern 
+55ef c00255f6 beq pseudorandom ,parse_lmp_test_control_pattern 
+55f0 20600000 rtn 
+
+parse_lmp_test_control_exit:
+55f1 68008150 fetch 1 ,mem_tester_emulate 
+55f2 79207e03 set1 tester_exit ,pdata 
+55f3 79207e02 set1 tester_change ,pdata 
+55f4 60008150 store 1 ,mem_tester_emulate 
+55f5 20600000 rtn 
+
+parse_lmp_test_control_pattern:
+55f6 79200404 set1 tester_pattern_test ,temp 
+55f7 70017f05 jam 5 ,mem_lch_code 
+55f8 68010158 fetch 2 ,test_mode_data_length 
+55f9 98007200 iforce loopcnt 
+55fa 6001015e store 2 ,mem_len 
+55fb d8a00475 arg mem_rxbuf ,contw 
+55fc 20407f40 call pn9 
+
+parse_lmp_test_control_loopback_nowhite:
+55fd 79200407 set1 tester_no_whitening ,temp 
+
+parse_lmp_test_control_loopback:
+55fe 79200402 set1 tester_change ,temp 
+55ff 18007e00 force 0 ,pdata 
+5600 6000800b store 1 ,mem_slave_rcvcnt 
+5601 600100f9 store 2 ,mem_tst_pktcnt_crc 
+5602 600100fb store 2 ,mem_tst_pktcnt_dmh 
+5603 600100f7 store 2 ,mem_tst_pktcnt_hec 
+5604 600100f5 store 2 ,mem_tst_pktcnt_sync 
+5605 68008152 fetch 1 ,test_mode_hopping_mode 
+5606 2fe1fe00 compare fixed_freq ,pdata ,0xff 
+5607 79208406 setflag true ,tester_fixed_freq ,temp 
+5608 60088150 storet 1 ,mem_tester_emulate 
+5609 20600000 rtn 
+
+parse_lmp_test_control_pause:
+560a 793f8011 set0 mark_testmode ,mark 
+560b 70015000 jam 0 ,mem_tester_emulate 
+560c 6800817e fetch 1 ,mem_debug_config 
+560d 793ffe06 set0 debug_tx_pattern ,pdata 
+560e 6000817e store 1 ,mem_debug_config 
+560f 20600000 rtn 
+
+lmp_copy_rand:
+5610 d8c00476 arg mem_rxbuf + 1 ,contr 
+5611 d8a00486 arg mem_random_number ,contw 
+5612 20207e87 branch memcpy16 
+
+lmp_generate_key:
+5613 70007c09 jam lmp_comb_key ,mem_lmo_opcode2 
+5614 20600000 rtn 
+
+lmp_start_encryption:
+5615 24748000 nrtn master 
+5616 70007c11 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+5617 20600000 rtn 
+
+lmp_accept_inrand:
+5618 da204140 arg mem_lap ,rega 
+5619 20406f7a call generate_kinit 
+561a 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+561b 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+561c 20600000 rtn 
+
+lmp_disconnect:
+561d 7000720a jam 10 ,mem_conn_timer 
+561e 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+561f 7003f016 jam local_host ,mem_disconn_reason_send 
+5620 20600000 rtn 
+
+send_lmp:
+5621 79200025 set1 mark_ext_patch ,mark 
+5622 44ac402b bpatch patch2b_0 ,mem_patch2b 
+5623 78547c00 disable user 
+5624 204058ca call lmo_fifo_process 
+5625 68008048 fetch 1 ,mem_lmp_to_send 
+5626 207a0000 rtn blank 
+5627 c283d657 bbit1 7 ,send_lmp_escape 
+
+send_lmp0:
+5628 c000d77c beq lmp_name_req ,send_lmp_name_req 
+5629 c00156ef beq lmp_name_res ,send_lmp_name_res 
+562a c001d662 beq lmp_accepted ,send_lmp_accepted 
+562b c0025679 beq lmp_not_accepted ,send_lmp_not_accepted 
+562c c013d7e4 beq lmp_features_req ,send_lmp_features_req 
+562d c0145713 beq lmp_features_res ,send_lmp_features_res 
+562e c01856ff beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+562f c012d7df beq lmp_version_req ,send_lmp_version_req 
+5630 c013570e beq lmp_version_res ,send_lmp_version_res 
+5631 c018d7ce beq lmp_setup_complete ,send_lmp_setup_complete 
+5632 c01bd777 beq lmp_supervision_timeout ,send_lmp_superto 
+5633 c019d769 beq lmp_host_connection_req ,send_lmp_no_payload 
+5634 c0045862 beq lmp_in_rand ,send_lmp_inrand 
+5635 c004d858 beq lmp_comb_key ,send_lmp_comb_key 
+5636 c005d86d beq lmp_au_rand ,send_lmp_aurand 
+5637 c0065876 beq lmp_sres ,send_lmp_sres 
+5638 c007d76f beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+5639 c008589b beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+563a c008d891 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+563b c003d75f beq lmp_detach ,send_lmp_detach 
+563c c015578b beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+563d c005578c beq lmp_unit_key ,send_lmp_unit_key 
+563e c00fd7c9 beq lmp_incr_power_req ,send_lmp_inc_power 
+563f c0035704 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+5640 c010d76c beq lmp_max_power ,send_lmp_nopayload_reply 
+5641 c016d7bf beq lmp_max_slot ,send_lmp_max_slot 
+5642 c01757c4 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+5643 c011576c beq lmp_min_power ,send_lmp_nopayload_reply 
+5644 c01a578d beq lmp_slot_offset ,send_lmp_slot_offset 
+5645 c009d7a2 beq lmp_switch_req ,send_lmp_switch_req 
+5646 c00bd7b1 beq lmp_sniff_req ,send_lmp_sniff_req 
+5647 c0095898 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+5648 c017d7b7 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+5649 c00c57bc beq lmp_unsniff_req ,send_lmp_unsniff_req 
+564a c01ed808 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+564b c01f5814 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+564c c01fd826 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+564d c0205830 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+564e c020d845 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+564f c011d854 beq lmp_auto_rate ,send_lmp_auto_rate 
+5650 c01dd84f beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+5651 c002d855 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+5652 c014d856 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+5653 c01c5857 beq lmp_test_activate ,send_lmp_test_activate 
+5654 c01cd782 beq lmp_test_control ,send_lmp_test_control 
+
+send_lmp_error:
+5655 20203b31 branch assert 
+5656 20600000 rtn 
+
+send_lmp_escape:
+5657 c040d686 beq lmp_ext_accepted ,send_lmpext_accepted 
+5658 c04256b2 beq lmp_ext_features_res ,send_lmpext_features_res 
+5659 c041568f beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+565a c041d718 beq lmp_ext_features_req ,send_lmpext_features_req 
+565b c045d723 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+565c c04bd75b beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+565d c04cd6e0 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+565e c04d56bd beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+565f c04ad6e5 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+5660 c04b56e6 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+5661 20203b31 branch assert 
+
+send_lmp_accepted:
+5662 18007e02 force 2 ,pdata 
+5663 204058a1 call msg_send_lmp 
+5664 68008049 fetch 1 ,mem_lmi_opcode 
+5665 e0a08000 istore 1 ,contw 
+5666 204058b0 call send_lmp_follow 
+5667 79200025 set1 mark_ext_patch ,mark 
+5668 44acc02b bpatch patch2b_1 ,mem_patch2b 
+5669 68008049 fetch 1 ,mem_lmi_opcode 
+566a c0045699 beq lmp_in_rand ,send_lmp_accepted_inrand 
+566b c007d69d beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+566c c00856a8 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+566d c00bd678 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+566e c019d6ab beq lmp_host_connection_req ,send_lmp_accepted_connection 
+566f c020d6b1 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+5670 c008d672 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+5671 20600000 rtn 
+
+send_create_conn_start_l2cap_timer_sm:
+5672 68008055 fetch 1 ,mem_conn_sm 
+5673 207a0000 rtn blank 
+5674 7000551b jam conn_sm_wait_done ,mem_conn_sm 
+5675 5800000c setarg timer_enpt_waite 
+5676 d8e0000b arg enpt_delay_timer ,queue 
+5677 20207ed4 branch timer_init 
+
+send_lmp_accept_sniff_req:
+5678 20203746 branch sniff_init 
+
+send_lmp_not_accepted:
+5679 18007e03 force 3 ,pdata 
+567a 204058a1 call msg_send_lmp 
+567b 68008049 fetch 1 ,mem_lmi_opcode 
+567c c005d681 beq lmp_au_rand ,send_not_accept_aurand 
+567d e0a08000 istore 1 ,contw 
+567e 6800804a fetch 1 ,mem_lmo_reason 
+567f e0a08000 istore 1 ,contw 
+5680 202058b0 branch send_lmp_follow 
+
+send_not_accept_aurand:
+5681 e0a08000 istore 1 ,contw 
+5682 6800804a fetch 1 ,mem_lmo_reason 
+5683 e0a08000 istore 1 ,contw 
+5684 d84003fb arg mem_sres_tid ,temp 
+5685 202058ec branch special_tid_store 
+
+send_lmpext_accepted:
+5686 18000e04 force 4 ,queue 
+5687 204058a9 call send_lmpext 
+5688 5800007f setarg lmp_escape 
+5689 e0a08000 istore 1 ,contw 
+568a 68008049 fetch 1 ,mem_lmi_opcode 
+568b 793ffe07 set0 7 ,pdata 
+568c e0a08000 istore 1 ,contw 
+568d 68008049 fetch 1 ,mem_lmi_opcode 
+568e 202058b0 branch send_lmp_follow 
+
+send_lmpext_not_accepted:
+568f 18000e05 force 5 ,queue 
+5690 204058a9 call send_lmpext 
+5691 5800007f setarg lmp_escape 
+5692 e0a08000 istore 1 ,contw 
+5693 68008049 fetch 1 ,mem_lmi_opcode 
+5694 793ffe07 set0 7 ,pdata 
+5695 e0a08000 istore 1 ,contw 
+5696 6800804a fetch 1 ,mem_lmo_reason 
+5697 e0a08000 istore 1 ,contw 
+5698 202058b0 branch send_lmp_follow 
+
+send_lmp_accepted_inrand:
+5699 204034a9 call clear_linkkey 
+569a 204058fe call tid_check 
+569b 20608000 rtn true 
+569c 20205613 branch lmp_generate_key 
+
+send_lmp_accepted_enc_mode:
+569d 6800804b fetch 1 ,mem_op 
+569e c282d6a4 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+569f c4020000 rtnbit0 op_stop_enc 
+56a0 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+56a1 793ffe04 set0 op_stop_enc ,pdata 
+56a2 204058f6 call tid_reply 
+56a3 202056a6 branch send_lmp_accepted_enc_exit 
+
+send_lmp_accepted_enc_start:
+56a4 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+56a5 793ffe05 set0 op_start_enc ,pdata 
+
+send_lmp_accepted_enc_exit:
+56a6 6000804b store 1 ,mem_op 
+56a7 20600000 rtn 
+
+send_lmp_accepted_enc_key:
+56a8 20405907 call check_localsm 
+56a9 2020d615 branch lmp_start_encryption ,true 
+56aa 20600000 rtn 
+
+send_lmp_accepted_connection:
+56ab 70007c8b jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+56ac 680083f7 fetch 1 ,mem_lmp_conn_state 
+56ad 79207e00 set1 received_conn_req ,pdata 
+56ae 600083f7 store 1 ,mem_lmp_conn_state 
+56af 7009bd01 jam bt_evt_bb_connected ,mem_fifo_temp 
+56b0 20207d86 branch ui_ipc_send_event 
+
+send_lmp_accept_dhkey_check:
+56b1 20600000 rtn 
+
+send_lmpext_features_res:
+56b2 18000e0c force 12 ,queue 
+56b3 204058a9 call send_lmpext 
+56b4 58000001 setarg 0x01 
+56b5 e0a08000 istore 1 ,contw 
+56b6 680103f4 fetch 2 ,mem_lmpext_ssp_enable 
+56b7 e0a10000 istore 2 ,contw 
+56b8 58000000 setarg 0 
+56b9 e0a18000 istore 3 ,contw 
+56ba 58000000 setarg 0x00 
+56bb e0a20000 istore 4 ,contw 
+56bc 202058b9 branch send_lmp_reply 
+
+send_lmpext_io_cap_res:
+56bd 18000e05 force 5 ,queue 
+56be 204058a9 call send_lmpext 
+56bf 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+56c0 e0a18000 istore 3 ,contw 
+56c1 204058b9 call send_lmp_reply 
+56c2 7046ed01 jam flag_pairing_state_pairing ,mem_flag_pairing_state 
+56c3 6800c6e3 fetch 1 ,mem_sp_iocap_local 
+56c4 c000d6ce beq display_yesno ,responder_iocap_display_yesno 
+56c5 c00156c8 beq keyboard_only ,responder_iocap_keyboard_only 
+56c6 c001d6d4 beq no_input_no_output ,responder_iocap_no_input_no_output 
+56c7 20600000 rtn 
+
+responder_iocap_keyboard_only:
+56c8 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56c9 c00056de beq display_only ,responder_iocap_keyboard_only_initiator_iocap_display_only 
+56ca c000d6de beq display_yesno ,responder_iocap_keyboard_only_initiator_iocap_display_yesno 
+56cb c00156de beq keyboard_only ,responder_iocap_keyboard_only_initiator_iocap_keyboard_only 
+56cc c001d6da beq no_input_no_output ,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output 
+56cd 20600000 rtn 
+
+responder_iocap_display_yesno:
+56ce 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56cf c00056da beq display_only ,responder_iocap_display_yesno_initiator_iocap_display_only 
+56d0 c000d6dc beq display_yesno ,responder_iocap_display_yesno_initiator_iocap_display_yesno 
+56d1 c00156de beq keyboard_only ,responder_iocap_display_yesno_initiator_iocap_keyboard_only 
+56d2 c001d6da beq no_input_no_output ,responder_iocap_display_yesno_initiator_iocap_no_input_no_output 
+56d3 20600000 rtn 
+
+responder_iocap_no_input_no_output:
+56d4 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56d5 c00056da beq display_only ,responder_iocap_no_input_no_output_initiator_iocap_display_only 
+56d6 c000d6da beq display_yesno ,responder_iocap_no_input_no_output_initiator_iocap_display_yesno 
+56d7 c00156da beq keyboard_only ,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only 
+56d8 c001d6da beq no_input_no_output ,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output 
+56d9 20600000 rtn 
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+
+responder_iocap_display_yesno_initiator_iocap_display_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+
+set_ssp_mode_justwork:
+56da 7046ea03 jam ssp_mode_just_work_flag ,mem_ssp_mode_flag 
+56db 20600000 rtn 
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+
+set_ssp_mode_numeric_comparison:
+56dc 7046ea01 jam ssp_mode_ssp_pin_flag ,mem_ssp_mode_flag 
+56dd 20600000 rtn 
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:
+
+responder_iocap_keyboard_only_initiator_iocap_display_only:
+
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+
+set_ssp_mode_passkey:
+56de 7046ea02 jam ssp_mode_passkey_entry_flag ,mem_ssp_mode_flag 
+56df 20600000 rtn 
+
+send_lmp_io_cap_req:
+56e0 18000e05 force 5 ,queue 
+56e1 204058a9 call send_lmpext 
+56e2 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+56e3 e0a18000 istore 3 ,contw 
+56e4 202058bb branch send_lmp_request 
+
+send_lmpext_sniff_subrating_req:
+56e5 20600000 rtn 
+
+send_lmpext_sniff_subrating_res:
+56e6 18000e09 force 9 ,queue 
+56e7 204058a9 call send_lmpext 
+56e8 68008094 fetch 1 ,mem_subsniff_rate 
+56e9 e0a08000 istore 1 ,contw 
+56ea 68010095 fetch 2 ,mem_subsniff_tcmax 
+56eb e0a10000 istore 2 ,contw 
+56ec 68020090 fetch 4 ,mem_subsniff_instant 
+56ed e0a20000 istore 4 ,contw 
+56ee 202058b9 branch send_lmp_reply 
+
+send_lmp_name_res:
+56ef 18007e11 force 17 ,pdata 
+56f0 204058a1 call msg_send_lmp 
+56f1 68008049 fetch 1 ,mem_lmi_opcode 
+56f2 1fe20400 copy pdata ,temp 
+56f3 c00056f7 beq 0x00 ,send_lmp_name_res_offset_ok 
+56f4 c00756f7 beq 0x0e ,send_lmp_name_res_offset_ok 
+56f5 c00e56f7 beq 0x1c ,send_lmp_name_res_offset_ok 
+56f6 20600000 rtn 
+
+send_lmp_name_res_offset_ok:
+56f7 e0a08000 istore 1 ,contw 
+56f8 6800c5ae fetch 1 ,mem_local_name_length 
+56f9 e0a08000 istore 1 ,contw 
+56fa df20000e arg 14 ,loopcnt 
+56fb 580045af setarg mem_local_name 
+56fc 98408c00 iadd temp ,contr 
+56fd 20407ecd call memcpy 
+56fe 202058b9 branch send_lmp_reply 
+
+send_lmp_timing_accuracy_res:
+56ff 18007e03 force 3 ,pdata 
+5700 204058a1 call msg_send_lmp 
+5701 58000114 setarg 0x0114 
+5702 e0a10000 istore 2 ,contw 
+5703 202058b9 branch send_lmp_reply 
+
+send_lmp_clkoffset_res:
+5704 18007e03 force 3 ,pdata 
+5705 204058a1 call msg_send_lmp 
+5706 68020164 fetch 4 ,mem_clke_bt 
+5707 9c467e00 isub clkn_bt ,pdata 
+5708 2034d70a branch send_lmp_clkoffset_res_master ,master 
+5709 1fe67e00 sub pdata ,0 ,pdata 
+
+send_lmp_clkoffset_res_master:
+570a 1feb7e00 rshift2 pdata ,pdata 
+570b 793ffe0f set0 15 ,pdata 
+570c e0a10000 istore 2 ,contw 
+570d 202058b9 branch send_lmp_reply 
+
+send_lmp_version_res:
+570e 18007e06 force 6 ,pdata 
+570f 204058a1 call msg_send_lmp 
+5710 6802c5a9 fetch 5 ,mem_lmp_version 
+5711 e0a28000 istore 5 ,contw 
+5712 202058b9 branch send_lmp_reply 
+
+send_lmp_features_res:
+5713 18007e09 force 9 ,pdata 
+5714 204058a1 call msg_send_lmp 
+5715 68044138 fetch 8 ,mem_features 
+5716 e0a40000 istore 8 ,contw 
+5717 202058b9 branch send_lmp_reply 
+
+send_lmpext_features_req:
+5718 18000e0c force 12 ,queue 
+5719 204058a9 call send_lmpext 
+571a 58000001 setarg 0x01 
+571b e0a08000 istore 1 ,contw 
+571c 680103f4 fetch 2 ,mem_lmpext_ssp_enable 
+571d e0a10000 istore 2 ,contw 
+571e 58000000 setarg 0 
+571f e0a18000 istore 3 ,contw 
+5720 58000000 setarg 0x00 
+5721 e0a20000 istore 4 ,contw 
+5722 202058bb branch send_lmp_request 
+
+send_lmpext_packet_type_table_req:
+5723 18000e03 force 3 ,queue 
+5724 204058a9 call send_lmpext 
+5725 6800c1fa fetch 1 ,mem_ptt 
+5726 e0a08000 istore 1 ,contw 
+5727 78547c00 disable user 
+5728 204058bb call send_lmp_request 
+5729 24740000 nrtn user 
+572a 24748000 nrtn master 
+572b 6800c178 fetch 1 ,mem_afh_cfg 
+572c c4000000 rtnbit0 afh_cfg_on 
+572d 2040573f call afh_init 
+572e 20205749 branch afh_open_all_channels 
+
+ssp_enable:
+572f 79200025 set1 mark_ext_patch ,mark 
+5730 44ad402b bpatch patch2b_2 ,mem_patch2b 
+5731 6800c13e fetch 1 ,mem_features + 6 
+5732 79207e03 set1 param_featrue_ssp ,pdata 
+5733 6000c13e store 1 ,mem_features + 6 
+5734 58000101 setarg param_lmpext_ssp_enable 
+5735 600103f4 store 2 ,mem_lmpext_ssp_enable 
+5736 20600000 rtn 
+
+ssp_disable:
+5737 79200025 set1 mark_ext_patch ,mark 
+5738 44adc02b bpatch patch2b_3 ,mem_patch2b 
+5739 6800c13e fetch 1 ,mem_features + 6 
+573a 793ffe03 set0 param_featrue_ssp ,pdata 
+573b 6000c13e store 1 ,mem_features + 6 
+573c 58000000 setarg 0 
+573d 600103f4 store 2 ,mem_lmpext_ssp_enable 
+573e 20600000 rtn 
+
+afh_init:
+573f 70417803 jam 0x3 ,mem_afh_cfg 
+5740 58000000 setarg 0 
+5741 600241e2 store 4 ,mem_afh_timer 
+5742 d8a0417a arg mem_afh_map_lo ,contw 
+5743 2040574d call afh_reset_map 
+5744 d8a04187 arg mem_afh_map_new ,contw 
+5745 2040574d call afh_reset_map 
+5746 d8a041e6 arg mem_afh_classify_channel_map ,contw 
+5747 2040574d call afh_reset_map 
+5748 20205754 branch afh_clear_error_counter 
+
+afh_open_all_channels:
+5749 d8a04187 arg mem_afh_map_new ,contw 
+574a 2040574d call afh_reset_map 
+574b 20405754 call afh_clear_error_counter 
+574c 20205757 branch afh_set_send_flag 
+
+afh_reset_map:
+574d 58ffffff setarg 0xffffff 
+574e e0a18000 istore 3 ,contw 
+574f e0a18000 istore 3 ,contw 
+5750 e0a18000 istore 3 ,contw 
+5751 5800007f setarg 0x7f 
+5752 e0a08000 istore 1 ,contw 
+5753 20600000 rtn 
+
+afh_clear_error_counter:
+5754 58000000 setarg 0 
+5755 60014176 store 2 ,mem_afh_error_total 
+5756 20600000 rtn 
+
+afh_set_send_flag:
+5757 6800c178 fetch 1 ,mem_afh_cfg 
+5758 79207e02 set1 send_lmp_set_afh ,pdata 
+5759 6000c178 store 1 ,mem_afh_cfg 
+575a 20600000 rtn 
+
+send_lmpext_pause_encryption_req:
+575b 18000e02 force 2 ,queue 
+575c 204058a9 call send_lmpext 
+575d 2434d8b9 nbranch send_lmp_reply ,master 
+575e 202058bb branch send_lmp_request 
+
+send_lmp_detach:
+575f 18007e02 force 2 ,pdata 
+5760 204058a1 call msg_send_lmp 
+5761 680083f0 fetch 1 ,mem_disconn_reason_send 
+5762 e0a08000 istore 1 ,contw 
+5763 204058bb call send_lmp_request 
+
+prepare_disconnect:
+5764 6800804b fetch 1 ,mem_op 
+5765 79207e03 set1 op_disconn ,pdata 
+5766 6000804b store 1 ,mem_op 
+5767 70007232 jam 50 ,mem_conn_timer 
+5768 20600000 rtn 
+
+send_lmp_no_payload:
+5769 18007e01 force 1 ,pdata 
+576a 204058a1 call msg_send_lmp 
+576b 202058bb branch send_lmp_request 
+
+send_lmp_nopayload_reply:
+576c 18007e01 force 1 ,pdata 
+576d 204058a1 call msg_send_lmp 
+576e 202058b9 branch send_lmp_reply 
+
+send_lmp_encryption_mode_req:
+576f 18007e02 force 2 ,pdata 
+5770 204058a1 call msg_send_lmp 
+5771 6800804c fetch 1 ,mem_state_map 
+5772 2fec0002 isolate0 smap_encryption ,pdata 
+5773 7920fe00 setflag true ,0 ,pdata 
+5774 1fe17e01 and_into 1 ,pdata 
+5775 e0a08000 istore 1 ,contw 
+5776 202058bb branch send_lmp_request 
+
+send_lmp_superto:
+5777 18007e03 force 3 ,pdata 
+5778 204058a1 call msg_send_lmp 
+5779 68010051 fetch 2 ,mem_supervision_to 
+577a e0a10000 istore 2 ,contw 
+577b 202058bb branch send_lmp_request 
+
+send_lmp_name_req:
+577c 700072fa jam 250 ,mem_conn_timer 
+577d 18007e02 force 2 ,pdata 
+577e 204058a1 call msg_send_lmp 
+577f 68008053 fetch 1 ,mem_name_offset 
+5780 e0a08000 istore 1 ,contw 
+5781 202058bb branch send_lmp_request 
+
+send_lmp_test_control:
+5782 18007e0a force 10 ,pdata 
+5783 204058a1 call msg_send_lmp 
+5784 d8c00151 arg mem_temp_payload ,contr 
+5785 18007209 force 9 ,loopcnt 
+
+send_lmp_test_control_loop:
+5786 e8c08000 ifetch 1 ,contr 
+5787 1fe2fe55 xor_into 0x55 ,pdata 
+5788 e0a08000 istore 1 ,contw 
+5789 c2005786 loop send_lmp_test_control_loop 
+578a 202058bb branch send_lmp_request 
+
+send_lmp_quality_of_service_req:
+578b 202058bb branch send_lmp_request 
+
+send_lmp_unit_key:
+578c 202058bb branch send_lmp_request 
+
+send_lmp_slot_offset:
+578d 20748000 rtn master 
+578e 204038bc call calc_slot_offset 
+578f 18007e09 force 9 ,pdata 
+5790 204058a1 call msg_send_lmp 
+5791 68010170 fetch 2 ,mem_slot_offset 
+5792 e0a10000 istore 2 ,contw 
+5793 6801c140 fetch 3 ,mem_lap 
+5794 e0a18000 istore 3 ,contw 
+5795 6800c143 fetch 1 ,mem_uap 
+5796 e0a08000 istore 1 ,contw 
+5797 68014144 fetch 2 ,mem_nap 
+5798 e0a10000 istore 2 ,contw 
+5799 c581d79e bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+579a 793f8003 set0 mark_switch_initiated ,mark 
+579b 204058bb call send_lmp_request 
+579c 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+579d 20600000 rtn 
+
+send_lmp_slot_offset_reply:
+579e 204058b9 call send_lmp_reply 
+579f 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+57a0 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+57a1 20600000 rtn 
+
+send_lmp_switch_req:
+57a2 d8400200 arg 0x200 ,temp 
+57a3 2034d7a6 branch switch_on_native ,master 
+57a4 1d027e00 deposit clke_bt 
+57a5 202057a7 branch switch_slack 
+
+switch_on_native:
+57a6 1c427e00 deposit clkn_bt 
+
+switch_slack:
+57a7 1c227e00 deposit bt_clk 
+57a8 9840fe00 iadd temp ,pdata 
+57a9 1fe17ffc and_into 0x1fc ,pdata 
+57aa 60020034 store 4 ,mem_sniff_anchor 
+57ab 18007e05 force 5 ,pdata 
+57ac 204058a1 call msg_send_lmp 
+57ad 68020034 fetch 4 ,mem_sniff_anchor 
+57ae 1fe37e00 rshift pdata ,pdata 
+57af e0a20000 istore 4 ,contw 
+57b0 202058bb branch send_lmp_request 
+
+send_lmp_sniff_req:
+57b1 18007e0a force 10 ,pdata 
+57b2 204058a1 call msg_send_lmp 
+57b3 d8c003ff arg mem_sniff_payload ,contr 
+57b4 e8c48000 ifetch 9 ,contr 
+57b5 e0a48000 istore 9 ,contw 
+57b6 202058bb branch send_lmp_request 
+
+send_lmp_timing_accuracy_req:
+57b7 18007e03 force 3 ,pdata 
+57b8 204058a1 call msg_send_lmp 
+57b9 58000114 setarg 0x0114 
+57ba e0a10000 istore 2 ,contw 
+57bb 202058bb branch send_lmp_request 
+
+send_lmp_unsniff_req:
+57bc 18007e01 force 1 ,pdata 
+57bd 204058a1 call msg_send_lmp 
+57be 202058bb branch send_lmp_request 
+
+send_lmp_max_slot:
+57bf 18007e02 force 2 ,pdata 
+57c0 204058a1 call msg_send_lmp 
+57c1 6800c170 fetch 1 ,mem_max_slot 
+57c2 e0a08000 istore 1 ,contw 
+57c3 202058bb branch send_lmp_request 
+
+send_lmp_max_slot_req:
+57c4 18007e02 force 2 ,pdata 
+57c5 204058a1 call msg_send_lmp 
+57c6 58000005 setarg 0x05 
+57c7 e0a08000 istore 1 ,contw 
+57c8 202058bb branch send_lmp_request 
+
+send_lmp_inc_power:
+57c9 18007e02 force 2 ,pdata 
+57ca 204058a1 call msg_send_lmp 
+57cb 58000000 setarg 0x00 
+57cc e0a08000 istore 1 ,contw 
+57cd 202058bb branch send_lmp_request 
+
+send_lmp_setup_complete:
+57ce 70007c2e jam lmp_max_slot_req ,mem_lmo_opcode2 
+57cf 68008030 fetch 1 ,mem_state 
+57d0 79207e04 set1 state_conn_comp ,pdata 
+57d1 60008030 store 1 ,mem_state 
+57d2 1c427e00 copy clkn_bt ,pdata 
+57d3 6002040f store 4 ,mem_aurand_send_delay_time 
+57d4 680083f7 fetch 1 ,mem_lmp_conn_state 
+57d5 c281d7dd bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+57d6 79207e03 set1 sent_setup_complete ,pdata 
+57d7 600083f7 store 1 ,mem_lmp_conn_state 
+57d8 7009bd05 jam bt_evt_setup_complete ,mem_fifo_temp 
+57d9 20407d86 call ui_ipc_send_event 
+57da 18007e01 force 1 ,pdata 
+57db 204058a1 call msg_send_lmp 
+57dc 202058bb branch send_lmp_request 
+
+send_lmp_setup_complete_has_sent:
+57dd 70004800 jam 0 ,mem_lmp_to_send 
+57de 20600000 rtn 
+
+send_lmp_version_req:
+57df 18007e06 force 6 ,pdata 
+57e0 204058a1 call msg_send_lmp 
+57e1 6802c5a9 fetch 5 ,mem_lmp_version 
+57e2 e0a28000 istore 5 ,contw 
+57e3 202058bb branch send_lmp_request 
+
+send_lmp_features_req:
+57e4 18007e09 force 9 ,pdata 
+57e5 204058a1 call msg_send_lmp 
+57e6 68044138 fetch 8 ,mem_features 
+57e7 e0a40000 istore 8 ,contw 
+57e8 202058bb branch send_lmp_request 
+
+sp_master_send_io_cap_get:
+57e9 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+57ea 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+57eb c1808000 rtnne sp_key_valid 
+57ec 7008d313 jam sp_master_stat_start_done ,mem_master_sp_state 
+57ed 20600000 rtn 
+
+sp_master_send_io_cap_send:
+57ee 204058fa call tid_initiate 
+57ef 70007c99 jam lmp_io_cap_req ,mem_lmo_opcode2 
+57f0 7008d303 jam sp_stat_key_send ,mem_master_sp_state 
+57f1 20600000 rtn 
+
+sp_master_send_lmp_encapsulated_header:
+57f2 204058fa call tid_initiate 
+57f3 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+57f4 7008d307 jam sp_stat_random_send ,mem_master_sp_state 
+57f5 20600000 rtn 
+
+sp_master_commitment_compare:
+57f6 da200972 arg mem_sp_calc_result_high ,rega 
+57f7 da400992 arg mem_sp_confirm_remote ,regb 
+57f8 df200010 arg 16 ,loopcnt 
+57f9 20407f55 call string_compare 
+57fa 2022d800 branch sp_master_commitment_compare_success ,zero 
+57fb 7008d300 jam sp_stat_null ,mem_master_sp_state 
+57fc 204076f5 call master_clear_mem_master_sp_flag 
+57fd 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+57fe 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+57ff 2020536c branch reject_lmp_packet 
+
+sp_master_commitment_compare_success:
+5800 7008d30a jam sp_stat_confirm_calc ,mem_master_sp_state 
+5801 204076f3 call master_set_mem_master_sp_flag 
+5802 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+5803 20205454 branch accept_lmp_msg 
+
+sp_master_send_lmp_simple_pairing_number:
+5804 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+5805 20600000 rtn 
+
+sp_send_lmp_encapsulated_header:
+5806 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+5807 20600000 rtn 
+
+send_lmp_encapsulated_header:
+5808 7008da00 jam 0 ,mem_sp_local_key_send_count 
+5809 18007e04 force 4 ,pdata 
+580a 204058a1 call msg_send_lmp 
+580b 18007e01 force encapsulated_major_type_p192 ,pdata 
+580c e0a08000 istore 1 ,contw 
+580d 18007e01 force encapsulated_minor_type_p192 ,pdata 
+580e e0a08000 istore 1 ,contw 
+580f 18007e30 force encapsulated_len_p192 ,pdata 
+5810 e0a08000 istore 1 ,contw 
+5811 20405907 call check_localsm 
+5812 2020d8bb branch send_lmp_request ,true 
+5813 202058b9 branch send_lmp_reply 
+
+send_lmp_encapsulated_payload:
+5814 18007e11 force 17 ,pdata 
+5815 204058a1 call msg_send_lmp 
+5816 680088da fetch 1 ,mem_sp_local_key_send_count 
+5817 d8c046b2 arg mem_sp_pubkey_local ,contr 
+5818 98c08c00 iadd contr ,contr 
+5819 e8c40000 ifetch 8 ,contr 
+581a e0a40000 istore 8 ,contw 
+581b e8c40000 ifetch 8 ,contr 
+581c e0a40000 istore 8 ,contw 
+581d 680088da fetch 1 ,mem_sp_local_key_send_count 
+581e 1fe0fe10 increase 16 ,pdata 
+581f 600088da store 1 ,mem_sp_local_key_send_count 
+5820 20405907 call check_localsm 
+5821 2020d8bb branch send_lmp_request ,true 
+5822 202058b9 branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_comfirm:
+5823 7008d206 jam sp_stat_random_recv ,mem_sp_state 
+5824 70007c3f jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+5825 20600000 rtn 
+
+send_lmp_simple_pairing_comfirm:
+5826 18007e11 force 17 ,pdata 
+5827 204058a1 call msg_send_lmp 
+5828 d8c00972 arg mem_sp_calc_result_high ,contr 
+5829 e8c40000 ifetch 8 ,contr 
+582a e0a40000 istore 8 ,contw 
+582b e8c40000 ifetch 8 ,contr 
+582c e0a40000 istore 8 ,contw 
+582d 202058b9 branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_number:
+582e 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+582f 20600000 rtn 
+
+send_lmp_simple_pairing_number:
+5830 20405907 call check_localsm 
+5831 2040f628 call sp_local_random_key_generator ,true 
+5832 18007e11 force 17 ,pdata 
+5833 204058a1 call msg_send_lmp 
+5834 d8c00942 arg mem_sp_random_local ,contr 
+5835 e8c40000 ifetch 8 ,contr 
+5836 e0a40000 istore 8 ,contw 
+5837 e8c40000 ifetch 8 ,contr 
+5838 e0a40000 istore 8 ,contw 
+5839 20405907 call check_localsm 
+583a 2420d8b9 nbranch send_lmp_reply ,true 
+583b 2020d8bb branch send_lmp_request ,true 
+
+master_sp_sm_end:
+583c 7008d30f jam sp_stat_done ,mem_master_sp_state 
+
+sp_aurand_send:
+583d 204058fa call tid_initiate 
+583e 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+583f 20405912 call check_localsm_master 
+5840 2020f665 branch sp_master_key_prarm_push ,true 
+5841 2020766f branch sp_link_key_prarm_push 
+
+master_sp_send_lmp_dhkey_check:
+5842 204058f6 call tid_reply 
+
+sp_send_lmp_dhkey_check:
+5843 70007c41 jam lmp_dhkey_check ,mem_lmo_opcode2 
+5844 20600000 rtn 
+
+send_lmp_dhkey_check:
+5845 18007e11 force 17 ,pdata 
+5846 204058a1 call msg_send_lmp 
+5847 d8c00972 arg mem_sp_calc_result_high ,contr 
+5848 e8c40000 ifetch 8 ,contr 
+5849 e0a40000 istore 8 ,contw 
+584a e8c40000 ifetch 8 ,contr 
+584b e0a40000 istore 8 ,contw 
+584c 20405907 call check_localsm 
+584d 2420d8b9 nbranch send_lmp_reply ,true 
+584e 2020d8bb branch send_lmp_request ,true 
+
+send_lmp_enc_key_size_mask_res:
+584f 18007e03 force 3 ,pdata 
+5850 204058a1 call msg_send_lmp 
+5851 5800fffe setarg 0xfffe 
+5852 e0a10000 istore 2 ,contw 
+5853 202058b9 branch send_lmp_reply 
+
+send_lmp_auto_rate:
+5854 202058bb branch send_lmp_request 
+
+send_lmp_clkoffset_req:
+5855 202058bb branch send_lmp_request 
+
+send_lmp_quality_of_service:
+5856 202058bb branch send_lmp_request 
+
+send_lmp_test_activate:
+5857 202058bb branch send_lmp_request 
+
+send_lmp_comb_key:
+5858 20405916 call generate_random_number 
+5859 da204140 arg mem_lap ,rega 
+585a 2040591c call generate_linkkey 
+585b 18007e11 force 17 ,pdata 
+585c 204058a1 call msg_send_lmp 
+585d da2004a6 arg mem_kinit ,rega 
+585e da400486 arg mem_random_number ,regb 
+585f 20407077 call xor16 
+5860 2434d8b0 nbranch send_lmp_follow ,master 
+5861 202058b6 branch send_lmp_tid 
+
+send_lmp_inrand:
+5862 20405916 call generate_random_number 
+5863 da200040 arg mem_plap ,rega 
+5864 20406f7a call generate_kinit 
+
+send_lmp_rand:
+5865 18007e11 force 17 ,pdata 
+5866 204058a1 call msg_send_lmp 
+5867 d8c00486 arg mem_random_number ,contr 
+5868 20407e87 call memcpy16 
+5869 68008055 fetch 1 ,mem_conn_sm 
+586a c00cd8bb beq conn_sm_auth_wait ,send_lmp_request 
+586b c00c58bb beq conn_sm_pairing_wait ,send_lmp_request 
+586c 202058b6 branch send_lmp_tid 
+
+send_lmp_aurand:
+586d 680088d9 fetch 1 ,mem_pairing_auth 
+586e 203a5873 branch send_lmp_aurand_notpairing ,blank 
+586f 20405907 call check_localsm 
+5870 2040d8fa call tid_initiate ,true 
+5871 2440d8f6 ncall tid_reply ,true 
+5872 20205874 branch send_lmp_aurand_common 
+
+send_lmp_aurand_notpairing:
+5873 204058fa call tid_initiate 
+
+send_lmp_aurand_common:
+5874 20405916 call generate_random_number 
+5875 20205865 branch send_lmp_rand 
+
+send_lmp_sres:
+5876 da204140 arg mem_lap ,rega 
+5877 20406fad call function_e1 
+5878 18007e05 force 5 ,pdata 
+5879 204058a1 call msg_send_lmp 
+587a 680204b6 fetch 4 ,mem_input_store 
+587b e0a20000 istore 4 ,contw 
+587c d84003fb arg mem_sres_tid ,temp 
+587d 204058ec call special_tid_store 
+587e 204070ab call copy_aco 
+587f 20405907 call check_localsm 
+5880 2020d885 branch send_lmp_sres_master ,true 
+5881 7003fe01 jam done_encryp ,mem_wait_encryption 
+5882 680088d9 fetch 1 ,mem_pairing_auth 
+5883 207a0000 rtn blank 
+5884 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+
+send_lmp_sres_master:
+5885 6800c25d fetch 1 ,mem_link_key_exists 
+5886 207a0000 rtn blank 
+
+send_lmp_sres_startenc:
+5887 20405907 call check_localsm 
+5888 2420d88d nbranch send_lmp_sres_startenc_slave ,true 
+5889 680083fd fetch 1 ,mem_auth_enable 
+588a 207a0000 rtn blank 
+588b 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+588c 20600000 rtn 
+
+send_lmp_sres_startenc_slave:
+588d c6908000 rtnmark0 mark_slave_in_rand_accepted 
+588e 793f8021 set0 mark_slave_in_rand_accepted ,mark 
+588f 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+5890 20600000 rtn 
+
+send_lmp_start_encryption:
+5891 20405916 call generate_random_number 
+5892 20406fb0 call function_e3 
+5893 18007e11 force 17 ,pdata 
+5894 204058a1 call msg_send_lmp 
+5895 d8c00486 arg mem_random_number ,contr 
+5896 20407e87 call memcpy16 
+5897 202058b6 branch send_lmp_tid 
+
+send_lmp_stop_encryption_req:
+5898 18007e01 force 1 ,pdata 
+5899 204058a1 call msg_send_lmp 
+589a 202058b6 branch send_lmp_tid 
+
+send_lmp_encryption_key_size_req:
+589b 18007e02 force 2 ,pdata 
+589c 204058a1 call msg_send_lmp 
+589d 18007e10 force 16 ,pdata 
+589e e0a08000 istore 1 ,contw 
+589f 60008054 store 1 ,mem_key_size 
+58a0 202058b6 branch send_lmp_tid 
+
+msg_send_lmp:
+58a1 1fe9fe00 lshift3 pdata ,pdata 
+58a2 1fe1fe07 or_into 0x07 ,pdata 
+58a3 600083dc store 1 ,mem_lmo_header_length 
+58a4 df200011 arg 17 ,loopcnt 
+58a5 d8a003de arg mem_lmo_payload ,contw 
+58a6 20407e9f call clear_mem 
+58a7 d8a003de arg mem_lmo_payload ,contw 
+58a8 20600000 rtn 
+
+send_lmpext:
+58a9 1fe1227f and pdata ,0x7f ,rega 
+58aa 7000487f jam lmp_escape ,mem_lmp_to_send 
+58ab 18e27e00 deposit queue 
+58ac 204058a1 call msg_send_lmp 
+58ad 1a227e00 deposit rega 
+58ae e0a08000 istore 1 ,contw 
+58af 20600000 rtn 
+
+send_lmp_follow:
+58b0 68008048 fetch 1 ,mem_lmp_to_send 
+58b1 1fe3fe00 lshift pdata ,pdata 
+58b2 6808804c fetcht 1 ,mem_state_map 
+58b3 284ffe01 isolate1 smap_lmptid ,temp 
+58b4 7920fe00 setflag true ,0 ,pdata 
+58b5 202058c0 branch send_lmp_exit 
+
+send_lmp_tid:
+58b6 6808804c fetcht 1 ,mem_state_map 
+58b7 18410401 and_into 1 ,temp 
+58b8 202058bc branch send_lmp_end 
+
+send_lmp_reply:
+58b9 18000400 force 0 ,temp 
+58ba 202058bc branch send_lmp_end 
+
+send_lmp_request:
+58bb 18000401 force 1 ,temp 
+
+send_lmp_end:
+58bc 68008048 fetch 1 ,mem_lmp_to_send 
+58bd 1fe3fe00 lshift pdata ,pdata 
+58be 7934fe00 setflag master ,0 ,pdata 
+58bf 9842fe00 ixor temp ,pdata 
+
+send_lmp_exit:
+58c0 600083dd store 1 ,mem_lmo_header_opcode 
+58c1 70004800 jam 0 ,mem_lmp_to_send 
+58c2 204058d1 call lmo_fifo_process_lmo0empty 
+58c3 78347c00 enable user 
+58c4 20600000 rtn 
+
+lmo_fifo_check:
+58c5 6800807c fetch 1 ,mem_lmo_opcode2 
+58c6 207a0000 rtn blank 
+58c7 204058ca call lmo_fifo_process 
+58c8 6800807c fetch 1 ,mem_lmo_opcode2 
+58c9 20600000 rtn 
+
+lmo_fifo_process:
+58ca 79200025 set1 mark_ext_patch ,mark 
+58cb 44ae402b bpatch patch2b_4 ,mem_patch2b 
+58cc 68008048 fetch 1 ,mem_lmp_to_send 
+58cd 203a58d1 branch lmo_fifo_process_lmo0empty ,blank 
+58ce 68008078 fetch 1 ,mem_lmo_opcode1 
+58cf 247a0000 nrtn blank 
+58d0 202058db branch lmo_fifo_process_lmo2to1 
+
+lmo_fifo_process_lmo0empty:
+58d1 68008078 fetch 1 ,mem_lmo_opcode1 
+58d2 203a58e1 branch lmo_fifo_process_lmo1_empty ,blank 
+58d3 68018078 fetch 3 ,mem_lmo_opcode1 
+58d4 60018048 store 3 ,mem_lmp_to_send 
+58d5 6808807b fetcht 1 ,mem_lmo_tid1 
+58d6 6800804c fetch 1 ,mem_state_map 
+58d7 793ffe01 set0 smap_lmptid ,pdata 
+58d8 9841fe00 ior temp ,pdata 
+58d9 6000804c store 1 ,mem_state_map 
+58da 70007800 jam 0 ,mem_lmo_opcode1 
+
+lmo_fifo_process_lmo2to1:
+58db 6800807c fetch 1 ,mem_lmo_opcode2 
+58dc 207a0000 rtn blank 
+58dd 6802007c fetch 4 ,mem_lmo_opcode2 
+58de 60020078 store 4 ,mem_lmo_opcode1 
+58df 70007c00 jam 0 ,mem_lmo_opcode2 
+58e0 20600000 rtn 
+
+lmo_fifo_process_lmo1_empty:
+58e1 6800807c fetch 1 ,mem_lmo_opcode2 
+58e2 207a0000 rtn blank 
+58e3 6801807c fetch 3 ,mem_lmo_opcode2 
+58e4 60018048 store 3 ,mem_lmp_to_send 
+58e5 6808807f fetcht 1 ,mem_lmo_tid2 
+58e6 6800804c fetch 1 ,mem_state_map 
+58e7 793ffe01 set0 smap_lmptid ,pdata 
+58e8 9841fe00 ior temp ,pdata 
+58e9 6000804c store 1 ,mem_state_map 
+58ea 70007c00 jam 0 ,mem_lmo_opcode2 
+58eb 20600000 rtn 
+
+special_tid_store:
+58ec 79200025 set1 mark_ext_patch ,mark 
+58ed 44aec02b bpatch patch2b_5 ,mem_patch2b 
+58ee 6800804c fetch 1 ,mem_state_map 
+58ef 1fe22600 copy pdata ,regc 
+58f0 e8408000 ifetch 1 ,temp 
+58f1 2040546e call pop_tid_follow 
+58f2 204058b0 call send_lmp_follow 
+58f3 1a627e00 copy regc ,pdata 
+58f4 6000804c store 1 ,mem_state_map 
+58f5 20600000 rtn 
+
+tid_reply:
+58f6 6808804c fetcht 1 ,mem_state_map 
+58f7 793f8400 set0 smap_lmptidinit ,temp 
+58f8 6008804c storet 1 ,mem_state_map 
+58f9 20600000 rtn 
+
+tid_initiate:
+58fa 6808804c fetcht 1 ,mem_state_map 
+58fb 79200400 set1 smap_lmptidinit ,temp 
+58fc 6008804c storet 1 ,mem_state_map 
+58fd 20600000 rtn 
+
+tid_check:
+58fe 7d34fe01 nsetflag master ,smap_lmptid ,pdata 
+58ff 6808804c fetcht 1 ,mem_state_map 
+5900 9842fe00 ixor temp ,pdata 
+5901 2feffe01 isolate1 smap_lmptid ,pdata 
+5902 20600000 rtn 
+
+tid_set_reply:
+5903 6800804c fetch 1 ,mem_state_map 
+5904 7934fe01 setflag master ,smap_lmptid ,pdata 
+5905 6000804c store 1 ,mem_state_map 
+5906 20600000 rtn 
+
+check_localsm:
+5907 680088d8 fetch 1 ,mem_sp_localsm 
+5908 2fe0fe01 compare local_statemachine ,pdata ,0x7f 
+5909 20600000 rtn 
+
+setlocalsm_master:
+590a 680088d8 fetch 1 ,mem_sp_localsm 
+590b 79207e07 set1 7 ,pdata 
+590c 600088d8 store 1 ,mem_sp_localsm 
+590d 20600000 rtn 
+
+setlocalsm_slave:
+590e 680088d8 fetch 1 ,mem_sp_localsm 
+590f 793ffe07 set0 7 ,pdata 
+5910 600088d8 store 1 ,mem_sp_localsm 
+5911 20600000 rtn 
+
+check_localsm_master:
+5912 680088d8 fetch 1 ,mem_sp_localsm 
+5913 2feffe07 isolate1 7 ,pdata 
+5914 600088d8 store 1 ,mem_sp_localsm 
+5915 20600000 rtn 
+
+generate_random_number:
+5916 d8a00486 arg mem_random_number ,contw 
+
+generate_random:
+5917 18007210 force 16 ,loopcnt 
+
+generate_random_another:
+
+generate_random_loop:
+5918 180a7e00 random pdata 
+5919 e0a08000 istore 1 ,contw 
+591a c2005918 loop generate_random_another 
+591b 20600000 rtn 
+
+generate_linkkey:
+591c 20406f7e call function_e21 
+591d da204261 arg mem_link_key ,rega 
+591e da4004b6 arg mem_input_store ,regb 
+591f ea240000 ifetch 8 ,rega 
+5920 68088030 fetcht 1 ,mem_state 
+5921 7d3a0406 nsetflag blank ,state_combkey ,temp 
+5922 60088030 storet 1 ,mem_state 
+5923 1a220a00 copy rega ,contw 
+5924 20407077 call xor16 
+5925 202031ee branch generate_linkkey_continue 
+
+process_conn_sm:
+5926 79200025 set1 mark_ext_patch ,mark 
+5927 44af402b bpatch patch2b_6 ,mem_patch2b 
+5928 204058c5 call lmo_fifo_check 
+5929 247a0000 nrtn blank 
+
+process_conn_sm_continue:
+592a 68008055 fetch 1 ,mem_conn_sm 
+592b 207a0000 rtn blank 
+592c c002597b beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+592d c002d980 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+592e c0015972 beq conn_sm_send_features ,host_create_conn_send_features 
+592f c001d988 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+5930 c0075975 beq conn_sm_send_switch ,host_create_conn_send_switch 
+5931 c00359a4 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+5932 c003d9bc beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+5933 c004d9bd beq conn_sm_encrypt ,host_create_conn_encrypt 
+5934 c00559c6 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+5935 c005d9ca beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+5936 c0065992 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+5937 c006d995 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+5938 c007d99b beq conn_sm_detach_delay ,host_create_conn_master_detach 
+5939 c0095965 beq conn_sm_send_version ,host_create_conn_send_version 
+593a c009d988 beq conn_sm_wait_version ,host_create_conn_waiting 
+593b c0085968 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+593c c00a5962 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+593d c00ad988 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+593e c00b595c beq conn_sm_pairing ,host_create_conn_pairing 
+593f c00c5961 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+5940 c00bd955 beq conn_sm_auth ,host_create_conn_auth 
+5941 c00cd95b beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+5942 c00d5946 beq conn_sm_done ,host_create_conn_done 
+5943 c00dd950 beq conn_sm_wait_done ,host_create_conn_done_wait 
+5944 70005500 jam conn_sm_standby ,mem_conn_sm 
+5945 20600000 rtn 
+
+host_create_conn_done:
+5946 680083f7 fetch 1 ,mem_lmp_conn_state 
+5947 c4010000 rtnbit0 received_setup_complete 
+5948 c4018000 rtnbit0 sent_setup_complete 
+5949 70005500 jam conn_sm_standby ,mem_conn_sm 
+594a 2040594c call host_conn_judge_encrypt 
+594b 2020690d branch scheduler_start_upper_sm 
+
+host_conn_judge_encrypt:
+594c 6800816c fetch 1 ,mem_connection_options 
+594d c4008000 rtnbit0 connection_encrypt 
+594e 7000550a jam conn_sm_encrypt_wait ,mem_conn_sm 
+594f 20600000 rtn 
+
+host_create_conn_done_wait:
+5950 d8e0000b arg enpt_delay_timer ,queue 
+5951 20407ee2 call timer_check 
+5952 247a0000 nrtn blank 
+5953 7000551a jam conn_sm_done ,mem_conn_sm 
+5954 20600000 rtn 
+
+host_create_conn_auth:
+5955 6800816c fetch 1 ,mem_connection_options 
+5956 793ffe00 set0 connection_auth ,pdata 
+5957 6000816c store 1 ,mem_connection_options 
+5958 70005519 jam conn_sm_auth_wait ,mem_conn_sm 
+5959 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+595a 20600000 rtn 
+
+host_create_conn_auth_wait:
+595b 20600000 rtn 
+
+host_create_conn_pairing:
+595c 680083fa fetch 1 ,mem_pincode_state 
+595d c1810000 rtnne pincode_state_pincode_ready 
+595e 204059cc call host_auth 
+595f 70005518 jam conn_sm_pairing_wait ,mem_conn_sm 
+5960 20600000 rtn 
+
+host_create_conn_pairing_wait:
+5961 20600000 rtn 
+
+host_creat_conn_send_feat_ext:
+5962 70005515 jam conn_sm_wait_features_ext ,mem_conn_sm 
+5963 70007c83 jam lmp_ext_features_req ,mem_lmo_opcode2 
+5964 20600000 rtn 
+
+host_create_conn_send_version:
+5965 70005513 jam conn_sm_wait_version ,mem_conn_sm 
+5966 70007c25 jam lmp_version_req ,mem_lmo_opcode2 
+5967 20600000 rtn 
+
+host_creat_conn_wait_switch:
+5968 6800c5f4 fetch 1 ,mem_switch_flag 
+5969 c1000000 rtneq switch_flag_init 
+596a c000d970 beq switch_flag_accept ,host_create_conn_switch_accept 
+596b d8e0000a arg switch_wait_timer ,queue 
+596c 20407ee2 call timer_check 
+596d 247a0000 nrtn blank 
+596e 7045f400 jam switch_flag_init ,mem_switch_flag 
+596f 20205989 branch host_create_conn_switch 
+
+host_create_conn_switch_accept:
+5970 20748000 rtn master 
+5971 202059a4 branch host_create_conn_auth_pair 
+
+host_create_conn_send_features:
+5972 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+5973 70007c27 jam lmp_features_req ,mem_lmo_opcode2 
+5974 20600000 rtn 
+
+host_create_conn_send_switch:
+5975 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+5976 79200003 set1 mark_switch_initiated ,mark 
+5977 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+5978 580001ff setarg 0x1ff 
+5979 600103f8 store 2 ,mem_soft_timer 
+597a 20600000 rtn 
+
+host_create_conn_send_conn_req:
+597b 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+597c 7003f8ff jam 0xff ,mem_soft_timer 
+597d 793f8022 set0 mark_reconn_recieve_switch ,mark 
+597e 70007c33 jam lmp_host_connection_req ,mem_lmo_opcode2 
+597f 2020531b branch init_lmp_reinit 
+
+host_create_conn_wait_accept:
+5980 c6110000 rtnmark1 mark_reconn_recieve_switch 
+5981 680103f8 fetch 2 ,mem_soft_timer 
+5982 1fe67e01 sub pdata ,1 ,pdata 
+5983 2022d986 branch host_create_conn_resend ,zero 
+5984 600103f8 store 2 ,mem_soft_timer 
+5985 20600000 rtn 
+
+host_create_conn_resend:
+5986 7000550e jam conn_sm_send_switch ,mem_conn_sm 
+5987 20600000 rtn 
+
+host_create_conn_waiting:
+5988 20600000 rtn 
+
+host_create_conn_switch:
+5989 680083f7 fetch 1 ,mem_lmp_conn_state 
+598a c4018000 rtnbit0 sent_setup_complete 
+598b c4010000 rtnbit0 received_setup_complete 
+598c 6800816c fetch 1 ,mem_connection_options 
+598d 793ffe02 set0 connection_switch ,pdata 
+598e 6000816c store 1 ,mem_connection_options 
+598f 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+5990 70005510 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+5991 20600000 rtn 
+
+host_create_conn_send_setup_complete:
+5992 7000550d jam conn_sm_wait_setup_complete ,mem_conn_sm 
+5993 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5994 20600000 rtn 
+
+host_create_conn_wait_setup_complete:
+5995 680083f7 fetch 1 ,mem_lmp_conn_state 
+5996 c4010000 rtnbit0 received_setup_complete 
+5997 70005500 jam conn_sm_standby ,mem_conn_sm 
+5998 20600000 rtn 
+
+host_create_conn_wait_setup_complete_rtn:
+5999 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+599a 20600000 rtn 
+
+host_create_conn_master_detach:
+599b 680083f8 fetch 1 ,mem_soft_timer 
+599c 1fe0ffff increase -1 ,pdata 
+599d 203a59a0 branch host_create_conn_send_detach ,blank 
+599e 600083f8 store 1 ,mem_soft_timer 
+599f 20600000 rtn 
+
+host_create_conn_send_detach:
+59a0 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+59a1 7003f016 jam local_host ,mem_disconn_reason_send 
+59a2 70005500 jam 0 ,mem_conn_sm 
+59a3 20600000 rtn 
+
+host_create_conn_auth_pair:
+59a4 6800816c fetch 1 ,mem_connection_options 
+59a5 c2815989 bbit1 connection_switch ,host_create_conn_switch 
+59a6 c28059a9 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+
+host_create_conn_sm_done:
+59a7 7000551a jam conn_sm_done ,mem_conn_sm 
+59a8 20600000 rtn 
+
+host_create_conn_auth_pair_true:
+59a9 6800c25d fetch 1 ,mem_link_key_exists 
+59aa 203a59b5 branch host_create_conn_auth_pair_nokey ,blank 
+59ab 680083f7 fetch 1 ,mem_lmp_conn_state 
+59ac c4018000 rtnbit0 sent_setup_complete 
+59ad c4010000 rtnbit0 received_setup_complete 
+59ae 6802040f fetch 4 ,mem_aurand_send_delay_time 
+59af d8400064 arg 100 ,temp 
+59b0 98408400 iadd temp ,temp 
+59b1 1c427e00 copy clkn_bt ,pdata 
+59b2 98467c00 isub temp ,null 
+59b3 24610000 nrtn positive 
+59b4 20205955 branch host_create_conn_auth 
+
+host_create_conn_auth_pair_nokey:
+59b5 70005516 jam conn_sm_pairing ,mem_conn_sm 
+59b6 70471804 jam 4 ,mem_pin_length 
+59b7 58003030 setarg 0x3030 
+59b8 60014719 store 2 ,mem_pin 
+59b9 e0a10000 istore 2 ,contw 
+59ba 7003fa02 jam pincode_state_pincode_ready ,mem_pincode_state 
+59bb 2020595c branch host_create_conn_pairing 
+
+host_create_conn_auth_pair_wait:
+59bc 20600000 rtn 
+
+host_create_conn_encrypt:
+59bd 6800816c fetch 1 ,mem_connection_options 
+59be c280d9c1 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+59bf 7000551a jam conn_sm_done ,mem_conn_sm 
+59c0 20600000 rtn 
+
+host_create_conn_encrypt_start:
+59c1 6800816c fetch 1 ,mem_connection_options 
+59c2 793ffe01 set0 connection_encrypt ,pdata 
+59c3 6000816c store 1 ,mem_connection_options 
+59c4 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+59c5 20600000 rtn 
+
+host_create_conn_encrypt_wait:
+59c6 680083fe fetch 1 ,mem_wait_encryption 
+59c7 207a0000 rtn blank 
+59c8 70005500 jam conn_sm_standby ,mem_conn_sm 
+59c9 202059c1 branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+59ca 7000550c jam conn_sm_send_setup_complete ,mem_conn_sm 
+59cb 20600000 rtn 
+
+host_auth:
+59cc 6800804b fetch 1 ,mem_op 
+59cd c28159d1 bbit1 op_inrand_req ,remote_auth 
+59ce 204058fa call tid_initiate 
+59cf 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+59d0 20203f9b branch cmd_exit 
+
+remote_auth:
+59d1 6800804b fetch 1 ,mem_op 
+59d2 793ffe02 set0 op_inrand_req ,pdata 
+59d3 6000804b store 1 ,mem_op 
+59d4 20405618 call lmp_accept_inrand 
+59d5 20405903 call tid_set_reply 
+59d6 20203f9b branch cmd_exit 
+
+pincode_reinit:
+59d7 58000004 setarg 4 
+59d8 6000c718 store 1 ,mem_pin_length 
+59d9 58003030 setarg 0x3030 
+59da e0a10000 istore 2 ,contw 
+59db e0a10000 istore 2 ,contw 
+59dc 20600000 rtn 
+
+module_init:
+59dd 20758000 rtn wake 
+59de 70472f00 jam 0 ,mem_module_task 
+59df 20405234 call le_modified_name 
+59e0 20406577 call adc_init_data 
+59e1 58005a1c setarg module_process_idle 
+59e2 60014294 store 2 ,mem_cb_idle_process 
+59e3 58005a1c setarg module_conn_process 
+59e4 60014292 store 2 ,mem_cb_bt_process 
+59e5 58005a22 setarg module_process_bb_event 
+59e6 60014296 store 2 ,mem_cb_bb_event_process 
+59e7 58005a1c setarg module_conn_process 
+59e8 60014290 store 2 ,mem_cb_le_process 
+59e9 58005a18 setarg module_lpm_lock 
+59ea 6001428a store 2 ,mem_cb_check_wakelock 
+59eb 58005b60 setarg module_le_tx_update_data 
+59ec 6001429c store 2 ,mem_cb_update_notify_value 
+59ed 58005ba2 setarg module_le_tx_update_notify_continue 
+59ee 6001429e store 2 ,mem_cb_update_notify_continue 
+59ef 58005cf9 setarg module_hci_event_receive_spp_data 
+59f0 60014607 store 2 ,mem_cb_receive_spp_data 
+59f1 58005d81 setarg module_le_receive_data 
+59f2 6001429a store 2 ,mem_cb_att_write 
+59f3 79200025 set1 mark_ext_patch ,mark 
+59f4 44afc02b bpatch patch2b_7 ,mem_patch2b 
+59f5 204059fa call module_lpm_uart_init 
+59f6 20405a13 call module_gpio_init 
+59f7 20403d48 call check_module_disabled 
+59f8 20406441 call eeprom_load_reconn_info 
+59f9 20205d0e branch module_hci_event_enter_standby_mode 
+
+module_lpm_uart_init:
+59fa 6802473e fetch 4 ,mem_module_uart_rx_buffer 
+59fb 60120054 hstore 4 ,core_uart_rsaddr 
+59fc 68024742 fetch 4 ,mem_module_uart_tx_buffer 
+59fd 6012005a hstore 4 ,core_uart_tsaddr 
+59fe 68108081 hfetch 1 ,core_gpio_sel1 
+59ff 1fe1fe04 or_into 0x04 ,pdata 
+5a00 60108081 hstore 1 ,core_gpio_sel1 
+5a01 70027cff jam 0xff ,mem_ucode_id_local 
+5a02 70806200 hjam 0x0 ,core_uart_ctrl 
+5a03 6801473e fetch 2 ,mem_module_uart_rx_buffer 
+5a04 60110058 hstore 2 ,core_uart_rrptr 
+5a05 68014742 fetch 2 ,mem_module_uart_tx_buffer 
+5a06 6011005e hstore 2 ,core_uart_twptr 
+5a07 60110060 hstore 2 ,core_uart_trptrp 
+5a08 68120078 hfetch 4 ,core_gpio_pu0 
+5a09 79207e07 set1 7 ,pdata 
+5a0a 60120078 hstore 4 ,core_gpio_pu0 
+5a0b 20403ee4 call hci_init_common 
+5a0c 6800c75a fetch 1 ,mem_module_flag 
+5a0d 2feffe00 isolate1 module_flag_uart_flow_control ,pdata 
+5a0e 68188062 hfetcht 1 ,core_uart_ctrl 
+5a0f 79208404 setflag true ,4 ,temp 
+5a10 60188062 hstoret 1 ,core_uart_ctrl 
+5a11 20600000 rtn 
+
+module_lpm_init:
+5a12 204059fa call module_lpm_uart_init 
+
+module_gpio_init:
+5a13 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a14 204064e8 call gpio_config_output 
+5a15 20405a76 call module_set_conn_pin_low 
+5a16 6808c729 fetcht 1 ,mem_module_wake_up_gpio 
+5a17 202064df branch gpio_config_input 
+
+module_lpm_lock:
+5a18 6808c729 fetcht 1 ,mem_module_wake_up_gpio 
+5a19 204064f5 call gpio_get_bit 
+5a1a 2420be37 nbranch app_put_lpm_wake_lock ,true 
+5a1b 20203e35 branch app_get_lpm_wake_lock 
+
+module_process_idle:
+
+module_conn_process:
+
+module_app_dispatch:
+5a1c 79200025 set1 mark_ext_patch ,mark 
+5a1d 44b0402c bpatch patch2c_0 ,mem_patch2c 
+5a1e 20405dc5 call module_control_air_flow 
+5a1f 2040480e call l2cap_malloc_is_fifo_full 
+5a20 247a0000 nrtn blank 
+5a21 20205a7b branch module_process 
+
+module_process_bb_event:
+5a22 1a627e00 copy regc ,pdata 
+5a23 c000da67 beq bt_evt_bb_connected ,module_process_bb_conn 
+5a24 c0015a3e beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+5a25 c0025a69 beq bt_evt_reconn_failed ,module_process_reconn_fail 
+5a26 c002da5b beq bt_evt_setup_complete ,module_process_setup_complete 
+5a27 c0045a44 beq bt_evt_spp_connected ,module_process_spp_connected 
+5a28 c004da4b beq bt_evt_spp_disconnected ,module_process_spp_disconnected 
+5a29 c0055a5e beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+5a2a c005da4f beq bt_evt_enter_sniff ,module_process_enter_sniff 
+5a2b c0065a5a beq bt_evt_exit_sniff ,module_process_exit_sniff 
+5a2c c009da69 beq bt_evt_reconn_page_timeout ,module_process_page_time_out 
+5a2d c00a5a63 beq bt_evt_le_connected ,module_process_le_conn 
+5a2e c00ada5c beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+5a2f c011da5f beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+5a30 c0125a62 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+5a31 c0185d49 beq bt_evt_le_pairing_fail ,module_hci_event_le_pairing_fail 
+5a32 c018dd4b beq bt_evt_le_pairing_success ,module_hci_event_le_pairing_success 
+5a33 c0195d59 beq bt_evt_le_start_enc ,module_hci_event_start_enc 
+5a34 c019dd57 beq bt_evt_le_pause_enc ,module_hci_event_pause_enc 
+5a35 c01a5d43 beq bt_evt_le_tk_generate ,module_hci_event_le_tk 
+5a36 c01add39 beq bt_evt_bt_gkey_generate ,module_hci_event_gkey_generate 
+5a37 c01b5d41 beq bt_evt_bt_get_passkey ,module_hci_event_passkey_entry_mode 
+5a38 c01bdd4d beq bt_evt_bt_pairing_fail ,module_hci_event_bt_pairing_fail 
+5a39 c01c5d4f beq bt_evt_bt_pairing_success ,module_hci_event_bt_pairing_success 
+5a3a 1fe1040f and pdata ,0x0f ,temp 
+5a3b 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+5a3c c0285da3 beq bt_evt_timer_init ,module_bb_event_timer 
+5a3d 20600000 rtn 
+
+module_process_bb_event_disconned:
+5a3e 6800c6ed fetch 1 ,mem_flag_pairing_state 
+5a3f 245a5d4d ncall module_hci_event_bt_pairing_fail ,blank 
+5a40 20405a69 call module_disconn_start 
+5a41 6801470b fetch 2 ,mem_ui_state_map 
+5a42 c4020000 rtnbit0 ui_state_bt_spp_conn 
+5a43 20205a4b branch module_spp_disconnected 
+
+module_process_spp_connected:
+5a44 6801470b fetch 2 ,mem_ui_state_map 
+5a45 79207e04 set1 ui_state_bt_spp_conn ,pdata 
+5a46 6001470b store 2 ,mem_ui_state_map 
+5a47 6800c73b fetch 1 ,mem_module_spp_lpm_mult 
+5a48 6000c212 store 1 ,mem_lpm_mult 
+5a49 20405a76 call module_set_conn_pin_low 
+5a4a 20205ce4 branch module_hci_event_spp_connect 
+
+module_process_spp_disconnected:
+
+module_spp_disconnected:
+5a4b 6801470b fetch 2 ,mem_ui_state_map 
+5a4c 793ffe04 set0 ui_state_bt_spp_conn ,pdata 
+5a4d 6001470b store 2 ,mem_ui_state_map 
+5a4e 20205ce8 branch module_hci_event_spp_disconnect 
+
+module_process_enter_sniff:
+
+module_sniff_param_check:
+5a4f 68014042 fetch 2 ,mem_context + coffset_tsniff 
+5a50 1fe37e00 rshift pdata ,pdata 
+5a51 68094284 fetcht 2 ,mem_sniff_param_interval 
+5a52 98467c00 isub temp ,null 
+5a53 2422da55 nbranch module_sniff_param_check_unsniff ,zero 
+5a54 20203e7f branch app_lpm_mult_enable 
+
+module_sniff_param_check_unsniff:
+5a55 6800c72f fetch 1 ,mem_module_task 
+5a56 c3800000 rtnbit1 moudle_task_unsinff 
+5a57 68110112 hfetch 2 ,core_uart_rxitems 
+5a58 245a5dbd ncall module_set_unsniff_task_flag ,blank 
+5a59 20203e77 branch app_bt_sniff_exit 
+
+module_process_exit_sniff:
+5a5a 20203e81 branch app_lpm_mult_disable 
+
+module_process_setup_complete:
+5a5b 20205a6d branch module_conn_start 
+
+module_process_bb_even_le_disconn:
+5a5c 20405a69 call module_disconn_start 
+5a5d 20205cea branch module_hci_event_le_disconnect 
+
+module_process_evt_pincode_req:
+5a5e 20203e45 branch app_bt_set_pincode 
+
+module_process_unsniff_accept:
+5a5f 6800c72f fetch 1 ,mem_module_task 
+5a60 c3003e79 bbit0 moudle_task_unsinff ,app_bt_enter_sniff 
+5a61 20205dc1 branch module_clear_unsniff_task_flag 
+
+module_process_unsniff_not_accept:
+5a62 20205dc1 branch module_clear_unsniff_task_flag 
+
+module_process_le_conn:
+5a63 20405a6d call module_conn_start 
+5a64 6800c73c fetch 1 ,mem_module_le_lpm_mult 
+5a65 6000c212 store 1 ,mem_lpm_mult 
+5a66 20205ce6 branch module_hci_event_le_connect 
+
+module_process_bb_conn:
+5a67 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5a68 20600000 rtn 
+
+module_process_page_time_out:
+
+module_process_reconn_fail:
+
+module_disconn_start:
+5a69 20405adf call module_start_adv_discovery_by_command 
+5a6a 20205a6b branch module_set_conn_pin_high 
+
+module_set_conn_pin_high:
+5a6b 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a6c 202064ff branch gpio_out_active 
+
+module_conn_start:
+5a6d 20405a6f call module_stop_adv_discovery 
+5a6e 20205a76 branch module_set_conn_pin_low 
+
+module_stop_adv_discovery:
+5a6f 6800c72e fetch 1 ,mem_module_state 
+5a70 2feffe00 isolate1 moudle_state_bt_bit ,pdata 
+5a71 2040be59 call app_bt_stop_discovery ,true 
+5a72 6800c72e fetch 1 ,mem_module_state 
+5a73 2feffe01 isolate1 moudle_state_ble_bit ,pdata 
+5a74 2040be61 call app_ble_stop_adv ,true 
+5a75 20600000 rtn 
+
+module_set_conn_pin_low:
+5a76 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a77 202064fd branch gpio_out_inactive 
+
+module_process_with_credit:
+5a78 6800c603 fetch 1 ,mem_credit_flag 
+5a79 c1000000 rtneq credit_disable 
+5a7a 20206838 branch rfcomm_send_uih_without_payload 
+
+module_process:
+5a7b 79200025 set1 mark_ext_patch ,mark 
+5a7c 44b0c02c bpatch patch2c_1 ,mem_patch2c 
+5a7d 6810810c hfetch 1 ,core_uart_status 
+5a7e c281da78 bbit1 uart_status_rx_fifo_empty ,module_process_with_credit 
+5a7f 20407f6e call get_uart_rrptr 
+5a80 e8608000 ifetch 1 ,contru 
+5a81 c080da93 bne 0x01 ,module_hci_in_excp 
+5a82 68110112 hfetch 2 ,core_uart_rxitems 
+5a83 1fe67c02 sub pdata ,2 ,null 
+5a84 20610000 rtn positive 
+5a85 e8608000 ifetch 1 ,contru 
+5a86 60008416 store 1 ,mem_uart_opcode 
+5a87 e8688000 ifetcht 1 ,contru 
+5a88 18622200 copy contru ,rega 
+5a89 60088417 storet 1 ,mem_uart_len 
+5a8a 18408403 add temp ,3 ,temp 
+5a8b 68110112 hfetch 2 ,core_uart_rxitems 
+5a8c 98460400 isub temp ,temp 
+5a8d 24610000 nrtn positive 
+5a8e 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5a8f 20405aaa call module_hci_cmd_control 
+5a90 68008418 fetch 1 ,mem_module_temp_nl_discard_packet 
+5a91 c1000000 rtneq hci_not_discard_packet 
+5a92 20205aa5 branch module_hci_dicard_packet 
+
+module_hci_in_excp:
+5a93 20405d3f call module_hci_event_invalid_packet 
+5a94 20407f6b call wait_uarttx 
+5a95 20205a96 branch module_hci_release_except 
+
+module_hci_release_except:
+5a96 79200025 set1 mark_ext_patch ,mark 
+5a97 44b1402c bpatch patch2c_2 ,mem_patch2c 
+5a98 68110112 hfetch 2 ,core_uart_rxitems 
+5a99 207a0000 rtn blank 
+5a9a 20407f6e call get_uart_rrptr 
+5a9b e8608000 ifetch 1 ,contru 
+5a9c 1fe67c01 sub pdata ,0x01 ,null 
+5a9d 2442daa9 ncall module_hci_dicard_bytes ,zero 
+5a9e 2422da96 nbranch module_hci_release_except ,zero 
+5a9f e8608000 ifetch 1 ,contru 
+5aa0 c1028000 rtneq hci_cmd_spp_data_req 
+5aa1 c1148000 rtneq hci_cmd_set_credit_given 
+5aa2 186087ff increase -1 ,contru 
+5aa3 20405aa9 call module_hci_dicard_bytes 
+5aa4 20205a96 branch module_hci_release_except 
+
+module_hci_dicard_packet:
+5aa5 20407f6e call get_uart_rrptr 
+5aa6 18608602 increase 2 ,contru 
+5aa7 e8608000 ifetch 1 ,contru 
+5aa8 98608600 iadd contru ,contru 
+
+module_hci_dicard_bytes:
+5aa9 20206322 branch uartd_rxdone 
+
+module_hci_cmd_control:
+5aaa 79200025 set1 mark_ext_patch ,mark 
+5aab 44b1c02c bpatch patch2c_3 ,mem_patch2c 
+5aac 68008416 fetch 1 ,mem_uart_opcode 
+5aad c0005acc beq hci_cmd_set_bt_addr_req ,module_hci_cmd_set_bt_addr 
+5aae c000dad1 beq hci_cmd_set_le_addr_req ,module_hci_cmd_set_le_addr 
+5aaf c0015ad6 beq hci_cmd_set_visibility_req ,module_hci_cmd_set_visibility 
+5ab0 c001daec beq hci_cmd_set_bt_name_req ,module_hci_cmd_set_bt_name 
+5ab1 c0025af5 beq hci_cmd_set_le_name_req ,module_hci_cmd_set_le_name 
+5ab2 c002daff beq hci_cmd_spp_data_req ,module_hci_cmd_receive_spp_data 
+5ab3 c004db23 beq hci_cmd_le_data_req ,module_hci_cmd_receive_le_data 
+5ab4 c005dbd3 beq hci_cmd_status_irq ,module_hci_cmd_inquire_status 
+5ab5 c0065bd4 beq hci_cmd_set_pairing_req ,module_hci_cmd_set_pairing_mode 
+5ab6 c006dbe8 beq hci_cmd_set_pincode_req ,module_hci_cmd_set_pincode 
+5ab7 c0075bf0 beq hci_cmd_set_uartcontrol_req ,module_hci_cmd_set_uart_control_mode 
+5ab8 c007dbf6 beq hci_cmd_set_uart_baud_req ,module_hci_cmd_set_uart_baud 
+5ab9 c0085c02 beq hci_cmd_version_req ,module_hci_cmd_version_request 
+5aba c008dc0a beq hci_cmd_bt_disconnect ,module_hci_cmd_bt_disconnect 
+5abb c0095c0e beq hci_cmd_ble_disconnect ,module_hci_cmd_ble_disconnect 
+5abc c0135c12 beq hci_cmd_set_nvram_req ,module_hci_cmd_set_nvram 
+5abd c0145c19 beq hci_cmd_confirm_gkey ,module_hci_cmd_confirm_gkey 
+5abe c014dc29 beq hci_cmd_set_credit_given ,module_hci_cmd_set_credit_given 
+5abf c0155c32 beq hci_cmd_auto_adv_scan ,module_hci_cmd_auto_adv 
+5ac0 c015dc67 beq hci_cmd_power_req ,module_hci_cmd_power_request 
+5ac1 c0165c6d beq hci_cmd_power_set ,module_hci_cmd_power_set 
+5ac2 c0185c74 beq hci_cmd_passkey_entry ,module_hci_cmd_passkey_entry 
+5ac3 c018dc7a beq hci_cmd_set_gpio ,module_hci_cmd_set_gpio 
+5ac4 c0195c8b beq hci_cmd_read_gpio ,module_hci_cmd_read_gpio 
+5ac5 c019dc93 beq hci_cmd_le_set_pairing ,module_hci_cmd_le_set_pairing_mode 
+5ac6 c01a5cb1 beq hci_cmd_le_set_adv_data ,module_hci_cmd_le_set_adv_data 
+5ac7 c01adcb9 beq hci_cmd_le_set_scan_data ,module_hci_cmd_le_set_scan_data 
+5ac8 c01b5cc1 beq hci_cmd_le_send_conn_update_req ,module_hci_cmd_le_send_conn_update_req 
+5ac9 c01c5ccb beq hci_cmd_le_start_pairing ,module_hci_cmd_le_start_pairing 
+5aca c0245cd3 beq hci_cmd_le_confirm_gkey ,module_hci_cmd_le_confirm_gkey 
+5acb 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_set_bt_addr:
+5acc 68008417 fetch 1 ,mem_uart_len 
+5acd c0835cde bne 6 ,module_hci_event_receive_invalid_cmd 
+5ace e8630000 ifetch 6 ,contru 
+5acf 60034140 store 6 ,mem_lap 
+5ad0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_le_addr:
+5ad1 68008417 fetch 1 ,mem_uart_len 
+5ad2 c0835cde bne 6 ,module_hci_event_receive_invalid_cmd 
+5ad3 e8630000 ifetch 6 ,contru 
+5ad4 6003453e store 6 ,mem_le_lap 
+5ad5 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_visibility:
+5ad6 68008417 fetch 1 ,mem_uart_len 
+5ad7 c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5ad8 1a220600 copy rega ,contru 
+5ad9 20405ce1 call module_hci_event_receive_valid_cmd 
+5ada e8688000 ifetcht 1 ,contru 
+5adb 6008c73d storet 1 ,mem_module_bluetooth_stauts_by_command 
+5adc 6801470b fetch 2 ,mem_ui_state_map 
+5add c3848000 rtnbit1 ui_state_ble_connected 
+5ade c3800000 rtnbit1 ui_state_bt_connected 
+
+module_start_adv_discovery_by_command:
+5adf 6800c72e fetch 1 ,mem_module_state 
+5ae0 2feffe00 isolate1 moudle_state_bt_bit ,pdata 
+5ae1 2420dae5 nbranch moudle_start_adv_by_command ,true 
+5ae2 6808c73d fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+5ae3 18417e03 and temp ,0x03 ,pdata 
+5ae4 6000c133 store 1 ,mem_scan_mode 
+
+moudle_start_adv_by_command:
+5ae5 6800c72e fetch 1 ,mem_module_state 
+5ae6 2feffe01 isolate1 moudle_state_ble_bit ,pdata 
+5ae7 24608000 nrtn true 
+5ae8 6808c73d fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+5ae9 284ffe02 isolate1 2 ,temp 
+5aea 2020be63 branch app_ble_start_adv ,true 
+5aeb 20203e61 branch app_ble_stop_adv 
+
+module_hci_cmd_set_bt_name:
+5aec 68008417 fetch 1 ,mem_uart_len 
+5aed 1fe67c20 sub pdata ,32 ,null 
+5aee 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5aef 6000c5ae store 1 ,mem_local_name_length 
+5af0 1fe27200 copy pdata ,loopcnt 
+5af1 1a220600 copy rega ,contru 
+5af2 d8a045af arg mem_local_name ,contw 
+5af3 20406341 call uart_copy_rx_bytes_fast 
+5af4 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_le_name:
+5af5 68008417 fetch 1 ,mem_uart_len 
+5af6 1fe67c13 sub pdata ,0x13 ,null 
+5af7 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5af8 6000c440 store 1 ,mem_le_name_len 
+5af9 1fe27200 copy pdata ,loopcnt 
+5afa 1a220600 copy rega ,contru 
+5afb d8a04441 arg mem_le_name ,contw 
+5afc 20406341 call uart_copy_rx_bytes_fast 
+5afd 20405234 call le_modified_name 
+5afe 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_receive_spp_data:
+5aff 6800c70b fetch 1 ,mem_ui_state_map 
+5b00 c3025cde bbit0 ui_state_bt_spp_conn ,module_hci_event_receive_invalid_cmd 
+5b01 20403e1d call app_check_sniff 
+5b02 2020db0f branch module_hci_cmd_spp_exut_sniff ,true 
+5b03 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b04 6800c600 fetch 1 ,mem_remote_credits 
+5b05 207a0000 rtn blank 
+5b06 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b07 c0805b0d bne 0 ,module_hci_cmd_pass_init_ng_rx_len_all 
+5b08 68008417 fetch 1 ,mem_uart_len 
+5b09 6001460b store 2 ,mem_nl_rx_len_all 
+5b0a 1a220600 copy rega ,contru 
+5b0b 18627e00 copy contru ,pdata 
+5b0c 60014609 store 2 ,mem_nl_rx_data_src 
+
+module_hci_cmd_pass_init_ng_rx_len_all:
+5b0d 20405b11 call module_hci_cmd_get_current_packet_len_and_remain_len 
+5b0e 2020685f branch spp_tx_rfcomm_packet 
+
+module_hci_cmd_spp_exut_sniff:
+5b0f 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b10 20205d9f branch module_exit_sniff 
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+5b11 20405b17 call module_hci_cmd_get_current_patcket_len 
+5b12 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b13 6809472c fetcht 2 ,mem_current_packet_length 
+5b14 98467e00 isub temp ,pdata 
+5b15 6001460b store 2 ,mem_nl_rx_len_all 
+5b16 20600000 rtn 
+
+module_hci_cmd_get_current_patcket_len:
+5b17 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b18 d840006e arg dm_refcom_buff_len ,temp 
+5b19 20407faf call not_greater_than 
+5b1a 68094604 fetcht 2 ,mem_rfcomm_max_frame_size 
+5b1b 20407faf call not_greater_than 
+5b1c 680945f6 fetcht 2 ,mem_pn_max_frame_size 
+5b1d 20407faf call not_greater_than 
+5b1e 6001472c store 2 ,mem_current_packet_length 
+5b1f 20600000 rtn 
+
+module_hci_command_tx_spp_tx_complete:
+5b20 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5b21 70041605 jam hci_cmd_spp_data_req ,mem_uart_opcode 
+5b22 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_receive_le_data:
+5b23 6801470b fetch 2 ,mem_ui_state_map 
+5b24 c4048000 rtnbit0 ui_state_ble_connected 
+5b25 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b26 6800c569 fetch 1 ,mem_le_continue_flag 
+5b27 247a0000 nrtn blank 
+5b28 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b29 203a5b4a branch module_hci_cmd_gatt_notify_start_packet ,blank 
+5b2a 6809475e fetcht 2 ,mem_module_hci_notify_offset 
+5b2b 98467c00 isub temp ,null 
+5b2c 24628000 nrtn zero 
+5b2d 79200025 set1 mark_ext_patch ,mark 
+5b2e 44b2402c bpatch patch2c_4 ,mem_patch2c 
+5b2f 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b30 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b31 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b32 98462400 isub temp ,regb 
+5b33 24213b31 nbranch assert ,positive 
+5b34 2422db38 nbranch module_hci_cmd_gatt_notify_seperate ,zero 
+5b35 20405b47 call module_hci_cmd_gatt_notify_clear_len 
+5b36 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5b37 20205b8e branch module_set_le_tx_data_flag 
+
+module_hci_cmd_gatt_notify_seperate:
+5b38 6800c75a fetch 1 ,mem_module_flag 
+5b39 c3810000 rtnbit1 module_flag_ble_send_mtu23 
+5b3a 68110058 hfetch 2 ,core_uart_rrptr 
+5b3b 98000600 iforce contru 
+5b3c 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b3d 98608600 iadd contru ,contru 
+5b3e 18622200 copy contru ,rega 
+5b3f 58000901 setarg 0x0901 
+5b40 e0610000 istore 2 ,contru 
+5b41 1a40fe02 add regb ,2 ,pdata 
+5b42 e0608000 istore 1 ,contru 
+5b43 68014762 fetch 2 ,mem_module_hci_notify_att 
+5b44 e0610000 istore 2 ,contru 
+5b45 1a227e00 copy rega ,pdata 
+5b46 60110058 hstore 2 ,core_uart_rrptr 
+
+module_hci_cmd_gatt_notify_clear_len:
+5b47 58000000 setarg 0 
+5b48 60014760 store 2 ,mem_module_hci_notify_len 
+5b49 20600000 rtn 
+
+module_hci_cmd_gatt_notify_start_packet:
+5b4a 1a220600 copy rega ,contru 
+5b4b e8610000 ifetch 2 ,contru 
+5b4c 60014762 store 2 ,mem_module_hci_notify_att 
+5b4d 68008417 fetch 1 ,mem_uart_len 
+5b4e 1fe0fffe increase -2 ,pdata 
+5b4f 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5b50 203a5cde branch module_hci_event_receive_invalid_cmd ,blank 
+5b51 60014764 store 2 ,mem_module_hci_notify_original_len 
+5b52 6800c75a fetch 1 ,mem_module_flag 
+5b53 c2815b5e bbit1 module_flag_ble_send_mtu23 ,module_hci_cmd_notify_start_packet_mtu23 
+5b54 6809454e fetcht 2 ,mem_le_remote_mtu 
+
+module_hci_cmd_gatt_notify_start_packet1:
+5b55 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b56 20407faf call not_greater_than 
+5b57 60014760 store 2 ,mem_module_hci_notify_len 
+5b58 18627e00 copy contru ,pdata 
+5b59 6001475c store 2 ,mem_module_hci_notify_start 
+5b5a 58000000 setarg 0 
+5b5b 6001475e store 2 ,mem_module_hci_notify_offset 
+5b5c 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5b5d 20204bd6 branch le_xtype_fifo_in 
+
+module_hci_cmd_notify_start_packet_mtu23:
+5b5e d8400014 arg 20 ,temp 
+5b5f 20205b55 branch module_hci_cmd_gatt_notify_start_packet1 
+
+module_le_tx_update_data:
+5b60 6800c75b fetch 1 ,mem_le_notify_type 
+5b61 70475b00 jam 0 ,mem_le_notify_type 
+5b62 243a5bbe nbranch module_le_send_md_notify ,blank 
+5b63 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b64 203a3b31 branch assert ,blank 
+5b65 1fe08403 add pdata ,3 ,temp 
+5b66 60094467 storet 2 ,mem_le_txpayload 
+5b67 d8400014 arg 20 ,temp 
+5b68 20407faf call not_greater_than 
+5b69 1fe27200 copy pdata ,loopcnt 
+5b6a 6001475e store 2 ,mem_module_hci_notify_offset 
+5b6b 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b6c 98460400 isub temp ,temp 
+5b6d 6800c75a fetch 1 ,mem_module_flag 
+5b6e c2815b71 bbit1 module_flag_ble_send_mtu23 ,module_le_tx_no_continue 
+5b6f 2442db9a ncall module_le_send_att_insert_continue ,zero 
+5b70 7003da01 jam le_continue_type_notification ,mem_le_continue_type 
+
+module_le_tx_no_continue:
+5b71 79200025 set1 mark_ext_patch ,mark 
+5b72 44b2c02c bpatch patch2c_5 ,mem_patch2c 
+5b73 d8200002 arg 0x02 ,type 
+5b74 68014762 fetch 2 ,mem_module_hci_notify_att 
+5b75 6001446c store 2 ,mem_le_l2cap + 1 
+5b76 6801475c fetch 2 ,mem_module_hci_notify_start 
+5b77 1fe20600 copy pdata ,contru 
+
+module_le_send_att_notify_common:
+5b78 20406341 call uart_copy_rx_bytes_fast 
+5b79 6800c75a fetch 1 ,mem_module_flag 
+5b7a c3015bb9 bbit0 module_flag_ble_send_mtu23 ,module_le_send_not_fill_l2cap_len 
+5b7b 58004467 setarg mem_le_txpayload 
+5b7c 98a67e00 isub contw ,pdata 
+5b7d 1fe60400 sub pdata ,0 ,temp 
+5b7e 6008c466 storet 1 ,mem_le_txlen 
+5b7f 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b80 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b81 20405b94 call module_le_check_if_send_once_more 
+5b82 68088379 fetcht 1 ,mem_le_arq 
+5b83 68008419 fetch 1 ,mem_module_le_md_flag 
+5b84 203a5b8c branch module_le_send_non_l2cap_last ,blank 
+5b85 7d3a0404 nsetflag blank ,md ,temp 
+5b86 60088379 storet 1 ,mem_le_arq 
+5b87 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5b88 20404bd6 call le_xtype_fifo_in 
+5b89 70475b01 jam 1 ,mem_le_notify_type 
+5b8a 68088379 fetcht 1 ,mem_le_arq 
+5b8b 20204f92 branch le_send_non_l2cap1 
+
+module_le_send_non_l2cap_last:
+5b8c 20405b8e call module_set_le_tx_data_flag 
+5b8d 20204f90 branch le_send_non_l2cap 
+
+module_set_le_tx_data_flag:
+5b8e 6800c75a fetch 1 ,mem_module_flag 
+5b8f 79207e03 set1 module_flag_ble_send_data ,pdata 
+5b90 20205d9a branch module_store_moule_flag 
+
+module_clear_le_tx_data_flag:
+5b91 6800c75a fetch 1 ,mem_module_flag 
+5b92 793ffe03 set0 module_flag_ble_send_data ,pdata 
+5b93 20205d9a branch module_store_moule_flag 
+
+module_le_check_if_send_once_more:
+5b94 70041900 jam 0 ,mem_module_le_md_flag 
+5b95 98467c00 isub temp ,null 
+5b96 20628000 rtn zero 
+5b97 24610000 nrtn positive 
+5b98 70041901 jam 1 ,mem_module_le_md_flag 
+5b99 20600000 rtn 
+
+module_le_send_att_insert_continue:
+5b9a 6801c544 fetch 3 ,mem_le_xtype_fifo 
+5b9b 243a5b9e nbranch module_le_send_att_insert_cont_next ,blank 
+5b9c 7045461f jam attop_continue ,mem_le_xtype_fifo + 2 
+5b9d 20600000 rtn 
+
+module_le_send_att_insert_cont_next:
+5b9e 20404bd4 call le_xtype_fifo_is_near_full 
+5b9f 243a3b31 nbranch assert ,blank 
+5ba0 7045451f jam attop_continue ,mem_le_xtype_fifo + 1 
+5ba1 20600000 rtn 
+
+module_le_tx_update_notify_continue:
+5ba2 79200025 set1 mark_ext_patch ,mark 
+5ba3 44b3402c bpatch patch2c_6 ,mem_patch2c 
+5ba4 68014760 fetch 2 ,mem_module_hci_notify_len 
+5ba5 203a3b31 branch assert ,blank 
+5ba6 6809475e fetcht 2 ,mem_module_hci_notify_offset 
+5ba7 203a3b31 branch assert ,blank 
+5ba8 98467e00 isub temp ,pdata 
+5ba9 d840001b arg 27 ,temp 
+5baa 20407faf call not_greater_than 
+5bab 1fe27200 copy pdata ,loopcnt 
+5bac 6801475c fetch 2 ,mem_module_hci_notify_start 
+5bad 1fe20600 copy pdata ,contru 
+5bae 6801475e fetch 2 ,mem_module_hci_notify_offset 
+5baf 98608600 iadd contru ,contru 
+5bb0 9f20fe00 iadd loopcnt ,pdata 
+5bb1 6001475e store 2 ,mem_module_hci_notify_offset 
+5bb2 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bb3 98460400 isub temp ,temp 
+5bb4 2442db9a ncall module_le_send_att_insert_continue ,zero 
+5bb5 7003da01 jam le_continue_type_notification ,mem_le_continue_type 
+5bb6 d8a04467 arg mem_le_txpayload ,contw 
+5bb7 20406341 call uart_copy_rx_bytes_fast 
+5bb8 d8200001 arg 1 ,type 
+
+module_le_send_not_fill_l2cap_len:
+5bb9 58004467 setarg mem_le_txpayload 
+5bba 98a67e00 isub contw ,pdata 
+5bbb 1fe60400 sub pdata ,0 ,temp 
+5bbc 6008c466 storet 1 ,mem_le_txlen 
+5bbd 20204f90 branch le_send_non_l2cap 
+
+module_le_send_md_notify:
+5bbe 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5bbf 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bc0 98467e00 isub temp ,pdata 
+5bc1 d8400014 arg 20 ,temp 
+5bc2 20407faf call not_greater_than 
+5bc3 1fe27200 copy pdata ,loopcnt 
+5bc4 1fe08403 add pdata ,3 ,temp 
+5bc5 60094467 storet 2 ,mem_le_txpayload 
+5bc6 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bc7 9840fe00 iadd temp ,pdata 
+5bc8 60014760 store 2 ,mem_module_hci_notify_len 
+5bc9 6801475c fetch 2 ,mem_module_hci_notify_start 
+5bca 1fe20600 copy pdata ,contru 
+5bcb 6801475e fetch 2 ,mem_module_hci_notify_offset 
+5bcc 98608600 iadd contru ,contru 
+5bcd 9f20fe00 iadd loopcnt ,pdata 
+5bce 6001475e store 2 ,mem_module_hci_notify_offset 
+5bcf d8200002 arg 0x02 ,type 
+5bd0 68014762 fetch 2 ,mem_module_hci_notify_att 
+5bd1 6001446c store 2 ,mem_le_l2cap + 1 
+5bd2 20205b78 branch module_le_send_att_notify_common 
+
+module_hci_cmd_inquire_status:
+5bd3 20205d12 branch module_hci_event_status_res 
+
+module_hci_cmd_set_pairing_mode:
+5bd4 1a220600 copy rega ,contru 
+5bd5 e8608000 ifetch 1 ,contru 
+5bd6 c0005bdb beq pairing_pincode ,module_hci_pairing_pincode_mode 
+5bd7 c000dbde beq pairing_justwork ,module_hci_pairing_just_work_mode 
+5bd8 c0015be4 beq pairing_passkey ,module_hci_pairing_passkey 
+5bd9 c001dbe6 beq pairing_confirm ,module_hci_pairing_numeric_comparison 
+5bda 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_pairing_pincode_mode:
+5bdb 20405737 call ssp_disable 
+5bdc 7046e200 jam 0 ,mem_ssp_enable 
+5bdd 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_pairing_just_work_mode:
+5bde 58040003 setarg ssp_mode_just_work_io_cap_data 
+
+module_hci_sspairing_mode:
+5bdf 6001c6e3 store 3 ,mem_sp_iocap_local 
+5be0 6000c6ea store 1 ,mem_ssp_mode_flag 
+5be1 2040572f call ssp_enable 
+5be2 7046e201 jam 1 ,mem_ssp_enable 
+5be3 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_pairing_passkey:
+5be4 58040002 setarg ssp_mode_passkey_io_cap_data 
+5be5 20205bdf branch module_hci_sspairing_mode 
+
+module_hci_pairing_numeric_comparison:
+5be6 58040001 setarg ssp_mode_ssp_pin_io_cap_data 
+5be7 20205bdf branch module_hci_sspairing_mode 
+
+module_hci_cmd_set_pincode:
+5be8 68008417 fetch 1 ,mem_uart_len 
+5be9 1fe67c10 sub pdata ,16 ,null 
+5bea 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5beb 6000c718 store 1 ,mem_pin_length 
+5bec 1fe27200 copy pdata ,loopcnt 
+5bed d8a04719 arg mem_pin ,contw 
+5bee 20406354 call uart_copy_rx_bytes 
+5bef 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_uart_control_mode:
+5bf0 1a220600 copy rega ,contru 
+5bf1 e8608000 ifetch 1 ,contru 
+5bf2 68188062 hfetcht 1 ,core_uart_ctrl 
+5bf3 7d3a0404 nsetflag blank ,4 ,temp 
+5bf4 60188062 hstoret 1 ,core_uart_ctrl 
+5bf5 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_uart_baud:
+5bf6 68008417 fetch 1 ,mem_uart_len 
+5bf7 1fe27200 copy pdata ,loopcnt 
+5bf8 1a220600 copy rega ,contru 
+5bf9 20407f25 call string2dec_from_uart 
+5bfa 5adc6c00 setarg uart_clk 
+5bfb 9846fc00 idiv temp 
+5bfc 20407f53 call wait_div_end 
+5bfd 1807fe00 quotient pdata 
+
+module_hci_cmd_set_uart_baud_ok:
+5bfe 600142d3 store uart_baud_len ,mem_baud 
+5bff 20405ce1 call module_hci_event_receive_valid_cmd 
+5c00 20407f6b call wait_uarttx 
+5c01 20206325 branch uart_set_baud_by_mem 
+
+module_hci_cmd_version_request:
+5c02 da200002 arg 2 ,rega 
+5c03 da4042a6 arg mem_soft_version_num ,regb 
+5c04 d8400000 arg 0 ,temp 
+5c05 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_set_cmd_send_response:
+5c06 600109e1 store 2 ,mem_event_cmd_response_content 
+5c07 da4009e1 arg mem_event_cmd_response_content ,regb 
+5c08 d8400000 arg 0 ,temp 
+5c09 20205cec branch module_hci_event_set_cmd 
+
+module_hci_cmd_bt_disconnect:
+5c0a 6801470b fetch 2 ,mem_ui_state_map 
+5c0b c3005cde bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_bt_disconnect_doing:
+5c0c 20405ce1 call module_hci_event_receive_valid_cmd 
+5c0d 20203e52 branch app_bt_disconnect 
+
+module_hci_cmd_ble_disconnect:
+5c0e 6801470b fetch 2 ,mem_ui_state_map 
+5c0f c304dcde bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_ble_disconnect_doing:
+5c10 20405ce1 call module_hci_event_receive_valid_cmd 
+5c11 20203e6b branch app_ble_disconnect 
+
+module_hci_cmd_set_nvram:
+5c12 68008417 fetch 1 ,mem_uart_len 
+5c13 1fe27200 copy pdata ,loopcnt 
+5c14 1a220600 copy rega ,contru 
+5c15 680142bc fetch 2 ,mem_nv_data_ptr 
+5c16 1fe20a00 icopy contw 
+5c17 20406341 call uart_copy_rx_bytes_fast 
+5c18 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_confirm_gkey:
+5c19 6800c70b fetch 1 ,mem_ui_state_map 
+5c1a c3005cde bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+5c1b e8608000 ifetch 1 ,contru 
+5c1c 6808c6e9 fetcht 1 ,mem_flag_mode_ssp_pin 
+5c1d 793a0400 setflag blank ,flag_mode_ssp_pin_comparison_result_bit ,temp 
+5c1e 79200407 set1 flag_mode_ssp_pin_reviceve_comparison_bit ,temp 
+5c1f 6008c6e9 storet 1 ,mem_flag_mode_ssp_pin 
+5c20 20405ce1 call module_hci_event_receive_valid_cmd 
+5c21 6800c6e9 fetch 1 ,mem_flag_mode_ssp_pin 
+5c22 c2835c27 bbit1 flag_mode_ssp_pin_recieve_dhkey_bit ,module_hci_cmd_spp_number_comparison_result_is1 
+5c23 20600000 rtn 
+
+dhkey_not_accept:
+5c24 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5c25 7009bd21 jam bt_cmd_dhkey_not_accept ,mem_fifo_temp 
+5c26 20207d90 branch ui_ipc_send_cmd 
+
+module_hci_cmd_spp_number_comparison_result_is1:
+5c27 c28055ac bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+5c28 20205c24 branch dhkey_not_accept 
+
+module_hci_cmd_set_credit_given:
+5c29 6800c70b fetch 1 ,mem_ui_state_map 
+5c2a c4020000 rtnbit0 ui_state_bt_spp_conn 
+5c2b 6800c603 fetch 1 ,mem_credit_flag 
+5c2c c1000000 rtneq credit_disable 
+5c2d e8608000 ifetch 1 ,contru 
+5c2e 6808c601 fetcht 1 ,mem_credit_given 
+5c2f 98408400 iadd temp ,temp 
+5c30 6008c601 storet 1 ,mem_credit_given 
+5c31 20600000 rtn 
+
+module_hci_cmd_auto_adv:
+5c32 df200040 arg 0x40 ,loopcnt 
+5c33 d8a04400 arg mem_le_adv_data_len ,contw 
+5c34 20407e9f call clear_mem 
+5c35 58000000 setarg 0 
+5c36 600089d6 store 1 ,mem_regb 
+5c37 1a220600 copy rega ,contru 
+
+module_hci_cmd_auto_adv_loop:
+5c38 18627e00 copy contru ,pdata 
+5c39 600109da store 2 ,mem_regc 
+5c3a 20405c62 call module_hci_cmd_auto_adv_adv_analys 
+5c3b 680089d6 fetch 1 ,mem_regb 
+5c3c 680889c6 fetcht 1 ,mem_temp 
+5c3d 18408401 increase 1 ,temp 
+5c3e 9840fe00 iadd temp ,pdata 
+5c3f 600089d6 store 1 ,mem_regb 
+5c40 1fe67c20 sub pdata ,32 ,null 
+5c41 24215c4c nbranch module_hci_cmd_auto_adv_store_scan ,positive 
+
+module_hci_cmd_auto_adv_store_adv:
+5c42 6808c400 fetcht 1 ,mem_le_adv_data_len 
+5c43 58004401 setarg mem_le_adv_data 
+5c44 9840fe00 iadd temp ,pdata 
+5c45 600109df store 2 ,mem_contw 
+5c46 680889c6 fetcht 1 ,mem_temp 
+5c47 18408401 increase 1 ,temp 
+5c48 6800c400 fetch 1 ,mem_le_adv_data_len 
+5c49 9840fe00 iadd temp ,pdata 
+5c4a 6000c400 store 1 ,mem_le_adv_data_len 
+5c4b 20205c55 branch module_hci_cmd_auto_adv_store_common 
+
+module_hci_cmd_auto_adv_store_scan:
+5c4c 6808c420 fetcht 1 ,mem_le_scan_data_len 
+5c4d 58004421 setarg mem_le_scan_data 
+5c4e 9840fe00 iadd temp ,pdata 
+5c4f 600109df store 2 ,mem_contw 
+5c50 680889c6 fetcht 1 ,mem_temp 
+5c51 18408401 increase 1 ,temp 
+5c52 6800c420 fetch 1 ,mem_le_scan_data_len 
+5c53 9840fe00 iadd temp ,pdata 
+5c54 6000c420 store 1 ,mem_le_scan_data_len 
+
+module_hci_cmd_auto_adv_store_common:
+5c55 680109df fetch 2 ,mem_contw 
+5c56 1fe20a00 copy pdata ,contw 
+5c57 680109da fetch 2 ,mem_regc 
+5c58 1fe20600 copy pdata ,contru 
+5c59 18427200 copy temp ,loopcnt 
+5c5a 20406341 call uart_copy_rx_bytes_fast 
+5c5b 68008417 fetch 1 ,mem_uart_len 
+5c5c 680889d6 fetcht 1 ,mem_regb 
+5c5d 98467c00 isub temp ,null 
+5c5e 2422dc38 nbranch module_hci_cmd_auto_adv_loop ,zero 
+5c5f 7044001f jam 0x1f ,mem_le_adv_data_len 
+5c60 7044201f jam 0x1f ,mem_le_scan_data_len 
+5c61 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_auto_adv_adv_analys:
+5c62 e8608000 ifetch 1 ,contru 
+5c63 600089c6 store 1 ,mem_temp 
+5c64 e8608000 ifetch 1 ,contru 
+5c65 600089d2 store 1 ,mem_rega 
+5c66 20600000 rtn 
+
+module_hci_cmd_power_request:
+5c67 d8400000 arg 0 ,temp 
+5c68 da200002 arg 2 ,rega 
+5c69 68014748 fetch 2 ,mem_module_vdd_quotient 
+5c6a 600109e1 store 2 ,mem_event_cmd_response_content 
+5c6b da4009e1 arg mem_event_cmd_response_content ,regb 
+5c6c 20205cec branch module_hci_event_set_cmd 
+
+module_hci_cmd_power_set:
+5c6d 68008417 fetch 1 ,mem_uart_len 
+5c6e c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5c6f e8608000 ifetch 1 ,contru 
+5c70 6000c746 store 1 ,mem_module_read_vdd_flag 
+5c71 58000000 setarg 0x00 
+5c72 60014748 store 2 ,mem_module_vdd_quotient 
+5c73 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_passkey_entry:
+5c74 e8620000 ifetch 4 ,contru 
+5c75 60024719 store 4 ,mem_pin 
+5c76 70471804 jam 4 ,mem_pin_length 
+5c77 7046eb00 jam 0 ,mem_authentication_passkey_times 
+5c78 20405ce1 call module_hci_event_receive_valid_cmd 
+5c79 20205548 branch authentication_passkey 
+
+module_hci_cmd_set_gpio:
+5c7a 68008417 fetch 1 ,mem_uart_len 
+5c7b c081dcde bne 3 ,module_hci_event_receive_invalid_cmd 
+5c7c e8608000 ifetch 1 ,contru 
+5c7d c0005c80 beq 0x00 ,module_set_gpio_input 
+5c7e c000dc85 beq 0x01 ,module_set_gpio_output 
+5c7f 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_set_gpio_input:
+5c80 e8688000 ifetcht 1 ,contru 
+5c81 e8608000 ifetch 1 ,contru 
+5c82 7d3a0407 nsetflag blank ,7 ,temp 
+5c83 204064df call gpio_config_input 
+5c84 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_set_gpio_output:
+5c85 e8688000 ifetcht 1 ,contru 
+5c86 204064ea call gpio_config_output0 
+5c87 e8608000 ifetch 1 ,contru 
+5c88 2feffe00 isolate1 0 ,pdata 
+5c89 20406500 call gpio_out_flag 
+5c8a 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_read_gpio:
+5c8b 68008417 fetch 1 ,mem_uart_len 
+5c8c c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5c8d e8688000 ifetcht 1 ,contru 
+5c8e 204064f5 call gpio_get_bit 
+5c8f 58000000 setarg 0x0 
+5c90 7d20fe00 nsetflag true ,0 ,pdata 
+5c91 da200001 arg 1 ,rega 
+5c92 20205c06 branch module_hci_event_set_cmd_send_response 
+
+module_hci_cmd_le_set_pairing_mode:
+5c93 1a220600 copy rega ,contru 
+5c94 e8608000 ifetch 1 ,contru 
+5c95 6000c56c store 1 ,mem_le_pairing_mode 
+5c96 d8400000 arg 0 ,temp 
+5c97 2feffe07 isolate1 le_pairing_mode_secure_connect_bit ,pdata 
+5c98 79208400 setflag true ,0 ,temp 
+5c99 6008c563 storet 1 ,mem_le_secure_connect_enable 
+5c9a c0005ca9 beq le_pairing_mode_none ,module_le_set_no_pairing 
+5c9b c000dcac beq le_pairing_mode_lagacy_justwork ,module_le_set_pairing_mode_lagacy_just_work 
+5c9c c0015cae beq le_pairing_mode_lagacy_passkey ,module_le_set_pairing_mode_lagacy_passkey 
+5c9d c040dca2 beq le_pairing_mode_secure_connect_justwork ,module_le_set_pairing_mode_secure_justwork 
+5c9e c0415ca4 beq le_pairing_mode_secure_connect_numeric ,module_le_set_pairing_mode_secure_numeric 
+5c9f c041dca7 beq le_pairing_mode_secure_connect_passkey ,module_le_set_pairing_mode_secure_passkey 
+5ca0 70456300 jam 0 ,mem_le_secure_connect_enable 
+5ca1 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_le_set_pairing_mode_secure_justwork:
+5ca2 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca3 20205caa branch module_le_set_noinputnooutput 
+
+module_le_set_pairing_mode_secure_numeric:
+5ca4 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca5 7044dd01 jam flag_iocap_displayyesno ,mem_le_pres_iocap 
+5ca6 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_le_set_pairing_mode_secure_passkey:
+5ca7 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca8 20205caf branch module_le_set_displayonly 
+
+module_le_set_no_pairing:
+5ca9 7044df00 jam flag_le_no_bonding_no_mitm ,mem_le_pres_auth 
+
+module_le_set_noinputnooutput:
+5caa 7044dd03 jam flag_iocap_noinputnooutput ,mem_le_pres_iocap 
+5cab 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_le_set_pairing_mode_lagacy_just_work:
+5cac 7044df05 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+5cad 20205caa branch module_le_set_noinputnooutput 
+
+module_le_set_pairing_mode_lagacy_passkey:
+5cae 7044df05 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+
+module_le_set_displayonly:
+5caf 7044dd00 jam flag_iocap_displayonly ,mem_le_pres_iocap 
+5cb0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_set_adv_data:
+5cb1 68008417 fetch 1 ,mem_uart_len 
+5cb2 1fe67c1f sub pdata ,31 ,null 
+5cb3 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5cb4 1fe27200 copy pdata ,loopcnt 
+5cb5 1a220600 copy rega ,contru 
+5cb6 d8a04401 arg mem_le_adv_data ,contw 
+5cb7 20406341 call uart_copy_rx_bytes_fast 
+5cb8 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_set_scan_data:
+5cb9 68008417 fetch 1 ,mem_uart_len 
+5cba 1fe67c1f sub pdata ,31 ,null 
+5cbb 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5cbc 1fe27200 copy pdata ,loopcnt 
+5cbd 1a220600 copy rega ,contru 
+5cbe d8a04421 arg mem_le_scan_data ,contw 
+5cbf 20406341 call uart_copy_rx_bytes_fast 
+5cc0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_send_conn_update_req:
+5cc1 6801470b fetch 2 ,mem_ui_state_map 
+5cc2 c304dcde bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+5cc3 68008417 fetch 1 ,mem_uart_len 
+5cc4 c0845cde bne 0x08 ,module_hci_event_receive_invalid_cmd 
+5cc5 1a220600 copy rega ,contru 
+5cc6 e8640000 ifetch 8 ,contru 
+5cc7 6004458d store 8 ,mem_le_interal_min 
+5cc8 7009bd12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+5cc9 20407d90 call ui_ipc_send_cmd 
+5cca 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_start_pairing:
+5ccb 6800c56c fetch 1 ,mem_le_pairing_mode 
+5ccc 203a5cde branch module_hci_event_receive_invalid_cmd ,blank 
+5ccd 6800c56a fetch 1 ,mem_le_pairing_state 
+5cce c0805cde bne flag_le_pairing_null ,module_hci_event_receive_invalid_cmd 
+5ccf 6800c56b fetch 1 ,mem_le_enc_state 
+5cd0 c0805cde bne flag_le_enc_null ,module_hci_event_receive_invalid_cmd 
+5cd1 20407e29 call check_51cmd_le_smp_sec_req 
+5cd2 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_confirm_gkey:
+5cd3 e8608000 ifetch 1 ,contru 
+5cd4 c000dcdc beq 0x01 ,module_hci_cmd_le_confirm_gkey_fail 
+5cd5 6800c566 fetch 1 ,mem_le_secure_connect_state 
+5cd6 c001dcda beq le_sc_stat_send_public_key ,module_hci_cmd_le_confirm_gkey_ok 
+5cd7 c0035cda beq le_sc_stat_receive_dhkey ,module_hci_cmd_le_confirm_gkey_ok 
+5cd8 c003dcda beq le_sc_stat_wait_confirm_gkey ,module_hci_cmd_le_confirm_gkey_ok 
+5cd9 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_le_confirm_gkey_ok:
+5cda 70456701 jam flag_le_sc_confrim_gkey_ok ,mem_le_sc_confirm_gkey_flag 
+5cdb 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_confirm_gkey_fail:
+5cdc 204050a6 call le_pairing_failed 
+5cdd 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_event_receive_invalid_cmd:
+5cde d8400001 arg 1 ,temp 
+5cdf da200000 arg 0 ,rega 
+5ce0 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_receive_valid_cmd:
+5ce1 d8400000 arg 0 ,temp 
+5ce2 da200000 arg 0 ,rega 
+5ce3 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_spp_connect:
+5ce4 70041600 jam hci_event_spp_conn_rep ,mem_uart_opcode 
+5ce5 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_connect:
+5ce6 70041602 jam hci_event_le_conn_rep ,mem_uart_opcode 
+5ce7 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_spp_disconnect:
+5ce8 70041603 jam hci_event_spp_dis_rep ,mem_uart_opcode 
+5ce9 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_disconnect:
+5cea 70041605 jam hci_event_le_dis_rep ,mem_uart_opcode 
+5ceb 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_set_cmd:
+5cec 68008416 fetch 1 ,mem_uart_opcode 
+5ced 1fe22600 copy pdata ,regc 
+5cee 70041606 jam hci_event_cmd_res ,mem_uart_opcode 
+5cef 58000002 setarg 2 
+5cf0 9a20fe00 iadd rega ,pdata 
+5cf1 20405d66 call module_hci_prepare_tx 
+5cf2 1a627e00 copy regc ,pdata 
+5cf3 e1408000 istore 1 ,contwu 
+5cf4 e1488000 istoret 1 ,contwu 
+5cf5 1a227200 copy rega ,loopcnt 
+5cf6 1a420c00 copy regb ,contr 
+5cf7 2040633b call uart_copy_tx_bytes 
+5cf8 2020631f branch uartd_send 
+
+module_hci_event_receive_spp_data:
+5cf9 70041607 jam hci_event_spp_data_rep ,mem_uart_opcode 
+5cfa 6800842e fetch 1 ,mem_current_length 
+5cfb 207a0000 rtn blank 
+5cfc 20405d66 call module_hci_prepare_tx 
+5cfd 6800842e fetch 1 ,mem_current_length 
+5cfe 1fe27200 copy pdata ,loopcnt 
+5cff 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+5d00 1fe20c00 copy pdata ,contr 
+5d01 20406328 call uart_copy_tx_bytes_fast 
+5d02 2020631f branch uartd_send 
+
+module_hci_event_receive_le_data:
+5d03 70041608 jam hci_event_le_data_rep ,mem_uart_opcode 
+5d04 6800c751 fetch 1 ,mem_module_le_rx_data_len 
+5d05 1fe27200 icopy loopcnt 
+5d06 1fe0fe02 increase 2 ,pdata 
+5d07 20405d66 call module_hci_prepare_tx 
+5d08 68014754 fetch 2 ,mem_module_le_rx_data_handle 
+5d09 e1410000 istore 2 ,contwu 
+5d0a 68014752 fetch 2 ,mem_module_le_rx_data_address 
+5d0b 1fe20c00 icopy contr 
+5d0c 20406328 call uart_copy_tx_bytes_fast 
+5d0d 2020631f branch uartd_send 
+
+module_hci_event_enter_standby_mode:
+5d0e 70041609 jam hci_event_standby_rep ,mem_uart_opcode 
+
+module_hci_event_enter_standby_mode_len0:
+5d0f 58000000 setarg 0 
+5d10 20405d66 call module_hci_prepare_tx 
+5d11 2020631f branch uartd_send 
+
+module_hci_event_status_res:
+5d12 7004160a jam hci_event_status_res ,mem_uart_opcode 
+5d13 58000001 setarg 1 
+5d14 20405d66 call module_hci_prepare_tx 
+5d15 20405d23 call module_hci_read_bt_status 
+5d16 6801470b fetch 2 ,mem_ui_state_map 
+5d17 d8e00002 arg ui_state_bt_hid_conn ,queue 
+5d18 afefffff qisolate1 pdata 
+5d19 79208403 setflag true ,3 ,temp 
+5d1a d8e00009 arg ui_state_ble_connected ,queue 
+5d1b afefffff qisolate1 pdata 
+5d1c 79208405 setflag true ,5 ,temp 
+5d1d 6800c70b fetch 1 ,mem_ui_state_map 
+5d1e d8e00004 arg ui_state_bt_spp_conn ,queue 
+5d1f afefffff qisolate1 pdata 
+5d20 79208404 setflag true ,4 ,temp 
+5d21 e1488000 istoret 1 ,contwu 
+5d22 2020631f branch uartd_send 
+
+module_hci_read_bt_status:
+5d23 d8400000 arg 0 ,temp 
+5d24 6800c133 fetch 1 ,mem_scan_mode 
+5d25 d8e00000 arg inq_scan_mode ,queue 
+5d26 afefffff qisolate1 pdata 
+5d27 79208400 setflag true ,0 ,temp 
+5d28 d8e00001 arg page_scan_mode ,queue 
+5d29 afefffff qisolate1 pdata 
+5d2a 79208401 setflag true ,1 ,temp 
+5d2b 6800c3ff fetch 1 ,mem_le_adv_enable 
+5d2c d8e00000 arg 0 ,queue 
+5d2d afefffff qisolate1 pdata 
+5d2e 79208402 setflag true ,2 ,temp 
+5d2f 20600000 rtn 
+
+module_hci_event_store_device:
+5d30 7004160d jam hci_event_nvram_rep ,mem_uart_opcode 
+5d31 6800c2be fetch 1 ,mem_nv_data_number 
+5d32 1feffe22 mul32 pdata ,34 ,pdata 
+5d33 1fe27200 icopy loopcnt 
+5d34 20405d66 call module_hci_prepare_tx 
+5d35 680142bc fetch 2 ,mem_nv_data_ptr 
+5d36 1fe20c00 icopy contr 
+5d37 20406328 call uart_copy_tx_bytes_fast 
+5d38 2020631f branch uartd_send 
+
+module_hci_event_gkey_generate:
+5d39 7004160e jam hci_event_gkey ,mem_uart_opcode 
+5d3a 58000004 setarg 4 
+5d3b 20405d66 call module_hci_prepare_tx 
+5d3c 680208de fetch 4 ,mem_gkey 
+5d3d e1420000 istore 4 ,contwu 
+5d3e 2020631f branch uartd_send 
+
+module_hci_event_invalid_packet:
+5d3f 7004160f jam hci_event_invalid_packet ,mem_uart_opcode 
+5d40 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_passkey_entry_mode:
+5d41 70041610 jam hci_event_get_passkey ,mem_uart_opcode 
+5d42 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_tk:
+5d43 70041611 jam hci_event_le_tk ,mem_uart_opcode 
+5d44 58000004 setarg 4 
+5d45 20405d66 call module_hci_prepare_tx 
+5d46 6802456d fetch 4 ,mem_le_tk 
+5d47 e1420000 istore 4 ,contwu 
+5d48 2020631f branch uartd_send 
+
+module_hci_event_le_pairing_fail:
+5d49 da200180 arg flag_ble_pairing_fail ,rega 
+5d4a 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_le_pairing_success:
+5d4b da200080 arg flag_ble_pairing_success ,rega 
+5d4c 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_bt_pairing_fail:
+5d4d da200101 arg flag_bt_pairing_fail ,rega 
+5d4e 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_bt_pairing_success:
+5d4f da200001 arg flag_bt_pairing_success ,rega 
+
+module_hci_event_pairing_completed:
+5d50 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5d51 70041614 jam hci_event_le_pairing_state ,mem_uart_opcode 
+5d52 58000002 setarg 2 
+5d53 20405d66 call module_hci_prepare_tx 
+5d54 1a227e00 copy rega ,pdata 
+5d55 e1410000 istore 2 ,contwu 
+5d56 2020631f branch uartd_send 
+
+module_hci_event_pause_enc:
+5d57 da600000 arg flag_event_pause_enc ,regc 
+5d58 20205d5a branch module_hci_event_enc 
+
+module_hci_event_start_enc:
+5d59 da600001 arg flag_event_start_enc ,regc 
+
+module_hci_event_enc:
+5d5a 70041615 jam hci_event_le_encryption_state ,mem_uart_opcode 
+5d5b 58000001 setarg 1 
+5d5c 20405d66 call module_hci_prepare_tx 
+5d5d 1a627e00 copy regc ,pdata 
+5d5e e1408000 istore 1 ,contwu 
+5d5f 2020631f branch uartd_send 
+
+module_hci_event_le_gkey:
+5d60 7004161d jam hci_event_le_gkey ,mem_uart_opcode 
+5d61 58000004 setarg 4 
+5d62 20405d66 call module_hci_prepare_tx 
+5d63 680208de fetch 4 ,mem_gkey 
+5d64 e1420000 istore 4 ,contwu 
+5d65 2020631f branch uartd_send 
+
+module_hci_prepare_tx:
+5d66 70041502 jam 0x02 ,mem_uart_cmd 
+5d67 60008417 store 1 ,mem_uart_len 
+5d68 600c09c6 storet 8 ,mem_temp 
+5d69 79200025 set1 mark_ext_patch ,mark 
+5d6a 44b3c02c bpatch patch2c_7 ,mem_patch2c 
+5d6b 20405d71 call module_set_mcu_wake_pin_high_delay 
+5d6c 680c09c6 fetcht 8 ,mem_temp 
+5d6d 2040631c call uartd_prepare_tx 
+5d6e 68018415 fetch 3 ,mem_uart_cmd 
+5d6f e1418000 istore 3 ,contwu 
+5d70 20600000 rtn 
+
+module_set_mcu_wake_pin_high_delay:
+5d71 20405d7a call module_check_mcu_wake_pin_high 
+5d72 20608000 rtn true 
+
+module_set_mcu_wake_pin_h_delay:
+5d73 20405d78 call module_set_mcu_wake_pin_high 
+5d74 68024737 fetch 4 ,mem_module_mcu_wake_delay_us 
+5d75 1feb7e00 rshift2 pdata ,pdata 
+5d76 207a0000 rtn blank 
+5d77 20205d7e branch delay 
+
+module_set_mcu_wake_pin_high:
+5d78 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d79 202064ff branch gpio_out_active 
+
+module_check_mcu_wake_pin_high:
+5d7a 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d7b 202064f3 branch gpio_check_active 
+
+module_set_mcu_wake_pin_low:
+5d7c 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d7d 202064fd branch gpio_out_inactive 
+
+delay:
+5d7e 1fe0ffff increase -1 ,pdata 
+5d7f 243a5d7e nbranch delay ,blank 
+5d80 20600000 rtn 
+
+module_le_receive_data:
+5d81 1a227e00 copy rega ,pdata 
+5d82 60014752 store 2 ,mem_module_le_rx_data_address 
+5d83 1a427e00 copy regb ,pdata 
+5d84 6000c751 store 1 ,mem_module_le_rx_data_len 
+5d85 6801039b fetch 2 ,mem_le_att_handle 
+5d86 68094756 fetcht 2 ,mem_module_data_write_handle 
+5d87 98467c00 isub temp ,null 
+5d88 2022dd8c branch module_le_receive_data_ok ,zero 
+5d89 68094758 fetcht 2 ,mem_module_data_write_handle2 
+5d8a 98467c00 isub temp ,null 
+5d8b 24628000 nrtn zero 
+
+module_le_receive_data_ok:
+5d8c 60014754 store 2 ,mem_module_le_rx_data_handle 
+5d8d 20205d98 branch module_set_le_rx_data_flag 
+
+module_le_transmit:
+5d8e 6800c75a fetch 1 ,mem_module_flag 
+5d8f c281dd94 bbit1 module_flag_ble_send_data ,module_hci_event_send_le_data 
+
+module_le_transmit1:
+5d90 6800c75a fetch 1 ,mem_module_flag 
+5d91 c4008000 rtnbit0 module_flag_ble_received_data 
+5d92 20405d03 call module_hci_event_receive_le_data 
+5d93 20205d9c branch module_clear_le_rx_data_flag 
+
+module_hci_event_send_le_data:
+5d94 70041609 jam hci_cmd_le_data_req ,mem_uart_opcode 
+5d95 20405ce1 call module_hci_event_receive_valid_cmd 
+5d96 20405b91 call module_clear_le_tx_data_flag 
+5d97 20205d90 branch module_le_transmit1 
+
+module_set_le_rx_data_flag:
+5d98 6800c75a fetch 1 ,mem_module_flag 
+5d99 79207e01 set1 module_flag_ble_received_data ,pdata 
+
+module_store_moule_flag:
+5d9a 6000c75a store 1 ,mem_module_flag 
+5d9b 20600000 rtn 
+
+module_clear_le_rx_data_flag:
+5d9c 6800c75a fetch 1 ,mem_module_flag 
+5d9d 793ffe01 set0 module_flag_ble_received_data ,pdata 
+5d9e 20205d9a branch module_store_moule_flag 
+
+module_exit_sniff:
+5d9f 6800c72f fetch 1 ,mem_module_task 
+5da0 c3800000 rtnbit1 moudle_task_unsinff 
+5da1 20405dbd call module_set_unsniff_task_flag 
+5da2 20203e77 branch app_bt_sniff_exit 
+
+module_bb_event_timer:
+5da3 6008824e storet 1 ,mem_app_evt_timer_count 
+
+module_bb_event_100ms_loop:
+5da4 6800824e fetch 1 ,mem_app_evt_timer_count 
+5da5 207a0000 rtn blank 
+5da6 1fe0ffff increase -1 ,pdata 
+5da7 6000824e store 1 ,mem_app_evt_timer_count 
+5da8 79200025 set1 mark_ext_patch ,mark 
+5da9 44b4402d bpatch patch2d_0 ,mem_patch2d 
+5daa 20405dac call module_read_vdd_timer 
+5dab 20205da4 branch module_bb_event_100ms_loop 
+
+module_read_vdd_timer:
+5dac 6800c746 fetch 1 ,mem_module_read_vdd_flag 
+5dad 207a0000 rtn blank 
+5dae 6800c747 fetch 1 ,mem_module_read_vdd_count 
+5daf 207a0000 rtn blank 
+5db0 1fe0ffff increase -1 ,pdata 
+5db1 6000c747 store 1 ,mem_module_read_vdd_count 
+5db2 247a0000 nrtn blank 
+5db3 7047470a jam flag_module_read_vdd_count ,mem_module_read_vdd_count 
+5db4 204065c0 call adc_set_mode 
+5db5 204065de call vdd_calculate_by_mode 
+5db6 1fe6fc64 div pdata ,0x64 
+5db7 20407f53 call wait_div_end 
+5db8 1807fe00 quotient pdata 
+5db9 18070400 remainder temp 
+5dba 6000c748 store 1 ,mem_module_vdd_quotient 
+5dbb 6008c749 storet 1 ,mem_module_vdd_remainder 
+5dbc 20600000 rtn 
+
+module_set_unsniff_task_flag:
+5dbd 6800c72f fetch 1 ,mem_module_task 
+5dbe 79207e00 set1 moudle_task_unsinff ,pdata 
+5dbf 6000c72f store 1 ,mem_module_task 
+5dc0 20600000 rtn 
+
+module_clear_unsniff_task_flag:
+5dc1 6800c72f fetch 1 ,mem_module_task 
+5dc2 793ffe00 set0 moudle_task_unsinff ,pdata 
+5dc3 6000c72f store 1 ,mem_module_task 
+5dc4 20600000 rtn 
+
+module_control_air_flow:
+5dc5 79200025 set1 mark_ext_patch ,mark 
+5dc6 44b4c02d bpatch patch2d_1 ,mem_patch2d 
+5dc7 20407f84 call check_uart_tx_buff 
+5dc8 20213e41 branch app_l2cap_flow_control_enable ,positive 
+5dc9 20203e43 branch app_l2cap_flow_control_disable 
+
+mouse_init:
+5dca 79200025 set1 mark_ext_patch ,mark 
+5dcb 44b5402d bpatch patch2d_2 ,mem_patch2d 
+5dcc 58005fc3 setarg le_mouse 
+5dcd 60014290 store 2 ,mem_cb_le_process 
+5dce 58005ee2 setarg mouse_send_process 
+5dcf 60014292 store 2 ,mem_cb_bt_process 
+5dd0 58005e27 setarg mouse_process_lpm_before 
+5dd1 6001428e store 2 ,mem_cb_before_lpm 
+5dd2 58005fd4 setarg mouse_priority_bb_event 
+5dd3 60014296 store 2 ,mem_cb_bb_event_process 
+5dd4 58005def setarg mouse_idle 
+5dd5 60014294 store 2 ,mem_cb_idle_process 
+5dd6 58005efd setarg mouse_le_notify_update_data 
+5dd7 6001429c store 2 ,mem_cb_update_notify_value 
+5dd8 7008d400 jam 0 ,mem_sp_flag 
+5dd9 7008d500 jam 0 ,mem_master_sp_flag 
+5dda 79200025 set1 mark_ext_patch ,mark 
+5ddb 44b5c02d bpatch patch2d_3 ,mem_patch2d 
+5ddc 20405e0a call mouse_init_common 
+5ddd 20758000 rtn wake 
+5dde 20405de5 call mouse_init_environment 
+5ddf 20405ded call mouse_dpi_init 
+5de0 58005e24 setarg mouse_before_hibernate 
+5de1 6001428c store 2 ,mem_cb_before_hibernate 
+5de2 6801470b fetch 2 ,mem_ui_state_map 
+5de3 c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+5de4 20206070 branch mouse_check_reconn_target 
+
+mouse_init_environment:
+5de5 20403e28 call app_initflag_check 
+5de6 2022ddea branch mouse_load_eeprom_param ,zero 
+5de7 20406472 call eeprom_store_le_local_addr 
+5de8 20406098 call eeprom_store_mouse_dpi 
+5de9 20203e20 branch app_initflag_store 
+
+mouse_load_eeprom_param:
+5dea 20406441 call eeprom_load_reconn_info 
+5deb 20406476 call eeprom_load_le_loacal_addr 
+5dec 2020609e branch eeprom_load_mouse_dpi 
+
+mouse_dpi_init:
+5ded 70474701 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+5dee 20205e01 branch mouse_modified_dpi 
+
+mouse_idle:
+5def 20407e3f call ui_check_paring_button 
+5df0 20405df2 call mouse_check_dpi 
+5df1 20205e3e branch mouse_wheel_check 
+
+mouse_check_dpi:
+5df2 6808c752 fetcht 1 ,mem_dpi_button_gpio 
+5df3 204064f5 call gpio_get_bit 
+5df4 2420ddf9 nbranch mouse_dpi_up ,true 
+
+mouse_dpi_down:
+5df5 6800c747 fetch 1 ,mem_mouse_dpi_button_state 
+5df6 c1000000 rtneq dpi_button_state_down 
+5df7 70474700 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+5df8 20600000 rtn 
+
+mouse_dpi_up:
+5df9 6800c747 fetch 1 ,mem_mouse_dpi_button_state 
+5dfa c1008000 rtneq dpi_button_state_up 
+5dfb 70474701 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+5dfc 6800c746 fetch 1 ,mem_mouse_dpi 
+5dfd 1fe0fe01 increase 1 ,pdata 
+5dfe 1fe17e03 and pdata ,0x03 ,pdata 
+5dff 6000c746 store 1 ,mem_mouse_dpi 
+5e00 20205e01 branch mouse_modified_dpi 
+
+mouse_modified_dpi:
+5e01 58000006 setarg mouse_dpi_address 
+5e02 204060ec call twspi_read 
+5e03 1fe104fc and pdata ,0xfc ,temp 
+5e04 6800c746 fetch 1 ,mem_mouse_dpi 
+5e05 9840fe00 iadd temp ,pdata 
+5e06 1fed7e00 lshift8 pdata ,pdata 
+5e07 1fe0fe06 add pdata ,mouse_dpi_address ,pdata 
+5e08 204060eb call twspi_write 
+5e09 20206098 branch eeprom_store_mouse_dpi 
+
+mouse_init_common:
+5e0a 20405f8e call mouse_init_sunt 
+5e0b 20405e10 call mouse_gpio_init 
+5e0c 68110050 hfetch 2 ,core_clkoff 
+5e0d 793ffe0b set0 clock_off_qdecoder ,pdata 
+5e0e 60110050 hstore 2 ,core_clkoff 
+5e0f 20600000 rtn 
+
+mouse_gpio_init:
+5e10 20758000 rtn wake 
+5e11 20403d3e call lpm_disable_exen_output 
+5e12 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e13 204064df call gpio_config_input 
+5e14 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e15 204064df call gpio_config_input 
+5e16 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5e17 204064df call gpio_config_input 
+5e18 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5e19 204064df call gpio_config_input 
+5e1a 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5e1b 204064df call gpio_config_input 
+5e1c 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5e1d 204064df call gpio_config_input 
+5e1e 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5e1f 204064df call gpio_config_input 
+5e20 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5e21 204064df call gpio_config_input 
+5e22 6808c752 fetcht 1 ,mem_dpi_button_gpio 
+5e23 202064df branch gpio_config_input 
+
+mouse_before_hibernate:
+5e24 5800bc05 setarg 0xbc05 
+5e25 204060eb call twspi_write 
+5e26 70009f01 jam 1 ,mem_lpm_current_mult 
+
+mouse_process_lpm_before:
+5e27 20405e3e call mouse_wheel_check 
+5e28 d8400019 arg 25 ,temp 
+5e29 204064e8 call gpio_config_output 
+5e2a 70808100 hjam 0 ,core_gpio_sel1 
+5e2b 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e2c 204064c2 call gpio_set_wake_by_current_state 
+5e2d 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e2e 204064c2 call gpio_set_wake_by_current_state 
+5e2f 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5e30 204064c2 call gpio_set_wake_by_current_state 
+5e31 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5e32 204064c2 call gpio_set_wake_by_current_state 
+5e33 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5e34 204064c2 call gpio_set_wake_by_current_state 
+5e35 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5e36 204064c2 call gpio_set_wake_by_current_state 
+5e37 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5e38 204064c2 call gpio_set_wake_by_current_state 
+5e39 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5e3a 204064c7 call gpio_set_wake 
+5e3b 6800809f fetch 1 ,mem_lpm_current_mult 
+5e3c 247a0000 nrtn blank 
+5e3d 202064d2 branch gpio_clr_wake 
+
+mouse_wheel_check:
+5e3e 79200025 set1 mark_ext_patch ,mark 
+5e3f 44b6402d bpatch patch2d_4 ,mem_patch2d 
+5e40 20405e4d call mouse_t_wheel_scan 
+5e41 20405e94 call mouse_wheel_scan 
+5e42 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e43 6808c75d fetcht 1 ,mem_wheel_tb_old_pinlevel 
+5e44 6000c75d store 1 ,mem_wheel_tb_old_pinlevel 
+5e45 98467c00 isub temp ,null 
+5e46 2422be39 nbranch app_lpm_wake_auto_lock ,zero 
+5e47 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5e48 6808c765 fetcht 1 ,mem_mwheel_b_old_pinlevel 
+5e49 6000c765 store 1 ,mem_mwheel_b_old_pinlevel 
+5e4a 98467c00 isub temp ,null 
+5e4b 2422be39 nbranch app_lpm_wake_auto_lock ,zero 
+5e4c 20600000 rtn 
+
+mouse_t_wheel_scan:
+5e4d da200000 arg 0 ,rega 
+5e4e 6808c75b fetcht 1 ,mem_whee_ta_data_gpio 
+5e4f 204064f5 call gpio_get_bit 
+5e50 7920a200 setflag true ,0 ,rega 
+5e51 6808c75c fetcht 1 ,mem_whee_tb_data_gpio 
+5e52 204064f5 call gpio_get_bit 
+5e53 7920a201 setflag true ,1 ,rega 
+5e54 1a227e00 copy rega ,pdata 
+5e55 6000c75e store 1 ,mem_wheel_tb_new_pinlevel 
+5e56 c000de5b beq 0x01 ,p_mouse_t_wheel_scan_judge1 
+5e57 c0015e5f beq 0x02 ,p_mouse_t_wheel_scan_judge2 
+5e58 6800c75f fetch 1 ,mem_wheel_tog 
+5e59 c283de6b bbit1 7 ,p_mouse_t_wheel_scan_judge3 
+5e5a 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge1:
+5e5b 6800c75d fetch 1 ,mem_wheel_tb_old_pinlevel 
+5e5c c0005e63 beq 0 ,p_mouse_t_wheel_scan_judge11 
+5e5d c001de65 beq 3 ,p_mouse_t_wheel_scan_judge12 
+5e5e 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge2:
+5e5f 6800c75d fetch 1 ,mem_wheel_tb_old_pinlevel 
+5e60 c0005e67 beq 0 ,p_mouse_t_wheel_scan_judge21 
+5e61 c001de69 beq 3 ,p_mouse_t_wheel_scan_judge22 
+5e62 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge11:
+5e63 70475f82 jam 0x82 ,mem_wheel_tog 
+5e64 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge12:
+5e65 70475f81 jam 0x81 ,mem_wheel_tog 
+5e66 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge21:
+5e67 70475f80 jam 0x80 ,mem_wheel_tog 
+5e68 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge22:
+5e69 70475f83 jam 0x83 ,mem_wheel_tog 
+5e6a 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge3:
+5e6b 6800c75f fetch 1 ,mem_wheel_tog 
+5e6c 793ffe07 set0 7 ,pdata 
+5e6d 6000c75f store 1 ,mem_wheel_tog 
+5e6e 6800c75f fetch 1 ,mem_wheel_tog 
+5e6f c0005e74 beq 0 ,p_mouse_t_wheel_scan_judge30 
+5e70 c000de77 beq 1 ,p_mouse_t_wheel_scan_judge31 
+5e71 c0015e7a beq 2 ,p_mouse_t_wheel_scan_judge32 
+5e72 c001de7d beq 3 ,p_mouse_t_wheel_scan_judge33 
+5e73 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge30:
+5e74 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e75 c001de80 beq 3 ,p_mouse_wheel_t_forward 
+5e76 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge31:
+5e77 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e78 c0005e80 beq 0 ,p_mouse_wheel_t_forward 
+5e79 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge32:
+5e7a 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e7b c001de8a beq 3 ,p_mouse_wheel_t_back 
+5e7c 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge33:
+5e7d 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e7e c0005e8a beq 0 ,p_mouse_wheel_t_back 
+5e7f 20600000 rtn 
+
+p_mouse_wheel_t_forward:
+5e80 6800c762 fetch 1 ,mem_mouse_tz_data_count1 
+5e81 1fe0fe01 increase 1 ,pdata 
+5e82 6000c762 store 1 ,mem_mouse_tz_data_count1 
+5e83 1fe67c01 sub pdata ,1 ,null 
+5e84 20610000 rtn positive 
+5e85 70476200 jam 0 ,mem_mouse_tz_data_count1 
+5e86 6800c760 fetch 1 ,mem_mouse_tz_data 
+5e87 1fe0fe01 increase 1 ,pdata 
+5e88 6000c760 store 1 ,mem_mouse_tz_data 
+5e89 20600000 rtn 
+
+p_mouse_wheel_t_back:
+5e8a 6800c761 fetch 1 ,mem_mouse_tz_data_count 
+5e8b 1fe0fe01 increase 1 ,pdata 
+5e8c 6000c761 store 1 ,mem_mouse_tz_data_count 
+5e8d 1fe67c01 sub pdata ,1 ,null 
+5e8e 20610000 rtn positive 
+5e8f 70476100 jam 0 ,mem_mouse_tz_data_count 
+5e90 6800c760 fetch 1 ,mem_mouse_tz_data 
+5e91 1fe0ffff increase -1 ,pdata 
+5e92 6000c760 store 1 ,mem_mouse_tz_data 
+5e93 20600000 rtn 
+
+mouse_wheel_scan:
+5e94 da200000 arg 0 ,rega 
+5e95 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e96 204064f5 call gpio_get_bit 
+5e97 7920a200 setflag true ,0 ,rega 
+5e98 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e99 204064f5 call gpio_get_bit 
+5e9a 7920a201 setflag true ,1 ,rega 
+5e9b 1a227e00 copy rega ,pdata 
+5e9c 6000c766 store 1 ,mem_mwheel_b_new_pinlevel 
+5e9d c000dea2 beq 0x01 ,mouse_wheel_scan_judge1 
+5e9e c0015ea6 beq 0x02 ,mouse_wheel_scan_judge2 
+5e9f 6800c767 fetch 1 ,mem_mwheel_tog 
+5ea0 c283deb2 bbit1 7 ,mouse_wheel_scan_judge3 
+5ea1 20600000 rtn 
+
+mouse_wheel_scan_judge1:
+5ea2 6800c765 fetch 1 ,mem_mwheel_b_old_pinlevel 
+5ea3 c0005eaa beq 0 ,mouse_wheel_scan_judge11 
+5ea4 c001deac beq 3 ,mouse_wheel_scan_judge12 
+5ea5 20600000 rtn 
+
+mouse_wheel_scan_judge2:
+5ea6 6800c765 fetch 1 ,mem_mwheel_b_old_pinlevel 
+5ea7 c0005eae beq 0 ,mouse_wheel_scan_judge21 
+5ea8 c001deb0 beq 3 ,mouse_wheel_scan_judge22 
+5ea9 20600000 rtn 
+
+mouse_wheel_scan_judge11:
+5eaa 70476782 jam 0x82 ,mem_mwheel_tog 
+5eab 20600000 rtn 
+
+mouse_wheel_scan_judge12:
+5eac 70476781 jam 0x81 ,mem_mwheel_tog 
+5ead 20600000 rtn 
+
+mouse_wheel_scan_judge21:
+5eae 70476780 jam 0x80 ,mem_mwheel_tog 
+5eaf 20600000 rtn 
+
+mouse_wheel_scan_judge22:
+5eb0 70476783 jam 0x83 ,mem_mwheel_tog 
+5eb1 20600000 rtn 
+
+mouse_wheel_scan_judge3:
+5eb2 6800c767 fetch 1 ,mem_mwheel_tog 
+5eb3 793ffe07 set0 7 ,pdata 
+5eb4 6000c767 store 1 ,mem_mwheel_tog 
+5eb5 6800c767 fetch 1 ,mem_mwheel_tog 
+5eb6 c0005ebb beq 0 ,mouse_wheel_scan_judge30 
+5eb7 c000debe beq 1 ,mouse_wheel_scan_judge31 
+5eb8 c0015ec1 beq 2 ,mouse_wheel_scan_judge32 
+5eb9 c001dec4 beq 3 ,mouse_wheel_scan_judge33 
+5eba 20600000 rtn 
+
+mouse_wheel_scan_judge30:
+5ebb 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ebc c001dec7 beq 3 ,mouse_wheel_forward 
+5ebd 20600000 rtn 
+
+mouse_wheel_scan_judge31:
+5ebe 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ebf c0005ec7 beq 0 ,mouse_wheel_forward 
+5ec0 20600000 rtn 
+
+mouse_wheel_scan_judge32:
+5ec1 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ec2 c001ded1 beq 3 ,mouse_wheel_back 
+5ec3 20600000 rtn 
+
+mouse_wheel_scan_judge33:
+5ec4 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ec5 c0005ed1 beq 0 ,mouse_wheel_back 
+5ec6 20600000 rtn 
+
+mouse_wheel_forward:
+5ec7 6800c76a fetch 1 ,mem_mouse_z_data_count1 
+5ec8 1fe0fe01 increase 1 ,pdata 
+5ec9 6000c76a store 1 ,mem_mouse_z_data_count1 
+5eca 1fe67c01 sub pdata ,1 ,null 
+5ecb 20610000 rtn positive 
+5ecc 70476a00 jam 0 ,mem_mouse_z_data_count1 
+5ecd 6800c768 fetch 1 ,mem_mouse_z_data 
+5ece 1fe0fe01 increase 1 ,pdata 
+5ecf 6000c768 store 1 ,mem_mouse_z_data 
+5ed0 20600000 rtn 
+
+mouse_wheel_back:
+5ed1 6800c769 fetch 1 ,mem_mouse_z_data_count 
+5ed2 1fe0fe01 increase 1 ,pdata 
+5ed3 6000c769 store 1 ,mem_mouse_z_data_count 
+5ed4 1fe67c01 sub pdata ,1 ,null 
+5ed5 20610000 rtn positive 
+5ed6 70476900 jam 0 ,mem_mouse_z_data_count 
+5ed7 6800c768 fetch 1 ,mem_mouse_z_data 
+5ed8 1fe0ffff increase -1 ,pdata 
+5ed9 6000c768 store 1 ,mem_mouse_z_data 
+5eda 20600000 rtn 
+
+le_mouse_bb_event_write_request:
+5edb 20403e7b call app_ble_store_reconn_info 
+5edc 70474b02 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+5edd 20403e7f call app_lpm_mult_enable 
+
+le_mouse_bb_event_enc_info:
+5ede 20203e6d branch app_ble_start_write 
+
+mouse_hid_connected:
+5edf 58000002 setarg hid_handshake_timeout 
+5ee0 6000c709 store 1 ,mem_hid_handshake_timer_count 
+5ee1 20600000 rtn 
+
+mouse_send_process:
+5ee2 6800c283 fetch 1 ,mem_app_handshake_flag 
+5ee3 207a0000 rtn blank 
+5ee4 20404812 call l2cap_malloc_is_fifo_nearly_full 
+5ee5 247a0000 nrtn blank 
+5ee6 20405f14 call mouse_motion 
+5ee7 24740000 nrtn user 
+5ee8 20405efa call mouse_no_data_timer_init 
+
+mouse_send_data:
+5ee9 da200009 arg 9 ,rega 
+5eea 20404005 call hid_malloc_tx_buff 
+5eeb 680142de fetch 2 ,mem_hid_int_remote_cid 
+5eec e0a10000 istore 2 ,contw 
+5eed 580002a1 setarg 0x02a1 
+5eee e0a10000 istore 2 ,contw 
+5eef 6803c729 fetch 7 ,mem_mouse_key 
+5ef0 e0a38000 istore 7 ,contw 
+5ef1 20600000 rtn 
+
+bt_send_empty_data:
+5ef2 58000000 setarg 0 
+5ef3 6003472a store 6 ,mem_mouse_x 
+5ef4 6000c72f store 1 ,mem_mouse_tz 
+5ef5 20205ee9 branch mouse_send_data 
+
+p_le_send_empty_data:
+5ef6 58000000 setarg 0 
+5ef7 6003472a store 6 ,mem_mouse_x 
+5ef8 6000c72f store 1 ,mem_mouse_tz 
+5ef9 20205f0c branch mouse_fill_data_le 
+
+mouse_no_data_timer_init:
+5efa 68014739 fetch 2 ,mem_mouse_no_data_timeout 
+5efb 60014741 store 2 ,mem_mouse_no_data_timer 
+5efc 20600000 rtn 
+
+mouse_le_notify_update_data:
+5efd 680944f8 fetcht 2 ,mem_le_notify_handle 
+5efe 204051f5 call le_att_get_handle_ptr 
+5eff e8c08000 ifetch 1 ,contr 
+5f00 600083be store 1 ,mem_le_notify_len 
+5f01 d8a0446b arg mem_le_l2cap ,contw 
+5f02 18a08a01 increase 1 ,contw 
+5f03 680944f8 fetcht 2 ,mem_le_notify_handle 
+5f04 e0a90000 istoret 2 ,contw 
+5f05 204051f5 call le_att_get_handle_ptr 
+5f06 e8c08000 ifetch 1 ,contr 
+5f07 1fe27200 icopy loopcnt 
+5f08 20407ecd call memcpy 
+5f09 680883be fetcht 1 ,mem_le_notify_len 
+5f0a 18408407 increase 7 ,temp 
+5f0b 20204f89 branch le_send_packet 
+
+mouse_fill_data_le:
+5f0c 79200025 set1 mark_ext_patch ,mark 
+5f0d 44b6c02d bpatch patch2d_5 ,mem_patch2d 
+5f0e 680944f8 fetcht 2 ,mem_le_notify_handle 
+5f0f 204051f5 call le_att_get_handle_ptr 
+5f10 18c08a01 add contr ,1 ,contw 
+
+mouse_fill_data:
+5f11 6803c729 fetch 7 ,mem_mouse_key 
+5f12 e0a38000 istore 7 ,contw 
+5f13 20600000 rtn 
+
+mouse_motion:
+5f14 79200025 set1 mark_ext_patch ,mark 
+5f15 44b7402d bpatch patch2d_6 ,mem_patch2d 
+5f16 78547c00 disable user 
+5f17 58000000 setarg 0 
+5f18 6003472a store 6 ,mem_mouse_x 
+5f19 20405f1e call sensor_motion 
+5f1a 20405f87 call mouse_sensor_sdio_low 
+5f1b 20405f61 call mouse_zwheel 
+5f1c 20405f67 call mouse_t_zwheel 
+5f1d 20205f7f branch mouse_key 
+
+sensor_motion:
+5f1e 6800c735 fetch 1 ,mem_mouse_move_flag 
+5f1f 205a5f5a call mouse_read_sensor_common ,blank 
+5f20 70473501 jam 1 ,mem_mouse_move_flag 
+5f21 78547c00 disable user 
+5f22 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5f23 204064f5 call gpio_get_bit 
+5f24 24608000 nrtn true 
+5f25 58000000 setarg 0 
+5f26 204060ec call twspi_read 
+5f27 58000002 setarg 2 
+5f28 204060ec call twspi_read 
+5f29 c4038000 rtnbit0 7 
+5f2a 58000003 setarg 3 
+5f2b 204060ec call twspi_read 
+5f2c 20405fbb call extsign 
+5f2d 6001472a store 2 ,mem_mouse_x 
+5f2e 58000004 setarg 4 
+5f2f 204060ec call twspi_read 
+5f30 20405fbb call extsign 
+5f31 1fe67e00 sub pdata ,0 ,pdata 
+5f32 6001472c store 2 ,mem_mouse_y 
+5f33 6802472a fetch 4 ,mem_mouse_x 
+5f34 78347c00 enable user 
+5f35 20600000 rtn 
+
+mouse_read_sensor3610_data:
+5f36 204060e7 call spi_ncs_enable 
+5f37 20405f5a call mouse_read_sensor_common 
+5f38 dfe00005 arg 5 ,pdata 
+5f39 204060ec call twspi_read 
+5f3a 6000c730 store 1 ,mem_mouse_xy_h 
+5f3b dfe00007 arg 7 ,pdata 
+5f3c 204060ec call twspi_read 
+5f3d 6000c731 store 1 ,mem_sensor_shutter_hi 
+5f3e dfe00008 arg 8 ,pdata 
+5f3f 204060ec call twspi_read 
+5f40 6000c732 store 1 ,mem_sensor_shutter_lo 
+5f41 202060e9 branch spi_ncs_disable 
+
+mouse_3610_smart_enable:
+5f42 6800c731 fetch 1 ,mem_sensor_shutter_hi 
+5f43 c1800000 rtnne 0 
+5f44 6800c732 fetch 1 ,mem_sensor_shutter_lo 
+5f45 1fe67c2d sub pdata ,45 ,null 
+5f46 20610000 rtn positive 
+5f47 70473300 jam 0 ,mem_sensor_smart_flag 
+5f48 5800ba41 setarg 0xba41 
+5f49 204060db call sensor_write 
+5f4a 58000032 setarg 0x0032 
+5f4b 204060db call sensor_write 
+5f4c 5800b541 setarg 0xb541 
+5f4d 202060db branch sensor_write 
+
+mouse_3610_smart_disable:
+5f4e 6800c731 fetch 1 ,mem_sensor_shutter_hi 
+5f4f c1800000 rtnne 0 
+5f50 6800c732 fetch 1 ,mem_sensor_shutter_lo 
+5f51 1fe67c2d sub pdata ,45 ,null 
+5f52 24610000 nrtn positive 
+5f53 70473301 jam 1 ,mem_sensor_smart_flag 
+5f54 5800ba41 setarg 0xba41 
+5f55 204060db call sensor_write 
+5f56 58008032 setarg 0x8032 
+5f57 204060db call sensor_write 
+5f58 5800b541 setarg 0xb541 
+5f59 202060db branch sensor_write 
+
+mouse_read_sensor_common:
+5f5a dfe00003 arg 3 ,pdata 
+5f5b 204060ec call twspi_read 
+5f5c 6001472a store 2 ,mem_mouse_x 
+5f5d dfe00004 arg 4 ,pdata 
+5f5e 204060ec call twspi_read 
+5f5f 6001472c store 2 ,mem_mouse_y 
+5f60 20600000 rtn 
+
+mouse_zwheel:
+5f61 6800c768 fetch 1 ,mem_mouse_z_data 
+5f62 207a0000 rtn blank 
+5f63 6000c72e store 1 ,mem_mouse_z 
+5f64 70476800 jam 0 ,mem_mouse_z_data 
+5f65 78347c00 enable user 
+5f66 20600000 rtn 
+
+mouse_t_zwheel:
+5f67 6800c760 fetch 1 ,mem_mouse_tz_data 
+5f68 207a0000 rtn blank 
+5f69 6000c72f store 1 ,mem_mouse_tz 
+5f6a 70476000 jam 0 ,mem_mouse_tz_data 
+5f6b 78347c00 enable user 
+5f6c 20600000 rtn 
+
+mouse_check_key_gpio:
+5f6d da200000 arg 0 ,rega 
+5f6e 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5f6f 204064f5 call gpio_get_bit 
+5f70 7920a200 setflag true ,0 ,rega 
+5f71 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5f72 204064f5 call gpio_get_bit 
+5f73 7920a201 setflag true ,1 ,rega 
+5f74 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5f75 204064f5 call gpio_get_bit 
+5f76 7920a202 setflag true ,2 ,rega 
+5f77 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5f78 204064f5 call gpio_get_bit 
+5f79 7920a203 setflag true ,3 ,rega 
+5f7a 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5f7b 204064f5 call gpio_get_bit 
+5f7c 7920a204 setflag true ,4 ,rega 
+5f7d 1a227e00 copy rega ,pdata 
+5f7e 20600000 rtn 
+
+mouse_key:
+5f7f 20405f6d call mouse_check_key_gpio 
+5f80 6808c729 fetcht 1 ,mem_mouse_key 
+5f81 6000c729 store 1 ,mem_mouse_key 
+5f82 9842fe00 ixor temp ,pdata 
+5f83 1fe67c00 sub pdata ,0 ,null 
+5f84 20628000 rtn zero 
+5f85 78347c00 enable user 
+5f86 20600000 rtn 
+
+mouse_sensor_sdio_low:
+5f87 d840001a arg 26 ,temp 
+5f88 204064f5 call gpio_get_bit 
+5f89 20608000 rtn true 
+5f8a 5800000a setarg 0x0a 
+5f8b 204060ec call twspi_read 
+5f8c 200003e8 nop 1000 
+5f8d 20205f87 branch mouse_sensor_sdio_low 
+
+mouse_init_sunt:
+5f8e 204061ac call spid_init 
+5f8f 20758000 rtn wake 
+
+mouse_init_p3204:
+5f90 58000000 setarg 0 
+5f91 204060ec call twspi_read 
+5f92 6000824b store 1 ,mem_sensor_id 
+5f93 c0185f98 beq p3204_id ,mouse_init_p3204_cont 
+5f94 c018df98 beq p3065_id ,mouse_init_p3204_cont 
+5f95 204060c0 call twspi_reset 
+5f96 200003e8 nop 1000 
+5f97 20205f90 branch mouse_init_p3204 
+
+mouse_init_p3204_cont:
+5f98 58008006 setarg 0x8006 
+5f99 204060eb call twspi_write 
+5f9a 200003e8 nop 1000 
+5f9b 20600000 rtn 
+
+mouse_init_sensor_reset:
+5f9c 6808c756 fetcht 1 ,mem_sensor_reset_gpio 
+5f9d 204064ff call gpio_out_active 
+5f9e 20407e89 call delay_10ms 
+5f9f 6808c756 fetcht 1 ,mem_sensor_reset_gpio 
+5fa0 204064fd call gpio_out_inactive 
+5fa1 20207e89 branch delay_10ms 
+
+mouse_init_p3610:
+5fa2 5800ba41 setarg 0xba41 
+5fa3 204060db call sensor_write 
+5fa4 58000d11 setarg 0x0d11 
+5fa5 204060db call sensor_write 
+5fa6 5800041b setarg 0x041b 
+5fa7 204060db call sensor_write 
+5fa8 5800041c setarg 0x041c 
+5fa9 204060db call sensor_write 
+5faa 58000f1d setarg 0x0f1d 
+5fab 204060db call sensor_write 
+5fac 58000032 setarg 0x0032 
+5fad 204060db call sensor_write 
+5fae 5800b541 setarg 0xb541 
+5faf 202060db branch sensor_write 
+
+set_sensor_reg:
+5fb0 5800ba41 setarg 0xba41 
+5fb1 204060db call sensor_write 
+5fb2 20000fa0 nop 4000 
+5fb3 5800ff7f setarg 0xff7f 
+5fb4 204060db call sensor_write 
+5fb5 1a227e00 copy rega ,pdata 
+5fb6 204060db call sensor_write 
+5fb7 5800007f setarg 0x007f 
+5fb8 204060db call sensor_write 
+5fb9 5800b541 setarg 0xb541 
+5fba 202060db branch sensor_write 
+
+extsign:
+5fbb c4038000 rtnbit0 7 
+5fbc d840ff00 arg 0xff00 ,temp 
+5fbd 9841fe00 ior temp ,pdata 
+5fbe 20600000 rtn 
+
+extsign_bit3:
+5fbf c4018000 rtnbit0 3 
+5fc0 d84000f0 arg 0xf0 ,temp 
+5fc1 9841fe00 ior temp ,pdata 
+5fc2 20600000 rtn 
+
+le_mouse:
+5fc3 20404bd4 call le_xtype_fifo_is_near_full 
+5fc4 247a0000 nrtn blank 
+5fc5 6800c74c fetch 1 ,mem_mouse_le_notify_handle 
+5fc6 6000c4f8 store 1 ,mem_le_notify_handle 
+5fc7 680944f8 fetcht 2 ,mem_le_notify_handle 
+5fc8 20404f6a call le_att_check_notification_enable 
+5fc9 c4000000 rtnbit0 0 
+5fca 6800c595 fetch 1 ,mem_le_switch_send_data 
+5fcb c4000000 rtnbit0 0 
+5fcc 20405f14 call mouse_motion 
+5fcd 24740000 nrtn user 
+5fce 20405efa call mouse_no_data_timer_init 
+5fcf 6800c74c fetch 1 ,mem_mouse_le_notify_handle 
+5fd0 6000c4f8 store 1 ,mem_le_notify_handle 
+5fd1 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5fd2 20404bd6 call le_xtype_fifo_in 
+5fd3 20205f0c branch mouse_fill_data_le 
+
+mouse_priority_bb_event:
+5fd4 1a627e00 copy regc ,pdata 
+5fd5 c00a5fe7 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+5fd6 c000e084 beq bt_evt_bb_connected ,mouse_stop_discovery 
+5fd7 c00adff6 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+5fd8 c0015ff6 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+5fd9 c002dff5 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+5fda c0086048 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+5fdb c0096068 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+5fdc c0035ff3 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+5fdd c0145edb beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+5fde c014dede beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+5fdf c0025ff0 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+5fe0 c009dff0 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+5fe1 c0055fee beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+5fe2 c0173e32 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+5fe3 1fe1040f and pdata ,0x0f ,temp 
+5fe4 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+5fe5 c0286014 beq bt_evt_timer_init ,mouse_bb_event_timer 
+5fe6 20600000 rtn 
+
+le_mouse_bb_event_connected:
+5fe7 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+5fe8 793ffe00 set0 app_disc_by_button ,pdata 
+5fe9 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+5fea 58000000 setarg 0 
+5feb 6001473f store 2 ,mem_mouse_direct_timer 
+5fec 20405efa call mouse_no_data_timer_init 
+5fed 20206084 branch mouse_stop_discovery 
+
+mouse_bb_event_pincode:
+5fee 204059d7 call pincode_reinit 
+5fef 20203e45 branch app_bt_set_pincode 
+
+mouse_bb_event_reconn_failed:
+5ff0 6801470b fetch 2 ,mem_ui_state_map 
+5ff1 c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+5ff2 20203e0a branch app_bb_hibernate 
+
+mouse_bt_hid_connected:
+5ff3 20405edf call mouse_hid_connected 
+5ff4 20600000 rtn 
+
+mouse_bt_event_setup_complete:
+5ff5 20600000 rtn 
+
+mouse_bb_disconnected:
+5ff6 79200025 set1 mark_ext_patch ,mark 
+5ff7 44b7c02d bpatch patch2d_7 ,mem_patch2d 
+5ff8 20406000 call mouse_bb_discon_clear_stack 
+5ff9 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+5ffa c283e010 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+5ffb c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+5ffc c280e00a bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+5ffd c281600d bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+5ffe c281e00d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+5fff 20206074 branch mouse_start_discovery 
+
+mouse_bb_discon_clear_stack:
+6000 58000000 setarg 0 
+6001 6004475b store 8 ,mem_whee_ta_data_gpio 
+6002 e0a40000 istore 8 ,contw 
+6003 70474500 jam 0 ,mem_mouse_send_blank_timer 
+6004 70473500 jam 0 ,mem_mouse_move_flag 
+6005 70428300 jam app_handshake_null ,mem_app_handshake_flag 
+6006 7044b200 jam 0 ,mem_ltk_exists 
+6007 70474b00 jam 0 ,mem_mouse_mode_state 
+6008 70473600 jam 0 ,mem_reconnect_timeout 
+6009 20600000 rtn 
+
+mouse_event_light_state_pairing:
+600a c282e00d bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+600b c281e00d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+600c 20206074 branch mouse_start_discovery 
+
+mouse_event_light_state_hibernate:
+600d 6801470b fetch 2 ,mem_ui_state_map 
+600e c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+600f 20203e0a branch app_bb_hibernate 
+
+mouse4_0_event_bb_disconn:
+6010 204052a0 call le_clean_att_list_handle_enable 
+6011 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+6012 c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+6013 20203e0a branch app_bb_hibernate 
+
+mouse_bb_event_timer:
+6014 79200025 set1 mark_ext_patch ,mark 
+6015 44b8402e bpatch patch2e_0 ,mem_patch2e 
+6016 6008824e storet 1 ,mem_app_evt_timer_count 
+
+mouse_bb_event_100ms_loop:
+6017 6800824e fetch 1 ,mem_app_evt_timer_count 
+6018 207a0000 rtn blank 
+6019 1fe0ffff increase -1 ,pdata 
+601a 6000824e store 1 ,mem_app_evt_timer_count 
+601b 20406027 call mouse_check_hid_handshake_timer 
+601c 2040602d call mouse_check_discovery_timeout_timer 
+601d 20406034 call mouse_check_direct_timeout_timer 
+601e 20406042 call mouse_check_no_data_timeout_timer 
+601f 20406021 call mouse_check_mouse_state_timer 
+6020 20206017 branch mouse_bb_event_100ms_loop 
+
+mouse_check_mouse_state_timer:
+6021 6800c76c fetch 1 ,mem_mouse_statue_led_timer 
+6022 207a0000 rtn blank 
+6023 1fe0ffff pincrease -1 
+6024 6000c76c store 1 ,mem_mouse_statue_led_timer 
+6025 247a0000 nrtn blank 
+6026 202060aa branch mouse_devce_led_off 
+
+mouse_check_hid_handshake_timer:
+6027 6800c709 fetch 1 ,mem_hid_handshake_timer_count 
+6028 207a0000 rtn blank 
+6029 1fe0ffff increase -1 ,pdata 
+602a 6000c709 store 1 ,mem_hid_handshake_timer_count 
+602b 247a0000 nrtn blank 
+602c 20206068 branch mouse_bt_hid_handshake 
+
+mouse_check_discovery_timeout_timer:
+602d 6801473d fetch 2 ,mem_mouse_discovery_timer 
+602e 207a0000 rtn blank 
+602f 1fe0ffff increase -1 ,pdata 
+6030 6001473d store 2 ,mem_mouse_discovery_timer 
+6031 247a0000 nrtn blank 
+6032 20406084 call mouse_stop_discovery 
+6033 20203e75 branch app_enter_hibernate 
+
+mouse_check_direct_timeout_timer:
+6034 6801473f fetch 2 ,mem_mouse_direct_timer 
+6035 207a0000 rtn blank 
+6036 1fe0ffff increase -1 ,pdata 
+6037 6001473f store 2 ,mem_mouse_direct_timer 
+6038 247a0000 nrtn blank 
+6039 20403e5f call app_ble_stop_direct_adv 
+603a 20203e75 branch app_enter_hibernate 
+
+mouse_check_blank_data_timeout_timer:
+603b 68014743 fetch 2 ,mem_mouse_blank_data_timer 
+603c 207a0000 rtn blank 
+603d 1fe0ffff increase -1 ,pdata 
+603e 60014743 store 2 ,mem_mouse_blank_data_timer 
+603f 247a0000 nrtn blank 
+6040 70474500 jam 0 ,mem_mouse_send_blank_timer 
+6041 20600000 rtn 
+
+mouse_check_no_data_timeout_timer:
+6042 68014741 fetch 2 ,mem_mouse_no_data_timer 
+6043 207a0000 rtn blank 
+6044 1fe0ffff increase -1 ,pdata 
+6045 60014741 store 2 ,mem_mouse_no_data_timer 
+6046 247a0000 nrtn blank 
+6047 2020608f branch mouse_disconnect 
+
+mouse_bb_event_discovery_btn:
+6048 79200025 set1 mark_ext_patch ,mark 
+6049 44b8c02e bpatch patch2e_1 ,mem_patch2e 
+604a 70474500 jam 0 ,mem_mouse_send_blank_timer 
+604b 70473601 jam 1 ,mem_reconnect_timeout 
+604c 58000000 setarg 0 
+604d 6001473f store 2 ,mem_mouse_direct_timer 
+604e 2040608f call mouse_disconnect 
+604f 6800c132 fetch 1 ,mem_device_option 
+6050 2feffe01 isolate1 mode_4_mouse ,pdata 
+6051 2040e066 call mouse4_0_bb_event_discovery_btn ,true 
+6052 6800c132 fetch 1 ,mem_device_option 
+6053 2feffe00 isolate1 mode_3_mouse ,pdata 
+6054 2040e062 call mouse3_0_bb_event_discovery_btn ,true 
+6055 20403e81 call app_lpm_mult_disable 
+6056 20206074 branch mouse_start_discovery 
+
+mouse3_0_check_reconn_target:
+6057 68034273 fetch 6 ,mem_hci_plap 
+6058 203a3e54 branch app_bt_start_discovery_short ,blank 
+6059 20203e49 branch app_bt_start_reconnect 
+
+mouse4_0_check_reconn_target:
+605a 68034273 fetch 6 ,mem_hci_plap 
+605b 203a6060 branch mouse4_0_no_reconn_target ,blank 
+605c 68014737 fetch 2 ,mem_mouse_direct_timeout 
+605d 6001473f store 2 ,mem_mouse_direct_timer 
+605e 20403e7f call app_lpm_mult_enable 
+605f 20203e5d branch app_ble_start_direct_adv 
+
+mouse4_0_no_reconn_target:
+6060 20403e6f call app_led_start_blink 
+6061 20203e63 branch app_ble_start_adv 
+
+mouse3_0_bb_event_discovery_btn:
+6062 6801470b fetch 2 ,mem_ui_state_map 
+6063 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+6064 2040be50 call app_bt_reconnect_cancel ,true 
+6065 20600000 rtn 
+
+mouse4_0_bb_event_discovery_btn:
+6066 204052a0 call le_clean_att_list_handle_enable 
+6067 20600000 rtn 
+
+mouse_bt_hid_handshake:
+6068 70428301 jam app_handshake_done ,mem_app_handshake_flag 
+6069 20403e7f call app_lpm_mult_enable 
+606a 20403e7d call app_bt_store_reconn_info 
+606b 70474b01 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+606c 58000000 setarg 0 
+606d 60014707 store 2 ,mem_discovery_timeout_timer_count 
+606e 6000c709 store 1 ,mem_hid_handshake_timer_count 
+606f 20203e79 branch app_bt_enter_sniff 
+
+mouse_check_reconn_target:
+6070 6800c2b5 fetch 1 ,mem_xrecord_mode 
+6071 c019e057 beq rec_3_mode ,mouse3_0_check_reconn_target 
+6072 c01a605a beq rec_4_mode ,mouse4_0_check_reconn_target 
+6073 20206074 branch mouse_start_discovery 
+
+mouse_start_discovery:
+6074 79200025 set1 mark_ext_patch ,mark 
+6075 44b9402e bpatch patch2e_2 ,mem_patch2e 
+6076 6801470b fetch 2 ,mem_ui_state_map 
+6077 c285e07a bbit1 ui_state_ble_adv ,mouse_start_discovery_norandom 
+6078 180a7e00 random pdata 
+6079 6000c53f store 1 ,mem_le_lap + 1 
+
+mouse_start_discovery_norandom:
+607a 20403e81 call app_lpm_mult_disable 
+607b 68014716 fetch 2 ,mem_discovery_timeout 
+607c 6001473d store 2 ,mem_mouse_discovery_timer 
+607d 6800c132 fetch 1 ,mem_device_option 
+607e 2feffe01 isolate1 mode_4_mouse ,pdata 
+607f 2040be63 call app_ble_start_adv ,true 
+6080 6800c132 fetch 1 ,mem_device_option 
+6081 2feffe00 isolate1 mode_3_mouse ,pdata 
+6082 2040be57 call app_bt_start_discovery ,true 
+6083 20203e6f branch app_led_start_blink 
+
+mouse_stop_discovery:
+6084 79200025 set1 mark_ext_patch ,mark 
+6085 44b9c02e bpatch patch2e_3 ,mem_patch2e 
+6086 58000000 setarg 0 
+6087 6001473d store 2 ,mem_mouse_discovery_timer 
+6088 6800c132 fetch 1 ,mem_device_option 
+6089 2feffe01 isolate1 mode_4_mouse ,pdata 
+608a 2040be61 call app_ble_stop_adv ,true 
+608b 6800c132 fetch 1 ,mem_device_option 
+608c 2feffe00 isolate1 mode_3_mouse ,pdata 
+608d 2040be59 call app_bt_stop_discovery ,true 
+608e 20203e73 branch app_led_stop_blink 
+
+mouse_disconnect:
+608f 79200025 set1 mark_ext_patch ,mark 
+6090 44ba402e bpatch patch2e_4 ,mem_patch2e 
+6091 58000000 setarg 0 
+6092 60014741 store 2 ,mem_mouse_no_data_timer 
+6093 6801470b fetch 2 ,mem_ui_state_map 
+6094 c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+6095 6801470b fetch 2 ,mem_ui_state_map 
+6096 c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+6097 20600000 rtn 
+
+eeprom_store_mouse_dpi:
+6098 79200025 set1 mark_ext_patch ,mark 
+6099 44bac02e bpatch patch2e_5 ,mem_patch2e 
+609a d8400001 arg 1 ,temp 
+609b da204746 arg mem_mouse_dpi ,rega 
+609c da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+609d 2020626f branch iicd_write_eep_data 
+
+eeprom_load_mouse_dpi:
+609e 79200025 set1 mark_ext_patch ,mark 
+609f 44bb402e bpatch patch2e_6 ,mem_patch2e 
+60a0 d8400001 arg 1 ,temp 
+60a1 da204746 arg mem_mouse_dpi ,rega 
+60a2 da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+60a3 20206245 branch iicd_read_eep_data 
+
+mouse_check_mouse_statue:
+60a4 79200025 set1 mark_ext_patch ,mark 
+60a5 44bbc02e bpatch patch2e_7 ,mem_patch2e 
+60a6 6800c734 fetch 1 ,mem_sensor_squal_reg 
+60a7 204060d1 call sensor_read 
+60a8 c00060b0 beq 0x0 ,mouse_statue_up 
+60a9 20600000 rtn 
+
+mouse_devce_led_off:
+60aa 6808c757 fetcht 1 ,mem_device1_led_gpio 
+60ab 204064fd call gpio_out_inactive 
+60ac 6808c758 fetcht 1 ,mem_device2_led_gpio 
+60ad 204064fd call gpio_out_inactive 
+60ae 6808c759 fetcht 1 ,mem_device3_led_gpio 
+60af 202064fd branch gpio_out_inactive 
+
+mouse_statue_up:
+60b0 6800c76b fetch 1 ,mem_reconn_mode 
+60b1 207a0000 rtn blank 
+60b2 70476b00 jam 0 ,mem_reconn_mode 
+60b3 70476c3c jam 60 ,mem_mouse_statue_led_timer 
+60b4 204060aa call mouse_devce_led_off 
+60b5 6800c76d fetch 1 ,mem_device_flag 
+60b6 c000e0ba beq 0x01 ,mouse_device1_led_on 
+60b7 c00160bc beq 0x02 ,mouse_device2_led_on 
+60b8 c001e0be beq 0x03 ,mouse_device3_led_on 
+60b9 20600000 rtn 
+
+mouse_device1_led_on:
+60ba 6808c757 fetcht 1 ,mem_device1_led_gpio 
+60bb 202064ff branch gpio_out_active 
+
+mouse_device2_led_on:
+60bc 6808c758 fetcht 1 ,mem_device2_led_gpio 
+60bd 202064ff branch gpio_out_active 
+
+mouse_device3_led_on:
+60be 6808c759 fetcht 1 ,mem_device3_led_gpio 
+60bf 202064ff branch gpio_out_active 
+
+twspi_reset:
+60c0 79200025 set1 mark_ext_patch ,mark 
+60c1 44bc402f bpatch patch2f_0 ,mem_patch2f 
+60c2 68108073 hfetch 1 ,core_gpio_oe3 
+60c3 d8400006 arg 0x06 ,temp 
+60c4 9841fe00 ior temp ,pdata 
+60c5 60108073 hstore 1 ,core_gpio_oe3 
+60c6 68108077 hfetch 1 ,core_gpio_out3 
+60c7 9841fe00 ior temp ,pdata 
+60c8 60108077 hstore 1 ,core_gpio_out3 
+60c9 70808100 hjam 0 ,core_gpio_sel1 
+60ca 68108077 hfetch 1 ,core_gpio_out3 
+60cb 793ffe01 set0 1 ,pdata 
+60cc 793ffe02 set0 2 ,pdata 
+60cd 60108077 hstore 1 ,core_gpio_out3 
+60ce 2000001e nop 30 
+60cf 70808101 hjam 1 ,core_gpio_sel1 
+60d0 20600000 rtn 
+
+sensor_read:
+60d1 1fe22400 copy pdata ,regb 
+60d2 204060e7 call spi_ncs_enable 
+60d3 20000064 nop 100 
+60d4 1a427e00 copy regb ,pdata 
+60d5 204060ec call twspi_read 
+60d6 1fe22400 copy pdata ,regb 
+60d7 204060e9 call spi_ncs_disable 
+60d8 20000064 nop 100 
+60d9 1a427e00 copy regb ,pdata 
+60da 20600000 rtn 
+
+sensor_write:
+60db 1fe22400 copy pdata ,regb 
+60dc 204060e7 call spi_ncs_enable 
+60dd 20000064 nop 100 
+60de 1a427e00 copy regb ,pdata 
+60df 204060eb call twspi_write 
+60e0 204060e9 call spi_ncs_disable 
+60e1 20000064 nop 100 
+60e2 20600000 rtn 
+
+spi_ncs_gpio_init:
+60e3 6800c2bb fetch 1 ,mem_spi_ncs_gpio 
+60e4 c17f8000 rtneq 0xff 
+60e5 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60e6 202064e8 branch gpio_config_output 
+
+spi_ncs_enable:
+60e7 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60e8 202064ff branch gpio_out_active 
+
+spi_ncs_disable:
+60e9 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60ea 202064fd branch gpio_out_inactive 
+
+twspi_write:
+60eb 202061c1 branch spid_write_reg 
+
+twspi_read:
+60ec 202061c9 branch spid_read_reg 
+
+read_function_aes:
+60ed 243460f1 nbranch read_function ,user 
+60ee 68108085 hfetch 1 ,core_gpio_key2 
+60ef 1fe1fe20 or_into 0x20 ,pdata 
+60f0 60108085 hstore 1 ,core_gpio_key2 
+
+read_function:
+60f1 18427c00 copy temp ,null 
+60f2 2022e0f4 branch read_fuction_zero ,zero 
+60f3 1a627a00 copy regc ,pc 
+
+read_fuction_zero:
+60f4 2fcc0000 isolate0 0 ,null 
+60f5 2020618e branch set_ucode_status 
+
+get_block_header:
+60f6 18000404 force 4 ,temp 
+
+get_block_header0:
+60f7 da200221 arg mem_ucode_buf ,rega 
+60f8 68108085 hfetch 1 ,core_gpio_key2 
+60f9 1fe17edf and_into 0xdf ,pdata 
+60fa 60108085 hstore 1 ,core_gpio_key2 
+60fb 204060f1 call read_function 
+60fc da2055aa arg 0x55aa ,rega 
+60fd 68010221 fetch 2 ,mem_ucode_buf 
+60fe e8c90000 ifetcht 2 ,contr 
+60ff 9a267c00 isub rega ,null 
+6100 20600000 rtn 
+
+read_first_block:
+6101 d8400002 arg 2 ,temp 
+6102 da200227 arg mem_ucode_ptr ,rega 
+6103 204060f1 call read_function 
+6104 68010227 fetch 2 ,mem_ucode_ptr 
+6105 6001021a store 2 ,mem_addr_mi 
+6106 20546108 call get_iv ,user 
+6107 20600000 rtn 
+
+get_iv:
+6108 d8400010 arg 16 ,temp 
+6109 da200229 arg mem_ucode_keybuf ,rega 
+610a 68108085 hfetch 1 ,core_gpio_key2 
+610b 1fe17edf and_into 0xdf ,pdata 
+610c 60108085 hstore 1 ,core_gpio_key2 
+610d 204060f1 call read_function 
+610e d8c00229 arg mem_ucode_keybuf ,contr 
+610f df200010 arg 16 ,loopcnt 
+6110 204071a1 call aes_load_data 
+6111 20407150 call aes_init 
+6112 204071ba call aes_clear_data 
+6113 2020714a branch do_aes_cbc 
+
+load_storage:
+6114 7856fc00 disable match 
+6115 204060f6 call get_block_header 
+6116 24628000 nrtn zero 
+6117 7836fc00 enable match 
+6118 70802380 hjam 0x80 ,core_ucode_ctrl 
+6119 70802200 hjam 0 ,core_ucode_hi 
+611a 70802400 hjam 0 ,core_ucode_low 
+611b da208025 arg core_ucode_data ,rega 
+611c 204060ed call read_function_aes 
+611d 70802300 hjam 0x0 ,core_ucode_ctrl 
+611e 204060f6 call get_block_header 
+611f 24628000 nrtn zero 
+6120 18007e00 force 0 ,pdata 
+6121 60110288 hstore 2 ,core_docd_paddr 
+6122 da20828a arg core_docd_pdata ,rega 
+6123 204060ed call read_function_aes 
+
+load_storage_loop:
+6124 d8400006 arg 6 ,temp 
+6125 204060f7 call get_block_header0 
+6126 24628000 nrtn zero 
+6127 e8c10000 ifetch 2 ,contr 
+6128 98002200 iforce rega 
+6129 204060f1 call read_function 
+612a 20206124 branch load_storage_loop 
+
+reload_eeprom:
+612b 79200025 set1 mark_ext_patch ,mark 
+612c 44bcc02f bpatch patch2f_1 ,mem_patch2f 
+612d 20407f66 call clean_mem 
+612e 58001000 setarg 0x1000 
+612f 6001021a store 2 ,mem_addr_mi 
+6130 da60624c arg iicd_read_eep ,regc 
+6131 df200002 arg 2 ,loopcnt 
+
+reload_eeprom_loop:
+6132 204060f6 call get_block_header 
+6133 24628000 nrtn zero 
+6134 6801021a fetch 2 ,mem_addr_mi 
+6135 1ff0fe00 byteswap pdata ,pdata 
+6136 9840fe00 iadd temp ,pdata 
+6137 1ff0fe00 byteswap pdata ,pdata 
+6138 6001021a store 2 ,mem_addr_mi 
+6139 c2006132 loop reload_eeprom_loop 
+613a 20206124 branch load_storage_loop 
+
+loadcode:
+613b 70805025 hjam 0x25 ,core_clkoff 
+613c 70828005 hjam 5 ,core_docd_ctrl 
+613d 20407f66 call clean_mem 
+613e 79200025 set1 mark_ext_patch ,mark 
+613f 44bd402f bpatch patch2f_2 ,mem_patch2f 
+
+loadcode_lpm:
+6140 78547c00 disable user 
+6141 204062c4 call otp_enable_chgpump 
+6142 58000000 setarg otp_ucode_flag 
+6143 da200216 arg mem_otp_ucode_flag ,rega 
+6144 d8400002 arg 2 ,temp 
+6145 2040630d call otpd_read_data 
+6146 68010216 fetch 2 ,mem_otp_ucode_flag 
+6147 c303e150 bbit0 otp_uflag_aes ,loadcode_otp 
+6148 580007f0 setarg otp_ucode_aeskey 
+6149 da200229 arg mem_ucode_keybuf ,rega 
+614a d8400010 arg 16 ,temp 
+614b 2040630d call otpd_read_data 
+614c 70800608 hjam lock_otp ,core_misc_ctrl 
+614d d8c00229 arg mem_ucode_keybuf ,contr 
+614e 204071ad call load_key 
+614f 78347c00 enable user 
+
+loadcode_otp:
+6150 79200025 set1 mark_ext_patch ,mark 
+6151 44bdc02f bpatch patch2f_3 ,mem_patch2f 
+6152 68010216 fetch 2 ,mem_otp_ucode_flag 
+6153 1ff0fe00 byteswap pdata ,pdata 
+6154 d84007ff arg 0x7ff ,temp 
+6155 98417e00 iand temp ,pdata 
+6156 2022e15e branch loadcode_spi ,zero 
+6157 204062c9 call otp_set_addr 
+6158 da606312 arg otpd_read_code ,regc 
+6159 20546108 call get_iv ,user 
+615a 20406114 call load_storage 
+615b 68008215 fetch 1 ,mem_ucode_status 
+615c 2fe00603 compare 3 ,pdata ,3 
+615d 2420e150 nbranch loadcode_otp ,true 
+
+loadcode_spi:
+615e 79200025 set1 mark_ext_patch ,mark 
+615f 44be402f bpatch patch2f_4 ,mem_patch2f 
+6160 204062c7 call otp_disable_chgpump 
+6161 68008216 fetch 1 ,mem_otp_ucode_flag 
+6162 c282e16d bbit1 otp_uflag_skip_flash ,loadcode_iic 
+6163 58000000 setarg 0x0 
+6164 60018219 store 3 ,mem_addr_hi 
+6165 204061d9 call spid_init_flash 
+6166 da6061fb arg spid_read_flash ,regc 
+6167 20406101 call read_first_block 
+6168 20406114 call load_storage 
+6169 2436e16d nbranch loadcode_iic ,match 
+616a 68008215 fetch 1 ,mem_ucode_status 
+616b 2fe00603 compare 3 ,pdata ,3 
+616c 2420e15e nbranch loadcode_spi ,true 
+
+loadcode_iic:
+616d 79200025 set1 mark_ext_patch ,mark 
+616e 44bec02f bpatch patch2f_5 ,mem_patch2f 
+616f 20406236 call clear_eeprom_size_2k 
+6170 68008216 fetch 1 ,mem_otp_ucode_flag 
+6171 c2836180 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+6172 20406188 call loadcode_iic_by_eeprom 
+6173 2436e178 nbranch loadcode_iic_eeprom_2k ,match 
+6174 68008215 fetch 1 ,mem_ucode_status 
+6175 2fe00603 compare 3 ,pdata ,3 
+6176 2420e16d nbranch loadcode_iic ,true 
+6177 20206180 branch loadcode_hci 
+
+loadcode_iic_eeprom_2k:
+6178 20406233 call set_eeprom_size_2k 
+6179 68008216 fetch 1 ,mem_otp_ucode_flag 
+617a c2836180 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+617b 20406188 call loadcode_iic_by_eeprom 
+617c 2436e180 nbranch loadcode_hci ,match 
+617d 68008215 fetch 1 ,mem_ucode_status 
+617e 2fe00603 compare 3 ,pdata ,3 
+617f 2420e178 nbranch loadcode_iic_eeprom_2k ,true 
+
+loadcode_hci:
+6180 18007004 force regidx_key ,regext_index 
+6181 204071bb call aes_clear 
+6182 70805021 hjam 0x21 ,core_clkoff 
+6183 68008216 fetch 1 ,mem_otp_ucode_flag 
+6184 c4020000 rtnbit0 otp_uflag_hci 
+6185 20403ecd call hci_init 
+
+loadcode_hci_loop:
+6186 20403ef4 call hci_rx_packet 
+6187 20206186 branch loadcode_hci_loop 
+
+loadcode_iic_by_eeprom:
+6188 58000000 setarg 0x0 
+6189 6001021a store 2 ,mem_addr_mi 
+618a da60624c arg iicd_read_eep ,regc 
+618b 2040621d call iicd_init_12m 
+618c 20406101 call read_first_block 
+618d 20206114 branch load_storage 
+
+set_ucode_status:
+618e 68008215 fetch 1 ,mem_ucode_status 
+618f 1fe3fe00 lshift pdata ,pdata 
+6190 7920fe00 setflag true ,0 ,pdata 
+6191 2a2c000f isolate0 15 ,rega 
+6192 20608000 rtn true 
+6193 60008215 store 1 ,mem_ucode_status 
+6194 20600000 rtn 
+
+decrypt_code:
+6195 68108085 hfetch 1 ,core_gpio_key2 
+6196 c4028000 rtnbit0 5 
+6197 2020619b branch decrypt_code_skip 
+
+decrypt_code_loop:
+6198 6810812c hfetch 1 ,core_dma_status 
+6199 afefffff qisolate1 pdata 
+619a 20608000 rtn true 
+
+decrypt_code_skip:
+619b 68108108 hfetch 1 ,core_misc_status 
+619c c300e198 bbit0 1 ,decrypt_code_loop 
+619d 2040714a call do_aes_cbc 
+619e 20206198 branch decrypt_code_loop 
+
+load_ucode:
+619f 68014239 fetch 2 ,mem_patch_ptr 
+61a0 207a0000 rtn blank 
+61a1 70802380 hjam 0x80 ,core_ucode_ctrl 
+61a2 70802200 hjam 0 ,core_ucode_hi 
+61a3 70802400 hjam 0 ,core_ucode_low 
+61a4 6809423b fetcht 2 ,mem_patch_len 
+61a5 184bf200 lshift2 temp ,loopcnt 
+61a6 98000c00 iforce contr 
+
+load_ucode_loop:
+61a7 e8c08000 ifetch 1 ,contr 
+61a8 60108025 hstore 1 ,core_ucode_data 
+61a9 c20061a7 loop load_ucode_loop 
+61aa 70802300 hjam 0x0 ,core_ucode_ctrl 
+61ab 20600000 rtn 
+
+spid_init:
+61ac 79200025 set1 mark_ext_patch ,mark 
+61ad 44bf402f bpatch patch2f_6 ,mem_patch2f 
+61ae 6800c2b9 fetch 1 ,mem_spi_init_clk 
+61af 60108086 hstore 1 ,core_spid_ctrl 
+61b0 6800c2ba fetch 1 ,mem_spi_init_delay_time 
+61b1 60108087 hstore 1 ,core_spid_delay 
+61b2 58000218 setarg mem_spid_tbuf 
+61b3 6011008a hstore 2 ,core_spid_txaddr 
+61b4 5800021d setarg mem_spid_rbuf 
+61b5 6011008c hstore 2 ,core_spid_rxaddr 
+61b6 68108081 hfetch 1 ,core_gpio_sel1 
+61b7 79207e00 set1 0 ,pdata 
+61b8 793ffe01 set0 1 ,pdata 
+61b9 60108081 hstore 1 ,core_gpio_sel1 
+61ba 20600000 rtn 
+
+spid_reset:
+61bb 68108086 hfetch 1 ,core_spid_ctrl 
+61bc 79207e07 set1 7 ,pdata 
+61bd 60108086 hstore 1 ,core_spid_ctrl 
+61be 793ffe07 set0 7 ,pdata 
+61bf 60108086 hstore 1 ,core_spid_ctrl 
+61c0 20600000 rtn 
+
+spid_write_reg:
+61c1 79207e07 set1 7 ,pdata 
+61c2 60010218 store 2 ,mem_spid_tbuf 
+61c3 79200025 set1 mark_ext_patch ,mark 
+61c4 44bfc02f bpatch patch2f_7 ,mem_patch2f 
+61c5 70808802 hjam 2 ,core_spid_txlen 
+61c6 70808e00 hjam 0 ,core_spid_rxlen 
+61c7 70800602 hjam spid_start ,core_misc_ctrl 
+61c8 202061d3 branch wait_spid_done 
+
+spid_read_reg:
+61c9 18000401 force 1 ,temp 
+
+spid_read_regs:
+61ca 60008218 store 1 ,mem_spid_tbuf 
+61cb 79200025 set1 mark_ext_patch ,mark 
+61cc 44c04030 bpatch patch30_0 ,mem_patch30 
+61cd 70808801 hjam 1 ,core_spid_txlen 
+61ce 6019008e hstoret 2 ,core_spid_rxlen 
+61cf 70800602 hjam spid_start ,core_misc_ctrl 
+61d0 204061d3 call wait_spid_done 
+61d1 6800821d fetch 1 ,mem_spid_rbuf 
+61d2 20600000 rtn 
+
+wait_spid_done:
+61d3 68014176 fetch 2 ,mem_afh_error_total 
+61d4 1fe0fe01 increase 1 ,pdata 
+61d5 60014176 store 2 ,mem_afh_error_total 
+61d6 6810812c hfetch 1 ,core_dma_status 
+61d7 c301e1d3 bbit0 spid_done ,wait_spid_done 
+61d8 20600000 rtn 
+
+spid_init_flash:
+61d9 70808640 hjam 0x40 ,core_spid_ctrl 
+61da 70808700 hjam 0x0 ,core_spid_delay 
+61db 68108081 hfetch 1 ,core_gpio_sel1 
+61dc 793ffe00 set0 0 ,pdata 
+61dd 79207e01 set1 1 ,pdata 
+61de 60108081 hstore 1 ,core_gpio_sel1 
+61df 58000000 setarg 0 
+61e0 60020218 store 4 ,mem_spid_tbuf 
+61e1 20600000 rtn 
+
+spid_unlock_flash:
+61e2 58000000 setarg 0 
+61e3 6011008e hstore 2 ,core_spid_rxlen 
+61e4 58000001 setarg 1 
+61e5 60108088 hstore 1 ,core_spid_txlen 
+61e6 58000218 setarg mem_spid_tbuf 
+61e7 6011008a hstore 2 ,core_spid_txaddr 
+61e8 70021806 jam 6 ,mem_spid_tbuf 
+61e9 70800602 hjam spid_start ,core_misc_ctrl 
+61ea 202061d3 branch wait_spid_done 
+
+spid_write_flash:
+61eb 18408404 increase 4 ,temp 
+61ec 60190088 hstoret 2 ,core_spid_txlen 
+61ed 1a20a3fc increase -4 ,rega 
+61ee d8400002 arg 2 ,temp 
+61ef e2288000 istoret 1 ,rega 
+61f0 1ff10400 rshift16 pdata ,temp 
+61f1 e0a88000 istoret 1 ,contw 
+61f2 1fec8400 rshift8 pdata ,temp 
+61f3 e0a88000 istoret 1 ,contw 
+61f4 e0a08000 istore 1 ,contw 
+61f5 1a227e00 deposit rega 
+61f6 6011008a hstore 2 ,core_spid_txaddr 
+61f7 58000000 setarg 0 
+61f8 6011008e hstore 2 ,core_spid_rxlen 
+61f9 70800602 hjam spid_start ,core_misc_ctrl 
+61fa 202061d3 branch wait_spid_done 
+
+spid_read_flash:
+61fb 6019008e hstoret 2 ,core_spid_rxlen 
+61fc 58000004 setarg 4 
+61fd 60110088 hstore 2 ,core_spid_txlen 
+61fe 70021803 jam 3 ,mem_spid_tbuf 
+61ff 58000218 setarg mem_spid_tbuf 
+6200 6011008a hstore 2 ,core_spid_txaddr 
+6201 1a227e00 deposit rega 
+6202 6011008c hstore 2 ,core_spid_rxaddr 
+6203 68108086 hfetch 1 ,core_spid_ctrl 
+6204 2a2c000f isolate0 15 ,rega 
+6205 7920fe06 setflag true ,6 ,pdata 
+6206 60108086 hstore 1 ,core_spid_ctrl 
+6207 70800602 hjam spid_start ,core_misc_ctrl 
+
+spi_read_flash_wait:
+6208 6810812c hfetch 1 ,core_dma_status 
+6209 c283e208 bbit1 7 ,spi_read_flash_wait 
+620a d8e00003 arg spid_done ,queue 
+620b 20406195 call decrypt_code 
+620c 204061d3 call wait_spid_done 
+620d 2feffe02 isolate1 spid_crcok ,pdata 
+620e 2040618e call set_ucode_status 
+620f 68008219 fetch 1 ,mem_addr_hi 
+6210 1ff02400 lshift16 pdata ,regb 
+6211 6800821a fetch 1 ,mem_addr_mi 
+6212 1fed7e00 lshift8 pdata ,pdata 
+6213 9a41a400 ior regb ,regb 
+6214 6800821b fetch 1 ,mem_addr_lo 
+6215 9a41fe00 ior regb ,pdata 
+6216 9840fe00 iadd temp ,pdata 
+6217 6000821b store 1 ,mem_addr_lo 
+6218 1fecfe00 rshift8 pdata ,pdata 
+6219 6000821a store 1 ,mem_addr_mi 
+621a 1fecfe00 rshift8 pdata ,pdata 
+621b 60008219 store 1 ,mem_addr_hi 
+621c 20600000 rtn 
+
+iicd_init_12m:
+621d 70809105 hjam 5 ,core_iicd_scl_low 
+621e 70809207 hjam 7 ,core_iicd_scl_high 
+621f 70809307 hjam 7 ,core_iicd_start_setup 
+6220 70809407 hjam 7 ,core_iicd_start_hold 
+6221 70809507 hjam 7 ,core_iicd_stop_setup 
+6222 70809605 hjam 5 ,core_iicd_data_setup 
+6223 20600000 rtn 
+
+wait_iicd_done:
+6224 6810812c hfetch 1 ,core_dma_status 
+6225 c302e224 bbit0 iicd_done ,wait_iicd_done 
+6226 20600000 rtn 
+
+iicd_read_data:
+6227 60110098 hstore 2 ,core_iicd_txlen 
+6228 1a227e00 deposit rega 
+6229 6011009a hstore 2 ,core_iicd_txaddr 
+622a 1a427e00 deposit regb 
+622b 6011009c hstore 2 ,core_iicd_rxaddr 
+622c 18427e00 deposit temp 
+622d 6011009e hstore 2 ,core_iicd_rxlen 
+622e d8400001 arg 1 ,temp 
+622f 7d3a0401 nsetflag blank ,1 ,temp 
+6230 60108090 hstore 1 ,core_iicd_ctrl 
+6231 70800604 hjam iicd_start ,core_misc_ctrl 
+6232 20206224 branch wait_iicd_done 
+
+set_eeprom_size_2k:
+6233 7920002a set1 mark_eeprom_size ,mark 
+6234 7042b608 jam 0x08 ,mem_eeprom_block_size 
+6235 20600000 rtn 
+
+clear_eeprom_size_2k:
+6236 793f802a set0 mark_eeprom_size ,mark 
+6237 7042b620 jam 0x20 ,mem_eeprom_block_size 
+6238 20600000 rtn 
+
+iicd_read_eep_data_size_2k:
+6239 6800c2a8 fetch 1 ,mem_eeprom_base 
+623a 9a40fe00 iadd regb ,pdata 
+623b 6000821a store 1 ,mem_addr_mi 
+623c 20206240 branch iicd_read_eep_size_2k 
+
+iicd_read_eep_size_2k_lcadcode:
+623d 6801021a fetch 2 ,mem_addr_mi 
+623e 1ff0fe00 byteswap pdata ,pdata 
+623f 6000821a store 1 ,mem_addr_mi 
+
+iicd_read_eep_size_2k:
+6240 58000003 setarg 3 
+6241 60110098 hstore 2 ,core_iicd_txlen 
+6242 700219a0 jam 0xa0 ,mem_iicd_tbuf 
+6243 70021ba1 jam 0xa1 ,mem_iicd_tbuf + 2 
+6244 20206254 branch iicd_read_eep_common 
+
+iicd_read_eep_data:
+6245 79200025 set1 mark_ext_patch ,mark 
+6246 44c0c030 bpatch patch30_1 ,mem_patch30 
+6247 c5156239 bmark1 mark_eeprom_size ,iicd_read_eep_data_size_2k 
+6248 680142a8 fetch 2 ,mem_eeprom_base 
+6249 9a40fe00 iadd regb ,pdata 
+624a 1ff0fe00 byteswap pdata ,pdata 
+624b 6001021a store 2 ,mem_addr_mi 
+
+iicd_read_eep:
+624c 79200025 set1 mark_ext_patch ,mark 
+624d 44c14030 bpatch patch30_2 ,mem_patch30 
+624e c515623d bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+624f 20007530 nop 30000 
+6250 58000004 setarg 4 
+6251 60110098 hstore 2 ,core_iicd_txlen 
+6252 700219a0 jam 0xa0 ,mem_iicd_tbuf 
+6253 70021ca1 jam 0xa1 ,mem_iicd_tbuf + 3 
+
+iicd_read_eep_common:
+6254 58000219 setarg mem_iicd_tbuf 
+6255 6011009a hstore 2 ,core_iicd_txaddr 
+6256 6019009e hstoret 2 ,core_iicd_rxlen 
+6257 1a227e00 deposit rega 
+6258 6011009c hstore 2 ,core_iicd_rxaddr 
+6259 58000002 setarg 2 
+625a 2a2c000f isolate0 15 ,rega 
+625b 7920fe00 setflag true ,0 ,pdata 
+625c 60108090 hstore 1 ,core_iicd_ctrl 
+625d 70800604 hjam iicd_start ,core_misc_ctrl 
+625e d8e00005 arg iicd_done ,queue 
+625f 20406195 call decrypt_code 
+6260 20406224 call wait_iicd_done 
+6261 2feffe04 isolate1 iicd_crcok ,pdata 
+6262 2040618e call set_ucode_status 
+6263 c515626a bmark1 mark_eeprom_size ,iicd_read_eep_load_code_size_2k 
+6264 6801021a fetch 2 ,mem_addr_mi 
+6265 1ff0fe00 byteswap pdata ,pdata 
+6266 9840fe00 iadd temp ,pdata 
+6267 1ff0fe00 byteswap pdata ,pdata 
+6268 6001021a store 2 ,mem_addr_mi 
+6269 20600000 rtn 
+
+iicd_read_eep_load_code_size_2k:
+626a 6800821a fetch 1 ,mem_addr_mi 
+626b 9840fe00 iadd temp ,pdata 
+626c 1ff0fe00 byteswap pdata ,pdata 
+626d 6001021a store 2 ,mem_addr_mi 
+626e 20600000 rtn 
+
+iicd_write_eep_data:
+626f 680142a8 fetch 2 ,mem_eeprom_base 
+6270 9a40fe00 iadd regb ,pdata 
+
+iicd_write_ota_data:
+6271 600109be store 2 ,mem_pdatatemp 
+6272 79200025 set1 mark_ext_patch ,mark 
+6273 44c1c030 bpatch patch30_3 ,mem_patch30 
+6274 600909c6 storet 2 ,mem_temp 
+6275 1a227e00 copy rega ,pdata 
+6276 600109dd store 2 ,mem_contr 
+
+iicd_write_eep_loop:
+6277 20406287 call iicd_eep_transparency 
+6278 680909d6 fetcht 2 ,mem_regb 
+6279 680109dd fetch 2 ,mem_contr 
+627a 1fe22200 copy pdata ,rega 
+627b 680109be fetch 2 ,mem_pdatatemp 
+627c 204062a8 call iicd_write_eep 
+627d 680109d6 fetch 2 ,mem_regb 
+627e 680909dd fetcht 2 ,mem_contr 
+627f 98408400 iadd temp ,temp 
+6280 600909dd storet 2 ,mem_contr 
+6281 680909be fetcht 2 ,mem_pdatatemp 
+6282 98408400 iadd temp ,temp 
+6283 600909be storet 2 ,mem_pdatatemp 
+6284 680109c6 fetch 2 ,mem_temp 
+6285 243a6277 nbranch iicd_write_eep_loop ,blank 
+6286 20600000 rtn 
+
+iicd_eep_transparency:
+6287 79200025 set1 mark_ext_patch ,mark 
+6288 44c24030 bpatch patch30_4 ,mem_patch30 
+6289 680142b6 fetch 2 ,mem_eeprom_block_size 
+628a 1fe0ffff increase -1 ,pdata 
+628b 680909be fetcht 2 ,mem_pdatatemp 
+628c 9841fe00 ior temp ,pdata 
+628d 1fe0fe01 increase 1 ,pdata 
+628e 600189da store 3 ,mem_regc 
+628f 680109c6 fetch 2 ,mem_temp 
+6290 9840fe00 iadd temp ,pdata 
+6291 680989da fetcht 3 ,mem_regc 
+6292 98467e00 isub temp ,pdata 
+6293 2421629a nbranch iicd_eep_deal_short_packet ,positive 
+6294 600109c6 store 2 ,mem_temp 
+6295 680189da fetch 3 ,mem_regc 
+6296 680909be fetcht 2 ,mem_pdatatemp 
+6297 98467e00 isub temp ,pdata 
+6298 600109d6 store 2 ,mem_regb 
+6299 20600000 rtn 
+
+iicd_eep_deal_short_packet:
+629a 680109c6 fetch 2 ,mem_temp 
+629b 600109d6 store 2 ,mem_regb 
+629c 58000000 setarg 0 
+629d 600109c6 store 2 ,mem_temp 
+629e 20600000 rtn 
+
+iicd_write_eep_size_2k:
+629f 18408402 increase 2 ,temp 
+62a0 60190098 hstoret 2 ,core_iicd_txlen 
+62a1 1a20a3fe increase -2 ,rega 
+62a2 ea298000 ifetcht 3 ,rega 
+62a3 18422400 copy temp ,regb 
+62a4 d84000a0 arg 0xa0 ,temp 
+62a5 e2288000 istoret 1 ,rega 
+62a6 e0a08000 istore 1 ,contw 
+62a7 202062b7 branch iicd_write_eep_common 
+
+iicd_write_eep:
+62a8 1fe22400 copy pdata ,regb 
+62a9 79200025 set1 mark_ext_patch ,mark 
+62aa 44c2c030 bpatch patch30_5 ,mem_patch30 
+62ab 20007530 nop 30000 
+62ac c515629f bmark1 mark_eeprom_size ,iicd_write_eep_size_2k 
+62ad 1a427e00 copy regb ,pdata 
+62ae 18408403 increase 3 ,temp 
+62af 60190098 hstoret 2 ,core_iicd_txlen 
+62b0 1a20a3fd increase -3 ,rega 
+62b1 ea298000 ifetcht 3 ,rega 
+62b2 18422400 copy temp ,regb 
+62b3 d84000a0 arg 0xa0 ,temp 
+62b4 e2288000 istoret 1 ,rega 
+62b5 1ff0fe00 byteswap pdata ,pdata 
+62b6 e0a10000 istore 2 ,contw 
+
+iicd_write_eep_common:
+62b7 1a227e00 deposit rega 
+62b8 6011009a hstore 2 ,core_iicd_txaddr 
+62b9 58000000 setarg 0 
+62ba 6011009e hstore 2 ,core_iicd_rxlen 
+62bb 70809001 hjam 1 ,core_iicd_ctrl 
+62bc 70800604 hjam iicd_start ,core_misc_ctrl 
+62bd 20406224 call wait_iicd_done 
+62be 1a427e00 copy regb ,pdata 
+62bf e2218000 istore 3 ,rega 
+62c0 20002710 nop 10000 
+62c1 20002710 nop 10000 
+62c2 20002710 nop 10000 
+62c3 20600000 rtn 
+
+otp_enable_chgpump:
+62c4 70897370 hjam 0x70 ,rfen_chgpump 
+62c5 20000bb8 nop param_chgpump_delay 
+62c6 20600000 rtn 
+
+otp_disable_chgpump:
+62c7 70897330 hjam 0x30 ,rfen_chgpump 
+62c8 20600000 rtn 
+
+otp_set_addr:
+62c9 1fe9fe00 lshift3 pdata ,pdata 
+62ca 60110045 hstore 2 ,core_otp_addr 
+62cb 70804b00 hjam 0 ,core_otpd_ctrl 
+62cc 20600000 rtn 
+
+otp_write:
+62cd 204062c9 call otp_set_addr 
+62ce 204062fa call otp_ce 
+
+otp_program:
+62cf ea288000 ifetcht 1 ,rega 
+62d0 1a20a201 increase 1 ,rega 
+62d1 18000e00 force 0 ,queue 
+
+otp_program_bit:
+62d2 a84c0000 qisolate0 temp 
+62d3 2020e2f1 branch otp_skip_0 ,true 
+62d4 68108046 hfetch 1 ,core_otp_din 
+62d5 79207e06 set1 6 ,pdata 
+62d6 79207e07 set1 7 ,pdata 
+62d7 60108046 hstore 1 ,core_otp_din 
+62d8 70804702 hjam 0x02 ,core_otp_ctrl 
+62d9 70804782 hjam 0x82 ,core_otp_ctrl 
+62da 793ffe07 set0 7 ,pdata 
+62db 60108046 hstore 1 ,core_otp_din 
+62dc 7080478a hjam 0x8a ,core_otp_ctrl 
+62dd 2000000b nop 11 
+62de 708047ca hjam 0xca ,core_otp_ctrl 
+62df 20000021 nop 33 
+62e0 7080474a hjam 0x4a ,core_otp_ctrl 
+62e1 2000002c nop 44 
+62e2 708047ca hjam 0xca ,core_otp_ctrl 
+62e3 20000016 nop 22 
+62e4 7080478a hjam 0x8a ,core_otp_ctrl 
+62e5 20000021 nop 33 
+62e6 70804782 hjam 0x82 ,core_otp_ctrl 
+62e7 20000001 nop 1 
+62e8 70804792 hjam 0x92 ,core_otp_ctrl 
+62e9 2000000a nop 10 
+62ea 708047b2 hjam 0xb2 ,core_otp_ctrl 
+62eb 68108007 hfetch 1 ,core_otp_rdata 
+62ec 70804792 hjam 0x92 ,core_otp_ctrl 
+62ed 20000001 nop 1 
+62ee 70804782 hjam 0x82 ,core_otp_ctrl 
+62ef afec0000 qisolate0 pdata 
+62f0 2020e2d2 branch otp_program_bit ,true 
+
+otp_skip_0:
+62f1 68110045 hfetch 2 ,core_otp_addr 
+62f2 1fe0fe01 increase 1 ,pdata 
+62f3 60110045 hstore 2 ,core_otp_addr 
+62f4 18e08e01 increase 1 ,queue 
+62f5 28e01e08 compare 8 ,queue ,0xf 
+62f6 2420e2d2 nbranch otp_program_bit ,true 
+62f7 c20062cf loop otp_program 
+62f8 70804783 hjam 0x83 ,core_otp_ctrl 
+62f9 20600000 rtn 
+
+otp_ce:
+62fa 70804782 hjam 0x82 ,core_otp_ctrl 
+62fb 2000000c nop 12 
+62fc 70804780 hjam 0x80 ,core_otp_ctrl 
+62fd 70804782 hjam 0x82 ,core_otp_ctrl 
+62fe 20000096 nop 150 
+62ff 20600000 rtn 
+
+otpd_read_init:
+6300 204062fa call otp_ce 
+6301 708047a2 hjam 0xa2 ,core_otp_ctrl 
+6302 1a227e00 deposit rega 
+6303 60110048 hstore 2 ,core_otpd_addr 
+6304 7920040b set1 11 ,temp 
+6305 2fec000f isolate0 15 ,pdata 
+6306 7920840f setflag true ,15 ,temp 
+6307 6019004a hstoret 2 ,core_otpd_len 
+6308 70800601 hjam otpd_start ,core_misc_ctrl 
+6309 20600000 rtn 
+
+otpd_wait_end:
+630a 6810812c hfetch 1 ,core_dma_status 
+630b c300e30a bbit0 otpd_done ,otpd_wait_end 
+630c 20600000 rtn 
+
+otpd_read_data:
+630d 204062c9 call otp_set_addr 
+630e 20406300 call otpd_read_init 
+630f 2040630a call otpd_wait_end 
+6310 70804783 hjam 0x83 ,core_otp_ctrl 
+6311 20600000 rtn 
+
+otpd_read_code:
+6312 68110124 hfetch 2 ,core_current_otp_addr 
+6313 60110045 hstore 2 ,core_otp_addr 
+6314 20406300 call otpd_read_init 
+6315 d8e00001 arg otpd_done ,queue 
+6316 20406195 call decrypt_code 
+6317 2040630a call otpd_wait_end 
+6318 2feffe00 isolate1 otpd_crcok ,pdata 
+6319 2040618e call set_ucode_status 
+631a 70804783 hjam 0x83 ,core_otp_ctrl 
+631b 20600000 rtn 
+
+uartd_prepare_tx:
+631c 6811005e hfetch 2 ,core_uart_twptr 
+631d 98001400 iforce contwu 
+631e 20600000 rtn 
+
+uartd_send:
+631f 19427e00 deposit contwu 
+6320 6011005e hstore 2 ,core_uart_twptr 
+6321 20600000 rtn 
+
+uartd_rxdone:
+6322 18627e00 deposit contru 
+6323 60110058 hstore 2 ,core_uart_rrptr 
+6324 20600000 rtn 
+
+uart_set_baud_by_mem:
+6325 680142d3 fetch uart_baud_len ,mem_baud 
+6326 60110052 hstore uart_baud_len ,core_uart_baud 
+6327 20600000 rtn 
+
+uart_copy_tx_bytes_fast:
+6328 1f227e00 deposit loopcnt 
+6329 207a0000 rtn blank 
+
+uart_copy_tx_bytes_fast_loop:
+632a 1f20f3f8 increase -8 ,loopcnt 
+632b 20416335 call uart_tx_8_bytes ,positive 
+632c 20628000 rtn zero 
+632d 2021632a branch uart_copy_tx_bytes_fast_loop ,positive 
+632e 1f20f208 increase 8 ,loopcnt 
+
+uart_copy_tx_bytes_fast_loop_four:
+632f 1f20f3fc increase -4 ,loopcnt 
+6330 20416338 call uart_tx_4_bytes ,positive 
+6331 20628000 rtn zero 
+6332 2021632f branch uart_copy_tx_bytes_fast_loop_four ,positive 
+6333 1f20f204 increase 4 ,loopcnt 
+6334 2020633b branch uart_copy_tx_bytes 
+
+uart_tx_8_bytes:
+6335 e8c40000 ifetch 8 ,contr 
+6336 e1440000 istore 8 ,contwu 
+6337 20600000 rtn 
+
+uart_tx_4_bytes:
+6338 e8c20000 ifetch 4 ,contr 
+6339 e1420000 istore 4 ,contwu 
+633a 20600000 rtn 
+
+uart_copy_tx_bytes:
+633b 1f227e00 deposit loopcnt 
+633c 207a0000 rtn blank 
+
+uart_copy_tx_bytes_loop:
+633d e8c08000 ifetch 1 ,contr 
+633e e1408000 istore 1 ,contwu 
+633f c200633d loop uart_copy_tx_bytes_loop 
+6340 20600000 rtn 
+
+uart_copy_rx_bytes_fast:
+6341 1f227e00 deposit loopcnt 
+6342 207a0000 rtn blank 
+
+uart_copy_rx_bytes_fast_loop:
+6343 1f20f3f8 increase -8 ,loopcnt 
+6344 2041634e call uart_rx_8_bytes ,positive 
+6345 20628000 rtn zero 
+6346 20216343 branch uart_copy_rx_bytes_fast_loop ,positive 
+6347 1f20f208 increase 8 ,loopcnt 
+
+uart_copy_rx_bytes_fast_loop_four:
+6348 1f20f3fc increase -4 ,loopcnt 
+6349 20416351 call uart_rx_4_bytes ,positive 
+634a 20628000 rtn zero 
+634b 20216348 branch uart_copy_rx_bytes_fast_loop_four ,positive 
+634c 1f20f204 increase 4 ,loopcnt 
+634d 20206354 branch uart_copy_rx_bytes 
+
+uart_rx_8_bytes:
+634e e8640000 ifetch 8 ,contru 
+634f e0a40000 istore 8 ,contw 
+6350 20600000 rtn 
+
+uart_rx_4_bytes:
+6351 e8620000 ifetch 4 ,contru 
+6352 e0a20000 istore 4 ,contw 
+6353 20600000 rtn 
+
+uart_copy_rx_bytes:
+6354 1f227e00 deposit loopcnt 
+6355 207a0000 rtn blank 
+
+uart_copy_rx_bytes_loop:
+6356 e8608000 ifetch 1 ,contru 
+6357 e0a08000 istore 1 ,contw 
+6358 c2006356 loop uart_copy_rx_bytes_loop 
+6359 20600000 rtn 
+
+check_51cmd_update_device_record:
+635a 79200025 set1 mark_ext_patch ,mark 
+635b 44c34030 bpatch patch30_6 ,mem_patch30 
+635c 6800c2be fetch 1 ,mem_nv_data_number 
+635d 207a0000 rtn blank 
+635e 204063f3 call check_nvram 
+635f 2042e3f9 call init_device_list ,zero 
+6360 2040638e call nvram_find_addr_from_bd_list 
+
+write_device_record:
+6361 6800c2be fetch 1 ,mem_nv_data_number 
+6362 1fe22600 icopy regc 
+6363 680942bc fetcht 2 ,mem_nv_data_ptr 
+6364 600901af storet 2 ,mem_list_item_ptr 
+
+write_device_loop_find:
+6365 1a627e00 copy regc ,pdata 
+6366 203a5d30 branch module_hci_event_store_device ,blank 
+6367 1a60a7ff increase -1 ,regc 
+6368 18422200 copy temp ,rega 
+6369 ea208000 ifetch 1 ,rega 
+636a 680881a7 fetcht 1 ,mem_select_list_item 
+636b 98467c00 isub temp ,null 
+636c 2042e375 call set_index_finded_device ,zero 
+636d 20216371 branch write_device_loop_find0 ,positive 
+636e ea208000 ifetch 1 ,rega 
+636f 1fe0fe01 increase 1 ,pdata 
+6370 e2208000 istore 1 ,rega 
+
+write_device_loop_find0:
+6371 680901af fetcht 2 ,mem_list_item_ptr 
+6372 18408422 increase nv_data_len ,temp 
+6373 600901af storet 2 ,mem_list_item_ptr 
+6374 20206365 branch write_device_loop_find 
+
+set_index_finded_device:
+6375 58000000 setarg 0 
+6376 e2208000 istore 1 ,rega 
+6377 680081a8 fetch 1 ,mem_temp_reconn_record 
+6378 e0a08000 istore 1 ,contw 
+6379 c099e383 bne rec_3_mode ,set_index_finded_device_ble_mode 
+637a da404261 arg mem_link_key ,regb 
+
+set_index_find_device_master_addr:
+637b e8c30000 ifetch 6 ,contr 
+637c e0a40000 istore 8 ,contw 
+637d 58000000 setarg 0 
+637e e0a40000 istore 8 ,contw 
+637f 1a420c00 copy regb ,contr 
+
+store_rec_data_common:
+6380 20407e87 call memcpy16 
+6381 18007c01 force 1 ,null 
+6382 20600000 rtn 
+
+set_index_finded_device_ble_mode:
+6383 c01b6387 beq rec_4_mode_random_resolvable_private_address ,set_index_finded_device_irk 
+6384 c01be38b beq rec_4_mode_random_non_resolvable_private_address ,set_index_finded_device_ediv 
+6385 da4044a2 arg mem_le_ltk ,regb 
+6386 2020637b branch set_index_find_device_master_addr 
+
+set_index_finded_device_irk:
+6387 d8c0457b arg mem_le_irk ,contr 
+6388 20407e87 call memcpy16 
+
+store_ble_rec_data_common:
+6389 d8c044a2 arg mem_le_ltk ,contr 
+638a 20206380 branch store_rec_data_common 
+
+set_index_finded_device_ediv:
+638b d8c04573 arg mem_le_rand ,contr 
+638c 20407e87 call memcpy16 
+638d 20206389 branch store_ble_rec_data_common 
+
+nvram_find_addr_from_bd_list:
+638e 204031d4 call disable_usr 
+638f 6800c2be fetch 1 ,mem_nv_data_number 
+6390 207a0000 rtn blank 
+6391 6801470b fetch 2 ,mem_ui_state_map 
+6392 c28063a3 bbit1 ui_state_bt_connected ,find_addr_from_bd_list_spp_mode 
+
+find_addr_from_bd_list_ble_mode:
+6393 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+6394 c000639c beq master_public_addr ,find_addr_from_bd_list_static_addr 
+6395 68008377 fetch 1 ,mem_le_plap + 5 
+6396 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+6397 2020e39c branch find_addr_from_bd_list_static_addr ,true 
+6398 2fe18040 compare 0x40 ,pdata ,0xc0 
+6399 2020e3a1 branch find_addr_from_bd_list_random_addr ,true 
+639a 2fe18000 compare 0x00 ,pdata ,0xc0 
+639b 2020e39f branch find_addr_from_bd_list_random_non_resolvable_private_address ,true 
+
+find_addr_from_bd_list_static_addr:
+639c 7001a835 jam rec_4_mode_static_address ,mem_temp_reconn_record 
+639d 68030372 fetch 6 ,mem_le_plap 
+639e 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_random_non_resolvable_private_address:
+639f 7001a837 jam rec_4_mode_random_non_resolvable_private_address ,mem_temp_reconn_record 
+63a0 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_random_addr:
+63a1 7001a836 jam rec_4_mode_random_resolvable_private_address ,mem_temp_reconn_record 
+63a2 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_spp_mode:
+63a3 79200025 set1 mark_ext_patch ,mark 
+63a4 44c3c030 bpatch patch30_7 ,mem_patch30 
+63a5 7001a833 jam rec_3_mode ,mem_temp_reconn_record 
+63a6 68030040 fetch 6 ,mem_plap 
+
+find_addr_from_bd_list_common:
+63a7 600301a9 store 6 ,mem_temp_reconn_record + 1 
+63a8 680142bc fetch 2 ,mem_nv_data_ptr 
+63a9 efe88000 ifetcht 1 ,pdata 
+63aa 1fe0fe01 pincrease 1 
+63ab 600101af store 2 ,mem_list_item_ptr 
+63ac 600881a7 storet 1 ,mem_select_list_item 
+63ad 6800c2be fetch 1 ,mem_nv_data_number 
+63ae 1fe22600 icopy regc 
+
+nvram_find_addr_from_list:
+63af 680101af fetch 2 ,mem_list_item_ptr 
+63b0 1fe22200 copy pdata ,rega 
+63b1 204063bf call nvram_find_addr_from_list_compare 
+63b2 20740000 rtn user 
+63b3 680901af fetcht 2 ,mem_list_item_ptr 
+63b4 18408422 increase nv_data_len ,temp 
+63b5 600901af storet 2 ,mem_list_item_ptr 
+63b6 184085ff increase -1 ,temp 
+63b7 e8408000 ifetch 1 ,temp 
+63b8 600081a7 store 1 ,mem_select_list_item 
+63b9 1a60a7ff increase -1 ,regc 
+63ba 2422e3af nbranch nvram_find_addr_from_list ,zero 
+63bb 6800c2be fetch 1 ,mem_nv_data_number 
+63bc 1fe0ffff pincrease decreased_one 
+63bd 600081a7 store 1 ,mem_select_list_item 
+63be 20600000 rtn 
+
+nvram_find_addr_from_list_compare:
+63bf 680081a8 fetch 1 ,mem_temp_reconn_record 
+63c0 c099e3c6 bne rec_3_mode ,find_addr_from_list_compare_ble_mode 
+
+find_master_addr_from_list_compare:
+63c1 da4001a8 arg mem_temp_reconn_record ,regb 
+63c2 df200007 arg 7 ,loopcnt 
+63c3 20407f55 call string_compare 
+63c4 2022e4c0 branch enable_usr ,zero 
+63c5 20600000 rtn 
+
+find_addr_from_list_compare_ble_mode:
+63c6 c01b63c9 beq rec_4_mode_random_resolvable_private_address ,find_irk_form_list_compare 
+63c7 c01be3e4 beq rec_4_mode_random_non_resolvable_private_address ,find_ediv_form_list_compare 
+63c8 202063c1 branch find_master_addr_from_list_compare 
+
+find_irk_form_list_compare:
+63c9 ea288000 ifetcht 1 ,rega 
+63ca 98467c00 isub temp ,null 
+63cb 24628000 nrtn zero 
+63cc d8a009e1 arg mem_le_prand ,contw 
+63cd df200010 arg 16 ,loopcnt 
+63ce 20407e9f call clear_mem 
+63cf 68018375 fetch 3 ,mem_le_plap + 3 
+63d0 600189e1 store 3 ,mem_le_prand 
+63d1 204063db call genernate_master_macaddress 
+63d2 680109fe fetch 2 ,mem_le_aes_128 + 13 
+63d3 1ff0fe00 byteswap pdata ,pdata 
+63d4 1fed0400 lshift8 pdata ,temp 
+63d5 e8c08000 ifetch 1 ,contr 
+63d6 9840fe00 iadd temp ,pdata 
+63d7 68098372 fetcht 3 ,mem_le_plap 
+63d8 98467c00 isub temp ,null 
+63d9 2022e4c0 branch enable_usr ,zero 
+63da 20600000 rtn 
+
+genernate_master_macaddress:
+63db d8c009e1 arg mem_le_prand ,contr 
+63dc 204071af call load_data128 
+63dd ea208000 ifetch 1 ,rega 
+63de 204071b0 call load_regext 
+63df 18006c38 force 0x38 ,aes_ctrl 
+63e0 18006c00 force 0x0 ,aes_ctrl 
+63e1 20407145 call wait_aes 
+63e2 d8a009f1 arg mem_le_aes_128 ,contw 
+63e3 202071c0 branch store_aes_result 
+
+find_ediv_form_list_compare:
+63e4 ea288000 ifetcht 1 ,rega 
+63e5 98467c00 isub temp ,null 
+63e6 24628000 nrtn zero 
+63e7 18c22200 copy contr ,rega 
+63e8 18c0a608 add contr ,8 ,regc 
+63e9 da404573 arg mem_le_rand ,regb 
+63ea df200008 arg 8 ,loopcnt 
+63eb 20407f55 call string_compare 
+63ec 2022e4c0 branch enable_usr ,zero 
+63ed 1a622200 copy regc ,rega 
+63ee da40457b arg mem_le_irk ,regb 
+63ef df200008 arg 8 ,loopcnt 
+63f0 20407f55 call string_compare 
+63f1 2022e4c0 branch enable_usr ,zero 
+63f2 20600000 rtn 
+
+check_nvram:
+63f3 680142bc fetch 2 ,mem_nv_data_ptr 
+63f4 efe88000 ifetcht 1 ,pdata 
+63f5 1fe0fe22 pincrease nv_data_len 
+63f6 efe08000 ifetch 1 ,pdata 
+63f7 98467c00 isub temp ,null 
+63f8 20600000 rtn 
+
+init_device_list:
+63f9 6800c2be fetch 1 ,mem_nv_data_number 
+63fa 1fe27200 icopy loopcnt 
+63fb 680942bc fetcht 2 ,mem_nv_data_ptr 
+63fc 58000000 setarg 0 
+
+init_device_list_loop:
+63fd e0408000 istore 1 ,temp 
+63fe 18408422 increase nv_data_len ,temp 
+63ff 1fe0fe01 pincrease 1 
+6400 c20063fd loop init_device_list_loop 
+6401 20600000 rtn 
+
+load_device_list:
+6402 79200025 set1 mark_ext_patch ,mark 
+6403 44c44031 bpatch patch31_0 ,mem_patch31 
+6404 2040638e call nvram_find_addr_from_bd_list 
+6405 2434640a nbranch clear_key_exists ,user 
+6406 1a208c0a add rega ,10 ,contr 
+6407 d8a04261 arg mem_link_key ,contw 
+6408 20407e87 call memcpy16 
+6409 202064b1 branch check_link_key_load 
+
+clear_key_exists:
+640a 70425d00 jam 0 ,mem_link_key_exists 
+640b 20600000 rtn 
+
+load_device_list_mode_4:
+640c 6804c571 fetch 9 ,mem_le_ediv 
+640d 203a642c branch clear_ltk_exists ,blank 
+640e 2040638e call nvram_find_addr_from_bd_list 
+640f 2434642c nbranch clear_ltk_exists ,user 
+6410 680101af fetch 2 ,mem_list_item_ptr 
+6411 1fe08c01 add pdata ,1 ,contr 
+6412 d8a0457b arg mem_le_irk ,contw 
+6413 20407e87 call memcpy16 
+6414 d8a044a2 arg mem_le_ltk ,contw 
+6415 20407e87 call memcpy16 
+6416 7044b201 jam 1 ,mem_ltk_exists 
+6417 20600000 rtn 
+
+load_device_list_mode_4_shutter:
+6418 68014571 fetch 2 ,mem_le_ediv 
+6419 243a641c nbranch load_device_list_mode_4_shutter_label ,blank 
+641a 68034573 fetch 6 ,mem_le_rand 
+641b 203a642b branch clear_ltk_exists_iphone_lost_ltk ,blank 
+
+load_device_list_mode_4_shutter_label:
+641c 7048c603 jam ltk_not_lost ,mem_ltk_states 
+641d 58112233 setarg 0x112233 
+641e 6001c4a2 store 3 ,mem_le_ltk 
+641f 58445566 setarg 0x445566 
+6420 e0a18000 istore 3 ,contw 
+6421 58778899 setarg 0x778899 
+6422 e0a18000 istore 3 ,contw 
+6423 58001122 setarg 0x001122 
+6424 e0a18000 istore 3 ,contw 
+6425 58334455 setarg 0x334455 
+6426 e0a18000 istore 3 ,contw 
+6427 58000066 setarg 0x66 
+6428 e0a08000 istore 1 ,contw 
+6429 7044b201 jam 1 ,mem_ltk_exists 
+642a 20600000 rtn 
+
+clear_ltk_exists_iphone_lost_ltk:
+642b 7048c601 jam iphone_lost_ltk ,mem_ltk_states 
+
+clear_ltk_exists:
+642c 7044b200 jam 0 ,mem_ltk_exists 
+642d 20600000 rtn 
+
+eeprom_store_le_reconn_info:
+642e 68030372 fetch 6 ,mem_le_plap 
+642f 600301a9 store 6 ,mem_temp_lap 
+6430 7001a834 jam rec_4_mode ,mem_record_bt_mode 
+6431 20206435 branch eeprom_store_reconn_info 
+
+eeprom_store_bd_reconn_info:
+6432 68030040 fetch 6 ,mem_plap 
+6433 600301a9 store 6 ,mem_temp_lap 
+6434 7001a833 jam rec_3_mode ,mem_record_bt_mode 
+
+eeprom_store_reconn_info:
+6435 79200025 set1 mark_ext_patch ,mark 
+6436 44c4c031 bpatch patch31_1 ,mem_patch31 
+6437 6800c132 fetch 1 ,mem_device_option 
+6438 c005635a beq dvc_op_module ,check_51cmd_update_device_record 
+6439 20406463 call eeprom_store_remote_bdaddr 
+643a 2040645f call eeprom_store_last_record_index 
+643b 680081a8 fetch 1 ,mem_record_bt_mode 
+643c c01a643f beq rec_4_mode ,eeprom_store_rec_4_mode 
+643d c019e48b beq rec_3_mode ,eeprom_store_link_key 
+643e 20600000 rtn 
+
+eeprom_store_rec_4_mode:
+643f 20406489 call eeprom_store_le_ltl 
+6440 20206472 branch eeprom_store_le_local_addr 
+
+eeprom_load_reconn_info:
+6441 79200025 set1 mark_ext_patch ,mark 
+6442 44c54031 bpatch patch31_2 ,mem_patch31 
+6443 2040644d call eeprom_load_reconn_bdaddr 
+6444 680081a7 fetch 1 ,mem_select_list_item 
+6445 c17f8000 rtneq 0xff 
+6446 680301a9 fetch 6 ,mem_temp_lap 
+6447 60034273 store 6 ,mem_hci_plap 
+6448 680081a8 fetch 1 ,mem_record_bt_mode 
+6449 6000c2b5 store 1 ,mem_xrecord_mode 
+644a c019e451 beq rec_3_mode ,eeprom_load_rec_3_mode 
+644b c01a6453 beq rec_4_mode ,eeprom_load_rec_4_mode 
+644c 20600000 rtn 
+
+eeprom_load_reconn_bdaddr:
+644d 2040645b call eeprom_load_last_record_index 
+644e 680081a7 fetch 1 ,mem_select_list_item 
+644f c17f8000 rtneq 0xff 
+6450 2020647a branch eeprom_load_remote_bdaddr 
+
+eeprom_load_rec_3_mode:
+6451 20406492 call eeprom_load_link_key 
+6452 202064b1 branch check_link_key_load 
+
+eeprom_load_rec_4_mode:
+6453 20406490 call eeprom_load_ltk_key 
+6454 202064b7 branch check_ltk_load 
+
+eeprom_erase_reconn_info:
+6455 79200025 set1 mark_ext_patch ,mark 
+6456 44c64031 bpatch patch31_4 ,mem_patch31 
+6457 58000000 setarg 0x0 
+6458 60018040 store 3 ,mem_plap 
+6459 e0a18000 istore 3 ,contw 
+645a 20206463 branch eeprom_store_remote_bdaddr 
+
+eeprom_load_last_record_index:
+645b d8400001 arg 1 ,temp 
+645c da2001a7 arg mem_select_list_item ,rega 
+645d da40001c arg eeprom_last_record ,regb 
+645e 20206245 branch iicd_read_eep_data 
+
+eeprom_store_last_record_index:
+645f d8400001 arg 1 ,temp 
+6460 da2001a7 arg mem_select_list_item ,rega 
+6461 da40001c arg eeprom_last_record ,regb 
+6462 2020626f branch iicd_write_eep_data 
+
+eeprom_store_remote_bdaddr:
+6463 79200025 set1 mark_ext_patch ,mark 
+6464 44c6c031 bpatch patch31_5 ,mem_patch31 
+6465 20406497 call eeprom_load_bdaddr_list 
+6466 78547c00 disable user 
+6467 2040649b call find_addr_from_bd_list 
+6468 20740000 rtn user 
+
+eeprom_store_remote_addr_unfind:
+6469 7001a700 jam 0 ,mem_select_list_item 
+646a 680301a9 fetch 6 ,mem_temp_lap 
+646b 60030184 store 6 ,mem_bdaddr_list_buff + 1 
+646c 680081a8 fetch 1 ,mem_record_bt_mode 
+646d 60008183 store 1 ,mem_bdaddr_list_buff 
+646e d840001c arg 28 ,temp 
+646f da200183 arg mem_bdaddr_list_buff ,rega 
+6470 da400000 arg eeprom_bdaddr_list ,regb 
+6471 2020626f branch iicd_write_eep_data 
+
+eeprom_store_le_local_addr:
+6472 d8400006 arg 6 ,temp 
+6473 da20453e arg mem_le_lap ,rega 
+6474 da40001d arg eeprom_le_reconn_local_addr ,regb 
+6475 2020626f branch iicd_write_eep_data 
+
+eeprom_load_le_loacal_addr:
+6476 d8400006 arg 6 ,temp 
+6477 da20453e arg mem_le_lap ,rega 
+6478 da40001d arg eeprom_le_reconn_local_addr ,regb 
+6479 20206245 branch iicd_read_eep_data 
+
+eeprom_load_remote_bdaddr:
+647a 79200025 set1 mark_ext_patch ,mark 
+647b 44c74031 bpatch patch31_6 ,mem_patch31 
+647c d8400007 arg 7 ,temp 
+647d da2001a8 arg mem_temp_reconn_record ,rega 
+647e da400000 arg eeprom_bdaddr_list ,regb 
+647f 680081a7 fetch 1 ,mem_select_list_item 
+6480 1feffe07 mul32 pdata ,7 ,pdata 
+6481 9a40a400 iadd regb ,regb 
+6482 20206245 branch iicd_read_eep_data 
+
+eeprom_linkkey_addr:
+6483 d8400010 arg 0x10 ,temp 
+6484 da400023 arg eeprom_linkkey_list ,regb 
+6485 680081a7 fetch 1 ,mem_select_list_item 
+6486 1ff27e00 lshift4 pdata ,pdata 
+6487 9a40a400 iadd regb ,regb 
+6488 20600000 rtn 
+
+eeprom_store_le_ltl:
+6489 da2044a2 arg mem_le_ltk ,rega 
+648a 2020648c branch eeprom_store_link_key_common 
+
+eeprom_store_link_key:
+648b da204261 arg mem_link_key ,rega 
+
+eeprom_store_link_key_common:
+648c 79200025 set1 mark_ext_patch ,mark 
+648d 44c7c031 bpatch patch31_7 ,mem_patch31 
+648e 20406483 call eeprom_linkkey_addr 
+648f 2020626f branch iicd_write_eep_data 
+
+eeprom_load_ltk_key:
+6490 da2044a2 arg mem_le_ltk ,rega 
+6491 20206493 branch eeprom_load_link_key_common 
+
+eeprom_load_link_key:
+6492 da204261 arg mem_link_key ,rega 
+
+eeprom_load_link_key_common:
+6493 79200025 set1 mark_ext_patch ,mark 
+6494 44c84032 bpatch patch32_0 ,mem_patch32 
+6495 20406483 call eeprom_linkkey_addr 
+6496 20206245 branch iicd_read_eep_data 
+
+eeprom_load_bdaddr_list:
+6497 d840001c arg 28 ,temp 
+6498 da20018a arg mem_bdaddr_list_buff + 7 ,rega 
+6499 da400000 arg eeprom_bdaddr_list ,regb 
+649a 20206245 branch iicd_read_eep_data 
+
+find_addr_from_bd_list:
+649b 79200025 set1 mark_ext_patch ,mark 
+649c 44c8c032 bpatch patch32_1 ,mem_patch32 
+649d 5800018a setarg mem_bdaddr_list_buff + 7 
+649e 600101af store 2 ,mem_list_item_ptr 
+649f 7001a700 jam 0 ,mem_select_list_item 
+64a0 df200004 arg 4 ,loopcnt 
+
+find_addr_from_list:
+64a1 1f227e00 copy loopcnt ,pdata 
+64a2 600089be store 1 ,mem_pdatatemp 
+64a3 680101af fetch 2 ,mem_list_item_ptr 
+64a4 1fe22200 copy pdata ,rega 
+64a5 204064bb call find_addr_from_list_compare 
+64a6 20740000 rtn user 
+64a7 680101af fetch 2 ,mem_list_item_ptr 
+64a8 1fe0fe07 increase 7 ,pdata 
+64a9 600101af store 2 ,mem_list_item_ptr 
+64aa 680081a7 fetch 1 ,mem_select_list_item 
+64ab 1fe0fe01 increase 1 ,pdata 
+64ac 600081a7 store 1 ,mem_select_list_item 
+64ad 680089be fetch 1 ,mem_pdatatemp 
+64ae 1fe27200 copy pdata ,loopcnt 
+64af c20064a1 loop find_addr_from_list 
+64b0 20600000 rtn 
+
+check_link_key_load:
+64b1 68044261 fetch 8 ,mem_link_key 
+64b2 680c4269 fetcht 8 ,mem_link_key + 8 
+64b3 9841fe00 ior temp ,pdata 
+64b4 207a0000 rtn blank 
+64b5 70425d01 jam 1 ,mem_link_key_exists 
+64b6 20600000 rtn 
+
+check_ltk_load:
+64b7 68034273 fetch 6 ,mem_hci_plap 
+64b8 207a0000 rtn blank 
+64b9 7044b201 jam 1 ,mem_ltk_exists 
+64ba 20600000 rtn 
+
+find_addr_from_list_compare:
+64bb da4001a8 arg mem_temp_reconn_record ,regb 
+64bc df200007 arg 7 ,loopcnt 
+64bd 20407f55 call string_compare 
+64be 2022e4c0 branch enable_usr ,zero 
+64bf 20600000 rtn 
+
+enable_usr:
+64c0 78347c00 enable user 
+64c1 20600000 rtn 
+
+gpio_set_wake_by_current_state:
+64c2 79200025 set1 mark_ext_patch ,mark 
+64c3 44c94032 bpatch patch32_2 ,mem_patch32 
+64c4 79200407 set1 7 ,temp 
+64c5 204064f5 call gpio_get_bit 
+64c6 7d208407 nsetflag true ,7 ,temp 
+
+gpio_set_wake:
+64c7 79200025 set1 mark_ext_patch ,mark 
+64c8 44c9c032 bpatch patch32_3 ,mem_patch32 
+64c9 284c0007 isolate0 7 ,temp 
+64ca 18410e1f and temp ,0x1f ,queue 
+64cb 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+64cc f920fe00 qsetflag true ,pdata 
+64cd 600200a0 store 4 ,mem_gpio_wakeup_low 
+64ce 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+64cf fd20fe00 nqsetflag true ,pdata 
+64d0 600200a4 store 4 ,mem_gpio_wakeup_high 
+64d1 20600000 rtn 
+
+gpio_clr_wake:
+64d2 79200025 set1 mark_ext_patch ,mark 
+64d3 44ca4032 bpatch patch32_4 ,mem_patch32 
+64d4 284c0007 isolate0 7 ,temp 
+64d5 18410e1f and temp ,0x1f ,queue 
+64d6 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+64d7 f93ffe00 qset0 pdata 
+64d8 600200a0 store 4 ,mem_gpio_wakeup_low 
+64d9 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+64da f93ffe00 qset0 pdata 
+64db 600200a4 store 4 ,mem_gpio_wakeup_high 
+64dc 20600000 rtn 
+
+gpio_config_input_nowake:
+64dd 204064d2 call gpio_clr_wake 
+64de 202064e0 branch gpio_config_input_without_wake 
+
+gpio_config_input:
+64df 2455e4c7 ncall gpio_set_wake ,wake 
+
+gpio_config_input_without_wake:
+64e0 d8a0807c arg core_gpio_pd0 ,contw 
+64e1 20406504 call gpio_set_bit 
+64e2 79400407 setflip gpio_active_bit ,temp 
+64e3 d8a08078 arg core_gpio_pu0 ,contw 
+64e4 20406504 call gpio_set_bit 
+64e5 793f8407 set0 gpio_active_bit ,temp 
+64e6 d8a08070 arg core_gpio_oe0 ,contw 
+64e7 20206504 branch gpio_set_bit 
+
+gpio_config_output:
+64e8 79400407 setflip gpio_active_bit ,temp 
+64e9 20406503 call gpio_out 
+
+gpio_config_output0:
+64ea 79200407 set1 gpio_active_bit ,temp 
+64eb d8a08070 arg core_gpio_oe0 ,contw 
+64ec 20206504 branch gpio_set_bit 
+
+gpio_common:
+64ed 18410e07 and temp ,0x07 ,queue 
+64ee 18497e00 rshift3 temp ,pdata 
+64ef 1fe17e03 and_into 3 ,pdata 
+64f0 98a08a00 iadd contw ,contw 
+64f1 e8a08000 ifetch 1 ,contw 
+64f2 20600000 rtn 
+
+gpio_check_active:
+64f3 d8a08074 arg core_gpio_out0 ,contw 
+64f4 202064f6 branch get_bit_common 
+
+gpio_get_bit:
+64f5 d8a0811c arg core_gpio_in ,contw 
+
+get_bit_common:
+64f6 204064ed call gpio_common 
+64f7 284ffe07 isolate1 gpio_active_bit ,temp 
+64f8 2020e4fb branch gpio_get_bit_reverse ,true 
+64f9 afec0000 qisolate0 pdata 
+64fa 20600000 rtn 
+
+gpio_get_bit_reverse:
+64fb afefffff qisolate1 pdata 
+64fc 20600000 rtn 
+
+gpio_out_inactive:
+64fd 2fcffe07 isolate1 7 ,null 
+64fe 20206500 branch gpio_out_flag 
+
+gpio_out_active:
+64ff 2fcc0007 isolate0 7 ,null 
+
+gpio_out_flag:
+6500 58000000 setarg 0 
+6501 7d20fe07 nsetflag true ,gpio_active_bit ,pdata 
+6502 98428400 ixor temp ,temp 
+
+gpio_out:
+6503 d8a08074 arg core_gpio_out0 ,contw 
+
+gpio_set_bit:
+6504 204064ed call gpio_common 
+6505 284ffe07 isolate1 gpio_active_bit ,temp 
+6506 f920fe00 qsetflag true ,pdata 
+6507 e0a08000 istore 1 ,contw 
+6508 20600000 rtn 
+
+gpio_set_before_lpm_common:
+6509 da3fffff arg -1 ,rega 
+650a 68108081 hfetch 1 ,core_gpio_sel1 
+650b 2feffe01 isolate1 1 ,pdata 
+650c 2040e54d call neglact4_from_23_pin ,true 
+650d 1fe12403 and pdata ,0x3 ,regb 
+650e 1a467c01 sub regb ,1 ,null 
+650f 2042e54f call neglact2_form_25_pin ,zero 
+6510 2feffe02 isolate1 2 ,pdata 
+6511 2040e549 call neglect2_from_6_pin ,true 
+6512 2feffe03 isolate1 3 ,pdata 
+6513 2040e54b call neglect4_from_9_pin ,true 
+6514 2feffe05 isolate1 5 ,pdata 
+6515 2040e551 call neglact2_form_27_pin ,true 
+6516 2feffe06 isolate1 6 ,pdata 
+6517 d8e00004 arg 4 ,queue 
+6518 2040e555 call neglact_1_pin ,true 
+6519 7d20a204 nsetflag true ,4 ,rega 
+651a 2feffe07 isolate1 7 ,pdata 
+651b d8e00005 arg 5 ,queue 
+651c 2040e555 call neglact_1_pin ,true 
+651d 68108082 hfetch 1 ,core_gpio_sel2 
+651e 2feffe00 isolate1 0 ,pdata 
+651f d8e00003 arg 3 ,queue 
+6520 2040e555 call neglact_1_pin ,true 
+6521 68188080 hfetcht 1 ,core_gpio_sel 
+6522 284ffe00 isolate1 0 ,temp 
+6523 d8e00005 arg 5 ,queue 
+6524 2040e555 call neglact_1_pin ,true 
+6525 9841fe00 ior temp ,pdata 
+6526 2feffe01 isolate1 1 ,pdata 
+6527 d8e00006 arg 6 ,queue 
+6528 2040e555 call neglact_1_pin ,true 
+6529 2feffe02 isolate1 2 ,pdata 
+652a d8e00007 arg 7 ,queue 
+652b 2040e555 call neglact_1_pin ,true 
+652c 2feffe03 isolate1 3 ,pdata 
+652d d8e00012 arg 18 ,queue 
+652e 2040e555 call neglact_1_pin ,true 
+652f 2feffe04 isolate1 4 ,pdata 
+6530 d8e00013 arg 19 ,queue 
+6531 2040e555 call neglact_1_pin ,true 
+6532 2feffe05 isolate1 5 ,pdata 
+6533 d8e00014 arg 20 ,queue 
+6534 2040e555 call neglact_1_pin ,true 
+6535 2feffe06 isolate1 6 ,pdata 
+6536 d8e00015 arg 21 ,queue 
+6537 2040e555 call neglact_1_pin ,true 
+6538 2feffe07 isolate1 7 ,pdata 
+6539 d8e00016 arg 22 ,queue 
+653a 2040e555 call neglact_1_pin ,true 
+653b 68108062 hfetch 1 ,core_uart_ctrl 
+653c 2feffe04 isolate1 4 ,pdata 
+653d 2040e553 call neglact2_form_2_pin ,true 
+653e 79200025 set1 mark_ext_patch ,mark 
+653f 44cac032 bpatch patch32_5 ,mem_patch32 
+6540 68120078 hfetch 4 ,core_gpio_pu0 
+6541 681a007c hfetcht 4 ,core_gpio_pd0 
+6542 9841fe00 ior temp ,pdata 
+6543 1fe47e00 invert pdata ,pdata 
+6544 9a217e00 iand rega ,pdata 
+6545 681a007c hfetcht 4 ,core_gpio_pd0 
+6546 9841fe00 ior temp ,pdata 
+6547 6012007c hstore 4 ,core_gpio_pd0 
+6548 20600000 rtn 
+
+neglect2_from_6_pin:
+6549 d8e00006 arg 6 ,queue 
+654a 20206559 branch neglect_2_pin 
+
+neglect4_from_9_pin:
+654b d8e00009 arg 9 ,queue 
+654c 20206557 branch neglact_4_pin 
+
+neglact4_from_23_pin:
+654d d8e00017 arg 23 ,queue 
+654e 20206557 branch neglact_4_pin 
+
+neglact2_form_25_pin:
+654f d8e00019 arg 25 ,queue 
+6550 20206559 branch neglect_2_pin 
+
+neglact2_form_27_pin:
+6551 d8e0001b arg 27 ,queue 
+6552 20206559 branch neglect_2_pin 
+
+neglact2_form_2_pin:
+6553 d8e00002 arg 2 ,queue 
+6554 20206559 branch neglect_2_pin 
+
+neglact_1_pin:
+6555 df200001 arg 1 ,loopcnt 
+6556 2020655a branch neglect_pin_loop 
+
+neglact_4_pin:
+6557 df200004 arg 4 ,loopcnt 
+6558 2020655a branch neglect_pin_loop 
+
+neglect_2_pin:
+6559 df200002 arg 2 ,loopcnt 
+
+neglect_pin_loop:
+655a f93fa200 qset0 rega 
+655b 18e08e01 increase 1 ,queue 
+655c c200655a loop neglect_pin_loop 
+655d 20600000 rtn 
+
+gpio_cfg_uart_tx_output:
+655e 2040656a call gpio_uart2gpio 
+655f d8400006 arg uart_wakeup_tx ,temp 
+6560 202064e8 branch gpio_config_output 
+
+gpio_pu_uart_tx:
+6561 2040655e call gpio_cfg_uart_tx_output 
+6562 d8400006 arg uart_wakeup_tx ,temp 
+6563 202064fd branch gpio_out_inactive 
+
+gpio_rx_config_input_with_pu:
+6564 2040656a call gpio_uart2gpio 
+6565 68108078 hfetch 1 ,core_gpio_pu0 
+6566 79207e07 set1 uart_wakeup_rx ,pdata 
+6567 60108078 hstore 1 ,core_gpio_pu0 
+6568 d8400007 arg uart_wakeup_rx ,temp 
+6569 202064df branch gpio_config_input 
+
+gpio_uart2gpio:
+656a 68108081 hfetch 1 ,core_gpio_sel1 
+656b 1fe17efb and_into 0xfb ,pdata 
+656c 60108081 hstore 1 ,core_gpio_sel1 
+656d 20600000 rtn 
+
+gpio_check_uart_state:
+656e 68108081 hfetch 1 ,core_gpio_sel1 
+656f 2feffe02 isolate1 2 ,pdata 
+6570 20600000 rtn 
+
+load_chip_option:
+6571 204062c4 call otp_enable_chgpump 
+6572 580007e0 setarg otp_chip_functions 
+6573 da2041f0 arg mem_chip_functions ,rega 
+6574 d8400002 arg 0x02 ,temp 
+6575 2040630d call otpd_read_data 
+6576 202062c7 branch otp_disable_chgpump 
+
+adc_init_data:
+6577 79200025 set1 mark_ext_patch ,mark 
+6578 44cb4032 bpatch patch32_6 ,mem_patch32 
+6579 204062c4 call otp_enable_chgpump 
+657a 580007e2 setarg otp_adc_io_0_5v_addr 
+657b da2042bf arg mem_0_5_adc_io_data ,rega 
+657c d840000e arg 14 ,temp 
+657d 2040630d call otpd_read_data 
+657e 204062c7 call otp_disable_chgpump 
+657f 6800c2cf fetch 1 ,mem_adc_config_flag 
+6580 c2806584 bbit1 adc_config_vinlpm ,adc_init_data_vinlpm 
+6581 c280e598 bbit1 adc_config_hvin ,adc_init_data_hvin 
+6582 c28165ac bbit1 adc_config_gpio ,adc_init_data_io 
+6583 20600000 rtn 
+
+adc_init_data_vinlpm:
+6584 680942cb fetcht 2 ,mem_otp_adc_flag 
+6585 5800aa55 setarg otp_adc_flag 
+6586 98467c00 isub temp ,null 
+6587 2022e58d branch adc_check_data_vinlpm ,zero 
+6588 58004dfa setarg 0x4dfa 
+6589 600142c9 store 2 ,mem_3v_adc_vinlpm_data 
+658a 58004894 setarg 0x4894 
+658b 600142c3 store 2 ,mem_2v_adc_vinlpm_data 
+658c 20206595 branch set_vdd_reference_voltage_1v 
+
+adc_check_data_vinlpm:
+658d 680142c9 fetch 2 ,mem_3v_adc_vinlpm_data 
+658e 243a6591 nbranch adc_check_2v_vinlpm ,blank 
+658f 58004dfa setarg 0x4dfa 
+6590 600142c9 store 2 ,mem_3v_adc_vinlpm_data 
+
+adc_check_2v_vinlpm:
+6591 680142c3 fetch 2 ,mem_2v_adc_vinlpm_data 
+6592 243a6595 nbranch set_vdd_reference_voltage_1v ,blank 
+6593 58004894 setarg 0x4894 
+6594 600142c3 store 2 ,mem_2v_adc_vinlpm_data 
+
+set_vdd_reference_voltage_1v:
+6595 58000064 setarg 100 
+6596 600142cd store 2 ,mem_reference_voltage 
+6597 20600000 rtn 
+
+adc_init_data_hvin:
+6598 680942cb fetcht 2 ,mem_otp_adc_flag 
+6599 5800aa55 setarg otp_adc_flag 
+659a 98467c00 isub temp ,null 
+659b 2022e5a1 branch adc_check_data_hvin ,zero 
+659c 58005932 setarg 0x5932 
+659d 600142c7 store 2 ,mem_5v_adc_hvin_data 
+659e 58004323 setarg 0x4323 
+659f 600142c1 store 2 ,mem_1v_adc_hvin_data 
+65a0 202065a9 branch set_vdd_reference_voltage_4v 
+
+adc_check_data_hvin:
+65a1 680142c7 fetch 2 ,mem_5v_adc_hvin_data 
+65a2 243a65a5 nbranch adc_check_1v_hvin ,blank 
+65a3 58005932 setarg 0x5932 
+65a4 600142c7 store 2 ,mem_5v_adc_hvin_data 
+
+adc_check_1v_hvin:
+65a5 680142c1 fetch 2 ,mem_1v_adc_hvin_data 
+65a6 243a65a9 nbranch set_vdd_reference_voltage_4v ,blank 
+65a7 58004323 setarg 0x4323 
+65a8 600142c1 store 2 ,mem_1v_adc_hvin_data 
+
+set_vdd_reference_voltage_4v:
+65a9 58000190 setarg 400 
+65aa 600142cd store 2 ,mem_reference_voltage 
+65ab 20600000 rtn 
+
+adc_init_data_io:
+65ac 680942cb fetcht 2 ,mem_otp_adc_flag 
+65ad 5800aa55 setarg otp_adc_flag 
+65ae 98467c00 isub temp ,null 
+65af 2022e5b5 branch adc_check_data_io ,zero 
+65b0 58006946 setarg 0x6946 
+65b1 600142c5 store 2 ,mem_1v_adc_io_data 
+65b2 58005377 setarg 0x5377 
+65b3 600142bf store 2 ,mem_0_5_adc_io_data 
+65b4 202065bd branch set_vdd_reference_voltage_0_5v 
+
+adc_check_data_io:
+65b5 680142c5 fetch 2 ,mem_1v_adc_io_data 
+65b6 243a65b9 nbranch adc_check_0_5v_io ,blank 
+65b7 58006946 setarg 0x6946 
+65b8 600142c5 store 2 ,mem_1v_adc_io_data 
+
+adc_check_0_5v_io:
+65b9 680142bf fetch 2 ,mem_0_5_adc_io_data 
+65ba 243a65bd nbranch set_vdd_reference_voltage_0_5v ,blank 
+65bb 58005377 setarg 0x5377 
+65bc 600142bf store 2 ,mem_0_5_adc_io_data 
+
+set_vdd_reference_voltage_0_5v:
+65bd 58000032 setarg 50 
+65be 600142cd store 2 ,mem_reference_voltage 
+65bf 20600000 rtn 
+
+adc_set_mode:
+65c0 6800c2cf fetch 1 ,mem_adc_config_flag 
+65c1 c28065c5 bbit1 adc_config_vinlpm ,adc_check_vinlpm 
+65c2 c280e5c7 bbit1 adc_config_hvin ,adc_check_hvin 
+65c3 c28165c9 bbit1 adc_config_gpio ,adc_check_gpio 
+65c4 20600000 rtn 
+
+adc_check_vinlpm:
+65c5 708971bf hjam 0xbf ,rf_adc_mode 
+65c6 202065cd branch read_adc 
+
+adc_check_hvin:
+65c7 708971af hjam 0xaf ,rf_adc_mode 
+65c8 202065cd branch read_adc 
+
+adc_check_gpio:
+65c9 7089718f hjam 0x8f ,rf_adc_mode 
+65ca 6800c2d0 fetch 1 ,mem_adc_channel 
+65cb 60108973 hstore 1 ,rf_adc_ch 
+65cc 202065cd branch read_adc 
+
+read_adc:
+65cd 79200025 set1 mark_ext_patch ,mark 
+65ce 44cbc032 bpatch patch32_7 ,mem_patch32 
+65cf 68108053 hfetch 1 ,core_uart_baud + 1 
+65d0 79207e07 set1 7 ,pdata 
+65d1 60108053 hstore 1 ,core_uart_baud + 1 
+65d2 68108973 hfetch 1 ,rf_adc_ch 
+65d3 1fe1fe30 or_into 0x30 ,pdata 
+65d4 60108973 hstore 1 ,rf_adc_ch 
+65d5 7089067c hjam 0x7c ,rfen_adc 
+65d6 708972aa hjam 0xaa ,rf_adc_gc 
+65d7 20001388 nop 5000 
+65d8 68190150 hfetcht 2 ,core_adc_sum 
+65d9 68108053 hfetch 1 ,core_uart_baud + 1 
+65da 793ffe07 set0 7 ,pdata 
+65db 60108053 hstore 1 ,core_uart_baud + 1 
+65dc 600942d1 storet 2 ,mem_adc_current_value 
+65dd 20600000 rtn 
+
+vdd_calculate_by_mode:
+65de 79200025 set1 mark_ext_patch ,mark 
+65df 44cc4033 bpatch patch33_0 ,mem_patch33 
+65e0 6800c2cf fetch 1 ,mem_adc_config_flag 
+65e1 c28065e5 bbit1 adc_config_vinlpm ,vdd_calculate_vinlpm 
+65e2 c280e5e9 bbit1 adc_config_hvin ,vdd_calculate_hvin 
+65e3 c28165ed bbit1 adc_config_gpio ,vdd_calculate_io 
+65e4 20600000 rtn 
+
+vdd_calculate_vinlpm:
+65e5 680142c9 fetch 2 ,mem_3v_adc_vinlpm_data 
+65e6 680942c3 fetcht 2 ,mem_2v_adc_vinlpm_data 
+65e7 da6000c8 arg 200 ,regc 
+65e8 202065f1 branch vdd_calculate 
+
+vdd_calculate_hvin:
+65e9 680142c7 fetch 2 ,mem_5v_adc_hvin_data 
+65ea 680942c1 fetcht 2 ,mem_1v_adc_hvin_data 
+65eb da600064 arg 100 ,regc 
+65ec 202065f1 branch vdd_calculate 
+
+vdd_calculate_io:
+65ed 680142c5 fetch 2 ,mem_1v_adc_io_data 
+65ee 680942bf fetcht 2 ,mem_0_5_adc_io_data 
+65ef da600032 arg 50 ,regc 
+65f0 202065f1 branch vdd_calculate 
+
+vdd_calculate:
+65f1 98462200 isub temp ,rega 
+65f2 680142d1 fetch 2 ,mem_adc_current_value 
+65f3 98467e00 isub temp ,pdata 
+65f4 242165fe nbranch vdd_calculate1 ,positive 
+65f5 680942cd fetcht 2 ,mem_reference_voltage 
+65f6 984fa400 imul32 temp ,regb 
+65f7 1a627e00 copy regc ,pdata 
+65f8 9a2ffe00 imul32 rega ,pdata 
+65f9 9a40fe00 iadd regb ,pdata 
+
+vdd_calculate2:
+65fa 9a26fc00 idiv rega 
+65fb 20407f53 call wait_div_end 
+65fc 1807fe00 quotient pdata 
+65fd 20600000 rtn 
+
+vdd_calculate1:
+65fe 18427e00 copy temp ,pdata 
+65ff 680942d1 fetcht 2 ,mem_adc_current_value 
+6600 98467e00 isub temp ,pdata 
+6601 680942cd fetcht 2 ,mem_reference_voltage 
+6602 984fa400 imul32 temp ,regb 
+6603 1a627e00 copy regc ,pdata 
+6604 9a2ffe00 imul32 rega ,pdata 
+6605 9a467e00 isub regb ,pdata 
+6606 202065fa branch vdd_calculate2 
+
+rfcomm_init:
+6607 20758000 rtn wake 
+6608 7045ff00 jam 0 ,mem_rfcomm_send_more_pkt 
+6609 70041c03 jam bits9600 ,memremoterpnbitrate 
+660a 70041d03 jam databits8 ,memremoteprndatabits 
+660b 70042111 jam 0x11 ,memremoteprnxon 
+660c 70042213 jam 0x13 ,memremoteprnxoff 
+660d 58000000 setarg 0 
+660e 6001841e store 3 ,memremoteprnstopbit 
+660f 6000c2e4 store 1 ,mem_spp_state 
+6610 70470a00 jam 0 ,memui_reconnect_mode 
+
+rfcomm_init_spp:
+6611 79200025 set1 mark_ext_patch ,mark 
+6612 44ccc033 bpatch patch33_1 ,mem_patch33 
+6613 58000000 setarg 0 
+6614 6000c2e4 store 1 ,mem_spp_state 
+6615 6000c5fc store 1 ,mem_remote_spp_channel 
+6616 6000c5f5 store 1 ,mem_pn_dlci 
+6617 6800c603 fetch 1 ,mem_credit_flag 
+6618 c000e61b beq credit_enable ,rfcomm_init_spp_with_credit 
+6619 70460150 jam 0x50 ,mem_credit_given 
+661a 20600000 rtn 
+
+rfcomm_init_spp_with_credit:
+661b 70460100 jam 0x00 ,mem_credit_given 
+661c 20600000 rtn 
+
+set_cr_bit:
+661d 18418402 or_into 0x02 ,temp 
+661e 20600000 rtn 
+
+rfcomm_calculate_fcs_sabm:
+661f 18427e00 copy temp ,pdata 
+6620 1fedfe00 reverse pdata ,pdata 
+6621 6000c5fa store 1 ,memfcstemp3 
+6622 18007e3f force ini_tx_sabm ,pdata 
+6623 1fedfe00 reverse pdata ,pdata 
+6624 6000c5f9 store 1 ,memfcstemp2 
+6625 18007e01 force 0x01 ,pdata 
+6626 1fedfe00 reverse pdata ,pdata 
+6627 6000c5f8 store 1 ,memfcstemp1 
+6628 20406655 call caculate_fcs 
+6629 18427e00 copy temp ,pdata 
+662a 20600000 rtn 
+
+rfcomm_calculate_fcs_ua:
+662b 1fedfe00 reverse pdata ,pdata 
+662c 6000c5fa store 1 ,memfcstemp3 
+662d 18007e73 force rsp_tx_ua ,pdata 
+662e 1fedfe00 reverse pdata ,pdata 
+662f 6000c5f9 store 1 ,memfcstemp2 
+6630 18007e01 force 0x01 ,pdata 
+6631 1fedfe00 reverse pdata ,pdata 
+6632 6000c5f8 store 1 ,memfcstemp1 
+6633 20206655 branch caculate_fcs 
+
+rfcomm_calculate_fcs_dlci0:
+6634 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6635 203a6638 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+6636 58000070 setarg 0x70 
+6637 20600000 rtn 
+
+rfcomm_calculate_fcs_dlci0_res:
+6638 580000aa setarg 0xaa 
+6639 20600000 rtn 
+
+rfcomm_save_fcs_uih:
+663a 1fedfe00 reverse pdata ,pdata 
+663b 6000c5fa store 1 ,memfcstemp3 
+663c 18007eef force rsp_rx_uih ,pdata 
+663d 20406649 call caculate_uihdata_fcs 
+663e 68090426 fetcht 2 ,mem_contw_temp 
+663f 18420a00 copy temp ,contw 
+6640 e0a08000 istore 1 ,contw 
+6641 18a20400 copy contw ,temp 
+6642 60090426 storet 2 ,mem_contw_temp 
+6643 18007eff force rsp_rx_uih_wdata ,pdata 
+6644 20406649 call caculate_uihdata_fcs 
+6645 68090426 fetcht 2 ,mem_contw_temp 
+6646 18420a00 copy temp ,contw 
+6647 e0a08000 istore 1 ,contw 
+6648 20600000 rtn 
+
+caculate_uihdata_fcs:
+6649 1fedfe00 reverse pdata ,pdata 
+664a 6000c5f9 store 1 ,memfcstemp2 
+664b 680145f9 fetch 2 ,memfcstemp2 
+664c 1fed7e00 lshift8 pdata ,pdata 
+664d 60018423 store 3 ,mem_mod2div_temp 
+664e da200107 arg 0x107 ,rega 
+664f da40000f arg 0xf ,regb 
+6650 20406662 call mod2div 
+6651 1fe2fed7 xor_into 0xd7 ,pdata 
+6652 1fe47e00 invert pdata ,pdata 
+6653 1fedfe00 reverse pdata ,pdata 
+6654 20600000 rtn 
+
+caculate_fcs:
+6655 6801c5f8 fetch 3 ,memfcstemp1 
+6656 60018423 store 3 ,mem_mod2div_temp 
+6657 da200107 arg 0x107 ,rega 
+6658 da40000f arg 0xf ,regb 
+6659 20406662 call mod2div 
+665a 1fed7e00 lshift8 pdata ,pdata 
+665b da400007 arg 0x7 ,regb 
+665c 20406662 call mod2div 
+665d 1fe2fe2b xor_into 0x2b ,pdata 
+665e 1fe47e00 invert pdata ,pdata 
+665f 1fedfe00 reverse pdata ,pdata 
+6660 1fe20400 copy pdata ,temp 
+6661 20600000 rtn 
+
+mod2div:
+6662 da600000 arg 0 ,regc 
+6663 1a427200 copy regb ,loopcnt 
+6664 20407e43 call right_shift_n 
+6665 1fe20400 icopy temp 
+
+mod2div_loop:
+6666 18427e00 copy temp ,pdata 
+6667 1a63a600 lshift regc ,regc 
+6668 c304666b bbit0 8 ,mod2div_not_enough_reduction 
+6669 9a228400 ixor rega ,temp 
+666a 1a60a601 increase 1 ,regc 
+
+mod2div_not_enough_reduction:
+666b 18438400 lshift temp ,temp 
+666c 68018423 fetch 3 ,mem_mod2div_temp 
+666d 1a40a5ff increase -1 ,regb 
+666e 2a41feff compare 0xff ,regb ,0xff 
+666f 2020e675 branch mod2div_end ,true 
+6670 1a427200 copy regb ,loopcnt 
+6671 20407e43 call right_shift_n 
+6672 2feffe00 isolate1 0 ,pdata 
+6673 79208400 setflag true ,0 ,temp 
+6674 20206666 branch mod2div_loop 
+
+mod2div_end:
+6675 18437e00 rshift temp ,pdata 
+6676 20600000 rtn 
+
+get_rfcomm_snd_adss:
+6677 6808c5f5 fetcht 1 ,mem_pn_dlci 
+
+dlci_to_address_cmd:
+6678 184b8400 lshift2 temp ,temp 
+6679 79200400 set1 rfcomm_address_ext_len ,temp 
+667a 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+667b 245a661d ncall set_cr_bit ,blank 
+667c 6008843c storet 1 ,mem_rfcomm_send_adss 
+667d 20600000 rtn 
+
+channel_to_dlci:
+667e 18438400 lshift temp ,temp 
+667f 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6680 793a0400 setflag blank ,0 ,temp 
+6681 20600000 rtn 
+
+rfcomm_rx_process_dlci0_sabm:
+6682 6808842b fetcht 1 ,mem_current_channel 
+6683 70042dd7 jam 0xd7 ,mem_current_fcs 
+6684 204067c1 call rfcomm_send_ua 
+6685 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6686 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+6687 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+6688 6000c2e1 store 1 ,mem_rfcomm_state 
+6689 7045fb00 jam 0 ,mem_rfcomm_initiator 
+668a 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_dlci0_ua:
+668b 6800c2e1 fetch 1 ,mem_rfcomm_state 
+668c 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+668d 6000c2e1 store 1 ,mem_rfcomm_state 
+668e 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process:
+668f 79200025 set1 mark_ext_patch ,mark 
+6690 44cd4033 bpatch patch33_2 ,mem_patch33 
+6691 6800c70a fetch 1 ,memui_reconnect_mode 
+6692 c0006694 beq no_reconnection ,rfcomm_rx_process_remote_page 
+6693 20206755 branch rfcomm_rx_process_reconn 
+
+rfcomm_rx_process_remote_page:
+6694 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6695 1fe20c00 copy pdata ,contr 
+6696 204066bf call get_rfcomm_head_struct 
+6697 6800842b fetch 1 ,mem_current_channel 
+6698 c000669a beq 0 ,parse_dlci0_rp 
+6699 20206720 branch parse_uih_rp 
+
+parse_dlci0_rp:
+669a 79200025 set1 mark_ext_patch ,mark 
+669b 44cdc033 bpatch patch33_3 ,mem_patch33 
+669c 6800842c fetch 1 ,mem_current_frame_type 
+669d c01fe682 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+669e c039e68b beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+669f c077e6a2 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+66a0 c029e74d beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn_send_event 
+66a1 20600000 rtn 
+
+parse_dlci0_rp_uih:
+66a2 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+66a3 1fe20c00 copy pdata ,contr 
+66a4 204066ca call get_rfcomm_uih_head_struct 
+66a5 68008432 fetch 1 ,mem_uih_cmd_type 
+66a6 c020e6ac beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+66a7 c02066b4 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+66a8 c038e6ed beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+66a9 c03866f9 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+66aa c024e704 beq uih_param_cmd_remove_port ,parse_dlci0_rp_uih_cmd_port 
+66ab 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_cmd:
+66ac 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+66ad 202066ae branch parse_dlci0_rp_uih_pn_cmd_spp 
+
+parse_dlci0_rp_uih_pn_cmd_spp:
+66ae 6800c2e4 fetch 1 ,mem_spp_state 
+66af 79207e00 set1 rfcomm_channel_state_pn_cmd ,pdata 
+66b0 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+66b1 6000c2e4 store 1 ,mem_spp_state 
+66b2 204067ed call rfcomm_send_param_neg_res 
+66b3 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res:
+66b4 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+66b5 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res_common:
+66b6 204066d2 call get_param_payload_ptr 
+66b7 202066de branch get_rfcomm_prarmer_negotiation 
+
+get_rfcomm_param_modem_status:
+66b8 204066d2 call get_param_payload_ptr 
+66b9 e8c08000 ifetch 1 ,contr 
+66ba 1fe97e00 rshift3 pdata ,pdata 
+66bb 6000c602 store 1 ,mem_ms_channel 
+66bc e8c08000 ifetch 1 ,contr 
+66bd 60008437 store 1 ,mem_ms_param 
+66be 20600000 rtn 
+
+get_rfcomm_head_struct:
+66bf e8c08000 ifetch 1 ,contr 
+66c0 6000842a store 1 ,mem_current_adss 
+66c1 1fe97e00 rshift3 pdata ,pdata 
+66c2 6000842b store 1 ,mem_current_channel 
+66c3 e8c08000 ifetch 1 ,contr 
+66c4 6000842c store 1 ,mem_current_frame_type 
+
+get_rfcomm_current_length:
+66c5 204066d5 call get_rfcomm_length_common 
+66c6 6009042e storet 2 ,mem_current_length 
+66c7 18c27e00 copy contr ,pdata 
+66c8 60010430 store 2 ,mem_rfcomm_uih_payload_ptr 
+66c9 20600000 rtn 
+
+get_rfcomm_uih_head_struct:
+66ca e8c08000 ifetch 1 ,contr 
+66cb 1fe37e00 rshift pdata ,pdata 
+66cc 60008432 store 1 ,mem_uih_cmd_type 
+66cd 204066d5 call get_rfcomm_length_common 
+66ce 60090433 storet 2 ,mem_uih_length 
+66cf 18c27e00 copy contr ,pdata 
+66d0 60010435 store 2 ,mem_param_payload_ptr 
+66d1 20600000 rtn 
+
+get_param_payload_ptr:
+66d2 68010435 fetch 2 ,mem_param_payload_ptr 
+66d3 1fe20c00 copy pdata ,contr 
+66d4 20600000 rtn 
+
+get_rfcomm_length_common:
+66d5 e8c08000 ifetch 1 ,contr 
+66d6 1fe20400 copy pdata ,temp 
+66d7 18430400 rshift temp ,temp 
+66d8 c3800000 rtnbit1 0 
+66d9 e8c08000 ifetch 1 ,contr 
+66da 1fe9fe00 lshift3 pdata ,pdata 
+66db 1ff27e00 lshift4 pdata ,pdata 
+66dc 98408400 iadd temp ,temp 
+66dd 20600000 rtn 
+
+get_rfcomm_prarmer_negotiation:
+66de e8c08000 ifetch 1 ,contr 
+66df 6000c5f5 store 1 ,mem_pn_dlci 
+66e0 e8c08000 ifetch 1 ,contr 
+66e1 60008438 store 1 ,mem_pn_credit_flow_type_info 
+66e2 e8c08000 ifetch 1 ,contr 
+66e3 60008439 store 1 ,mem_pn_priority 
+66e4 e8c08000 ifetch 1 ,contr 
+66e5 6000843a store 1 ,mem_pn_acknowledg_timer 
+66e6 e8c10000 ifetch 2 ,contr 
+66e7 600145f6 store 2 ,mem_pn_max_frame_size 
+66e8 e8c08000 ifetch 1 ,contr 
+66e9 6000843b store 1 ,mem_pn_max_retrans 
+66ea e8c08000 ifetch 1 ,contr 
+66eb 6000c600 store 1 ,mem_remote_credits 
+66ec 20600000 rtn 
+
+parse_dlci0_rp_uih_ms_cmd:
+66ed 204066b8 call get_rfcomm_param_modem_status 
+66ee 202066ef branch parse_dlci0_rp_uih_ms_cmd_spp 
+
+parse_dlci0_rp_uih_ms_cmd_spp:
+66ef 6800c2e4 fetch 1 ,mem_spp_state 
+66f0 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+66f1 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+66f2 6000c2e4 store 1 ,mem_spp_state 
+66f3 6808c5f5 fetcht 1 ,mem_pn_dlci 
+66f4 184b8400 lshift2 temp ,temp 
+66f5 18418403 or_into 3 ,temp 
+66f6 20406820 call rfcomm_send_modem_status_res 
+66f7 7045ff03 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+66f8 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_ms_res:
+66f9 7009bd08 jam bt_evt_spp_connected ,mem_fifo_temp 
+66fa 20407d86 call ui_ipc_send_event 
+66fb 204066b8 call get_rfcomm_param_modem_status 
+66fc 6800c602 fetch 1 ,mem_ms_channel 
+66fd 1fe67c01 sub pdata ,1 ,null 
+66fe 2022e700 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+66ff 20203b31 branch assert 
+
+parse_dlci0_rp_uih_ms_res_spp:
+6700 6800c2e4 fetch 1 ,mem_spp_state 
+6701 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+6702 6000c2e4 store 1 ,mem_spp_state 
+6703 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_cmd_port:
+6704 204066d2 call get_param_payload_ptr 
+6705 e8c08000 ifetch 1 ,contr 
+6706 600089e1 store 1 ,mem_rpn_dlci 
+6707 2040487a call l2cap_malloc_rfcomm_channel 
+6708 20404889 call l2cap_get_rfcomm_tx_buff 
+6709 5800000e setarg 0x000e 
+670a e0a10000 istore 2 ,contw 
+670b 680142da fetch 2 ,mem_rfcomm_remote_cid 
+670c e0a10000 istore 2 ,contw 
+670d 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+670e 1fe3fe00 lshift pdata ,pdata 
+670f 79207e00 set1 0 ,pdata 
+6710 e0a08000 istore 1 ,contw 
+6711 79200025 set1 mark_ext_patch ,mark 
+6712 44ce4033 bpatch patch33_4 ,mem_patch33 
+6713 580015ef setarg 0x15ef 
+6714 e0a10000 istore 2 ,contw 
+6715 58001191 setarg 0x1191 
+6716 e0a10000 istore 2 ,contw 
+6717 680089e1 fetch 1 ,mem_rpn_dlci 
+6718 e0a08000 istore 1 ,contw 
+6719 58000007 setarg 0x000007 
+671a e0a28000 istore 5 ,contw 
+671b 58000001 setarg 0x01 
+671c e0a10000 istore 2 ,contw 
+671d 20406634 call rfcomm_calculate_fcs_dlci0 
+671e e0a08000 istore 1 ,contw 
+671f 20600000 rtn 
+
+parse_uih_rp:
+6720 20206721 branch parse_uih_rp_spp 
+
+parse_uih_rp_spp:
+6721 79200025 set1 mark_ext_patch ,mark 
+6722 44cec033 bpatch patch33_5 ,mem_patch33 
+6723 6800842c fetch 1 ,mem_current_frame_type 
+6724 c039e72a beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+6725 c01fe72e beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+6726 c077e748 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6727 c07fe740 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+6728 c029e74f beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+6729 20600000 rtn 
+
+parse_uih_rp_spp_ua:
+672a 6800c2e4 fetch 1 ,mem_spp_state 
+672b 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+672c 6000c2e4 store 1 ,mem_spp_state 
+672d 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_sabm:
+672e 6800c2e4 fetch 1 ,mem_spp_state 
+672f 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+6730 79207e02 set1 rfcomm_channel_state_sabm ,pdata 
+6731 6000c2e4 store 1 ,mem_spp_state 
+6732 6800842a fetch 1 ,mem_current_adss 
+6733 2040662b call rfcomm_calculate_fcs_ua 
+6734 6000842d store 1 ,mem_current_fcs 
+6735 204067c1 call rfcomm_send_ua 
+6736 6800842a fetch 1 ,mem_current_adss 
+6737 1feb7e00 rshift2 pdata ,pdata 
+6738 6000c5f5 store 1 ,mem_pn_dlci 
+6739 1febfe00 lshift2 pdata ,pdata 
+673a 793ffe01 set0 rfcomm_address_cr ,pdata 
+673b 79207e00 set1 rfcomm_address_ext_len ,pdata 
+673c d84045fd arg mem_hiufcs_spp ,temp 
+673d 60090426 storet 2 ,mem_contw_temp 
+673e 2040663a call rfcomm_save_fcs_uih 
+673f 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_spp_uih_credits:
+6740 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6741 1fe20c00 copy pdata ,contr 
+6742 1fe0fe01 increase 1 ,pdata 
+6743 60010430 store 2 ,mem_rfcomm_uih_payload_ptr 
+6744 e8c08000 ifetch 1 ,contr 
+6745 6808c600 fetcht 1 ,mem_remote_credits 
+6746 9840fe00 iadd temp ,pdata 
+6747 6000c600 store 1 ,mem_remote_credits 
+
+parse_uih_spp_uih:
+6748 20406853 call rfcomm_increase_credit_given 
+
+parse_uih_spp_uih_cont:
+6749 20406677 call get_rfcomm_snd_adss 
+674a 20406838 call rfcomm_send_uih_without_payload 
+674b 2040685d call spp_process_rx_data 
+674c 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_disconn_send_event:
+674d 7009bd09 jam bt_evt_spp_disconnected ,mem_fifo_temp 
+674e 20407d86 call ui_ipc_send_event 
+
+parse_uih_rp_spp_disconn:
+674f 20406611 call rfcomm_init_spp 
+6750 6800842a fetch 1 ,mem_current_adss 
+6751 2040662b call rfcomm_calculate_fcs_ua 
+6752 6000842d store 1 ,mem_current_fcs 
+6753 204067c1 call rfcomm_send_ua 
+6754 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_reconn:
+6755 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6756 1fe20c00 copy pdata ,contr 
+6757 204066bf call get_rfcomm_head_struct 
+6758 6800842b fetch 1 ,mem_current_channel 
+6759 c000675b beq 0 ,parse_dlci0_reconn 
+675a 20206790 branch parse_uih_reconn 
+
+parse_dlci0_reconn:
+675b 79200025 set1 mark_ext_patch ,mark 
+675c 44cf4033 bpatch patch33_6 ,mem_patch33 
+675d 6800842c fetch 1 ,mem_current_frame_type 
+675e c01fe682 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+675f c039e68b beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+6760 c077e762 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+6761 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih:
+6762 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6763 1fe20c00 copy pdata ,contr 
+6764 204066ca call get_rfcomm_uih_head_struct 
+6765 68008432 fetch 1 ,mem_uih_cmd_type 
+6766 c020e76b beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+6767 c020676b beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+6768 c038e776 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+6769 c0386786 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+676a 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_pn_cmd:
+676b 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+676c 6800c5f5 fetch 1 ,mem_pn_dlci 
+676d 1fe37e00 rshift pdata ,pdata 
+676e 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+676f 98467c00 isub temp ,null 
+6770 2022e772 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+6771 20203b31 branch assert 
+
+parse_dlci0_reconn_uih_pn_cmd_spp:
+6772 6800c2e4 fetch 1 ,mem_spp_state 
+6773 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+6774 6000c2e4 store 1 ,mem_spp_state 
+6775 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd:
+6776 204066b8 call get_rfcomm_param_modem_status 
+6777 6800c602 fetch 1 ,mem_ms_channel 
+6778 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6779 98467c00 isub temp ,null 
+677a 2022e77d branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+677b 20203b31 branch assert 
+677c 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd_spp:
+677d 6800c2e4 fetch 1 ,mem_spp_state 
+677e 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+677f 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+6780 6000c2e4 store 1 ,mem_spp_state 
+6781 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6782 184b8400 lshift2 temp ,temp 
+6783 18418403 or_into 3 ,temp 
+6784 20406820 call rfcomm_send_modem_status_res 
+6785 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_res:
+6786 204066b8 call get_rfcomm_param_modem_status 
+6787 6800c602 fetch 1 ,mem_ms_channel 
+6788 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6789 98467c00 isub temp ,null 
+678a 2022e78c branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+678b 20203b31 branch assert 
+
+parse_dlci0_reconn_uih_ms_res_spp:
+678c 6800c2e4 fetch 1 ,mem_spp_state 
+678d 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+678e 6000c2e4 store 1 ,mem_spp_state 
+678f 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn:
+6790 6800842b fetch 1 ,mem_current_channel 
+6791 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6792 98467c00 isub temp ,null 
+6793 2022e796 branch parse_uih_reconn_spp ,zero 
+6794 20203b31 branch assert 
+6795 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp:
+6796 6800842c fetch 1 ,mem_current_frame_type 
+6797 c039e79b beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+6798 c077e748 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6799 c07fe740 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+679a c029e7a0 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+
+parse_uih_reconn_spp_ua:
+679b 6800c2e4 fetch 1 ,mem_spp_state 
+679c 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+679d 6000c2e4 store 1 ,mem_spp_state 
+679e 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp_sabm:
+679f 2020679f branch parse_uih_reconn_spp_sabm 
+
+parse_uih_reconn_spp_disconn:
+67a0 2020674f branch parse_uih_rp_spp_disconn 
+
+rfcomm_rx_process_end:
+67a1 20600000 rtn 
+
+rfcomm_send_more_pkt:
+67a2 6800c5ff fetch 1 ,mem_rfcomm_send_more_pkt 
+67a3 207a0000 rtn blank 
+67a4 c001e7a6 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+67a5 20203b31 branch assert 
+
+rfcomm_send_more_pkt_msc_cmd_spp:
+67a6 7045ff00 jam 0 ,mem_rfcomm_send_more_pkt 
+67a7 2040487a call l2cap_malloc_rfcomm_channel 
+67a8 d8400001 arg spp_slave_channel ,temp 
+67a9 6808c5f5 fetcht 1 ,mem_pn_dlci 
+67aa 184b8400 lshift2 temp ,temp 
+
+rfcomm_send_more_pkt_msc_cmd_spp0:
+67ab 18418403 or_into 0x03 ,temp 
+67ac da2000aa arg 0xaa ,rega 
+67ad 2040680a call rfcomm_send_modem_status_cmd 
+67ae 20404889 call l2cap_get_rfcomm_tx_buff 
+67af 18a20c00 copy contw ,contr 
+67b0 e8c10000 ifetch 2 ,contr 
+67b1 203a3b31 branch assert ,blank 
+67b2 20600000 rtn 
+
+rfcomm_send_sabm:
+67b3 20404889 call l2cap_get_rfcomm_tx_buff 
+67b4 58000004 setarg 0x0004 
+67b5 e0a10000 istore 2 ,contw 
+67b6 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67b7 e0a10000 istore 2 ,contw 
+67b8 6800842a fetch 1 ,mem_current_adss 
+67b9 e0a08000 istore 1 ,contw 
+67ba 79200025 set1 mark_ext_patch ,mark 
+67bb 44cfc033 bpatch patch33_7 ,mem_patch33 
+67bc 5800013f setarg 0x013f 
+67bd e0a10000 istore 2 ,contw 
+67be 6800842d fetch 1 ,mem_current_fcs 
+67bf e0a08000 istore 1 ,contw 
+67c0 20600000 rtn 
+
+rfcomm_send_ua:
+67c1 2040487a call l2cap_malloc_rfcomm_channel 
+67c2 20404889 call l2cap_get_rfcomm_tx_buff 
+67c3 58000004 setarg 0x0004 
+67c4 e0a10000 istore 2 ,contw 
+67c5 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67c6 e0a10000 istore 2 ,contw 
+67c7 6800842a fetch 1 ,mem_current_adss 
+67c8 e0a08000 istore 1 ,contw 
+67c9 79200025 set1 mark_ext_patch ,mark 
+67ca 44d04034 bpatch patch34_0 ,mem_patch34 
+67cb 58000173 setarg 0x0173 
+67cc e0a10000 istore 2 ,contw 
+67cd 6800842d fetch 1 ,mem_current_fcs 
+67ce e0a08000 istore 1 ,contw 
+67cf 20600000 rtn 
+
+rfcomm_send_param_neg_cmd:
+67d0 20404889 call l2cap_get_rfcomm_tx_buff 
+67d1 5800000e setarg 0x000e 
+67d2 e0a10000 istore 2 ,contw 
+67d3 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67d4 e0a10000 istore 2 ,contw 
+67d5 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+67d6 1fe3fe00 lshift pdata ,pdata 
+67d7 79207e00 set1 0 ,pdata 
+67d8 e0a08000 istore 1 ,contw 
+67d9 79200025 set1 mark_ext_patch ,mark 
+67da 44d0c034 bpatch patch34_1 ,mem_patch34 
+67db 580015ef setarg 0x15ef 
+67dc e0a10000 istore 2 ,contw 
+67dd 58001183 setarg 0x1183 
+67de e0a10000 istore 2 ,contw 
+67df 18427e00 copy temp ,pdata 
+67e0 e0a08000 istore 1 ,contw 
+67e1 580000f0 setarg 0x0000f0 
+67e2 e0a18000 istore 3 ,contw 
+67e3 5800007f setarg rfcomm_max_frame_size 
+67e4 e0a10000 istore 2 ,contw 
+67e5 58000000 setarg 0 
+67e6 e0a08000 istore 1 ,contw 
+67e7 58000001 setarg 0x01 
+67e8 e0a08000 istore 1 ,contw 
+67e9 20406634 call rfcomm_calculate_fcs_dlci0 
+67ea e0a08000 istore 1 ,contw 
+67eb 70460110 jam 0x10 ,mem_credit_given 
+67ec 20600000 rtn 
+
+rfcomm_send_param_neg_res:
+67ed 2040487a call l2cap_malloc_rfcomm_channel 
+67ee 20404889 call l2cap_get_rfcomm_tx_buff 
+67ef 5800000e setarg 0x000e 
+67f0 e0a10000 istore 2 ,contw 
+67f1 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67f2 e0a10000 istore 2 ,contw 
+67f3 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+67f4 1fe3fe00 lshift pdata ,pdata 
+67f5 79207e00 set1 0 ,pdata 
+67f6 e0a08000 istore 1 ,contw 
+67f7 79200025 set1 mark_ext_patch ,mark 
+67f8 44d14034 bpatch patch34_2 ,mem_patch34 
+67f9 580015ef setarg 0x15ef 
+67fa e0a10000 istore 2 ,contw 
+67fb 58001181 setarg 0x1181 
+67fc e0a10000 istore 2 ,contw 
+67fd 6800c5f5 fetch 1 ,mem_pn_dlci 
+67fe e0a08000 istore 1 ,contw 
+67ff 580000e0 setarg 0x0000e0 
+6800 e0a18000 istore 3 ,contw 
+6801 68014604 fetch 2 ,mem_rfcomm_max_frame_size 
+6802 e0a10000 istore 2 ,contw 
+6803 58000000 setarg 0x00 
+6804 e0a08000 istore 1 ,contw 
+6805 6800c606 fetch 1 ,mem_rfcomm_credit_init_data 
+6806 e0a08000 istore 1 ,contw 
+6807 20406634 call rfcomm_calculate_fcs_dlci0 
+6808 e0a08000 istore 1 ,contw 
+6809 20600000 rtn 
+
+rfcomm_send_modem_status_cmd:
+680a 20404889 call l2cap_get_rfcomm_tx_buff 
+680b 58000008 setarg 0x0008 
+680c e0a10000 istore 2 ,contw 
+680d 680142da fetch 2 ,mem_rfcomm_remote_cid 
+680e e0a10000 istore 2 ,contw 
+680f 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6810 1fe3fe00 lshift pdata ,pdata 
+6811 79207e00 set1 0 ,pdata 
+6812 e0a08000 istore 1 ,contw 
+6813 79200025 set1 mark_ext_patch ,mark 
+6814 44d1c034 bpatch patch34_3 ,mem_patch34 
+6815 580009ef setarg 0x09ef 
+6816 e0a10000 istore 2 ,contw 
+6817 580005e3 setarg 0x05e3 
+6818 e0a10000 istore 2 ,contw 
+6819 18427e00 copy temp ,pdata 
+681a e0a08000 istore 1 ,contw 
+681b 5800008d setarg 0x8d 
+681c e0a08000 istore 1 ,contw 
+681d 20406634 call rfcomm_calculate_fcs_dlci0 
+681e e0a08000 istore 1 ,contw 
+681f 20600000 rtn 
+
+rfcomm_send_modem_status_res:
+6820 2040487a call l2cap_malloc_rfcomm_channel 
+6821 20404889 call l2cap_get_rfcomm_tx_buff 
+6822 58000008 setarg 0x0008 
+6823 e0a10000 istore 2 ,contw 
+6824 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6825 e0a10000 istore 2 ,contw 
+6826 18421600 copy temp ,timeup 
+6827 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6828 1fe3fe00 lshift pdata ,pdata 
+6829 79207e00 set1 0 ,pdata 
+682a e0a08000 istore 1 ,contw 
+682b 79200025 set1 mark_ext_patch ,mark 
+682c 44d24034 bpatch patch34_4 ,mem_patch34 
+682d 580009ef setarg 0x09ef 
+682e e0a10000 istore 2 ,contw 
+682f 580005e1 setarg 0x05e1 
+6830 e0a10000 istore 2 ,contw 
+6831 19627e00 copy timeup ,pdata 
+6832 e0a08000 istore 1 ,contw 
+6833 5800008d setarg 0x8d 
+6834 e0a08000 istore 1 ,contw 
+6835 20406634 call rfcomm_calculate_fcs_dlci0 
+6836 e0a08000 istore 1 ,contw 
+6837 20600000 rtn 
+
+rfcomm_send_uih_without_payload:
+6838 79200025 set1 mark_ext_patch ,mark 
+6839 44d2c034 bpatch patch34_5 ,mem_patch34 
+683a 6800c601 fetch 1 ,mem_credit_given 
+683b 207a0000 rtn blank 
+683c 68110112 hfetch 2 ,core_uart_rxitems 
+683d 247a0000 nrtn blank 
+683e 1a227e00 copy rega ,pdata 
+683f 600089bf store 1 ,mem_pdatatemp + 1 
+6840 600889be storet 1 ,mem_pdatatemp 
+6841 2040480e call l2cap_malloc_is_fifo_full 
+6842 247a0000 nrtn blank 
+6843 2040487a call l2cap_malloc_rfcomm_channel 
+6844 20404889 call l2cap_get_rfcomm_tx_buff 
+6845 58000005 setarg 0x05 
+6846 e0a10000 istore 2 ,contw 
+6847 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6848 e0a10000 istore 2 ,contw 
+6849 6800843c fetch 1 ,mem_rfcomm_send_adss 
+684a e0a08000 istore 1 ,contw 
+684b 580001ff setarg 0x01ff 
+684c e0a10000 istore 2 ,contw 
+684d 6800c601 fetch 1 ,mem_credit_given 
+684e e0a08000 istore 1 ,contw 
+684f 6800c5fe fetch 1 ,mem_hiufcs_spp_wcredits 
+6850 e0a08000 istore 1 ,contw 
+6851 70460100 jam 0 ,mem_credit_given 
+6852 20600000 rtn 
+
+rfcomm_increase_credit_given:
+6853 79200025 set1 mark_ext_patch ,mark 
+6854 44d34034 bpatch patch34_6 ,mem_patch34 
+6855 6800c603 fetch 1 ,mem_credit_flag 
+6856 c1008000 rtneq credit_enable 
+6857 6801042e fetch 2 ,mem_current_length 
+6858 207a0000 rtn blank 
+6859 6800c601 fetch 1 ,mem_credit_given 
+685a 1fe0fe01 increase 1 ,pdata 
+685b 6000c601 store 1 ,mem_credit_given 
+685c 20600000 rtn 
+
+spp_process_rx_data:
+685d 68014607 fetch 2 ,mem_cb_receive_spp_data 
+685e 20207f69 branch callback_func 
+
+spp_tx_rfcomm_packet:
+685f 79200025 set1 mark_ext_patch ,mark 
+6860 44d3c034 bpatch patch34_7 ,mem_patch34 
+6861 6800c600 fetch 1 ,mem_remote_credits 
+6862 207a0000 rtn blank 
+6863 1fe0ffff increase -1 ,pdata 
+6864 6000c600 store 1 ,mem_remote_credits 
+6865 680145f6 fetch 2 ,mem_pn_max_frame_size 
+6866 6809472c fetcht 2 ,mem_current_packet_length 
+6867 98467c00 isub temp ,null 
+6868 2021686a branch ssp_tx_rfcomm_from_uart ,positive 
+6869 6001472c store 2 ,mem_current_packet_length 
+
+ssp_tx_rfcomm_from_uart:
+686a 6800c601 fetch 1 ,mem_credit_given 
+686b 203a6872 branch ssp_tx_rfcomm_from_uart_without_credit ,blank 
+686c 70043f01 jam 1 ,mem_rfcomm_send_offset 
+686d 6800c5fe fetch 1 ,mem_hiufcs_spp_wcredits 
+686e 6000843e store 1 ,mem_rfcomm_send_fcs 
+686f 580000ff setarg rsp_rx_uih_wdata 
+6870 6000843d store 1 ,mem_rfcomm_send_frame_type 
+6871 20206877 branch ssp_tx_rfcomm_from_uart_common 
+
+ssp_tx_rfcomm_from_uart_without_credit:
+6872 70043f00 jam 0 ,mem_rfcomm_send_offset 
+6873 6800c5fd fetch 1 ,mem_hiufcs_spp 
+6874 6000843e store 1 ,mem_rfcomm_send_fcs 
+6875 580000ef setarg rsp_tx_uih 
+6876 6000843d store 1 ,mem_rfcomm_send_frame_type 
+
+ssp_tx_rfcomm_from_uart_common:
+6877 79200025 set1 mark_ext_patch ,mark 
+6878 44d44035 bpatch patch35_0 ,mem_patch35 
+6879 6801472c fetch 2 ,mem_current_packet_length 
+687a 1fe67c7f sub pdata ,127 ,null 
+687b 2021687f branch ssp_tx_rfcomm_from_uart_common0 ,positive 
+687c 6800843f fetch 1 ,mem_rfcomm_send_offset 
+687d 1fe0fe01 increase 1 ,pdata 
+687e 6000843f store 1 ,mem_rfcomm_send_offset 
+
+ssp_tx_rfcomm_from_uart_common0:
+687f 20406677 call get_rfcomm_snd_adss 
+6880 6801472c fetch 2 ,mem_current_packet_length 
+6881 1fe0fe08 increase 8 ,pdata 
+6882 6808843f fetcht 1 ,mem_rfcomm_send_offset 
+6883 9840a200 iadd temp ,rega 
+6884 204047dc call l2cap_malloc 
+6885 600102a0 store 2 ,mem_rfcomm_tx_buff_ptr 
+6886 1fe0fe04 increase 4 ,pdata 
+6887 600102a2 store 2 ,mem_rfcomm_tx_payload_ptr 
+6888 1fe20a00 copy pdata ,contw 
+6889 6800843c fetch 1 ,mem_rfcomm_send_adss 
+688a e0a08000 istore 1 ,contw 
+688b 6800843d fetch 1 ,mem_rfcomm_send_frame_type 
+688c e0a08000 istore 1 ,contw 
+688d 204068aa call ssp_tx_write_length 
+688e 204068bc call ssp_tx_write_given_credit 
+688f 79200025 set1 mark_ext_patch ,mark 
+6890 44d4c035 bpatch patch35_1 ,mem_patch35 
+6891 68014609 fetch 2 ,mem_nl_rx_data_src 
+6892 1fe20600 copy pdata ,contru 
+6893 6801472c fetch 2 ,mem_current_packet_length 
+6894 1fe27200 copy pdata ,loopcnt 
+6895 20406341 call uart_copy_rx_bytes_fast 
+6896 18a20400 copy contw ,temp 
+6897 18627e00 copy contru ,pdata 
+6898 60014609 store 2 ,mem_nl_rx_data_src 
+6899 18420a00 copy temp ,contw 
+689a 6800843e fetch 1 ,mem_rfcomm_send_fcs 
+689b e0a08000 istore 1 ,contw 
+689c 680102a0 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+689d 1fe20a00 copy pdata ,contw 
+689e 6801472c fetch 2 ,mem_current_packet_length 
+689f 6808843f fetcht 1 ,mem_rfcomm_send_offset 
+68a0 9840fe00 iadd temp ,pdata 
+68a1 1fe0fe04 increase 4 ,pdata 
+68a2 e0a10000 istore 2 ,contw 
+68a3 680142da fetch 2 ,mem_rfcomm_remote_cid 
+68a4 e0a10000 istore 2 ,contw 
+68a5 70460100 jam 0 ,mem_credit_given 
+68a6 6801460b fetch 2 ,mem_nl_rx_len_all 
+68a7 c0005b20 beq 0 ,module_hci_command_tx_spp_tx_complete 
+68a8 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+68a9 20600000 rtn 
+
+ssp_tx_write_length:
+68aa 79200025 set1 mark_ext_patch ,mark 
+68ab 44d54035 bpatch patch35_2 ,mem_patch35 
+68ac 6801472c fetch 2 ,mem_current_packet_length 
+68ad 1fe67c7f sub pdata ,0x7f ,null 
+68ae 242168b3 nbranch ssp_tx_write_long_packet ,positive 
+68af 1fe3fe00 lshift pdata ,pdata 
+68b0 79207e00 set1 0 ,pdata 
+68b1 e0a08000 istore 1 ,contw 
+68b2 20600000 rtn 
+
+ssp_tx_write_long_packet:
+68b3 6801472c fetch 2 ,mem_current_packet_length 
+68b4 1fe97e00 rshift3 pdata ,pdata 
+68b5 1ff18400 rshift4 pdata ,temp 
+68b6 1fe17e7f and_into 0x7f ,pdata 
+68b7 1fe3fe00 lshift pdata ,pdata 
+68b8 793ffe00 set0 0 ,pdata 
+68b9 e0a08000 istore 1 ,contw 
+68ba e0a88000 istoret 1 ,contw 
+68bb 20600000 rtn 
+
+ssp_tx_write_given_credit:
+68bc 6800c601 fetch 1 ,mem_credit_given 
+68bd 207a0000 rtn blank 
+68be e0a08000 istore 1 ,contw 
+68bf 20600000 rtn 
+
+scheduler_process:
+68c0 79200025 set1 mark_ext_patch ,mark 
+68c1 44d5c035 bpatch patch35_3 ,mem_patch35 
+68c2 20407d9e call check_51cmd 
+68c3 20403d69 call app_process_bb_event 
+68c4 20405926 call process_conn_sm 
+68c5 79200025 set1 mark_ext_patch ,mark 
+68c6 44d64035 bpatch patch35_4 ,mem_patch35 
+68c7 204076f7 call sp_calc_sequence 
+68c8 204076ce call simple_pairing_sequence 
+68c9 204076e0 call master_simple_paring_sequence 
+68ca 2040480e call l2cap_malloc_is_fifo_full 
+68cb 247a0000 nrtn blank 
+68cc 2040432d call l2cap_call_proc_sigal_pending 
+68cd 2040480e call l2cap_malloc_is_fifo_full 
+68ce 247a0000 nrtn blank 
+68cf 79200025 set1 mark_ext_patch ,mark 
+68d0 44d6c035 bpatch patch35_5 ,mem_patch35 
+68d1 20406913 call process_upper_sm 
+68d2 204044f2 call l2cap_send_config_req 
+68d3 204067a2 call rfcomm_send_more_pkt 
+
+scheduler_process0:
+68d4 204068d8 call scheduler_tx_disconnect_hid 
+68d5 79200025 set1 mark_ext_patch ,mark 
+68d6 44d74035 bpatch patch35_6 ,mem_patch35 
+68d7 20203d65 branch app_process_bt 
+
+scheduler_tx_disconnect_hid:
+68d8 680082a8 fetch 1 ,mem_control_tasks 
+68d9 c2804619 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+68da c283c623 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+68db 20600000 rtn 
+
+scheduler_tx_l2cap_pkt:
+68dc 79200025 set1 mark_ext_patch ,mark 
+68dd 44d7c035 bpatch patch35_7 ,mem_patch35 
+68de 20404816 call l2cap_malloc_is_fifo_empty 
+68df 207a0000 rtn blank 
+68e0 6800804b fetch 1 ,mem_op 
+68e1 c3830000 rtnbit1 op_txl2cap 
+68e2 204047f5 call l2cap_malloc_fifo_out 
+68e3 6001016e store 2 ,mem_txptr 
+68e4 1fe20c00 copy pdata ,contr 
+68e5 e8c10000 ifetch 2 ,contr 
+68e6 1fe0fe04 increase 4 ,pdata 
+68e7 6001427e store 2 ,mem_tx_len 
+68e8 70427d06 jam 6 ,mem_tx_lch 
+68e9 79200025 set1 mark_ext_patch ,mark 
+68ea 44d84036 bpatch patch36_0 ,mem_patch36 
+68eb 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+68ec 203a68f9 branch scheduler_tx_l2cap_start_pkt ,blank 
+68ed 6800804b fetch 1 ,mem_op 
+68ee c4038000 rtnbit0 op_pkt_comp 
+68ef 793ffe07 set0 op_pkt_comp ,pdata 
+68f0 6000804b store 1 ,mem_op 
+68f1 70427d05 jam 5 ,mem_tx_lch 
+68f2 680942d6 fetcht 2 ,mem_l2cap_tx_multi_offset 
+68f3 6801016e fetch 2 ,mem_txptr 
+68f4 9840fe00 iadd temp ,pdata 
+68f5 6001016e store 2 ,mem_txptr 
+68f6 6801427e fetch 2 ,mem_tx_len 
+68f7 98467e00 isub temp ,pdata 
+68f8 6001427e store 2 ,mem_tx_len 
+
+scheduler_tx_l2cap_start_pkt:
+68f9 79200025 set1 mark_ext_patch ,mark 
+68fa 44d8c036 bpatch patch36_1 ,mem_patch36 
+68fb 6801427e fetch 2 ,mem_tx_len 
+68fc 203a3b31 branch assert ,blank 
+68fd d8400104 arg l2cap_max_pkt_len ,temp 
+68fe 98467e00 isub temp ,pdata 
+68ff 24216907 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+6900 79200025 set1 mark_ext_patch ,mark 
+6901 44d94036 bpatch patch36_2 ,mem_patch36 
+6902 6009427e storet 2 ,mem_tx_len 
+6903 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+6904 9840fe00 iadd temp ,pdata 
+6905 600142d6 store 2 ,mem_l2cap_tx_multi_offset 
+6906 20206909 branch scheduler_tx_l2cap_pkt_end 
+
+scheduler_tx_l2cap_last_pkt:
+6907 58000000 setarg 0 
+6908 600142d6 store 2 ,mem_l2cap_tx_multi_offset 
+
+scheduler_tx_l2cap_pkt_end:
+6909 6800804b fetch 1 ,mem_op 
+690a 79207e06 set1 op_txl2cap ,pdata 
+690b 6000804b store 1 ,mem_op 
+690c 20600000 rtn 
+
+scheduler_start_upper_sm:
+690d 6800c70d fetch 1 ,mem_ui_profile_supported 
+690e c2806911 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+690f 7002b001 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+6910 20600000 rtn 
+
+scheduler_start_upper_sm_hid:
+6911 7002b00f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+6912 20600000 rtn 
+
+process_upper_sm:
+6913 6800c70a fetch 1 ,memui_reconnect_mode 
+6914 243a6919 nbranch process_upper_sm_reconn ,blank 
+
+process_upper_sm_remote_page:
+6915 680082af fetch 1 ,mem_upper_sm_remote_page 
+6916 207a0000 rtn blank 
+6917 7002af00 jam 0 ,mem_upper_sm_remote_page 
+
+process_upper_sm_rp_wait:
+6918 20600000 rtn 
+
+process_upper_sm_reconn:
+6919 79200025 set1 mark_ext_patch ,mark 
+691a 44d9c036 bpatch patch36_3 ,mem_patch36 
+691b 680082b0 fetch 1 ,mem_upper_sm_reconn 
+691c 207a0000 rtn blank 
+691d c000e93a beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+691e c0016993 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+691f c001e940 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+6920 c0026997 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+6921 c01de94a beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+6922 c01e699a beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+6923 c006e94f beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+6924 c007699f beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+6925 c007e952 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+6926 c00869a5 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+6927 c008e958 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+6928 c00969a9 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+6929 c009e95e beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+692a c00a69ad beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+692b c00ae964 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+692c c00b69b1 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+692d c00be96a beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+692e c00c69b6 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+692f c00ce970 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+6930 c00d69ba beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+6931 c00de976 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+6932 c00e69be beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+6933 c00ee97c beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+6934 c00f69c3 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+6935 c00fe982 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+6936 c01069c7 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+6937 c010e98d beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+6938 c01169cb beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+
+process_upper_sm_reconn_wait:
+6939 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn:
+693a 204069d6 call upper_sm_send_sdp_conn 
+693b 7002b002 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+693c 6800c2e0 fetch 1 ,mem_sdp_state 
+693d 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+693e 6000c2e0 store 1 ,mem_sdp_state 
+693f 20600000 rtn 
+
+process_upper_sm_reconn_sdp_cfg:
+6940 7002b004 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6941 6800c2e0 fetch 1 ,mem_sdp_state 
+6942 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req 
+6943 7002b003 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6944 204069de call upper_sm_send_sdp_cfg 
+6945 7002b004 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6946 6800c2e0 fetch 1 ,mem_sdp_state 
+6947 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6948 6000c2e0 store 1 ,mem_sdp_state 
+6949 20600000 rtn 
+
+process_upper_sm_reconn_ss_spp:
+694a 20404816 call l2cap_malloc_is_fifo_empty 
+694b 247a0000 nrtn blank 
+694c 204069ef call upper_sm_send_ss_spp 
+694d 7002b03c jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+694e 20600000 rtn 
+
+process_upper_sm_reconn_sdp_disconn:
+694f 204069e4 call upper_sm_send_sdp_disconn 
+6950 7002b00e jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+6951 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_conn:
+6952 20406a02 call upper_sm_send_hid_ctrl_conn 
+6953 7002b010 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+6954 6800c2e2 fetch 1 ,mem_hid_control_state 
+6955 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6956 6000c2e2 store 1 ,mem_hid_control_state 
+6957 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_cfg:
+6958 20406a0a call upper_sm_send_hid_ctrl_cfg 
+6959 7002b012 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+695a 6800c2e2 fetch 1 ,mem_hid_control_state 
+695b 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+695c 6000c2e2 store 1 ,mem_hid_control_state 
+695d 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_conn:
+695e 20406a10 call upper_sm_send_hid_int_conn 
+695f 7002b014 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+6960 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+6961 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6962 6000c2e3 store 1 ,mem_hid_interrupt_state 
+6963 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_cfg:
+6964 20406a18 call upper_sm_send_hid_int_cfg 
+6965 7002b016 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+6966 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+6967 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6968 6000c2e3 store 1 ,mem_hid_interrupt_state 
+6969 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_conn:
+696a 204069f4 call upper_sm_send_rfcomm_conn 
+696b 7002b018 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+696c 6800c2e1 fetch 1 ,mem_rfcomm_state 
+696d 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+696e 6000c2e1 store 1 ,mem_rfcomm_state 
+696f 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_cfg:
+6970 204069fc call upper_sm_send_rfcomm_cfg 
+6971 7002b01a jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+6972 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6973 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6974 6000c2e1 store 1 ,mem_rfcomm_state 
+6975 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_sabm:
+6976 20406a1e call upper_sm_send_rfcomm_sabm 
+6977 7002b01c jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+6978 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6979 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+697a 6000c2e1 store 1 ,mem_rfcomm_state 
+697b 20600000 rtn 
+
+process_upper_sm_reconn_spp_cmd_pn:
+697c 20406a26 call upper_sm_send_spp_cmd_pn 
+697d 6800c2e4 fetch 1 ,mem_spp_state 
+697e 79207e00 set1 rfcomm_channel_state_pn_cmd 
+697f 6000c2e4 store 1 ,mem_spp_state 
+6980 7002b01e jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+6981 20600000 rtn 
+
+process_upper_sm_reconn_spp_sabm:
+6982 20406a2d call upper_sm_send_spp_sabm 
+6983 6800c2e4 fetch 1 ,mem_spp_state 
+6984 79207e02 set1 rfcomm_channel_state_sabm 
+6985 6000c2e4 store 1 ,mem_spp_state 
+6986 7002b020 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+6987 6800c5fc fetch 1 ,mem_remote_spp_channel 
+6988 1fe9fe00 lshift3 pdata ,pdata 
+6989 1fe1fe03 or_into 3 ,pdata 
+698a d84045fd arg mem_hiufcs_spp ,temp 
+698b 60090426 storet 2 ,mem_contw_temp 
+698c 2020663a branch rfcomm_save_fcs_uih 
+
+process_upper_sm_reconn_spp_cmd_ms:
+698d 20406a38 call upper_sm_send_spp_cmd_ms 
+698e 6800c2e4 fetch 1 ,mem_spp_state 
+698f 79207e04 set1 rfcomm_channel_state_snd_ms_cmd 
+6990 6000c2e4 store 1 ,mem_spp_state 
+6991 7002b022 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+6992 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn_wait:
+6993 6800c2e0 fetch 1 ,mem_sdp_state 
+6994 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6995 7002b003 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6996 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_cfg_wait:
+6997 6800c2e0 fetch 1 ,mem_sdp_state 
+6998 c19f8000 rtnne l2cap_channel_setup_complete 
+6999 7002b03b jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+
+process_upper_sm_reconn_ss_spp_wait:
+699a 680082ae fetch 1 ,mem_message_to_uppersm 
+699b c18b8000 rtnne recieve_ss_reasult_hf 
+699c 7002ae00 jam 0 ,mem_message_to_uppersm 
+699d 7002b00d jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+699e 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_disconn_wait:
+699f 6800c2e0 fetch 1 ,mem_sdp_state 
+69a0 247a0000 nrtn blank 
+69a1 6800c70d fetch 1 ,mem_ui_profile_supported 
+69a2 c28069ce bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+69a3 c28369d0 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+69a4 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+69a5 6800c2e2 fetch 1 ,mem_hid_control_state 
+69a6 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69a7 7002b011 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+69a8 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+69a9 6800c2e2 fetch 1 ,mem_hid_control_state 
+69aa c19f8000 rtnne l2cap_channel_setup_complete 
+69ab 7002b013 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+69ac 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_conn_wait:
+69ad 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+69ae c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69af 7002b015 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+69b0 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_cfg_wait:
+69b1 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+69b2 c19f8000 rtnne l2cap_channel_setup_complete 
+69b3 6800c70d fetch 1 ,mem_ui_profile_supported 
+69b4 c28369d0 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+69b5 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_rfcomm_conn_wait:
+69b6 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69b7 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69b8 7002b019 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+69b9 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_cfg_wait:
+69ba 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69bb c19f8000 rtnne l2cap_channel_setup_complete 
+69bc 7002b01b jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+69bd 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_sabm_wait:
+69be 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69bf c1ff8000 rtnne l2cap_channel_rfcomm_dlci0_opened 
+69c0 6800c70d fetch 1 ,mem_ui_profile_supported 
+69c1 c28369d2 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+69c2 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_spp_cmd_pn_wait:
+69c3 6800c2e4 fetch 1 ,mem_spp_state 
+69c4 c4008000 rtnbit0 rfcomm_channel_state_pn_res 
+69c5 7002b01f jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+69c6 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_sabm_wait:
+69c7 6800c2e4 fetch 1 ,mem_spp_state 
+69c8 c4018000 rtnbit0 rfcomm_channel_state_ua 
+69c9 7002b021 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+69ca 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_cmd_ms_wait:
+69cb 6800c2e4 fetch 1 ,mem_spp_state 
+69cc c1ff8000 rtnne rfcomm_channel_setup_complete 
+69cd 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_setup_hid:
+69ce 7002b00f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+69cf 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_rfcomm:
+69d0 7002b017 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+69d1 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_spp:
+69d2 7002b01d jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+69d3 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_termination:
+69d4 7002b000 jam 0 ,mem_upper_sm_reconn 
+69d5 20600000 rtn 
+
+upper_sm_send_sdp_conn:
+69d6 79200025 set1 mark_ext_patch ,mark 
+69d7 44da4036 bpatch patch36_4 ,mem_patch36 
+69d8 2040485e call l2cap_malloc_signal_channel 
+69d9 58000001 setarg psm_sdp 
+69da 1fe20400 copy pdata ,temp 
+69db 58000050 setarg l2cap_sdp_channel 
+69dc 1fe21600 copy pdata ,timeup 
+69dd 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_sdp_cfg:
+69de 79200025 set1 mark_ext_patch ,mark 
+69df 44dac036 bpatch patch36_5 ,mem_patch36 
+69e0 2040485e call l2cap_malloc_signal_channel 
+69e1 680142d8 fetch 2 ,mem_sdp_remote_cid 
+69e2 1fe20400 copy pdata ,temp 
+69e3 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_sdp_disconn:
+69e4 79200025 set1 mark_ext_patch ,mark 
+69e5 44db4036 bpatch patch36_6 ,mem_patch36 
+69e6 2040485e call l2cap_malloc_signal_channel 
+69e7 680142d8 fetch 2 ,mem_sdp_remote_cid 
+69e8 1fe20400 copy pdata ,temp 
+69e9 d9600050 arg l2cap_sdp_channel ,timeup 
+69ea 20404660 call ml2cap_send_signal_disconn_req 
+69eb 6800c2e0 fetch 1 ,mem_sdp_state 
+69ec 793ffe05 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+69ed 6000c2e0 store 1 ,mem_sdp_state 
+69ee 20600000 rtn 
+
+upper_sm_send_ss_spp:
+69ef 79200025 set1 mark_ext_patch ,mark 
+69f0 44dbc036 bpatch patch36_7 ,mem_patch36 
+69f1 2040486c call l2cap_malloc_sdp_channel 
+69f2 20406d01 call sdp_send_spp_request 
+69f3 2020467c branch msdp_send_req_done 
+
+upper_sm_send_rfcomm_conn:
+69f4 79200025 set1 mark_ext_patch ,mark 
+69f5 44dc4037 bpatch patch37_0 ,mem_patch37 
+69f6 2040485e call l2cap_malloc_signal_channel 
+69f7 58000003 setarg psm_rfcomm 
+69f8 1fe20400 copy pdata ,temp 
+69f9 58000051 setarg l2cap_rfcomm_channel 
+69fa 1fe21600 copy pdata ,timeup 
+69fb 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_rfcomm_cfg:
+69fc 79200025 set1 mark_ext_patch ,mark 
+69fd 44dcc037 bpatch patch37_1 ,mem_patch37 
+69fe 2040485e call l2cap_malloc_signal_channel 
+69ff 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6a00 1fe20400 copy pdata ,temp 
+6a01 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_ctrl_conn:
+6a02 79200025 set1 mark_ext_patch ,mark 
+6a03 44dd4037 bpatch patch37_2 ,mem_patch37 
+6a04 2040485e call l2cap_malloc_signal_channel 
+6a05 58000011 setarg psm_hid_control 
+6a06 1fe20400 copy pdata ,temp 
+6a07 58000052 setarg l2cap_hid_control_channel 
+6a08 1fe21600 copy pdata ,timeup 
+6a09 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_ctrl_cfg:
+6a0a 79200025 set1 mark_ext_patch ,mark 
+6a0b 44ddc037 bpatch patch37_3 ,mem_patch37 
+6a0c 2040485e call l2cap_malloc_signal_channel 
+6a0d 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+6a0e 1fe20400 copy pdata ,temp 
+6a0f 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_int_conn:
+6a10 79200025 set1 mark_ext_patch ,mark 
+6a11 44de4037 bpatch patch37_4 ,mem_patch37 
+6a12 2040485e call l2cap_malloc_signal_channel 
+6a13 58000013 setarg psm_hid_interrupt 
+6a14 1fe20400 copy pdata ,temp 
+6a15 58000053 setarg l2cap_hid_interrupt_channel 
+6a16 1fe21600 copy pdata ,timeup 
+6a17 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_int_cfg:
+6a18 79200025 set1 mark_ext_patch ,mark 
+6a19 44dec037 bpatch patch37_5 ,mem_patch37 
+6a1a 2040485e call l2cap_malloc_signal_channel 
+6a1b 680142de fetch 2 ,mem_hid_int_remote_cid 
+6a1c 1fe20400 copy pdata ,temp 
+6a1d 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_rfcomm_sabm:
+6a1e 79200025 set1 mark_ext_patch ,mark 
+6a1f 44df4037 bpatch patch37_6 ,mem_patch37 
+6a20 2040487a call l2cap_malloc_rfcomm_channel 
+6a21 70042a03 jam 3 ,mem_current_adss 
+6a22 70042d1c jam 0x1c ,mem_current_fcs 
+6a23 204067b3 call rfcomm_send_sabm 
+6a24 7045fb01 jam 1 ,mem_rfcomm_initiator 
+6a25 20600000 rtn 
+
+upper_sm_send_spp_cmd_pn:
+6a26 79200025 set1 mark_ext_patch ,mark 
+6a27 44dfc037 bpatch patch37_7 ,mem_patch37 
+6a28 2040487a call l2cap_malloc_rfcomm_channel 
+6a29 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6a2a 2040667e call channel_to_dlci 
+6a2b 6008c5f5 storet 1 ,mem_pn_dlci 
+6a2c 202067d0 branch rfcomm_send_param_neg_cmd 
+
+upper_sm_send_spp_sabm:
+6a2d 79200025 set1 mark_ext_patch ,mark 
+6a2e 44e04038 bpatch patch38_0 ,mem_patch38 
+6a2f 2040487a call l2cap_malloc_rfcomm_channel 
+6a30 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a31 20406678 call dlci_to_address_cmd 
+6a32 2040661f call rfcomm_calculate_fcs_sabm 
+6a33 6000842d store 1 ,mem_current_fcs 
+6a34 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a35 20406678 call dlci_to_address_cmd 
+6a36 6008842a storet 1 ,mem_current_adss 
+6a37 202067b3 branch rfcomm_send_sabm 
+
+upper_sm_send_spp_cmd_ms:
+6a38 79200025 set1 mark_ext_patch ,mark 
+6a39 44e0c038 bpatch patch38_1 ,mem_patch38 
+6a3a 2040487a call l2cap_malloc_rfcomm_channel 
+6a3b 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a3c 20406678 call dlci_to_address_cmd 
+6a3d 2020680a branch rfcomm_send_modem_status_cmd 
+
+sdp_process:
+6a3e 79200025 set1 mark_ext_patch ,mark 
+6a3f 44e14038 bpatch patch38_2 ,mem_patch38 
+6a40 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6a41 98000c00 iforce contr 
+6a42 e8c08000 ifetch 1 ,contr 
+6a43 1fe22400 copy pdata ,regb 
+6a44 60008446 store 1 ,mem_sdp_pduid 
+6a45 e8c10000 ifetch 2 ,contr 
+6a46 60010447 store 2 ,mem_sdp_transactionid 
+6a47 e8c08000 ifetch 1 ,contr 
+6a48 1fed1600 lshift8 pdata ,timeup 
+6a49 e8c08000 ifetch 1 ,contr 
+6a4a 99609600 iadd timeup ,timeup 
+6a4b 79200025 set1 mark_ext_patch ,mark 
+6a4c 44e1c038 bpatch patch38_3 ,mem_patch38 
+6a4d 1a427e00 deposit regb 
+6a4e c0016a53 beq 2 ,servicesearch_req 
+6a4f c0026a7c beq 4 ,patch_serviceattribute_req 
+6a50 c0036b5d beq 6 ,patch_servicesearchattribute_req 
+6a51 c003ed18 beq 7 ,servicesearchattribute_res 
+6a52 20206d40 branch sdp_insufficient_resource 
+
+servicesearch_req:
+6a53 20406d4f call ask_serviceclassid 
+6a54 2841fe01 compare 1 ,temp ,0xff 
+6a55 2020edbd branch empth_sa_rsp ,true 
+6a56 2841feff compare 0xff ,temp ,0xff 
+6a57 2020ed43 branch sdp_invalid_reqest_syntax ,true 
+6a58 e8c10000 ifetch 2 ,contr 
+6a59 6001044b store 2 ,mem_sdp_record_maxcnt 
+6a5a 196097fe increase -2 ,timeup 
+6a5b 196097ff increase -1 ,timeup 
+6a5c 2422ed3d nbranch sdp_invalid_pdu_size ,zero 
+6a5d d9600440 arg mem_uuid_search_pat ,timeup 
+6a5e e9610000 ifetch 2 ,timeup 
+6a5f 207a0000 rtn blank 
+6a60 19609602 increase 2 ,timeup 
+6a61 20406e09 call search_uuid 
+6a62 20404878 call l2cap_get_sdp_tx_payload 
+6a63 18007e03 force 3 ,pdata 
+6a64 e0a08000 istore 1 ,contw 
+6a65 68010447 fetch 2 ,mem_sdp_transactionid 
+6a66 e0a10000 istore 2 ,contw 
+6a67 18ebfe00 lshift2 queue ,pdata 
+6a68 1fe0fe05 add pdata ,5 ,pdata 
+6a69 1fe0a605 add pdata ,5 ,regc 
+6a6a 1ff0fe00 byteswap pdata ,pdata 
+6a6b e0a10000 istore 2 ,contw 
+6a6c 18e27e00 deposit queue 
+6a6d 1ff0fe00 byteswap pdata ,pdata 
+6a6e e0a10000 istore 2 ,contw 
+6a6f e0a10000 istore 2 ,contw 
+6a70 d8c0045c arg mem_handle_list ,contr 
+6a71 18e27200 copy queue ,loopcnt 
+6a72 2022ea76 branch servicesearch_req_blank ,zero 
+
+servicesearch_req_loop:
+6a73 e8c20000 ifetch 4 ,contr 
+6a74 e0a20000 istore 4 ,contw 
+6a75 c2006a73 loop servicesearch_req_loop 
+
+servicesearch_req_blank:
+6a76 18007e00 force 0 ,pdata 
+6a77 e0a08000 istore 1 ,contw 
+6a78 1a627e00 deposit regc 
+6a79 6000829e store 1 ,mem_sdp_tx_pkt_length 
+6a7a 203a3b31 branch assert ,blank 
+6a7b 20600000 rtn 
+
+patch_serviceattribute_req:
+6a7c e8c20000 ifetch 4 ,contr 
+6a7d 60020455 store 4 ,mem_sdp_record_handle 
+6a7e 196097fc increase -4 ,timeup 
+6a7f 98000400 iforce temp 
+6a80 e8c10000 ifetch 2 ,contr 
+6a81 1ff0fe00 byteswap pdata ,pdata 
+6a82 1fe0ffee increase -18 ,pdata 
+6a83 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6a84 196097fe increase -2 ,timeup 
+6a85 20406da6 call dataelementtype6 
+6a86 2022ed43 branch sdp_invalid_reqest_syntax ,zero 
+6a87 2a21fe05 compare 5 ,rega ,0xff 
+6a88 2020ea8c branch patch_serviceattribute_judge_wholerangle ,true 
+
+patch_serviceattribute_isnot_wholerangle:
+6a89 d8a00428 arg mem_attrib_list ,contw 
+6a8a 18000e00 force 0 ,queue 
+6a8b 20206a9c branch patch_serviceattribute_req_loop 
+
+patch_serviceattribute_judge_wholerangle:
+6a8c e8c08000 ifetch 1 ,contr 
+6a8d c0856d43 bne 0xa ,sdp_invalid_reqest_syntax 
+6a8e e8c10000 ifetch 2 ,contr 
+6a8f 243a6a9a nbranch patch_serviceattribute_judge_wholerangle_false1 ,blank 
+6a90 e8c08000 ifetch 1 ,contr 
+6a91 c0ffea98 bne 0xff ,patch_serviceattribute_judge_wholerangle_false2 
+6a92 e8c08000 ifetch 1 ,contr 
+6a93 c0ffea96 bne 0xff ,patch_serviceattribute_judge_wholerangle_false3 
+6a94 18c08dfb increase -5 ,contr 
+6a95 20206af2 branch serviceattribute_req_all 
+
+patch_serviceattribute_judge_wholerangle_false3:
+6a96 18c08dfb increase -5 ,contr 
+6a97 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_judge_wholerangle_false2:
+6a98 18c08dfc increase -4 ,contr 
+6a99 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_judge_wholerangle_false1:
+6a9a 18c08dfd increase -3 ,contr 
+6a9b 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_req_loop:
+6a9c e8c08000 ifetch 1 ,contr 
+6a9d c004eab1 beq 0x09 ,patch_serviceattribute_req_one_id 
+6a9e c0056a9f beq 0x0a ,patch_serviceattribute_req_range_id 
+
+patch_serviceattribute_req_range_id:
+6a9f e8c10000 ifetch 2 ,contr 
+6aa0 e0a10000 istore 2 ,contw 
+6aa1 18e08e01 increase 1 ,queue 
+6aa2 1ff0a400 byteswap pdata ,regb 
+6aa3 e8c10000 ifetch 2 ,contr 
+6aa4 1ff0fe00 byteswap pdata ,pdata 
+
+patch_serviceattribute_req_range_id_increase:
+6aa5 1a40a401 increase 1 ,regb 
+6aa6 9a467c00 isub regb ,null 
+6aa7 24216aae nbranch patch_serviceattribute_req_range_id_finish ,positive 
+6aa8 1fe22600 copy pdata ,regc 
+6aa9 1a50fe00 byteswap regb ,pdata 
+6aaa e0a10000 istore 2 ,contw 
+6aab 18e08e01 increase 1 ,queue 
+6aac 1a627e00 copy regc ,pdata 
+6aad 20206aa5 branch patch_serviceattribute_req_range_id_increase 
+
+patch_serviceattribute_req_range_id_finish:
+6aae 196097fb increase -5 ,timeup 
+6aaf 1a20a3fb increase -5 ,rega 
+6ab0 20206ab6 branch patch_serviceattribute_req_check_next_id 
+
+patch_serviceattribute_req_one_id:
+6ab1 e8c10000 ifetch 2 ,contr 
+6ab2 e0a10000 istore 2 ,contw 
+6ab3 18e08e01 increase 1 ,queue 
+6ab4 196097fd increase -3 ,timeup 
+6ab5 1a20a3fd increase -3 ,rega 
+
+patch_serviceattribute_req_check_next_id:
+6ab6 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6ab7 2422ea9c nbranch patch_serviceattribute_req_loop ,zero 
+6ab8 196097ff increase -1 ,timeup 
+6ab9 2422ed43 nbranch sdp_invalid_reqest_syntax ,zero 
+6aba 20404878 call l2cap_get_sdp_tx_payload 
+6abb 18a08a0a increase 10 ,contw 
+6abc da200428 arg mem_attrib_list ,rega 
+
+patch_answer_handle_attributelist_next:
+6abd 79200025 set1 mark_ext_patch ,mark 
+6abe 44e24038 bpatch patch38_4 ,mem_patch38 
+6abf 18e27e00 copy queue ,pdata 
+6ac0 203a6ad2 branch answer_handle_attributelist_end ,blank 
+6ac1 ea210000 ifetch 2 ,rega 
+6ac2 203a6ad2 branch answer_handle_attributelist_end ,blank 
+6ac3 98002400 iforce regb 
+6ac4 68020455 fetch 4 ,mem_sdp_record_handle 
+6ac5 98000400 iforce temp 
+6ac6 20406e52 call search_handle_attrib 
+6ac7 203a6acf branch patch_answer_handle_attributelist_notfound ,blank 
+6ac8 18c08dfd increase -3 ,contr 
+6ac9 e8c18000 ifetch 3 ,contr 
+6aca e0a18000 istore 3 ,contw 
+6acb 20406cea call patch_sdp_data_len 
+6acc 203a6acf branch patch_answer_handle_attributelist_notfound ,blank 
+6acd 98007200 iforce loopcnt 
+6ace 20407ecd call memcpy 
+
+patch_answer_handle_attributelist_notfound:
+6acf 1a20a202 increase 2 ,rega 
+6ad0 18e08fff increase -1 ,queue 
+6ad1 20206abd branch patch_answer_handle_attributelist_next 
+
+answer_handle_attributelist_end:
+6ad2 79200025 set1 mark_ext_patch ,mark 
+6ad3 44e2c038 bpatch patch38_5 ,mem_patch38 
+6ad4 18007e00 force 0 ,pdata 
+6ad5 e0a08000 istore 1 ,contw 
+6ad6 18a08bff increase -1 ,contw 
+6ad7 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6ad8 1840fe0a add temp ,10 ,pdata 
+6ad9 98a67e00 isub contw ,pdata 
+6ada 1fe62200 sub pdata ,0 ,rega 
+6adb 1a30fe00 byteswap rega ,pdata 
+6adc 1840a408 add temp ,8 ,regb 
+6add e2410000 istore 2 ,regb 
+6ade 1a20a203 increase 3 ,rega 
+6adf 1a30fe00 byteswap rega ,pdata 
+6ae0 1840a405 add temp ,5 ,regb 
+6ae1 e2410000 istore 2 ,regb 
+6ae2 1a20a203 increase 3 ,rega 
+6ae3 1a30fe00 byteswap rega ,pdata 
+6ae4 1840a403 add temp ,3 ,regb 
+6ae5 e2410000 istore 2 ,regb 
+6ae6 1a20a205 increase 5 ,rega 
+6ae7 1a227e00 copy rega ,pdata 
+6ae8 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6ae9 58000036 setarg 0x36 
+6aea 1840a407 add temp ,7 ,regb 
+6aeb e2408000 istore 1 ,regb 
+6aec 58000005 setarg 5 
+6aed e0408000 istore 1 ,temp 
+6aee 68010447 fetch 2 ,mem_sdp_transactionid 
+6aef 1840a401 add temp ,1 ,regb 
+6af0 e2410000 istore 2 ,regb 
+6af1 20600000 rtn 
+
+serviceattribute_req_all:
+6af2 e8c08000 ifetch 1 ,contr 
+6af3 c0856d43 bne 0xa ,sdp_invalid_reqest_syntax 
+6af4 e8c10000 ifetch 2 ,contr 
+6af5 243a6d43 nbranch sdp_invalid_reqest_syntax ,blank 
+6af6 e8c08000 ifetch 1 ,contr 
+6af7 c0ffed43 bne 0xff ,sdp_invalid_reqest_syntax 
+6af8 e8c08000 ifetch 1 ,contr 
+6af9 c0ffed43 bne 0xff ,sdp_invalid_reqest_syntax 
+6afa 196097fb increase -5 ,timeup 
+6afb e8c08000 ifetch 1 ,contr 
+6afc c0006aff beq 0 ,continue_zero 
+6afd c000eb02 beq 1 ,continue_one_byte 
+6afe c0016b06 beq 2 ,continue_two_byte 
+
+continue_zero:
+6aff 60010444 store 2 ,mem_sdp_continue_byte 
+6b00 196097ff increase -1 ,timeup 
+6b01 20206b0a branch continue_end 
+
+continue_one_byte:
+6b02 e8c08000 ifetch 1 ,contr 
+6b03 60010444 store 2 ,mem_sdp_continue_byte 
+6b04 196097fe increase -2 ,timeup 
+6b05 20206b0a branch continue_end 
+
+continue_two_byte:
+6b06 e8c10000 ifetch 2 ,contr 
+6b07 1ff0fe00 byteswap pdata ,pdata 
+6b08 60010444 store 2 ,mem_sdp_continue_byte 
+6b09 196097fd increase -3 ,timeup 
+
+continue_end:
+6b0a 2422ed3d nbranch sdp_invalid_pdu_size ,zero 
+6b0b 79200025 set1 mark_ext_patch ,mark 
+6b0c 44e34038 bpatch patch38_6 ,mem_patch38 
+6b0d 20406e20 call search_handle 
+6b0e 2422ed3a nbranch sdp_invalid_service_record_handle ,zero 
+6b0f 18c22200 copy contr ,rega 
+6b10 20404878 call l2cap_get_sdp_tx_payload 
+6b11 1a220c00 copy rega ,contr 
+6b12 18a08a03 increase 3 ,contw 
+6b13 18c21600 copy contr ,timeup 
+6b14 20406dea call sdp_get_data 
+6b15 1fe22200 copy pdata ,rega 
+6b16 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b17 1fe22400 copy pdata ,regb 
+6b18 1a227e00 copy rega ,pdata 
+6b19 9a462400 isub regb ,regb 
+6b1a 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6b1b 9a467c00 isub regb ,null 
+6b1c 24216b38 nbranch fragment_sdp ,positive 
+6b1d 78547c00 disable user 
+6b1e 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b1f 203a6b2b branch fisrt_fragment ,blank 
+6b20 99608c00 iadd timeup ,contr 
+6b21 1a40a403 increase 3 ,regb 
+6b22 1a427200 copy regb ,loopcnt 
+6b23 1f227e00 copy loopcnt ,pdata 
+6b24 1fe0fe03 increase 3 ,pdata 
+6b25 1ff0fe00 byteswap pdata ,pdata 
+6b26 e0a10000 istore 2 ,contw 
+6b27 1f227e00 copy loopcnt ,pdata 
+6b28 1ff0fe00 byteswap pdata ,pdata 
+6b29 e0a10000 istore 2 ,contw 
+6b2a 20206b46 branch answer_attributelist_full_loop 
+
+fisrt_fragment:
+6b2b 1a20f206 add rega ,6 ,loopcnt 
+6b2c 20346b2f branch parlength_continue_byte ,user 
+6b2d 1f30fe00 byteswap loopcnt ,pdata 
+6b2e 20206b32 branch parlength_continue_byte_end 
+
+parlength_continue_byte:
+6b2f 1f227e00 copy loopcnt ,pdata 
+6b30 1fe0fe02 increase 2 ,pdata 
+6b31 1ff0fe00 byteswap pdata ,pdata 
+
+parlength_continue_byte_end:
+6b32 e0a10000 istore 2 ,contw 
+6b33 1f20f3fd increase -3 ,loopcnt 
+6b34 1f30fe00 byteswap loopcnt ,pdata 
+6b35 e0a10000 istore 2 ,contw 
+6b36 19620c00 copy timeup ,contr 
+6b37 20206b46 branch answer_attributelist_full_loop 
+
+fragment_sdp:
+6b38 78347c00 enable user 
+6b39 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6b3a 1fe22200 copy pdata ,rega 
+6b3b 1fe27200 copy pdata ,loopcnt 
+6b3c 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b3d 203a6b2b branch fisrt_fragment ,blank 
+6b3e 99608c00 iadd timeup ,contr 
+6b3f 1a227e00 copy rega ,pdata 
+6b40 1fe0fe05 increase 5 ,pdata 
+6b41 1ff0fe00 byteswap pdata ,pdata 
+6b42 e0a10000 istore 2 ,contw 
+6b43 1a227e00 copy rega ,pdata 
+6b44 1ff0fe00 byteswap pdata ,pdata 
+6b45 e0a10000 istore 2 ,contw 
+
+answer_attributelist_full_loop:
+6b46 e8c08000 ifetch 1 ,contr 
+6b47 e0a08000 istore 1 ,contw 
+6b48 c2006b46 loop answer_attributelist_full_loop 
+6b49 24346b51 nbranch last_frag_continue ,user 
+6b4a 18007e02 force 2 ,pdata 
+6b4b e0a08000 istore 1 ,contw 
+6b4c 18c27e00 copy contr ,pdata 
+6b4d 99667e00 isub timeup ,pdata 
+6b4e 1ff0fe00 byteswap pdata ,pdata 
+6b4f e0a10000 istore 2 ,contw 
+6b50 20206b53 branch sdp_frag_end 
+
+last_frag_continue:
+6b51 18007e00 force 0 ,pdata 
+6b52 e0a08000 istore 1 ,contw 
+
+sdp_frag_end:
+6b53 6801029c fetch 2 ,mem_sdp_tx_payload_ptr 
+6b54 98a67e00 isub contw ,pdata 
+6b55 1fe67e00 sub pdata ,0 ,pdata 
+6b56 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6b57 20404878 call l2cap_get_sdp_tx_payload 
+6b58 58000005 setarg 5 
+6b59 e0a08000 istore 1 ,contw 
+6b5a 68010447 fetch 2 ,mem_sdp_transactionid 
+6b5b e0a10000 istore 2 ,contw 
+6b5c 20600000 rtn 
+
+patch_servicesearchattribute_req:
+6b5d 20406d4f call ask_serviceclassid 
+6b5e 2841feff compare 0xff ,temp ,0xff 
+6b5f 2020eb88 branch patch_servicesearchattribute_req_all ,true 
+6b60 e8c10000 ifetch 2 ,contr 
+6b61 1ff0fe00 byteswap pdata ,pdata 
+6b62 1fe0ffee increase -18 ,pdata 
+6b63 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6b64 196097fe increase -2 ,timeup 
+6b65 20406da6 call dataelementtype6 
+6b66 d8a00428 arg mem_attrib_list ,contw 
+6b67 18000e00 force 0 ,queue 
+
+patch_servicesearchattribute_req_loop:
+6b68 e8c18000 ifetch 3 ,contr 
+6b69 c084eb88 bne 0x09 ,patch_servicesearchattribute_req_all 
+
+patch_servicesearchattribute_req_uuid:
+6b6a 1fecfe00 rshift8 pdata ,pdata 
+6b6b e0a10000 istore 2 ,contw 
+6b6c 18e08e01 increase 1 ,queue 
+6b6d 196097fd increase -3 ,timeup 
+6b6e 1a20a3fd increase -3 ,rega 
+6b6f 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6b70 2422eb68 nbranch patch_servicesearchattribute_req_loop ,zero 
+6b71 196097ff increase -1 ,timeup 
+6b72 2422ed43 nbranch sdp_invalid_reqest_syntax ,zero 
+
+patch_servicesearchattribute_req_search:
+6b73 20404878 call l2cap_get_sdp_tx_payload 
+6b74 18a08a0d increase 13 ,contw 
+6b75 68010440 fetch 2 ,mem_uuid_search_pat 
+6b76 98002600 iforce regc 
+6b77 da200428 arg mem_attrib_list ,rega 
+
+patch_answer_attributelist_next:
+6b78 ea220000 ifetch 4 ,rega 
+6b79 203a6bae branch patch_answer_attributelist_end ,blank 
+6b7a ea210000 ifetch 2 ,rega 
+6b7b 98002400 iforce regb 
+6b7c 20406e2e call search_attrib 
+6b7d 203a6b86 branch patch_answer_attributelist_notfound ,blank 
+6b7e 18c08dfd increase -3 ,contr 
+6b7f e8c18000 ifetch 3 ,contr 
+6b80 e0a18000 istore 3 ,contw 
+6b81 20406cea call patch_sdp_data_len 
+6b82 98007200 iforce loopcnt 
+
+patch_answer_attributelist_attrib_loop:
+6b83 e8c08000 ifetch 1 ,contr 
+6b84 e0a08000 istore 1 ,contw 
+6b85 c2006b83 loop patch_answer_attributelist_attrib_loop 
+
+patch_answer_attributelist_notfound:
+6b86 1a20a202 increase 2 ,rega 
+6b87 20206b78 branch patch_answer_attributelist_next 
+
+patch_servicesearchattribute_req_all:
+6b88 79200025 set1 mark_ext_patch ,mark 
+6b89 44e3c038 bpatch patch38_7 ,mem_patch38 
+6b8a e8c08000 ifetch 1 ,contr 
+6b8b e8c08000 ifetch 1 ,contr 
+6b8c 196097fb increase -5 ,timeup 
+6b8d 1a20a3fb increase -5 ,rega 
+6b8e 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6b8f e8c08000 ifetch 1 ,contr 
+6b90 196097ff increase -1 ,timeup 
+6b91 70044400 jam 0 ,mem_sdp_continue_byte 
+6b92 70044500 jam 0 ,mem_sdp_continue_byte + 1 
+6b93 243a6b9f nbranch patch_servicesearchattribute_req_all_continue ,blank 
+6b94 d9600440 arg mem_uuid_search_pat ,timeup 
+6b95 e9610000 ifetch 2 ,timeup 
+6b96 19609602 increase 2 ,timeup 
+6b97 20406e09 call search_uuid 
+6b98 18e27e00 deposit queue 
+6b99 60008474 store 1 ,mem_handle_humber 
+6b9a 203a6dc0 branch empty_ssa_rsp ,blank 
+6b9b d8e00000 arg 0 ,queue 
+6b9c 20404878 call l2cap_get_sdp_tx_payload 
+6b9d 18a08a0a increase 10 ,contw 
+6b9e 20206c05 branch servicesearchattribute_req_next_handle 
+
+patch_servicesearchattribute_req_all_continue:
+6b9f e8c10000 ifetch 2 ,contr 
+6ba0 196097fe increase -2 ,timeup 
+6ba1 1ff0fe00 byteswap pdata ,pdata 
+6ba2 60010444 store 2 ,mem_sdp_continue_byte 
+6ba3 d9600440 arg mem_uuid_search_pat ,timeup 
+6ba4 e9610000 ifetch 2 ,timeup 
+6ba5 19609602 increase 2 ,timeup 
+6ba6 20406e09 call search_uuid 
+6ba7 18e27e00 deposit queue 
+6ba8 60008474 store 1 ,mem_handle_humber 
+6ba9 203a6dc0 branch empty_ssa_rsp ,blank 
+6baa d8e00000 arg 0 ,queue 
+6bab 20404878 call l2cap_get_sdp_tx_payload 
+6bac 18a08a07 increase 7 ,contw 
+6bad 20206c14 branch servicesearchattribute_req_next_handle_continue 
+
+patch_answer_attributelist_end:
+6bae 18007e00 force 0 ,pdata 
+6baf e0a08000 istore 1 ,contw 
+6bb0 18a08bff increase -1 ,contw 
+6bb1 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6bb2 1840fe0d add temp ,13 ,pdata 
+6bb3 98a67e00 isub contw ,pdata 
+6bb4 2022ebd2 branch patch_no_attribute_return ,zero 
+6bb5 1fe67e00 sub pdata ,0 ,pdata 
+6bb6 1840a40c add temp ,12 ,regb 
+6bb7 e2408000 istore 1 ,regb 
+6bb8 1fe0fe03 increase 3 ,pdata 
+6bb9 1840a409 add temp ,9 ,regb 
+6bba e2408000 istore 1 ,regb 
+6bbb 1fe0fe03 increase 3 ,pdata 
+6bbc 1ff0fe00 byteswap pdata ,pdata 
+6bbd 1840a405 add temp ,5 ,regb 
+6bbe e2410000 istore 2 ,regb 
+6bbf 1fecfe00 rshift8 pdata ,pdata 
+6bc0 1fe0fe03 increase 3 ,pdata 
+6bc1 1ff0fe00 byteswap pdata ,pdata 
+6bc2 1840a403 add temp ,3 ,regb 
+6bc3 e2410000 istore 2 ,regb 
+6bc4 1fecfe00 rshift8 pdata ,pdata 
+6bc5 1fe0fe05 increase 5 ,pdata 
+6bc6 6000829e store 1 ,mem_sdp_tx_pkt_length 
+6bc7 68010447 fetch 2 ,mem_sdp_transactionid 
+6bc8 1840a401 add temp ,1 ,regb 
+6bc9 e2410000 istore 2 ,regb 
+6bca 58000007 setarg 7 
+6bcb e0408000 istore 1 ,temp 
+6bcc 58000036 setarg 0x0036 
+6bcd 1840a407 add temp ,7 ,regb 
+6bce e2410000 istore 2 ,regb 
+6bcf 1840a40a add temp ,10 ,regb 
+6bd0 e2410000 istore 2 ,regb 
+6bd1 20600000 rtn 
+
+patch_no_attribute_return:
+6bd2 70029e0a jam 10 ,mem_sdp_tx_pkt_length 
+6bd3 20404878 call l2cap_get_sdp_tx_payload 
+6bd4 58000007 setarg 7 
+6bd5 e0a08000 istore 1 ,contw 
+6bd6 68010447 fetch 2 ,mem_sdp_transactionid 
+6bd7 e0a10000 istore 2 ,contw 
+6bd8 58000500 setarg 0x0500 
+6bd9 e0a10000 istore 2 ,contw 
+6bda 58000200 setarg 0x0200 
+6bdb e0a10000 istore 2 ,contw 
+6bdc 58000035 setarg 0x000035 
+6bdd e0a18000 istore 3 ,contw 
+6bde 20600000 rtn 
+
+servicesearchattribute_req_attributelist_loop:
+6bdf e8c08000 ifetch 1 ,contr 
+6be0 e0a08000 istore 1 ,contw 
+6be1 1a40a401 increase 1 ,regb 
+6be2 1a20a3ff increase -1 ,rega 
+6be3 2022ebe5 branch servicesearchattribute_req_check_next_ctn ,zero 
+6be4 c2006bdf loop servicesearchattribute_req_attributelist_loop 
+
+servicesearchattribute_req_check_next_ctn:
+6be5 18a21600 copy contw ,timeup 
+6be6 1a427e00 copy regb ,pdata 
+6be7 60010444 store 2 ,mem_sdp_continue_byte 
+6be8 1a227e00 copy rega ,pdata 
+6be9 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6bea 203a6c26 branch answer_attributelist_with_ctn_bytes ,blank 
+6beb 20346c85 branch answer_attributelist_with_ctn_end ,user 
+6bec 19620a00 copy timeup ,contw 
+
+servicesearchattribute_req_check_handle:
+6bed 18e08e01 increase 1 ,queue 
+6bee 68008474 fetch 1 ,mem_handle_humber 
+6bef 98e67c00 isub queue ,null 
+6bf0 2422ec05 nbranch servicesearchattribute_req_next_handle ,zero 
+6bf1 20206ca4 branch answer_attributelist_end_long 
+
+servicesearchattribute_req_attributelist_loop_continue:
+6bf2 e8c08000 ifetch 1 ,contr 
+6bf3 e0a08000 istore 1 ,contw 
+6bf4 1a40a401 increase 1 ,regb 
+6bf5 1a20a3ff increase -1 ,rega 
+6bf6 2022ebf8 branch servicesearchattribute_req_check_next_ctn_continue ,zero 
+6bf7 c2006bf2 loop servicesearchattribute_req_attributelist_loop_continue 
+
+servicesearchattribute_req_check_next_ctn_continue:
+6bf8 18a21600 copy contw ,timeup 
+6bf9 1a427e00 copy regb ,pdata 
+6bfa 60010444 store 2 ,mem_sdp_continue_byte 
+6bfb 1a227e00 copy rega ,pdata 
+6bfc 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6bfd 203a6c61 branch answer_attributelist_with_ctn_bytes_continue ,blank 
+6bfe 20346c85 branch answer_attributelist_with_ctn_end ,user 
+6bff 19620a00 copy timeup ,contw 
+
+servicesearchattribute_req_check_handle_continue:
+6c00 18e08e01 increase 1 ,queue 
+6c01 68008474 fetch 1 ,mem_handle_humber 
+6c02 98e67c00 isub queue ,null 
+6c03 2422ec14 nbranch servicesearchattribute_req_next_handle_continue ,zero 
+6c04 20206ccc branch answer_attributelist_end_long_continue 
+
+servicesearchattribute_req_next_handle:
+6c05 d8c0045c arg mem_handle_list ,contr 
+6c06 18ebfe00 lshift2 queue ,pdata 
+6c07 98c08c00 iadd contr ,contr 
+6c08 e8c20000 ifetch 4 ,contr 
+6c09 98000400 iforce temp 
+6c0a 20406e20 call search_handle 
+6c0b 18c21600 copy contr ,timeup 
+6c0c 20406dea call sdp_get_data 
+6c0d 1fe0f203 add pdata ,3 ,loopcnt 
+6c0e 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6c0f 1fe22200 copy pdata ,rega 
+6c10 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c11 1fe22400 copy pdata ,regb 
+6c12 19620c00 copy timeup ,contr 
+6c13 20206bdf branch servicesearchattribute_req_attributelist_loop 
+
+servicesearchattribute_req_next_handle_continue:
+6c14 d8c0045c arg mem_handle_list ,contr 
+6c15 18ebfe00 lshift2 queue ,pdata 
+6c16 98c08c00 iadd contr ,contr 
+6c17 e8c20000 ifetch 4 ,contr 
+6c18 98000400 iforce temp 
+6c19 20406e20 call search_handle 
+6c1a 18c21600 copy contr ,timeup 
+6c1b 20406dea call sdp_get_data 
+6c1c 1fe0fe03 add pdata ,3 ,pdata 
+6c1d 68090444 fetcht 2 ,mem_sdp_continue_byte 
+6c1e 98467200 isub temp ,loopcnt 
+6c1f 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6c20 1fe22200 copy pdata ,rega 
+6c21 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c22 1fe22400 copy pdata ,regb 
+6c23 19620c00 copy timeup ,contr 
+6c24 98c08c00 iadd contr ,contr 
+6c25 20206bf2 branch servicesearchattribute_req_attributelist_loop_continue 
+
+answer_attributelist_with_ctn_bytes:
+6c26 d8e00000 arg 0 ,queue 
+6c27 da400000 arg 0 ,regb 
+
+answer_attributelist_calc_attribute_length:
+6c28 d8c0045c arg mem_handle_list ,contr 
+6c29 18ebfe00 lshift2 queue ,pdata 
+6c2a 98c08c00 iadd contr ,contr 
+6c2b e8c20000 ifetch 4 ,contr 
+6c2c 98000400 iforce temp 
+6c2d 20406e20 call search_handle 
+6c2e 20406dea call sdp_get_data 
+6c2f 1fe0fe03 add pdata ,3 ,pdata 
+6c30 9a40a400 iadd regb ,regb 
+6c31 18e08e01 increase 1 ,queue 
+6c32 68008474 fetch 1 ,mem_handle_humber 
+6c33 98e67c00 isub queue ,null 
+6c34 2422ec28 nbranch answer_attributelist_calc_attribute_length ,zero 
+6c35 19620a00 copy timeup ,contw 
+6c36 18007e02 force 2 ,pdata 
+6c37 e0a08000 istore 1 ,contw 
+6c38 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c39 1ff0fe00 byteswap pdata ,pdata 
+6c3a e0a10000 istore 2 ,contw 
+6c3b 18a08bfd increase -3 ,contw 
+6c3c 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c3d 1840fe0a add temp ,10 ,pdata 
+6c3e 98a67e00 isub contw ,pdata 
+6c3f 1fe67e00 sub pdata ,0 ,pdata 
+6c40 98002200 iforce rega 
+6c41 1a427e00 deposit regb 
+6c42 1840a409 add temp ,9 ,regb 
+6c43 e2408000 istore 1 ,regb 
+6c44 1fecfe00 rshift8 pdata ,pdata 
+6c45 1840a408 add temp ,8 ,regb 
+6c46 e2408000 istore 1 ,regb 
+6c47 1a20a203 increase 3 ,rega 
+6c48 1a227e00 deposit rega 
+6c49 1840a406 add temp ,6 ,regb 
+6c4a e2408000 istore 1 ,regb 
+6c4b 1fecfe00 rshift8 pdata ,pdata 
+6c4c 1840a405 add temp ,5 ,regb 
+6c4d e2408000 istore 1 ,regb 
+6c4e 1a20a205 increase 5 ,rega 
+6c4f 1a227e00 deposit rega 
+6c50 1840a404 add temp ,4 ,regb 
+6c51 e2408000 istore 1 ,regb 
+6c52 1fecfe00 rshift8 pdata ,pdata 
+6c53 1840a403 add temp ,3 ,regb 
+6c54 e2408000 istore 1 ,regb 
+6c55 1a20a205 increase 5 ,rega 
+6c56 1a227e00 deposit rega 
+6c57 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c58 58000007 setarg 7 
+6c59 e0408000 istore 1 ,temp 
+6c5a 58000036 setarg 0x36 
+6c5b 1840a407 add temp ,7 ,regb 
+6c5c e2408000 istore 1 ,regb 
+6c5d 1840a401 add temp ,1 ,regb 
+6c5e 68010447 fetch 2 ,mem_sdp_transactionid 
+6c5f e2410000 istore 2 ,regb 
+6c60 20600000 rtn 
+
+answer_attributelist_with_ctn_bytes_continue:
+6c61 d8e00000 arg 0 ,queue 
+6c62 da400000 arg 0 ,regb 
+
+answer_attributelist_calc_attribute_length_continue:
+6c63 19620a00 copy timeup ,contw 
+6c64 18007e02 force 2 ,pdata 
+6c65 e0a08000 istore 1 ,contw 
+6c66 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c67 1ff0fe00 byteswap pdata ,pdata 
+6c68 e0a10000 istore 2 ,contw 
+6c69 18a08bfd increase -3 ,contw 
+6c6a 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c6b 1840fe07 add temp ,7 ,pdata 
+6c6c 98a67e00 isub contw ,pdata 
+6c6d 1fe67e00 sub pdata ,0 ,pdata 
+6c6e 98002200 iforce rega 
+6c6f 1a227e00 deposit rega 
+6c70 1840a406 add temp ,6 ,regb 
+6c71 e2408000 istore 1 ,regb 
+6c72 1fecfe00 rshift8 pdata ,pdata 
+6c73 1840a405 add temp ,5 ,regb 
+6c74 e2408000 istore 1 ,regb 
+6c75 1a20a205 increase 5 ,rega 
+6c76 1a227e00 deposit rega 
+6c77 1840a404 add temp ,4 ,regb 
+6c78 e2408000 istore 1 ,regb 
+6c79 1fecfe00 rshift8 pdata ,pdata 
+6c7a 1840a403 add temp ,3 ,regb 
+6c7b e2408000 istore 1 ,regb 
+6c7c 1a20a205 increase 5 ,rega 
+6c7d 1a227e00 deposit rega 
+6c7e 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c7f 58000007 setarg 7 
+6c80 e0408000 istore 1 ,temp 
+6c81 1840a401 add temp ,1 ,regb 
+6c82 68010447 fetch 2 ,mem_sdp_transactionid 
+6c83 e2410000 istore 2 ,regb 
+6c84 20600000 rtn 
+
+answer_attributelist_with_ctn_end:
+6c85 19620a00 copy timeup ,contw 
+6c86 18007e00 force 0 ,pdata 
+6c87 e0a08000 istore 1 ,contw 
+6c88 18a08bff increase -1 ,contw 
+6c89 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c8a 1840fe07 add temp ,7 ,pdata 
+6c8b 98a67e00 isub contw ,pdata 
+6c8c 1fe67e00 sub pdata ,0 ,pdata 
+6c8d 98002200 iforce rega 
+6c8e 1a227e00 deposit rega 
+6c8f 1840a406 add temp ,6 ,regb 
+6c90 e2408000 istore 1 ,regb 
+6c91 1fecfe00 rshift8 pdata ,pdata 
+6c92 1840a405 add temp ,5 ,regb 
+6c93 e2408000 istore 1 ,regb 
+6c94 1a20a203 increase 3 ,rega 
+6c95 1a227e00 deposit rega 
+6c96 1840a404 add temp ,4 ,regb 
+6c97 e2408000 istore 1 ,regb 
+6c98 1fecfe00 rshift8 pdata ,pdata 
+6c99 1840a403 add temp ,3 ,regb 
+6c9a e2408000 istore 1 ,regb 
+6c9b 1a20a205 increase 5 ,rega 
+6c9c 1a227e00 deposit rega 
+6c9d 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c9e 58000007 setarg 7 
+6c9f e0408000 istore 1 ,temp 
+6ca0 68010447 fetch 2 ,mem_sdp_transactionid 
+6ca1 1840a401 add temp ,1 ,regb 
+6ca2 e2410000 istore 2 ,regb 
+6ca3 20600000 rtn 
+
+answer_attributelist_end_long:
+6ca4 18007e00 force 0 ,pdata 
+6ca5 e0a08000 istore 1 ,contw 
+6ca6 18a08bff increase -1 ,contw 
+6ca7 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6ca8 1840fe0a add temp ,10 ,pdata 
+6ca9 98a67e00 isub contw ,pdata 
+6caa 1fe67e00 sub pdata ,0 ,pdata 
+6cab 98002200 iforce rega 
+6cac 1a227e00 deposit rega 
+6cad 1840a409 add temp ,9 ,regb 
+6cae e2408000 istore 1 ,regb 
+6caf 1fecfe00 rshift8 pdata ,pdata 
+6cb0 1840a408 add temp ,8 ,regb 
+6cb1 e2408000 istore 1 ,regb 
+6cb2 1a20a203 increase 3 ,rega 
+6cb3 1a227e00 deposit rega 
+6cb4 1840a406 add temp ,6 ,regb 
+6cb5 e2408000 istore 1 ,regb 
+6cb6 1fecfe00 rshift8 pdata ,pdata 
+6cb7 1840a405 add temp ,5 ,regb 
+6cb8 e2408000 istore 1 ,regb 
+6cb9 1a20a203 increase 3 ,rega 
+6cba 1a227e00 deposit rega 
+6cbb 1840a404 add temp ,4 ,regb 
+6cbc e2408000 istore 1 ,regb 
+6cbd 1fecfe00 rshift8 pdata ,pdata 
+6cbe 1840a403 add temp ,3 ,regb 
+6cbf e2408000 istore 1 ,regb 
+6cc0 1a20a205 increase 5 ,rega 
+6cc1 1a227e00 deposit rega 
+6cc2 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6cc3 58000036 setarg 0x36 
+6cc4 1840a407 add temp ,7 ,regb 
+6cc5 e2408000 istore 1 ,regb 
+6cc6 58000007 setarg 7 
+6cc7 e0408000 istore 1 ,temp 
+6cc8 68010447 fetch 2 ,mem_sdp_transactionid 
+6cc9 1840a401 add temp ,1 ,regb 
+6cca e2410000 istore 2 ,regb 
+6ccb 20600000 rtn 
+
+answer_attributelist_end_long_continue:
+6ccc 18007e00 force 0 ,pdata 
+6ccd e0a08000 istore 1 ,contw 
+6cce 18a08bff increase -1 ,contw 
+6ccf 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6cd0 1840fe07 add temp ,7 ,pdata 
+6cd1 98a67e00 isub contw ,pdata 
+6cd2 1fe67e00 sub pdata ,0 ,pdata 
+6cd3 98002200 iforce rega 
+6cd4 1a227e00 deposit rega 
+6cd5 1840a406 add temp ,6 ,regb 
+6cd6 e2408000 istore 1 ,regb 
+6cd7 1fecfe00 rshift8 pdata ,pdata 
+6cd8 1840a405 add temp ,5 ,regb 
+6cd9 e2408000 istore 1 ,regb 
+6cda 1a20a203 increase 3 ,rega 
+6cdb 1a227e00 deposit rega 
+6cdc 1840a404 add temp ,4 ,regb 
+6cdd e2408000 istore 1 ,regb 
+6cde 1fecfe00 rshift8 pdata ,pdata 
+6cdf 1840a403 add temp ,3 ,regb 
+6ce0 e2408000 istore 1 ,regb 
+6ce1 1a20a205 increase 5 ,rega 
+6ce2 1a227e00 deposit rega 
+6ce3 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6ce4 58000007 setarg 7 
+6ce5 e0408000 istore 1 ,temp 
+6ce6 68010447 fetch 2 ,mem_sdp_transactionid 
+6ce7 1840a401 add temp ,1 ,regb 
+6ce8 e2410000 istore 2 ,regb 
+6ce9 20600000 rtn 
+
+patch_sdp_data_len:
+6cea 18c21600 copy contr ,timeup 
+6ceb e8c08000 ifetch 1 ,contr 
+6cec 1fe17207 and pdata ,0x07 ,loopcnt 
+6ced 1fe97e00 rshift3 pdata ,pdata 
+6cee c0036cf3 beq 6 ,patch_sdp_data_len_6 
+6cef c000ede2 beq 1 ,sdp_data_len_1 
+6cf0 c0026de7 beq 4 ,sdp_data_len_6 
+6cf1 c002ede5 beq 5 ,sdp_data_len_5 
+6cf2 20206de0 branch sdp_data_len_rtn 
+
+patch_sdp_data_len_6:
+6cf3 20406cf5 call patch_sdp_get_data_6 
+6cf4 20206de0 branch sdp_data_len_rtn 
+
+patch_sdp_get_data_6:
+6cf5 1f227e00 deposit loopcnt 
+6cf6 c002ecfa beq 5 ,patch_sdp_get_data_6_8bit 
+6cf7 c0036cfd beq 6 ,patch_sdp_get_data_6_16bit 
+6cf8 18007203 force 3 ,loopcnt 
+6cf9 20206df1 branch sdp_get_data_1 
+
+patch_sdp_get_data_6_8bit:
+6cfa e8c08000 ifetch 1 ,contr 
+6cfb 1fe0fe02 increase 2 ,pdata 
+6cfc 20600000 rtn 
+
+patch_sdp_get_data_6_16bit:
+6cfd e8c10000 ifetch 2 ,contr 
+6cfe 1ff0fe00 byteswap pdata ,pdata 
+6cff 1fe0fe03 increase 3 ,pdata 
+6d00 20600000 rtn 
+
+sdp_send_spp_request:
+6d01 20404878 call l2cap_get_sdp_tx_payload 
+6d02 1fe20a00 copy pdata ,contw 
+6d03 58000006 setarg 6 
+6d04 e0a08000 istore 1 ,contw 
+6d05 5800006e setarg sdp_tid_spp 
+6d06 e0a10000 istore 2 ,contw 
+6d07 58000f00 setarg 0x0f00 
+6d08 e0a10000 istore 2 ,contw 
+6d09 581a0535 setarg 0x1a0535 
+6d0a e0a18000 istore 3 ,contw 
+6d0b 58000111 setarg 0x0111 
+6d0c 1ff07e00 lshift16 pdata ,pdata 
+6d0d e0a20000 istore 4 ,contw 
+6d0e 58002600 setarg 0x2600 
+6d0f e0a10000 istore 2 ,contw 
+6d10 58000335 setarg 0x0335 
+6d11 e0a10000 istore 2 ,contw 
+6d12 58000009 setarg 0x0009 
+6d13 e0a10000 istore 2 ,contw 
+6d14 58000004 setarg 0x0004 
+6d15 e0a10000 istore 2 ,contw 
+6d16 70029e14 jam 0x14 ,mem_sdp_tx_pkt_length 
+6d17 20600000 rtn 
+
+servicesearchattribute_res:
+6d18 18c20400 copy contr ,temp 
+6d19 68010447 fetch 2 ,mem_sdp_transactionid 
+6d1a c0376d1c beq sdp_tid_spp ,servicesearchattribute_res_spp 
+6d1b 20206d25 branch srchfail 
+
+servicesearchattribute_res_spp:
+6d1c 18420c00 copy temp ,contr 
+6d1d 196097fd increase -3 ,timeup 
+6d1e 19627e00 copy timeup ,pdata 
+6d1f c0016d25 beq 2 ,srchfail 
+6d20 20406d26 call find_rfcomm_channel_number 
+6d21 20740000 rtn user 
+6d22 6000c5fc store 1 ,mem_remote_spp_channel 
+6d23 7002ae17 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+6d24 20600000 rtn 
+
+srchfail:
+6d25 20600000 rtn 
+
+find_rfcomm_channel_number:
+6d26 78347c00 enable user 
+6d27 1fe27200 copy pdata ,loopcnt 
+6d28 d8400400 arg 0x0400 ,temp 
+
+find_rfcomm_channel_number_loop:
+6d29 e8c10000 ifetch 2 ,contr 
+6d2a 98467c00 isub temp ,null 
+6d2b 2022ed2f branch find_rfcomm_channel_number_find_adl ,zero 
+6d2c 18c08dff increase -1 ,contr 
+6d2d c2006d29 loop find_rfcomm_channel_number_loop 
+6d2e 20600000 rtn 
+
+find_rfcomm_channel_number_find_adl:
+6d2f d8400300 arg 0x0300 ,temp 
+
+find_rfcomm_channel_number_loop2:
+6d30 e8c10000 ifetch 2 ,contr 
+6d31 98467c00 isub temp ,null 
+6d32 2022ed36 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+6d33 18c08dff increase -1 ,contr 
+6d34 c2006d30 loop find_rfcomm_channel_number_loop2 
+6d35 20600000 rtn 
+
+find_rfcomm_channel_number_find_rfcomm:
+6d36 e8c08000 ifetch 1 ,contr 
+6d37 e8c08000 ifetch 1 ,contr 
+6d38 78547c00 disable user 
+6d39 20600000 rtn 
+
+sdp_invalid_service_record_handle:
+6d3a 58000200 setarg 0x0200 
+6d3b 6001044d store 2 ,mem_sdp_error_code 
+6d3c 20206d45 branch sdp_error_response 
+
+sdp_invalid_pdu_size:
+6d3d 58000400 setarg 0x0400 
+6d3e 6001044d store 2 ,mem_sdp_error_code 
+6d3f 20206d45 branch sdp_error_response 
+
+sdp_insufficient_resource:
+6d40 58000600 setarg 0x0600 
+6d41 6001044d store 2 ,mem_sdp_error_code 
+6d42 20206d45 branch sdp_error_response 
+
+sdp_invalid_reqest_syntax:
+6d43 58000300 setarg 0x0300 
+6d44 6001044d store 2 ,mem_sdp_error_code 
+
+sdp_error_response:
+6d45 20404878 call l2cap_get_sdp_tx_payload 
+6d46 e0a08000 istore 1 ,contw 
+6d47 68010447 fetch 2 ,mem_sdp_transactionid 
+6d48 e0a10000 istore 2 ,contw 
+6d49 58000200 setarg 0x0200 
+6d4a e0a10000 istore 2 ,contw 
+6d4b 6801044d fetch 2 ,mem_sdp_error_code 
+6d4c e0a10000 istore 2 ,contw 
+6d4d 70029e07 jam 7 ,mem_sdp_tx_pkt_length 
+6d4e 20600000 rtn 
+
+ask_serviceclassid:
+6d4f 79200025 set1 mark_ext_patch ,mark 
+6d50 44e44039 bpatch patch39_0 ,mem_patch39 
+6d51 18000400 force 0 ,temp 
+6d52 d8a00440 arg mem_uuid_search_pat ,contw 
+6d53 20406da6 call dataelementtype6 
+6d54 2022eda4 branch asksrv_error ,zero 
+
+classidloop:
+6d55 e8c08000 ifetch 1 ,contr 
+6d56 1a20a3ff increase -1 ,rega 
+6d57 196097ff increase -1 ,timeup 
+6d58 2fe1f018 compare 0x18 ,pdata ,0xf8 
+6d59 2420eda4 nbranch asksrv_error ,true 
+6d5a 2fe00e04 compare 0x04 ,pdata ,0x07 
+6d5b 2420ed72 nbranch cmp032 ,true 
+6d5c 18000401 force 1 ,temp 
+
+skip2bytes:
+6d5d e8c08000 ifetch 1 ,contr 
+6d5e 1a20a3ff increase -1 ,rega 
+6d5f 196097ff increase -1 ,timeup 
+6d60 c0806d66 bne 0x00 ,frstbwrong 
+6d61 e8c08000 ifetch 1 ,contr 
+6d62 1a20a3ff increase -1 ,rega 
+6d63 196097ff increase -1 ,timeup 
+6d64 c0006d77 beq 0x00 ,cmpuuid 
+6d65 20206d69 branch scndbwrong 
+
+frstbwrong:
+6d66 18c08c01 increase 1 ,contr 
+6d67 1a20a3ff increase -1 ,rega 
+6d68 196097ff increase -1 ,timeup 
+
+scndbwrong:
+6d69 18c08c02 increase 2 ,contr 
+6d6a 1a20a3fe increase -2 ,rega 
+6d6b 196097fe increase -2 ,timeup 
+6d6c 2841fe00 compare 0x00 ,temp ,0xff 
+6d6d 2020ed9f branch loopornot ,true 
+6d6e 18c08c0c increase 12 ,contr 
+6d6f 1a20a3f4 increase -12 ,rega 
+6d70 196097f4 increase -12 ,timeup 
+6d71 20206d9f branch loopornot 
+
+cmp032:
+6d72 2fe00e02 compare 0x02 ,pdata ,0x07 
+6d73 2420ed75 nbranch cmp016 ,true 
+6d74 20206d5d branch skip2bytes 
+
+cmp016:
+6d75 2fe00e01 compare 0x01 ,pdata ,0x07 
+6d76 2420eda4 nbranch asksrv_error ,true 
+
+cmpuuid:
+6d77 e8c10000 ifetch 2 ,contr 
+6d78 1a20a3fe increase -2 ,rega 
+6d79 196097fe increase -2 ,timeup 
+6d7a e0a10000 istore 2 ,contw 
+
+uuidsize:
+6d7b 2841fe00 compare 0x00 ,temp ,0xff 
+6d7c 2020ed9f branch loopornot ,true 
+6d7d 18c20400 copy contr ,temp 
+6d7e 79200025 set1 mark_ext_patch ,mark 
+6d7f 44e4c039 bpatch patch39_1 ,mem_patch39 
+6d80 e8c08000 ifetch 1 ,contr 
+6d81 c0806d98 bne 0x00 ,wrong12b 
+6d82 e8c08000 ifetch 1 ,contr 
+6d83 c0806d98 bne 0x00 ,wrong12b 
+6d84 e8c08000 ifetch 1 ,contr 
+6d85 c0886d98 bne 0x10 ,wrong12b 
+6d86 e8c08000 ifetch 1 ,contr 
+6d87 c0806d98 bne 0x00 ,wrong12b 
+6d88 e8c08000 ifetch 1 ,contr 
+6d89 c0c06d98 bne 0x80 ,wrong12b 
+6d8a e8c08000 ifetch 1 ,contr 
+6d8b c0806d98 bne 0x00 ,wrong12b 
+6d8c e8c08000 ifetch 1 ,contr 
+6d8d c0806d98 bne 0x00 ,wrong12b 
+6d8e e8c08000 ifetch 1 ,contr 
+6d8f c0c06d98 bne 0x80 ,wrong12b 
+6d90 e8c08000 ifetch 1 ,contr 
+6d91 c0afed98 bne 0x5f ,wrong12b 
+6d92 e8c08000 ifetch 1 ,contr 
+6d93 c0cded98 bne 0x9b ,wrong12b 
+6d94 e8c08000 ifetch 1 ,contr 
+6d95 c09a6d98 bne 0x34 ,wrong12b 
+6d96 e8c08000 ifetch 1 ,contr 
+6d97 c07ded9d beq 0xfb ,chck12dn 
+
+wrong12b:
+6d98 18420c00 copy temp ,contr 
+
+wrong12b1:
+6d99 18c08c0c increase 12 ,contr 
+6d9a 18000e00 force 0x00 ,queue 
+6d9b 18000400 force 0x00 ,temp 
+6d9c 20206d9d branch chck12dn 
+
+chck12dn:
+6d9d 196097f4 increase -12 ,timeup 
+6d9e 1a20a3f4 increase -12 ,rega 
+
+loopornot:
+6d9f 2a21fe00 compare 0x00 ,rega ,0xff 
+6da0 2420ed55 nbranch classidloop ,true 
+6da1 18007e00 force 0 ,pdata 
+6da2 e0a10000 istore 2 ,contw 
+6da3 20600000 rtn ,
+
+asksrv_error:
+6da4 d84000ff arg 0xff ,temp 
+6da5 20600000 rtn 
+
+dataelementtype6:
+6da6 e8c08000 ifetch 1 ,contr 
+6da7 196097ff increase -1 ,timeup 
+6da8 2fe1f030 compare 0x30 ,pdata ,0xf8 
+6da9 2420edbb nbranch dsize_error ,true 
+6daa 2fe00e07 compare 0x07 ,pdata ,0x07 
+6dab 2020edb4 branch dsize32 ,true 
+6dac 2fe00e06 compare 0x06 ,pdata ,0x07 
+6dad 2020edb6 branch dsize16 ,true 
+6dae 2fe00e05 compare 0x05 ,pdata ,0x07 
+6daf 2420edbb nbranch dsize_error ,true 
+6db0 e8c08000 ifetch 1 ,contr 
+6db1 1fe22200 copy pdata ,rega 
+6db2 196097ff increase -1 ,timeup 
+6db3 20206db9 branch dsize 
+
+dsize32:
+6db4 18c08c02 increase 2 ,contr 
+6db5 196097fe increase -2 ,timeup 
+
+dsize16:
+6db6 e8c10000 ifetch 2 ,contr 
+6db7 1ff0a200 byteswap pdata ,rega 
+6db8 196097fe increase -2 ,timeup 
+
+dsize:
+6db9 18007e01 force 0x01 ,pdata 
+6dba 20600000 rtn 
+
+dsize_error:
+6dbb 18007e00 force 0x00 ,pdata 
+6dbc 20600000 rtn 
+
+empth_sa_rsp:
+6dbd 58000003 setarg 0x03 
+6dbe 60008446 store 1 ,mem_sdp_pduid 
+6dbf 20206dc2 branch empty_response 
+
+empty_ssa_rsp:
+6dc0 58000007 setarg 0x07 
+6dc1 60008446 store 1 ,mem_sdp_pduid 
+
+empty_response:
+6dc2 20404878 call l2cap_get_sdp_tx_payload 
+6dc3 68008446 fetch 1 ,mem_sdp_pduid 
+6dc4 e0a08000 istore 1 ,contw 
+6dc5 1fe22400 copy pdata ,regb 
+6dc6 68010447 fetch 2 ,mem_sdp_transactionid 
+6dc7 e0a10000 istore 2 ,contw 
+6dc8 58000500 setarg 0x0500 
+6dc9 e0a10000 istore 2 ,contw 
+6dca 2a41fe05 compare 0x05 ,regb ,0xff 
+6dcb 2020edd2 branch fullsearch ,true 
+6dcc 2a41fe07 compare 0x07 ,regb ,0xff 
+6dcd 2020edd2 branch fullsearch ,true 
+6dce 58000000 setarg 0x000000 
+6dcf e0a18000 istore 3 ,contw 
+6dd0 e0a10000 istore 2 ,contw 
+6dd1 20206dd6 branch outempty 
+
+fullsearch:
+6dd2 58350200 setarg 0x350200 
+6dd3 e0a18000 istore 3 ,contw 
+6dd4 58000000 setarg 0 
+6dd5 e0a10000 istore 2 ,contw 
+
+outempty:
+6dd6 70029e0a jam 10 ,mem_sdp_tx_pkt_length 
+6dd7 20600000 rtn 
+
+sdp_data_len:
+6dd8 18c21600 copy contr ,timeup 
+6dd9 e8c08000 ifetch 1 ,contr 
+6dda 1fe17207 and pdata ,0x7 ,loopcnt 
+6ddb 1fe97e00 rshift3 pdata ,pdata 
+6ddc c0036de7 beq 6 ,sdp_data_len_6 
+6ddd c000ede2 beq 1 ,sdp_data_len_1 
+6dde c0026de7 beq 4 ,sdp_data_len_6 
+6ddf c002ede5 beq 5 ,sdp_data_len_5 
+
+sdp_data_len_rtn:
+6de0 19620c00 copy timeup ,contr 
+6de1 20600000 rtn 
+
+sdp_data_len_1:
+6de2 20406e03 call sdp_data_size 
+6de3 1fe0fe01 increase 1 ,pdata 
+6de4 20206de0 branch sdp_data_len_rtn 
+
+sdp_data_len_5:
+6de5 18007e02 force 2 ,pdata 
+6de6 20206de0 branch sdp_data_len_rtn 
+
+sdp_data_len_6:
+6de7 20406df9 call sdp_get_data_6 
+6de8 1fe0fe02 increase 2 ,pdata 
+6de9 20206de0 branch sdp_data_len_rtn 
+
+sdp_get_data:
+6dea e8c08000 ifetch 1 ,contr 
+6deb 1fe17207 and pdata ,0x7 ,loopcnt 
+6dec 1fe97e00 rshift3 pdata ,pdata 
+6ded c0036df9 beq 6 ,sdp_get_data_6 
+6dee c000edf1 beq 1 ,sdp_get_data_1 
+6def c002edfe beq 5 ,sdp_get_data_6_8bit 
+6df0 20600000 rtn 
+
+sdp_get_data_1:
+6df1 20406e03 call sdp_data_size 
+6df2 98007200 iforce loopcnt 
+6df3 18000400 force 0 ,temp 
+
+sdp_get_data_1_loop:
+6df4 184d0400 lshift8 temp ,temp 
+6df5 e8c08000 ifetch 1 ,contr 
+6df6 98418400 ior temp ,temp 
+6df7 c2006df4 loop sdp_get_data_1_loop 
+6df8 20600000 rtn 
+
+sdp_get_data_6:
+6df9 1f227e00 deposit loopcnt 
+6dfa c002edfe beq 5 ,sdp_get_data_6_8bit 
+6dfb c0036e00 beq 6 ,sdp_get_data_6_16bit 
+6dfc 18007203 force 3 ,loopcnt 
+6dfd 20206df1 branch sdp_get_data_1 
+
+sdp_get_data_6_8bit:
+6dfe e8c08000 ifetch 1 ,contr 
+6dff 20600000 rtn 
+
+sdp_get_data_6_16bit:
+6e00 e8c10000 ifetch 2 ,contr 
+6e01 1ff0fe00 byteswap pdata ,pdata 
+6e02 20600000 rtn 
+
+sdp_data_size:
+6e03 18007e01 force 1 ,pdata 
+6e04 1f227c00 copy loopcnt ,null 
+6e05 20628000 rtn zero 
+
+sdp_data_size_loop:
+6e06 1fe3fe00 lshift pdata ,pdata 
+6e07 c2006e06 loop sdp_data_size_loop 
+6e08 20600000 rtn 
+
+search_uuid:
+6e09 98002600 iforce regc 
+6e0a 79200025 set1 mark_ext_patch ,mark 
+6e0b 44e54039 bpatch patch39_2 ,mem_patch39 
+6e0c 18000e00 force 0 ,queue 
+6e0d 6801460d fetch 2 ,mem_ui_uuid_table 
+6e0e 98000c00 iforce contr 
+6e0f d8a0045c arg mem_handle_list ,contw 
+
+search_uuid_next:
+6e10 78547c00 disable user 
+6e11 e8c08000 ifetch 1 ,contr 
+6e12 207a0000 rtn blank 
+6e13 98007200 iforce loopcnt 
+
+search_uuid_loop:
+6e14 e8c10000 ifetch 2 ,contr 
+6e15 9a667c00 isub regc ,null 
+6e16 2422ee18 nbranch search_uuid_not_found ,zero 
+6e17 78347c00 enable user 
+
+search_uuid_not_found:
+6e18 c2006e14 loop search_uuid_loop 
+6e19 e8c20000 ifetch 4 ,contr 
+6e1a 24346e1d nbranch search_uuid_nomatch ,user 
+6e1b e0a20000 istore 4 ,contw 
+6e1c 18e08e01 increase 1 ,queue 
+
+search_uuid_nomatch:
+6e1d 20406dea call sdp_get_data 
+6e1e 98c08c00 iadd contr ,contr 
+6e1f 20206e10 branch search_uuid_next 
+
+search_handle:
+6e20 79200025 set1 mark_ext_patch ,mark 
+6e21 44e5c039 bpatch patch39_3 ,mem_patch39 
+6e22 6801460d fetch 2 ,mem_ui_uuid_table 
+6e23 98000c00 iforce contr 
+
+search_handle_loop:
+6e24 e8c08000 ifetch 1 ,contr 
+6e25 207a0000 rtn blank 
+6e26 1fe3fe00 lshift pdata ,pdata 
+6e27 98c08c00 iadd contr ,contr 
+6e28 e8c20000 ifetch 4 ,contr 
+6e29 98467c00 isub temp ,null 
+6e2a 20628000 rtn zero 
+6e2b 20406dea call sdp_get_data 
+6e2c 98c08c00 iadd contr ,contr 
+6e2d 20206e24 branch search_handle_loop 
+
+search_attrib:
+6e2e 79200025 set1 mark_ext_patch ,mark 
+6e2f 44e64039 bpatch patch39_4 ,mem_patch39 
+6e30 6801460d fetch 2 ,mem_ui_uuid_table 
+6e31 98000c00 iforce contr 
+
+search_attrib_next:
+6e32 e8c08000 ifetch 1 ,contr 
+6e33 203a6e4f branch search_attrib_end ,blank 
+6e34 98007200 iforce loopcnt 
+
+search_attrib_loop:
+6e35 e8c10000 ifetch 2 ,contr 
+6e36 9a667c00 isub regc ,null 
+6e37 2022ee3d branch search_attrib_found_uuid ,zero 
+6e38 c2006e35 loop search_attrib_loop 
+6e39 18c08c04 increase 4 ,contr 
+6e3a 20406dea call sdp_get_data 
+6e3b 98c08c00 iadd contr ,contr 
+6e3c 20206e32 branch search_attrib_next 
+
+search_attrib_found_uuid:
+6e3d 1f20f3ff increase -1 ,loopcnt 
+6e3e 1f23fe00 lshift loopcnt ,pdata 
+6e3f 98c08c00 iadd contr ,contr 
+6e40 18c08c04 increase 4 ,contr 
+6e41 20406dea call sdp_get_data 
+6e42 98c08400 iadd contr ,temp 
+
+search_attrib_loop_attribs:
+6e43 18c08c01 increase 1 ,contr 
+6e44 e8c10000 ifetch 2 ,contr 
+6e45 9a461600 isub regb ,timeup 
+6e46 7922fe00 setflag zero ,0 ,pdata 
+6e47 19621600 copy timeup ,timeup 
+6e48 20628000 rtn zero 
+6e49 20406dd8 call sdp_data_len 
+6e4a 98c08c00 iadd contr ,contr 
+6e4b 18427e00 deposit temp 
+6e4c 98c67c00 isub contr ,null 
+6e4d 2022ee4f branch search_attrib_end ,zero 
+6e4e 20206e43 branch search_attrib_loop_attribs 
+
+search_attrib_end:
+6e4f 18000c00 force 0 ,contr 
+6e50 18007e00 force 0 ,pdata 
+6e51 20600000 rtn 
+
+search_handle_attrib:
+6e52 79200025 set1 mark_ext_patch ,mark 
+6e53 44e6c039 bpatch patch39_5 ,mem_patch39 
+6e54 6801460d fetch 2 ,mem_ui_uuid_table 
+6e55 98000c00 iforce contr 
+
+search_handle_attrib_next:
+6e56 e8c08000 ifetch 1 ,contr 
+6e57 203a6e6c branch search_handle_attrib_end ,blank 
+6e58 1fe3fe00 lshift pdata ,pdata 
+6e59 98c08c00 iadd contr ,contr 
+6e5a e8c20000 ifetch 4 ,contr 
+6e5b 98467c00 isub temp ,null 
+6e5c 2022ee60 branch search_handl_attrib_found_handle ,zero 
+6e5d 20406dea call sdp_get_data 
+6e5e 98c08c00 iadd contr ,contr 
+6e5f 20206e56 branch search_handle_attrib_next 
+
+search_handl_attrib_found_handle:
+6e60 20406dea call sdp_get_data 
+6e61 98c08400 iadd contr ,temp 
+
+search_handle_attrib_loop_attribs:
+6e62 18c08c01 increase 1 ,contr 
+6e63 e8c10000 ifetch 2 ,contr 
+6e64 9a467c00 isub regb ,null 
+6e65 20628000 rtn zero 
+6e66 20406dd8 call sdp_data_len 
+6e67 98c08c00 iadd contr ,contr 
+6e68 18427e00 deposit temp 
+6e69 98c67c00 isub contr ,null 
+6e6a 2022ee6c branch search_handle_attrib_end ,zero 
+6e6b 20206e62 branch search_handle_attrib_loop_attribs 
+
+search_handle_attrib_end:
+6e6c 18000c00 force 0 ,contr 
+6e6d 20600000 rtn 
+
+function_g2:
+6e6e 79200025 set1 mark_ext_patch ,mark 
+6e6f 44e74039 bpatch patch39_6 ,mem_patch39 
+6e70 70050950 jam 80 ,mem_aes_cmac_data_length 
+6e71 d8a0050a arg memdat ,contw 
+6e72 d8c044c3 arg mem_le_srand ,contr 
+6e73 20407e87 call memcpy16 
+6e74 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6e75 20407e85 call memcpy32 
+6e76 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6e77 20407e85 call memcpy32 
+6e78 20406f2d call inverse_memdat 
+6e79 d8c00352 arg mem_le_mrand ,contr 
+6e7a 20406f28 call store_inverse_k 
+6e7b 20406ef2 call function_aes_cmac 
+6e7c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6e7d 20406f24 call load_inverse_result 
+6e7e 580f4240 setarg 1000000 
+6e7f 1fe22200 copy pdata ,rega 
+6e80 68020a11 fetch 4 ,mem_aes_cmac_temp 
+6e81 9a26fc00 idiv rega 
+6e82 20407f53 call wait_div_end 
+6e83 18077e00 remainder pdata 
+6e84 600208de store 4 ,mem_gkey 
+6e85 20600000 rtn 
+
+function_f6_eb:
+6e86 70050941 jam 65 ,mem_aes_cmac_data_length 
+6e87 d8a0050a arg memdat ,contw 
+6e88 20406ed7 call store_addr_common_a 
+6e89 20406ed2 call store_addr_common_b 
+6e8a 6801c4dd fetch 3 ,mem_le_pres + 1 
+6e8b e0a18000 istore 3 ,contw 
+6e8c 20406e96 call get_r 
+6e8d d8c00352 arg mem_le_mrand ,contr 
+6e8e 20407e87 call memcpy16 
+6e8f d8c044c3 arg mem_le_srand ,contr 
+6e90 20407e87 call memcpy16 
+6e91 20406f2d call inverse_memdat 
+6e92 d8c00a31 arg mem_le_mackey ,contr 
+6e93 d8a009e1 arg mem_aes_cmac_k ,contw 
+6e94 20407e87 call memcpy16 
+6e95 20206ef2 branch function_aes_cmac 
+
+get_r:
+6e96 6802456d fetch 4 ,mem_le_tk 
+6e97 e0a20000 istore 4 ,contw 
+6e98 20407e98 call memset0_4 
+6e99 20207e95 branch memset0_8 
+
+function_f6_ea:
+6e9a 79200025 set1 mark_ext_patch ,mark 
+6e9b 44e7c039 bpatch patch39_7 ,mem_patch39 
+6e9c 70050941 jam 65 ,mem_aes_cmac_data_length 
+6e9d d8a0050a arg memdat ,contw 
+6e9e 20406ed2 call store_addr_common_b 
+6e9f 20406ed7 call store_addr_common_a 
+6ea0 6801c4d6 fetch 3 ,mem_le_preq + 1 
+6ea1 e0a18000 istore 3 ,contw 
+6ea2 20406e96 call get_r 
+6ea3 d8c044c3 arg mem_le_srand ,contr 
+6ea4 20407e87 call memcpy16 
+6ea5 d8c00352 arg mem_le_mrand ,contr 
+6ea6 20407e87 call memcpy16 
+6ea7 20406f2d call inverse_memdat 
+6ea8 d8c00a31 arg mem_le_mackey ,contr 
+6ea9 d8a009e1 arg mem_aes_cmac_k ,contw 
+6eaa 20407e87 call memcpy16 
+6eab 20406ef2 call function_aes_cmac 
+6eac d8a00a11 arg mem_aes_cmac_temp ,contw 
+6ead 20206f24 branch load_inverse_result 
+
+function_f5:
+6eae 70050920 jam 32 ,mem_aes_cmac_data_length 
+6eaf d8c00922 arg mem_le_dhkey_256 ,contr 
+6eb0 d8a0050a arg memdat ,contw 
+6eb1 20407e85 call memcpy32 
+6eb2 20406f2d call inverse_memdat 
+6eb3 d8c008c2 arg mem_le_slat ,contr 
+6eb4 20406f28 call store_inverse_k 
+6eb5 20406ef2 call function_aes_cmac 
+6eb6 d8a009e1 arg mem_aes_cmac_k ,contw 
+6eb7 204071c0 call store_aes_result 
+6eb8 d8400001 arg 1 ,temp 
+6eb9 20406ec0 call function_f5_common 
+6eba d8a044a2 arg mem_le_ltk ,contw 
+6ebb 20406f24 call load_inverse_result 
+6ebc d8400000 arg 0 ,temp 
+6ebd 20406ec0 call function_f5_common 
+6ebe d8a00a31 arg mem_le_mackey ,contw 
+6ebf 202071c0 branch store_aes_result 
+
+function_f5_common:
+6ec0 79200025 set1 mark_ext_patch ,mark 
+6ec1 44e8403a bpatch patch3a_0 ,mem_patch3a 
+6ec2 70050935 jam 53 ,mem_aes_cmac_data_length 
+6ec3 58000100 setarg 0x100 
+6ec4 6001050a store 2 ,memdat 
+6ec5 20406ed2 call store_addr_common_b 
+6ec6 20406ed7 call store_addr_common_a 
+6ec7 d8c044c3 arg mem_le_srand ,contr 
+6ec8 20407e87 call memcpy16 
+6ec9 d8c00352 arg mem_le_mrand ,contr 
+6eca 20407e87 call memcpy16 
+6ecb 58006c65 setarg 0x6c65 
+6ecc e0a10000 istore 2 ,contw 
+6ecd 58006274 setarg 0x6274 
+6ece e0a10000 istore 2 ,contw 
+6ecf e0a88000 istoret 1 ,contw 
+6ed0 20406f2d call inverse_memdat 
+6ed1 20206ef2 branch function_aes_cmac 
+
+store_addr_common_b:
+6ed2 6803453e fetch 6 ,mem_le_lap 
+6ed3 e0a30000 istore 6 ,contw 
+6ed4 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+6ed5 e0a08000 istore 1 ,contw 
+6ed6 20600000 rtn 
+
+store_addr_common_a:
+6ed7 68030372 fetch 6 ,mem_le_plap 
+6ed8 e0a30000 istore 6 ,contw 
+6ed9 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+6eda e0a08000 istore 1 ,contw 
+6edb 20600000 rtn 
+
+function_f4_ca:
+6edc 70050941 jam 65 ,mem_aes_cmac_data_length 
+6edd 6800c6ec fetch 1 ,mem_passkey_1bit 
+6ede 6000850a store 1 ,memdat 
+6edf d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6ee0 20407e85 call memcpy32 
+6ee1 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6ee2 20407e85 call memcpy32 
+6ee3 20406f2d call inverse_memdat 
+6ee4 d8c00352 arg mem_le_mrand ,contr 
+6ee5 20406f28 call store_inverse_k 
+6ee6 20206ef2 branch function_aes_cmac 
+
+function_f4_cb:
+6ee7 70050941 jam 65 ,mem_aes_cmac_data_length 
+6ee8 6800c6ec fetch 1 ,mem_passkey_1bit 
+6ee9 6000850a store 1 ,memdat 
+6eea d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6eeb 20407e85 call memcpy32 
+6eec d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6eed 20407e85 call memcpy32 
+6eee 20406f2d call inverse_memdat 
+6eef d8c044c3 arg mem_le_srand ,contr 
+6ef0 20406f28 call store_inverse_k 
+6ef1 20206ef2 branch function_aes_cmac 
+
+function_aes_cmac:
+6ef2 79200025 set1 mark_ext_patch ,mark 
+6ef3 44e8c03a bpatch patch3a_1 ,mem_patch3a 
+6ef4 20406f42 call function_aes_cmac_generate_subkey 
+6ef5 68008509 fetch 1 ,mem_aes_cmac_data_length 
+6ef6 1fe20400 copy pdata ,temp 
+
+function_ceil16:
+6ef7 1fe0fe0f increase 15 ,pdata 
+6ef8 1ff1fe00 rshift4 pdata ,pdata 
+6ef9 1fe22400 copy pdata ,regb 
+6efa 203a6f05 branch function_aes_cmac_set_flag_0_balnk ,blank 
+6efb 18417e0f and temp ,0x0f ,pdata 
+6efc 243a6f08 nbranch function_aes_cmac_set_flag_0 ,blank 
+6efd da6009f1 arg mem_aes_cmac_k1 ,regc 
+6efe dfe0050a arg memdat ,pdata 
+6eff 1fe0fff0 increase -16 ,pdata 
+6f00 9840a200 iadd temp ,rega 
+6f01 d8a00a21 arg mem_aes_cmac_m_last ,contw 
+6f02 df200004 arg 4 ,loopcnt 
+6f03 20407ea8 call xor_loop 
+6f04 20206f13 branch function_aes_cmac_aes 
+
+function_aes_cmac_set_flag_0_balnk:
+6f05 da400001 arg 1 ,regb 
+6f06 da200000 arg 0 ,rega 
+6f07 20206f09 branch function_aes_cmac_set_flag_0_common 
+
+function_aes_cmac_set_flag_0:
+6f08 1841220f and temp ,0x0f ,rega 
+
+function_aes_cmac_set_flag_0_common:
+6f09 dfe0050a arg memdat ,pdata 
+6f0a 9840fe00 iadd temp ,pdata 
+6f0b 9a260c00 isub rega ,contr 
+6f0c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6f0d 20406f69 call function_aes_cmac_padding 
+6f0e da600a01 arg mem_aes_cmac_k2 ,regc 
+6f0f da200a11 arg mem_aes_cmac_temp ,rega 
+6f10 d8a00a21 arg mem_aes_cmac_m_last ,contw 
+6f11 df200004 arg 4 ,loopcnt 
+6f12 20407ea8 call xor_loop 
+
+function_aes_cmac_aes:
+6f13 204071ba call aes_clear_data 
+6f14 20407150 call aes_init 
+6f15 d8c0050a arg memdat ,contr 
+
+function_aes_cmac_aes_loop:
+6f16 1a40a5ff increase -1 ,regb 
+6f17 1a427e00 deposit regb 
+6f18 203a6f1c branch function_aes_cmac_aes_loop_end ,blank 
+6f19 204071af call load_data128 
+6f1a 2040714a call do_aes_cbc 
+6f1b 20206f16 branch function_aes_cmac_aes_loop 
+
+function_aes_cmac_aes_loop_end:
+6f1c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6f1d 204071c0 call store_aes_result 
+6f1e d8c00a21 arg mem_aes_cmac_m_last ,contr 
+6f1f 204071af call load_data128 
+6f20 20407150 call aes_init 
+6f21 d8c00a11 arg mem_aes_cmac_temp ,contr 
+6f22 204071af call load_data128 
+6f23 2020714a branch do_aes_cbc 
+
+load_inverse_result:
+6f24 18a22200 copy contw ,rega 
+6f25 204071c0 call store_aes_result 
+6f26 df200010 arg 16 ,loopcnt 
+6f27 20207eb0 branch inverse_data 
+
+store_inverse_k:
+6f28 d8a009e1 arg mem_aes_cmac_k ,contw 
+6f29 20407e87 call memcpy16 
+
+inverse_k:
+6f2a df200010 arg 16 ,loopcnt 
+6f2b da2009e1 arg mem_aes_cmac_k ,rega 
+6f2c 20207eb0 branch inverse_data 
+
+inverse_memdat:
+6f2d 68008509 fetch 1 ,mem_aes_cmac_data_length 
+6f2e 1fe27200 copy pdata ,loopcnt 
+6f2f da20050a arg memdat ,rega 
+6f30 20207eb0 branch inverse_data 
+
+bn_lshift_0_inverse:
+6f31 ea208000 ifetch 1 ,rega 
+6f32 1fe3fe00 lshift pdata ,pdata 
+6f33 2a6ffe00 isolate1 0 ,regc 
+6f34 7920fe00 setflag true ,0 ,pdata 
+6f35 2feffe08 isolate1 8 ,pdata 
+6f36 7920a600 setflag true ,0 ,regc 
+6f37 e2208000 istore 1 ,rega 
+6f38 1a20a3ff increase -1 ,rega 
+6f39 c2006f31 loop bn_lshift_0_inverse 
+6f3a 20600000 rtn 
+
+function_aes_cmac_k1_inverse:
+6f3b da2009f1 arg mem_aes_cmac_k1 ,rega 
+
+function_aes_cmac_inverse_common:
+6f3c 1a20a20f increase 15 ,rega 
+6f3d 18007210 force 16 ,loopcnt 
+6f3e 18002600 force 0 ,regc 
+6f3f 20206f31 branch bn_lshift_0_inverse 
+
+function_aes_cmac_k2_inverse:
+6f40 da200a01 arg mem_aes_cmac_k2 ,rega 
+6f41 20206f3c branch function_aes_cmac_inverse_common 
+
+function_aes_cmac_generate_subkey:
+6f42 d8c009e1 arg mem_aes_cmac_k ,contr 
+6f43 204071ad call load_key 
+6f44 18007008 force regidx_xor ,regext_index 
+6f45 204071bb call aes_clear 
+6f46 204071ba call aes_clear_data 
+6f47 20407147 call do_aes_ocb 
+6f48 d8a009f1 arg mem_aes_cmac_k1 ,contw 
+6f49 204071c0 call store_aes_result 
+
+function_aes_cmac_k1:
+6f4a 79200025 set1 mark_ext_patch ,mark 
+6f4b 44e9403a bpatch patch3a_2 ,mem_patch3a 
+6f4c 680089f1 fetch 1 ,mem_aes_cmac_k1 
+6f4d 2feffe07 isolate1 7 ,pdata 
+6f4e 2420ef54 nbranch function_aes_cmac_k1_0 ,true 
+6f4f 20406f3b call function_aes_cmac_k1_inverse 
+6f50 da6009f1 arg mem_aes_cmac_k1 ,regc 
+6f51 d8a009f1 arg mem_aes_cmac_k1 ,contw 
+6f52 20406f5e call function_aes_cmac_xor_rb 
+6f53 20206f55 branch function_aes_cmac_k2 
+
+function_aes_cmac_k1_0:
+6f54 20406f3b call function_aes_cmac_k1_inverse 
+
+function_aes_cmac_k2:
+6f55 d8c009f1 arg mem_aes_cmac_k1 ,contr 
+6f56 d8a00a01 arg mem_aes_cmac_k2 ,contw 
+6f57 20407e87 call memcpy16 
+6f58 68008a01 fetch 1 ,mem_aes_cmac_k2 
+6f59 2feffe07 isolate1 7 ,pdata 
+6f5a 2420ef40 nbranch function_aes_cmac_k2_inverse ,true 
+6f5b 20406f40 call function_aes_cmac_k2_inverse 
+6f5c da600a01 arg mem_aes_cmac_k2 ,regc 
+6f5d d8a00a01 arg mem_aes_cmac_k2 ,contw 
+
+function_aes_cmac_xor_rb:
+6f5e df200003 arg 3 ,loopcnt 
+
+function_aes_cmac_xor_rb_loop:
+6f5f d8400000 arg 0 ,temp 
+6f60 20406f65 call function_aes_cmac_xor_loop_common 
+6f61 1a60a604 increase 4 ,regc 
+6f62 c2006f5f loop function_aes_cmac_xor_rb_loop 
+6f63 d8408700 arg 0x8700 ,temp 
+6f64 18500400 lshift16 temp ,temp 
+
+function_aes_cmac_xor_loop_common:
+6f65 ea620000 ifetch 4 ,regc 
+6f66 9842fe00 ixor temp ,pdata 
+6f67 e0a20000 istore 4 ,contw 
+6f68 20600000 rtn 
+
+function_aes_cmac_padding:
+6f69 79200025 set1 mark_ext_patch ,mark 
+6f6a 44e9c03a bpatch patch3a_3 ,mem_patch3a 
+6f6b df200010 arg 16 ,loopcnt 
+6f6c dfe00000 arg 0 ,pdata 
+
+function_aes_cmac_padding_loop:
+6f6d 9a267c00 isub rega ,null 
+6f6e 2022ef75 branch function_aes_cmac_padding_beq_length ,zero 
+6f6f 20216f78 branch function_aes_cmac_padding_big_length ,positive 
+6f70 e8c88000 ifetcht 1 ,contr 
+6f71 e0a88000 istoret 1 ,contw 
+
+function_aes_cmac_padding_loop2:
+6f72 1fe0fe01 increase 1 ,pdata 
+6f73 c2006f6d loop function_aes_cmac_padding_loop 
+6f74 20600000 rtn 
+
+function_aes_cmac_padding_beq_length:
+6f75 d8400080 arg 0x80 ,temp 
+
+function_aes_cmac_padding_common:
+6f76 e0a88000 istoret 1 ,contw 
+6f77 20206f72 branch function_aes_cmac_padding_loop2 
+
+function_aes_cmac_padding_big_length:
+6f78 d8400000 arg 0 ,temp 
+6f79 20206f76 branch function_aes_cmac_padding_common 
+
+generate_kinit:
+6f7a 20406f8d call function_e22 
+6f7b d8c004b6 arg mem_input_store ,contr 
+6f7c d8a004a6 arg mem_kinit ,contw 
+6f7d 20207e87 branch memcpy16 
+
+function_e21:
+6f7e 78547c00 disable user 
+6f7f 20407084 call function_expand 
+6f80 d8c00486 arg mem_random_number ,contr 
+6f81 d8a004c6 arg mem_x ,contw 
+6f82 1800720f force 15 ,loopcnt 
+6f83 20407ecd call memcpy 
+6f84 e8c08000 ifetch 1 ,contr 
+6f85 1fe2fe06 xor_into 6 ,pdata 
+6f86 e0a08000 istore 1 ,contw 
+6f87 580004d6 setarg mem_y 
+6f88 600104fa store 2 ,memp_ar_input 
+6f89 580004c6 setarg mem_x 
+6f8a 600104f8 store 2 ,memp_ar_key 
+6f8b 79200012 set1 mark_ar2 ,mark 
+6f8c 20206fcd branch function_ar 
+
+function_e22:
+6f8d 6808c718 fetcht 1 ,mem_pin_length 
+6f8e 18002410 force 16 ,regb 
+6f8f 1840a606 add temp ,6 ,regc 
+6f90 1a667c10 sub regc ,16 ,null 
+6f91 20216f93 branch function_e22_pin_init ,positive 
+6f92 18002610 force 16 ,regc 
+
+function_e22_pin_init:
+6f93 d8a004c6 arg mem_x ,contw 
+
+function_e22_genx_pin:
+6f94 d8c04719 arg mem_pin ,contr 
+6f95 18427200 copy temp ,loopcnt 
+6f96 78547c00 disable user 
+
+function_e22_genx_loop:
+6f97 e8c08000 ifetch 1 ,contr 
+6f98 e0a08000 istore 1 ,contw 
+6f99 1a40a5ff increase -1 ,regb 
+6f9a 2022efa1 branch function_e22_genx_end ,zero 
+6f9b c2006f97 loop function_e22_genx_loop 
+6f9c 20346f94 branch function_e22_genx_pin ,user 
+6f9d 78347c00 enable user 
+6f9e 18007206 force 6 ,loopcnt 
+6f9f 1a220c00 copy rega ,contr 
+6fa0 20206f97 branch function_e22_genx_loop 
+
+function_e22_genx_end:
+6fa1 d8c00486 arg mem_random_number ,contr 
+6fa2 d8a004d6 arg mem_y ,contw 
+6fa3 20407e87 call memcpy16 
+6fa4 680084e5 fetch 1 ,mem_y15 
+6fa5 9a62fe00 ixor regc ,pdata 
+6fa6 600084e5 store 1 ,mem_y15 
+6fa7 580004d6 setarg mem_y 
+6fa8 600104fa store 2 ,memp_ar_input 
+6fa9 580004c6 setarg mem_x 
+6faa 600104f8 store 2 ,memp_ar_key 
+6fab 79200012 set1 mark_ar2 ,mark 
+6fac 20206fcd branch function_ar 
+
+function_e1:
+6fad 78547c00 disable user 
+6fae 20407084 call function_expand 
+6faf 20206fb7 branch function_hash 
+
+function_e3:
+6fb0 da200056 arg mem_aco ,rega 
+6fb1 78347c00 enable user 
+6fb2 20407084 call function_expand 
+6fb3 20406fb7 call function_hash 
+6fb4 d8c004b6 arg mem_input_store ,contr 
+6fb5 d8a00062 arg mem_kc ,contw 
+6fb6 20207e87 branch memcpy16 
+
+function_hash:
+6fb7 58000486 setarg mem_random_number 
+6fb8 600104fa store 2 ,memp_ar_input 
+6fb9 58004261 setarg mem_link_key 
+6fba 600104f8 store 2 ,memp_ar_key 
+6fbb 793f8012 set0 mark_ar2 ,mark 
+6fbc 20406fcd call function_ar 
+6fbd da2004b6 arg mem_input_store ,rega 
+6fbe da400486 arg mem_random_number ,regb 
+6fbf d8a004c6 arg mem_x ,contw 
+6fc0 20407077 call xor16 
+6fc1 da2004c6 arg mem_x ,rega 
+6fc2 da4004d6 arg mem_y ,regb 
+6fc3 1a420a00 copy regb ,contw 
+6fc4 78347c00 enable user 
+6fc5 20407075 call add16 
+6fc6 2040708f call key_offset 
+6fc7 580004d6 setarg mem_y 
+6fc8 600104fa store 2 ,memp_ar_input 
+6fc9 580004c6 setarg mem_x 
+6fca 600104f8 store 2 ,memp_ar_key 
+6fcb 79200012 set1 mark_ar2 ,mark 
+6fcc 20206fcd branch function_ar 
+
+function_ar:
+6fcd 7004fc00 jam 0 ,mem_ar_hround 
+6fce 680104f8 fetch 2 ,memp_ar_key 
+6fcf 98000c00 iforce contr 
+6fd0 d8a004e6 arg mem_key_store ,contw 
+6fd1 20407e87 call memcpy16 
+6fd2 680104fa fetch 2 ,memp_ar_input 
+6fd3 98000c00 iforce contr 
+6fd4 d8a004b6 arg mem_input_store ,contw 
+6fd5 20407e87 call memcpy16 
+
+function_ar_loop:
+6fd6 20406ff4 call key_scheduling 
+6fd7 78547c00 disable user 
+6fd8 c5896fde bmark0 mark_ar2 ,function_ar_original 
+6fd9 680084fc fetch 1 ,mem_ar_hround 
+6fda c0826fde bne 4 ,function_ar_original 
+6fdb 680104fa fetch 2 ,memp_ar_input 
+6fdc 98002400 iforce regb 
+6fdd 20407026 call xor_mod32_ar2 
+
+function_ar_original:
+6fde 20407025 call xor_mod32 
+6fdf 20407038 call el_boxes 
+6fe0 680084fc fetch 1 ,mem_ar_hround 
+6fe1 1fe0fe01 increase 1 ,pdata 
+6fe2 600084fc store 1 ,mem_ar_hround 
+6fe3 20406ff4 call key_scheduling 
+6fe4 78347c00 enable user 
+6fe5 20407025 call xor_mod32 
+6fe6 20407047 call pht 
+6fe7 20407056 call permute 
+6fe8 20407047 call pht 
+6fe9 20407056 call permute 
+6fea 20407047 call pht 
+6feb 20407056 call permute 
+6fec 20407047 call pht 
+6fed 680084fc fetch 1 ,mem_ar_hround 
+6fee 1fe0fe01 increase 1 ,pdata 
+6fef 600084fc store 1 ,mem_ar_hround 
+6ff0 c0886fd6 bne 16 ,function_ar_loop 
+6ff1 20406ff4 call key_scheduling 
+6ff2 78547c00 disable user 
+6ff3 20207025 branch xor_mod32 
+
+key_scheduling:
+6ff4 680084fc fetch 1 ,mem_ar_hround 
+6ff5 d8c004e6 arg mem_key_store ,contr 
+6ff6 203a701b branch key_sched_zero ,blank 
+6ff7 98002400 iforce regb 
+6ff8 18007211 force 17 ,loopcnt 
+6ff9 18c20a00 copy contr ,contw 
+
+key_rotateloop:
+6ffa e8c08000 ifetch 1 ,contr 
+6ffb 1fe98400 lshift3 pdata ,temp 
+6ffc 1feb7e00 rshift2 pdata ,pdata 
+6ffd 1fe97e00 rshift3 pdata ,pdata 
+6ffe 9841fe00 ior temp ,pdata 
+6fff e0a08000 istore 1 ,contw 
+7000 c2006ffa loop key_rotateloop 
+7001 580004e6 setarg mem_key_store 
+7002 9a408c00 iadd regb ,contr 
+7003 18007210 force 16 ,loopcnt 
+7004 d8a00496 arg mem_round_key ,contw 
+
+key_select_octet_loop:
+7005 e8c08000 ifetch 1 ,contr 
+7006 e0a08000 istore 1 ,contw 
+7007 28c1fef7 compare mem_key_store_end ,contr ,0xff 
+7008 2420f00a nbranch key_select_octet_nwrap ,true 
+7009 18c08def increase -17 ,contr 
+
+key_select_octet_nwrap:
+700a c2007005 loop key_select_octet_loop 
+700b 18002200 force 0 ,rega 
+700c 1a40a7ff add regb ,-1 ,regc 
+700d 1a6ba600 lshift2 regc ,regc 
+700e 1a6ba600 lshift2 regc ,regc 
+700f 204071e2 call enable_authrom 
+7010 58008400 setarg mem_b_box 
+7011 9a60a600 iadd regc ,regc 
+7012 d8a00496 arg mem_round_key ,contw 
+7013 18007210 force 16 ,loopcnt 
+
+bias_round_key_loop:
+7014 ea688000 ifetcht 1 ,regc 
+7015 e8a08000 ifetch 1 ,contw 
+7016 9840fe00 iadd temp ,pdata 
+7017 e0a08000 istore 1 ,contw 
+7018 1a60a601 increase 1 ,regc 
+7019 c2007014 loop bias_round_key_loop 
+701a 202071e6 branch disable_authrom 
+
+key_sched_zero:
+701b 18007210 force 16 ,loopcnt 
+701c 18000400 force 0 ,temp 
+
+create_byte_16_loop:
+701d e8c08000 ifetch 1 ,contr 
+701e 98428400 ixor temp ,temp 
+701f c200701d loop create_byte_16_loop 
+7020 18427e00 deposit temp 
+7021 e0c08000 istore 1 ,contr 
+7022 d8c004e6 arg mem_key_store ,contr 
+7023 d8a00496 arg mem_round_key ,contw 
+7024 20207e87 branch memcpy16 
+
+xor_mod32:
+7025 da400496 arg mem_round_key ,regb 
+
+xor_mod32_ar2:
+7026 18007210 force 16 ,loopcnt 
+7027 da2004b6 arg mem_input_store ,rega 
+7028 1a220a00 copy rega ,contw 
+
+xor_mod32_loop:
+7029 ea288000 ifetcht 1 ,rega 
+702a ea408000 ifetch 1 ,regb 
+702b 9842e000 ixor temp ,alarm 
+702c 1f212603 and loopcnt ,3 ,regc 
+702d 2434702f nbranch xor_mod32_invert ,user 
+702e 1a62a603 xor_into 3 ,regc 
+
+xor_mod32_invert:
+702f 1a662601 sub regc ,1 ,regc 
+7030 20217032 branch xor_even ,positive 
+7031 9840e000 iadd temp ,alarm 
+
+xor_even:
+7032 1e027e00 deposit alarm 
+7033 e0a08000 istore 1 ,contw 
+7034 1a20a201 increase 1 ,rega 
+7035 1a40a401 increase 1 ,regb 
+7036 c2007029 loop xor_mod32_loop 
+7037 20600000 rtn 
+
+el_boxes:
+7038 204071e2 call enable_authrom 
+7039 18007210 force 16 ,loopcnt 
+703a da2004b6 arg mem_input_store ,rega 
+
+el_box_loop:
+703b ea208000 ifetch 1 ,rega 
+703c d8c08500 arg mem_e_box ,contr 
+703d 1f212603 and loopcnt ,3 ,regc 
+703e 1a667c01 sub regc ,1 ,null 
+703f 20217041 branch e_boxes ,positive 
+7040 d8c08600 arg mem_l_box ,contr 
+
+e_boxes:
+7041 98c08c00 iadd contr ,contr 
+7042 e8c08000 ifetch 1 ,contr 
+7043 e2208000 istore 1 ,rega 
+7044 1a20a201 increase 1 ,rega 
+7045 c200703b loop el_box_loop 
+7046 202071e6 branch disable_authrom 
+
+pht:
+7047 18007208 force 8 ,loopcnt 
+7048 d8c004b6 arg mem_input_store ,contr 
+7049 18c20a00 copy contr ,contw 
+
+pht_loop:
+704a e8c08000 ifetch 1 ,contr 
+704b 98002200 iforce rega 
+704c e8c08000 ifetch 1 ,contr 
+704d 98002400 iforce regb 
+704e 1a23fe00 lshift rega ,pdata 
+704f 9a40fe00 iadd regb ,pdata 
+7050 e0a08000 istore 1 ,contw 
+7051 1a227e00 deposit rega 
+7052 9a40fe00 iadd regb ,pdata 
+7053 e0a08000 istore 1 ,contw 
+7054 c200704a loop pht_loop 
+7055 20600000 rtn 
+
+permute:
+7056 588ae42c setarg 0x8ae42c 
+7057 98000400 iforce temp 
+7058 18007207 force 7 ,loopcnt 
+7059 20407065 call permute_exchange 
+705a 580d751b setarg 0xd751b 
+705b 98000400 iforce temp 
+705c 18007205 force 5 ,loopcnt 
+705d 20407065 call permute_exchange 
+705e 680084c5 fetch 1 ,mem_input_store + 15 
+705f 98002200 iforce rega 
+7060 680084b9 fetch 1 ,mem_input_store + 3 
+7061 600084c5 store 1 ,mem_input_store + 15 
+7062 1a227e00 deposit rega 
+7063 600084b9 store 1 ,mem_input_store + 3 
+7064 20600000 rtn 
+
+permute_exchange:
+7065 1841240f and temp ,0xf ,regb 
+
+permute_loop:
+7066 18417e0f and temp ,0xf ,pdata 
+7067 d8a004b6 arg mem_input_store ,contw 
+7068 98a08a00 iadd contw ,contw 
+7069 e8a08000 ifetch 1 ,contw 
+706a 98002600 iforce regc 
+706b 1a227e00 deposit rega 
+706c e0a08000 istore 1 ,contw 
+706d 1a622200 copy regc ,rega 
+706e 18518400 rshift4 temp ,temp 
+706f c2007066 loop permute_loop 
+7070 580004b6 setarg mem_input_store 
+7071 9a408a00 iadd regb ,contw 
+7072 1a227e00 deposit rega 
+7073 e0a08000 istore 1 ,contw 
+7074 20600000 rtn 
+
+add16:
+7075 78347c00 enable user 
+7076 20207078 branch xor_add16 
+
+xor16:
+7077 78547c00 disable user 
+
+xor_add16:
+7078 18007210 force 16 ,loopcnt 
+
+xoradd_loop:
+7079 ea288000 ifetcht 1 ,rega 
+707a ea408000 ifetch 1 ,regb 
+707b 2034707e branch xoradd_add ,user 
+707c 9842fe00 ixor temp ,pdata 
+707d 2020707f branch xoradd_store 
+
+xoradd_add:
+707e 9840fe00 iadd temp ,pdata 
+
+xoradd_store:
+707f e0a08000 istore 1 ,contw 
+7080 1a20a201 increase 1 ,rega 
+7081 1a40a401 increase 1 ,regb 
+7082 c2007079 loop xoradd_loop 
+7083 20600000 rtn 
+
+function_expand:
+7084 d8a004d6 arg mem_y ,contw 
+7085 ea230000 ifetch 6 ,rega 
+7086 e0a30000 istore 6 ,contw 
+7087 2034708a branch expand_12 ,user 
+7088 ea230000 ifetch 6 ,rega 
+7089 2020708b branch expand_cont 
+
+expand_12:
+708a e8c30000 ifetch 6 ,contr 
+
+expand_cont:
+708b e0a30000 istore 6 ,contw 
+708c ea220000 ifetch 4 ,rega 
+708d e0a20000 istore 4 ,contw 
+708e 20600000 rtn 
+
+key_offset:
+708f d8c04261 arg mem_link_key ,contr 
+7090 d8a004c6 arg mem_x ,contw 
+7091 d8400000 arg 0 ,temp 
+7092 588395a7 setarg 0x8395a7 
+7093 204070b0 call concatenate_temp24 
+7094 58b3c1df setarg 0xb3c1df 
+7095 204070b0 call concatenate_temp24 
+7096 5800e5e9 setarg 0xe5e9 
+7097 204070b1 call concatenate_temp16 
+7098 18422800 copy temp ,regab 
+7099 78547c00 disable user 
+709a 2040709e call key_addxor 
+709b 1a820400 copy regab ,temp 
+709c 78347c00 enable user 
+709d 2020709e branch key_addxor 
+
+key_addxor:
+709e 18007208 force 8 ,loopcnt 
+
+key_addxor_loop:
+709f e8c08000 ifetch 1 ,contr 
+70a0 2f200201 compare 1 ,loopcnt ,1 
+70a1 203470a5 branch key_high ,user 
+70a2 2020f0a6 branch key_xor ,true 
+
+key_add:
+70a3 9840fe00 iadd temp ,pdata 
+70a4 202070a7 branch key_store 
+
+key_high:
+70a5 2020f0a3 branch key_add ,true 
+
+key_xor:
+70a6 9842fe00 ixor temp ,pdata 
+
+key_store:
+70a7 e0a08000 istore 1 ,contw 
+70a8 184c8400 rshift8 temp ,temp 
+70a9 c200709f loop key_addxor_loop 
+70aa 20600000 rtn 
+
+copy_aco:
+70ab 680304ba fetch 6 ,mem_input_store + 4 
+70ac 60030056 store 6 ,mem_aco 
+70ad e8c30000 ifetch 6 ,contr 
+70ae e0a30000 istore 6 ,contw 
+70af 20600000 rtn 
+
+concatenate_temp24:
+70b0 184d0400 lshift8 temp ,temp 
+
+concatenate_temp16:
+70b1 18500400 lshift16 temp ,temp 
+70b2 98418400 ior temp ,temp 
+70b3 20600000 rtn 
+
+loop1:
+70b4 202070b4 branch loop1 
+
+generate_stk:
+70b5 79200025 set1 mark_ext_patch ,mark 
+70b6 44ea403a bpatch patch3a_4 ,mem_patch3a 
+70b7 20407153 call function_s1 
+70b8 d8a044a2 arg mem_le_ltk ,contw 
+70b9 202071c0 branch store_aes_result 
+
+authenticate_rconfirm:
+70ba d8a044c3 arg mem_le_srand ,contw 
+70bb 2034f0bd branch authenticate_mconfirm ,master 
+70bc d8a00352 arg mem_le_mrand ,contw 
+
+authenticate_mconfirm:
+70bd 18c22200 copy contr ,rega 
+70be 20407e87 call memcpy16 
+70bf 20407168 call function_c1 
+70c0 d8c044b3 arg mem_le_rconfirm ,contr 
+70c1 202071d9 branch compare_res 
+
+generate_confirm:
+70c2 da200352 arg mem_le_mrand ,rega 
+70c3 2034f0c5 branch generate_mrand ,master 
+70c4 da2044c3 arg mem_le_srand ,rega 
+
+generate_mrand:
+70c5 1a220a00 copy rega ,contw 
+70c6 20405917 call generate_random 
+70c7 20207168 branch function_c1 
+
+generate_sk:
+70c8 d8c04551 arg mem_le_skdm ,contr 
+70c9 204071af call load_data128 
+70ca d8c044a2 arg mem_le_ltk ,contr 
+70cb 204071b0 call load_regext 
+70cc 18006c38 force 0x38 ,aes_ctrl 
+70cd 18006c00 force 0x0 ,aes_ctrl 
+70ce 20407145 call wait_aes 
+70cf d8a003a0 arg mem_le_sk ,contw 
+70d0 202071c0 branch store_aes_result 
+
+first_block_counter:
+70d1 18007e49 force 0x49 ,pdata 
+70d2 202070d4 branch first_block 
+
+first_block_data:
+70d3 18007e01 force 1 ,pdata 
+
+first_block:
+70d4 18007000 force regidx_data ,regext_index 
+70d5 184d5e00 lshift8 temp ,regext 
+70d6 9de1de00 ior regext ,regext 
+70d7 1f00f001 increase 1 ,regext_index 
+70d8 184cde00 rshift8 temp ,regext 
+70d9 1df15e00 rshift16 regext ,regext 
+70da 6801449a fetch 2 ,mem_le_ivm 
+70db 1ff07e00 lshift16 ,pdata ,pdata 
+70dc 9de1de00 ior regext ,regext 
+70dd 1f00f001 increase 1 ,regext_index 
+70de e8c20000 ifetch 4 ,contr 
+70df 98005e00 iforce regext 
+70e0 1f00f001 increase 1 ,regext_index 
+70e1 e8c10000 ifetch 2 ,contr 
+70e2 1a30de00 byteswap rega ,regext 
+70e3 1df05e00 lshift16 regext ,regext 
+70e4 9de1de00 ior regext ,regext 
+70e5 1f00f001 increase 1 ,regext_index 
+70e6 20600000 rtn 
+
+generate_mic:
+70e7 1a608c01 add regc ,1 ,contr 
+70e8 e8c08000 ifetch 1 ,contr 
+70e9 98002200 iforce rega 
+70ea 204070d1 call first_block_counter 
+70eb 20407147 call do_aes_ocb 
+70ec 18007000 force regidx_data ,regext_index 
+70ed ea608000 ifetch 1 ,regc 
+70ee 1fe17e03 and_into 0x3 ,pdata 
+70ef 1ff05e00 lshift16 pdata ,regext 
+70f0 79205e08 set1 8 ,regext 
+70f1 204071b8 call clear_hidata 
+70f2 2040714a call do_aes_cbc 
+70f3 1a227200 copy rega ,loopcnt 
+70f4 1a608c02 add regc ,2 ,contr 
+70f5 20407197 call padding_data 
+
+generate_mic_loop:
+70f6 204071a1 call aes_load_data 
+70f7 2040714a call do_aes_cbc 
+70f8 1f227e00 deposit loopcnt 
+70f9 203a70fb branch generate_mic_end ,blank 
+70fa 202070f6 branch generate_mic_loop 
+
+generate_mic_end:
+70fb 1800700c force regidx_result ,regext_index 
+70fc 1de27e00 deposit regext 
+70fd 6002033a store 4 ,mem_le_mic 
+70fe 20600000 rtn 
+
+aes_crypt_data:
+70ff 1a20a201 increase 1 ,rega 
+7100 204070d3 call first_block_data 
+7101 1a620c00 copy regc ,contr 
+7102 204071ab call aes_load_xor 
+7103 2040714d call do_aes_ctr 
+7104 204071c7 call store_enc_data 
+7105 1a60a610 increase 16 ,regc 
+7106 1a40a5f0 increase -16 ,regb 
+7107 202170ff branch aes_crypt_data ,positive 
+7108 20600000 rtn 
+
+le_encrypt:
+7109 79200025 set1 mark_ext_patch ,mark 
+710a 44eac03a bpatch patch3a_5 ,mem_patch3a 
+710b da604465 arg mem_le_txheader ,regc 
+710c 680ac48c fetcht 5 ,mem_le_pcnt_tx 
+710d 204070e7 call generate_mic 
+710e 18007008 force regidx_xor ,regext_index 
+710f 98005e00 iforce regext 
+7110 18002200 force 0 ,rega 
+7111 204070d3 call first_block_data 
+7112 2040714d call do_aes_ctr 
+7113 da604467 arg mem_le_txpayload ,regc 
+7114 6800c466 fetch 1 ,mem_le_txlen 
+7115 1fe0a5ff add pdata ,-1 ,regb 
+7116 9a608a00 iadd regc ,contw 
+7117 1800700c force regidx_result ,regext_index 
+7118 1de27e00 deposit regext 
+7119 e0a20000 istore 4 ,contw 
+711a 204070ff call aes_crypt_data 
+711b 6800c466 fetch 1 ,mem_le_txlen 
+711c 1fe0fe04 increase 4 ,pdata 
+711d 6000c466 store 1 ,mem_le_txlen 
+711e 680ac48c fetcht 5 ,mem_le_pcnt_tx 
+711f 18408401 increase 1 ,temp 
+7120 600ac48c storet 5 ,mem_le_pcnt_tx 
+7121 20600000 rtn 
+
+le_decrypt:
+7122 79200025 set1 mark_ext_patch ,mark 
+7123 44eb403a bpatch patch3a_6 ,mem_patch3a 
+7124 68008303 fetch 1 ,mem_le_rxbuf + 1 
+7125 1fe67c14 sub pdata ,20 ,null 
+7126 20217127 branch le_dec_cont ,positive 
+
+le_dec_cont:
+7127 da600304 arg mem_le_rxbuf + 2 ,regc 
+7128 1fe0a5ff add pdata ,-1 ,regb 
+7129 1fe0fffc increase -4 ,pdata 
+712a 60008303 store 1 ,mem_le_rxbuf + 1 
+712b 9a608c00 iadd regc ,contr 
+712c e8c20000 ifetch 4 ,contr 
+712d 18007008 force regidx_xor ,regext_index 
+712e 98005e00 iforce regext 
+712f 18002200 force 0 ,rega 
+7130 680ac491 fetcht 5 ,mem_le_pcnt_rx 
+7131 204070d3 call first_block_data 
+7132 2040714d call do_aes_ctr 
+7133 1800700c force regidx_result ,regext_index 
+7134 1de27e00 deposit regext 
+7135 6002033e store 4 ,mem_le_peer_mic 
+7136 204070ff call aes_crypt_data 
+7137 da600302 arg mem_le_rxbuf ,regc 
+7138 204070e7 call generate_mic 
+7139 680a033e fetcht 4 ,mem_le_peer_mic 
+713a 98467e00 isub temp ,pdata 
+713b 247a0000 nrtn blank 
+713c 68024496 fetch 4 ,mem_le_last_mic 
+713d 98467e00 isub temp ,pdata 
+713e 207a0000 rtn blank 
+713f 600a4496 storet 4 ,mem_le_last_mic 
+7140 6802c491 fetch 5 ,mem_le_pcnt_rx 
+7141 1fe0fe01 increase 1 ,pdata 
+7142 6002c491 store 5 ,mem_le_pcnt_rx 
+7143 18007e00 force 0 ,pdata 
+7144 20600000 rtn 
+
+wait_aes:
+7145 243bf145 nbranch wait_aes ,aes_ready 
+7146 20600000 rtn 
+
+do_aes_ocb:
+7147 18006c30 force 0x30 ,aes_ctrl 
+7148 18006c00 force 0x0 ,aes_ctrl 
+7149 20207145 branch wait_aes 
+
+do_aes_cbc:
+714a 18006c32 force 0x32 ,aes_ctrl 
+714b 18006c02 force 0x2 ,aes_ctrl 
+714c 20207145 branch wait_aes 
+
+do_aes_ctr:
+714d 18006c34 force 0x34 ,aes_ctrl 
+714e 18006c04 force 0x4 ,aes_ctrl 
+714f 20207145 branch wait_aes 
+
+aes_init:
+7150 18006c01 force 1 ,aes_ctrl 
+7151 18006c00 force 0 ,aes_ctrl 
+7152 20600000 rtn 
+
+function_s1:
+7153 18007000 force regidx_data ,regext_index 
+7154 68020352 fetch 4 ,mem_le_mrand 
+7155 98005e00 iforce regext 
+7156 1f00f001 increase 1 ,regext_index 
+7157 e8c20000 ifetch 4 ,contr 
+7158 98005e00 iforce regext 
+7159 1f00f001 increase 1 ,regext_index 
+715a 680244c3 fetch 4 ,mem_le_srand 
+715b 98005e00 iforce regext 
+715c 1f00f001 increase 1 ,regext_index 
+715d e8c20000 ifetch 4 ,contr 
+715e 98005e00 iforce regext 
+715f 1f00f001 increase 1 ,regext_index 
+7160 204071bb call aes_clear 
+7161 1f00f1fc increase -4 ,regext_index 
+7162 6802456d fetch 4 ,mem_le_tk 
+7163 1fe25e00 copy pdata ,regext 
+7164 1f00f004 increase 4 ,regext_index 
+7165 18006c38 force 0x38 ,aes_ctrl 
+7166 18006c08 force 0x8 ,aes_ctrl 
+7167 20207145 branch wait_aes 
+
+function_c1:
+7168 79200025 set1 mark_ext_patch ,mark 
+7169 44ebc03a bpatch patch3a_7 ,mem_patch3a 
+716a 6803453e fetch 6 ,mem_le_lap 
+716b 680b0372 fetcht 6 ,mem_le_plap 
+716c 2034f16f branch function_c1_master ,master 
+716d 68030372 fetch 6 ,mem_le_plap 
+716e 680b453e fetcht 6 ,mem_le_lap 
+
+function_c1_master:
+716f 18007008 force regidx_xor ,regext_index 
+7170 18425e00 copy temp ,regext 
+7171 1f00f001 increase 1 ,regext_index 
+7172 184f5e00 rshift32 temp ,regext 
+7173 1ff07e00 lshift16 pdata ,pdata 
+7174 9de1de00 ior regext ,regext 
+7175 1f00f001 increase 1 ,regext_index 
+7176 1fef5e00 rshift32 pdata ,regext 
+7177 1f00f001 increase 1 ,regext_index 
+7178 18005e00 force 0 ,regext 
+7179 18007e00 force 0 ,pdata 
+717a 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+717b 6808c521 fetcht 1 ,mem_le_adv_own_addr_type 
+717c 2434f17f nbranch function_c1_irat ,master 
+717d 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+717e 6808c52b fetcht 1 ,mem_le_conn_peer_addr_type 
+
+function_c1_irat:
+717f 6000c4d3 store 1 ,mem_le_iat 
+7180 6008c4d4 storet 1 ,mem_le_rat 
+7181 18007000 force regidx_data ,regext_index 
+7182 da4044d3 arg mem_le_iat ,regb 
+7183 18007204 force 4 ,loopcnt 
+
+function_c1_loop1:
+7184 ea220000 ifetch 4 ,rega 
+7185 ea4a0000 ifetcht 4 ,regb 
+7186 9842de00 ixor temp ,regext 
+7187 1f00f001 increase 1 ,regext_index 
+7188 1a20a204 increase 4 ,rega 
+7189 1a40a404 increase 4 ,regb 
+718a c2007184 loop function_c1_loop1 
+718b 204071bb call aes_clear 
+718c 1f00f1fc increase -4 ,regext_index 
+718d 6802456d fetch 4 ,mem_le_tk 
+718e 1fe25e00 copy pdata ,regext 
+718f 1f00f004 increase 4 ,regext_index 
+7190 18006c38 force 0x38 ,aes_ctrl 
+7191 18006c0c force 0xc ,aes_ctrl 
+7192 20407145 call wait_aes 
+7193 204071ba call aes_clear_data 
+7194 18006c3a force 0x3a ,aes_ctrl 
+7195 18006c08 force 0x8 ,aes_ctrl 
+7196 20207145 branch wait_aes 
+
+padding_data:
+7197 2f200600 compare 0 ,loopcnt ,3 
+7198 20608000 rtn true 
+7199 18c27e00 deposit contr 
+719a 9f208a00 iadd loopcnt ,contw 
+719b 18007e00 force 0 ,pdata 
+
+padding_loop:
+719c e0a08000 istore 1 ,contw 
+719d 1f20f201 increase 1 ,loopcnt 
+719e 2f200600 compare 0 ,loopcnt ,3 
+719f 20608000 rtn true 
+71a0 2020719c branch padding_loop 
+
+aes_load_data:
+71a1 18007000 force regidx_data ,regext_index 
+
+load_data_loop:
+71a2 1f227e00 deposit loopcnt 
+71a3 203a71a6 branch load_data_padding ,blank 
+71a4 e8c20000 ifetch 4 ,contr 
+71a5 1f20f3fc increase -4 ,loopcnt 
+
+load_data_padding:
+71a6 98005e00 iforce regext 
+71a7 1f00f001 increase 1 ,regext_index 
+71a8 2f001e04 compare regidx_key ,regext_index ,0xf 
+71a9 20608000 rtn true 
+71aa 202071a2 branch load_data_loop 
+
+aes_load_xor:
+71ab 18007008 force regidx_xor ,regext_index 
+71ac 202071b0 branch load_regext 
+
+load_key:
+71ad 18007004 force regidx_key ,regext_index 
+71ae 202071b0 branch load_regext 
+
+load_data128:
+71af 18007000 force regidx_data ,regext_index 
+
+load_regext:
+71b0 18007204 force 4 ,loopcnt 
+
+load_regext_loop:
+71b1 e8c20000 ifetch 4 ,contr 
+71b2 98005e00 iforce regext 
+71b3 1f00f001 increase 1 ,regext_index 
+71b4 c20071b1 loop load_regext_loop 
+71b5 20600000 rtn 
+
+load_sk:
+71b6 d8c003a0 arg mem_le_sk ,contr 
+71b7 202071ad branch load_key 
+
+clear_hidata:
+71b8 18007204 force 4 ,loopcnt 
+71b9 202071bd branch clear_data_rest 
+
+aes_clear_data:
+71ba 18007000 force regidx_data ,regext_index 
+
+aes_clear:
+71bb 18007204 force 4 ,loopcnt 
+
+clear_loop:
+71bc 18005e00 force 0 ,regext 
+
+clear_data_rest:
+71bd 1f00f001 increase 1 ,regext_index 
+71be c20071bc loop clear_loop 
+71bf 20600000 rtn 
+
+store_aes_result:
+71c0 1800700c force regidx_result ,regext_index 
+71c1 18007204 force 4 ,loopcnt 
+
+send_aes_result_loop:
+71c2 1de27e00 deposit regext 
+71c3 e0a20000 istore 4 ,contw 
+71c4 1f00f001 increase 1 ,regext_index 
+71c5 c20071c2 loop send_aes_result_loop 
+71c6 20600000 rtn 
+
+store_enc_data:
+71c7 1800700c force regidx_result ,regext_index 
+71c8 1a620a00 copy regc ,contw 
+71c9 1a40f201 add regb ,1 ,loopcnt 
+71ca 1f267c0f sub loopcnt ,15 ,null 
+71cb 202171cd branch store_enc_loop ,positive 
+71cc 18007210 force 16 ,loopcnt 
+
+store_enc_loop:
+71cd 1de27e00 deposit regext 
+71ce 1f267c03 sub loopcnt ,3 ,null 
+71cf 202171d5 branch store_enc_byte ,positive 
+71d0 e0a20000 istore 4 ,contw 
+71d1 1f20f3fc increase -4 ,loopcnt 
+71d2 20628000 rtn zero 
+71d3 1f00f001 increase 1 ,regext_index 
+71d4 202071cd branch store_enc_loop 
+
+store_enc_byte:
+71d5 e0a08000 istore 1 ,contw 
+71d6 1fecfe00 rshift8 pdata ,pdata 
+71d7 c20071d5 loop store_enc_byte 
+71d8 20600000 rtn 
+
+compare_res:
+71d9 1800700c force regidx_result ,regext_index 
+71da 18007204 force 4 ,loopcnt 
+
+compare_res_loop:
+71db e8c20000 ifetch 4 ,contr 
+71dc 9de67c00 isub regext ,null 
+71dd 24628000 nrtn zero 
+71de 1f00f001 increase 1 ,regext_index 
+71df c20071db loop compare_res_loop 
+71e0 18007c00 force 0 ,null 
+71e1 20600000 rtn 
+
+enable_authrom:
+71e2 68108050 hfetch 1 ,core_clkoff 
+71e3 793ffe00 set0 clock_off_auth_rom ,pdata 
+71e4 60108050 hstore 1 ,core_clkoff 
+71e5 20600000 rtn 
+
+disable_authrom:
+71e6 68108050 hfetch 1 ,core_clkoff 
+71e7 79207e00 set1 clock_off_auth_rom ,pdata 
+71e8 60108050 hstore 1 ,core_clkoff 
+71e9 20600000 rtn 
+
+init_memp:
+71ea d8a007aa arg mem_p ,contw 
+71eb 3803ffff setsect 0 ,0x3ffff 
+71ec 3807ffff setsect 1 ,0x3ffff 
+71ed 380bffff setsect 2 ,0x3ffff 
+71ee 380ffbff setsect 3 ,0x3fbff 
+71ef e0a48000 istore 9 ,contw 
+71f0 3803ffff setsect 0 ,0x3ffff 
+71f1 3807ffff setsect 1 ,0x3ffff 
+71f2 380bffff setsect 2 ,0x3ffff 
+71f3 380fffff setsect 3 ,0x3ffff 
+71f4 e0a48000 istore 9 ,contw 
+71f5 3803ffff setsect 0 ,0x3ffff 
+71f6 3807ffff setsect 1 ,0x3ffff 
+71f7 380bcfff setsect 2 ,0x3cfff 
+71f8 380fffff setsect 3 ,0x3ffff 
+71f9 e0a48000 istore 9 ,contw 
+71fa 3803ffff setsect 0 ,0x3ffff 
+71fb 3807ffff setsect 1 ,0x3ffff 
+71fc 380bffef setsect 2 ,0x3ffef 
+71fd 380fffff setsect 3 ,0x3ffff 
+71fe e0a48000 istore 9 ,contw 
+71ff 3803ffff setsect 0 ,0x3ffff 
+7200 3807ffff setsect 1 ,0x3ffff 
+7201 380bffff setsect 2 ,0x3ffff 
+7202 380fffff setsect 3 ,0x3ffff 
+7203 e0a48000 istore 9 ,contw 
+7204 3803ffff setsect 0 ,0x3ffff 
+7205 38066c7f setsect 1 ,0x26c7f 
+7206 3808146b setsect 2 ,0x146b 
+7207 380f7bb3 setsect 3 ,0x37bb3 
+7208 e0a48000 istore 9 ,contw 
+7209 3801feb8 setsect 0 ,0x1feb8 
+720a 38050c12 setsect 1 ,0x10c12 
+720b 380ab722 setsect 2 ,0x2b722 
+720c 380e9fa6 setsect 3 ,0x29fa6 
+720d e0a48000 istore 9 ,contw 
+720e 3800e70f setsect 0 ,0xe70f 
+720f 38056720 setsect 1 ,0x16720 
+7210 3808519e setsect 2 ,0x519e 
+7211 380d9084 setsect 3 ,0x19084 
+7212 e0a48000 istore 9 ,contw 
+7213 38031012 setsect 0 ,0x31012 
+7214 380760bf setsect 1 ,0x360bf 
+7215 380bf0af setsect 2 ,0x3f0af 
+7216 380c03d3 setsect 3 ,0x3d3 
+7217 e0a48000 istore 9 ,contw 
+7218 3803a188 setsect 0 ,0x3a188 
+7219 38043ad0 setsect 1 ,0x3ad0 
+721a 380bcbf2 setsect 2 ,0x3cbf2 
+721b 380e43d9 setsect 3 ,0x243d9 
+721c e0a48000 istore 9 ,contw 
+721d 3802b030 setsect 0 ,0x2b030 
+721e 38076a03 setsect 1 ,0x36a03 
+721f 38091188 setsect 2 ,0x11188 
+7220 380de520 setsect 3 ,0x1e520 
+7221 e0a48000 istore 9 ,contw 
+7222 3803a11e setsect 0 ,0x3a11e 
+7223 3804fe5d setsect 1 ,0xfe5d 
+7224 3808dd57 setsect 2 ,0xdd57 
+7225 380dac93 setsect 3 ,0x1ac93 
+7226 e0a48000 istore 9 ,contw 
+7227 380011ed setsect 0 ,0x11ed 
+7228 380618c4 setsect 1 ,0x218c4 
+7229 38088da7 setsect 2 ,0x8da7 
+722a 380e57ff setsect 3 ,0x257ff 
+722b e0a48000 istore 9 ,contw 
+722c 3803192b setsect 0 ,0x3192b 
+722d 38074641 setsect 1 ,0x34641 
+722e 3809be0c setsect 2 ,0x1be0c 
+722f 380f66ad setsect 3 ,0x366ad 
+7230 e0a48000 istore 9 ,contw 
+7231 38001f83 setsect 0 ,0x1f83 
+7232 38055a23 setsect 1 ,0x15a23 
+7233 380bf9b0 setsect 2 ,0x3f9b0 
+7234 380c3949 setsect 3 ,0x3949 
+7235 e0a48000 istore 9 ,contw 
+7236 38013a51 setsect 0 ,0x13a51 
+7237 380553fd setsect 1 ,0x153fd 
+7238 380b372a setsect 2 ,0x3372a 
+7239 380cf1bb setsect 3 ,0xf1bb 
+723a e0a48000 istore 9 ,contw 
+723b 3803ae85 setsect 0 ,0x3ae85 
+723c 3805eed9 setsect 1 ,0x1eed9 
+723d 38089e66 setsect 2 ,0x9e66 
+723e 380c01a8 setsect 3 ,0x1a8 
+723f e0a40000 istore 8 ,contw 
+7240 20600000 rtn 
+
+init_memp_256:
+7241 d8a00842 arg mem_p_256 ,contw 
+7242 3803ffff setsect 0 ,0x3ffff 
+7243 3807ffff setsect 1 ,0x3ffff 
+7244 380bffff setsect 2 ,0x3ffff 
+7245 380fffff setsect 3 ,0x3ffff 
+7246 e0a48000 istore 9 ,contw 
+7247 3803ffff setsect 0 ,0x3ffff 
+7248 3804003f setsect 1 ,0x3f 
+7249 38080000 setsect 2 ,0x0 
+724a 380c0000 setsect 3 ,0x0 
+724b e0a48000 istore 9 ,contw 
+724c 38000000 setsect 0 ,0x0 
+724d 38040000 setsect 1 ,0x0 
+724e 38081000 setsect 2 ,0x1000 
+724f 380c0000 setsect 3 ,0x0 
+7250 e0a48000 istore 9 ,contw 
+7251 3803ff00 setsect 0 ,0x3ff00 
+7252 3807ffff setsect 1 ,0x3ffff 
+7253 380bffcf setsect 2 ,0x3ffcf 
+7254 380fffff setsect 3 ,0x3ffff 
+7255 e0a48000 istore 9 ,contw 
+7256 3803ffff setsect 0 ,0x3ffff 
+7257 3807ffff setsect 1 ,0x3ffff 
+7258 380bffff setsect 2 ,0x3ffff 
+7259 380c03ff setsect 3 ,0x3ff 
+725a e0a48000 istore 9 ,contw 
+725b 38000000 setsect 0 ,0x0 
+725c 38040000 setsect 1 ,0x0 
+725d 38080000 setsect 2 ,0x0 
+725e 380c0000 setsect 3 ,0x0 
+725f e0a48000 istore 9 ,contw 
+7260 38010000 setsect 0 ,0x10000 
+7261 38040000 setsect 1 ,0x0 
+7262 380bf000 setsect 2 ,0x3f000 
+7263 380fffff setsect 3 ,0x3ffff 
+7264 e0a48000 istore 9 ,contw 
+7265 380296ff setsect 0 ,0x296ff 
+7266 38062630 setsect 1 ,0x22630 
+7267 380b945d setsect 2 ,0x3945d 
+7268 380fd284 setsect 3 ,0x3d284 
+7269 e0a48000 istore 9 ,contw 
+726a 380333a0 setsect 0 ,0x333a0 
+726b 38044b7a setsect 1 ,0x4b7a 
+726c 380837d8 setsect 2 ,0x37d8 
+726d 380fc9dc setsect 3 ,0x3c9dc 
+726e e0a48000 istore 9 ,contw 
+726f 3803a440 setsect 0 ,0x3a440 
+7270 3805b958 setsect 1 ,0x1b958 
+7271 380b8bce setsect 2 ,0x38bce 
+7272 380d091f setsect 3 ,0x1091f 
+7273 e0a48000 istore 9 ,contw 
+7274 3802e12c setsect 0 ,0x2e12c 
+7275 3805f47c setsect 1 ,0x1f47c 
+7276 380b56b1 setsect 2 ,0x356b1 
+7277 380efd47 setsect 3 ,0x2fd47 
+7278 e0a48000 istore 9 ,contw 
+7279 38006837 setsect 0 ,0x6837 
+727a 3806ed90 setsect 1 ,0x2ed90 
+727b 3809ecec setsect 2 ,0x1ecec 
+727c 380dacc5 setsect 3 ,0x1acc5 
+727d e0a48000 istore 9 ,contw 
+727e 38023357 setsect 0 ,0x23357 
+727f 38058af3 setsect 1 ,0x18af3 
+7280 3808f9e1 setsect 2 ,0xf9e1 
+7281 380d29f0 setsect 3 ,0x129f0 
+7282 e0a48000 istore 9 ,contw 
+7283 3802e7eb setsect 0 ,0x2e7eb 
+7284 3807e6e3 setsect 1 ,0x3e6e3 
+7285 380be1a7 setsect 2 ,0x3e1a7 
+7286 380d0b8b setsect 3 ,0x10b8b 
+7287 e0a48000 istore 9 ,contw 
+7288 38024fe3 setsect 0 ,0x24fe3 
+7289 380420ef setsect 1 ,0x20ef 
+728a 3809b5a6 setsect 2 ,0x1b5a6 
+728b 380cdc2f setsect 3 ,0xdc2f 
+728c e0a48000 istore 9 ,contw 
+728d 38013860 setsect 0 ,0x13860 
+728e 3806bd69 setsect 1 ,0x2bd69 
+728f 3808391a setsect 2 ,0x391a 
+7290 380db222 setsect 3 ,0x1b222 
+7291 e0a48000 istore 9 ,contw 
+7292 20600000 rtn 
+
+shutter_init:
+7293 20758000 rtn wake 
+7294 204074fd call init_shutter_le_att_list 
+7295 204075c9 call shutter_init_param 
+7296 70808100 hjam 0x00 ,core_gpio_sel1 
+7297 204073a5 call shutter_key_init 
+7298 5800737c setarg shutter_le_before_hibernate 
+7299 6001428c store 2 ,mem_cb_before_hibernate 
+729a 5800748c setarg shutter_le_process_lpm_before 
+729b 6001428e store 2 ,mem_cb_before_lpm 
+729c 58007365 setarg shutter_le_discovery_timeout_sleep 
+729d 60014298 store 2 ,mem_cb_discovry_timeout 
+729e 5800737a setarg scale_process_idle 
+729f 60014294 store 2 ,mem_cb_idle_process 
+72a0 58007371 setarg scale_process 
+72a1 60014290 store 2 ,mem_cb_le_process 
+72a2 580072f4 setarg scale_process_bb_event 
+72a3 60014296 store 2 ,mem_cb_bb_event_process 
+72a4 580072ef setarg shutter_le_scale_lpm_lock 
+72a5 6001428a store 2 ,mem_cb_check_wakelock 
+72a6 580074e5 setarg shutter_le_send_att_handle_value_notification 
+72a7 6001429c store 2 ,mem_cb_update_notify_value 
+
+shutter_init0:
+72a8 580074f4 setarg shutter_le_receive_data 
+72a9 6001429a store 2 ,mem_cb_att_write 
+72aa 20407496 call shutter_le_queue_init 
+72ab 70421200 jam 0 ,mem_lpm_mult 
+72ac 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+72ad 79200025 set1 mark_ext_patch ,mark 
+72ae 44ec403b bpatch patch3b_0 ,mem_patch3b 
+72af 6800c755 fetch 1 ,mem_hard_soft_switch_case 
+72b0 c00072b8 beq hard_switch ,shutter_le_hard_switch_power_on_signal 
+72b1 20407382 call shutter_ui_led_init 
+72b2 20407cf6 call ui_button_init 
+72b3 20407d02 call ui_button_polling 
+72b4 70475600 jam shutter_power_up ,mem_shutter_powerup_flag 
+72b5 6801470b fetch 2 ,mem_ui_state_map 
+72b6 c3860000 rtnbit1 ui_state_btn_down 
+72b7 20203e75 branch app_enter_hibernate 
+
+shutter_le_hard_switch_power_on_signal:
+72b8 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+72b9 70475b01 jam 1 ,mem_enable_key_scan 
+72ba 20407382 call shutter_ui_led_init 
+72bb 58004771 setarg mem_power_on_led_style 
+72bc 2040738e call shutter_ui_led_send 
+
+in_poweron_hard_switch_led:
+72bd 20407d44 call ui_led_blink_polling 
+72be 6800c713 fetch 1 ,mem_led_blink_count 
+72bf 243a72bd nbranch in_poweron_hard_switch_led ,blank 
+
+shutter_le_soft_switch_power_on_signal:
+72c0 7043ff01 jam on ,mem_le_adv_enable 
+72c1 58000000 setarg 0 
+72c2 60024729 store 4 ,mem_shutter_send_data 
+72c3 20407382 call shutter_ui_led_init 
+72c4 68014748 fetch 2 ,mem_le_sleep_timeout 
+72c5 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+72c6 204072e5 call shutter_le_fast_advertise 
+72c7 70474600 jam pair_unknown ,mem_pair_state 
+72c8 20405234 call le_modified_name 
+72c9 6803453e fetch 6 ,mem_le_lap 
+72ca 204072d6 call shutter_byteswap 
+72cb 204072d2 call shutter_updata_mac 
+72cc 20600000 rtn 
+
+shutter_le_adv_interval_set:
+72cd 600141f4 store 2 ,mem_lpm_interval 
+72ce 1fe0fffc increase -4 ,pdata 
+72cf 6001451c store 2 ,mem_le_adv_interval_min 
+72d0 6001451e store 2 ,mem_le_adv_interval_max 
+72d1 20600000 rtn 
+
+shutter_updata_mac:
+72d2 68094741 fetcht 2 ,mem_adv_lap_ptr 
+72d3 207a0000 rtn blank 
+72d4 e0430000 istore 6 ,temp 
+72d5 20600000 rtn 
+
+shutter_byteswap:
+72d6 60030100 store 6 ,mem_tmp_buffer 
+72d7 68008100 fetch 1 ,mem_tmp_buffer 
+72d8 6000810b store 1 ,mem_tmp_buffer + 11 
+72d9 e8c08000 ifetch 1 ,contr 
+72da 6000810a store 1 ,mem_tmp_buffer + 10 
+72db e8c08000 ifetch 1 ,contr 
+72dc 60008109 store 1 ,mem_tmp_buffer + 9 
+72dd e8c08000 ifetch 1 ,contr 
+72de 60008108 store 1 ,mem_tmp_buffer + 8 
+72df e8c08000 ifetch 1 ,contr 
+72e0 60008107 store 1 ,mem_tmp_buffer + 7 
+72e1 e8c08000 ifetch 1 ,contr 
+72e2 60008106 store 1 ,mem_tmp_buffer + 6 
+72e3 68030106 fetch 6 ,mem_tmp_buffer + 6 
+72e4 20600000 rtn 
+
+shutter_le_fast_advertise:
+72e5 7048bb00 jam 0 ,mem_shutter_key_data_flag_1 
+72e6 6801474e fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+72e7 243a72ec nbranch in_shutter_skip_set ,blank 
+72e8 58004763 setarg mem_fast_adv_led_style 
+72e9 2040738e call shutter_ui_led_send 
+72ea 580000a0 setarg fast_adv_interval_value 
+72eb 204072cd call shutter_le_adv_interval_set 
+
+in_shutter_skip_set:
+72ec 6801474c fetch 2 ,mem_le_fast_adv_timeout 
+72ed 6001474e store 2 ,mem_le_fast_adv_timeout_timer_count 
+72ee 20600000 rtn 
+
+shutter_le_scale_lpm_lock:
+72ef 6800c740 fetch 1 ,mem_scale_txbuff_inuse 
+72f0 c000be35 beq 1 ,app_get_lpm_wake_lock 
+72f1 6800c877 fetch 1 ,mem_queue_ele_num 
+72f2 243a3e35 nbranch app_get_lpm_wake_lock ,blank 
+72f3 20203e37 branch app_put_lpm_wake_lock 
+
+scale_process_bb_event:
+72f4 1a627e00 copy regc ,pdata 
+72f5 c016f475 beq bt_evt_button_up ,shutter_bb_event_button_up 
+72f6 c008747a beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+72f7 c00a7334 beq bt_evt_le_connected ,scale_process_le_conn 
+72f8 c00af34c beq bt_evt_le_disconnected ,scale_process_le_discon 
+72f9 1fe1040f and pdata ,0x0f ,temp 
+72fa 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+72fb c02872fd beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+72fc 20600000 rtn 
+
+shutter_le_bb_event_timer:
+72fd 6008824e storet 1 ,mem_app_evt_timer_count 
+
+shutter_le_bb_event_100ms_loop:
+72fe 6800824e fetch 1 ,mem_app_evt_timer_count 
+72ff 207a0000 rtn blank 
+7300 1fe0ffff increase -1 ,pdata 
+7301 6000824e store 1 ,mem_app_evt_timer_count 
+7302 79200025 set1 mark_ext_patch ,mark 
+7303 44ecc03b bpatch patch3b_1 ,mem_patch3b 
+7304 20407d1f call ui_button_check_long_press 
+7305 2040731f call shutter_le_shutter_fast_adv_timer 
+7306 2040732c call shutter_le_sleep_timer 
+7307 2040746c call shutter_ui_button_timeout_timer 
+7308 20407464 call shutter_ui_power_timeout_timer 
+7309 20407313 call shutter_app_updata_le_param_timer 
+730a 2040730c call shutter_conn_update_timer 
+730b 202072fe branch shutter_le_bb_event_100ms_loop 
+
+shutter_conn_update_timer:
+730c 6800c8c7 fetch 1 ,mem_shutter_conn_update_timer 
+730d 207a0000 rtn blank 
+730e 1fe0ffff increase -1 ,pdata 
+730f 6000c8c7 store 1 ,mem_shutter_conn_update_timer 
+7310 247a0000 nrtn blank 
+7311 70421205 jam 0x05 ,mem_lpm_mult 
+7312 20600000 rtn 
+
+shutter_app_updata_le_param_timer:
+7313 6800c8c2 fetch 1 ,mem_send_updata_le_param_timer 
+7314 207a0000 rtn blank 
+7315 1fe0ffff increase -1 ,pdata 
+7316 6000c8c2 store 1 ,mem_send_updata_le_param_timer 
+7317 247a0000 nrtn blank 
+7318 68008362 fetch 1 ,mem_le_state 
+7319 c302731c bbit0 lestate_encryption ,shutter_app_updata_le_param 
+731a 7048c201 jam 1 ,mem_send_updata_le_param_timer 
+731b 20600000 rtn 
+
+shutter_app_updata_le_param:
+731c 20403e7f call app_lpm_mult_enable 
+731d 7009bd12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+731e 20207d90 branch ui_ipc_send_cmd 
+
+shutter_le_shutter_fast_adv_timer:
+731f 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+7320 c1808000 rtnne shutter_power_on 
+7321 6801474e fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+7322 207a0000 rtn blank 
+7323 1fe0ffff increase -1 ,pdata 
+7324 6001474e store 2 ,mem_le_fast_adv_timeout_timer_count 
+7325 247a0000 nrtn blank 
+7326 6801470b fetch 2 ,mem_ui_state_map 
+7327 c284f32a bbit1 ui_state_ble_connected ,in_is_connected 
+7328 5800476a setarg mem_slow_adv_led_style 
+7329 2040738e call shutter_ui_led_send 
+
+in_is_connected:
+732a 58000140 setarg slow_adv_interval_value 
+732b 202072cd branch shutter_le_adv_interval_set 
+
+shutter_le_sleep_timer:
+732c 6801474a fetch 2 ,mem_le_sleep_timeout_timer_count 
+732d 207a0000 rtn blank 
+732e 1fe0ffff increase -1 ,pdata 
+732f 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7330 247a0000 nrtn blank 
+7331 70475602 jam shutter_power_off ,mem_shutter_powerup_flag 
+7332 20407487 call shutter_shutter_power_off_end 
+7333 20600000 rtn 
+
+scale_process_le_conn:
+7334 70413100 jam 0 ,mem_lpm_mode 
+7335 68014748 fetch 2 ,mem_le_sleep_timeout 
+7336 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7337 70474600 jam pair_unknown ,mem_pair_state 
+7338 20403e61 call app_ble_stop_adv 
+7339 58112233 setarg 0x112233 
+733a 6001c4a2 store 3 ,mem_le_ltk 
+733b 58445566 setarg 0x445566 
+733c e0a18000 istore 3 ,contw 
+733d 58778899 setarg 0x778899 
+733e e0a18000 istore 3 ,contw 
+733f 58001122 setarg 0x001122 
+7340 e0a18000 istore 3 ,contw 
+7341 58334455 setarg 0x334455 
+7342 e0a18000 istore 3 ,contw 
+7343 58000066 setarg 0x66 
+7344 e0a08000 istore 1 ,contw 
+7345 20403e61 call app_ble_stop_adv 
+7346 20403e7f call app_lpm_mult_enable 
+7347 70474e00 jam 0 ,mem_le_fast_adv_timeout_timer_count 
+7348 5800477f setarg mem_connected_led_style 
+7349 2040738e call shutter_ui_led_send 
+734a 70470e00 jam 0 ,mem_led_gpio 
+734b 20600000 rtn 
+
+scale_process_le_discon:
+734c 70421200 jam 0 ,mem_lpm_mult 
+734d 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+734e 7044b200 jam 0 ,mem_ltk_exists 
+734f 7048c600 jam default_states ,mem_ltk_states 
+7350 7048c000 jam 0 ,mem_shutter_find_type_value_flag 
+7351 2040749b call shutter_le_queue_clear 
+7352 68014748 fetch 2 ,mem_le_sleep_timeout 
+7353 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7354 6800c743 fetch 1 ,mem_le_sleep_flag 
+7355 c0807369 bne 0 ,shutter_le_sleep_enter 
+7356 204072e5 call shutter_le_fast_advertise 
+7357 70474600 jam pair_unknown ,mem_pair_state 
+7358 58000000 setarg 0 
+7359 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+735a 58000000 setarg 0 
+735b 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+735c 20407363 call shutter_le_tx_buff_unuse 
+735d 20403e63 call app_ble_start_adv 
+735e 20600000 rtn 
+
+shutter_le_tx_buff_inuse:
+735f 70474001 jam 1 ,mem_scale_txbuff_inuse 
+7360 20600000 rtn 
+
+shutter_le_check_tx_buff:
+7361 6800c740 fetch 1 ,mem_scale_txbuff_inuse 
+7362 20600000 rtn 
+
+shutter_le_tx_buff_unuse:
+7363 70474000 jam 0 ,mem_scale_txbuff_inuse 
+7364 20600000 rtn 
+
+shutter_le_discovery_timeout_sleep:
+7365 20203e75 branch app_enter_hibernate 
+
+shutter_le_sleep_req_hibernate:
+7366 70474301 jam 0x01 ,mem_le_sleep_flag 
+
+shutter_le_sleep_req_ok:
+7367 6801470b fetch 2 ,mem_ui_state_map 
+7368 c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+
+shutter_le_sleep_enter:
+7369 2040736d call shutter_le_sleep_clr 
+736a 20407f6b call wait_uarttx 
+736b 70474300 jam 0x00 ,mem_le_sleep_flag 
+736c 20203e0a branch app_bb_hibernate 
+
+shutter_le_sleep_clr:
+736d 58000000 setarg 0 
+736e 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+736f 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+7370 20207363 branch shutter_le_tx_buff_unuse 
+
+scale_process:
+7371 6800c747 fetch 1 ,mem_exchange_mtu_req 
+7372 245a7375 ncall shutter_le_parse_att_exchange_mtu_request ,blank 
+7373 204074ca call shutter_le_send_packet 
+7374 202073c5 branch shutter_le_key_process 
+
+shutter_le_parse_att_exchange_mtu_request:
+7375 70474700 jam 0 ,mem_exchange_mtu_req 
+7376 7009bd03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+7377 20204bd6 branch le_xtype_fifo_in 
+
+shutter_le_parse_att_exchange_mtu_request_save:
+7378 70474701 jam 1 ,mem_exchange_mtu_req 
+7379 20600000 rtn 
+
+scale_process_idle:
+737a 204074ca call shutter_le_send_packet 
+737b 202073c5 branch shutter_le_key_process 
+
+shutter_le_before_hibernate:
+737c 204073af call shutter_shutter_scan_key 
+737d 680147b6 fetch 2 ,mem_key_value_temp 
+737e 203a7380 branch in_enter_hibernate ,blank 
+737f 20203e75 branch app_enter_hibernate 
+
+in_enter_hibernate:
+7380 20406509 call gpio_set_before_lpm_common 
+7381 2020748c branch shutter_le_process_lpm_before 
+
+shutter_ui_led_init:
+7382 6800c75e fetch 1 ,mem_shutter_led_num 
+7383 1fe27200 copy pdata ,loopcnt 
+7384 5800475f setarg mem_led_map 
+7385 1fe22200 copy pdata ,rega 
+
+in_lp1:
+7386 1a220c00 copy rega ,contr 
+7387 e8c08000 ifetch 1 ,contr 
+7388 c07ff38c beq invalid_pin_num ,in_lp1_end 
+7389 1fe20400 copy pdata ,temp 
+738a 6000c70e store 1 ,mem_led_gpio 
+738b 20407d2a call ui_led_init 
+
+in_lp1_end:
+738c c2007386 loop in_lp1 
+
+shutter_ui_led_init_end:
+738d 20600000 rtn 
+
+shutter_ui_led_send:
+738e 1fe20c00 copy pdata ,contr 
+738f 18007207 force 7 ,loopcnt 
+7390 d8a047a2 arg mem_temp_led_style ,contw 
+7391 20407ecd call memcpy 
+7392 79200025 set1 mark_ext_patch ,mark 
+7393 44ed403b bpatch patch3b_2 ,mem_patch3b 
+7394 6800c7a2 fetch 1 ,mem_temp_led_type 
+7395 c17f8000 rtneq led_invalid 
+7396 680947a4 fetcht 2 ,mem_temp_led_on_time 
+7397 60094711 storet 2 ,mem_led_light_time 
+7398 680947a6 fetcht 2 ,mem_temp_led_off_time 
+7399 6009470f storet 2 ,mem_led_dark_time 
+739a 6808c7a8 fetcht 1 ,mem_temp_blink_count 
+739b 6008c713 storet 1 ,mem_led_blink_count 
+739c 20407d2f call ui_led_blink_stop 
+739d 6808c7a3 fetcht 1 ,mem_temp_led_pin 
+739e 6008c70e storet 1 ,mem_led_gpio 
+739f 6800c7a2 fetch 1 ,mem_temp_led_type 
+73a0 c00073a3 beq led_off ,shutter_ui_led_send_end 
+73a1 c000fd38 beq led_on ,ui_led_on 
+73a2 c0017d3f beq led_blink ,ui_led_blink_start1 
+
+shutter_ui_led_send_end:
+73a3 20600000 rtn 
+
+shutter_ui_led_off:
+73a4 20207d2f branch ui_led_blink_stop 
+
+shutter_key_init:
+73a5 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73a6 207a0000 rtn blank 
+73a7 1fe27200 copy pdata ,loopcnt 
+73a8 580047aa setarg mem_key_conf0_pin 
+73a9 1fe22200 copy pdata ,rega 
+
+shutter_key_lp1:
+73aa ea288000 ifetcht 1 ,rega 
+73ab 204064df call gpio_config_input 
+73ac 1a20a202 increase key_conf_struct_len ,rega 
+73ad c20073aa loop shutter_key_lp1 
+
+shutter_key_init_end:
+73ae 20600000 rtn 
+
+shutter_shutter_scan_key:
+73af da2047aa arg mem_key_conf0_pin ,rega 
+73b0 18002400 force 0 ,regb 
+73b1 7047b600 jam 0 ,mem_key_value_temp 
+
+in_scan_key_lp1:
+73b2 ea288000 ifetcht 1 ,rega 
+73b3 204064f5 call gpio_get_bit 
+73b4 79200025 set1 mark_ext_patch ,mark 
+73b5 44edc03b bpatch patch3b_3 ,mem_patch3b 
+73b6 680147b6 fetch 2 ,mem_key_value_temp 
+73b7 1a420e00 copy regb ,queue 
+73b8 f920fe00 qsetflag true ,pdata 
+73b9 600147b6 store 2 ,mem_key_value_temp 
+73ba 1a20a202 increase key_conf_struct_len ,rega 
+73bb 1a40a401 increase 1 ,regb 
+73bc 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73bd 9a42fc00 ixor regb ,null 
+73be 2422f3b2 nbranch in_scan_key_lp1 ,zero 
+73bf 680147b6 fetch 2 ,mem_key_value_temp 
+73c0 680947b8 fetcht 2 ,mem_key_value 
+73c1 9842fc00 ixor temp ,null 
+73c2 20628000 rtn zero 
+73c3 78347c00 enable user 
+73c4 20600000 rtn 
+
+shutter_le_key_process:
+73c5 d8e0000c arg temp_timer ,queue 
+73c6 20407ee2 call timer_check 
+73c7 247a0000 nrtn blank 
+73c8 204074c7 call shutter_le_packet_interval_set 
+73c9 6800c75b fetch 1 ,mem_enable_key_scan 
+73ca 207a0000 rtn blank 
+73cb 78547c00 disable user 
+73cc 2040748c call shutter_le_process_lpm_before 
+73cd 79200025 set1 mark_ext_patch ,mark 
+73ce 44ee403b bpatch patch3b_4 ,mem_patch3b 
+73cf 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73d0 207a0000 rtn blank 
+73d1 204073af call shutter_shutter_scan_key 
+73d2 24347d28 nbranch lpm_button_clean_wake_lock ,user 
+73d3 20407d26 call lpm_button_get_wake_lock 
+73d4 78547c00 disable user 
+73d5 68014748 fetch 2 ,mem_le_sleep_timeout 
+73d6 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+73d7 6801470b fetch 2 ,mem_ui_state_map 
+73d8 c304f2e5 bbit0 ui_state_ble_connected ,shutter_le_fast_advertise 
+73d9 204074de call shutter_shutter_cancel_key_shake 
+73da 202173f5 branch in_le_key_process_end ,positive 
+73db 680147b6 fetch 2 ,mem_key_value_temp 
+73dc 600147c0 store 2 ,mem_key_value_temp4 
+73dd 7047c200 jam 0 ,mem_key_value_temp6 
+73de 18000e00 force 0 ,queue 
+
+shutter_le_key_lp1:
+73df 79200025 set1 mark_ext_patch ,mark 
+73e0 44eec03b bpatch patch3b_5 ,mem_patch3b 
+73e1 680147b8 fetch 2 ,mem_key_value 
+73e2 1fe30400 rshift pdata ,temp 
+73e3 600947b8 storet 2 ,mem_key_value 
+73e4 1fe17e01 and pdata ,0x01 ,pdata 
+73e5 680947c0 fetcht 2 ,mem_key_value_temp4 
+73e6 18412201 and temp ,0x01 ,rega 
+73e7 18430400 rshift temp ,temp 
+73e8 600947c0 storet 2 ,mem_key_value_temp4 
+73e9 9a22fc00 ixor rega ,null 
+73ea 2442f3f9 ncall shutter_le_send_key_data ,zero 
+73eb 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73ec 6808c7c2 fetcht 1 ,mem_key_value_temp6 
+73ed 18408401 increase 1 ,temp 
+73ee 6008c7c2 storet 1 ,mem_key_value_temp6 
+73ef 18420e00 copy temp ,queue 
+73f0 98e2fc00 ixor queue ,null 
+73f1 2422f3df nbranch shutter_le_key_lp1 ,zero 
+73f2 680147b6 fetch 2 ,mem_key_value_temp 
+73f3 600147b8 store 2 ,mem_key_value 
+73f4 20600000 rtn 
+
+in_le_key_process_end:
+73f5 58000000 setarg 0 
+73f6 600147b6 store 2 ,mem_key_value_temp 
+73f7 600147b8 store 2 ,mem_key_value 
+73f8 20600000 rtn 
+
+shutter_le_send_key_data:
+73f9 1a227e00 deposit rega 
+73fa 203a7419 branch in_le_key_is_release ,blank 
+73fb 79200025 set1 mark_ext_patch ,mark 
+73fc 44ef403b bpatch patch3b_6 ,mem_patch3b 
+73fd 18e27e00 copy queue ,pdata 
+73fe c0007423 beq 0 ,in_le_send_key0_press 
+73ff c000f427 beq 1 ,in_le_send_key1_press 
+7400 c001742b beq 2 ,in_le_send_key2_press 
+7401 c001f42f beq 3 ,in_le_send_key3_press 
+7402 c0027433 beq 4 ,in_le_send_key4_press 
+7403 c002f437 beq 5 ,in_le_send_key5_press 
+
+in_le_send_lable:
+7404 6800c56b fetch 1 ,mem_le_enc_state 
+7405 c1818000 rtnne flag_le_enc_end 
+7406 6800c8bb fetch 1 ,mem_shutter_key_data_flag_1 
+7407 247a0000 nrtn blank 
+7408 e8408000 ifetch 1 ,temp 
+7409 207a0000 rtn blank 
+740a 6000c7ba store 1 ,mem_key_packet_count 
+740b 18408401 increase 1 ,temp 
+740c 600947bb storet 2 ,mem_key_next_addr 
+
+in_le_send_lp1:
+740d 680147bb fetch 2 ,mem_key_next_addr 
+740e efe88000 ifetcht 1 ,pdata 
+740f 18427200 copy temp ,loopcnt 
+7410 98408400 iadd temp ,temp 
+7411 600947bb storet 2 ,mem_key_next_addr 
+7412 1fe20400 copy pdata ,temp 
+7413 2040749c call shutter_le_queue_put 
+7414 6800c7ba fetch 1 ,mem_key_packet_count 
+7415 1fe0ffff increase -1 ,pdata 
+7416 6000c7ba store 1 ,mem_key_packet_count 
+7417 2422f40d nbranch in_le_send_lp1 ,zero 
+7418 202074ca branch shutter_le_send_packet 
+
+in_le_key_is_release:
+7419 79200025 set1 mark_ext_patch ,mark 
+741a 44efc03b bpatch patch3b_7 ,mem_patch3b 
+741b 18e27e00 copy queue ,pdata 
+741c c000743b beq 0 ,in_le_send_key0_rel 
+741d c000f43f beq 1 ,in_le_send_key1_rel 
+741e c0017443 beq 2 ,in_le_send_key2_rel 
+741f c001f447 beq 3 ,in_le_send_key3_rel 
+7420 c002744b beq 4 ,in_le_send_key4_rel 
+7421 c002f44f beq 5 ,in_le_send_key5_rel 
+7422 20207404 branch in_le_send_lable 
+
+in_le_send_key0_press:
+7423 6800c7ab fetch 1 ,mem_key_conf0_led 
+7424 20407457 call shutter_le_key_led_index 
+7425 d84047c3 arg mem_key0_press ,temp 
+7426 20207404 branch in_le_send_lable 
+
+in_le_send_key1_press:
+7427 6800c7ad fetch 1 ,mem_key_conf1_led 
+7428 20407457 call shutter_le_key_led_index 
+7429 d84047eb arg mem_key1_press ,temp 
+742a 20207404 branch in_le_send_lable 
+
+in_le_send_key2_press:
+742b 6800c7af fetch 1 ,mem_key_conf2_led 
+742c 20407457 call shutter_le_key_led_index 
+742d d8404807 arg mem_key2_press ,temp 
+742e 20207404 branch in_le_send_lable 
+
+in_le_send_key3_press:
+742f 6800c7b1 fetch 1 ,mem_key_conf3_led 
+7430 20407457 call shutter_le_key_led_index 
+7431 d8404823 arg mem_key3_press ,temp 
+7432 20207404 branch in_le_send_lable 
+
+in_le_send_key4_press:
+7433 6800c7b3 fetch 1 ,mem_key_conf4_led 
+7434 20407457 call shutter_le_key_led_index 
+7435 d840483f arg mem_key4_press ,temp 
+7436 20207404 branch in_le_send_lable 
+
+in_le_send_key5_press:
+7437 6800c7b5 fetch 1 ,mem_key_conf5_led 
+7438 20407457 call shutter_le_key_led_index 
+7439 d840485b arg mem_key5_press ,temp 
+743a 20207404 branch in_le_send_lable 
+
+in_le_send_key0_rel:
+743b 6800c7ab fetch 1 ,mem_key_conf0_led 
+743c 20407453 call shutter_le_disble_key_led 
+743d d84047d7 arg mem_key0_release ,temp 
+743e 20207404 branch in_le_send_lable 
+
+in_le_send_key1_rel:
+743f 6800c7ad fetch 1 ,mem_key_conf1_led 
+7440 20407453 call shutter_le_disble_key_led 
+7441 d84047f9 arg mem_key1_release ,temp 
+7442 20207404 branch in_le_send_lable 
+
+in_le_send_key2_rel:
+7443 6800c7af fetch 1 ,mem_key_conf2_led 
+7444 20407453 call shutter_le_disble_key_led 
+7445 d8404815 arg mem_key2_release ,temp 
+7446 20207404 branch in_le_send_lable 
+
+in_le_send_key3_rel:
+7447 6800c7b1 fetch 1 ,mem_key_conf3_led 
+7448 20407453 call shutter_le_disble_key_led 
+7449 d8404831 arg mem_key3_release ,temp 
+744a 20207404 branch in_le_send_lable 
+
+in_le_send_key4_rel:
+744b 6800c7b3 fetch 1 ,mem_key_conf4_led 
+744c 20407453 call shutter_le_disble_key_led 
+744d d840484d arg mem_key4_release ,temp 
+744e 20207404 branch in_le_send_lable 
+
+in_le_send_key5_rel:
+744f 6800c7b5 fetch 1 ,mem_key_conf5_led 
+7450 20407453 call shutter_le_disble_key_led 
+7451 d8404869 arg mem_key5_release ,temp 
+7452 20207404 branch in_le_send_lable 
+
+shutter_le_disble_key_led:
+7453 2fe1fe01 compare led_on ,pdata ,0xff 
+7454 20608000 rtn true 
+7455 18007e03 force 3 ,pdata 
+7456 20207457 branch shutter_le_key_led_index 
+
+shutter_le_key_led_index:
+7457 c000745c beq 0 ,in_le_key_led_0 
+7458 c000f45e beq 1 ,in_le_key_led_1 
+7459 c0017460 beq 2 ,in_le_key_led_2 
+745a c001f462 beq 3 ,in_le_key_led_3 
+
+in_le_light_led:
+745b 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_0:
+745c 58004786 setarg mem_key_led_style_ind_0 
+745d 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_1:
+745e 5800478d setarg mem_key_led_style_ind_1 
+745f 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_2:
+7460 58004794 setarg mem_key_led_style_ind_2 
+7461 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_3:
+7462 5800479b setarg mem_key_led_style_ind_3 
+7463 2020738e branch shutter_ui_led_send 
+
+shutter_ui_power_timeout_timer:
+7464 6800c75a fetch 1 ,mem_power_timer 
+7465 207a0000 rtn blank 
+7466 1fe0ffff increase -1 ,pdata 
+7467 6000c75a store 1 ,mem_power_timer 
+7468 247a0000 nrtn blank 
+7469 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+746a c000f2c0 beq shutter_power_on ,shutter_le_soft_switch_power_on_signal 
+746b 2020748a branch shutter_shutter_power_off_signal 
+
+shutter_ui_button_timeout_timer:
+746c 6800c758 fetch 1 ,mem_shutter_button_timer 
+746d 207a0000 rtn blank 
+746e 1fe0ffff increase -1 ,pdata 
+746f 6000c758 store 1 ,mem_shutter_button_timer 
+7470 247a0000 nrtn blank 
+7471 20203e73 branch app_led_off 
+
+shutter_shuuter_led_on:
+7472 6800c757 fetch 1 ,mem_shutter_button_timeout 
+7473 6000c758 store 1 ,mem_shutter_button_timer 
+7474 20203e71 branch app_led_on 
+
+shutter_bb_event_button_up:
+7475 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+7476 c000f478 beq shutter_power_on ,in_power_release 
+7477 20203e75 branch app_enter_hibernate 
+
+in_power_release:
+7478 70475b01 jam 1 ,mem_enable_key_scan 
+7479 20600000 rtn 
+
+shutter_evt_button_long_pressed:
+747a 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+747b c000f481 beq shutter_power_on ,shutter_le_power_off 
+747c 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+747d 58004771 setarg mem_power_on_led_style 
+
+shutter_shutter_power_on:
+
+shutter_shutter_power_on_off:
+747e 6808c759 fetcht 1 ,mem_power_timeout 
+747f 6008c75a storet 1 ,mem_power_timer 
+7480 2020738e branch shutter_ui_led_send 
+
+shutter_le_power_off:
+7481 70475602 jam shutter_power_off ,mem_shutter_powerup_flag 
+7482 70475b00 jam 0 ,mem_enable_key_scan 
+7483 7043ff00 jam off ,mem_le_adv_enable 
+7484 6801470b fetch 2 ,mem_ui_state_map 
+7485 c304f487 bbit0 ui_state_ble_connected ,shutter_shutter_power_off_end 
+7486 20403e6b call app_ble_disconnect 
+
+shutter_shutter_power_off_end:
+7487 7043ff00 jam off ,mem_le_adv_enable 
+7488 58004778 setarg mem_powe_off_led_style 
+7489 2020747e branch shutter_shutter_power_on_off 
+
+shutter_shutter_power_off_signal:
+748a 20407382 call shutter_ui_led_init 
+748b 20203e75 branch app_enter_hibernate 
+
+shutter_le_process_lpm_before:
+748c 6800c7a9 fetch 1 ,mem_shutter_key_num 
+748d 207a0000 rtn blank 
+748e 1fe27200 copy pdata ,loopcnt 
+748f 580047aa setarg mem_key_conf0_pin 
+7490 1fe22200 copy pdata ,rega 
+
+in_shutter_process_lpm_before_lp1:
+7491 ea288000 ifetcht 1 ,rega 
+7492 204064c2 call gpio_set_wake_by_current_state 
+7493 1a20a202 increase key_conf_struct_len ,rega 
+7494 c2007491 loop in_shutter_process_lpm_before_lp1 
+
+shutter_le_process_lpm_before_end:
+7495 20600000 rtn 
+
+shutter_le_queue_init:
+7496 70487700 jam 0 ,mem_queue_ele_num 
+7497 5800487c setarg mem_queue_start 
+7498 60014878 store 2 ,mem_queue_read 
+7499 6001487a store 2 ,mem_queue_write 
+749a 20600000 rtn 
+
+shutter_le_queue_clear:
+749b 20207496 branch shutter_le_queue_init 
+
+shutter_le_queue_put:
+749c 78547c00 disable user 
+749d 6800c877 fetch 1 ,mem_queue_ele_num 
+749e 2fe1fe06 compare queue_ele_count ,pdata ,0xff 
+749f 20608000 rtn true 
+74a0 78347c00 enable user 
+74a1 6801487a fetch 2 ,mem_queue_write 
+74a2 1fe20a00 copy pdata ,contw 
+74a3 18420c00 copy temp ,contr 
+74a4 20407ecd call memcpy 
+74a5 6800c877 fetch 1 ,mem_queue_ele_num 
+74a6 1fe0fe01 increase 1 ,pdata 
+74a7 6000c877 store 1 ,mem_queue_ele_num 
+74a8 5800487a setarg mem_queue_write 
+74a9 204074ab call shutter_le_queue_increase 
+74aa 20600000 rtn 
+
+shutter_le_queue_increase:
+74ab 1fe22200 copy pdata ,rega 
+74ac d84048b8 arg mem_queue_end ,temp 
+74ad ea210000 ifetch 2 ,rega 
+74ae 1fe0fe0a increase queue_ele_length ,pdata 
+74af 98467c00 isub temp ,null 
+74b0 242174b2 nbranch shutter_le_queue_put_end ,positive 
+74b1 5800487c setarg mem_queue_start 
+
+shutter_le_queue_put_end:
+74b2 e2210000 istore 2 ,rega 
+74b3 20600000 rtn 
+
+shutter_le_queue_get:
+74b4 78547c00 disable user 
+74b5 6800c877 fetch 1 ,mem_queue_ele_num 
+74b6 207a0000 rtn blank 
+74b7 78347c00 enable user 
+74b8 6800c877 fetch 1 ,mem_queue_ele_num 
+74b9 1fe0ffff increase -1 ,pdata 
+74ba 6000c877 store 1 ,mem_queue_ele_num 
+74bb 68014878 fetch 2 ,mem_queue_read 
+74bc 600148b8 store 2 ,mem_queue_temp 
+74bd 58004878 setarg mem_queue_read 
+74be 204074ab call shutter_le_queue_increase 
+74bf 680148b8 fetch 2 ,mem_queue_temp 
+74c0 20600000 rtn 
+
+shutter_le_queue_read_point:
+74c1 78547c00 disable user 
+74c2 6800c877 fetch 1 ,mem_queue_ele_num 
+74c3 207a0000 rtn blank 
+74c4 78347c00 enable user 
+74c5 68014878 fetch 2 ,mem_queue_read 
+74c6 20600000 rtn 
+
+shutter_le_packet_interval_set:
+74c7 6801475c fetch 2 ,mem_packet_interval_set 
+74c8 d8e0000c arg temp_timer ,queue 
+74c9 20207ed4 branch timer_init 
+
+shutter_le_send_packet:
+74ca 204074c1 call shutter_le_queue_read_point 
+74cb 24740000 nrtn user 
+74cc 78547c00 disable user 
+74cd 18000413 force 0x0013 ,temp 
+74ce 600944f8 storet 2 ,mem_le_notify_handle 
+74cf 202074d0 branch shutter_le_shutter_send_keydata 
+
+shutter_le_shutter_send_keydata:
+74d0 df200002 arg 2 ,loopcnt 
+74d1 680944f8 fetcht 2 ,mem_le_notify_handle 
+74d2 d8c04729 arg mem_shutter_send_data ,contr 
+74d3 204074d7 call shutter_le_tx_notification 
+74d4 20600000 rtn 
+
+shutter_le_tx_indication:
+74d5 7009bd1d jam attop_handle_value_indication ,mem_fifo_temp 
+74d6 202074dc branch shutter_le_tx_common 
+
+shutter_le_tx_notification:
+74d7 20404bd0 call le_xtype_fifo_is_empty 
+74d8 247a0000 nrtn blank 
+74d9 6800c8ba fetch 1 ,mem_shutter_key_data_flag 
+74da 247a0000 nrtn blank 
+74db 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+
+shutter_le_tx_common:
+74dc 20404bd6 call le_xtype_fifo_in 
+74dd 2020735f branch shutter_le_tx_buff_inuse 
+
+shutter_shutter_cancel_key_shake:
+74de 680a472f fetcht 4 ,mem_shutter_clkn_bt_last 
+74df 1c427e00 deposit clkn_bt 
+74e0 6002472f store 4 ,mem_shutter_clkn_bt_last 
+74e1 98467e00 isub temp ,pdata 
+74e2 24610000 nrtn positive 
+74e3 1fe67e14 sub pdata ,20 ,pdata 
+74e4 20600000 rtn 
+
+shutter_le_send_att_handle_value_notification:
+74e5 204074b4 call shutter_le_queue_get 
+74e6 24740000 nrtn user 
+74e7 78547c00 disable user 
+74e8 1fe20c00 copy pdata ,contr 
+74e9 e8c88000 ifetcht 1 ,contr 
+74ea 184085fd increase -3 ,temp 
+74eb 18427200 copy temp ,loopcnt 
+74ec e8c90000 ifetcht 2 ,contr 
+74ed 1f20fe07 add loopcnt ,7 ,pdata 
+74ee 6000c73f store 1 ,mem_scale_tx_length 
+74ef d8a0446c arg mem_le_l2cap + 1 ,contw 
+74f0 e0a90000 istoret 2 ,contw 
+74f1 20407ecd call memcpy 
+74f2 6808c73f fetcht 1 ,mem_scale_tx_length 
+74f3 20204f89 branch le_send_packet 
+
+shutter_le_receive_data:
+74f4 6800839a fetch 1 ,mem_le_att_opcode 
+74f5 c00974f8 beq attop_write_request ,shutter_le_parse_att_write_request 
+74f6 c02974fb beq attop_write_command ,shutter_le_parse_att_write_command 
+74f7 20600000 rtn 
+
+shutter_le_parse_att_write_request:
+74f8 6801039b fetch 2 ,mem_le_att_handle 
+74f9 c00c74fb beq att_write_request_handle ,shutter_key_data_send 
+74fa 20600000 rtn 
+
+shutter_le_parse_att_write_command:
+
+shutter_key_data_send:
+74fb 7048ba00 jam 0 ,mem_shutter_key_data_flag 
+74fc 20600000 rtn 
+
+init_shutter_le_att_list:
+74fd d8a048cc arg mem_shutter_le_att_list ,contw 
+74fe 38020001 setsect 0 ,0x20001 
+74ff 38060000 setsect 1 ,0x20000 
+7500 38081022 setsect 2 ,0x1022 
+7501 380c0860 setsect 3 ,0x860 
+7502 e0a48000 istore 9 ,contw 
+7503 38030200 setsect 0 ,0x30200 
+7504 38044a00 setsect 1 ,0x4a00 
+7505 38083200 setsect 2 ,0x3200 
+7506 380c0800 setsect 3 ,0x800 
+7507 e0a48000 istore 9 ,contw 
+7508 38012a05 setsect 0 ,0x12a05 
+7509 38050000 setsect 1 ,0x10000 
+750a 38082000 setsect 2 ,0x2000 
+750b 380ca408 setsect 3 ,0xa408 
+750c e0a48000 istore 9 ,contw 
+750d 38000002 setsect 0 ,0x2 
+750e 38040140 setsect 1 ,0x140 
+750f 38080020 setsect 2 ,0x20 
+7510 380c08a0 setsect 3 ,0x8a0 
+7511 e0a48000 istore 9 ,contw 
+7512 38021800 setsect 0 ,0x21800 
+7513 38048001 setsect 1 ,0x8001 
+7514 380a8030 setsect 2 ,0x28030 
+7515 380c0804 setsect 3 ,0x804 
+7516 e0a48000 istore 9 ,contw 
+7517 38020007 setsect 0 ,0x20007 
+7518 38068000 setsect 1 ,0x28000 
+7519 38083132 setsect 2 ,0x3132 
+751a 380da5a1 setsect 3 ,0x1a5a1 
+751b e0a48000 istore 9 ,contw 
+751c 38017370 setsect 0 ,0x17370 
+751d 38075859 setsect 1 ,0x35859 
+751e 3808c422 setsect 2 ,0xc422 
+751f 380c8115 setsect 3 ,0x8115 
+7520 e0a48000 istore 9 ,contw 
+7521 38002020 setsect 0 ,0x2020 
+7522 38040808 setsect 1 ,0x808 
+7523 380a0202 setsect 2 ,0x20202 
+7524 380c0020 setsect 3 ,0x20 
+7525 e0a48000 istore 9 ,contw 
+7526 38000302 setsect 0 ,0x302 
+7527 3804804a setsect 1 ,0x804a 
+7528 38080090 setsect 2 ,0x90 
+7529 380c0408 setsect 3 ,0x408 
+752a e0a48000 istore 9 ,contw 
+752b 3800022a setsect 0 ,0x22a 
+752c 38068032 setsect 1 ,0x28032 
+752d 38082000 setsect 2 ,0x2000 
+752e 380ca00c setsect 3 ,0xa00c 
+752f e0a48000 istore 9 ,contw 
+7530 38030201 setsect 0 ,0x30201 
+7531 38048002 setsect 1 ,0x8002 
+7532 380aa040 setsect 2 ,0x2a040 
+7533 380c1820 setsect 3 ,0x1820 
+7534 e0a48000 istore 9 ,contw 
+7535 38000600 setsect 0 ,0x600 
+7536 38041900 setsect 1 ,0x1900 
+7537 380812c0 setsect 2 ,0x12c0 
+7538 380c0030 setsect 3 ,0x30 
+7539 e0a48000 istore 9 ,contw 
+753a 38000002 setsect 0 ,0x2 
+753b 3806808a setsect 1 ,0x2808a 
+753c 3808d180 setsect 2 ,0xd180 
+753d 380c0800 setsect 3 ,0x800 
+753e e0a48000 istore 9 ,contw 
+753f 38012803 setsect 0 ,0x12803 
+7540 38078080 setsect 1 ,0x38080 
+7541 38082000 setsect 2 ,0x2000 
+7542 380ca940 setsect 3 ,0xa940 
+7543 e0a48000 istore 9 ,contw 
+7544 38020207 setsect 0 ,0x20207 
+7545 38058922 setsect 1 ,0x18922 
+7546 38081826 setsect 2 ,0x1826 
+7547 380c3c00 setsect 3 ,0x3c00 
+7548 e0a48000 istore 9 ,contw 
+7549 38000200 setsect 0 ,0x200 
+754a 38048a00 setsect 1 ,0x8a00 
+754b 38098120 setsect 2 ,0x18120 
+754c 380c0040 setsect 3 ,0x40 
+754d e0a48000 istore 9 ,contw 
+754e 38000302 setsect 0 ,0x302 
+754f 3805804a setsect 1 ,0x1804a 
+7550 38080110 setsect 2 ,0x110 
+7551 380d3808 setsect 3 ,0x13808 
+7552 e0a48000 istore 9 ,contw 
+7553 5801012a setarg 0x1012a 
+7554 e0a18000 istore 3 ,contw 
+7555 38020012 setsect 0 ,0x20012 
+7556 380600c0 setsect 1 ,0x200c0 
+7557 38092012 setsect 2 ,0x12012 
+7558 380c004c setsect 3 ,0x4c 
+7559 e0a48000 istore 9 ,contw 
+755a 38024d02 setsect 0 ,0x24d02 
+755b 3804008a setsect 1 ,0x8a 
+755c 38094280 setsect 2 ,0x14280 
+755d 380c0800 setsect 3 ,0x800 
+755e e0a48000 istore 9 ,contw 
+755f 38022902 setsect 0 ,0x22902 
+7560 38040000 setsect 1 ,0x0 
+7561 38080150 setsect 2 ,0x150 
+7562 380c2008 setsect 3 ,0x2008 
+7563 e0a48000 istore 9 ,contw 
+7564 38020229 setsect 0 ,0x20229 
+7565 38058040 setsect 1 ,0x18040 
+7566 38082001 setsect 2 ,0x2001 
+7567 380ca00c setsect 3 ,0xa00c 
+7568 e0a48000 istore 9 ,contw 
+7569 38031201 setsect 0 ,0x31201 
+756a 38048005 setsect 1 ,0x8005 
+756b 380aa4d0 setsect 2 ,0x2a4d0 
+756c 380c0008 setsect 3 ,0x8 
+756d e0a48000 istore 9 ,contw 
+756e 38001828 setsect 0 ,0x1828 
+756f 38048080 setsect 1 ,0x8080 
+7570 38082290 setsect 2 ,0x2290 
+7571 380c0000 setsect 3 ,0x0 
+7572 e0a48000 istore 9 ,contw 
+7573 38020019 setsect 0 ,0x20019 
+7574 38064200 setsect 1 ,0x24200 
+7575 38083022 setsect 2 ,0x3022 
+7576 380c6804 setsect 3 ,0x6804 
+7577 e0a48000 istore 9 ,contw 
+7578 38030200 setsect 0 ,0x30200 
+7579 38044a00 setsect 1 ,0x4a00 
+757a 3809b020 setsect 2 ,0x1b020 
+757b 380c0800 setsect 3 ,0x800 
+757c e0a48000 istore 9 ,contw 
+757d 38002a4b setsect 0 ,0x2a4b 
+757e 38070151 setsect 1 ,0x30151 
+757f 38081090 setsect 2 ,0x1090 
+7580 380c0684 setsect 3 ,0x684 
+7581 e0a48000 istore 9 ,contw 
+7582 38010285 setsect 0 ,0x10285 
+7583 38067a42 setsect 1 ,0x27a42 
+7584 38089ea0 setsect 2 ,0x9ea0 
+7585 380c2788 setsect 3 ,0x2788 
+7586 e0a48000 istore 9 ,contw 
+7587 38011530 setsect 0 ,0x11530 
+7588 38070940 setsect 1 ,0x30940 
+7589 38090750 setsect 2 ,0x10750 
+758a 380c0654 setsect 3 ,0x654 
+758b e0a48000 istore 9 ,contw 
+758c 38000081 setsect 0 ,0x81 
+758d 38044170 setsect 1 ,0x4170 
+758e 38086090 setsect 2 ,0x6090 
+758f 380c0684 setsect 3 ,0x684 
+7590 e0a48000 istore 9 ,contw 
+7591 38010385 setsect 0 ,0x10385 
+7592 380641c1 setsect 1 ,0x241c1 
+7593 380a9e01 setsect 2 ,0x29e01 
+7594 380c579c setsect 3 ,0x579c 
+7595 e0a48000 istore 9 ,contw 
+7596 38012500 setsect 0 ,0x12500 
+7597 38045d40 setsect 1 ,0x5d40 
+7598 38088950 setsect 2 ,0x8950 
+7599 380c0a04 setsect 3 ,0xa04 
+759a e0a48000 istore 9 ,contw 
+759b 38010875 setsect 0 ,0x10875 
+759c 38054065 setsect 1 ,0x14065 
+759d 380a5001 setsect 2 ,0x25001 
+759e 380c17d0 setsect 3 ,0x17d0 
+759f e0a48000 istore 9 ,contw 
+75a0 38001907 setsect 0 ,0x1907 
+75a1 38050a40 setsect 1 ,0x10a40 
+75a2 3808081f setsect 2 ,0x81f 
+75a3 380c0300 setsect 3 ,0x300 
+75a4 e0a40000 istore 8 ,contw 
+75a5 3802001c setsect 0 ,0x2001c 
+75a6 380600c0 setsect 1 ,0x200c0 
+75a7 38082012 setsect 2 ,0x2012 
+75a8 380c0074 setsect 3 ,0x74 
+75a9 e0a48000 istore 9 ,contw 
+75aa 38024a02 setsect 0 ,0x24a02 
+75ab 3804410a setsect 1 ,0x410a 
+75ac 38080011 setsect 2 ,0x11 
+75ad 380c7804 setsect 3 ,0x7804 
+75ae e0a48000 istore 9 ,contw 
+75af 38030200 setsect 0 ,0x30200 
+75b0 38044a00 setsect 1 ,0x4a00 
+75b1 3809f040 setsect 2 ,0x1f040 
+75b2 380c0800 setsect 3 ,0x800 
+75b3 e0a48000 istore 9 ,contw 
+75b4 38012a4c setsect 0 ,0x12a4c 
+75b5 38040000 setsect 1 ,0x0 
+75b6 38082002 setsect 2 ,0x2002 
+75b7 380ca000 setsect 3 ,0xa000 
+75b8 e0a48000 istore 9 ,contw 
+75b9 38000f02 setsect 0 ,0xf02 
+75ba 38040846 setsect 1 ,0x846 
+75bb 38083020 setsect 2 ,0x3020 
+75bc 380c04a0 setsect 3 ,0x4a0 
+75bd e0a48000 istore 9 ,contw 
+75be 38002212 setsect 0 ,0x2212 
+75bf 38064080 setsect 1 ,0x24080 
+75c0 380812a1 setsect 2 ,0x12a1 
+75c1 380c8c00 setsect 3 ,0x8c00 
+75c2 e0a48000 istore 9 ,contw 
+75c3 38020200 setsect 0 ,0x20200 
+75c4 38048a40 setsect 1 ,0x8a40 
+75c5 38080000 setsect 2 ,0x0 
+75c6 380c0000 setsect 3 ,0x0 
+75c7 e0a48000 istore 9 ,contw 
+75c8 20600000 rtn 
+
+shutter_init_param:
+75c9 7044df01 jam 1 ,mem_le_pres_auth 
+75ca 7045a801 jam 1 ,mem_le_flag 
+75cb 70456c01 jam 1 ,mem_le_pairing_mode 
+75cc 5800001b setarg 0x1b 
+75cd 6001458b store 2 ,mem_le_pairing_handle 
+75ce 70452201 jam 1 ,mem_le_adv_direct_addr_type 
+75cf 7048c803 jam 3 ,mem_empty_count 
+75d0 70459650 jam 0x50 ,mem_le_transmit_window 
+75d1 70454c17 jam 0x17 ,mem_le_local_mtu 
+75d2 70454e17 jam 0x17 ,mem_le_remote_mtu 
+75d3 d8a044dc arg mem_le_pres ,contw 
+75d4 38000302 setsect 0 ,0x302 
+75d5 38040040 setsect 1 ,0x40 
+75d6 38081021 setsect 2 ,0x1021 
+75d7 380c0000 setsect 3 ,0x0 
+75d8 e0a38000 istore 7 ,contw 
+75d9 d8a0458d arg mem_le_interal_min ,contw 
+75da 38000008 setsect 0 ,0x8 
+75db 38040004 setsect 1 ,0x4 
+75dc 380ac000 setsect 2 ,0x2c000 
+75dd 380c0004 setsect 3 ,0x4 
+75de e0a40000 istore 8 ,contw 
+75df 20600000 rtn 
+
+publickey_init:
+75e0 6800c6e2 fetch 1 ,mem_ssp_enable 
+75e1 243a75f4 nbranch sp_initialize ,blank 
+75e2 20207a96 branch sp_initialize_256 
+
+publickey_calc:
+75e3 79200025 set1 mark_ext_patch ,mark 
+75e4 44f0403c bpatch patch3c_0 ,mem_patch3c 
+75e5 6800c6e2 fetch 1 ,mem_ssp_enable 
+75e6 207a0000 rtn blank 
+75e7 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+75e8 c1808000 rtnne sp_key_valid 
+75e9 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+75ea 207a0000 rtn blank 
+75eb 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+75ec c1018000 rtneq sp_key_valid_256 
+75ed 6801470b fetch 2 ,mem_ui_state_map 
+75ee c28075f2 bbit1 ui_state_bt_connected ,stop_publickey_calc_256 
+75ef 6800c565 fetch 1 ,mem_le_sc_calc 
+75f0 c0007a96 beq sp_calc_standby ,sp_initialize_256 
+75f1 20600000 rtn 
+
+stop_publickey_calc_256:
+75f2 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+75f3 20600000 rtn 
+
+sp_initialize:
+75f4 79200025 set1 mark_ext_patch ,mark 
+75f5 44f0c03c bpatch patch3c_1 ,mem_patch3c 
+75f6 6800c6e2 fetch 1 ,mem_ssp_enable 
+75f7 203a5737 branch ssp_disable ,blank 
+75f8 2040572f call ssp_enable 
+75f9 204075fb call sp_clear_flags 
+75fa 20207684 branch sp_pubkey_calc 
+
+sp_clear_flags:
+75fb 58000000 setarg 0 
+75fc 600408d2 store 8 ,mem_sp_state_start 
+75fd 600208da store 4 ,mem_sp_flag_start 
+75fe 6003c6e6 store 7 ,mem_sp_iocap_remote 
+75ff 20600000 rtn 
+
+sp_generate_local_key:
+7600 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7601 20207605 branch sp_generate_local_key0 
+
+sp_master_generate_local_key:
+7602 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7603 c000f6a2 beq sp_key_valid ,sp_dhkey_calc 
+7604 20203b31 branch assert 
+
+sp_generate_local_key0:
+7605 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7606 c000f608 beq sp_key_valid ,sp_start_send_pubkey 
+7607 20207684 branch sp_pubkey_calc 
+
+sp_start_send_pubkey:
+7608 204076a2 call sp_dhkey_calc 
+7609 680088d3 fetch 1 ,mem_master_sp_state 
+760a 247a0000 nrtn blank 
+760b 7008d203 jam sp_stat_key_send ,mem_sp_state 
+760c 20600000 rtn 
+
+sp_calculate_commitment:
+760d 680088d6 fetch 1 ,mem_sp_calc 
+760e c080762b bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+760f 20407628 call sp_local_random_key_generator 
+7610 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7611 58000952 setarg mem_sp_random_local_end 
+7612 e0a10000 istore 2 ,contw 
+7613 580046ca setarg mem_sp_pubkey_local_x_end 
+7614 e0a10000 istore 2 ,contw 
+7615 58000902 setarg mem_sp_pubkey_remote_x_end 
+7616 e0a10000 istore 2 ,contw 
+7617 2020761f branch sp_calculate_commitment0 
+
+master_sp_calculate_commitment:
+7618 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7619 58000962 setarg mem_sp_random_remote_end 
+761a e0a10000 istore 2 ,contw 
+761b 58000902 setarg mem_sp_pubkey_remote_x_end 
+761c e0a10000 istore 2 ,contw 
+761d 580046ca setarg mem_sp_pubkey_local_x_end 
+761e e0a10000 istore 2 ,contw 
+
+sp_calculate_commitment0:
+761f 204079bd call function_f1 
+7620 680088d3 fetch 1 ,mem_master_sp_state 
+7621 c0027625 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+7622 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7623 7008d205 jam sp_stat_commit_send ,mem_sp_state 
+7624 20600000 rtn 
+
+master_sp_calculate_commitment0:
+7625 7008d314 jam sp_stat_commitment_compare ,mem_master_sp_state 
+7626 20407602 call sp_master_generate_local_key 
+7627 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+7628 d8a00942 arg mem_sp_random_local ,contw 
+7629 18000e08 force 8 ,queue 
+762a 202076bb branch random_generator 
+
+sp_calculate_commitment_wait_dhkey_calc:
+762b 7008d401 jam sp_flag_commit ,mem_sp_flag 
+762c 20600000 rtn 
+
+sp_confirm_check:
+762d 79200025 set1 mark_ext_patch ,mark 
+762e 44f1403c bpatch patch3c_2 ,mem_patch3c 
+762f d8a0064b arg mem_addr_value ,contw 
+7630 68034140 fetch 6 ,mem_lap 
+7631 e0a30000 istore 6 ,contw 
+7632 68030040 fetch 6 ,mem_plap 
+7633 e0a30000 istore 6 ,contw 
+7634 6801c6e6 fetch 3 ,mem_sp_iocap_remote 
+7635 e0a18000 istore 3 ,contw 
+7636 20407a2b call function_f3a 
+7637 da200972 arg mem_sp_calc_result_high ,rega 
+7638 da400982 arg mem_sp_check_result ,regb 
+7639 18000e04 force 4 ,queue 
+763a 204076c0 call compare4 
+763b 2420f648 nbranch sp_confirm_check_failed ,true 
+763c 2040763f call sp_confirm_check_success 
+763d 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+763e 20205903 branch tid_set_reply 
+
+sp_confirm_check_success:
+763f 680088d3 fetch 1 ,mem_master_sp_state 
+7640 c004f645 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+7641 7008d20a jam sp_stat_confirm_calc ,mem_sp_state 
+7642 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7643 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7644 20600000 rtn 
+
+sp_confirm_check_success_master:
+7645 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7646 7008d315 jam sp_state_end ,mem_master_sp_state 
+7647 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_confirm_check_failed:
+7648 680088d3 fetch 1 ,mem_master_sp_state 
+7649 c004f64e beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+764a 7008d200 jam sp_stat_null ,mem_sp_state 
+764b 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+764c 70007e05 jam authentication_failure_error ,mem_lmo_reason2 
+764d 20600000 rtn 
+
+sp_confirm_check_failed_master:
+764e 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+764f 7008d300 jam sp_stat_null ,mem_master_sp_state 
+7650 20600000 rtn 
+
+sp_confirm_calc:
+7651 680088d7 fetch 1 ,mem_sp_dh_ready 
+7652 c000f655 beq sp_flag_commit ,sp_confirm_calc_ready 
+7653 7008d30a jam sp_stat_confirm_calc ,mem_master_sp_state 
+7654 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_confirm_calc_ready:
+7655 d8a0064b arg mem_addr_value ,contw 
+7656 68030040 fetch 6 ,mem_plap 
+7657 e0a30000 istore 6 ,contw 
+7658 68034140 fetch 6 ,mem_lap 
+7659 e0a30000 istore 6 ,contw 
+765a 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+765b e0a18000 istore 3 ,contw 
+765c 20407a43 call function_f3b 
+765d 680088d3 fetch 1 ,mem_master_sp_state 
+765e c0057662 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+765f 7008d20b jam sp_stat_confirm_send ,mem_sp_state 
+7660 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7661 20600000 rtn 
+
+sp_confirm_calc_master:
+7662 7008d30b jam sp_stat_confirm_send ,mem_master_sp_state 
+7663 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+7664 20600000 rtn 
+
+sp_master_key_prarm_push:
+7665 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7666 68030040 fetch 6 ,mem_plap 
+7667 e0a30000 istore 6 ,contw 
+7668 68034140 fetch 6 ,mem_lap 
+7669 e0a30000 istore 6 ,contw 
+766a 58000952 setarg mem_sp_random_local_end 
+766b e0a10000 istore 2 ,contw 
+766c 58000962 setarg mem_sp_random_remote_end 
+766d e0a10000 istore 2 ,contw 
+766e 20207679 branch sp_link_key_calc 
+
+sp_link_key_prarm_push:
+766f 7008d20f jam sp_stat_done ,mem_sp_state 
+7670 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7671 68034140 fetch 6 ,mem_lap 
+7672 e0a30000 istore 6 ,contw 
+7673 68030040 fetch 6 ,mem_plap 
+7674 e0a30000 istore 6 ,contw 
+7675 58000962 setarg mem_sp_random_remote_end 
+7676 e0a10000 istore 2 ,contw 
+7677 58000952 setarg mem_sp_random_local_end 
+7678 e0a10000 istore 2 ,contw 
+
+sp_link_key_calc:
+7679 d8a0064b arg mem_addr_value ,contw 
+767a 680309a2 fetch 6 ,mem_sp_prarm_stack 
+767b e0a30000 istore 6 ,contw 
+767c 680309a8 fetch 6 ,mem_sp_prarm_stack + 6 
+767d e0a30000 istore 6 ,contw 
+767e 204079f5 call function_f2 
+767f 70425d01 jam 1 ,mem_link_key_exists 
+7680 d8a04261 arg mem_link_key ,contw 
+7681 d8c00972 arg mem_sp_calc_result_high ,contr 
+7682 20407e87 call memcpy16 
+7683 202031ee branch generate_linkkey_continue 
+
+sp_pubkey_calc:
+7684 79200025 set1 mark_ext_patch ,mark 
+7685 44f1c03c bpatch patch3c_3 ,mem_patch3c 
+7686 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7687 c1800000 rtnne sp_key_invalid 
+7688 680088d6 fetch 1 ,mem_sp_calc 
+7689 c1800000 rtnne sp_calc_standby 
+768a d8a0469a arg mem_sp_private_key ,contw 
+768b 18000e0b force 11 ,queue 
+768c 204076bb call random_generator 
+768d 180a7e00 random pdata 
+768e 1fe37e00 rshift pdata ,pdata 
+768f e0a10000 istore 2 ,contw 
+7690 d8a005e2 arg mem_k ,contw 
+7691 d8c0469a arg mem_sp_private_key ,contr 
+7692 20407e86 call memcpy24 
+7693 d8a0050a arg mem_ax ,contw 
+7694 d8c007f2 arg mem_gx ,contr 
+7695 20407e84 call memcpy48 
+7696 d8a0053a arg mem_az ,contw 
+7697 20407e90 call bn_zero 
+7698 70053a01 jam 1 ,mem_az 
+7699 20407a7c call eckp_calc_init 
+769a 7008d601 jam sp_calc_pubkey ,mem_sp_calc 
+769b 20600000 rtn 
+
+sp_pubkey_generated:
+769c d8a046b2 arg mem_sp_pubkey_local ,contw 
+769d d8c00552 arg mem_bx ,contr 
+769e 20407e84 call memcpy48 
+769f 70463901 jam sp_key_valid ,mem_sp_local_key_invalid 
+76a0 7008d600 jam sp_calc_standby ,mem_sp_calc 
+76a1 20600000 rtn 
+
+sp_dhkey_calc:
+76a2 79200025 set1 mark_ext_patch ,mark 
+76a3 44f2403c bpatch patch3c_4 ,mem_patch3c 
+76a4 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+76a5 c1800000 rtnne sp_key_invalid 
+76a6 680088d6 fetch 1 ,mem_sp_calc 
+76a7 c1800000 rtnne sp_calc_standby 
+76a8 d8a005e2 arg mem_k ,contw 
+76a9 d8c0469a arg mem_sp_private_key ,contr 
+76aa 20407e86 call memcpy24 
+76ab d8a0050a arg mem_ax ,contw 
+76ac d8c008ea arg mem_sp_pubkey_remote ,contr 
+76ad 20407e84 call memcpy48 
+76ae d8a0053a arg mem_az ,contw 
+76af 20407e90 call bn_zero 
+76b0 70053a01 jam 1 ,mem_az 
+76b1 20407a7c call eckp_calc_init 
+76b2 7008d602 jam sp_calc_dhkey ,mem_sp_calc 
+76b3 20600000 rtn 
+
+sp_dhkey_generated:
+76b4 7008d701 jam sp_flag_commit ,mem_sp_dh_ready 
+76b5 d8a0092a arg mem_sp_dhkey ,contw 
+76b6 d8c00552 arg mem_bx ,contr 
+76b7 20407e86 call memcpy24 
+76b8 7008dd01 jam sp_key_valid ,mem_sp_dhkey_invalid 
+76b9 7008d600 jam sp_calc_standby ,mem_sp_calc 
+76ba 20600000 rtn 
+
+random_generator:
+76bb 18e08fff increase -1 ,queue 
+76bc 24610000 nrtn positive 
+76bd 180a7e00 random pdata 
+76be e0a10000 istore 2 ,contw 
+76bf 202076bb branch random_generator 
+
+compare4:
+76c0 18e08fff increase -1 ,queue 
+76c1 242176cc nbranch compare4_success ,positive 
+76c2 ea220000 ifetch 4 ,rega 
+76c3 1fe20400 copy pdata ,temp 
+76c4 ea420000 ifetch 4 ,regb 
+76c5 9842fe00 iflip temp ,pdata 
+76c6 2422f6ca nbranch compare4_failed ,zero 
+76c7 1a20a204 increase 4 ,rega 
+76c8 1a40a404 increase 4 ,regb 
+76c9 202076c0 branch compare4 
+
+compare4_failed:
+76ca 7840fc00 disable true 
+76cb 20600000 rtn 
+
+compare4_success:
+76cc 7820fc00 enable true 
+76cd 20600000 rtn 
+
+simple_pairing_sequence:
+76ce 79200025 set1 mark_ext_patch ,mark 
+76cf 44f2c03c bpatch patch3c_5 ,mem_patch3c 
+76d0 680088d4 fetch 1 ,mem_sp_flag 
+76d1 207a0000 rtn blank 
+76d2 204058c5 call lmo_fifo_check 
+76d3 247a0000 nrtn blank 
+76d4 7008d400 jam sp_flag_standby ,mem_sp_flag 
+76d5 680088d2 fetch 1 ,mem_sp_state 
+76d6 c001d806 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+76d7 c002d823 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+76d8 c003d82e beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+76d9 c005d843 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+76da c0017600 beq sp_stat_key_generate ,sp_generate_local_key 
+76db c002760d beq sp_stat_commit_calc ,sp_calculate_commitment 
+76dc c004f62d beq sp_stat_confirm_check ,sp_confirm_check 
+76dd c0057651 beq sp_stat_confirm_calc ,sp_confirm_calc 
+76de c006766f beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+76df 20600000 rtn 
+
+master_simple_paring_sequence:
+76e0 79200025 set1 mark_ext_patch ,mark 
+76e1 44f3403c bpatch patch3c_6 ,mem_patch3c 
+76e2 680088d5 fetch 1 ,mem_master_sp_flag 
+76e3 207a0000 rtn blank 
+76e4 204058c5 call lmo_fifo_check 
+76e5 247a0000 nrtn blank 
+76e6 7008d500 jam sp_flag_standby ,mem_master_sp_flag 
+76e7 680088d3 fetch 1 ,mem_master_sp_state 
+76e8 c00957e9 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+76e9 c009d7ee beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+76ea c001d7f2 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+76eb c0027618 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+76ec c00a57f6 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+76ed c003d804 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+76ee c0057651 beq sp_stat_confirm_calc ,sp_confirm_calc 
+76ef c005d842 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+76f0 c004f62d beq sp_stat_confirm_check ,sp_confirm_check 
+76f1 c00ad83c beq sp_state_end ,master_sp_sm_end 
+76f2 20600000 rtn 
+
+master_set_mem_master_sp_flag:
+76f3 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+76f4 20600000 rtn 
+
+master_clear_mem_master_sp_flag:
+76f5 7008d500 jam sp_flag_standby ,mem_master_sp_flag 
+76f6 20600000 rtn 
+
+sp_calc_sequence:
+76f7 79200025 set1 mark_ext_patch ,mark 
+76f8 44f3c03c bpatch patch3c_7 ,mem_patch3c 
+76f9 6800c6e2 fetch 1 ,mem_ssp_enable 
+76fa 207a0000 rtn blank 
+76fb 680088d6 fetch 1 ,mem_sp_calc 
+76fc 207a0000 rtn blank 
+76fd 1fe0fe80 increase 0x80 ,pdata 
+76fe 600088d6 store 1 ,mem_sp_calc 
+76ff c3838000 rtnbit1 7 
+7700 68008507 fetch 1 ,mem_ec_loopc 
+7701 203a7703 branch sp_calc_sequence_done ,blank 
+7702 20207a87 branch eckp_calc 
+
+sp_calc_sequence_done:
+7703 204078ef call ecunmapz 
+7704 680088d6 fetch 1 ,mem_sp_calc 
+7705 c000f69c beq sp_calc_pubkey ,sp_pubkey_generated 
+7706 c00176b4 beq sp_calc_dhkey ,sp_dhkey_generated 
+7707 20600000 rtn 
+
+bn_testbit:
+7708 1fe10e07 and pdata ,7 ,queue 
+7709 1fe97e00 rshift3 pdata ,pdata 
+770a 98c08c00 iadd contr ,contr 
+770b e8c08000 ifetch 1 ,contr 
+770c afec0000 qisolate0 pdata 
+770d 20600000 rtn 
+
+ec_copy:
+770e 20407e86 call memcpy24 
+770f 20407e86 call memcpy24 
+7710 20207e86 branch memcpy24 
+
+bn_eq_zero:
+7711 e8c40000 ifetch 8 ,contr 
+7712 247a0000 nrtn blank 
+7713 e8c40000 ifetch 8 ,contr 
+7714 247a0000 nrtn blank 
+7715 e8c40000 ifetch 8 ,contr 
+7716 20600000 rtn 
+
+bn_eq_0:
+7717 ea220000 ifetch 4 ,rega 
+7718 98000400 iforce temp 
+7719 ea420000 ifetch 4 ,regb 
+771a 98467c00 isub temp ,null 
+771b 24628000 nrtn zero 
+771c 1a20a204 increase 4 ,rega 
+771d 1a40a404 increase 4 ,regb 
+771e c2007717 loop bn_eq_0 
+771f 20600000 rtn 
+
+bn_bigeq:
+7720 18007206 force 6 ,loopcnt 
+7721 1a20a214 increase 20 ,rega 
+7722 1a40a414 increase 20 ,regb 
+
+bn_bigeq_0:
+7723 ea420000 ifetch 4 ,regb 
+7724 98000400 iforce temp 
+7725 ea220000 ifetch 4 ,rega 
+7726 98467e00 isub temp ,pdata 
+7727 24610000 nrtn positive 
+7728 247a0000 nrtn blank 
+7729 1a20a3fc increase -4 ,rega 
+772a 1a40a5fc increase -4 ,regb 
+772b c2007723 loop bn_bigeq_0 
+772c 20600000 rtn 
+
+bn_add:
+772d 18007206 force 6 ,loopcnt 
+772e 18002600 force 0 ,regc 
+
+bn_add_0:
+772f ea220000 ifetch 4 ,rega 
+7730 98000400 iforce temp 
+7731 ea420000 ifetch 4 ,regb 
+7732 9840fe00 iadd temp ,pdata 
+7733 9a60fe00 iadd regc ,pdata 
+7734 e0a20000 istore 4 ,contw 
+7735 2feffe20 isolate1 32 ,pdata 
+7736 7920a600 setflag true ,0 ,regc 
+7737 1a20a204 increase 4 ,rega 
+7738 1a40a404 increase 4 ,regb 
+7739 c200772f loop bn_add_0 
+773a 20600000 rtn 
+
+bn_sub:
+773b 18007206 force 6 ,loopcnt 
+773c 18002600 force 0 ,regc 
+
+bn_sub_0:
+773d ea420000 ifetch 4 ,regb 
+773e 98000400 iforce temp 
+773f ea220000 ifetch 4 ,rega 
+7740 98467e00 isub temp ,pdata 
+7741 9a667e00 isub regc ,pdata 
+7742 e0a20000 istore 4 ,contw 
+7743 2feffe20 isolate1 32 ,pdata 
+7744 7920a600 setflag true ,0 ,regc 
+7745 1a20a204 increase 4 ,rega 
+7746 1a40a404 increase 4 ,regb 
+7747 c200773d loop bn_sub_0 
+7748 20600000 rtn 
+
+bn_rshift6:
+7749 18007206 force 6 ,loopcnt 
+774a 1a20a214 increase 20 ,rega 
+
+bn_rshift:
+774b 18002600 force 0 ,regc 
+
+bn_rshift_0:
+774c ea220000 ifetch 4 ,rega 
+774d 2feffe00 isolate1 0 ,pdata 
+774e 7920a601 setflag true ,1 ,regc 
+774f 1fe37e00 rshift pdata ,pdata 
+7750 2a6ffe00 isolate1 0 ,regc 
+7751 7920fe1f setflag true ,31 ,pdata 
+7752 e2220000 istore 4 ,rega 
+7753 1a20a3fc increase -4 ,rega 
+7754 1a632600 rshift regc ,regc 
+7755 c200774c loop bn_rshift_0 
+7756 20600000 rtn 
+
+bn_lshift:
+7757 18007206 force 6 ,loopcnt 
+7758 18002600 force 0 ,regc 
+
+bn_lshift_0:
+7759 ea220000 ifetch 4 ,rega 
+775a 2feffe1f isolate1 31 ,pdata 
+775b 7920a601 setflag true ,1 ,regc 
+775c 1fe3fe00 lshift pdata ,pdata 
+775d 2a6ffe00 isolate1 0 ,regc 
+775e 7920fe00 setflag true ,0 ,pdata 
+775f e2220000 istore 4 ,rega 
+7760 1a20a204 increase 4 ,rega 
+7761 1a632600 rshift regc ,regc 
+7762 c2007759 loop bn_lshift_0 
+7763 20600000 rtn 
+
+bn_lshiftmod:
+7764 20407757 call bn_lshift 
+
+bn_lshiftmod_ismod:
+7765 2a6ffe00 isolate1 0 ,regc 
+7766 2020f76d branch bn_lshiftmod_0 ,true 
+7767 da4007aa arg mem_p ,regb 
+7768 1a222600 copy rega ,regc 
+7769 1a20a3e8 increase -24 ,rega 
+776a 20407720 call bn_bigeq 
+776b 24610000 nrtn positive 
+776c 1a622200 copy regc ,rega 
+
+bn_lshiftmod_0:
+776d 1a20a3e8 increase -24 ,rega 
+776e da4007aa arg mem_p ,regb 
+776f 1a220a00 copy rega ,contw 
+7770 2020773b branch bn_sub 
+
+bn_addmod:
+7771 2040772d call bn_add 
+7772 18a22200 copy contw ,rega 
+7773 20207765 branch bn_lshiftmod_ismod 
+
+bn_submod:
+7774 2040773b call bn_sub 
+7775 2a6c0000 isolate0 0 ,regc 
+7776 20608000 rtn true 
+7777 da4007aa arg mem_p ,regb 
+7778 18a0a3e8 add contw ,-24 ,rega 
+7779 1a220a00 copy rega ,contw 
+777a 2020772d branch bn_add 
+
+bn_p192mod:
+777b 18a21600 copy contw ,timeup 
+777c 1a226000 copy rega ,alarm 
+777d da40063a arg mem_tmp2 ,regb 
+777e 1a420a00 copy regb ,contw 
+777f 1a208c18 add rega ,24 ,contr 
+7780 e8c40000 ifetch 8 ,contr 
+7781 e0a40000 istore 8 ,contw 
+7782 e0a40000 istore 8 ,contw 
+7783 18007e00 force 0 ,pdata 
+7784 e0a40000 istore 8 ,contw 
+7785 19620a00 copy timeup ,contw 
+7786 20407771 call bn_addmod 
+7787 da40063a arg mem_tmp2 ,regb 
+7788 1a420a00 copy regb ,contw 
+7789 18007e00 force 0 ,pdata 
+778a e0a40000 istore 8 ,contw 
+778b 1e008c20 add alarm ,32 ,contr 
+778c e8c40000 ifetch 8 ,contr 
+778d e0a40000 istore 8 ,contw 
+778e e0a40000 istore 8 ,contw 
+778f 19622200 copy timeup ,rega 
+7790 1a220a00 copy rega ,contw 
+7791 20407771 call bn_addmod 
+7792 da40063a arg mem_tmp2 ,regb 
+7793 1a420a00 copy regb ,contw 
+7794 1e008c28 add alarm ,40 ,contr 
+7795 e8c40000 ifetch 8 ,contr 
+7796 e0a40000 istore 8 ,contw 
+7797 e0a40000 istore 8 ,contw 
+7798 e0a40000 istore 8 ,contw 
+7799 19622200 copy timeup ,rega 
+779a 1a220a00 copy rega ,contw 
+779b 20207771 branch bn_addmod 
+
+bn_load:
+779c 18007206 force 6 ,loopcnt 
+
+bn_load_0:
+779d e8c20000 ifetch 4 ,contr 
+779e 98005e00 iforce regext 
+779f 1f00f001 increase 1 ,regext_index 
+77a0 c200779d loop bn_load_0 
+77a1 20600000 rtn 
+
+bn_mulmod:
+77a2 18a21600 copy contw ,timeup 
+77a3 d8a0060a arg mem_tmp1 ,contw 
+77a4 20407e90 call bn_zero 
+77a5 d8a0060a arg mem_tmp1 ,contw 
+77a6 1a220c00 copy rega ,contr 
+77a7 18007000 force 0 ,regext_index 
+77a8 2040779c call bn_load 
+77a9 1a420c00 copy regb ,contr 
+77aa 2040779c call bn_load 
+77ab 18002400 force 0 ,regb 
+
+bn_mulmod_1:
+77ac 18000400 force 0 ,temp 
+77ad 18002606 force 6 ,regc 
+
+bn_mulmod_0:
+77ae e8a20000 ifetch 4 ,contw 
+77af 98002200 iforce rega 
+77b0 1a427000 copy regb ,regext_index 
+77b1 1de27e00 deposit regext 
+77b2 1a627000 copy regc ,regext_index 
+77b3 9deffe00 imul32 regext ,pdata 
+77b4 9a20fe00 iadd rega ,pdata 
+77b5 9840fe00 iadd temp ,pdata 
+77b6 e0a20000 istore 4 ,contw 
+77b7 1fef0400 rshift32 pdata ,temp 
+77b8 1a60a601 increase 1 ,regc 
+77b9 2a61fe0c compare 12 ,regc ,0xff 
+77ba 2420f7ae nbranch bn_mulmod_0 ,true 
+77bb 18427e00 deposit temp 
+77bc e0a20000 istore 4 ,contw 
+77bd 18a08be8 increase -24 ,contw 
+77be 1a40a401 increase 1 ,regb 
+77bf 2a41fe06 compare 6 ,regb ,0xff 
+77c0 2420f7ac nbranch bn_mulmod_1 ,true 
+77c1 da20060a arg mem_tmp1 ,rega 
+77c2 19620a00 copy timeup ,contw 
+77c3 2020777b branch bn_p192mod 
+
+bn_sqrmod:
+77c4 1a222400 copy rega ,regb 
+77c5 202077a2 branch bn_mulmod 
+
+bn_rshifteven:
+77c6 1a226000 copy rega ,alarm 
+
+bn_rshifteven_1:
+77c7 1e022200 copy alarm ,rega 
+77c8 ea208000 ifetch 1 ,rega 
+77c9 2feffe00 isolate1 0 ,pdata 
+77ca 20608000 rtn true 
+77cb 20407749 call bn_rshift6 
+77cc ea408000 ifetch 1 ,regb 
+77cd 2fec0000 isolate0 0 ,pdata 
+77ce 2020f7d6 branch bn_rshifteven_0 ,true 
+77cf da2007aa arg mem_p ,rega 
+77d0 1a420a00 copy regb ,contw 
+77d1 2040772d call bn_add 
+77d2 ea408000 ifetch 1 ,regb 
+77d3 9a60fe00 iadd regc ,pdata 
+77d4 e2408000 istore 1 ,regb 
+77d5 1a40a5e8 increase -24 ,regb 
+
+bn_rshifteven_0:
+77d6 1a40a218 add regb ,24 ,rega 
+77d7 18007207 force 7 ,loopcnt 
+77d8 2040774b call bn_rshift 
+77d9 202077c7 branch bn_rshifteven_1 
+
+bn_invmod:
+77da 18a21600 copy contw ,timeup 
+77db d8a0066a arg mem_tmp0 ,contw 
+77dc 20407e90 call bn_zero 
+77dd 18007e00 force 0 ,pdata 
+77de 60020622 store 4 ,mem_tmp5 
+77df 60020682 store 4 ,mem_t2 
+77e0 70066a01 jam 1 ,mem_tmp0 
+77e1 d8a0060a arg mem_tmp1 ,contw 
+77e2 20407e90 call bn_zero 
+77e3 d8c007aa arg mem_p ,contr 
+77e4 d8a0063a arg mem_tmp2 ,contw 
+77e5 20407e86 call memcpy24 
+77e6 1a220c00 copy rega ,contr 
+77e7 d8a00652 arg mem_tmp3 ,contw 
+77e8 20407e86 call memcpy24 
+
+bn_invmod_2:
+77e9 d8c00652 arg mem_tmp3 ,contr 
+77ea 20407711 call bn_eq_zero 
+77eb 203a7812 branch bn_invmod_0 ,blank 
+77ec da200652 arg mem_tmp3 ,rega 
+77ed da40066a arg mem_tmp0 ,regb 
+77ee 204077c6 call bn_rshifteven 
+77ef da20063a arg mem_tmp2 ,rega 
+77f0 da40060a arg mem_tmp1 ,regb 
+77f1 204077c6 call bn_rshifteven 
+77f2 da200652 arg mem_tmp3 ,rega 
+77f3 da40063a arg mem_tmp2 ,regb 
+77f4 20407720 call bn_bigeq 
+77f5 20217804 branch bn_invmod_1 ,positive 
+77f6 da20063a arg mem_tmp2 ,rega 
+77f7 da400652 arg mem_tmp3 ,regb 
+77f8 1a220a00 copy rega ,contw 
+77f9 2040773b call bn_sub 
+77fa da20066a arg mem_tmp0 ,rega 
+77fb da40060a arg mem_tmp1 ,regb 
+77fc 1a420a00 copy regb ,contw 
+77fd 2040772d call bn_add 
+77fe ea208000 ifetch 1 ,rega 
+77ff 9a60a600 iadd regc ,regc 
+7800 ea408000 ifetch 1 ,regb 
+7801 9a60fe00 iadd regc ,pdata 
+7802 e2408000 istore 1 ,regb 
+7803 202077e9 branch bn_invmod_2 
+
+bn_invmod_1:
+7804 da200652 arg mem_tmp3 ,rega 
+7805 da40063a arg mem_tmp2 ,regb 
+7806 1a220a00 copy rega ,contw 
+7807 2040773b call bn_sub 
+7808 da20060a arg mem_tmp1 ,rega 
+7809 da40066a arg mem_tmp0 ,regb 
+780a 1a420a00 copy regb ,contw 
+780b 2040772d call bn_add 
+780c ea208000 ifetch 1 ,rega 
+780d 9a60a600 iadd regc ,regc 
+780e ea408000 ifetch 1 ,regb 
+780f 9a60fe00 iadd regc ,pdata 
+7810 e2408000 istore 1 ,regb 
+7811 202077e9 branch bn_invmod_2 
+
+bn_invmod_0:
+7812 d8a0066a arg mem_tmp0 ,contw 
+7813 20407e90 call bn_zero 
+7814 68008622 fetch 1 ,mem_tmp5 
+7815 6000866a store 1 ,mem_tmp0 
+7816 60008672 store 1 ,mem_tmp0a 
+7817 da20066a arg mem_tmp0 ,rega 
+7818 da40060a arg mem_tmp1 ,regb 
+7819 1a420a00 copy regb ,contw 
+781a 20407771 call bn_addmod 
+781b da2007aa arg mem_p ,rega 
+781c da40060a arg mem_tmp1 ,regb 
+781d 19620a00 copy timeup ,contw 
+781e 20207774 branch bn_submod 
+
+ecdbl:
+781f da2005ca arg mem_cz ,rega 
+7820 d8a00682 arg mem_t2 ,contw 
+7821 204077c4 call bn_sqrmod 
+7822 da200682 arg mem_t2 ,rega 
+7823 d8a0069a arg mem_t3 ,contw 
+7824 204077c4 call bn_sqrmod 
+7825 da2007c2 arg mem_a ,rega 
+7826 da40069a arg mem_t3 ,regb 
+7827 d8a0069a arg mem_t3 ,contw 
+7828 204077a2 call bn_mulmod 
+7829 da20059a arg mem_cx ,rega 
+782a d8a00682 arg mem_t2 ,contw 
+782b 204077c4 call bn_sqrmod 
+782c d8c00682 arg mem_t2 ,contr 
+782d d8a00652 arg mem_t1 ,contw 
+782e 20407e86 call memcpy24 
+782f da200652 arg mem_t1 ,rega 
+7830 20407764 call bn_lshiftmod 
+7831 da200682 arg mem_t2 ,rega 
+7832 da400652 arg mem_t1 ,regb 
+7833 d8a00682 arg mem_t2 ,contw 
+7834 20407771 call bn_addmod 
+7835 da200682 arg mem_t2 ,rega 
+7836 da40069a arg mem_t3 ,regb 
+7837 d8a00682 arg mem_t2 ,contw 
+7838 20407771 call bn_addmod 
+7839 d8c0059a arg mem_cx ,contr 
+783a d8a00652 arg mem_t1 ,contw 
+783b 20407e86 call memcpy24 
+783c da2005b2 arg mem_cy ,rega 
+783d d8a0069a arg mem_t3 ,contw 
+783e 204077c4 call bn_sqrmod 
+783f da200652 arg mem_t1 ,rega 
+7840 20407764 call bn_lshiftmod 
+7841 da200652 arg mem_t1 ,rega 
+7842 20407764 call bn_lshiftmod 
+7843 da200652 arg mem_t1 ,rega 
+7844 da40069a arg mem_t3 ,regb 
+7845 d8a00652 arg mem_t1 ,contw 
+7846 204077a2 call bn_mulmod 
+7847 da20069a arg mem_t3 ,rega 
+7848 d8a0066a arg mem_t0 ,contw 
+7849 204077c4 call bn_sqrmod 
+784a da20066a arg mem_t0 ,rega 
+784b 20407764 call bn_lshiftmod 
+784c da20066a arg mem_t0 ,rega 
+784d 20407764 call bn_lshiftmod 
+784e da20066a arg mem_t0 ,rega 
+784f 20407764 call bn_lshiftmod 
+7850 d8c005b2 arg mem_cy ,contr 
+7851 d8a0069a arg mem_t3 ,contw 
+7852 20407e86 call memcpy24 
+7853 da20069a arg mem_t3 ,rega 
+7854 20407764 call bn_lshiftmod 
+7855 da20069a arg mem_t3 ,rega 
+7856 da4005ca arg mem_cz ,regb 
+7857 d8a005ca arg mem_cz ,contw 
+7858 204077a2 call bn_mulmod 
+7859 da200682 arg mem_t2 ,rega 
+785a d8a0069a arg mem_t3 ,contw 
+785b 204077c4 call bn_sqrmod 
+785c da20069a arg mem_t3 ,rega 
+785d da400652 arg mem_t1 ,regb 
+785e d8a0069a arg mem_t3 ,contw 
+785f 20407774 call bn_submod 
+7860 da20069a arg mem_t3 ,rega 
+7861 da400652 arg mem_t1 ,regb 
+7862 d8a0059a arg mem_cx ,contw 
+7863 20407774 call bn_submod 
+7864 da200652 arg mem_t1 ,rega 
+7865 da40059a arg mem_cx ,regb 
+7866 d8a0069a arg mem_t3 ,contw 
+7867 20407774 call bn_submod 
+7868 da20069a arg mem_t3 ,rega 
+7869 da400682 arg mem_t2 ,regb 
+786a d8a0069a arg mem_t3 ,contw 
+786b 204077a2 call bn_mulmod 
+786c da20069a arg mem_t3 ,rega 
+786d da40066a arg mem_t0 ,regb 
+786e d8a005b2 arg mem_cy ,contw 
+786f 20207774 branch bn_submod 
+
+ecadd:
+7870 da20053a arg mem_az ,rega 
+7871 d8a006b2 arg mem_t7 ,contw 
+7872 204077c4 call bn_sqrmod 
+7873 da20059a arg mem_cx ,rega 
+7874 da4006b2 arg mem_t7 ,regb 
+7875 d8a0066a arg mem_t0 ,contw 
+7876 204077a2 call bn_mulmod 
+7877 da20053a arg mem_az ,rega 
+7878 da4006b2 arg mem_t7 ,regb 
+7879 d8a006b2 arg mem_t7 ,contw 
+787a 204077a2 call bn_mulmod 
+787b da2005b2 arg mem_cy ,rega 
+787c da4006b2 arg mem_t7 ,regb 
+787d d8a00652 arg mem_t1 ,contw 
+787e 204077a2 call bn_mulmod 
+787f da2005ca arg mem_cz ,rega 
+7880 d8a006b2 arg mem_t7 ,contw 
+7881 204077c4 call bn_sqrmod 
+7882 da20050a arg mem_ax ,rega 
+7883 da4006b2 arg mem_t7 ,regb 
+7884 d8a00682 arg mem_t2 ,contw 
+7885 204077a2 call bn_mulmod 
+7886 da2005ca arg mem_cz ,rega 
+7887 da4006b2 arg mem_t7 ,regb 
+7888 d8a006b2 arg mem_t7 ,contw 
+7889 204077a2 call bn_mulmod 
+788a da200522 arg mem_ay ,rega 
+788b da4006b2 arg mem_t7 ,regb 
+788c d8a0069a arg mem_t3 ,contw 
+788d 204077a2 call bn_mulmod 
+788e da20066a arg mem_t0 ,rega 
+788f da400682 arg mem_t2 ,regb 
+7890 d8a006b2 arg mem_t7 ,contw 
+7891 20407774 call bn_submod 
+7892 da20066a arg mem_t0 ,rega 
+7893 da400682 arg mem_t2 ,regb 
+7894 d8a0066a arg mem_t0 ,contw 
+7895 20407771 call bn_addmod 
+7896 da200652 arg mem_t1 ,rega 
+7897 da40069a arg mem_t3 ,regb 
+7898 d8a00682 arg mem_t2 ,contw 
+7899 20407774 call bn_submod 
+789a da200652 arg mem_t1 ,rega 
+789b da40069a arg mem_t3 ,regb 
+789c d8a00652 arg mem_t1 ,contw 
+789d 20407771 call bn_addmod 
+789e da200652 arg mem_t1 ,rega 
+789f da4006b2 arg mem_t7 ,regb 
+78a0 d8a00652 arg mem_t1 ,contw 
+78a1 204077a2 call bn_mulmod 
+78a2 da2005ca arg mem_cz ,rega 
+78a3 da40053a arg mem_az ,regb 
+78a4 d8a0069a arg mem_t3 ,contw 
+78a5 204077a2 call bn_mulmod 
+78a6 da20069a arg mem_t3 ,rega 
+78a7 da4006b2 arg mem_t7 ,regb 
+78a8 d8a005ca arg mem_cz ,contw 
+78a9 204077a2 call bn_mulmod 
+78aa da2006b2 arg mem_t7 ,rega 
+78ab d8a006b2 arg mem_t7 ,contw 
+78ac 204077c4 call bn_sqrmod 
+78ad da2006b2 arg mem_t7 ,rega 
+78ae da40066a arg mem_t0 ,regb 
+78af d8a0069a arg mem_t3 ,contw 
+78b0 204077a2 call bn_mulmod 
+78b1 da2006b2 arg mem_t7 ,rega 
+78b2 da400652 arg mem_t1 ,regb 
+78b3 d8a00652 arg mem_t1 ,contw 
+78b4 204077a2 call bn_mulmod 
+78b5 da200682 arg mem_t2 ,rega 
+78b6 d8a0059a arg mem_cx ,contw 
+78b7 204077c4 call bn_sqrmod 
+78b8 da20059a arg mem_cx ,rega 
+78b9 da40069a arg mem_t3 ,regb 
+78ba d8a0059a arg mem_cx ,contw 
+78bb 20407774 call bn_submod 
+78bc d8c0059a arg mem_cx ,contr 
+78bd d8a006b2 arg mem_t7 ,contw 
+78be 20407e86 call memcpy24 
+78bf da2006b2 arg mem_t7 ,rega 
+78c0 20407764 call bn_lshiftmod 
+78c1 da20069a arg mem_t3 ,rega 
+78c2 da4006b2 arg mem_t7 ,regb 
+78c3 d8a0069a arg mem_t3 ,contw 
+78c4 20407774 call bn_submod 
+78c5 da20069a arg mem_t3 ,rega 
+78c6 da400682 arg mem_t2 ,regb 
+78c7 d8a00682 arg mem_t2 ,contw 
+78c8 204077a2 call bn_mulmod 
+78c9 da200682 arg mem_t2 ,rega 
+78ca da400652 arg mem_t1 ,regb 
+78cb d8a005b2 arg mem_cy ,contw 
+78cc 20407774 call bn_submod 
+78cd da2005b2 arg mem_cy ,rega 
+78ce da4007aa arg mem_p ,regb 
+78cf d8a005b2 arg mem_cy ,contw 
+78d0 18002600 force 0 ,regc 
+78d1 680085b2 fetch 1 ,mem_cy 
+78d2 2feffe00 isolate1 0 ,pdata 
+78d3 2040f72d call bn_add ,true 
+78d4 1a626000 copy regc ,alarm 
+78d5 da2005b2 arg mem_cy ,rega 
+78d6 20407749 call bn_rshift6 
+78d7 680085c9 fetch 1 ,mem_cy5 
+78d8 2e0ffe00 isolate1 0 ,alarm 
+78d9 7920fe07 setflag true ,7 ,pdata 
+78da 600085c9 store 1 ,mem_cy5 
+78db 20600000 rtn 
+
+eckp_0:
+78dc 68008507 fetch 1 ,mem_ec_loopc 
+78dd 1fe0ffff increase -1 ,pdata 
+78de 24610000 nrtn positive 
+78df 60008507 store 1 ,mem_ec_loopc 
+78e0 68008506 fetch 1 ,mem_ec_infinite 
+78e1 205a781f call ecdbl ,blank 
+78e2 68008507 fetch 1 ,mem_ec_loopc 
+78e3 d8c005e2 arg mem_k ,contr 
+78e4 20407708 call bn_testbit 
+78e5 2020f8dc branch eckp_0 ,true 
+78e6 68008506 fetch 1 ,mem_ec_infinite 
+78e7 243a78ea nbranch eckp_1 ,blank 
+78e8 20407870 call ecadd 
+78e9 202078dc branch eckp_0 
+
+eckp_1:
+78ea 70050600 jam 0 ,mem_ec_infinite 
+78eb d8c0050a arg mem_ax ,contr 
+78ec d8a0059a arg mem_cx ,contw 
+78ed 2040770e call ec_copy 
+78ee 202078dc branch eckp_0 
+
+ecunmapz:
+78ef da2005ca arg mem_cz ,rega 
+78f0 d8a0069a arg mem_t3 ,contw 
+78f1 204077da call bn_invmod 
+78f2 da20069a arg mem_t3 ,rega 
+78f3 d8a00652 arg mem_t1 ,contw 
+78f4 204077c4 call bn_sqrmod 
+78f5 da20059a arg mem_cx ,rega 
+78f6 da400652 arg mem_t1 ,regb 
+78f7 d8a00552 arg mem_bx ,contw 
+78f8 204077a2 call bn_mulmod 
+78f9 da20069a arg mem_t3 ,rega 
+78fa da400652 arg mem_t1 ,regb 
+78fb d8a00682 arg mem_t2 ,contw 
+78fc 204077a2 call bn_mulmod 
+78fd da2005b2 arg mem_cy ,rega 
+78fe da400682 arg mem_t2 ,regb 
+78ff d8a0056a arg mem_by ,contw 
+7900 202077a2 branch bn_mulmod 
+
+sha_endian_swap2:
+7901 e8c20000 ifetch 4 ,contr 
+7902 18002204 force 4 ,rega 
+7903 18a08a03 increase 3 ,contw 
+
+sha_endian_loop:
+7904 e0a08000 istore 1 ,contw 
+7905 1fecfe00 rshift8 pdata ,pdata 
+7906 18a08bfe increase -2 ,contw 
+7907 1a20a3ff increase -1 ,rega 
+7908 2422f904 nbranch sha_endian_loop ,zero 
+7909 18a08a05 increase 5 ,contw 
+790a c2007901 loop sha_endian_swap2 
+790b 20600000 rtn 
+
+sha_getw:
+790c 18ebfe00 lshift2 queue ,pdata 
+790d 99608c00 iadd timeup ,contr 
+790e e8c20000 ifetch 4 ,contr 
+790f 20600000 rtn 
+
+sha_r:
+7910 18006010 force 16 ,alarm 
+7911 d960050a arg memdat ,timeup 
+
+sha_r_loop:
+7912 1e008ff9 add alarm ,-7 ,queue 
+7913 2040790c call sha_getw 
+7914 98000400 iforce temp 
+7915 1e008ff0 add alarm ,-16 ,queue 
+7916 2040790c call sha_getw 
+7917 98408400 iadd temp ,temp 
+7918 1e008ffe add alarm ,-2 ,queue 
+7919 2040790c call sha_getw 
+791a 1fee7e01 shasx pdata ,1 ,pdata 
+791b 98408400 iadd temp ,temp 
+791c 1e008ff1 add alarm ,-15 ,queue 
+791d 2040790c call sha_getw 
+791e 1fee7e00 shasx pdata ,0 ,pdata 
+791f 98408400 iadd temp ,temp 
+7920 1e0bfe00 lshift2 alarm ,pdata 
+7921 99608a00 iadd timeup ,contw 
+7922 e0aa0000 istoret 4 ,contw 
+7923 1e00e001 increase 1 ,alarm 
+7924 2e01fe40 compare 64 ,alarm ,0xff 
+7925 2420f912 nbranch sha_r_loop ,true 
+7926 20600000 rtn 
+
+sha_init:
+7927 d8c00822 arg memh0 ,contr 
+7928 18007007 force 7 ,regext_index 
+
+sha_init_0:
+7929 e8c20000 ifetch 4 ,contr 
+792a 98005e00 iforce regext 
+792b 1f00f1ff increase -1 ,regext_index 
+792c 20217929 branch sha_init_0 ,positive 
+792d 20600000 rtn 
+
+sha:
+792e 79200025 set1 mark_ext_patch ,mark 
+792f 44f4403d bpatch patch3d_0 ,mem_patch3d 
+7930 20407910 call sha_r 
+7931 d8a0060a arg memahbak ,contw 
+7932 18007000 force 0 ,regext_index 
+
+sha_0:
+7933 1de27e00 deposit regext 
+7934 e0a20000 istore 4 ,contw 
+7935 1f00f001 increase 1 ,regext_index 
+7936 2f01fe08 compare 8 ,regext_index ,0xff 
+7937 2420f933 nbranch sha_0 ,true 
+7938 204071e2 call enable_authrom 
+7939 d9608700 arg memk ,timeup 
+793a de00050a arg memdat ,alarm 
+793b 18007240 force 64 ,loopcnt 
+
+sha_loop:
+793c ee0a0000 ifetcht 4 ,alarm 
+793d e9620000 ifetch 4 ,timeup 
+793e 19609604 increase 4 ,timeup 
+793f 1e00e004 increase 4 ,alarm 
+7940 9840fe00 iadd temp ,pdata 
+7941 18007007 force 7 ,regext_index 
+7942 9de08400 iadd regext ,temp 
+7943 18007004 force 4 ,regext_index 
+7944 1dee7e03 shasx regext ,3 ,pdata 
+7945 98408400 iadd temp ,temp 
+7946 18007005 force 5 ,regext_index 
+7947 1de27e00 deposit regext 
+7948 18007006 force 6 ,regext_index 
+7949 9de2fe00 ixor regext ,pdata 
+794a 18007004 force 4 ,regext_index 
+794b 9de17e00 iand regext ,pdata 
+794c 18007006 force 6 ,regext_index 
+794d 9de2fe00 ixor regext ,pdata 
+794e 98408400 iadd temp ,temp 
+794f 18007007 force 7 ,regext_index 
+7950 18425e00 copy temp ,regext 
+7951 18007003 force 3 ,regext_index 
+7952 1de27e00 deposit regext 
+7953 9840de00 iadd temp ,regext 
+7954 18007000 force 0 ,regext_index 
+7955 1de27e00 deposit regext 
+7956 18007001 force 1 ,regext_index 
+7957 9de10400 iand regext ,temp 
+7958 9de1fe00 ior regext ,pdata 
+7959 18007002 force 2 ,regext_index 
+795a 9de17e00 iand regext ,pdata 
+795b 98418400 ior temp ,temp 
+795c 18007000 force 0 ,regext_index 
+795d 1dee7e02 shasx regext ,2 ,pdata 
+795e 9840fe00 iadd temp ,pdata 
+795f 18007007 force 7 ,regext_index 
+7960 9de0de00 iadd regext ,regext 
+7961 980efc00 regexrot 
+7962 c200793c loop sha_loop 
+7963 d8c0060a arg memahbak ,contr 
+7964 18007000 force 0 ,regext_index 
+
+sha_1:
+7965 e8c20000 ifetch 4 ,contr 
+7966 9de0de00 iadd regext ,regext 
+7967 1f00f001 increase 1 ,regext_index 
+7968 2f01fe08 compare 8 ,regext_index ,0xff 
+7969 2420f965 nbranch sha_1 ,true 
+796a 202071e6 branch disable_authrom 
+
+sha_result:
+796b d8a00962 arg memresult ,contw 
+796c 18007007 force 7 ,regext_index 
+
+sha_regext_save:
+796d 1de27e00 deposit regext 
+796e e0a20000 istore 4 ,contw 
+796f 1f00f1ff increase -1 ,regext_index 
+7970 2021796d branch sha_regext_save ,positive 
+7971 20600000 rtn 
+
+pad_xor:
+7972 d8a0050a arg memdat ,contw 
+7973 18c08dfc increase -4 ,contr 
+7974 1f262210 sub loopcnt ,16 ,rega 
+
+pad_xor_0:
+7975 e8c20000 ifetch 4 ,contr 
+7976 9842fe00 ixor temp ,pdata 
+7977 e0a20000 istore 4 ,contw 
+7978 18c08df8 increase -8 ,contr 
+7979 c2007975 loop pad_xor_0 
+797a 1a227200 copy rega ,loopcnt 
+797b 18427e00 deposit temp 
+
+pad_xor_1:
+797c e0a20000 istore 4 ,contw 
+797d c200797c loop pad_xor_1 
+797e 20600000 rtn 
+
+g_noninit_number_confirm:
+797f 20407984 call g_noninit0 
+7980 2040796b call sha_result 
+7981 202079aa branch g_common0 
+
+g_noninit:
+7982 20407984 call g_noninit0 
+7983 202079aa branch g_common0 
+
+g_noninit0:
+7984 d8c00902 arg mem_sp_pubkey_remote_x_end ,contr 
+7985 d8a0050a arg memdat ,contw 
+7986 18007206 force 6 ,loopcnt 
+7987 20407a90 call memcpy_dword_swap 
+7988 d8c046ca arg mem_sp_pubkey_local_x_end ,contr 
+7989 18007206 force 6 ,loopcnt 
+798a 20407a90 call memcpy_dword_swap 
+798b d8c00962 arg mem_sp_random_remote_end ,contr 
+798c 20407a8f call memcpy_dword_swap4 
+798d 20407927 call sha_init 
+798e 2040792e call sha 
+798f d8c00952 arg mem_sp_random_local_end ,contr 
+7990 d8a0050a arg memdat ,contw 
+7991 202079a1 branch g_common 
+
+g_init:
+7992 d8c046ca arg mem_sp_pubkey_local_x_end ,contr 
+7993 d8a0050a arg memdat ,contw 
+7994 18007206 force 6 ,loopcnt 
+7995 20407a90 call memcpy_dword_swap 
+7996 d8c00902 arg mem_sp_pubkey_remote_x_end ,contr 
+7997 18007206 force 6 ,loopcnt 
+7998 20407a90 call memcpy_dword_swap 
+7999 d8c00952 arg mem_sp_random_local_end ,contr 
+799a 20407a8f call memcpy_dword_swap4 
+799b 20407927 call sha_init 
+799c 2040792e call sha 
+799d d8c00962 arg mem_sp_random_remote_end ,contr 
+799e d8a0050a arg memdat ,contw 
+799f 204079a1 call g_common 
+79a0 202079aa branch g_common0 
+
+g_common:
+79a1 20407a8f call memcpy_dword_swap4 
+79a2 58800000 setarg 0x800000 
+79a3 1fed7e00 lshift8 pdata ,pdata 
+79a4 e0a20000 istore 4 ,contw 
+79a5 18007205 force 5 ,loopcnt 
+79a6 20407e91 call memset0 
+79a7 58000280 setarg 640 
+79a8 e0a20000 istore 4 ,contw 
+79a9 2020792e branch sha 
+
+g_common0:
+79aa 68020962 fetch 4 ,memresult 
+79ab da2003e8 arg 1000 ,rega 
+79ac 9a26fc00 idiv rega 
+79ad 20407f53 call wait_div_end 
+79ae 18077e00 remainder pdata 
+79af 600208de store 4 ,mem_gkey 
+79b0 1807fe00 quotient pdata 
+79b1 da2003e8 arg 1000 ,rega 
+79b2 9a26fc00 idiv rega 
+79b3 20407f53 call wait_div_end 
+79b4 18077e00 remainder pdata 
+79b5 da2003e8 arg 1000 ,rega 
+79b6 9a2ffe00 imul32 rega ,pdata 
+79b7 680a08de fetcht 4 ,mem_gkey 
+79b8 9840fe00 iadd temp ,pdata 
+79b9 600208de store 4 ,mem_gkey 
+79ba 20600000 rtn 
+
+function_f1_no_key:
+79bb 7046ec00 jam 0 ,mem_passkey_1bit 
+79bc 202079bf branch function_f1_common 
+
+function_f1:
+79bd 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+79be c08179bb bne ssp_mode_passkey_entry_flag ,function_f1_no_key 
+
+function_f1_common:
+79bf 79200025 set1 mark_ext_patch ,mark 
+79c0 44f4c03d bpatch patch3d_1 ,mem_patch3d 
+79c1 58363636 setarg 0x363636 
+79c2 1fed0400 lshift8 pdata ,temp 
+79c3 18418436 or_into 0x36 ,temp 
+79c4 680109a2 fetch 2 ,mem_sp_prarm_stack 
+79c5 1fe20c00 copy pdata ,contr 
+79c6 18007204 force 4 ,loopcnt 
+79c7 20407972 call pad_xor 
+79c8 20407927 call sha_init 
+79c9 2040792e call sha 
+79ca 680109a4 fetch 2 ,mem_sp_prarm_stack + 2 
+79cb 1fe20c00 copy pdata ,contr 
+79cc d8a0050a arg memdat ,contw 
+79cd 18007206 force 6 ,loopcnt 
+79ce 20407a90 call memcpy_dword_swap 
+79cf 680109a6 fetch 2 ,mem_sp_prarm_stack + 4 
+79d0 1fe20c00 copy pdata ,contr 
+79d1 18007206 force 6 ,loopcnt 
+79d2 20407a90 call memcpy_dword_swap 
+79d3 58800000 setarg 0x800000 
+79d4 e0a18000 istore 3 ,contw 
+79d5 6800c6ec fetch 1 ,mem_passkey_1bit 
+79d6 e0a08000 istore 1 ,contw 
+79d7 18007e00 force 0 ,pdata 
+79d8 e0a40000 istore 8 ,contw 
+79d9 58000388 setarg 0x0388 
+79da e0a20000 istore 4 ,contw 
+79db 2040792e call sha 
+79dc 2040796b call sha_result 
+79dd d8c00962 arg memresult ,contr 
+79de d8a0062a arg memahsave ,contw 
+79df 20407e85 call memcpy32 
+79e0 585c5c5c setarg 0x5c5c5c 
+79e1 1fed0400 lshift8 pdata ,temp 
+79e2 1841845c or_into 0x5c ,temp 
+79e3 680109a2 fetch 2 ,mem_sp_prarm_stack 
+79e4 1fe20c00 copy pdata ,contr 
+79e5 18007204 force 4 ,loopcnt 
+79e6 20407972 call pad_xor 
+79e7 20407927 call sha_init 
+79e8 2040792e call sha 
+79e9 d8c0064a arg memahsave_end ,contr 
+79ea d8a0050a arg memdat ,contw 
+79eb 18007208 force 8 ,loopcnt 
+79ec 20407a90 call memcpy_dword_swap 
+79ed 58800000 setarg 0x800000 
+79ee 1fed7e00 lshift8 pdata ,pdata 
+79ef e0a20000 istore 4 ,contw 
+79f0 20407e90 call bn_zero 
+79f1 58000300 setarg 0x0300 
+79f2 e0a20000 istore 4 ,contw 
+79f3 2040792e call sha 
+79f4 2020796b branch sha_result 
+
+function_f2:
+79f5 58363636 setarg 0x363636 
+79f6 1fed0400 lshift8 pdata ,temp 
+79f7 18418436 or_into 0x36 ,temp 
+79f8 d8c00942 arg mem_sp_dhkey_end ,contr 
+79f9 18007206 force 6 ,loopcnt 
+79fa 20407972 call pad_xor 
+79fb 20407927 call sha_init 
+79fc 2040792e call sha 
+79fd 680109ae fetch 2 ,mem_sp_prarm_stack + 12 
+79fe 1fe20c00 copy pdata ,contr 
+79ff d8a0050a arg memdat ,contw 
+7a00 20407a8f call memcpy_dword_swap4 
+7a01 680109b0 fetch 2 ,mem_sp_prarm_stack + 14 
+7a02 1fe20c00 copy pdata ,contr 
+7a03 20407a8f call memcpy_dword_swap4 
+7a04 5862746c setarg 0x62746c 
+7a05 1fed7e00 lshift8 pdata ,pdata 
+7a06 1fe1fe6b or_into 0x6b ,pdata 
+7a07 e0a20000 istore 4 ,contw 
+7a08 d8c00657 arg mem_addr_value_end ,contr 
+7a09 18007203 force 3 ,loopcnt 
+7a0a 20407a90 call memcpy_dword_swap 
+7a0b 58800000 setarg 0x800000 
+7a0c 1fed7e00 lshift8 pdata ,pdata 
+7a0d e0a20000 istore 4 ,contw 
+7a0e 18007e00 force 0 ,pdata 
+7a0f e0a40000 istore 8 ,contw 
+7a10 58000380 setarg 0x0380 
+7a11 e0a20000 istore 4 ,contw 
+7a12 2040792e call sha 
+7a13 2040796b call sha_result 
+7a14 d8c00962 arg memresult ,contr 
+7a15 d8a0062a arg memahsave ,contw 
+7a16 20407e85 call memcpy32 
+7a17 585c5c5c setarg 0x5c5c5c 
+7a18 1fed0400 lshift8 pdata ,temp 
+7a19 1841845c or_into 0x5c ,temp 
+7a1a d8c00942 arg mem_sp_dhkey_end ,contr 
+7a1b 18007206 force 6 ,loopcnt 
+7a1c 20407972 call pad_xor 
+7a1d 20407927 call sha_init 
+7a1e 2040792e call sha 
+7a1f d8c0064a arg memahsave_end ,contr 
+7a20 d8a0050a arg memdat ,contw 
+7a21 18007208 force 8 ,loopcnt 
+7a22 20407a90 call memcpy_dword_swap 
+7a23 58800000 setarg 0x800000 
+7a24 1fed7e00 lshift8 pdata ,pdata 
+7a25 e0a20000 istore 4 ,contw 
+7a26 20407e90 call bn_zero 
+7a27 58000300 setarg 0x0300 
+7a28 e0a20000 istore 4 ,contw 
+7a29 2040792e call sha 
+7a2a 2020796b branch sha_result 
+
+function_f3a:
+7a2b 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+7a2c c0817a3d bne ssp_mode_passkey_entry_flag ,function_f3a_no_pin 
+
+function_f3a_common:
+7a2d 79200025 set1 mark_ext_patch ,mark 
+7a2e 44f5403d bpatch patch3d_2 ,mem_patch3d 
+7a2f 58363636 setarg 0x363636 
+7a30 1fed0400 lshift8 pdata ,temp 
+7a31 18418436 or_into 0x36 ,temp 
+7a32 d8c00942 arg mem_sp_dhkey_end ,contr 
+7a33 18007206 force 6 ,loopcnt 
+7a34 20407972 call pad_xor 
+7a35 20407927 call sha_init 
+7a36 2040792e call sha 
+7a37 d8c00962 arg mem_sp_random_remote_end ,contr 
+7a38 d8a0050a arg memdat ,contw 
+7a39 20407a8f call memcpy_dword_swap4 
+7a3a d8c00952 arg mem_sp_random_local_end ,contr 
+7a3b 20407a8f call memcpy_dword_swap4 
+7a3c 20207a52 branch function_f3_common 
+
+function_f3a_no_pin:
+7a3d 58000000 setarg 0 
+7a3e 60024719 store 4 ,mem_pin 
+7a3f 20207a2d branch function_f3a_common 
+
+function_f3b_no_pin:
+7a40 58000000 setarg 0 
+7a41 60024719 store 4 ,mem_pin 
+7a42 20207a45 branch function_f3b_common 
+
+function_f3b:
+7a43 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+7a44 c0817a40 bne ssp_mode_passkey_entry_flag ,function_f3b_no_pin 
+
+function_f3b_common:
+7a45 58363636 setarg 0x363636 
+7a46 1fed0400 lshift8 pdata ,temp 
+7a47 18418436 or_into 0x36 ,temp 
+7a48 d8c00942 arg mem_sp_dhkey_end ,contr 
+7a49 18007206 force 6 ,loopcnt 
+7a4a 20407972 call pad_xor 
+7a4b 20407927 call sha_init 
+7a4c 2040792e call sha 
+7a4d d8c00952 arg mem_sp_random_local_end ,contr 
+7a4e d8a0050a arg memdat ,contw 
+7a4f 20407a8f call memcpy_dword_swap4 
+7a50 d8c00962 arg mem_sp_random_remote_end ,contr 
+7a51 20407a8f call memcpy_dword_swap4 
+
+function_f3_common:
+7a52 58000000 setarg 0x0 
+7a53 e0a40000 istore 8 ,contw 
+7a54 e0a20000 istore 4 ,contw 
+7a55 68024719 fetch 4 ,mem_pin 
+7a56 e0a20000 istore 4 ,contw 
+7a57 18a20400 copy contw ,temp 
+7a58 70064a80 jam 0x80 ,mem_addr_padding 
+7a59 18420a00 copy temp ,contw 
+7a5a d8c0065a arg mem_addr_iocap_end ,contr 
+7a5b 20407a8f call memcpy_dword_swap4 
+7a5c 2040792e call sha 
+7a5d d8a0050a arg memdat ,contw 
+7a5e 18007207 force 7 ,loopcnt 
+7a5f 20407e91 call memset0 
+7a60 e0a20000 istore 4 ,contw 
+7a61 580003f8 setarg 0x03F8 
+7a62 e0a20000 istore 4 ,contw 
+7a63 2040792e call sha 
+7a64 2040796b call sha_result 
+7a65 d8c00962 arg memresult ,contr 
+7a66 d8a0062a arg memahsave ,contw 
+7a67 20407e85 call memcpy32 
+7a68 585c5c5c setarg 0x5c5c5c 
+7a69 1fed0400 lshift8 pdata ,temp 
+7a6a 1841845c or_into 0x5c ,temp 
+7a6b d8c00942 arg mem_sp_dhkey_end ,contr 
+7a6c 18007206 force 6 ,loopcnt 
+7a6d 20407972 call pad_xor 
+7a6e 20407927 call sha_init 
+7a6f 2040792e call sha 
+7a70 d8c0064a arg memahsave_end ,contr 
+7a71 d8a0050a arg memdat ,contw 
+7a72 18007208 force 8 ,loopcnt 
+7a73 20407a90 call memcpy_dword_swap 
+7a74 58800000 setarg 0x800000 
+7a75 1fed7e00 lshift8 pdata ,pdata 
+7a76 e0a20000 istore 4 ,contw 
+7a77 20407e90 call bn_zero 
+7a78 58000300 setarg 0x0300 
+7a79 e0a20000 istore 4 ,contw 
+7a7a 2040792e call sha 
+7a7b 2020796b branch sha_result 
+
+eckp_calc_init:
+7a7c 700507c0 jam 192 ,mem_ec_loopc 
+
+eckp_calc_init_1:
+7a7d 68008507 fetch 1 ,mem_ec_loopc 
+7a7e 207a0000 rtn blank 
+7a7f 1fe0ffff increase -1 ,pdata 
+7a80 60008507 store 1 ,mem_ec_loopc 
+7a81 d8c005e2 arg mem_k ,contr 
+7a82 20407708 call bn_testbit 
+7a83 2020fa7d branch eckp_calc_init_1 ,true 
+7a84 d8c0050a arg mem_ax ,contr 
+7a85 d8a0059a arg mem_cx ,contw 
+7a86 2020770e branch ec_copy 
+
+eckp_calc:
+7a87 2040781f call ecdbl 
+7a88 68008507 fetch 1 ,mem_ec_loopc 
+7a89 1fe0ffff increase -1 ,pdata 
+7a8a 60008507 store 1 ,mem_ec_loopc 
+7a8b d8c005e2 arg mem_k ,contr 
+7a8c 20407708 call bn_testbit 
+7a8d 20608000 rtn true 
+7a8e 20207870 branch ecadd 
+
+memcpy_dword_swap4:
+7a8f 18007204 force 4 ,loopcnt 
+
+memcpy_dword_swap:
+7a90 18c08dfc increase -4 ,contr 
+
+memcpy_dword_swap_loop:
+7a91 e8c20000 ifetch 4 ,contr 
+7a92 e0a20000 istore 4 ,contw 
+7a93 18c08df8 increase -8 ,contr 
+7a94 c2007a91 loop memcpy_dword_swap_loop 
+7a95 20600000 rtn 
+
+sp_initialize_256:
+7a96 79200025 set1 mark_ext_patch ,mark 
+7a97 44f5c03d bpatch patch3d_3 ,mem_patch3d 
+7a98 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+7a99 203a48de branch le_secure_connection_disable ,blank 
+7a9a 204048da call le_secure_connection_enable 
+7a9b 204075fb call sp_clear_flags 
+7a9c 20207a9d branch sp_pubkey_calc_256 
+
+sp_pubkey_calc_256:
+7a9d 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+7a9e c1800000 rtnne sp_key_invalid 
+7a9f 6800c565 fetch 1 ,mem_le_sc_calc 
+7aa0 c1800000 rtnne sp_calc_standby 
+7aa1 d8a0463a arg mem_le_private_key_256 ,contw 
+7aa2 18000e0f force 15 ,queue 
+7aa3 204076bb call random_generator 
+7aa4 180a7e00 random pdata 
+7aa5 1fe37e00 rshift pdata ,pdata 
+7aa6 e0a10000 istore 2 ,contw 
+7aa7 d8a0068a arg mem_k_256 ,contw 
+7aa8 d8c0463a arg mem_le_private_key_256 ,contr 
+7aa9 20407e85 call memcpy32 
+7aaa d8a0056a arg mem_ax_256 ,contw 
+7aab d8c00882 arg mem_gx_256 ,contr 
+7aac 20407e7b call memcpy64 
+7aad d8a005aa arg mem_az_256 ,contw 
+7aae 20407e9b call clear_mem_256 
+7aaf 7005aa01 jam 1 ,mem_az_256 
+7ab0 20407ae8 call eckp_calc_init_256 
+7ab1 70456503 jam sp_calc_pubkey_256 ,mem_le_sc_calc 
+7ab2 20600000 rtn 
+
+sp_pubkey_generated_256:
+7ab3 d8a0465a arg mem_le_pubkey_local_x_256 ,contw 
+7ab4 d8c005ca arg mem_bx_256 ,contr 
+7ab5 20407e7b call memcpy64 
+7ab6 70456803 jam sp_key_valid_256 ,mem_le_sc_local_key_invalid 
+7ab7 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+7ab8 20600000 rtn 
+
+sp_dhkey_calc_256:
+7ab9 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+7aba c1800000 rtnne sp_key_invalid 
+7abb 6800c565 fetch 1 ,mem_le_sc_calc 
+7abc c1800000 rtnne sp_calc_standby 
+7abd d8a0068a arg mem_k_256 ,contw 
+7abe d8c0463a arg mem_le_private_key_256 ,contr 
+7abf 20407e85 call memcpy32 
+7ac0 d8a0056a arg mem_ax_256 ,contw 
+7ac1 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+7ac2 20407e7b call memcpy64 
+7ac3 d8a005aa arg mem_az_256 ,contw 
+7ac4 20407e9b call clear_mem_256 
+7ac5 7005aa01 jam 1 ,mem_az_256 
+7ac6 20407ae8 call eckp_calc_init_256 
+7ac7 70456504 jam sp_calc_dhkey_256 ,mem_le_sc_calc 
+7ac8 20600000 rtn 
+
+sp_dhkey_generated_256:
+7ac9 d8a00922 arg mem_le_dhkey_256 ,contw 
+7aca d8c005ca arg mem_bx_256 ,contr 
+7acb 20407e85 call memcpy32 
+7acc 7008dd03 jam sp_key_valid_256 ,mem_sp_dhkey_invalid 
+7acd 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+7ace 20600000 rtn 
+
+sp_calc_sequence_256:
+7acf 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+7ad0 207a0000 rtn blank 
+7ad1 6800c565 fetch 1 ,mem_le_sc_calc 
+7ad2 207a0000 rtn blank 
+7ad3 1fe0fe80 increase 0x80 ,pdata 
+7ad4 6000c565 store 1 ,mem_le_sc_calc 
+7ad5 c3838000 rtnbit1 7 
+7ad6 68010507 fetch 2 ,mem_ec_loopc 
+7ad7 203a7ad9 branch sp_calc_sequence_done_256 ,blank 
+7ad8 20207ae0 branch eckp_calc_256 
+
+sp_calc_sequence_done_256:
+7ad9 79200025 set1 mark_ext_patch ,mark 
+7ada 44f6403d bpatch patch3d_4 ,mem_patch3d 
+7adb 20407af6 call ecunmapz_256 
+7adc 6800c565 fetch 1 ,mem_le_sc_calc 
+7add c001fab3 beq sp_calc_pubkey_256 ,sp_pubkey_generated_256 
+7ade c0027ac9 beq sp_calc_dhkey_256 ,sp_dhkey_generated_256 
+7adf 20600000 rtn 
+
+eckp_calc_256:
+7ae0 20407b08 call ecdbl_256 
+7ae1 68010507 fetch 2 ,mem_ec_loopc 
+7ae2 1fe0ffff increase -1 ,pdata 
+7ae3 60010507 store 2 ,mem_ec_loopc 
+7ae4 d8c0068a arg mem_k_256 ,contr 
+7ae5 20407708 call bn_testbit 
+7ae6 20608000 rtn true 
+7ae7 20207b59 branch ecadd_256 
+
+eckp_calc_init_256:
+7ae8 79200025 set1 mark_ext_patch ,mark 
+7ae9 44f6c03d bpatch patch3d_5 ,mem_patch3d 
+7aea 58000100 setarg 256 ,pdata 
+7aeb 60010507 store 2 ,mem_ec_loopc 
+
+eckp_calc_init_256_1:
+7aec 68010507 fetch 2 ,mem_ec_loopc 
+7aed 207a0000 rtn blank 
+7aee 1fe0ffff increase -1 ,pdata 
+7aef 60010507 store 2 ,mem_ec_loopc 
+7af0 d8c0068a arg mem_k_256 ,contr 
+7af1 20407708 call bn_testbit 
+7af2 2020faec branch eckp_calc_init_256_1 ,true 
+7af3 d8c0056a arg mem_ax_256 ,contr 
+7af4 d8a0062a arg mem_cx_256 ,contw 
+7af5 20207e7a branch memcpy96 
+
+ecunmapz_256:
+7af6 da20066a arg mem_cz_256 ,rega 
+7af7 d8a0076a arg mem_t3_256 ,contw 
+7af8 20407bc5 call bn_invmod_256 
+7af9 da20076a arg mem_t3_256 ,rega 
+7afa d8a0070a arg mem_t1_256 ,contw 
+7afb 20407c9c call bn_sqrmod_256 
+7afc da20062a arg mem_cx_256 ,rega 
+7afd da40070a arg mem_t1_256 ,regb 
+7afe d8a005ca arg mem_bx_256 ,contw 
+7aff 20407c03 call bn_mulmod_256 
+7b00 da20076a arg mem_t3_256 ,rega 
+7b01 da40070a arg mem_t1_256 ,regb 
+7b02 d8a0074a arg mem_t2_256 ,contw 
+7b03 20407c03 call bn_mulmod_256 
+7b04 da20064a arg mem_cy_256 ,rega 
+7b05 da40074a arg mem_t2_256 ,regb 
+7b06 d8a005ea arg mem_by_256 ,contw 
+7b07 20207c03 branch bn_mulmod_256 
+
+ecdbl_256:
+7b08 da20066a arg mem_cz_256 ,rega 
+7b09 d8a0074a arg mem_t2_256 ,contw 
+7b0a 20407c9c call bn_sqrmod_256 
+7b0b da20074a arg mem_t2_256 ,rega 
+7b0c d8a0076a arg mem_t3_256 ,contw 
+7b0d 20407c9c call bn_sqrmod_256 
+7b0e da200862 arg mem_a_256 ,rega 
+7b0f da40076a arg mem_t3_256 ,regb 
+7b10 d8a0076a arg mem_t3_256 ,contw 
+7b11 20407c03 call bn_mulmod_256 
+7b12 da20062a arg mem_cx_256 ,rega 
+7b13 d8a0074a arg mem_t2_256 ,contw 
+7b14 20407c9c call bn_sqrmod_256 
+7b15 d8c0074a arg mem_t2_256 ,contr 
+7b16 d8a0070a arg mem_t1_256 ,contw 
+7b17 20407e85 call memcpy32 
+7b18 da20070a arg mem_t1_256 ,rega 
+7b19 20407ca3 call bn_lshiftmod_256 
+7b1a da20074a arg mem_t2_256 ,rega 
+7b1b da40070a arg mem_t1_256 ,regb 
+7b1c d8a0074a arg mem_t2_256 ,contw 
+7b1d 20407ca0 call bn_addmod_256 
+7b1e da20074a arg mem_t2_256 ,rega 
+7b1f da40076a arg mem_t3_256 ,regb 
+7b20 d8a0074a arg mem_t2_256 ,contw 
+7b21 20407ca0 call bn_addmod_256 
+7b22 d8c0062a arg mem_cx_256 ,contr 
+7b23 d8a0070a arg mem_t1_256 ,contw 
+7b24 20407e85 call memcpy32 
+7b25 da20064a arg mem_cy_256 ,rega 
+7b26 d8a0076a arg mem_t3_256 ,contw 
+7b27 20407c9c call bn_sqrmod_256 
+7b28 da20070a arg mem_t1_256 ,rega 
+7b29 20407ca3 call bn_lshiftmod_256 
+7b2a da20070a arg mem_t1_256 ,rega 
+7b2b 20407ca3 call bn_lshiftmod_256 
+7b2c da20070a arg mem_t1_256 ,rega 
+7b2d da40076a arg mem_t3_256 ,regb 
+7b2e d8a0070a arg mem_t1_256 ,contw 
+7b2f 20407c03 call bn_mulmod_256 
+7b30 da20076a arg mem_t3_256 ,rega 
+7b31 d8a0072a arg mem_t0_256 ,contw 
+7b32 20407c9c call bn_sqrmod_256 
+7b33 da20072a arg mem_t0_256 ,rega 
+7b34 20407ca3 call bn_lshiftmod_256 
+7b35 da20072a arg mem_t0_256 ,rega 
+7b36 20407ca3 call bn_lshiftmod_256 
+7b37 da20072a arg mem_t0_256 ,rega 
+7b38 20407ca3 call bn_lshiftmod_256 
+7b39 d8c0064a arg mem_cy_256 ,contr 
+7b3a d8a0076a arg mem_t3_256 ,contw 
+7b3b 20407e85 call memcpy32 
+7b3c da20076a arg mem_t3_256 ,rega 
+7b3d 20407ca3 call bn_lshiftmod_256 
+7b3e da20076a arg mem_t3_256 ,rega 
+7b3f da40066a arg mem_cz_256 ,regb 
+7b40 d8a0066a arg mem_cz_256 ,contw 
+7b41 20407c03 call bn_mulmod_256 
+7b42 da20074a arg mem_t2_256 ,rega 
+7b43 d8a0076a arg mem_t3_256 ,contw 
+7b44 20407c9c call bn_sqrmod_256 
+7b45 da20076a arg mem_t3_256 ,rega 
+7b46 da40070a arg mem_t1_256 ,regb 
+7b47 d8a0076a arg mem_t3_256 ,contw 
+7b48 20407cb9 call bn_submod_256 
+7b49 da20076a arg mem_t3_256 ,rega 
+7b4a da40070a arg mem_t1_256 ,regb 
+7b4b d8a0062a arg mem_cx_256 ,contw 
+7b4c 20407cb9 call bn_submod_256 
+7b4d da20070a arg mem_t1_256 ,rega 
+7b4e da40062a arg mem_cx_256 ,regb 
+7b4f d8a0076a arg mem_t3_256 ,contw 
+7b50 20407cb9 call bn_submod_256 
+7b51 da20076a arg mem_t3_256 ,rega 
+7b52 da40074a arg mem_t2_256 ,regb 
+7b53 d8a0076a arg mem_t3_256 ,contw 
+7b54 20407c03 call bn_mulmod_256 
+7b55 da20076a arg mem_t3_256 ,rega 
+7b56 da40072a arg mem_t0_256 ,regb 
+7b57 d8a0064a arg mem_cy_256 ,contw 
+7b58 20207cb9 branch bn_submod_256 
+
+ecadd_256:
+7b59 da2005aa arg mem_az_256 ,rega 
+7b5a d8a0078a arg mem_t7_256 ,contw 
+7b5b 20407c9c call bn_sqrmod_256 
+7b5c da20062a arg mem_cx_256 ,rega 
+7b5d da40078a arg mem_t7_256 ,regb 
+7b5e d8a0072a arg mem_t0_256 ,contw 
+7b5f 20407c03 call bn_mulmod_256 
+7b60 da2005aa arg mem_az_256 ,rega 
+7b61 da40078a arg mem_t7_256 ,regb 
+7b62 d8a0078a arg mem_t7_256 ,contw 
+7b63 20407c03 call bn_mulmod_256 
+7b64 da20064a arg mem_cy_256 ,rega 
+7b65 da40078a arg mem_t7_256 ,regb 
+7b66 d8a0070a arg mem_t1_256 ,contw 
+7b67 20407c03 call bn_mulmod_256 
+7b68 da20066a arg mem_cz_256 ,rega 
+7b69 d8a0078a arg mem_t7_256 ,contw 
+7b6a 20407c9c call bn_sqrmod_256 
+7b6b da20056a arg mem_ax_256 ,rega 
+7b6c da40078a arg mem_t7_256 ,regb 
+7b6d d8a0074a arg mem_t2_256 ,contw 
+7b6e 20407c03 call bn_mulmod_256 
+7b6f da20066a arg mem_cz_256 ,rega 
+7b70 da40078a arg mem_t7_256 ,regb 
+7b71 d8a0078a arg mem_t7_256 ,contw 
+7b72 20407c03 call bn_mulmod_256 
+7b73 da20058a arg mem_ay_256 ,rega 
+7b74 da40078a arg mem_t7_256 ,regb 
+7b75 d8a0076a arg mem_t3_256 ,contw 
+7b76 20407c03 call bn_mulmod_256 
+7b77 da40072a arg mem_t0_256 ,regb 
+7b78 da20074a arg mem_t2_256 ,rega 
+7b79 d8a0078a arg mem_t7_256 ,contw 
+7b7a 20407cb9 call bn_submod_256 
+7b7b da20072a arg mem_t0_256 ,rega 
+7b7c da40074a arg mem_t2_256 ,regb 
+7b7d d8a0072a arg mem_t0_256 ,contw 
+7b7e 20407ca0 call bn_addmod_256 
+7b7f da40070a arg mem_t1_256 ,regb 
+7b80 da20076a arg mem_t3_256 ,rega 
+7b81 d8a0074a arg mem_t2_256 ,contw 
+7b82 20407cb9 call bn_submod_256 
+7b83 da20070a arg mem_t1_256 ,rega 
+7b84 da40076a arg mem_t3_256 ,regb 
+7b85 d8a0070a arg mem_t1_256 ,contw 
+7b86 20407ca0 call bn_addmod_256 
+7b87 da20070a arg mem_t1_256 ,rega 
+7b88 da40078a arg mem_t7_256 ,regb 
+7b89 d8a0070a arg mem_t1_256 ,contw 
+7b8a 20407c03 call bn_mulmod_256 
+7b8b da20066a arg mem_cz_256 ,rega 
+7b8c da4005aa arg mem_az_256 ,regb 
+7b8d d8a0076a arg mem_t3_256 ,contw 
+7b8e 20407c03 call bn_mulmod_256 
+7b8f da20076a arg mem_t3_256 ,rega 
+7b90 da40078a arg mem_t7_256 ,regb 
+7b91 d8a0066a arg mem_cz_256 ,contw 
+7b92 20407c03 call bn_mulmod_256 
+7b93 da20078a arg mem_t7_256 ,rega 
+7b94 d8a0078a arg mem_t7_256 ,contw 
+7b95 20407c9c call bn_sqrmod_256 
+7b96 da20078a arg mem_t7_256 ,rega 
+7b97 da40072a arg mem_t0_256 ,regb 
+7b98 d8a0076a arg mem_t3_256 ,contw 
+7b99 20407c03 call bn_mulmod_256 
+7b9a da20078a arg mem_t7_256 ,rega 
+7b9b da40070a arg mem_t1_256 ,regb 
+7b9c d8a0070a arg mem_t1_256 ,contw 
+7b9d 20407c03 call bn_mulmod_256 
+7b9e da20074a arg mem_t2_256 ,rega 
+7b9f d8a0062a arg mem_cx_256 ,contw 
+7ba0 20407c9c call bn_sqrmod_256 
+7ba1 da20062a arg mem_cx_256 ,rega 
+7ba2 da40076a arg mem_t3_256 ,regb 
+7ba3 d8a0062a arg mem_cx_256 ,contw 
+7ba4 20407cb9 call bn_submod_256 
+7ba5 d8c0062a arg mem_cx_256 ,contr 
+7ba6 d8a0078a arg mem_t7_256 ,contw 
+7ba7 20407e85 call memcpy32 
+7ba8 da20078a arg mem_t7_256 ,rega 
+7ba9 20407ca3 call bn_lshiftmod_256 
+7baa da20076a arg mem_t3_256 ,rega 
+7bab da40078a arg mem_t7_256 ,regb 
+7bac d8a0076a arg mem_t3_256 ,contw 
+7bad 20407cb9 call bn_submod_256 
+7bae da20076a arg mem_t3_256 ,rega 
+7baf da40074a arg mem_t2_256 ,regb 
+7bb0 d8a0074a arg mem_t2_256 ,contw 
+7bb1 20407c03 call bn_mulmod_256 
+7bb2 da20074a arg mem_t2_256 ,rega 
+7bb3 da40070a arg mem_t1_256 ,regb 
+7bb4 d8a0064a arg mem_cy_256 ,contw 
+7bb5 20407cb9 call bn_submod_256 
+7bb6 da20064a arg mem_cy_256 ,rega 
+7bb7 da400842 arg mem_p_256 ,regb 
+7bb8 d8a0064a arg mem_cy_256 ,contw 
+7bb9 18002600 force 0 ,regc 
+7bba 6800864a fetch 1 ,mem_cy_256 
+7bbb 2feffe00 isolate1 0 ,pdata 
+7bbc 2040fc9e call bn_add_256 ,true 
+7bbd 1a626000 copy regc ,alarm 
+7bbe da20064a arg mem_cy_256 ,rega 
+7bbf 20407cce call bn_rshift_256 
+7bc0 68008669 fetch 1 ,mem_cy5_256 
+7bc1 2e0ffe00 isolate1 0 ,alarm 
+7bc2 7920fe07 setflag true ,7 ,pdata 
+7bc3 60008669 store 1 ,mem_cy5_256 
+7bc4 20600000 rtn 
+
+bn_invmod_256:
+7bc5 18a21600 copy contw ,timeup 
+7bc6 d8a0072a arg mem_tmp0_256 ,contw 
+7bc7 20407e9b call clear_mem_256 
+7bc8 18007e00 force 0 ,pdata 
+7bc9 6002074a store 4 ,mem_t2_256 
+7bca 70072a01 jam 1 ,mem_tmp0_256 
+7bcb d8a006aa arg mem_tmp1_256 ,contw 
+7bcc 20407e9d call clear_mem_512 
+7bcd d8c00842 arg mem_p_256 ,contr 
+7bce d8a006ea arg mem_tmp2_256 ,contw 
+7bcf 20407e85 call memcpy32 
+7bd0 1a220c00 copy rega ,contr 
+7bd1 d8a0070a arg mem_tmp3_256 ,contw 
+7bd2 20407e85 call memcpy32 
+
+bn_invmod_256_2:
+7bd3 d8c0070a arg mem_tmp3_256 ,contr 
+7bd4 20407cd8 call bn_eq_zero_256 
+7bd5 203a7bfc branch bn_invmod_256_0 ,blank 
+7bd6 da20070a arg mem_tmp3_256 ,rega 
+7bd7 da40072a arg mem_tmp0_256 ,regb 
+7bd8 20407cdb call bn_rshifteven_256 
+7bd9 da2006ea arg mem_tmp2_256 ,rega 
+7bda da4006aa arg mem_tmp1_256 ,regb 
+7bdb 20407cdb call bn_rshifteven_256 
+7bdc da20070a arg mem_tmp3_256 ,rega 
+7bdd da4006ea arg mem_tmp2_256 ,regb 
+7bde 20407cd4 call bn_bigeq_256 
+7bdf 20217bee branch bn_invmod_256_1 ,positive 
+7be0 da2006ea arg mem_tmp2_256 ,rega 
+7be1 da40070a arg mem_tmp3_256 ,regb 
+7be2 1a220a00 copy rega ,contw 
+7be3 20407ccc call bn_sub_256 
+7be4 da20072a arg mem_tmp0_256 ,rega 
+7be5 da4006aa arg mem_tmp1_256 ,regb 
+7be6 1a420a00 copy regb ,contw 
+7be7 20407c9e call bn_add_256 
+7be8 ea208000 ifetch 1 ,rega 
+7be9 9a60a600 iadd regc ,regc 
+7bea ea408000 ifetch 1 ,regb 
+7beb 9a60fe00 iadd regc ,pdata 
+7bec e2408000 istore 1 ,regb 
+7bed 20207bd3 branch bn_invmod_256_2 
+
+bn_invmod_256_1:
+7bee da20070a arg mem_tmp3_256 ,rega 
+7bef da4006ea arg mem_tmp2_256 ,regb 
+7bf0 1a220a00 copy rega ,contw 
+7bf1 20407ccc call bn_sub_256 
+7bf2 da2006aa arg mem_tmp1_256 ,rega 
+7bf3 da40072a arg mem_tmp0_256 ,regb 
+7bf4 1a420a00 copy regb ,contw 
+7bf5 20407c9e call bn_add_256 
+7bf6 ea208000 ifetch 1 ,rega 
+7bf7 9a60a600 iadd regc ,regc 
+7bf8 ea408000 ifetch 1 ,regb 
+7bf9 9a60fe00 iadd regc ,pdata 
+7bfa e2408000 istore 1 ,regb 
+7bfb 20207bd3 branch bn_invmod_256_2 
+
+bn_invmod_256_0:
+7bfc da2006aa arg mem_tmp1_256 ,rega 
+7bfd 19620a00 copy timeup ,contw 
+7bfe 20407c2c call bn_p256mod 
+7bff da200842 arg mem_p_256 ,rega 
+7c00 19622400 copy timeup ,regb 
+7c01 19620a00 copy timeup ,contw 
+7c02 20207cb9 branch bn_submod_256 
+
+bn_mulmod_256:
+7c03 18a21600 copy contw ,timeup 
+7c04 18007000 force 0 ,regext_index 
+7c05 d8a006aa arg mem_tmp1_256 ,contw 
+7c06 20407e9d call clear_mem_512 
+7c07 d8a009f1 arg mem_regext ,contw 
+7c08 20407e9d call clear_mem_512 
+7c09 1a220c00 copy rega ,contr 
+7c0a 7009f100 jam 0 ,mem_regext 
+7c0b 58000000 setarg 0 
+7c0c 20407c96 call bn_load_mem 
+7c0d 1a420c00 copy regb ,contr 
+7c0e 20407c9a call bn_load_256 
+7c0f 18000e00 force 0 ,queue 
+7c10 d8a006aa arg mem_tmp1_256 ,contw 
+
+bn_mulmod_256_1:
+7c11 d84009f1 arg mem_regext ,temp 
+7c12 18e22400 copy queue ,regb 
+7c13 1a4bfe00 lshift2 regb ,pdata 
+7c14 9840a400 iadd temp ,regb 
+7c15 18000400 force 0 ,temp 
+7c16 18002600 force 0 ,regc 
+
+bn_mulmod_256_0:
+7c17 e8a20000 ifetch 4 ,contw 
+7c18 98002200 iforce rega 
+7c19 ea420000 ifetch 4 ,regb 
+7c1a 1a627000 copy regc ,regext_index 
+7c1b 9deffe00 imul32 regext ,pdata 
+7c1c 9a20fe00 iadd rega ,pdata 
+7c1d 9840fe00 iadd temp ,pdata 
+7c1e e0a20000 istore 4 ,contw 
+7c1f 1fef0400 rshift32 pdata ,temp 
+7c20 1a60a601 increase 1 ,regc 
+7c21 2a61fe08 compare 8 ,regc ,0xff 
+7c22 2420fc17 nbranch bn_mulmod_256_0 ,true 
+7c23 18427e00 deposit temp 
+7c24 e0a20000 istore 4 ,contw 
+7c25 18a08be0 increase -32 ,contw 
+7c26 18e08e01 increase 1 ,queue 
+7c27 28e1fe08 compare 8 ,queue ,0xff 
+7c28 2420fc11 nbranch bn_mulmod_256_1 ,true 
+7c29 da2006aa arg mem_tmp1_256 ,rega 
+7c2a 19620a00 copy timeup ,contw 
+7c2b 20207c2c branch bn_p256mod 
+
+bn_p256mod:
+7c2c 79200025 set1 mark_ext_patch ,mark 
+7c2d 44f7403d bpatch patch3d_6 ,mem_patch3d 
+7c2e 18a21600 copy contw ,timeup 
+7c2f 1a226000 copy rega ,alarm 
+7c30 da4006ea arg mem_tmp2_256 ,regb 
+7c31 1a420a00 copy regb ,contw 
+7c32 20407e98 call memset0_4 
+7c33 e0a40000 istore 8 ,contw 
+7c34 1a208c2c add rega ,44 ,contr 
+7c35 20407e81 call memcpy8 
+7c36 20407e7d call memcpy12 
+7c37 1a422200 copy regb ,rega 
+7c38 20407ca3 call bn_lshiftmod_256 
+7c39 da4006ea arg mem_tmp2_256 ,regb 
+7c3a 1e022200 copy alarm ,rega 
+7c3b 19620a00 copy timeup ,contw 
+7c3c 20407ca0 call bn_addmod_256 
+7c3d da4006ea arg mem_tmp2_256 ,regb 
+7c3e 1a420a00 copy regb ,contw 
+7c3f 20407e98 call memset0_4 
+7c40 e0a40000 istore 8 ,contw 
+7c41 1e008c30 add alarm ,48 ,contr 
+7c42 20407e87 call memcpy16 
+7c43 20407e98 call memset0_4 
+7c44 1a422200 copy regb ,rega 
+7c45 20407ca3 call bn_lshiftmod_256 
+7c46 da4006ea arg mem_tmp2_256 ,regb 
+7c47 19622200 copy timeup ,rega 
+7c48 1a220a00 copy rega ,contw 
+7c49 20407ca0 call bn_addmod_256 
+7c4a da4006ea arg mem_tmp2_256 ,regb 
+7c4b 1a420a00 copy regb ,contw 
+7c4c 1e008c20 add alarm ,32 ,contr 
+7c4d 20407e7d call memcpy12 
+7c4e 20407e98 call memset0_4 
+7c4f e0a40000 istore 8 ,contw 
+7c50 1e008c38 add alarm ,56 ,contr 
+7c51 20407e81 call memcpy8 
+7c52 19622200 copy timeup ,rega 
+7c53 1a220a00 copy rega ,contw 
+7c54 20407ca0 call bn_addmod_256 
+7c55 da4006ea arg mem_tmp2_256 ,regb 
+7c56 1a420a00 copy regb ,contw 
+7c57 1e008c24 add alarm ,36 ,contr 
+7c58 20407e7d call memcpy12 
+7c59 1e008c34 add alarm ,52 ,contr 
+7c5a 20407e7d call memcpy12 
+7c5b 1e008c34 add alarm ,52 ,contr 
+7c5c 20407e7e call memcpy4 
+7c5d 1e008c20 add alarm ,32 ,contr 
+7c5e 20407e7e call memcpy4 
+7c5f 19622200 copy timeup ,rega 
+7c60 1a220a00 copy rega ,contw 
+7c61 20407ca0 call bn_addmod_256 
+7c62 da4006ea arg mem_tmp2_256 ,regb 
+7c63 1a420a00 copy regb ,contw 
+7c64 1e008c2c add alarm ,44 ,contr 
+7c65 20407e7d call memcpy12 
+7c66 20407e98 call memset0_4 
+7c67 e0a40000 istore 8 ,contw 
+7c68 1e008c20 add alarm ,32 ,contr 
+7c69 20407e7e call memcpy4 
+7c6a 1e008c28 add alarm ,40 ,contr 
+7c6b 20407e7e call memcpy4 
+7c6c 19622200 copy timeup ,rega 
+7c6d 1a220a00 copy rega ,contw 
+7c6e 20407cb9 call bn_submod_256 
+7c6f da4006ea arg mem_tmp2_256 ,regb 
+7c70 1a420a00 copy regb ,contw 
+7c71 1e008c30 add alarm ,48 ,contr 
+7c72 20407e81 call memcpy8 
+7c73 20407e81 call memcpy8 
+7c74 18007e00 force 0 ,pdata 
+7c75 e0a40000 istore 8 ,contw 
+7c76 1e008c24 add alarm ,36 ,contr 
+7c77 20407e7e call memcpy4 
+7c78 1e008c2c add alarm ,44 ,contr 
+7c79 20407e7e call memcpy4 
+7c7a 19622200 copy timeup ,rega 
+7c7b 1a220a00 copy rega ,contw 
+7c7c 20407cb9 call bn_submod_256 
+7c7d da4006ea arg mem_tmp2_256 ,regb 
+7c7e 1a420a00 copy regb ,contw 
+7c7f 1e008c34 add alarm ,52 ,contr 
+7c80 20407e7d call memcpy12 
+7c81 1e008c20 add alarm ,32 ,contr 
+7c82 20407e7d call memcpy12 
+7c83 20407e98 call memset0_4 
+7c84 1e008c30 add alarm ,48 ,contr 
+7c85 20407e7e call memcpy4 
+7c86 19622200 copy timeup ,rega 
+7c87 1a220a00 copy rega ,contw 
+7c88 20407cb9 call bn_submod_256 
+7c89 da4006ea arg mem_tmp2_256 ,regb 
+7c8a 1a420a00 copy regb ,contw 
+7c8b 1e008c38 add alarm ,56 ,contr 
+7c8c 20407e81 call memcpy8 
+7c8d 20407e98 call memset0_4 
+7c8e 1e008c24 add alarm ,36 ,contr 
+7c8f 20407e7d call memcpy12 
+7c90 20407e98 call memset0_4 
+7c91 1e008c34 add alarm ,52 ,contr 
+7c92 20407e7e call memcpy4 
+7c93 19622200 copy timeup ,rega 
+7c94 1a220a00 copy rega ,contw 
+7c95 20207cb9 branch bn_submod_256 
+
+bn_load_mem:
+7c96 18007220 force 32 ,loopcnt 
+7c97 d8a009f1 arg mem_regext ,contw 
+7c98 98a08a00 iadd contw ,contw 
+7c99 20207ecd branch memcpy 
+
+bn_load_256:
+7c9a 18007208 force 8 ,loopcnt 
+7c9b 2020779d branch bn_load_0 
+
+bn_sqrmod_256:
+7c9c 1a222400 copy rega ,regb 
+7c9d 20207c03 branch bn_mulmod_256 
+
+bn_add_256:
+7c9e 18007208 force 8 ,loopcnt 
+7c9f 2020772e branch bn_add + 1 
+
+bn_addmod_256:
+7ca0 20407c9e call bn_add_256 
+7ca1 18a22200 copy contw ,rega 
+7ca2 20207ca4 branch bn_lshiftmod_ismod_256 
+
+bn_lshiftmod_256:
+7ca3 20407cd1 call bn_lshift_256 
+
+bn_lshiftmod_ismod_256:
+7ca4 2a6ffe00 isolate1 0 ,regc 
+7ca5 2020fcad branch bn_lshiftmod_p_256 ,true 
+7ca6 da400842 arg mem_p_256 ,regb 
+7ca7 1a222600 copy rega ,regc 
+7ca8 1a20a3e0 increase -32 ,rega 
+7ca9 20407cd4 call bn_bigeq_256 
+7caa 24610000 nrtn positive 
+7cab 1a622200 copy regc ,rega 
+7cac 20207cb5 branch sub_p2_256 
+
+bn_lshiftmod_p_256:
+7cad 20407cb5 call sub_p2_256 
+7cae 1a222600 copy rega ,regc 
+7caf 1a20a3e0 increase -32 ,rega 
+7cb0 da400842 arg mem_p_256 ,regb 
+7cb1 20407cd4 call bn_bigeq_256 
+7cb2 24610000 nrtn positive 
+7cb3 1a622200 copy regc ,rega 
+7cb4 20207cb5 branch sub_p2_256 
+
+sub_p2_256:
+7cb5 1a20a3e0 increase -32 ,rega 
+7cb6 da400842 arg mem_p_256 ,regb 
+7cb7 1a220a00 copy rega ,contw 
+7cb8 20207ccc branch bn_sub_256 
+
+bn_submod_256:
+7cb9 20407ccc call bn_sub_256 
+7cba 2020fcc3 branch bn_submod_256_np ,true 
+7cbb 18a0a3e0 add contw ,-32 ,rega 
+7cbc da400842 arg mem_p_256 ,regb 
+7cbd 20407cd4 call bn_bigeq_256 
+7cbe 24610000 nrtn positive 
+7cbf da400842 arg mem_p_256 ,regb 
+7cc0 18a0a3e0 add contw ,-32 ,rega 
+7cc1 1a220a00 copy rega ,contw 
+7cc2 20207ccc branch bn_sub_256 
+
+bn_submod_256_np:
+7cc3 18a0a3e0 add contw ,-32 ,rega 
+7cc4 da400842 arg mem_p_256 ,regb 
+7cc5 1a220a00 copy rega ,contw 
+7cc6 20407c9e call bn_add_256 
+7cc7 20608000 rtn true 
+7cc8 18a0a3e0 add contw ,-32 ,rega 
+7cc9 da400842 arg mem_p_256 ,regb 
+7cca 1a220a00 copy rega ,contw 
+7ccb 20207c9e branch bn_add_256 
+
+bn_sub_256:
+7ccc 18007208 force 8 ,loopcnt 
+7ccd 2020773c branch bn_sub + 1 
+
+bn_rshift_256:
+7cce 18007208 force 8 ,loopcnt 
+7ccf 1a20a21c increase 28 ,rega 
+7cd0 2020774b branch bn_rshift 
+
+bn_lshift_256:
+7cd1 18007208 force 8 ,loopcnt 
+7cd2 18002600 force 0 ,regc 
+7cd3 20207759 branch bn_lshift_0 
+
+bn_bigeq_256:
+7cd4 18007208 force 8 ,loopcnt 
+7cd5 1a20a21c increase 28 ,rega 
+7cd6 1a40a41c increase 28 ,regb 
+7cd7 20207723 branch bn_bigeq_0 
+
+bn_eq_zero_256:
+7cd8 e8c40000 ifetch 8 ,contr 
+7cd9 247a0000 nrtn blank 
+7cda 20207711 branch bn_eq_zero 
+
+bn_rshifteven_256:
+7cdb 1a226000 copy rega ,alarm 
+
+bn_rshifteven_256_1:
+7cdc 1e022200 copy alarm ,rega 
+7cdd ea208000 ifetch 1 ,rega 
+7cde 2feffe00 isolate1 0 ,pdata 
+7cdf 20608000 rtn true 
+7ce0 20407cce call bn_rshift_256 
+7ce1 ea408000 ifetch 1 ,regb 
+7ce2 2fec0000 isolate0 0 ,pdata 
+7ce3 2020fceb branch bn_rshifteven_256_0 ,true 
+7ce4 da200842 arg mem_p_256 ,rega 
+7ce5 1a420a00 copy regb ,contw 
+7ce6 20407c9e call bn_add_256 
+7ce7 ea408000 ifetch 1 ,regb 
+7ce8 9a60fe00 iadd regc ,pdata 
+7ce9 e2408000 istore 1 ,regb 
+7cea 1a40a5e0 increase -32 ,regb 
+
+bn_rshifteven_256_0:
+7ceb 1a40a220 add regb ,32 ,rega 
+7cec 18007209 force 9 ,loopcnt 
+7ced 2040774b call bn_rshift 
+7cee 20207cdc branch bn_rshifteven_256_1 
+
+ui_init:
+7cef 20403d3e call lpm_disable_exen_output 
+7cf0 20758000 rtn wake 
+7cf1 20407cf6 call ui_button_init 
+7cf2 20407d72 call ui_timer_init 
+7cf3 20207d2a branch ui_led_init 
+
+ui_dispatch:
+7cf4 20407d44 call ui_led_blink_polling 
+7cf5 20207d60 branch ui_timer_check 
+
+ui_button_init:
+7cf6 79200025 set1 mark_ext_patch ,mark 
+7cf7 44f7c03d bpatch patch3d_7 ,mem_patch3d 
+7cf8 6800c715 fetch 1 ,mem_ui_button_gpio 
+7cf9 c17f8000 rtneq ui_button_gpio_disable 
+7cfa 98000400 iforce temp 
+7cfb 204064e8 call gpio_config_output 
+7cfc 6808c715 fetcht 1 ,mem_ui_button_gpio 
+7cfd 204064fd call gpio_out_inactive 
+7cfe 20000064 nop 100 
+7cff 6808c715 fetcht 1 ,mem_ui_button_gpio 
+7d00 204064df call gpio_config_input 
+7d01 20207d02 branch ui_button_polling 
+
+ui_button_polling:
+7d02 79200025 set1 mark_ext_patch ,mark 
+7d03 44f8403e bpatch patch3e_0 ,mem_patch3e 
+7d04 6800c715 fetch 1 ,mem_ui_button_gpio 
+7d05 c17f8000 rtneq ui_button_gpio_disable 
+7d06 1fe20400 copy pdata ,temp 
+7d07 204064f5 call gpio_get_bit 
+7d08 2420fd15 nbranch ui_button_up ,true 
+
+ui_button_down:
+7d09 20407d1f call ui_button_check_long_press 
+7d0a 6801470b fetch 2 ,mem_ui_state_map 
+7d0b 79207e0c set1 ui_state_btn_down 
+7d0c 6001470b store 2 ,mem_ui_state_map 
+7d0d 6800c702 fetch 1 ,mem_ui_button_last_state 
+7d0e c1000000 rtneq ui_button_state_down 
+7d0f 70470200 jam ui_button_state_down ,mem_ui_button_last_state 
+7d10 6800c714 fetch 1 ,mem_ui_button_timeout 
+7d11 6000c701 store 1 ,mem_ui_button_timer 
+7d12 20407d26 call lpm_button_get_wake_lock 
+7d13 7009bd2c jam bt_evt_button_down ,mem_fifo_temp 
+7d14 20207d86 branch ui_ipc_send_event 
+
+ui_button_up:
+7d15 6801470b fetch 2 ,mem_ui_state_map 
+7d16 793ffe0c set0 ui_state_btn_down 
+7d17 6001470b store 2 ,mem_ui_state_map 
+7d18 6800c702 fetch 1 ,mem_ui_button_last_state 
+7d19 c1008000 rtneq ui_button_state_up 
+7d1a 70470201 jam ui_button_state_up ,mem_ui_button_last_state 
+7d1b 70470100 jam 0 ,mem_ui_button_timer 
+7d1c 20407d28 call lpm_button_clean_wake_lock 
+7d1d 7009bd2d jam bt_evt_button_up ,mem_fifo_temp 
+7d1e 20207d86 branch ui_ipc_send_event 
+
+ui_button_check_long_press:
+7d1f 6800c701 fetch 1 ,mem_ui_button_timer 
+7d20 207a0000 rtn blank 
+7d21 1fe0ffff increase -1 ,pdata 
+7d22 6000c701 store 1 ,mem_ui_button_timer 
+7d23 247a0000 nrtn blank 
+7d24 7009bd10 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+7d25 20207d86 branch ui_ipc_send_event 
+
+lpm_button_get_wake_lock:
+7d26 d8e00007 arg wake_lock_button ,queue 
+7d27 20203d06 branch lpm_get_wake_lock 
+
+lpm_button_clean_wake_lock:
+7d28 d8e00007 arg wake_lock_button ,queue 
+7d29 20203d0a branch lpm_put_wake_lock 
+
+ui_led_init:
+7d2a 6800c70e fetch 1 ,mem_led_gpio 
+7d2b c17f8000 rtneq ui_button_gpio_disable 
+7d2c 98000400 iforce temp 
+7d2d 204064e8 call gpio_config_output 
+7d2e 20207d33 branch ui_led_off 
+
+ui_led_blink_stop:
+7d2f 6801470b fetch 2 ,mem_ui_state_map 
+7d30 793ffe0d set0 ui_state_led_blink 
+7d31 6001470b store 2 ,mem_ui_state_map 
+7d32 70470000 jam ui_led_stop ,mem_led_switch 
+
+ui_led_off:
+7d33 6801470b fetch 2 ,mem_ui_state_map 
+7d34 793ffe0e set0 ui_state_led_on 
+7d35 6001470b store 2 ,mem_ui_state_map 
+7d36 6808c70e fetcht 1 ,mem_led_gpio 
+7d37 202064fd branch gpio_out_inactive 
+
+ui_led_on:
+7d38 6801470b fetch 2 ,mem_ui_state_map 
+7d39 79207e0e set1 ui_state_led_on 
+7d3a 6001470b store 2 ,mem_ui_state_map 
+7d3b 70470000 jam ui_led_stop ,mem_led_switch 
+7d3c 6808c70e fetcht 1 ,mem_led_gpio 
+7d3d 202064ff branch gpio_out_active 
+
+ui_led_blink_start:
+7d3e 704713ff jam 0xff ,mem_led_blink_count 
+
+ui_led_blink_start1:
+7d3f 6801470b fetch 2 ,mem_ui_state_map 
+7d40 79207e0d set1 ui_state_led_blink 
+7d41 6001470b store 2 ,mem_ui_state_map 
+7d42 70470001 jam ui_led_start ,mem_led_switch 
+7d43 20600000 rtn 
+
+ui_led_blink_polling:
+7d44 79200025 set1 mark_ext_patch ,mark 
+7d45 44f8c03e bpatch patch3e_1 ,mem_patch3e 
+7d46 6800c713 fetch 1 ,mem_led_blink_count 
+7d47 207a0000 rtn blank 
+7d48 6800c700 fetch 1 ,mem_led_switch 
+7d49 c1000000 rtneq ui_led_stop 
+7d4a d8e00009 arg ui_led_blink ,queue 
+7d4b 20407ee2 call timer_check 
+7d4c 247a0000 nrtn blank 
+7d4d 6800c700 fetch 1 ,mem_led_switch 
+7d4e c0017d53 beq ui_led_dark_time ,in_ui_led_blink_polling_dark 
+7d4f 20407d38 call ui_led_on 
+7d50 70470002 jam ui_led_dark_time ,mem_led_switch 
+7d51 68014711 fetch 2 ,mem_led_light_time 
+7d52 20207d5a branch in_ui_led_blink_timer_start 
+
+in_ui_led_blink_polling_dark:
+7d53 20407d33 call ui_led_off 
+7d54 6800c713 fetch 1 ,mem_led_blink_count 
+7d55 c07ffd58 beq led_flash_infinite ,in_ui_led_infinite 
+7d56 1fe0ffff increase -1 ,pdata 
+7d57 6000c713 store 1 ,mem_led_blink_count 
+
+in_ui_led_infinite:
+7d58 70470003 jam ui_led_light_time ,mem_led_switch 
+7d59 6801470f fetch 2 ,mem_led_dark_time 
+
+in_ui_led_blink_timer_start:
+7d5a d8e00009 arg ui_led_blink ,queue 
+7d5b 20207ed4 branch timer_init 
+
+ui_timer_timeout:
+7d5c 58001000 setarg 0x1000 
+7d5d 1ff07e00 lshift16 pdata ,pdata 
+7d5e 9a40a400 iadd regb ,regb 
+7d5f 20600000 rtn 
+
+ui_timer_check:
+7d60 79200025 set1 mark_ext_patch ,mark 
+7d61 44f9403e bpatch patch3e_2 ,mem_patch3e 
+7d62 da200000 arg 0 ,rega 
+7d63 680a4703 fetcht 4 ,mem_ui_timer_last_btclk 
+7d64 1c422400 copy clkn_bt ,regb 
+7d65 1a427e00 copy regb ,pdata 
+7d66 98467c00 isub temp ,null 
+7d67 24417d5c ncall ui_timer_timeout ,positive 
+
+ui_timer_check_loop:
+7d68 1a427e00 copy regb ,pdata 
+7d69 184084a0 increase 160 ,temp 
+7d6a 184084a0 increase 160 ,temp 
+7d6b 98467c00 isub temp ,null 
+7d6c 24217d75 nbranch ui_timer_check_end ,positive 
+7d6d 1a20a201 increase 1 ,rega 
+7d6e 1a217e0f and rega ,0x0f ,pdata 
+7d6f 243a7d68 nbranch ui_timer_check_loop ,blank 
+7d70 da200000 arg 0 ,rega 
+7d71 20407d7d call ui_timer_check_send_evt 
+
+ui_timer_init:
+7d72 1c427e00 copy clkn_bt ,pdata 
+7d73 60024703 store 4 ,mem_ui_timer_last_btclk 
+7d74 20600000 rtn 
+
+ui_timer_check_end:
+7d75 79200025 set1 mark_ext_patch ,mark 
+7d76 44f9c03e bpatch patch3e_3 ,mem_patch3e 
+7d77 1a227e00 copy rega ,pdata 
+7d78 207a0000 rtn blank 
+7d79 18408560 increase -160 ,temp 
+7d7a 18408560 increase -160 ,temp 
+7d7b 793f841c set0 28 ,temp 
+7d7c 600a4703 storet 4 ,mem_ui_timer_last_btclk 
+
+ui_timer_check_send_evt:
+7d7d 1fe0fe50 increase bt_evt_timer_init ,pdata 
+7d7e 600089bd store 1 ,mem_fifo_temp 
+7d7f 20207d86 branch ui_ipc_send_event 
+
+ui_ipc_get_lock:
+7d80 7046ee01 jam 1 ,mem_ipc_lock_bt 
+
+ui_ipc_get_lock_wait:
+7d81 6800c6ef fetch 1 ,mem_ipc_lock_c51 
+7d82 243a7d81 nbranch ui_ipc_get_lock_wait ,blank 
+7d83 20600000 rtn 
+
+ui_ipc_put_lock:
+7d84 7046ee00 jam 0 ,mem_ipc_lock_bt 
+7d85 20600000 rtn 
+
+ui_ipc_send_event:
+7d86 79200025 set1 mark_ext_patch ,mark 
+7d87 44fa403e bpatch patch3e_4 ,mem_patch3e 
+7d88 20407d80 call ui_ipc_get_lock 
+7d89 1a227e00 copy rega ,pdata 
+7d8a 600209b5 store 4 ,mem_ipc_rega_temp 
+7d8b da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+7d8c 20407f88 call fifo_in 
+7d8d 680209b5 fetch 4 ,mem_ipc_rega_temp 
+7d8e 1fe22200 copy pdata ,rega 
+7d8f 20207d84 branch ui_ipc_put_lock 
+
+ui_ipc_send_cmd:
+7d90 79200025 set1 mark_ext_patch ,mark 
+7d91 44fac03e bpatch patch3e_5 ,mem_patch3e 
+7d92 20407d80 call ui_ipc_get_lock 
+7d93 1a227e00 copy rega ,pdata 
+7d94 600209b5 store 4 ,mem_ipc_rega_temp 
+7d95 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7d96 20407f88 call fifo_in 
+7d97 680209b5 fetch 4 ,mem_ipc_rega_temp 
+7d98 1fe22200 copy pdata ,rega 
+7d99 20207d84 branch ui_ipc_put_lock 
+
+ui_ipc_clean_all_fifo:
+7d9a 58000000 setarg 0 
+7d9b 600446f8 store util_fifo_len ,mem_ipc_fifo_c512bt 
+7d9c 600446f0 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+7d9d 20600000 rtn 
+
+check_51cmd:
+7d9e 79200025 set1 mark_ext_patch ,mark 
+7d9f 44fb403e bpatch patch3e_6 ,mem_patch3e 
+7da0 6800c271 fetch 1 ,mem_hci_cmd 
+7da1 247a0000 nrtn blank 
+7da2 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7da3 20407fa2 call fifo_is_empty 
+7da4 207a0000 rtn blank 
+7da5 7009b400 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+7da6 20407daa call check_51cmd_once 
+7da7 680089b4 fetch 1 ,mem_ipc_skip_continue_proc 
+7da8 203a7d9e branch check_51cmd ,blank 
+7da9 20600000 rtn 
+
+check_51cmd_once:
+7daa 79200025 set1 mark_ext_patch ,mark 
+7dab 44fbc03e bpatch patch3e_7 ,mem_patch3e 
+7dac 20407d80 call ui_ipc_get_lock 
+7dad da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7dae 20407f95 call fifo_out 
+7daf 1fe20400 copy pdata ,temp 
+7db0 20407d84 call ui_ipc_put_lock 
+7db1 18427e00 copy temp ,pdata 
+7db2 207a0000 rtn blank 
+7db3 c000fdf0 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+7db4 c0017df5 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+7db5 c001fdfb beq bt_cmd_reconnect ,check_51cmd_reconnect 
+7db6 c003fe00 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+7db7 c0047e01 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+7db8 c004fe02 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+7db9 c005fe05 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+7dba c0067e06 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+7dbb c006fe07 beq bt_cmd_start_adv ,check_51cmd_adv 
+7dbc c0077e0d beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+7dbd c007fe12 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+7dbe c0087e18 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+7dbf c00afd3e beq bt_cmd_led_blink ,ui_led_blink_start 
+7dc0 c00a7d38 beq bt_cmd_led_on ,ui_led_on 
+7dc1 c009fd2f beq bt_cmd_led_off ,ui_led_blink_stop 
+7dc2 c00b7e21 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+7dc3 c00bfe24 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+7dc4 c00c7e26 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+7dc5 c00cfe2b beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+7dc6 c00dfe29 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+7dc7 c00e7e3b beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+7dc8 c00f7e3d beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+7dc9 600089bd store 1 ,mem_fifo_temp 
+7dca 79200025 set1 mark_ext_patch ,mark 
+7dcb 44fc403f bpatch patch3f_0 ,mem_patch3f 
+7dcc 204058c5 call lmo_fifo_check 
+7dcd 243a7de5 nbranch check_51cmd_restore ,blank 
+
+check_51cmd_once_continue:
+7dce 680089bd fetch 1 ,mem_fifo_temp 
+7dcf c584fde0 bmark0 mark_context ,check_51cmd_check_idle 
+7dd0 c002bfae beq bt_cmd_enter_sniff ,cmd_in_sniff 
+7dd1 c0033fbd beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+7dd2 c0057e03 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+7dd3 c0027dfd beq bt_cmd_disconnect ,check_51cmd_disconnect 
+7dd4 c008fe1d beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+7dd5 c00efde7 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+7dd6 c00fe42e beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+7dd7 c0106432 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+7dd8 c0097dde beq bt_cmd_le_update_conn ,check_51cmd_ble_update_connect_param 
+7dd9 c010fddb beq bt_cmd_dhkey_not_accept ,check_51cmd_dhkey_not_accept 
+7dda 20600000 rtn 
+
+check_51cmd_dhkey_not_accept:
+7ddb 20405903 call tid_set_reply 
+7ddc 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+7ddd 202055b4 branch parse_lmp_dhkey_check_reject 
+
+check_51cmd_ble_update_connect_param:
+7dde 7009bd2f jam xt_ll_connection_param_req ,mem_fifo_temp 
+7ddf 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_check_idle:
+7de0 600089bd store 1 ,mem_fifo_temp 
+7de1 20403292 call context_check_idle 
+7de2 2022fde5 branch check_51cmd_restore ,zero 
+7de3 2040329a call context_search_plap 
+7de4 24628000 nrtn zero 
+
+check_51cmd_restore:
+7de5 7009b401 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+7de6 20207d90 branch ui_ipc_send_cmd 
+
+check_51cmd_role_switch:
+7de7 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+7de8 79200003 set1 mark_switch_initiated ,mark 
+7de9 24748000 nrtn master 
+7dea 7045f400 jam switch_flag_init ,mem_switch_flag 
+7deb 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+7dec 6800816c fetch 1 ,mem_connection_options 
+7ded 793ffe02 set0 connection_switch ,pdata 
+7dee 6000816c store 1 ,mem_connection_options 
+7def 20600000 rtn 
+
+check_51cmd_start_discovery:
+7df0 6801470b fetch 2 ,mem_ui_state_map 
+7df1 79207e06 set1 ui_state_bt_discovery 
+7df2 6001470b store 2 ,mem_ui_state_map 
+7df3 70413303 jam 3 ,mem_scan_mode 
+7df4 20600000 rtn 
+
+check_51cmd_stop_discovery:
+7df5 70470900 jam 0 ,mem_hid_handshake_timer_count 
+7df6 70413300 jam 0 ,mem_scan_mode 
+7df7 6801470b fetch 2 ,mem_ui_state_map 
+7df8 793ffe06 set0 ui_state_bt_discovery 
+7df9 6001470b store 2 ,mem_ui_state_map 
+7dfa 20600000 rtn 
+
+check_51cmd_reconnect:
+7dfb 70427105 jam hci_cmd_create_conn ,mem_hci_cmd 
+7dfc 20600000 rtn 
+
+check_51cmd_disconnect:
+7dfd 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+7dfe 7003f013 jam other_end_terminated ,mem_disconn_reason_send 
+7dff 20600000 rtn 
+
+check_51cmd_enter_sniff_subrating:
+7e00 20600000 rtn 
+
+check_51cmd_exit_sniff_subrating:
+7e01 20600000 rtn 
+
+check_51cmd_sniff_test:
+7e02 20600000 rtn 
+
+check_51cmd_pincode:
+7e03 7003fa02 jam pincode_state_pincode_ready ,mem_pincode_state 
+7e04 20203fa1 branch cmd_pair 
+
+check_51cmd_inq:
+7e05 20600000 rtn 
+
+check_51cmd_stop_inq:
+7e06 20600000 rtn 
+
+check_51cmd_adv:
+7e07 7043ff01 jam on ,mem_le_adv_enable 
+7e08 70452000 jam adv_ind ,mem_le_adv_type 
+7e09 6801470b fetch 2 ,mem_ui_state_map 
+7e0a 79207e0b set1 ui_state_ble_adv ,pdata 
+7e0b 6001470b store 2 ,mem_ui_state_map 
+7e0c 20600000 rtn 
+
+check_51cmd_stop_adv:
+7e0d 6801470b fetch 2 ,mem_ui_state_map 
+7e0e 793ffe0b set0 ui_state_ble_adv ,pdata 
+7e0f 6001470b store 2 ,mem_ui_state_map 
+7e10 7043ff00 jam off ,mem_le_adv_enable 
+7e11 20600000 rtn 
+
+check_51cmd_direct_adv:
+7e12 7043ff01 jam on ,mem_le_adv_enable 
+7e13 70452001 jam adv_direct_ind ,mem_le_adv_type 
+7e14 6801470b fetch 2 ,mem_ui_state_map 
+7e15 79207e0b set1 ui_state_ble_adv ,pdata 
+7e16 6001470b store 2 ,mem_ui_state_map 
+7e17 20600000 rtn 
+
+check_51cmd_stop_direct_adv:
+7e18 6801470b fetch 2 ,mem_ui_state_map 
+7e19 793ffe0b set0 ui_state_ble_adv ,pdata 
+7e1a 6001470b store 2 ,mem_ui_state_map 
+7e1b 7043ff00 jam off ,mem_le_adv_enable 
+7e1c 20600000 rtn 
+
+check_51cmd_le_disconnect:
+7e1d 5800000a setarg 10 
+7e1e 60010390 store 2 ,mem_le_superto 
+7e1f 7009bd22 jam xt_ll_terminate_ind ,mem_fifo_temp 
+7e20 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_le_start_con:
+7e21 7043f901 jam on ,mem_le_scan_enable 
+7e22 7042711b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+7e23 20600000 rtn 
+
+check_51cmd_start_scan:
+7e24 7043f901 jam on ,mem_le_scan_enable 
+7e25 20600000 rtn 
+
+check_51cmd_stop_scan:
+7e26 7043f900 jam off ,mem_le_scan_enable 
+7e27 70427100 jam 0 ,mem_hci_cmd 
+7e28 20600000 rtn 
+
+check_51cmd_le_smp_sec_req:
+7e29 7009bd4b jam xt_smp_security_request ,mem_fifo_temp 
+7e2a 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_hibernate:
+7e2b 79200025 set1 mark_ext_patch ,mark 
+7e2c 44fcc03f bpatch patch3f_1 ,mem_patch3f 
+7e2d 6801428c fetch 2 ,mem_cb_before_hibernate 
+7e2e 20407f69 call callback_func 
+7e2f 78347c00 enable user 
+7e30 68120138 hfetch 4 ,0x8138 
+7e31 79347e1a setflag user ,26 ,pdata 
+7e32 6012004c hstore 4 ,core_lpm_reg 
+7e33 20403cf4 call lpm_write_ctrl 
+7e34 6800c715 fetch 1 ,mem_ui_button_gpio 
+7e35 c07ffe38 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+7e36 1fe20400 copy pdata ,temp 
+7e37 204064df call gpio_config_input 
+
+check_51cmd_hibernate_btn_disabled:
+7e38 20407d33 call ui_led_off 
+7e39 20407d9a call ui_ipc_clean_all_fifo 
+7e3a 20203c04 branch lpm_hibernate 
+
+check_51cmd_le_start_write:
+7e3b 70459501 jam 1 ,mem_le_switch_send_data 
+7e3c 20600000 rtn 
+
+check_51cmd_bb_reconn_cancel:
+7e3d 18000e04 force page_length_timer ,queue 
+7e3e 20207ed3 branch timer_stop 
+
+ui_check_paring_button:
+7e3f 6800c70b fetch 1 ,mem_ui_state_map 
+7e40 c4060000 rtnbit0 ui_state_btn_down 
+7e41 c4038000 rtnbit0 ui_state_bt_reconnect 
+7e42 20207e3d branch check_51cmd_bb_reconn_cancel 
+
+right_shift_n:
+7e43 1f267c00 sub loopcnt ,0 ,null 
+7e44 20628000 rtn zero 
+
+right_shift_n_loop:
+7e45 1fe37e00 rshift pdata ,pdata 
+7e46 c2007e45 loop right_shift_n_loop 
+7e47 20600000 rtn 
+
+push_stack:
+7e48 18a27e00 deposit contw 
+7e49 600109df store 2 ,mem_contw 
+7e4a 600c09c6 storet 8 ,mem_temp 
+7e4b 19627e00 deposit timeup 
+7e4c 600209ce store 4 ,mem_timeup 
+7e4d 1a227e00 deposit rega 
+7e4e 600209d2 store 4 ,mem_rega 
+7e4f 1a427e00 deposit regb 
+7e50 600209d6 store 4 ,mem_regb 
+7e51 1a627e00 deposit regc 
+7e52 600189da store 3 ,mem_regc 
+7e53 18c27e00 deposit contr 
+7e54 600109dd store 2 ,mem_contr 
+7e55 20600000 rtn 
+
+pop_stack:
+7e56 680c09c6 fetcht 8 ,mem_temp 
+7e57 680209ce fetch 4 ,mem_timeup 
+7e58 98001600 iforce timeup 
+7e59 680209d2 fetch 4 ,mem_rega 
+7e5a 98002200 iforce rega 
+7e5b 680209d6 fetch 4 ,mem_regb 
+7e5c 98002400 iforce regb 
+7e5d 680189da fetch 3 ,mem_regc 
+7e5e 98002600 iforce regc 
+7e5f 680109df fetch 2 ,mem_contw 
+7e60 98000a00 iforce contw 
+7e61 680109dd fetch 2 ,mem_contr 
+7e62 98000c00 iforce contr 
+7e63 20600000 rtn 
+
+get_contw:
+7e64 680109df fetch 2 ,mem_contw 
+7e65 1fe20a00 copy pdata ,contw 
+7e66 20600000 rtn 
+
+get_contr:
+7e67 680109dd fetch 2 ,mem_contr 
+7e68 1fe20c00 copy pdata ,contr 
+7e69 20600000 rtn 
+
+store_contw:
+7e6a 18a27e00 copy contw ,pdata 
+7e6b 600109df store 2 ,mem_contw 
+7e6c 20600000 rtn 
+
+store_contr:
+7e6d 18c27e00 copy contr ,pdata 
+7e6e 600109dd store 2 ,mem_contr 
+7e6f 20600000 rtn 
+
+save_cont_pointers:
+7e70 18a27e00 copy contw ,pdata 
+7e71 600109bb store 2 ,mem_hold_contw 
+7e72 18c27e00 copy contr ,pdata 
+7e73 600109b9 store 2 ,mem_hold_contr 
+7e74 20600000 rtn 
+
+load_cont_pointers:
+7e75 680109bb fetch 2 ,mem_hold_contw 
+7e76 1fe20a00 copy pdata ,contw 
+7e77 680109b9 fetch 2 ,mem_hold_contr 
+7e78 1fe20c00 copy pdata ,contr 
+7e79 20600000 rtn 
+
+memcpy96:
+7e7a 20407e85 call memcpy32 
+
+memcpy64:
+7e7b 20407e85 call memcpy32 
+7e7c 20207e85 branch memcpy32 
+
+memcpy12:
+7e7d 20407e81 call memcpy8 
+
+memcpy4:
+7e7e e8c20000 ifetch 4 ,contr 
+7e7f e0a20000 istore 4 ,contw 
+7e80 20600000 rtn 
+
+memcpy8:
+7e81 e8c40000 ifetch 8 ,contr 
+7e82 e0a40000 istore 8 ,contw 
+7e83 20600000 rtn 
+
+memcpy48:
+7e84 20407e87 call memcpy16 
+
+memcpy32:
+7e85 20407e81 call memcpy8 
+
+memcpy24:
+7e86 20407e81 call memcpy8 
+
+memcpy16:
+7e87 20407e81 call memcpy8 
+7e88 20207e81 branch memcpy8 
+
+delay_10ms:
+7e89 1c427e00 copy clkn_bt ,pdata 
+7e8a 1fe0fe10 increase 16 ,pdata 
+7e8b 1fe0fe10 increase 16 ,pdata 
+
+delay_ms_wait:
+7e8c 1c420400 copy clkn_bt ,temp 
+7e8d 98467c00 isub temp ,null 
+7e8e 20217e8c branch delay_ms_wait ,positive 
+7e8f 20600000 rtn 
+
+bn_zero:
+7e90 18007203 force 3 ,loopcnt 
+
+memset0:
+7e91 18007e00 force 0 ,pdata 
+
+memset8:
+7e92 e0a40000 istore 8 ,contw 
+7e93 c2007e92 loop memset8 
+7e94 20600000 rtn 
+
+memset0_8:
+7e95 18007e00 force 0 ,pdata 
+7e96 e0a40000 istore 8 ,contw 
+7e97 20600000 rtn 
+
+memset0_4:
+7e98 18007e00 force 0 ,pdata 
+7e99 e0a20000 istore 4 ,contw 
+7e9a 20600000 rtn 
+
+clear_mem_256:
+7e9b 18007204 force 4 ,loopcnt 
+7e9c 20207e91 branch memset0 
+
+clear_mem_512:
+7e9d 18007208 force 8 ,loopcnt 
+7e9e 20207e91 branch memset0 
+
+clear_mem:
+7e9f 1f227e00 deposit loopcnt 
+7ea0 207a0000 rtn blank 
+7ea1 58000000 setarg 0 
+
+clear_mem_loop:
+7ea2 e0a08000 istore 1 ,contw 
+7ea3 c2007ea2 loop clear_mem_loop 
+7ea4 20600000 rtn 
+
+clear_temp_block:
+7ea5 df200020 arg 32 ,loopcnt 
+7ea6 d8a009e1 arg mem_temp_block0 ,contw 
+7ea7 20207e9f branch clear_mem 
+
+xor_loop:
+7ea8 ea620000 ifetch 4 ,regc 
+7ea9 ea2a0000 ifetcht 4 ,rega 
+7eaa 9842fe00 ixor temp ,pdata 
+7eab e0a20000 istore 4 ,contw 
+7eac 1a20a204 increase 4 ,rega 
+7ead 1a60a604 increase 4 ,regc 
+7eae c2007ea8 loop xor_loop 
+7eaf 20600000 rtn 
+
+inverse_data:
+7eb0 79200025 set1 mark_ext_patch ,mark 
+7eb1 44fd403f bpatch patch3f_2 ,mem_patch3f 
+7eb2 1f227e00 copy loopcnt ,pdata 
+7eb3 1fe67c01 sub pdata ,1 ,null 
+7eb4 20610000 rtn positive 
+7eb5 9a20a400 iadd rega ,regb 
+7eb6 1a40a5ff increase -1 ,regb 
+7eb7 1f237200 rshift loopcnt ,loopcnt 
+
+inverse_loop:
+7eb8 ea288000 ifetcht 1 ,rega 
+7eb9 ea408000 ifetch 1 ,regb 
+7eba e2208000 istore 1 ,rega 
+7ebb e2488000 istoret 1 ,regb 
+7ebc 1a40a5ff increase -1 ,regb 
+7ebd 1a20a201 increase 1 ,rega 
+7ebe c2007eb8 loop inverse_loop 
+7ebf 20600000 rtn 
+
+memcpy_fast:
+7ec0 1f227e00 deposit loopcnt 
+7ec1 207a0000 rtn blank 
+
+memcpy_fast_loop:
+7ec2 1f20f3f8 increase -8 ,loopcnt 
+7ec3 20417e81 call memcpy8 ,positive 
+7ec4 20628000 rtn zero 
+7ec5 20217ec2 branch memcpy_fast_loop ,positive 
+7ec6 1f20f208 increase 8 ,loopcnt 
+
+memcpy_fast_loop_four:
+7ec7 1f20f3fc increase -4 ,loopcnt 
+7ec8 20417e7e call memcpy4 ,positive 
+7ec9 20628000 rtn zero 
+7eca 20217ec7 branch memcpy_fast_loop_four ,positive 
+7ecb 1f20f204 increase 4 ,loopcnt 
+7ecc 20207ecd branch memcpy 
+
+memcpy:
+7ecd 1f227e00 deposit loopcnt 
+7ece 207a0000 rtn blank 
+
+memcpy_loop:
+7ecf e8c08000 ifetch 1 ,contr 
+7ed0 e0a08000 istore 1 ,contw 
+7ed1 c2007ecf loop memcpy_loop 
+7ed2 20600000 rtn 
+
+timer_stop:
+7ed3 58000000 setarg 0 
+
+timer_init:
+7ed4 1c430400 rshift clkn_bt ,temp 
+7ed5 600a4134 storet 4 ,mem_last_clkn 
+7ed6 d8a0423d arg mem_timers ,contw 
+7ed7 98000400 iforce temp 
+7ed8 18e3fe00 lshift queue ,pdata 
+7ed9 98a08a00 iadd contw ,contw 
+7eda e0a90000 istoret 2 ,contw 
+7edb 79200025 set1 mark_ext_patch ,mark 
+7edc 44fdc03f bpatch patch3f_3 ,mem_patch3f 
+7edd 20600000 rtn 
+
+timer_check_timeout:
+7ede d9600800 arg 0x800 ,timeup 
+7edf 19701600 lshift16 timeup ,timeup 
+7ee0 9960fe00 iadd timeup ,pdata 
+7ee1 20600000 rtn 
+
+timer_check:
+7ee2 79200025 set1 mark_ext_patch ,mark 
+7ee3 44fe403f bpatch patch3f_4 ,mem_patch3f 
+7ee4 680a4134 fetcht 4 ,mem_last_clkn 
+7ee5 1c437e00 rshift clkn_bt ,pdata 
+7ee6 60024134 store 4 ,mem_last_clkn 
+7ee7 98467c00 isub temp ,null 
+7ee8 24417ede ncall timer_check_timeout ,positive 
+7ee9 98461600 isub temp ,timeup 
+7eea 19620400 copy timeup ,temp 
+7eeb d8c0423d arg mem_timers ,contr 
+7eec 18c20a00 copy contr ,contw 
+7eed df200010 arg 16 ,loopcnt 
+
+timer_loop:
+7eee e8c10000 ifetch 2 ,contr 
+7eef 98467e00 isub temp ,pdata 
+7ef0 20217ef2 branch timer_counting ,positive 
+7ef1 18007e00 force 0 ,pdata 
+
+timer_counting:
+7ef2 e0a10000 istore 2 ,contw 
+7ef3 c2007eee loop timer_loop 
+7ef4 d8c0423d arg mem_timers ,contr 
+7ef5 18e3fe00 lshift queue ,pdata 
+7ef6 98c08c00 iadd contr ,contr 
+7ef7 e8c10000 ifetch 2 ,contr 
+7ef8 20600000 rtn 
+
+clk_add:
+7ef9 98408400 iadd temp ,temp 
+7efa 18427200 copy temp ,loopcnt 
+7efb 58000ea6 setarg 3750 
+7efc 9f267e00 isub loopcnt ,pdata 
+7efd 20610000 rtn positive 
+7efe 1fe67e00 sub pdata ,0 ,pdata 
+7eff 18510400 rshift16 temp ,temp 
+7f00 18408401 increase 1 ,temp 
+7f01 18500400 lshift16 temp ,temp 
+7f02 98418400 ior temp ,temp 
+7f03 20600000 rtn 
+
+clk_diff_rt:
+7f04 20407f06 call clk_diff 
+7f05 20207f10 branch clk2rt 
+
+clk_diff:
+7f06 78547c00 disable user 
+7f07 98467e00 isub temp ,pdata 
+7f08 20217f0b branch clk_diff_pos ,positive 
+7f09 78347c00 enable user 
+7f0a 1fe67e00 sub pdata ,0 ,pdata 
+
+clk_diff_pos:
+7f0b c4078000 rtnbit0 15 
+7f0c d85f0ea6 arg -61786 ,temp 
+7f0d 9840fe00 iadd temp ,pdata 
+7f0e 793ffe40 set0 64 ,pdata 
+7f0f 20600000 rtn 
+
+clk2rt:
+7f10 98000c00 iforce contr 
+7f11 1ff17e00 rshift16 pdata ,pdata 
+7f12 d8400ea6 arg 3750 ,temp 
+7f13 984ffe00 imul32 temp ,pdata 
+7f14 98c0fe00 iadd contr ,pdata 
+7f15 20600000 rtn 
+
+clk2lpo:
+7f16 1fed7e00 lshift8 pdata ,pdata 
+7f17 1ff27e00 lshift4 pdata ,pdata 
+7f18 6809c20f fetcht 3 ,mem_clks_per_lpo 
+7f19 9846fc00 idiv temp 
+7f1a 20407f53 call wait_div_end 
+7f1b 18078400 quotient temp 
+7f1c 20600000 rtn 
+
+clk2bt:
+7f1d d8400ea6 arg 3750 ,temp 
+7f1e 9846fc00 idiv temp 
+7f1f 20407f53 call wait_div_end 
+7f20 1807fe00 quotient pdata 
+7f21 1ff07e00 lshift16 pdata ,pdata 
+7f22 18070400 remainder temp 
+7f23 98418400 ior temp ,temp 
+7f24 20600000 rtn 
+
+string2dec_from_uart:
+7f25 d8400000 arg 0 ,temp 
+
+string2dec_from_uart_done:
+7f26 18422600 copy temp ,regc 
+7f27 e8608000 ifetch 1 ,contru 
+7f28 20407f31 call uchar2dialog 
+7f29 1a620400 copy regc ,temp 
+7f2a 20407f62 call swap 
+7f2b da40000a arg 10 ,regb 
+7f2c 9a4ffe00 imul32 regb ,pdata 
+7f2d 9840fe00 iadd temp ,pdata 
+7f2e 1fe20400 copy pdata ,temp 
+7f2f c2007f26 loop string2dec_from_uart_done 
+7f30 20600000 rtn 
+
+uchar2dialog:
+7f31 d840003a arg 0x3a ,temp 
+7f32 98467c00 isub temp ,null 
+7f33 24217f3a nbranch uchar2dialog_number ,positive 
+7f34 d8400061 arg 0x61 ,temp 
+7f35 98467c00 isub temp ,null 
+7f36 20217f3d branch uchar2dialog_a2f ,positive 
+7f37 d8400037 arg 0x37 ,temp 
+7f38 98467e00 isub temp ,pdata 
+7f39 20600000 rtn 
+
+uchar2dialog_number:
+7f3a d8400030 arg 0x30 ,temp 
+7f3b 98467e00 isub temp ,pdata 
+7f3c 20600000 rtn 
+
+uchar2dialog_a2f:
+7f3d d8400057 arg 0x57 ,temp 
+7f3e 98467e00 isub temp ,pdata 
+7f3f 20600000 rtn 
+
+pn9:
+7f40 18426000 copy temp ,alarm 
+7f41 580001ff setarg 0x1ff 
+7f42 18002400 force 0 ,regb 
+
+pn9_loop:
+7f43 1fe92200 rshift3 pdata ,rega 
+7f44 1a232200 rshift rega ,rega 
+7f45 9a22a200 ixor rega ,rega 
+7f46 2a2ffe00 isolate1 0 ,rega 
+7f47 7920fe09 setflag true ,9 ,pdata 
+7f48 18430400 rshift temp ,temp 
+7f49 2feffe00 isolate1 0 ,pdata 
+7f4a 79208407 setflag true ,7 ,temp 
+7f4b 1fe37e00 rshift pdata ,pdata 
+7f4c 1a40a401 increase 1 ,regb 
+7f4d 2a400e00 compare 0 ,regb ,0x7 
+7f4e 2420ff43 nbranch pn9_loop ,true 
+7f4f e0a88000 istoret 1 ,contw 
+7f50 c2007f43 loop pn9_loop 
+7f51 1e020400 copy alarm ,temp 
+7f52 20600000 rtn 
+
+wait_div_end:
+7f53 207a8000 rtn modone 
+7f54 20207f53 branch wait_div_end 
+
+string_compare:
+7f55 ea208000 ifetch 1 ,rega 
+7f56 ea488000 ifetcht 1 ,regb 
+7f57 98467c00 isub temp ,null 
+7f58 24628000 nrtn zero 
+7f59 1a20a201 increase 1 ,rega 
+7f5a 1a40a401 increase 1 ,regb 
+7f5b c2007f55 loop string_compare 
+7f5c 18007c00 force 0 ,null 
+7f5d 20600000 rtn 
+
+ceiling:
+7f5e 98467c00 isub temp ,null 
+7f5f 24610000 nrtn positive 
+7f60 18427e00 deposit temp 
+7f61 20600000 rtn 
+
+swap:
+7f62 9840fe00 iadd temp ,pdata 
+7f63 98460400 isub temp ,temp 
+7f64 98467e00 isub temp ,pdata 
+7f65 20600000 rtn 
+
+clean_mem:
+7f66 df200200 arg 0x200 ,loopcnt 
+7f67 d8a04000 arg 0x4000 ,contw 
+7f68 20207e91 branch memset0 
+
+callback_func:
+7f69 207a0000 rtn blank 
+7f6a 1fe27a00 copy pdata ,pc 
+
+wait_uarttx:
+7f6b 6811010e hfetch 2 ,core_uart_txitems 
+7f6c 243a7f6b nbranch wait_uarttx ,blank 
+7f6d 20600000 rtn 
+
+get_uart_rrptr:
+7f6e 68110058 hfetch 2 ,core_uart_rrptr 
+7f6f 1fe20600 copy pdata ,contru 
+7f70 20600000 rtn 
+
+ice_break:
+7f71 70820301 hjam 0x1 ,core_ice_ctrl 
+7f72 20600000 rtn 
+
+ice_setbp:
+7f73 60110205 hstore 2 ,core_ice_break0 
+7f74 68108203 hfetch 1 ,core_ice_ctrl 
+7f75 79207e04 set1 4 ,pdata 
+7f76 60108203 hstore 1 ,core_ice_ctrl 
+7f77 20600000 rtn 
+
+ice_setbp2:
+7f78 60110207 hstore 2 ,core_ice_break1 
+7f79 68108203 hfetch 1 ,core_ice_ctrl 
+7f7a 79207e06 set1 6 ,pdata 
+7f7b 60108203 hstore 1 ,core_ice_ctrl 
+7f7c 20600000 rtn 
+
+ice_set_write_bp:
+7f7d 60110205 hstore 2 ,core_ice_break0 
+7f7e 70820330 hjam 0x30 ,core_ice_ctrl 
+7f7f 20600000 rtn 
+
+test_enable_white:
+7f80 68108043 hfetch 1 ,core_config 
+7f81 793ffe04 set0 whiteoff_bit ,pdata 
+7f82 60108043 hstore 1 ,core_config 
+7f83 20600000 rtn 
+
+check_uart_tx_buff:
+7f84 6811010e hfetch 2 ,core_uart_txitems 
+7f85 d8400200 arg uart_air_control_threshold ,temp 
+
+pdata_sub_temp:
+7f86 98467c00 isub temp ,null 
+7f87 20600000 rtn 
+
+fifo_in:
+7f88 79200025 set1 mark_ext_patch ,mark 
+7f89 44fec03f bpatch patch3f_5 ,mem_patch3f 
+7f8a ea2c0000 ifetcht util_fifo_len ,rega 
+7f8b 18417eff and temp ,0xff ,pdata 
+7f8c 243a7f8f nbranch fifo_in_push ,blank 
+7f8d 184cfe00 rshift8 temp ,pdata 
+7f8e e2240000 istore util_fifo_len ,rega 
+
+fifo_in_push:
+7f8f 1a20a207 increase util_fifo_len + util_fifo_offset ,rega 
+7f90 ea208000 ifetch 1 ,rega 
+7f91 243a3b31 nbranch assert ,blank 
+7f92 680089bd fetch 1 ,mem_fifo_temp 
+7f93 e2208000 istore 1 ,rega 
+7f94 20600000 rtn 
+
+fifo_out:
+7f95 79200025 set1 mark_ext_patch ,mark 
+7f96 44ff403f bpatch patch3f_6 ,mem_patch3f 
+7f97 df200008 arg util_fifo_len ,loopcnt 
+7f98 ea240000 ifetch util_fifo_len ,rega 
+7f99 207a0000 rtn blank 
+
+fifo_out_loop:
+7f9a ea208000 ifetch 1 ,rega 
+7f9b 243a7f9f nbranch fifo_out_end ,blank 
+7f9c 1a20a201 increase 1 ,rega 
+7f9d c2007f9a loop fifo_out_loop 
+7f9e 20203b31 branch assert 
+
+fifo_out_end:
+7f9f d8400000 arg 0 ,temp 
+7fa0 e2288000 istoret 1 ,rega 
+7fa1 20600000 rtn 
+
+fifo_is_empty:
+7fa2 ea240000 ifetch util_fifo_len ,rega 
+7fa3 20600000 rtn 
+
+fifo_is_full:
+7fa4 ea208000 ifetch 1 ,rega 
+7fa5 20600000 rtn 
+
+fifo_is_near_full:
+7fa6 ea210000 ifetch 2 ,rega 
+7fa7 20600000 rtn 
+
+fifo_content_count:
+7fa8 d8400000 arg 0 ,temp 
+
+fifo_content_count_loop:
+7fa9 68008006 fetch 1 ,contr 
+7faa c2007fa9 loop fifo_content_count_loop ,blank 
+7fab 18408401 increase 1 ,temp 
+7fac c2007fa9 loop fifo_content_count_loop 
+7fad 18427e00 copy temp ,pdata 
+7fae 20600000 rtn 
+
+not_greater_than:
+7faf 98467c00 isub temp ,null 
+7fb0 24610000 nrtn positive 
+7fb1 18427e00 copy temp ,pdata 
+7fb2 20600000 rtn 
+rtn 
Index: ble fast connect receive/output/ramcode.rom
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/ramcode.rom	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/ramcode.rom	(working copy)
@@ -0,0 +1,602 @@
+c5128007
+c0018014
+c0430228
+c04501f1
+c045824a
+c05a0034
+20203b31
+c00180ce
+c00c8220
+c0158072
+c01700c5
+c019001d
+c01980b2
+c01f0093
+c04a81ea
+c06c005a
+c06c81bb
+c06e0131
+c07b8085
+20203b31
+d8e0000e
+20407ee2
+245a0019
+2040001a
+20400093
+2020301b
+5800000e
+d8e0000e
+20207ed4
+6800c46b
+c000ccbb
+c001002c
+c001ccda
+c0024ce8
+c002cced
+c0034cf2
+c003cd10
+c0044d27
+c004cd2d
+c0054d32
+c005cd35
+c0064d39
+c006cd64
+20203b31
+59000302
+600244dc
+58010010
+e0a18000
+680344dd
+6003446c
+1800040b
+20204f89
+6800c132
+203a3d4b
+c001c00c
+c004803c
+c00559dd
+c2835dca
+c283c00c
+20600000
+20758000
+204074fd
+df200087
+d8a049b2
+d8c04ac1
+20407ecd
+204075c9
+70808100
+204073a5
+5800737c
+6001428c
+5800748c
+6001428e
+58007365
+60014298
+5800737a
+60014294
+58007371
+60014290
+580000bc
+60014296
+204001c6
+580072ef
+6001428a
+580074f4
+6001429a
+20400101
+70421200
+7048c700
+202072ad
+6800c755
+c000005d
+202072b1
+70475601
+70475b01
+20407382
+58004771
+2040738e
+20407d44
+6800c713
+243a0062
+7043f901
+58000000
+60024729
+20407382
+68014748
+6001474a
+2020006c
+68014748
+6001474a
+7048bb00
+7043f901
+58004763
+2020738e
+68030304
+60030372
+68030372
+680b452c
+98467c00
+2022cbb4
+20200079
+68030372
+680b4bf2
+98467c00
+24628000
+68030372
+60034b4b
+7043f71c
+58000100
+60014539
+7043f900
+704b5101
+20203e69
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c00b008e
+20207db3
+7043f901
+7042711b
+68034b4b
+6003452c
+20600000
+e8c18000
+6001839a
+c0098099
+c00d8098
+20600000
+202001df
+6800cbf8
+207a0000
+1fe0ffff
+6000cbf8
+c00080a0
+c00000a9
+20600000
+58000027
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20204bd6
+58000060
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20204bd6
+6800c46b
+c00900b5
+20204c2b
+680144f8
+6001446c
+6800c50b
+1fe27200
+d8c0450c
+20407ecd
+20204f81
+1a627e00
+c016f475
+c008747a
+c00a7334
+c00a80ec
+1fe1040f
+1fe17ef0
+c02872fd
+20600000
+68014bdf
+6001474a
+5800477f
+2040738e
+704b5101
+70475b01
+704b5221
+20404bc2
+20600000
+68008005
+1fe0fe01
+60008005
+20404b51
+204000d5
+7854fc00
+20600000
+6800cb52
+c01080da
+c01280e4
+c01300eb
+20600000
+5800001a
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20404bd6
+20600000
+704b5226
+7009bd02
+20404bd6
+6801470b
+79207e09
+6001470b
+20600000
+20600000
+58000000
+6003452c
+704bf802
+704b5100
+70421200
+7048c700
+7044b200
+7048c600
+7048c000
+20400106
+68014748
+6001474a
+6800c743
+c0807369
+2040006c
+70474600
+58000000
+60010286
+58000000
+60010288
+20207363
+704b6000
+58004b65
+60014b61
+60014b63
+20600000
+20200101
+78547c00
+6800cb60
+2fe1fe06
+20608000
+78347c00
+68014b63
+1fe20a00
+18420c00
+20407ecd
+6800cb60
+1fe0fe01
+6000cb60
+58004b63
+20200115
+1fe22200
+d8404bdd
+ea210000
+1fe0fe14
+98467c00
+2421011c
+58004b65
+e2210000
+20600000
+78547c00
+6800cb60
+207a0000
+78347c00
+6800cb60
+1fe0ffff
+6000cb60
+68014b61
+60014bdd
+58004b61
+20400115
+68014bdd
+20600000
+78547c00
+6800cb60
+207a0000
+78347c00
+68014b61
+20600000
+6800c7a9
+207a0000
+204073af
+24347d28
+20407d26
+78547c00
+68014bdf
+6001474a
+6800cb51
+c000006c
+204074de
+20210155
+680147b6
+600147c0
+7047c200
+18000e00
+680147b8
+1fe30400
+600947b8
+1fe17e01
+680947c0
+18412201
+18430400
+600947c0
+9a22fc00
+24428159
+6800c7a9
+6808c7c2
+18408401
+6008c7c2
+18420e00
+98e2fc00
+24228141
+680147b6
+600147b8
+20600000
+58000000
+600147b6
+600147b8
+20600000
+1a227e00
+203a0177
+18e27e00
+c000017d
+c0008184
+c001018b
+c0018192
+e8408000
+207a0000
+6000c7ba
+18408401
+600947bb
+680147bb
+efe88000
+18427200
+98408400
+600947bb
+1fe20400
+20400107
+6800c7ba
+1fe0ffff
+6000c7ba
+24228165
+20200171
+2040012b
+24740000
+78547c00
+7009bd12
+20404bd6
+2020735f
+18e27e00
+c0000199
+c00081a0
+c00101a7
+c00181ae
+20200160
+704b5e01
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5e02
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5d01
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5d02
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5e00
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5e00
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5d00
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+704b5d00
+d8c04b58
+df200007
+204001b5
+6000cb5f
+d8404b54
+20200160
+da200000
+e8c08000
+9a20a200
+c20001b6
+1a217eff
+20600000
+2040731f
+20407313
+202072fe
+6800c75a
+207a0000
+1fe0ffff
+6000c75a
+247a0000
+6800c756
+c0008065
+2020748a
+70808104
+68120078
+79207e07
+60120078
+70804301
+58004000
+60110054
+58004030
+60110056
+58001f00
+6011005a
+58001f10
+6011005c
+58004000
+60110058
+58001f00
+6011005e
+60110060
+580001a0
+60110052
+68110050
+793ffe0f
+60110050
+70806281
+20600000
+6803830b
+6003cbea
+704be702
+704be829
+704be908
+6811005e
+1fe21400
+df20000b
+d8c04be7
+2040633b
+2020631f
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+60120070
+20600000
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+6800cb51
+c0000211
+6800c280
+c2800209
+c280820d
+c2810211
+c2818215
+c2820219
+708956f0
+204039f5
+708955d8
+20600000
+708956df
+204039f5
+708955df
+20600000
+708956ff
+204039f5
+708955df
+20600000
+708956ce
+204039f5
+708955d8
+20600000
+708956cb
+204039f5
+708955d8
+20600000
+708956c0
+708955d8
+20600000
+20404985
+20400226
+20404a6d
+6800c132
+c0055d8e
+20600000
+203681f6
+20204994
+20308239
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+6800cb51
+c0000247
+6800c280
+c2800237
+c2808244
+c2810237
+c2818244
+c2820244
+708955d0
+708956e0
+18002a00
+7850fc00
+78507c00
+782f7c00
+70890200
+70890100
+70890000
+70890300
+70890470
+70890600
+20600000
+708955d0
+708956c0
+20200239
+708955d0
+708956c0
+20600000
+6800c218
+243a0250
+20403cd2
+20007530
+20007530
+20007530
+20403a5f
+70804205
+20000001
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
Index: ble fast connect receive/output/romcode.rom
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/romcode.rom	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/romcode.rom	(working copy)
@@ -0,0 +1,20480 @@
+20403bab
+70800608
+793f8025
+44804000
+6810813b
+6000c2b8
+204060e3
+20800000
+2455ff6b
+204039fc
+2040621d
+20403b3c
+204042ea
+793f8025
+4480c000
+20406607
+2040530c
+20407cef
+20403d4b
+2455e571
+793f8025
+44814000
+2055bd55
+204075e0
+2055bc29
+793f8025
+4481c000
+204076f7
+20407acf
+204075e3
+20404911
+793f8025
+44824000
+20403043
+20403d60
+2040309e
+2040333e
+204033b3
+20403029
+20403c53
+20203019
+2040302e
+c6848000
+793f8009
+20403260
+2020497d
+793f8025
+4482c000
+2040329f
+2422b038
+20403246
+1a208c01
+e8c08000
+c2804915
+c280b188
+2020341f
+793f8025
+44834000
+20403269
+1f227c00
+20628000
+20403246
+68008030
+c281b0e8
+68008031
+c280b188
+2020341f
+6800c271
+207a0000
+c000b053
+c0013058
+c001b05b
+c002b060
+c00db050
+20403297
+20628000
+2040329a
+20628000
+70427100
+20600000
+7003bf1b
+70427100
+20600000
+7920001c
+793f801e
+70008eff
+70008c1f
+2020304e
+793f801c
+18003600
+2020304e
+2040329a
+20628000
+18000401
+70016d05
+20203068
+793f8025
+4483c000
+68034273
+203a304e
+70470a01
+70005503
+20203067
+18000425
+793f8025
+44844001
+680080f0
+203a306f
+1fe9fe00
+1ff27e00
+1fe0ffff
+6000c146
+600080ef
+70008d1f
+793f800c
+2040327a
+2422b091
+20403b11
+60008077
+6008807c
+68034273
+60030040
+793f8025
+4484c001
+20407ee2
+18007e00
+2841fe01
+7d20fe05
+79207e03
+60008030
+7009bd03
+20407d86
+18007e00
+7920fe04
+6000804c
+58000000
+79207e01
+60008031
+7834fc00
+20403260
+7854fc00
+18000e04
+68014159
+20407ed4
+2020304e
+793f8025
+44854001
+68034273
+60030040
+2841fe01
+2020b098
+2020304e
+d8a00100
+df200008
+20407e91
+7009bd04
+20407d86
+2020304e
+c68e0000
+18000e02
+20407ee2
+7d3a001c
+243a30a4
+20600000
+793f8025
+4485c001
+6809415b
+18000e04
+2040379f
+20740000
+20403937
+18004800
+20618000
+793f800b
+793f8000
+1c40c201
+280ffe1e
+7920c802
+2c200400
+2420b0d0
+793f8025
+44864001
+68008012
+1fe0fe01
+60008012
+2040396e
+20403967
+2040398b
+20403aee
+20403af4
+20403b05
+204036c6
+204030c2
+202030ac
+793f8025
+4486c001
+6800808c
+1fe0ffff
+6000808c
+20610000
+70008c1f
+6800808e
+1fe0ffff
+6000808e
+20610000
+7940001e
+70008eff
+20600000
+793f8025
+44874001
+2040396e
+20403960
+2040398b
+20403afa
+20403a7f
+20403aa3
+202c30db
+204030c2
+202030af
+793f8025
+4487c001
+20403a50
+20403b0d
+20403584
+793f8001
+c6858000
+793f8025
+44884002
+68008013
+1fe0fe01
+60008013
+20600000
+793f8025
+4488c002
+7834fc00
+78387c00
+68014155
+203a30f1
+18000e0d
+20407ee2
+247a0000
+793f8025
+44894002
+68094157
+18000e28
+2040379f
+2034312f
+18000e04
+20407ee2
+243a3108
+6800804c
+c28230fd
+20203100
+d8a00100
+df200008
+20407e91
+793f8025
+4489c002
+70003000
+2040530d
+70470a00
+7009bd13
+20407d86
+2020312f
+793f8025
+448a4002
+18001600
+34730200
+680080f1
+1fe0ffff
+9c42fe00
+2fe00600
+2420b108
+18827e00
+60008180
+18004c00
+18004800
+793f8025
+448ac002
+2021b12f
+20403972
+d9600600
+34730200
+793f8025
+448b4002
+680200f1
+98004200
+1fe0fe01
+600200f1
+280ffe0c
+7920c802
+2c200400
+2420b145
+6800800c
+1fe0fe01
+6000800c
+20403967
+20403aee
+20403af4
+20403b05
+204036c6
+20403136
+20203115
+793f8025
+448bc002
+7854fc00
+68014155
+207a0000
+18000e0d
+20207ed4
+793f8025
+448c4003
+6800808d
+1fe0ffff
+6000808d
+20610000
+70008d1f
+680080ef
+1fe0ffff
+600080ef
+20610000
+7940000c
+6800c146
+600080ef
+20600000
+793f8025
+448cc003
+20403960
+20403afa
+20403a7f
+20403aa3
+202c314e
+20403136
+2020311b
+204036c6
+6800800d
+1fe0fe01
+6000800d
+18003600
+680200f1
+793f8025
+448d4003
+20403aec
+20403972
+1cc0cc01
+1c2143fd
+1c8149fc
+20403967
+20403aee
+20403af4
+20403b05
+1c427e00
+60020160
+18000800
+18000202
+20403b0d
+204037ee
+793f8025
+448dc003
+20403aea
+1c21c202
+1c8149fc
+20403960
+20403afa
+20403a7f
+20403aa3
+204c36c6
+202c3175
+68008010
+203a3115
+1fe0ffff
+60008010
+20203154
+793f8025
+448e4003
+6800800e
+1fe0fe01
+6000800e
+2040348d
+20403337
+202c3180
+204034b0
+243a317b
+20203115
+793f8025
+448ec003
+68008030
+793ffe03
+60008030
+20403499
+7854fc00
+20600000
+793f8025
+448f4003
+7834fc00
+78387c00
+2040321a
+20740000
+20403d42
+20403aec
+1c40c201
+20403979
+18004803
+204068dc
+204034e7
+20403967
+20403aee
+20403af4
+20403b05
+204037ec
+793f8025
+448fc003
+2040531f
+20403328
+2436b1a4
+20403b2c
+204037ac
+6800800f
+1fe0fe01
+6000800f
+793f8025
+44904004
+204068c0
+204031b0
+24748000
+20403775
+243a31ad
+7854fc00
+20600000
+204034e7
+2040331d
+2020319a
+2036b1b3
+20403b22
+202131c1
+204031cd
+243431c1
+6800804c
+c4020000
+c3818000
+6800804b
+c3818000
+204031d6
+247a0000
+6800816d
+1fe0ffff
+6000816d
+247a0000
+2020561d
+793f8025
+4490c004
+204034b8
+7854fc00
+6800804c
+c28231c8
+20600000
+6800804c
+c3818000
+d8a00100
+df200008
+20207e91
+793f8025
+44914004
+78347c00
+6800804b
+c4018000
+204031d6
+247a0000
+78547c00
+20600000
+68008072
+1fe0ffff
+60008072
+20600000
+793f8025
+4491c004
+68008030
+c283b1e4
+680088d9
+203a31e4
+7008d900
+7009bd18
+20407d86
+202031e4
+793f8025
+44924004
+20403294
+68008030
+79207e07
+60008030
+70425d01
+68008055
+c08b31ed
+20600000
+7008d901
+68008030
+793ffe07
+60008030
+20600000
+793f8025
+4492c004
+78547c00
+68008030
+c4008000
+68010032
+247a0000
+68020034
+203831fe
+9d067e00
+202031ff
+9c467e00
+1fe67c04
+24610000
+68008030
+793ffe01
+60008030
+78347c00
+20600000
+1fe20400
+793f8025
+44934004
+60020034
+7045f401
+68008030
+79207e01
+60008030
+18007e00
+60010032
+70007301
+70007400
+70008b00
+68020034
+1c420400
+98467e00
+1feb7e00
+1fe0fff8
+6000808a
+20600000
+793f8025
+4493c004
+204031f3
+24740000
+78547c00
+70001120
+793f800b
+20403aec
+2040332b
+c505b22f
+204034b0
+243a3221
+793f8025
+44944005
+78547c00
+1c427e00
+6002416a
+78387c00
+7834fc00
+7009bd2a
+20207d86
+793f8025
+4494c005
+20403aea
+20403320
+78587c00
+7854fc00
+204038a7
+2040348d
+793f8025
+44954005
+204034d9
+2036b23e
+204034b0
+243a3237
+20203226
+68008031
+793ffe01
+60008031
+20403b2c
+204038d1
+78347c00
+7009bd2b
+20207d86
+793f8025
+4495c005
+79200009
+1a227e00
+6001001e
+18007250
+d8a00362
+1a208c01
+e8c08000
+1a220c00
+c2807ecd
+d8a00030
+20407ecd
+78577c00
+68008077
+98000800
+70008a01
+2034b259
+70008a01
+68008030
+c4008000
+68008073
+6000808a
+68008074
+6000808b
+20600000
+793f8025
+44964005
+6801001e
+98000a00
+18007250
+d8c00362
+203b7ecd
+d8c00030
+20207ecd
+6800c281
+1fe27200
+68088015
+18408401
+2841fe03
+2420b270
+d8400000
+60088015
+184ffe50
+da204040
+9a20a200
+ea208000
+c280b278
+c3800000
+c3818000
+c200326c
+20600000
+793f8025
+4496c005
+da6032ad
+204032a2
+24628000
+1a227e00
+6001001e
+18007c00
+20600000
+204037a9
+2020b28b
+6801001e
+1fe08a17
+68008047
+e0a08000
+da6032ed
+202032a2
+68008047
+2feffe03
+2020b290
+18007c01
+20600000
+18007c00
+20600000
+da6032ea
+202032a2
+6809001e
+da603312
+202032a2
+6808c272
+da6032b8
+202032a2
+793f8025
+44974005
+680b4273
+da6032b1
+202032a2
+da6032be
+202032a2
+da603309
+793f8025
+4497c005
+da204040
+6800c281
+1fe27200
+ea208000
+1a627a00
+1a20a250
+c20032a7
+18007c01
+20600000
+c28032a9
+c281b2a9
+18007c00
+20600000
+c281b2b3
+c30032a9
+1a208c10
+e8c30000
+98467c00
+20628000
+202032a9
+c30032a9
+1a208c16
+e8c08000
+98467c00
+20628000
+202032a9
+c300b2a9
+204032f6
+204032da
+98467e00
+1fe0fe01
+202132d4
+18c22400
+600489c6
+6800c565
+243a32cc
+680489c6
+1a420c00
+1fe0fe05
+202032cf
+680489c6
+1a420c00
+1fe0fe14
+242132a9
+18424200
+20403302
+18007c00
+20600000
+98002400
+1a208c02
+e8c10000
+203a32d0
+20403302
+202032bf
+1ff11600
+196c9600
+2022b2e4
+29601e0f
+24608000
+18511600
+196c9600
+24628000
+7920041c
+20600000
+18511600
+196c9600
+29601e0f
+24608000
+79207e1c
+20600000
+c30032a9
+18007c00
+20600000
+c30032a9
+1a208c01
+e8c08000
+c28032a9
+1a208c17
+e8c08000
+c301b2a9
+18007c00
+20600000
+1a208c01
+e8c88000
+1c427e00
+284ffe01
+1a208c04
+e8ca0000
+20608000
+1a208c08
+e8c30000
+204038e5
+1d027e00
+20600000
+1a208c02
+1a208a04
+e8c10000
+98409600
+19627e00
+e0a20000
+202049dc
+c300b2a9
+204032f6
+9b60fe00
+9b60fe00
+98e0fe00
+98467c00
+242132a9
+18007c00
+20600000
+c30032a9
+18427e00
+9a267c00
+203f32a9
+1a208c01
+e8c08000
+c28032a9
+ea208000
+793ffe07
+e2208000
+202032a9
+793f8025
+44984006
+20403aec
+1c40c201
+20403979
+18004803
+20403967
+20403aee
+20403af4
+20403b05
+202037ec
+793f8025
+4498c006
+20403aea
+1c40c201
+20403979
+18004803
+20403960
+20403481
+20403a86
+20403afa
+20403a7f
+20403aa3
+246c0000
+20403a50
+20203582
+793f8025
+44994006
+68008180
+98000800
+18000201
+2040331d
+20203328
+6800c133
+c4000000
+18000e05
+20407ee2
+247a0000
+6809414d
+18000e04
+2040379f
+20740000
+2040334e
+18000e05
+6801414f
+242c7ed4
+180a7e00
+9ea17e00
+20207ed4
+793f8025
+4499c006
+70018000
+78587c00
+78577c00
+20403937
+1c4143fc
+18004801
+2040396e
+20403960
+7940001d
+68008006
+1fe0fe01
+60008006
+2040398b
+20403a7f
+20403aab
+246c0000
+793f8025
+449a4006
+18003600
+20403992
+68008007
+1fe0fe01
+60008007
+2040396e
+20403aea
+1c21c202
+18004801
+20403967
+2040398b
+20403aee
+20403aff
+1c427e00
+60020160
+20403b05
+18000202
+18000800
+20403b0d
+204037ee
+2040337a
+1c2143fd
+1cc0cc01
+20600000
+793f8025
+449ac006
+6800c171
+207a0000
+d8a001b1
+6800c5ae
+1fe27200
+1fe0fe01
+e0a08000
+18a20400
+1fe0fe01
+6001427e
+18420a00
+58000009
+e0a08000
+d8c045af
+20407ecd
+da604625
+df200004
+2040339d
+da60460f
+df200001
+2040339d
+1800020a
+70427d02
+580001b1
+6001016e
+20403aea
+20403967
+20403aee
+20403aff
+20403b05
+20403b0d
+204037ee
+20600000
+18a20400
+1a620c00
+e8c08000
+207a0000
+1fe3fe00
+c20033a1
+1fe22200
+1fe0fe02
+1fe20e00
+6801427e
+98e0fe00
+6001427e
+18420a00
+1a227e00
+1fe0fe01
+e0a08000
+1a620c00
+e8c08000
+e8c08000
+e0a08000
+1a227200
+20207ecd
+6800c133
+c4008000
+18000e06
+20407ee2
+247a0000
+68094151
+18000e28
+2040379f
+20740000
+18000800
+70001008
+793f800b
+204033c3
+18000e06
+68014153
+20207ed4
+793f8025
+449b4006
+78587c00
+20403937
+68008008
+1fe0fe01
+60008008
+18004c00
+20403979
+1c40c201
+18004802
+793f8025
+449bc006
+20403960
+20403a7f
+20403aab
+246c0000
+20403992
+68008009
+1fe0fe01
+60008009
+18003600
+20403aea
+1c21c202
+18004801
+20403967
+20403aee
+20403aff
+20403b05
+204036c6
+18000800
+d9600600
+35330200
+1d01d003
+1c2143fd
+793f8025
+449c4007
+1cc0cc01
+20403960
+20403a7f
+20403a9d
+242c33f0
+20403b0d
+20403584
+c505b3f8
+793f8025
+449cc007
+68008010
+207a0000
+1fe0ffff
+60008010
+20403aec
+202033e6
+793f8025
+449d4007
+793fd001
+79205000
+6800800a
+1fe0fe01
+6000800a
+20403aea
+1c21c202
+20403967
+20403aee
+20403aff
+20403b05
+204036c6
+2d000603
+2020b40a
+37cb8200
+20203406
+68020164
+1fe1fe03
+1fe25000
+793f8025
+449dc007
+68030177
+60030040
+2040348d
+204034d9
+2036b417
+204034b0
+243a3412
+20600000
+793f8025
+449e4007
+20403499
+2040327a
+24628000
+70003100
+204038d1
+20203260
+793f8025
+449ec007
+204038e1
+20403447
+20740000
+793f8025
+449f4007
+20403d42
+204068c0
+20403579
+2436b434
+20403b2c
+204068dc
+204034e7
+204037de
+204037ac
+2040531f
+6800800b
+1fe0fe01
+6000800b
+204038d1
+793f8025
+449fc007
+20403ca0
+20403b22
+2021343e
+204031cd
+2434343e
+20403775
+243a3424
+20600000
+793f8025
+44a04008
+70015000
+70017e00
+204034b8
+793f8011
+20407f80
+68008030
+20600000
+793f8025
+44a0c008
+204031f3
+24740000
+18820400
+20403b11
+60008180
+18420800
+70001120
+793f8025
+44a14008
+20403aec
+18000202
+204037d5
+1c427e00
+60020160
+204037ec
+20403aea
+7837fc00
+2040355a
+202c3463
+20403992
+204034b0
+243a3450
+c6820000
+70007c34
+79200003
+20600000
+78387c00
+2040348d
+20403937
+793f8025
+44a1c008
+20403337
+202c3470
+204034b0
+243a3466
+78587c00
+1d027e00
+6002416a
+20600000
+7834fc00
+c5823476
+793f8004
+70007c03
+70007d33
+20405903
+18827e00
+60008077
+18007e00
+60030038
+68008031
+79207e01
+60008031
+20403b2c
+7854fc00
+78347c00
+20600000
+793f8025
+44a24008
+7856fc00
+793f8005
+793f800a
+793f8010
+793f800f
+68008047
+793ffe05
+79207e04
+60008047
+20600000
+793f8025
+44a2c008
+70001120
+70004750
+6801415f
+6001003e
+1c427e00
+6002416a
+20780000
+1d027e00
+6002416a
+20600000
+793f8025
+44a34008
+2040531b
+204034b4
+60008046
+58000000
+60010286
+58001c80
+60010051
+68008030
+79207e00
+60008030
+70004b00
+70004c00
+70009f00
+20203b2c
+793f8025
+44a3c008
+18007e00
+60044261
+e0a40000
+204031ef
+20203294
+68008011
+1fe0ffff
+60008011
+20600000
+6800c16f
+1fe0fe01
+6000c16f
+20600000
+793f8025
+44a44009
+6800c271
+c001b4be
+68008048
+c080b4c2
+20403f9d
+2422b4c2
+204031ca
+70427100
+793f8025
+44a4c009
+20403e12
+2040376a
+7009bd02
+20407d86
+2040530d
+204042eb
+204075f4
+68008030
+793ffe00
+60008030
+70470a00
+6800804c
+2fe18000
+2020b4d3
+793f8001
+68008047
+c301b4d5
+6800804b
+c4030000
+793f8002
+20600000
+793f8025
+44a54009
+68008173
+207a0000
+1fe20800
+20403579
+24768000
+18000200
+204037de
+18827e00
+60008077
+18007e00
+60008173
+20600000
+793f8025
+44a5c009
+68008030
+c30134f5
+18000207
+c583b4f4
+204037a9
+2420b4f5
+203734f5
+20403523
+58000002
+60014168
+20600000
+24770000
+793f8025
+44a64009
+20403283
+2422b508
+68008047
+c301b511
+c502b515
+6800817e
+c283351c
+68014168
+1fe0ffff
+60014168
+203a3505
+6800c165
+98000200
+20600000
+793f8025
+44a6c009
+20403703
+204037a9
+2020b511
+20405621
+20343520
+6800804b
+c2833522
+c502b515
+6800817e
+c283351c
+18000201
+20748000
+18000200
+20600000
+793f8025
+44a74009
+68008019
+98000200
+c1808000
+18000200
+20600000
+68008157
+1fe1020f
+79200005
+20600000
+18000213
+20203523
+2040352d
+793f8025
+44a7c009
+68088047
+79200403
+60088047
+18227e00
+6000c165
+5800ffff
+60014168
+20600000
+793f8025
+44a8400a
+6800804c
+2feffe05
+6801427e
+2020b544
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c1b
+20610000
+1800020a
+1fe67c79
+20610000
+1800020b
+1fe67cb7
+20610000
+1800020e
+1fe67ce0
+20610000
+1800020f
+20600000
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c36
+20610000
+1800020a
+d840016f
+98467c00
+24610000
+1800020e
+d84002a7
+98467c00
+24610000
+1800020f
+20600000
+68008030
+c300b559
+68010032
+203a3559
+2437355b
+20403aec
+1d00c201
+78287c00
+6801003e
+1fe37e00
+d8400500
+9840fe00
+20403abd
+20403982
+18004803
+20403960
+20403481
+20403a86
+793f8025
+44a8c00a
+6801003e
+1fe37e00
+20403abd
+20403a7f
+7826fc00
+6801003e
+d84003bb
+9840b600
+37c18400
+1b420400
+600b0099
+7846fc00
+246c0000
+dd2003bb
+1c225000
+2035bbed
+20600000
+793f8025
+44a9400a
+20403554
+242c3992
+20403a50
+c588b582
+680100f5
+1fe0fe01
+600100f5
+1c230400
+18419c40
+793f8025
+44a9c00a
+7823fc00
+78257c00
+7825fc00
+09800003
+198cfe00
+6000815c
+09800004
+08008007
+19827e00
+60008019
+09800003
+198cfe00
+6000815d
+68008019
+1fe67c03
+2021359a
+c003b59a
+6800804c
+2feffe05
+7920aa01
+793f8025
+44aa400a
+09800008
+7845fc00
+78457c00
+202336a8
+c588b5a4
+680100f7
+1fe0fe01
+600100f7
+793f8025
+44aac00a
+6800815c
+2fe00e00
+7920800a
+2020b5b5
+a8800e00
+2020b5b4
+c583b6c6
+680880af
+a8400e00
+2420b6c6
+68008047
+793ffe05
+79207e04
+60008047
+7836fc00
+793f8025
+44ab400a
+68008019
+1fe20200
+c50535c5
+6808815d
+68008047
+793ffe00
+284ffe00
+7920fe00
+284ffe01
+7920fe01
+60008047
+284c0001
+2020b5c5
+20403703
+793f8025
+44abc00a
+d8400000
+20403ab4
+18217e0f
+c000b5f4
+c00036c6
+c00136d3
+6808815d
+68008047
+a8400800
+2420b5d4
+c58535d3
+c303b5d4
+7920000f
+793f8025
+44ac400b
+18227e00
+c001b5f6
+c00235fa
+c003b5e4
+c00435f9
+d8400004
+20403ab4
+c00535f5
+c005b5f8
+d8400008
+20403ab4
+c00735f5
+c007b5f8
+20600000
+793f8025
+44acc00b
+7826fc00
+7824fc00
+78277c00
+d8a000d0
+1800721e
+09800008
+19897e00
+e0a08000
+c20035eb
+c583b6c6
+09800010
+7d230008
+202336b5
+20203696
+202036c6
+79200010
+78267c00
+202035fb
+79200010
+79202a02
+7826fc00
+793f8025
+44ad400b
+c500b6c6
+2aac0001
+2020b608
+7843fc00
+7826fc00
+78467c00
+1c409602
+34530400
+242c36b5
+79200010
+7823fc00
+793f8025
+44adc00b
+78277c00
+7824fc00
+09800003
+198cfe00
+6000817f
+09800005
+c5083614
+19897200
+1f297200
+20203617
+09800005
+19837200
+09800003
+793f8025
+44ae400b
+1f227e00
+6001015e
+203a365b
+9ea67c00
+202136b5
+793f8025
+44aec00b
+793f8000
+6800817f
+1fe17e03
+d8a00475
+c001b62b
+c508b657
+6800817f
+1fe17e03
+c0013630
+c000b645
+202036b5
+6801015e
+1fe67c70
+242136b5
+c507b696
+20203657
+793f8025
+44af400b
+c507b696
+6801015e
+d84002e0
+98467c00
+202136b5
+6800828c
+c300363b
+c300b640
+202036c6
+70028a01
+68010286
+c08036c6
+d8a01000
+20203657
+70028a02
+68010288
+c08036c6
+d8a01400
+20203657
+793f8025
+44afc00b
+c507b696
+6801015e
+d84002e0
+98467c00
+202136b5
+6800828a
+c000b650
+c0013654
+202036c6
+d8a01000
+68010286
+98a08a00
+20203657
+d8a01400
+68010288
+98a08a00
+09800008
+19897e00
+e0a08000
+c2003657
+793f8025
+44b0400c
+09800010
+202336af
+6800c3f3
+c000b6c6
+c508b682
+c507b6c3
+6800817f
+2fe00603
+2020b682
+6801015e
+203a3682
+793f8025
+44b0c00c
+6800828a
+c000b66e
+c0013678
+20203b31
+68010286
+6809015e
+9840fe00
+60010286
+c0003b31
+68091000
+18408404
+98467c00
+2042b7cd
+20203682
+68010288
+6809015e
+9840fe00
+60010288
+c0003b31
+68091400
+18408404
+98467c00
+2042b7d1
+20203682
+793f8025
+44b1400c
+6808804c
+6800817f
+2fe00603
+79208406
+7d208407
+6008804c
+2420b68c
+79200001
+c588b696
+284ffe06
+2020b696
+680100f9
+1fe0fe01
+600100f9
+79200005
+793f8407
+793f8001
+6008804c
+793f8025
+44b1c00c
+6808815d
+68008047
+79207e05
+284ffe02
+7920fe02
+280ffe0a
+7920fe07
+60008047
+6801015e
+243a36c6
+6800804c
+793ffe07
+6000804c
+6800817f
+2fe00e01
+202036c6
+793f8025
+44b2400c
+7856fc00
+6801001a
+1fe0fe01
+6001001a
+202036c6
+6801001c
+1fe0fe01
+6001001c
+204036b6
+c588b6b5
+79200005
+202036c6
+793f8025
+44b2c00c
+6800817f
+2fe00603
+2420b6bf
+6808804c
+793f8406
+6008804c
+20600000
+6808804c
+793f8407
+6008804c
+20203eca
+68008047
+79207e05
+60008047
+793f8025
+44b3400c
+784efc00
+784e7c00
+7846fc00
+78467c00
+7844fc00
+78477c00
+7843fc00
+2030b992
+37d38200
+20000064
+20203992
+793f8025
+44b3c00c
+7824fc00
+78267c00
+09800048
+2feffe3a
+79208000
+1c020400
+57e04000
+57e03c00
+782afc00
+380bffff
+380cffff
+20000020
+29a80000
+1d827e00
+60018177
+1da27e00
+6000817a
+18424000
+2020b6e9
+202036b5
+793f8025
+44b4400d
+09800048
+57e03e00
+57e00800
+57e05c00
+57e02400
+18007e00
+09800010
+202336b5
+5ffffffc
+9a417e00
+60020164
+1ba27e00
+60018174
+1b827e00
+60008172
+18827e00
+60008173
+1dc27e00
+6001017b
+1c227e00
+08008220
+28201e02
+7920800b
+202036c6
+793f8025
+44b4c00d
+68008047
+c4018000
+793ffe03
+79407e06
+60008047
+6800c165
+c009b719
+c1038000
+6800804b
+c4030000
+793ffe06
+79207e07
+6000804b
+793f8002
+680142d6
+247a0000
+6800804b
+793ffe07
+6000804b
+202047fb
+793f8025
+44b5400d
+680083dd
+1fe37e00
+c008b736
+c009373f
+c00c376a
+c03fb726
+c1818000
+680083de
+c015b72e
+c008b729
+20600000
+680083de
+79207e07
+20600000
+20748000
+68008030
+c3820000
+70007c31
+20600000
+20748000
+68008031
+2feffe04
+2020b733
+20600000
+793ffe04
+60008031
+20600000
+793f8025
+44b5c00d
+6800804c
+79207e02
+6000804c
+70801101
+68008030
+2feffe04
+20600000
+793f8025
+44b6400d
+6800804c
+793ffe02
+6000804c
+70801100
+20600000
+793f8025
+44b6c00d
+1c427e00
+600242b1
+1c40a203
+2034b74d
+1d00a203
+68090032
+1a227e00
+793ffe1b
+9846fc00
+68010075
+20407f53
+18072600
+9a667e00
+20213757
+9840fe00
+9a20fe00
+60020034
+7045f400
+68008030
+79207e01
+60008030
+68008073
+6000808a
+58000000
+6001c209
+6001c20c
+6000c1f9
+7009bd0b
+20407d86
+68014161
+6001003e
+24748000
+18808fff
+20600000
+793f8025
+44b7400d
+68008030
+c4008000
+793ffe01
+60008030
+6801415f
+6001003e
+7855fc00
+7009bd0c
+20207d86
+793f8025
+44b7c00d
+78377c00
+68008030
+c280b783
+c6088000
+68008047
+c3818000
+68008048
+247a0000
+6800804b
+c3830000
+18007e00
+20600000
+c3013792
+6800808a
+c0013789
+68008047
+c281b79b
+c584379b
+2434b79b
+68008048
+243a379b
+680080ee
+1fe0ffff
+600080ee
+243a3781
+7000ee10
+2020379b
+6800808a
+c080b79b
+6800808b
+203a379b
+1fe0ffff
+6000808b
+68008047
+c3818000
+24768000
+6800808a
+1fe0ffff
+6000808a
+20600000
+793f8025
+44b8400e
+78487c00
+18423600
+204032a1
+78547c00
+24628000
+18003600
+78347c00
+20600000
+6800c1f8
+a881fe00
+20600000
+793f8025
+44b8c00e
+793f8001
+70029300
+6800828c
+207a0000
+2feffe00
+d8c01000
+2040c2fa
+793f8025
+44b9400e
+68008293
+c000b7c1
+70029300
+6800828c
+c4008000
+d8c01400
+204042fa
+68008293
+c000b7c7
+20600000
+6800828c
+793ffe00
+6000828c
+58000000
+60010286
+20600000
+6800828c
+793ffe01
+6000828c
+58000000
+60010288
+20600000
+6800828c
+79207e00
+6000828c
+20600000
+6800828c
+79207e01
+6000828c
+20600000
+793f8025
+44b9c00e
+1d00c201
+20403982
+18004803
+20403967
+20403aee
+20403aff
+20203b05
+793f8025
+44ba400e
+20403aea
+1d027e00
+680a416a
+98467e00
+c1808000
+28203e00
+2420b7e9
+68008019
+207a0000
+204037d5
+28203e10
+2020b6c6
+1c230400
+18419c40
+793f8025
+44bac00e
+7823fc00
+78257c00
+782dfc00
+793f8010
+18827e00
+08008603
+18227e00
+08008604
+68008047
+08008004
+08008603
+78247c00
+08008608
+784dfc00
+78447c00
+78457c00
+793faa02
+d8400000
+20403ab4
+793f8025
+44bb400e
+18217e1f
+c009b840
+c00036c6
+c000b6c6
+c0013822
+c001b852
+c0023858
+c003b816
+c0043857
+d8400004
+20403ab4
+c0053854
+c005b85a
+d8400008
+20403ab4
+c007b85a
+20203854
+793f8025
+44bbc00e
+782efc00
+7824fc00
+78277c00
+1800721e
+d8c000b2
+e8c08000
+08008608
+c200381d
+c503b885
+202036c6
+793f8025
+44bc400f
+68008180
+1fe20800
+6800808f
+1fe23800
+6801c14a
+1fe23a00
+68014144
+1fe25c00
+7824fc00
+782e7c00
+1c022200
+20403979
+782afc00
+20000020
+1c221600
+68020160
+1fe24200
+53c07e00
+79207e3a
+08008648
+53e07e00
+08008648
+19624200
+1a224000
+78247c00
+08008610
+78447c00
+202036c6
+793f8025
+44bcc00f
+78277c00
+7824fc00
+782e7c00
+680083dc
+1fe105f8
+d8c003dc
+18408408
+1840a7b8
+2421384f
+e8c48000
+08008648
+1a620400
+20203849
+e8c48000
+08418600
+20203885
+782e7c00
+2020385d
+782e7c00
+79200010
+2020385d
+79202a02
+782efc00
+2020385d
+79202a02
+782efc00
+79200010
+793f8025
+44bd400f
+6800804c
+c302b873
+18267c03
+20213873
+78477c00
+784e7c00
+782efc00
+7843fc00
+79202a01
+2aaffe02
+2020b86d
+580abeee
+08008614
+20203871
+585faeba
+08008618
+58000012
+08008606
+7823fc00
+79200010
+78277c00
+7824fc00
+c502b88e
+6800c27d
+08008603
+6801427e
+98007200
+c508387d
+08008605
+2020387e
+0800860d
+1f227e00
+203a3885
+6801016e
+98000c00
+e8c08000
+08008608
+c2003882
+78247c00
+08008610
+78447c00
+20403523
+6800804c
+c302b6c6
+18007e00
+08008606
+202036c6
+793f8025
+44bdc00f
+c5083897
+6800817f
+08008603
+6800815e
+98002600
+08008605
+2020389c
+6800817f
+08008603
+6801015e
+98002600
+0800860d
+d8c00475
+1a627c00
+2022b8a3
+e8c08000
+08008608
+1a60a7ff
+2020389d
+680100fb
+1fe0fe01
+600100fb
+20203885
+68020164
+1fe0a207
+68010170
+243a38ad
+1a20a3fd
+202038b5
+1feffe0c
+68190040
+18408401
+98467e00
+242138b4
+1a20a3ff
+202038b0
+1fe67e00
+37d18200
+2c400600
+2420b8b5
+98005200
+1a225000
+98005200
+20600000
+793f8025
+44be400f
+37d10200
+1b427e00
+98000c00
+1ff17e00
+9c467200
+1f217203
+2422b8c7
+18007e00
+202038cb
+d8400ea6
+18007e00
+9840fe00
+c20038c9
+98c0fe00
+1fe6fc0c
+20407f53
+1807fe00
+60010170
+20600000
+793f8025
+44bec00f
+1b427e00
+1b220400
+98467c00
+7d217e2c
+98460400
+58000ea6
+284c000f
+2020b8dd
+5fff0ea6
+98408400
+600b036a
+207b0000
+600b0038
+20600000
+78587c00
+6803036a
+203b38e5
+68030038
+9b20e000
+1e00e00a
+58000ea6
+9e067e00
+2fec000f
+2020b8ef
+5800f15a
+9e00e000
+1e023400
+20600000
+18007c00
+202038ed
+793f8025
+44bf400f
+204039b1
+1c227e00
+1fe17f80
+2c800e03
+2420b8fb
+1fe97e00
+9ae0fe00
+202038fc
+1ae27e00
+1fe6fc4f
+782afc00
+20407f53
+18072200
+1a2085d8
+20213904
+1a238400
+20203906
+18438400
+18408401
+793f8025
+44bfc00f
+68008031
+c301b918
+68024172
+9c267c00
+20213918
+20403937
+6800c179
+207a0000
+68008031
+79207e02
+60008031
+6802c187
+6002c17a
+e8c28000
+6002c17f
+2040393c
+68008031
+c4010000
+2c2ffe01
+2020b934
+18492200
+18410e07
+5800417a
+9a20a200
+ea208000
+afec0000
+2020b925
+18427e00
+20203931
+6800c184
+98002400
+1c227e00
+1fe17f80
+1fe97e00
+9ae0fe00
+9a46fc00
+58004192
+20407f53
+18072200
+9a208c00
+e8c08000
+6000c185
+98000400
+20600000
+6800c185
+98000400
+20600000
+68008031
+793ffe02
+793ffe03
+60008031
+20600000
+793f8025
+44c04010
+d8a04192
+1800720a
+20407e91
+d8a04192
+18002600
+18000e02
+6802c17a
+98000400
+28e1fe02
+2020b949
+18430400
+284c0000
+2020b94d
+1a627e00
+e0a08000
+184b0400
+1a60a602
+2a61fc28
+2420b956
+6802c17f
+98000400
+28e1fe02
+2020b956
+18430400
+1a667c4e
+20213949
+18002601
+18e08fff
+2422b944
+da204192
+18a27e00
+9a267e00
+6000c184
+20600000
+793f8025
+44c0c010
+204038f1
+6800817e
+c302b966
+680883f2
+202039b9
+793f8025
+44c14010
+204038f1
+6800817e
+c302396d
+680883f1
+202039c9
+18005a00
+6801c147
+98005800
+20600000
+793f8025
+44c1c010
+6800c276
+1fe25a00
+6801c273
+1fe25800
+20600000
+793f8025
+44c24010
+68014144
+1fe25c00
+6800c143
+1fe25a00
+6801c140
+1fe25800
+20600000
+793f8025
+44c2c010
+68010044
+1fe25c00
+68008043
+1fe25a00
+68018040
+1fe25800
+20600000
+c510398e
+c68e8000
+c68f8000
+1d815900
+782afc00
+20000020
+20600000
+793f8025
+44c34010
+2030b9a3
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+6800c280
+c28039a1
+c280b9ae
+c28139a1
+c281b9ae
+c28239ae
+708955d0
+708956e0
+18002a00
+7850fc00
+78507c00
+782f7c00
+70890200
+70890100
+70890000
+70890300
+70890470
+70890600
+20600000
+708955d0
+708956c0
+202039a3
+793f8025
+44c3c010
+70890200
+70890100
+70890018
+708903a7
+7089047f
+20600000
+793f8025
+44c44011
+60088017
+1840a204
+70896d07
+20203a13
+793f8025
+44c4c011
+708901cf
+2000000a
+708900ff
+708903af
+708904ff
+2000000a
+708902a0
+20600000
+793f8025
+44c54011
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+6800c280
+c28039e1
+c280b9e5
+c28139e9
+c281b9ed
+c28239f1
+708956f0
+204039f5
+708955d8
+20600000
+708956df
+204039f5
+708955df
+20600000
+708956ff
+204039f5
+708955df
+20600000
+708956ce
+204039f5
+708955d8
+20600000
+708956cb
+204039f5
+708955d8
+20600000
+20000004
+708955d1
+20000004
+708955d2
+20000004
+708955d4
+20600000
+70804206
+20403b64
+68014163
+c30739fe
+98000c00
+d8408900
+e8c08000
+c07fba08
+98418a00
+e8c08000
+e0a08000
+20203a02
+793f8025
+44c5c011
+20403cd2
+20403a5f
+580007d0
+9c40fe00
+60020168
+79202a03
+18002a00
+2455ba2b
+20203a3f
+793f8025
+44c64011
+58000960
+9a208400
+6800c15d
+70895f04
+984ffe00
+6808c15e
+9846fc00
+20407f53
+1807a200
+18077e00
+1ff07e00
+1ff27e00
+9846fc00
+20407f53
+1807fe00
+1fed7e00
+1fe3fe00
+9a21fe00
+60120960
+70895f44
+70895fc4
+20600000
+793f8025
+44c6c011
+70890602
+5803d090
+20403b35
+7089007f
+20000082
+70895230
+708901d0
+70895270
+708952f0
+18007232
+68108980
+c282ba3a
+c2003a37
+6000c16e
+70890100
+70890000
+70890600
+20600000
+793f8025
+44c74011
+6800c16e
+79207e05
+60108952
+68188950
+18410407
+1fe9fe00
+9841fe00
+60108950
+68108951
+793ffe00
+60108951
+68108952
+793ffe05
+60108952
+20600000
+793f8025
+44c7c011
+68110981
+1ff1fe00
+1fe97e00
+1fe67e00
+1fe17eff
+1fe6fc0a
+20407f53
+1807fe00
+1ff27e00
+18070400
+9841fe00
+60008018
+20600000
+70804206
+6810896b
+793ffe04
+793ffe05
+6010896b
+70890500
+70890400
+70890470
+708905ff
+6810896b
+79207e04
+79207e05
+6010896b
+20403a7d
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
+58000f0f
+20203ceb
+5800080f
+20203ceb
+793f8025
+44c84012
+204039bf
+78507c00
+7830fc00
+782b7c00
+20600000
+793f8025
+44c8c012
+6800804c
+2feffe02
+7920fe00
+60108011
+d8c00062
+e8c48000
+98006400
+e8c38000
+98006600
+68008054
+1fe0e9ff
+782d7c00
+20600000
+1b427e00
+60030099
+7846fc00
+242c3992
+dd2003bb
+1d00d001
+1d0151fc
+20600000
+7826fc00
+37cb8400
+202c3a95
+2d000402
+2420ba9e
+20203a95
+793f8025
+44c94012
+d9600600
+7826fc00
+34730400
+7846fc00
+242c3992
+20600000
+793f8025
+44c9c012
+7826fc00
+37c18400
+7846fc00
+242c3992
+dd2003bb
+1d0151fc
+20600000
+793f8025
+44ca4012
+98002200
+1c227e00
+98409600
+19627e00
+6002416a
+1a227e00
+20600000
+1fe20400
+793f8025
+44cac012
+18427e00
+20407f1d
+1c307e00
+79207e2c
+20407f06
+793ffe2c
+20403b1a
+20407f06
+20740000
+20407f10
+98003600
+37c18200
+20600000
+793f8025
+44cb4012
+20383ad3
+35330200
+1d020400
+20203ad6
+20373ad5
+34730200
+1c420400
+20343ae3
+28400601
+2420bacd
+793f8025
+44cbc012
+68008030
+c4000000
+6802416a
+98467e00
+24610000
+1fe67cff
+20213acd
+20600000
+28400603
+2420bacd
+20203ad9
+793f8025
+44cc4013
+d9600600
+20203acd
+78547c00
+20203ae6
+78347c00
+20203ae6
+793f8025
+44ccc013
+20403a86
+7850fc00
+78307c00
+20600000
+793f8025
+44cd4013
+d9600e43
+34730200
+782b7c00
+20600000
+793f8025
+44cdc013
+d9600d00
+34730200
+20600000
+793f8025
+44ce4013
+d9600e43
+35330200
+782b7c00
+20600000
+793f8025
+44cec013
+51207e00
+782efc00
+79202a00
+08008648
+784efc00
+20600000
+1ca20400
+18418460
+18421c00
+20600000
+793f8025
+44cf4013
+6800c130
+1fe0fe01
+c083bb17
+18007e01
+6000c130
+98000800
+20600000
+1b220400
+20748000
+1b420400
+20600000
+1c427e00
+20748000
+1d027e00
+20600000
+793f8025
+44cfc013
+680a004d
+20403b1e
+98461600
+19627e00
+68090051
+18438400
+98467e00
+20600000
+793f8025
+44d04014
+20403b1e
+6002004d
+20600000
+793f8025
+44d0c014
+20600000
+20203b34
+207a0000
+1fe37e00
+1fe0fffd
+1fe0ffff
+2422bb38
+18007e00
+20600000
+df200010
+d8a00000
+20407e91
+d8a00362
+df20000a
+20407e91
+7008d600
+7009bd00
+7003b000
+70017e00
+7003f700
+793f8025
+44d14014
+70016c00
+70015000
+70015b00
+589e8b33
+6001c147
+58000153
+60010083
+7000851e
+70008601
+70008807
+5812e904
+60018080
+70008f60
+70417005
+70001402
+6800c6e2
+245a71ea
+6800c563
+245a7241
+793f8025
+44d1c014
+20758000
+58000000
+6001427e
+1c437e00
+60024134
+20600000
+7089091f
+70891245
+70895300
+70896f88
+70897330
+708956c9
+708907ff
+70890801
+70890af8
+70890bff
+70891afb
+70891bfb
+70891cfb
+70891df6
+70891ef2
+70891fee
+708920ea
+708921e6
+708922e2
+708923de
+708924da
+708925d6
+708926d2
+708927ce
+708928ca
+708929c6
+70892ac2
+70892bbd
+70892cb9
+70892db5
+70892eb1
+70892fad
+708930a9
+70893180
+70893280
+70893380
+708934c0
+708935c1
+708936c2
+708937c3
+708938c4
+708939c5
+70893ac6
+70893bc7
+70893c06
+70893d07
+70893e46
+70893f85
+70894086
+70894187
+708942c6
+708943c7
+708944d6
+708945d7
+708946e6
+708947f5
+70894800
+708949f8
+70894a7f
+70894cfb
+70894def
+70894eec
+70894f5e
+7089574c
+7089586c
+70895950
+708968e4
+70896900
+70896a00
+70896b30
+20600000
+5800ee21
+60110050
+6810813e
+c301e13b
+7835fc00
+c303bbb6
+7855fc00
+1ce27e00
+243a3bb6
+d85fffff
+20203c24
+6811813c
+6011804c
+e8c08000
+1fe1feef
+e0a08000
+20403cf6
+6810804f
+79207e04
+6010804f
+20403cf6
+2055bbc7
+6810804e
+793ffe03
+6010804e
+20403cf6
+20758000
+2020613b
+6800c238
+60108086
+6801c22d
+60118080
+68024221
+60120074
+6802421d
+60120070
+68044225
+60140078
+68044230
+98000000
+68140140
+600400a0
+2040619f
+20600000
+18027e00
+60044230
+68140070
+6004421d
+e8c40000
+e0a40000
+68118080
+6001c22d
+68108086
+6000c238
+20203cfc
+681080b4
+243a3be8
+6801c20f
+247a0000
+7080b4c0
+70800680
+6810812d
+c4008000
+68118149
+6001c20f
+20600000
+793f8025
+44d24014
+1b427e00
+20407f04
+680a41ff
+18467cff
+20610000
+1fed7e00
+1ff27e00
+9846fc00
+20407f53
+1807fe00
+d84000c8
+20407f5e
+60008098
+24343bfe
+1fe67e00
+6809c20f
+9840fe00
+6001c20f
+58000000
+600241ff
+20600000
+793f8025
+44d2c014
+20403cfc
+68120138
+793ffe0f
+6012004c
+20403cf4
+d85fffff
+6800c1f7
+6000c21c
+6800c21a
+79207e07
+6000c21a
+793f8025
+44d34014
+20403a7b
+680241ff
+9840fe00
+600241ff
+20403bd7
+6802c218
+6012004c
+1fef2200
+37d98200
+1b227e00
+60034203
+70800502
+37d98200
+37d98200
+1a227e00
+6010804f
+70800502
+37d98200
+37d98200
+601a004c
+70800510
+37df8200
+793f8025
+44d3c014
+58000000
+1ce27c00
+2022bc35
+6810813c
+6818813d
+98467c00
+20213c33
+18427e00
+9ce67e00
+1fe0fe01
+1fe0fe08
+37d98200
+9e20fe00
+680a41fb
+9840fe00
+6809c20f
+984ffe00
+1fecfe00
+1ff1fe00
+1fe0fe6e
+d8400ea6
+9846fc00
+20407f53
+1807fe00
+1ff07e00
+18070400
+9841fe00
+680b4203
+20407ef9
+18423200
+68034048
+204038e5
+1b427e00
+600309be
+1ce27e00
+e0a08000
+6810811d
+1fe1fef0
+e0a08000
+20600000
+793f8025
+44d44015
+20403be2
+6801c20f
+207a0000
+6800c131
+207a0000
+6800c6e2
+203a3c5e
+6800c639
+207a0000
+6800c565
+247a0000
+20403d0e
+247a0000
+6800c040
+2fe00e03
+2420bc8a
+68014042
+207a0000
+20758000
+793f8025
+44d4c015
+6808809f
+68014042
+984ffe00
+18518400
+184b0400
+98467e00
+680a4044
+9840fe00
+6808c1f6
+98467e00
+1ff06000
+793f8025
+44d54015
+6801404e
+1fe37e00
+20407f1d
+1e027e00
+20407f06
+1b420400
+20407f04
+20740000
+20407f16
+793f8025
+44d5c015
+6800c218
+98467c00
+20213c01
+600a41fb
+20403d9f
+204048a5
+680a41fb
+20203c11
+793f8025
+44d64015
+6800c040
+c3800000
+c3818000
+6800c6e2
+203a3c93
+6800c639
+207a0000
+793f8025
+44d6c015
+6800c3ff
+243a3c99
+6800c133
+207a0000
+680141f4
+207a0000
+6808c1f6
+98467e00
+d8401d4c
+984ffe00
+20203c7f
+793f8025
+44d74015
+7855fc00
+68008030
+c4008000
+2436bcbc
+20403cb7
+68014161
+6001003e
+68008047
+c281bccb
+c586bccb
+20404816
+243a3ccb
+680142a4
+20407f69
+70009f00
+c586bccb
+6800c214
+203a3ccf
+1fe0ffff
+6000c214
+20600000
+7041f900
+6801c209
+1fe0fe01
+6001c209
+20600000
+793f8025
+44d7c015
+68094161
+18430400
+6801003e
+9840fe00
+6001003e
+70009f00
+6801c20c
+1fe0fe01
+6001c20c
+6800c1f9
+1fe0fe01
+6000c1f9
+20600000
+70009f00
+6800c213
+6000c214
+20600000
+6808c212
+6008809f
+20600000
+793f8025
+44d84016
+6800c218
+247a0000
+70804206
+58000f0c
+20403ceb
+58030d40
+20403b35
+37d98200
+1e226000
+20403a7b
+70804204
+2000000a
+37d98200
+1e227e00
+9e067e00
+1fe0fe30
+d84000ff
+20407f5e
+6000c218
+20007530
+20007530
+20007530
+20600000
+d8a00fff
+98a10a00
+6800c215
+1fe17ef0
+1fed7e00
+98a1fe00
+6011004c
+e8c10000
+e0a10000
+58000001
+20203cf7
+58000002
+37d98200
+60108005
+37d98200
+37d98200
+20600000
+793f8025
+44d8c016
+680200a0
+6012004c
+58000004
+20403cf7
+680200a4
+6012004c
+58000008
+20203cf7
+680141f2
+f9207e00
+600141f2
+20600000
+680141f2
+f93ffe00
+600141f2
+20600000
+793f8025
+44d94016
+20403d9d
+680141f2
+1fe22200
+6800804c
+2feffe06
+7920a20b
+68008078
+6808807c
+9840fe00
+68088048
+9840fe00
+7d3a220a
+793f8025
+44d9c016
+68010286
+68090288
+9840fe00
+7d3a220d
+6802c6f0
+7d3a220f
+6802c6f8
+7d3a220e
+6800c271
+7d3a2208
+6800c132
+2fe1fe0a
+2040bd2c
+20203d31
+68110112
+7d3a2206
+6811010e
+7d3a2205
+20600000
+5ffffff8
+9a212200
+1a227e00
+600141f2
+207a0000
+20768000
+7835fc00
+20600000
+68120138
+793ffe1b
+6012004c
+20403cf4
+20203b31
+6812013c
+793ffe14
+6012004c
+20203cf6
+680141f0
+c2803b31
+20600000
+680141f0
+c280bb31
+20600000
+680141f0
+c2813b31
+20600000
+793f8025
+44da4016
+6800c132
+203a3d4b
+c001c00c
+c004f293
+c00559dd
+c2835dca
+c283c00c
+20600000
+793f8025
+44dac016
+70015000
+70017e00
+70017f00
+58000000
+600288d2
+6800c132
+203a3d55
+c0055a12
+20600000
+20407cf4
+20407d9e
+20403d69
+68014294
+20207f69
+68014292
+20207f69
+68014290
+20207f69
+793f8025
+44db4016
+da2046f0
+20407f95
+207a0000
+1fe22600
+20403d73
+20203d9b
+da600000
+20600000
+c000bd88
+c0083dcf
+c002bdac
+c0093db3
+c0033dcb
+c0023df6
+c0013dfb
+c009bdf6
+c00a3dc2
+c00abdc6
+c001bda5
+c005bdb7
+c0063dbe
+c00b3dd3
+c00c3da1
+c0153d91
+c015bd8f
+1fe1040f
+1fe17ef0
+c0283dd7
+20600000
+6801470b
+79207e00
+6001470b
+680142af
+793ffe00
+600142af
+20600000
+70024d00
+20600000
+6800824d
+1fe0fe01
+6000824d
+1fe67c01
+20213e47
+70024d00
+680142af
+79207e09
+600142af
+20203e52
+68014296
+20207f69
+6801428a
+20207f69
+6801428e
+20207f69
+680142af
+79207e01
+600142af
+20203e7d
+6801470b
+79207e07
+6001470b
+680142af
+79207e02
+600142af
+20600000
+6801470b
+79207e01
+6001470b
+680142af
+79207e04
+600142af
+20600000
+6801470b
+79207e03
+6001470b
+20600000
+6801470b
+79207e05
+6001470b
+680142af
+79207e03
+600142af
+20600000
+6801470b
+793ffe05
+6001470b
+20600000
+6801470b
+79207e09
+6001470b
+20600000
+6801470b
+793ffe09
+6001470b
+70459500
+20203e81
+6801470b
+79207e02
+6001470b
+20600000
+680142af
+79207e00
+600142af
+20600000
+680142af
+79207e08
+600142af
+20203e52
+793f8025
+44dbc016
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20407d02
+20403e3b
+20403de5
+20403ded
+680142a0
+20407f69
+20203dda
+6800c2aa
+207a0000
+1fe0ffff
+6000c2aa
+247a0000
+20403292
+2022be79
+20600000
+68014707
+207a0000
+1fe0ffff
+60014707
+247a0000
+20403e59
+20403e73
+68014298
+20207f69
+20403e0f
+6801470b
+793ffe07
+6001470b
+20600000
+7042aa00
+6801470b
+c283be00
+2fec0001
+2040bd71
+793f8025
+44dc4017
+6801470b
+793ffe00
+793ffe01
+793ffe02
+793ffe03
+793ffe07
+6001470b
+20203e81
+20403e0c
+20203e75
+58000000
+600142ad
+20600000
+58000000
+600142af
+20600000
+680142af
+600142ad
+58000000
+600142af
+20600000
+680142af
+79207e07
+600142ad
+58000000
+600142af
+20600000
+6800c70b
+2feffe05
+20600000
+5800aa55
+600109ce
+793f8025
+44dcc017
+d8400002
+da2009ce
+da4000c3
+2020626f
+793f8025
+44dd4017
+d8400002
+da2009be
+da4000c3
+20406245
+680109be
+d840aa55
+98467c00
+20600000
+6800c5f3
+6000c2aa
+20600000
+d8e00009
+20203d06
+d8e00009
+20203d0a
+7042ab05
+20203e35
+6800c2ab
+207a0000
+1fe0ffff
+6000c2ab
+247a0000
+20203e37
+7043f301
+20600000
+7043f300
+20600000
+7009bd0a
+20207d90
+7009bd1d
+20207d90
+793f8025
+44ddc017
+6800c2ac
+6000816c
+70024c01
+7009bd03
+20207d90
+7009bd1e
+20207d90
+7009bd04
+20207d90
+68014716
+60014707
+20403e6f
+7009bd01
+20207d90
+58000000
+60014707
+7009bd02
+20207d90
+7009bd0f
+20207d90
+7009bd10
+20207d90
+7009bd0e
+20207d90
+7009bd0d
+20207d90
+7009bd17
+20207d90
+7009bd18
+20207d90
+7009bd16
+20207d90
+7009bd11
+20207d90
+7009bd1c
+20207d90
+7009bd15
+20207d90
+7009bd14
+20207d90
+7009bd13
+20207d90
+7009bd19
+20207d90
+7009bd06
+20207d90
+7009bd05
+20207d90
+7009bd1f
+20207d90
+7009bd20
+20207d90
+7920000d
+20600000
+793f800d
+20600000
+793f8025
+44de4017
+6800c271
+247a0000
+20403e8a
+24543ea3
+20600000
+793f8025
+44dec017
+18622200
+d8400004
+e8608000
+c000be95
+18408401
+c0013e95
+18627e00
+60110058
+20600000
+68110112
+98467c00
+24213e95
+78547c00
+1a220600
+20403eac
+98408400
+68110112
+98467c00
+24213e9c
+1a220600
+e8608000
+c000bf06
+20203b31
+793f8025
+44df4017
+68110058
+98000600
+20403eac
+98608600
+18627e00
+60110058
+20600000
+e8608000
+18608602
+c0013eb1
+e8608000
+20600000
+e8610000
+20600000
+6811005e
+194095fb
+99409400
+20600000
+d8400004
+20203eba
+d8400002
+793f8025
+44dfc017
+1f20f201
+6811005e
+1fe21400
+1f227e00
+e1488000
+1fe0ffff
+99409400
+19427e00
+6001027a
+18427e00
+c1010000
+6801027a
+6011005e
+20203eca
+58000000
+6001027a
+20600000
+793f8025
+44e04018
+20758000
+58003fbf
+60014294
+580001a0
+600142d3
+793f8025
+44e0c018
+58001800
+60110054
+58001bff
+60110056
+58001c00
+6011005a
+20403eed
+70806200
+58001c00
+6011005e
+60110060
+58001800
+60110058
+60010266
+793f8025
+44e14018
+68110050
+793ffe0f
+60110050
+20406325
+70804301
+70806281
+20600000
+58001fff
+6011005c
+68108081
+1fe1fe07
+60108081
+70027cff
+20600000
+793f8025
+44e1c018
+6810810c
+98002400
+c301befe
+68110112
+98002600
+d840044f
+98467c00
+24628000
+68110058
+98000600
+20203e83
+6818810c
+284ffe06
+2020bf01
+60108015
+20600000
+793f8025
+44e24018
+6800c271
+203a3f0c
+78347c00
+20600000
+e8610000
+98006000
+98000e00
+e8608000
+98000400
+1e0b7e00
+1fecfe00
+c01fbf15
+20600000
+793f8025
+44e2c018
+18e27e00
+c0003f70
+c000bf2d
+c0013f32
+c001bf36
+c0023f49
+c002bf70
+c0033f5a
+c003bf23
+c0083f5d
+c008bf65
+20203f70
+20403f70
+20407f6b
+20406561
+20403e37
+20403e41
+20206564
+7042d500
+20403e35
+20403ed4
+20203e43
+20403f89
+68110000
+e1410000
+18007206
+20203f73
+e8610000
+600142d3
+60110052
+20600000
+e8608000
+1fe20400
+60108024
+e8608000
+98408400
+79207e07
+60108023
+e8608000
+98408400
+1fe27200
+e8608000
+60108025
+98408400
+c2003f40
+184104ff
+e8608000
+98467c00
+2422bf58
+20203f70
+df200020
+d8a04000
+d8400000
+e8608000
+e0a08000
+98408400
+c2003f4c
+184104ff
+e8608000
+98467c00
+2422bf58
+70802300
+20403f70
+20403ea3
+20203001
+70802300
+20203000
+e8630000
+60034140
+20203f70
+e8608000
+60008283
+1fe27200
+e8610000
+60010284
+1fe20a00
+20406354
+20203f70
+e8608000
+60008283
+1fe27200
+e8610000
+60010284
+d8a01000
+20406354
+68088283
+da201000
+68010284
+20206271
+793f8025
+44e34018
+18007204
+20403f8b
+18007e01
+e1408000
+1e027e00
+e1418000
+18000e0e
+793f8025
+44e3c018
+20403f8d
+18e27e00
+e1408000
+1f227e00
+e1408000
+18000e05
+1f20f202
+20203eb7
+18000eff
+20403f8b
+58000001
+e1408000
+18007201
+20203f79
+1800140c
+20203f8e
+18001408
+20203f8e
+18001406
+20203eb3
+7827fc00
+7824fc00
+e9408000
+08008008
+c2003f91
+78247c00
+08008010
+78447c00
+7844fc00
+7847fc00
+1ff0fe00
+20600000
+70427100
+20600000
+68034273
+680b0040
+98467c00
+20600000
+6800804b
+c2813fa6
+204058fa
+70007c08
+20203f9b
+793ffe02
+6000804b
+20405618
+58000000
+7934fe01
+6000807f
+20203f9b
+20600000
+70007c17
+d8a003ff
+58000000
+2d0ffe1b
+7920fe01
+e0a08000
+58000000
+e0a10000
+68014284
+e0a10000
+6800c286
+e0a10000
+6800c288
+e0a10000
+20203f9b
+70007c18
+20203f9b
+2040656e
+20608000
+d8400007
+204064f5
+2420bfc6
+7042d501
+20600000
+6800c2d5
+c1808000
+20403f29
+20203f83
+793f8025
+44e44019
+6801028d
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c004bfeb
+c003bfeb
+c0053ff7
+c002bfe3
+c000bfd7
+20600000
+18427e00
+c002bfdb
+c001bfe2
+20600000
+7009bd27
+20407d86
+6800c132
+c1830000
+18427e00
+c002e455
+20600000
+20600000
+20403ff7
+da200001
+20404005
+680142dc
+e0a10000
+58000000
+e0a08000
+20600000
+da200001
+20404005
+680142dc
+e0a10000
+58000000
+e0a08000
+7009b201
+6800c2e2
+79207e06
+6000c2e2
+7009bd12
+20207d86
+e8c08000
+c000bffa
+20600000
+18c22200
+6800c132
+c1818000
+1a220c00
+e8c08000
+6000cb0f
+6000cb27
+6800cb01
+247a0000
+704b2402
+20600000
+204047dc
+1a220400
+600889b2
+1fe20a00
+1a227e00
+e0a10000
+20600000
+20404196
+20758000
+20404034
+20404055
+580041a1
+60014294
+58004082
+60014292
+580041e6
+60014296
+58004268
+6001428e
+58004246
+60014298
+5800424b
+6001428c
+7008d400
+7008d500
+20404027
+6801470b
+c2863e54
+6800c2b5
+c019c024
+2020423e
+68034273
+203a3e54
+20203e49
+20403e28
+2022c032
+58000001
+6000cae9
+2040427d
+68034b07
+60030040
+60034273
+20406432
+7042b533
+20203e20
+20404284
+20206441
+793f8025
+44e4c019
+70807000
+708078ff
+708071ff
+708072ff
+68108073
+1fe1fe07
+60108073
+70808000
+70808100
+70806f00
+58000013
+1fe9fe00
+1fe0fe07
+60108064
+708083ff
+708084ff
+68108085
+1fe1fe01
+60108085
+68108043
+79207e02
+60108043
+7080630c
+70806630
+68108051
+793ffe01
+60108051
+68108063
+79207e00
+60108063
+20600000
+20404058
+2040405c
+20204060
+6800c737
+c17f8000
+6808c737
+202064e8
+6800c738
+c17f8000
+6808c738
+202064e8
+6800c739
+c17f8000
+6808c739
+202064e8
+6800cb24
+207a0000
+1fe0ffff
+6000cb24
+247a0000
+793f8025
+44e54019
+6800cb27
+1fe22200
+6808c738
+2a2ffe00
+20406500
+6808c737
+2a2ffe01
+20406500
+6808c739
+2a2ffe02
+20406500
+2020407d
+6800caa7
+207a0000
+1fe0ffff
+6000caa7
+247a0000
+20203e7f
+6800caa8
+6000caa7
+20203e81
+704b2601
+202040b4
+20404812
+247a0000
+68034b07
+680b0040
+98467c00
+2022c097
+680083fa
+c000c119
+6800c2e3
+c19f8000
+680c4aba
+68044aaa
+60044aba
+98467c00
+2442c0ac
+680c4ac2
+68044ab2
+60044ac2
+98467c00
+2442c0c7
+20600000
+6800caca
+c03fc0aa
+680c4aba
+68044aaa
+60044aba
+98467c00
+20628000
+d8c04aaa
+da204ade
+204040bb
+da20000a
+20404005
+58000053
+e0a10000
+580001a1
+e0a10000
+68044ade
+e0a40000
+20600000
+60044aaa
+20204099
+20404812
+247a0000
+6800caa9
+c3810000
+204040e0
+6800caaa
+c01cc080
+704b2600
+d8c04aaa
+da204ade
+204040bb
+204040f1
+68044ade
+e0a40000
+20600000
+d8400000
+1a208a02
+df200008
+e8c08000
+c303c0c3
+1fe10e07
+f9200400
+202040c4
+e0a08000
+c20040be
+e2290000
+20600000
+20404812
+247a0000
+204040e0
+6800cab2
+c07fc10d
+c07f4109
+58000000
+60044ade
+204040d6
+6800caa9
+c28140ff
+204040f8
+68024ade
+e0a20000
+20600000
+6800cab2
+207a0000
+7820fc00
+6800cab2
+1fe20e00
+68044ade
+f920fe00
+60044ade
+7840fc00
+20600000
+68014afa
+60014aa1
+20600000
+68014aa1
+207a0000
+68014aa1
+1fe0ffff
+60014aa1
+247a0000
+202040ea
+58000000
+60014aa1
+6801470b
+c284be6b
+6801470b
+c2803e52
+20600000
+da20000a
+20404005
+680142de
+e0a10000
+580001a1
+e0a10000
+20600000
+da200006
+20404005
+680142de
+e0a10000
+580002a1
+e0a10000
+20600000
+204040f1
+58000000
+e0a40000
+204040f8
+58000000
+e0a20000
+6800caa9
+793ffe02
+6000caa9
+20600000
+204040f8
+58002002
+e0a20000
+20600000
+204040f8
+58000040
+e0a20000
+204040f1
+58000000
+e0a10000
+58000010
+e0a38000
+6800caa9
+79207e02
+6000caa9
+20600000
+793f8025
+44e5c019
+6800caa9
+c4008000
+793ffe01
+6000caa9
+6808c718
+58004719
+98408a00
+6800caca
+203a4128
+c015412a
+c0944134
+6008c718
+20203e45
+6008c718
+20600000
+6800c718
+207a0000
+1fe0ffff
+6000c718
+d8a04719
+98a08a00
+58000000
+e0a08000
+78367c00
+20204143
+1fe67c1d
+20610000
+d8400030
+1fe67c27
+24610000
+2022c13d
+d840001d
+98460400
+18418430
+e0a88000
+6800c718
+1fe0fe01
+6000c718
+78567c00
+20204143
+680142de
+207a0000
+da200003
+20404005
+680142de
+e0a10000
+5800ffa1
+e0a10000
+58000000
+79367e00
+e0a08000
+20600000
+78547c00
+78567c00
+68108119
+c3800000
+6810811b
+c2804159
+68108119
+c3034159
+6810811a
+2020414f
+78347c00
+78367c00
+6810811b
+2fec0000
+6810811a
+d8c049ff
+98c08c00
+e8c08000
+c283c191
+2420c182
+78567c00
+98000400
+6800c731
+1fe67c04
+24610000
+1fe22200
+df200003
+d8c0472b
+e8c08000
+98467c00
+2022c14f
+c200416b
+1a227e00
+d8a0472b
+98a08a00
+e0a88000
+1fe0fe01
+6000c731
+6810811b
+1fe97e00
+243a4179
+20204180
+1fe0ffff
+2022c180
+6810811b
+1fe17e01
+c000414f
+c000c180
+20600000
+78367c00
+20600000
+1fe104ff
+6800c731
+207a0000
+98007200
+d8c0472b
+e8c08000
+98467c00
+2022c291
+c2004187
+20600000
+6810811b
+1fe17e01
+c0004180
+c000c14f
+20600000
+1fe10e07
+6800c729
+f920fe00
+6000c729
+20600000
+58000000
+60044aca
+6000c731
+20600000
+6810811b
+6810811a
+68108119
+c300419a
+580000ff
+78347c00
+20600000
+204041ac
+20758000
+6800cb17
+205a4299
+2040429c
+6800c731
+207a0000
+204041bf
+68020b26
+60024afc
+20600000
+6801470b
+c4038000
+6800caa9
+c3800000
+68014aca
+68094b28
+98467c00
+2022c1bb
+68014aca
+68094b29
+98467c00
+2022c1bb
+6801470b
+c28641bb
+20600000
+6800caa9
+79207e00
+6000caa9
+20207e3d
+68118083
+98002400
+68120078
+98002200
+681c0070
+58000000
+60118083
+20000064
+6810811c
+60008b26
+70807800
+68108073
+1fe17ef0
+60108073
+1fe2feff
+6010807b
+580000ff
+60118070
+5800ffff
+60110079
+20000064
+6811811d
+9a417e00
+60018b27
+1a227e00
+60120078
+601c0070
+1a427e00
+60118083
+20600000
+6800c133
+247a0000
+6800c283
+247a0000
+6800c701
+207a0000
+6800c702
+247a0000
+20203e75
+1a627e00
+c003426d
+c0054247
+c0094271
+c0084223
+c0173e32
+c000c23a
+c001420c
+c0024201
+c009c201
+1fe1040f
+1fe17ef0
+c02841f4
+20600000
+793f8025
+44e64019
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20404064
+2040421d
+20404077
+204040e3
+204042b3
+202041f7
+6801470b
+c286423e
+6800caa9
+c3003e0a
+6800caa9
+793ffe00
+6000caa9
+6801470b
+793ffe07
+6001470b
+20600000
+793f8025
+44e6c019
+2040421a
+680142ad
+c2803e0c
+c280c214
+c2814217
+2020423e
+c282c217
+c281c217
+2020423e
+6801470b
+c286423e
+20203e0a
+70428300
+704b0200
+20600000
+6800c709
+207a0000
+1fe0ffff
+6000c709
+247a0000
+20204271
+58000000
+60014a9f
+6000c718
+2040422a
+2040422d
+20403e81
+2020423e
+704af901
+6808c737
+202064fd
+793f8025
+44e74019
+6801470b
+2feffe07
+2040be50
+68014716
+60014707
+680142af
+79207e00
+600142af
+6801470b
+c2803e52
+20600000
+20403e73
+58000000
+60014a9d
+20203e59
+20403e81
+68014716
+60014a9d
+20403e57
+704b0100
+20403e6f
+2040419a
+20204196
+20203e75
+70470900
+70471800
+20404196
+2020419a
+6800cb01
+203a4254
+d8400140
+984f8400
+1c427e00
+98408400
+1c427e00
+98467c00
+24214251
+6808caef
+204064fd
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+70808300
+70808400
+68108085
+1fe17ef0
+60108085
+58000000
+600200a4
+580000ff
+6808c715
+18420e00
+f9207e00
+600200a0
+20600000
+2040425b
+6800809f
+247a0000
+7000a000
+20600000
+58000002
+6000c709
+2040419a
+20204196
+793f8025
+44e7c019
+20407d33
+70428301
+2040419a
+20404196
+20403e7f
+20403e7d
+58000000
+60014707
+6000c709
+20203e79
+6800cae9
+1fe17e07
+6000cb00
+d8400001
+da204b00
+58001fec
+202062a8
+d8400001
+da204b00
+58001fec
+1ff0fe00
+6001021a
+2040624c
+6800cb00
+1fe22400
+1fe17e0f
+c007c2b9
+1a427e00
+6000cae9
+20600000
+18c08bff
+20407ecd
+6800c731
+1fe0ffff
+6000c731
+6800cb23
+c03fc2bd
+202042c0
+68044aca
+60044b19
+202042c0
+6800c731
+203a42ca
+1fe22400
+6802caca
+1fe20400
+18427e00
+2fe1fe7f
+2020c2b0
+1a40a5ff
+58004b12
+9a408a00
+18427e00
+e0a08000
+18427e00
+1fecfe00
+1fe20400
+243a42a1
+6802cb12
+205a42cc
+202042c0
+58000001
+6000cb17
+202042a9
+6800caf8
+207a0000
+1fe0ffff
+6000caf8
+247a0000
+20207d2f
+1a427e00
+1fe17e01
+6000cae9
+20600000
+704b1700
+204042cc
+202042c0
+793f8025
+44e8c01a
+68108119
+c3800000
+6810811b
+c28042d4
+68108119
+c30342d4
+6810811a
+202042c0
+204042cf
+202042c0
+68044aca
+60044b19
+20600000
+58000000
+6000cb17
+6002cb12
+60044aca
+20600000
+6800caa9
+79207e01
+6000caa9
+6810811b
+2feffe00
+6000caa6
+6810811a
+6000caa5
+d8c049ff
+98c08c00
+e8c08000
+6808c731
+18467c04
+242142c0
+98000c00
+58004aca
+98408a00
+18c27e00
+e0a08000
+18408401
+6008c731
+2020429c
+2035c2ef
+580043f5
+d8a042d6
+98a67200
+20407e9f
+793f8025
+44e9401a
+58000475
+d8a00440
+98a67200
+20407e9f
+580002f2
+d8a00286
+98a67200
+20407e9f
+202048c3
+793f8025
+44e9c01a
+18c20400
+18420c00
+e8c10000
+6001028f
+e8c10000
+60010291
+18c27e00
+6001028d
+6800c70a
+c0004307
+20204684
+6801028f
+203a4383
+793f8025
+44ea401a
+68008291
+c000c321
+c0284366
+c028c37b
+c0294379
+c029c379
+20204383
+793f8025
+44eac01a
+20404821
+6800c2e6
+c000431f
+c000c31f
+c001431f
+c001c31f
+c040c31f
+c060431f
+c040431f
+c020431f
+20600000
+58000000
+20600000
+20404312
+247a0000
+2040485e
+20404388
+68090298
+203a4382
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+20204383
+6800c3f4
+207a0000
+1fe22200
+793f8025
+44eb401a
+680202fe
+d8400100
+98408400
+1c427e00
+98467c00
+24610000
+7043f400
+1a227e00
+c028433c
+20203b31
+d9000000
+2040485e
+20404404
+2040486a
+20407e70
+20404437
+20404868
+5800000c
+e0a10000
+18007e01
+e0a10000
+20204383
+793f8025
+44ebc01a
+6801029e
+1fe0fe04
+1ff1fe00
+1fe97e00
+1fe08401
+d8c042f0
+e8c18000
+207a0000
+600189e1
+680089e1
+1fe22200
+20404359
+1a427e00
+6000c2f0
+20600000
+d8e00000
+da400000
+18e67c07
+24610000
+aa2fffff
+2020c360
+20204364
+18427e00
+203a4364
+f9202400
+184085ff
+18e08e01
+2020435b
+20404816
+247a0000
+20404312
+247a0000
+2040486c
+20406a3e
+20404348
+20204372
+20404816
+247a0000
+2040486c
+20406a3e
+20404876
+6801029e
+203a4382
+e0a10000
+680142d8
+e0a10000
+20204383
+20403fca
+20204383
+793f8025
+44ec401b
+7002ad00
+2040668f
+680082ad
+c1008000
+20204383
+20404803
+58000000
+6001028f
+60010291
+70029301
+20600000
+793f8025
+44ecc01b
+2040486a
+18002400
+6801028f
+1fe22600
+6801028d
+98000c00
+20404398
+1a627e00
+1a60a7fc
+1fe0fffc
+243a4390
+1a427e00
+60010298
+20600000
+793f8025
+44ed401b
+e8c08000
+c000c3d2
+c00143da
+c001c460
+c0024491
+c002c531
+c003455b
+c003c5ac
+c00445e2
+c004c5f2
+c00543a8
+c005c5f3
+204045f4
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+5800000b
+e0a08000
+18e27e00
+e0a08000
+e8c10000
+c00143b6
+c001c3bc
+20600000
+58020008
+e0a30000
+58000280
+e0a20000
+18007e0c
+202043c1
+5803000c
+e0a30000
+58000006
+e0a40000
+18007e10
+9a40a400
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+600109c6
+1a627e00
+9a262600
+2040486a
+5800000b
+e0a08000
+18e27e00
+e0a08000
+680109c6
+202043b3
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+1a627e00
+9a262600
+202043a7
+20407e70
+20407e75
+d9000000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe20400
+e8c10000
+1fe21600
+793f8025
+44edc01b
+18427e00
+c000c3ee
+c001c410
+c008c41c
+c009c427
+204045f4
+2020445f
+20407e70
+d8400050
+680142d8
+243a4459
+19627e00
+600142d8
+1c427e00
+600202fe
+204043f8
+20204433
+600902fc
+19627e00
+600102f2
+1a227e00
+600102f4
+1a427e00
+600102f6
+1a627e00
+600102f8
+18e27e00
+600102fa
+20600000
+680902fc
+680102f2
+1fe21600
+680102f4
+1fe22200
+680102f6
+1fe22400
+680102f8
+1fe22600
+680102fa
+1fe20e00
+20600000
+20407e70
+58000051
+d8400051
+680142da
+243a4459
+19627e00
+600142da
+6800c2e1
+79207e00
+79207e01
+6000c2e1
+2020443b
+20407e70
+d8400052
+680142dc
+243a4459
+19627e00
+600142dc
+6800c2e2
+79207e00
+79207e01
+6000c2e2
+2020443b
+20407e70
+1b427e00
+d8400053
+680142de
+243a4459
+19627e00
+600142de
+6800c2e3
+79207e00
+79207e01
+6000c2e3
+2020443b
+58000001
+600102a6
+7043f450
+2020443d
+6800c2e0
+79207e00
+79207e01
+6000c2e0
+58000000
+600102a6
+793f8025
+44ee401b
+20407e75
+58000003
+e0a08000
+18e27e00
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+680102a6
+c000c454
+290c0000
+2020c44f
+58000004
+e0a10000
+18007e00
+e0a10000
+5800000c
+2020445b
+e0a10000
+18007e02
+e0a10000
+5800000c
+2020445b
+79201000
+2020443b
+9a40a400
+1a627e00
+9a262600
+2020445f
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+793f8025
+44eec01b
+58000050
+98467c00
+2022c479
+58000051
+98467c00
+2022c47f
+58000052
+98467c00
+2022c48b
+58000053
+98467c00
+2022c485
+20600000
+19627e00
+600142d8
+6800c2e0
+79207e01
+6000c2e0
+202043a7
+19627e00
+600142da
+6800c2e1
+79207e01
+6000c2e1
+20600000
+19627e00
+600142dc
+6800c2e3
+79207e01
+6000c2e3
+20600000
+19627e00
+600142de
+6800c2e2
+79207e01
+6000c2e2
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe20400
+18422200
+793f8025
+44ef401b
+58000050
+98467c00
+2022c4a9
+58000051
+98467c00
+2022c4c7
+58000052
+98467c00
+2022c4b3
+58000053
+98467c00
+2022c4bd
+202045f4
+18a21600
+6800c2e0
+79207e04
+79207e03
+6000c2e0
+19620a00
+d9600050
+680142d8
+1fe20400
+202044d0
+18a21600
+6800c2e2
+79207e04
+79207e03
+6000c2e2
+19620a00
+d9600052
+680142dc
+1fe20400
+202044d0
+18a21600
+6800c2e3
+79207e04
+79207e03
+6000c2e3
+19620a00
+d9600053
+680142de
+1fe20400
+202044d0
+18a21600
+6800c2e1
+79207e04
+79207e03
+6000c2e1
+19620a00
+d9600051
+680142da
+1fe20400
+793f8025
+44efc01b
+58000005
+e0a08000
+18e27e00
+e0a08000
+58000006
+e0a10000
+18427e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+600902ab
+18e27e00
+600082aa
+18007e50
+a961fe00
+2020c4e7
+1fe0fe01
+20600000
+78547c00
+c3810000
+c4000000
+c4008000
+79207e02
+18c20a00
+18a08bff
+e0a08000
+78347c00
+20600000
+6800c2e0
+204044e8
+243444f9
+7002a950
+680142d8
+600102ab
+2020450d
+6800c2e1
+204044e8
+24344500
+7002a951
+680142da
+600102ab
+2020450d
+6800c2e2
+204044e8
+24344507
+7002a952
+680142dc
+600102ab
+2020450d
+6800c2e3
+204044e8
+24740000
+7002a953
+680142de
+600102ab
+793f8025
+44f0401c
+204047d6
+2040485e
+18002400
+2040486a
+18007e04
+e0a08000
+6800c2e5
+e0a08000
+58000008
+e0a10000
+680102ab
+e0a10000
+58000000
+e0a10000
+18007e01
+e0a08000
+18007e02
+e0a08000
+680082a9
+c028c526
+58000030
+e0a10000
+20204528
+580003e3
+e0a10000
+d840000c
+60090298
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+7002a900
+202043a7
+18c08c01
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+793f8025
+44f0c01c
+58000050
+9a267c00
+2022c54a
+58000051
+9a267c00
+2022c54e
+58000052
+9a267c00
+2022c552
+58000053
+9a267c00
+2022c556
+18c08c02
+e8c10000
+98007c00
+202043a7
+6800c2e0
+79207e05
+6000c2e0
+202043a7
+6800c2e1
+79207e05
+6000c2e1
+202043a7
+6800c2e2
+79207e05
+6000c2e2
+202043a7
+6800c2e3
+79207e05
+6000c2e3
+7009bd06
+20207d86
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+1a220400
+20407e70
+793f8025
+44f1401c
+58000050
+98467c00
+2022c583
+58000051
+98467c00
+2022c593
+58000052
+98467c00
+2022c577
+58000053
+98467c00
+2022c57d
+204045f4
+202045a8
+19620400
+680142dc
+98467c00
+2022c589
+204045f4
+202045a8
+19620400
+680142de
+98467c00
+2022c58b
+204045f4
+202045a8
+19620400
+680142d8
+98467c00
+2022c58f
+204045f4
+202045a8
+2040460b
+2020459b
+20404611
+680142dc
+203a459b
+2020459b
+20404606
+680082b1
+243a459b
+2020459b
+19620400
+680142da
+98467c00
+2022c599
+204045f4
+202045a8
+20404601
+2020459b
+20407e75
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+202045aa
+20407e75
+202045aa
+9a40a400
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e70
+793f8025
+44f1c01c
+58000050
+98467c00
+2022c5c7
+58000051
+98467c00
+2022c5cd
+58000052
+98467c00
+2022c5d3
+58000053
+98467c00
+2022c5d9
+204045f4
+202045e1
+18422200
+19620400
+680142d8
+98467c00
+2042c606
+202045df
+18422200
+19620400
+680142da
+98467c00
+2042c601
+202045df
+18422200
+19620400
+680142dc
+98467c00
+2042c60b
+202045df
+18422200
+19620400
+680142de
+98467c00
+2042c611
+202045df
+20407e75
+202043a7
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+58000009
+e0a08000
+18e27e00
+e0a08000
+18007e00
+e0a10000
+18007e04
+9a40a400
+1a627e00
+9a262600
+202043a7
+202043a7
+202043a7
+18002400
+2040486a
+58000001
+e0a08000
+18e27e00
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+1a40a406
+da600004
+202043a7
+58000000
+600102a4
+600142da
+7042e100
+20600000
+58000000
+6001029e
+600142d8
+7042e000
+20600000
+58000000
+600142dc
+7042e200
+6800c2e3
+c0004617
+20600000
+58000000
+600142de
+7042e300
+6800c2e2
+c0004617
+20600000
+7009bd07
+20207d86
+680082a8
+793ffe00
+600082a8
+680142de
+207a0000
+2040485e
+680142de
+1fe22200
+18002453
+2020462c
+680082a8
+793ffe07
+600082a8
+680142dc
+207a0000
+2040485e
+680142dc
+1fe22200
+18002452
+204047d6
+2040486a
+18007e06
+e0a08000
+6800c2e5
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+1a427e00
+e0a10000
+18000408
+20204673
+793f8025
+44f2401c
+204047d6
+2040486a
+58000002
+e0a08000
+6800c2e5
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+20204673
+793f8025
+44f2c01c
+204047d6
+2040486a
+58000004
+e0a08000
+6800c2e5
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+58000000
+e0a10000
+58000001
+e0a08000
+58000002
+e0a08000
+580003e3
+e0a10000
+d840000c
+20204673
+793f8025
+44f3401c
+204047d6
+2040486a
+58000006
+e0a08000
+6800c2e5
+1fe0fe01
+18a22200
+6000c2e5
+1a220a00
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+60090298
+18427e00
+203a4803
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+20600000
+6801029e
+203a3b31
+20404876
+6801029e
+e0a10000
+680142d8
+e0a10000
+20600000
+6801028f
+203a4383
+793f8025
+44f3c01c
+68008291
+c000c68f
+c028436e
+c028c37b
+c0294379
+c029c379
+20204383
+793f8025
+44f4401d
+2040485e
+18002400
+2040486a
+1fe20a00
+6801028f
+1fe22600
+6801028d
+98000c00
+2040469f
+1a60a7fc
+2422c699
+1a420400
+20404673
+20204383
+e8c08000
+c00146aa
+c000c6ad
+c001c6b7
+c002c6f4
+c0024727
+c003c7ae
+c003477b
+c00445e2
+c00543c3
+202047ca
+20407e70
+20407e75
+202043da
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c08000
+1a20a3ff
+2422c6b3
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+e8c10000
+1fe67c00
+2022c6c9
+c00146c5
+c00246c5
+202046c7
+7009bd16
+20407d86
+e8c10000
+202046f1
+20407e70
+793f8025
+44f4c01d
+58000050
+98467c00
+2022c6d9
+58000051
+98467c00
+2022c6df
+58000053
+98467c00
+2022c6eb
+58000052
+98467c00
+2022c6e5
+202046f1
+19627e00
+600142d8
+6800c2e0
+79207e01
+6000c2e0
+202046f0
+19627e00
+600142da
+6800c2e1
+79207e01
+6000c2e1
+202046f0
+19627e00
+600142dc
+6800c2e2
+79207e01
+6000c2e2
+202046f0
+19627e00
+600142de
+6800c2e3
+79207e01
+6000c2e3
+20407e75
+1a627e00
+9a262600
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+e8c10000
+243a4721
+20407e70
+19620400
+793f8025
+44f5401d
+58000050
+98467c00
+2022c70f
+58000051
+98467c00
+2022c713
+58000052
+98467c00
+2022c717
+58000053
+98467c00
+2022c71b
+6800c2e0
+79207e05
+6000c2e0
+20600000
+6800c2e1
+79207e05
+6000c2e1
+20600000
+6800c2e2
+79207e05
+6000c2e2
+20600000
+6800c2e3
+79207e05
+6000c2e3
+7009bd06
+20207d86
+20407e75
+1a20a3fa
+2022c726
+18c08c01
+1a20a3ff
+20204722
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+18c08c02
+1fe20400
+58000005
+e0a08000
+18e27e00
+e0a08000
+1a20a202
+1a227e00
+e0a10000
+20407e70
+793f8025
+44f5c01d
+58000050
+98467c00
+2022c747
+58000051
+98467c00
+2022c758
+58000052
+98467c00
+2022c75e
+58000053
+98467c00
+2022c764
+20204769
+6800c2e0
+79207e04
+79207e03
+6000c2e0
+c2814755
+680882a8
+79200406
+600882a8
+18e27e00
+1fe0fe01
+600082aa
+6800c2e0
+79207e02
+6000c2e0
+680142d8
+600102ab
+20204769
+6800c2e1
+79207e04
+79207e03
+6000c2e1
+680142da
+20204769
+6800c2e2
+79207e04
+79207e03
+6000c2e2
+680142dc
+20204769
+6800c2e3
+79207e04
+79207e03
+6000c2e3
+680142de
+1fe21600
+20407e75
+19627e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+1a20a3fa
+2022c77a
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+20204774
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+20407e70
+793f8025
+44f6401d
+58000050
+1a220400
+98467c00
+2022c795
+58000052
+1a220400
+98467c00
+2022c79a
+58000053
+1a220400
+98467c00
+2022c79c
+2020479e
+58000000
+6001029e
+600142d8
+6000c2e0
+202047a0
+2040460b
+202047a0
+20404611
+202047a0
+58000000
+600102a4
+20407e75
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+9a40a400
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e70
+793f8025
+44f6c01d
+6800c2e5
+a8e1fe00
+2420c7c6
+58000050
+98467c00
+2022c7c3
+58000051
+98467c00
+2022c7c6
+202047c6
+7042d800
+7042e000
+202047c6
+20407e75
+1a627e00
+9a262600
+20600000
+58000001
+e0a08000
+e8c08000
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+58000006
+9a40a400
+18002604
+20600000
+6800c2e5
+1fe0fe01
+c08047da
+1fe0fe01
+6000c2e5
+20600000
+793f8025
+44f7401d
+da400000
+2040480e
+243a3b31
+20404821
+da401800
+d8e00000
+6808c2e6
+a84fffff
+2020c7ec
+20404845
+19667c00
+202147ec
+2040482c
+202047f2
+1a40a480
+18e08e01
+58000008
+98e67c00
+202147e4
+da400000
+1a427e00
+203a3b31
+20600000
+793f8025
+44f7c01d
+2040481a
+18c08c01
+e8c10000
+20600000
+793f8025
+44f8401e
+2040481a
+18c20a00
+18c20400
+58000000
+e0a18000
+20600000
+793f8025
+44f8c01e
+20404816
+203a3b31
+6801c2ed
+6001c2f0
+6801c2ea
+6001c2ed
+6801c2e7
+6001c2ea
+20600000
+793f8025
+44f9401e
+6801c2e7
+20600000
+793f8025
+44f9c01e
+6801c2ea
+20600000
+793f8025
+44fa401e
+6801c2f0
+20600000
+20404816
+203a3b31
+d8c042e7
+e8c18000
+203a481d
+18c08dfd
+20600000
+793f8025
+44fac01e
+df200004
+d8c042e7
+d8400000
+e8c18000
+1fe17eff
+98418400
+c2004826
+6008c2e6
+20600000
+793f8025
+44fb401e
+2040480e
+243a3b31
+20404816
+203a483a
+6801c2ea
+6001c2e7
+e8c18000
+e0a18000
+e8c18000
+e0a18000
+58000000
+e0a18000
+d8400000
+19627e00
+98e0fe00
+f9200400
+18e08e01
+98e67c00
+2422c83d
+1a4d7e00
+9841fe00
+6001c2f0
+20600000
+793f8025
+44fbc01e
+20404821
+18e22600
+d8400000
+d9600000
+18e27e00
+c0044856
+6800c2e6
+afefffff
+2020c856
+18408480
+18e08e01
+1a227e00
+98467c00
+2022c856
+2021484b
+18427e00
+9a267c00
+2421485c
+18e27e00
+1a620400
+98461600
+1a620e00
+20600000
+793f8025
+44fc401f
+da20007f
+204047dc
+60010294
+1fe0fe04
+60010296
+58000000
+60010298
+20600000
+68010294
+2020488b
+68010296
+2020488b
+793f8025
+44fcc01f
+da2002ff
+204047dc
+6001029a
+1fe0fe04
+6001029c
+58000000
+6001029e
+20600000
+6801029a
+2020488b
+6801029c
+2020488b
+793f8025
+44fd401f
+20407e48
+7002ad01
+2040480e
+247a0000
+da20007f
+204047dc
+600102a0
+1fe0fe04
+600102a2
+58000000
+600102a4
+7002ad00
+20207e56
+680102a0
+2020488b
+203a3b31
+1fe20a00
+20600000
+793f8025
+44fdc01f
+da400000
+da2042e7
+1a20a3fe
+1a20a202
+580042f3
+9a267c00
+2022c89f
+ea208000
+1a20a201
+203a4893
+ea290000
+e8410000
+9a40a400
+1a40a404
+20204893
+1a427e00
+20600000
+d8e0000c
+20203d06
+d8e0000c
+20203d0a
+793f8025
+44fe401f
+20404821
+6800c2e6
+207a0000
+2040488e
+d8400100
+98467c00
+202148a1
+204048a3
+d8a042f3
+da2042e7
+580042f3
+9a267c00
+20628000
+ea208000
+1a20a201
+243a48ba
+e0a10000
+1a20a202
+202048b1
+ea210000
+1a20a202
+1fe20c00
+e8c10000
+e0a10000
+1fe27200
+1f20f202
+20407ecd
+202048b1
+793f8025
+44fec01f
+20404821
+6800c2e6
+207a0000
+da2042e8
+1a20a3fd
+d8c042f3
+1a20a203
+580042f4
+9a267c00
+20628000
+e8c10000
+203a48cb
+1fe0fe04
+1fe27200
+18c22400
+ea210000
+1fe20a00
+1a420c00
+18c08dfe
+20407ecd
+202048cb
+6800c4df
+79207e03
+6000c4df
+20600000
+6800c4df
+793ffe03
+6000c4df
+20600000
+793f8025
+44ff401f
+7855fc00
+70037801
+70036203
+70037901
+5fffffff
+6001037c
+18007e00
+6000837a
+60008385
+6001c209
+6001c20c
+6002c48c
+79207e27
+6002c491
+70446501
+70446600
+20205179
+793f8025
+44ffc01f
+7834fc00
+70036303
+70039b01
+7044e301
+5800ffff
+600144e5
+18007e00
+6002c491
+79207e27
+6002c48c
+202048e2
+79200025
+44804020
+7854fc00
+70036301
+7043ff00
+70009f00
+70456a00
+70456b00
+68010390
+60014561
+68010364
+1feffe05
+1ff1fe00
+60010390
+202048e2
+20404976
+20404b91
+2040517c
+2020497d
+79200025
+4480c020
+20404976
+20403d67
+68008363
+c001c91c
+20204932
+79200025
+44814020
+7834fc00
+20405170
+2021492f
+20403d45
+204049c4
+20404bd8
+7856fc00
+20404a5a
+24768000
+79200025
+4481c020
+68008005
+1fe0fe01
+60008005
+20404b51
+7854fc00
+20600000
+2040495b
+7854fc00
+20600000
+79200025
+44824020
+20407acf
+204052a9
+78577c00
+20405170
+2021495b
+20403d45
+204049c4
+20404a20
+242c494f
+20404968
+2036c940
+20204949
+79200025
+4482c020
+20404968
+20404b51
+20404bd8
+68008302
+c2824955
+20404bd0
+243a4955
+79200025
+44834020
+20404a63
+20407d9e
+68008385
+c281c95b
+79200025
+4483c020
+20405287
+20404b43
+20404b22
+202038d1
+79200025
+44844021
+78377c00
+20404a5a
+2036c940
+2020494c
+79200025
+4484c021
+20404962
+20403e17
+20407a96
+7009bd15
+20207d86
+70037800
+70036300
+70036200
+70456b00
+70456a00
+20600000
+79200025
+44854021
+68008005
+1fe0fe01
+60008005
+68008362
+c3818000
+79207e03
+60008362
+68014561
+60010390
+58000000
+60024596
+20600000
+79200025
+4485c021
+70890f36
+70890b5f
+783b7c00
+70891407
+20203d45
+79200025
+44864021
+70890f2e
+70890bff
+785b7c00
+70891403
+db600000
+20600000
+7844fc00
+7843fc00
+6801838a
+98001e00
+68008016
+1fed8400
+79200401
+18431c00
+20600000
+20404996
+204039b9
+58000500
+20403b35
+202039bf
+2036b9d0
+20404996
+202039c9
+79200025
+4486c021
+204039b1
+680083b0
+243a49aa
+68008016
+1fe67c24
+202149a4
+18000400
+c1128000
+18000418
+c1130000
+1800044e
+20600000
+1fe67c0a
+202149a7
+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
+6001838a
+20600000
+79200025
+44874021
+78287c00
+68020386
+98001200
+204049fb
+58000200
+2034c9ce
+68010370
+1fe37e00
+d8400500
+9840fe00
+20403abd
+1b427e00
+600303b5
+20600000
+79200025
+4487c021
+68008016
+1fe0fe01
+60008016
+c1940000
+70001625
+20600000
+79200025
+44884022
+1a208c01
+e8c08000
+c4000000
+1a208a1a
+e8a10000
+1fe0fe01
+e0a10000
+1a208c19
+e8c08000
+1a208a18
+e8a88000
+9840fe00
+1fe67c24
+202149ed
+1fe0ffdb
+e0a08000
+20600000
+79200025
+4488c022
+68028392
+18000400
+18007225
+c30049f6
+18408401
+1fe37e00
+c20049f4
+1840ffff
+60008384
+20600000
+79200025
+44894022
+6800837a
+98000e00
+680a8392
+a84fffff
+2020ca13
+79200025
+4489c022
+68008384
+98e67e00
+20214a09
+1fe60fff
+20204a02
+18e27200
+18000e00
+a84fffff
+2020ca0e
+1f20f201
+1f227e00
+203a4a13
+18e08e01
+1f20f3ff
+20204a0b
+18e27e00
+60008016
+20600000
+2034ca19
+37c18200
+20600000
+d9600ea0
+34730200
+20600000
+78487c00
+680143fc
+1fe21600
+20204a26
+79200025
+448a4022
+78287c00
+68010370
+680a4596
+98409600
+2040498e
+79200025
+448ac022
+20404985
+7856fc00
+7826fc00
+7830fc00
+78507c00
+19623600
+37c18400
+20374a33
+1b420400
+600b0099
+242c36c6
+20374a3a
+dd2001e0
+1c225000
+68008362
+c301ca3a
+2055bbed
+79200025
+448b4022
+20403a50
+7823fc00
+7824fc00
+09800008
+19897e00
+60008302
+09800008
+19897e00
+e0a08000
+1fe1723f
+2022ca4b
+09800008
+19897e00
+e0a08000
+c2004a47
+79200025
+448bc022
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+202336c6
+7836fc00
+68008017
+1fe0a200
+20403a13
+7846fc00
+202039b1
+79200025
+448c4023
+20404a65
+68088017
+204039b9
+204039bf
+78287c00
+d960157c
+20204a27
+20404a65
+202036c6
+79200025
+448cc023
+20404985
+20404993
+20404a6d
+6800c132
+c0055d8e
+20600000
+79202a00
+782efc00
+78307c00
+7850fc00
+20404a16
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+7823fc00
+7824fc00
+79200025
+448d4023
+6800c465
+08008608
+e8c08000
+1fe1723f
+08008608
+2022ca83
+e8c08000
+08008608
+c2004a80
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+20600000
+79200025
+448dc023
+6800c520
+c000ca9b
+6800c521
+1ff27e00
+1febfe00
+6000c465
+6808c400
+1840fe06
+6000c466
+6803453e
+60034467
+18427200
+d8c04401
+20407ec0
+20204aab
+680944f8
+20404f6a
+1a220a00
+58000001
+e0a08000
+6800c522
+1ff27e00
+1febfe00
+1fe0fe01
+6000c465
+5800000c
+6000c466
+6803453e
+60034467
+68034273
+e0a30000
+79200025
+448e4023
+68008000
+1fe0fe01
+60008000
+db600708
+7856fc00
+20204a5a
+79200025
+448ec023
+6800c53b
+c1808000
+68008000
+1fe0fe01
+60008000
+d8400c03
+6800c53c
+7d3a0406
+1a227e00
+7d3a0407
+60094465
+6803453e
+e0a30000
+68030372
+e0a30000
+20204a5a
+79200025
+448f4023
+d8400004
+6800c521
+7d3a0406
+6008c465
+6808c420
+1840fe06
+6000c466
+6803453e
+60034467
+d8c04421
+18427200
+20407ec0
+20204a63
+79200025
+448fc023
+18007fff
+38080001
+60028392
+204049ef
+18007204
+d8a00386
+20405918
+68014539
+60010390
+180a7e00
+1fe17e0f
+1fe67c04
+20214adf
+6000837b
+6000860a
+79200025
+44904024
+680943f7
+60090364
+18422600
+1c40fe07
+9a66fc00
+20407f53
+18072200
+9a267e00
+9a60fe00
+680943f5
+9840fe00
+60020366
+9c462200
+1a20a3fa
+da402205
+6800c532
+7d3a2406
+6800c52b
+7d3a2407
+1a427e00
+60014465
+6803453e
+e0a30000
+68030372
+e0a30000
+68020386
+e0a20000
+180a7e00
+e0a10000
+180a7e00
+e0a08000
+18007e02
+e0a08000
+1a2b7e00
+e0a10000
+1a6b7e00
+e0a10000
+79200025
+4490c024
+68014537
+e0a10000
+68014539
+e0a10000
+68028392
+e0a28000
+6800837b
+d84000a0
+9841fe00
+e0a08000
+20404a63
+58004465
+1fe08c12
+e8c18000
+6001838a
+20600000
+79200025
+44914024
+7854fc00
+202049bd
+68008362
+c4028000
+6801037c
+68090382
+98467e00
+24610000
+79200025
+4491c024
+6800c132
+c084cb2d
+70413101
+68008362
+793ffe05
+793ffe03
+60008362
+68020366
+68090364
+98462200
+79200025
+44924024
+6800c45b
+6000838d
+e8c90000
+e8c10000
+1febfe00
+60010364
+184b8400
+9840fe00
+e8ca0000
+600a038e
+9a20fe00
+60020366
+20205199
+79200025
+4492c024
+68008362
+c4030000
+6801037c
+68090382
+98467e00
+24610000
+68008362
+793ffe06
+60008362
+6802c456
+60028392
+202049ef
+79200025
+44934024
+20405179
+20404b66
+68008302
+1fe37e00
+9842fe00
+2feffe02
+7920800f
+68008303
+203a4b61
+68008362
+c3024b61
+204071b6
+20407122
+247a0000
+c6078000
+68088379
+79400402
+60088379
+20204fa5
+79200025
+4493c024
+68088379
+284c0005
+20608000
+68008302
+1fe3fe00
+9842fe00
+c4018000
+793f8405
+79400403
+60088379
+28400603
+24608000
+6800c467
+c002cb79
+6800c56b
+c0014b7d
+20600000
+68008362
+79207e04
+60008362
+20600000
+79200025
+44944025
+70456b00
+dfe00000
+60024496
+6002c48c
+79207e27
+6002c491
+68008362
+793ffe04
+60008362
+20600000
+79200025
+4494c025
+204049d4
+20404a1c
+68008001
+1fe0fe01
+60008001
+20600000
+79200025
+44954025
+6800c3f9
+c1808000
+d8e00003
+20407ee2
+247a0000
+680143fa
+680943fc
+98467e00
+d8e00003
+20407ed4
+7854fc00
+20404b1e
+20404b89
+24768000
+79200025
+4495c025
+68030304
+60030372
+68008002
+1fe0fe01
+60008002
+20404bb4
+20748000
+20404ab3
+24768000
+79200025
+44964025
+68008004
+1fe0fe01
+60008004
+6804830a
+60048100
+20600000
+79200025
+4496c025
+680083bf
+c18d8000
+68030372
+680b452c
+98467c00
+24628000
+2040327a
+24628000
+20404ad4
+204048f5
+79200025
+44974025
+70427100
+70039900
+7043f900
+7003bf00
+7009bd2c
+20404bd6
+20203260
+da200001
+68008302
+c3830000
+da200000
+20600000
+d8c04544
+20207fa8
+da204544
+20207fa2
+da204544
+20207fa4
+da204544
+20207fa6
+da204544
+20207f88
+79200025
+4497c025
+68008379
+c3828000
+6800c132
+c004cbe2
+da204544
+20407f95
+243a4bf1
+20204f87
+6800c8c8
+243a4be9
+68008362
+c3024bed
+68008303
+203a4bed
+20204f87
+6800c8c8
+1fe0ffff
+6000c8c8
+20204f87
+6800c56a
+c0814bf0
+7048c803
+20204bde
+1fe20400
+79200025
+44984026
+18427e00
+c302cc0d
+18000203
+793ffe05
+6000c467
+79200025
+4498c026
+6800c467
+c0004c54
+c000cc56
+c0014c58
+c001cc5a
+c0024c6b
+c002cc84
+c0034c86
+c003cc9c
+c0044ca0
+c004cca0
+c0054ca4
+c005cca4
+c0064ca6
+c006ccaa
+c007ccae
+c009cca4
+20203b31
+70446a00
+18000202
+c3034c26
+c0294c26
+c0694c26
+70446906
+793ffe06
+6000c46b
+79200025
+44994026
+6800c46b
+c000ccbb
+c0014cc3
+c001ccda
+c0024ce8
+c002cced
+c0034cf2
+c003cd10
+c0044d27
+c004cd2d
+c0054d32
+c005cd35
+c0064d39
+c006cd64
+20203b31
+70446904
+6000c46b
+79200025
+4499c026
+6800c46b
+c000cd6f
+c0014d75
+c001cd75
+c0024d78
+c002cd7d
+c0034d93
+c003cda7
+c0044dec
+c004cdf4
+c0054e58
+c005ce60
+c0064e77
+c006ce7c
+c0074e8b
+c007ce92
+c0084eb8
+c008cec0
+c0094f1e
+c009cf25
+c00b4f27
+c00bcf46
+c00c4f66
+c00ccf68
+c00dcf77
+c00ecf79
+c00f4f7b
+c0294f7d
+c0694f7f
+c04f4c4b
+c04fcc4d
+c00fcf29
+20203b31
+7009bd10
+20404bd6
+58000011
+60014465
+68008379
+79207e05
+60008379
+7009bd12
+20204bd6
+1800040c
+20204f89
+18000408
+20204f89
+18000402
+20204f89
+18007e00
+e0a40000
+e0a10000
+18a20400
+d8a04551
+18007208
+20405918
+68044551
+e0440000
+18a20400
+d8a0449a
+18007204
+20405918
+6802449a
+e0420000
+18000417
+20204f89
+18a20400
+d8a04559
+18007208
+20405918
+68044559
+e0440000
+18a20400
+d8a0449e
+18007204
+20405918
+6802449e
+e0420000
+204070c8
+6800c4b2
+c0004c7e
+7009bd25
+20404bd6
+1800040d
+20204f89
+70456b00
+7009bd2d
+20404bd6
+20407e29
+1800040d
+20204f89
+18000401
+20204f89
+18000401
+2034cf89
+6800c132
+c004cc92
+6800c56a
+c0814c8f
+7009bd46
+20404bd6
+20204c90
+70456b03
+18000401
+20204f89
+70413101
+6800c56a
+c0814c97
+7009bd46
+20404bd6
+70456b03
+18000401
+20404f89
+7048c201
+20600000
+6800c550
+e0a08000
+18000402
+20204f89
+58000001
+e0a40000
+18000409
+20204f89
+18000401
+20204f89
+6802c5a9
+e0a28000
+18000406
+20204f89
+58000006
+e0a08000
+18000402
+20204f89
+18a08bff
+5800000c
+e0a10000
+58000005
+e0a10000
+5800b412
+e0a10000
+58000008
+e0a10000
+6804458d
+e0a40000
+18000202
+20204f81
+59000401
+600244d5
+58070710
+e0a18000
+680344d6
+6003446c
+1800040b
+20204f89
+6800c132
+1fe67c0a
+2042ccd1
+6800c132
+c084cccd
+70474601
+6800c4da
+c280cccd
+58010010
+e0a18000
+680344dd
+6003446c
+1800040b
+20204f89
+6808c4e1
+6800c4da
+2feffe01
+79208401
+6008c4e1
+6808c4e2
+79208401
+6008c4e2
+20600000
+6800c563
+c000cce1
+204070c2
+d8a0446c
+204071c0
+18000415
+20204f89
+d8a044c3
+20405917
+20406ee7
+d8a0446c
+20406f24
+18000415
+20204f89
+68040352
+2034cceb
+680444c3
+20404d69
+20204f89
+70456a00
+dfe00008
+e0a08000
+18000406
+20204f89
+7009bd29
+20407d86
+7009bd47
+20404bd6
+6800c132
+c004cd01
+680444a2
+20404d69
+20404f89
+6800c52b
+c0003e7b
+68008377
+2fe180c0
+2020be7b
+20600000
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+680444a2
+20404d69
+20204f89
+6800c132
+c004cd22
+6800c4da
+c300cd17
+7009bd48
+20404bd6
+20204d19
+70456b03
+70456a03
+d8a04571
+1800720a
+20405918
+68014571
+6001446c
+68044573
+e0a40000
+1800040f
+20204f89
+d8a0446c
+18007208
+20405918
+1800040f
+20204f89
+7009bd49
+20404bd6
+58000000
+6004446c
+e0a40000
+20204f81
+6800c532
+6000c46c
+6803453e
+e0a30000
+20204f81
+d8a0446c
+20405917
+20204f81
+6800c4df
+6000c46c
+18000406
+20204f89
+680083da
+c001cd4e
+d8400041
+60094467
+79200025
+449a4026
+d8200002
+58000006
+60014469
+d8a0446c
+df200016
+d8c0465a
+20407ec0
+7003db16
+7044661b
+68088379
+79200404
+60088379
+7003da03
+68088379
+20204f93
+7003da00
+680083db
+c00b4d5e
+df20000f
+7044660f
+20404d58
+70456402
+70456603
+7003db00
+20600000
+d8c0465a
+98c08c00
+d8a04467
+20407ec0
+d8200001
+20204f90
+7003db31
+df20001b
+7044661b
+20404d58
+7003da03
+20600000
+20406e86
+d8a0446c
+20406f24
+18000415
+20204f89
+6004446c
+e8c40000
+e0a40000
+18000415
+20600000
+70039d0a
+70446b01
+6801839a
+6001c46c
+6800839d
+e0a08000
+20204f81
+6801454c
+e0a10000
+20204f81
+680144e3
+6001446c
+680144e5
+e0a10000
+20204f81
+d9600002
+18007e01
+6000c46c
+204051e0
+204051ea
+203a4d91
+24214d8e
+78547c00
+e0a10000
+e8c08000
+1fe27200
+20407ec0
+196097ff
+2022cd91
+e8c08000
+98c08c00
+20204d81
+e8c08000
+98c08c00
+20204d8b
+20344d6e
+20204f81
+680144e3
+203a4c4d
+6001446c
+680144e5
+e0a10000
+680144fb
+e0a10000
+680144e8
+e0a10000
+20204f81
+78547c00
+680944e3
+680144e5
+98467c00
+24214da4
+18427e00
+c1800000
+78347c00
+70039d01
+20204d6f
+20404d9d
+20740000
+680944fb
+58002800
+98467c00
+2022cdb7
+58002801
+98467c00
+2022cd6e
+58002802
+98467c00
+2022cd6e
+58002803
+98467c00
+2022cd6e
+20204d6e
+7003d900
+680944e3
+600909c6
+2040521a
+243a4d6e
+680909c6
+2040521a
+243a4dd0
+18c22200
+680083d8
+1fe27200
+6808c4e7
+98467c00
+2422cdcc
+da4044e8
+20407f55
+2022cdd3
+680103c8
+680944fb
+98467c00
+2022cddb
+680109c6
+1fe0fe01
+600109c6
+20204dbc
+680083d9
+c000cddb
+20204d6e
+680103c8
+680944fb
+98467c00
+2422cdcc
+7003d901
+680909c6
+600903c3
+20204dcc
+680083d9
+c0004dcc
+7003d902
+680909c6
+184085ff
+600903c5
+680103c3
+1fe22200
+680103c5
+1fe22400
+70446b07
+1a227e00
+6001446c
+1a427e00
+e0a10000
+18000409
+20204f89
+680144e3
+e0a10000
+680144e5
+e0a10000
+680144e8
+e0a10000
+1800040b
+20204f89
+680944e3
+600909c6
+204051e0
+204051f8
+18c08dfe
+18c27e00
+600103c1
+680944fb
+58002803
+98467c00
+2422ce3d
+d9600002
+79200025
+449ac026
+20404eff
+24214e13
+680909c6
+20405217
+c000ce13
+20404f0b
+2422ce11
+24344e15
+78547c00
+20404e28
+20404efb
+20405217
+20404e2f
+196097ff
+2022ce13
+20404efb
+20204e02
+20344d6e
+20204f13
+20404f0e
+20404efb
+20405217
+6800c46c
+c00ace13
+680083c7
+1fe0fe05
+6808c46c
+98467c00
+2422ce13
+20407e64
+680109c6
+1fe0ffff
+e0a10000
+20404f1a
+20404e2f
+196097ff
+2022ce13
+20204e11
+680109c6
+6001446d
+680083d8
+1fe27200
+20407e67
+20407ec0
+20207e6a
+20407e64
+680109c6
+e0a10000
+20407e6a
+680083c7
+1fe27200
+1fe0fe05
+6000c46c
+20407e64
+20407e67
+9f260c00
+18c08dff
+20407ec0
+20207e6a
+680944e3
+600909c6
+20404eff
+24214d6e
+20405217
+c000cd6e
+20404f0b
+2422ce56
+6800c4fa
+c0814e4d
+680144fb
+d8402a00
+98467c00
+2422ce4d
+6800c440
+20204e4e
+680083d8
+1fe27200
+1fe0fe02
+6000c46c
+680109c6
+e0a10000
+20407e67
+20407ec0
+20204f81
+20404efb
+20204e3f
+6800c464
+1fe0ffff
+6000c464
+1fe3fe00
+98c08c00
+e8c90000
+6009446c
+20204f81
+6800c5a8
+c3004e66
+6801039b
+6809458b
+98467c00
+2022ce71
+6809039b
+204051f5
+203a4d6e
+e8c08000
+203a4f81
+1fe67c16
+20214e6e
+18007e16
+1fe27200
+20407ec0
+20204f81
+6800c56c
+203a4e66
+68008362
+c2824e66
+70039d05
+20204d6f
+58000003
+6001446c
+58000008
+e0a10000
+20204f81
+680144e7
+98002200
+6809039b
+204051f5
+203a4d6e
+e8c08000
+9a267200
+24214d6e
+1f267c16
+20214e87
+18007216
+1a227e00
+98c08c00
+20407ec0
+20204f81
+58000003
+e0a10000
+58000007
+e0a10000
+58000009
+e0a10000
+20204f81
+6800c464
+1fe22600
+da200309
+da40446c
+d9600000
+7858fc00
+1a220c00
+e8c90000
+18c22200
+204051f5
+203a4eab
+e8c08000
+1fe27200
+99609600
+19667c18
+24214eb0
+1a420a00
+e8c08000
+e0a08000
+c2004ea3
+18a22400
+7838fc00
+1a60a7ff
+2022ceab
+20204e98
+2438ceb6
+7858fc00
+19620400
+18408405
+20204f89
+2438ceb6
+7858fc00
+19627e00
+9f260400
+18408405
+20204f89
+70039d10
+20204d6f
+6801039b
+203a4c4d
+e0a10000
+5800ffff
+e0a10000
+58002800
+e0a10000
+20204f81
+d9600002
+680144e3
+600109c6
+7003d900
+680944e3
+600909c6
+204051e0
+204051f8
+18c08dfe
+18c27e00
+600103c1
+79200025
+449b4026
+20404eff
+24214ef1
+680909c6
+20405217
+c000cef4
+20404f03
+2422ceed
+680083d9
+c000cef4
+24344edd
+78547c00
+680083d8
+1fe0fe04
+6000c46c
+20407e6a
+20204ee8
+6800c46c
+c00a4ef4
+680083d8
+1fe0fe04
+6808c46c
+98467c00
+2422cef4
+680109c6
+1fe0ffff
+600103c5
+20404f15
+680109c6
+600103c3
+20404f0e
+196097ff
+2022ceef
+20404efb
+20204ecd
+7003d901
+20204eed
+680109c6
+600103c5
+20204ef8
+680109c6
+1fe0ffff
+600103c5
+20204ef8
+20344d6e
+20404f15
+20204f13
+680909c6
+18408401
+600909c6
+20600000
+680909c6
+680144e5
+98467c00
+20600000
+6808c4e7
+da2044e8
+680083c7
+1fe27200
+98467c00
+24628000
+da4003c8
+20207f55
+6808c4fa
+da2044fb
+20204f05
+680083d8
+60008100
+1fe27200
+20407e67
+20207ec0
+20407e64
+20204f81
+20407e64
+680103c3
+e0a10000
+680103c5
+e0a10000
+68008100
+1fe27200
+20407ec0
+20207e6a
+680144f8
+6001446c
+6800c50b
+1fe27200
+d8c0450c
+20407ec0
+20204f81
+18000405
+20204f89
+18000406
+20204f89
+680083da
+c000cf2e
+c0014f30
+7003da00
+20600000
+6801429e
+20207f69
+680145a0
+203a3b31
+680945a6
+203a3b31
+98467e00
+d840001b
+20407faf
+1fe27200
+da200a41
+680145a6
+9a20a200
+9f20fe00
+600145a6
+680945a0
+98460400
+2442cf5e
+7003da02
+d8a04467
+1a220c00
+20407ec0
+d8200001
+20204f59
+680145a0
+203a3b31
+1fe08405
+60094467
+d8400012
+20407faf
+1fe27200
+600145a6
+680945a0
+98460400
+2442cf5e
+7003da02
+d8200002
+680145a4
+6001446c
+680145a2
+e0a10000
+d8c00a41
+20407ec0
+58004467
+98a67e00
+1fe60400
+6008c466
+20204f90
+6801c544
+243a4f62
+7045461f
+20600000
+20404bd4
+243a3b31
+7045451f
+20600000
+18000406
+20204f89
+18000405
+20204f89
+79200025
+449bc026
+18408401
+204051f5
+18c08dfe
+e8c10000
+d8402902
+98467c00
+24628000
+18c08c01
+18c22200
+e8c08000
+20600000
+6801429c
+20207f69
+18000406
+20204f89
+18000406
+20204f89
+18000406
+20204f89
+18000406
+20204f89
+79200025
+449c4027
+58004467
+98a67e00
+1fe60400
+20204f89
+18000400
+18000201
+79200025
+449cc027
+6008c466
+28200602
+2420cf90
+1840fffc
+60014467
+68088379
+20404bd0
+7d3a0404
+79200405
+18417efc
+9821fe00
+60008379
+1fe17e1f
+6000c465
+79200025
+449d4027
+6800c465
+28200601
+2420cfa0
+6800c466
+207a0000
+6803c466
+68008362
+c4020000
+204071b6
+20207109
+79200025
+449dc027
+20404bd2
+243a3b31
+247a0000
+68008303
+207a0000
+68008302
+2fe00601
+2020d307
+68038303
+68008302
+2fe00602
+2020cfcb
+68008304
+600083bb
+1fe22600
+79200025
+449e4027
+1a627e00
+c000501f
+c000d02b
+c0015033
+c001d039
+c002504a
+c002d04f
+c0035054
+c003d059
+c004505a
+c004d05c
+c005505d
+c005d062
+c0065065
+c006d068
+c0095063
+6000c550
+7009bd27
+20204bd6
+68008303
+1fe17e1f
+207a0000
+68010304
+6001039e
+68010306
+c002500d
+c0034ffb
+20600000
+70456901
+6800839a
+c0094fea
+c00b4fee
+c0294fe6
+70456900
+20600000
+68008303
+1fe22400
+da200304
+2040516d
+68008303
+6809459a
+9840fe00
+6001459a
+6809459c
+98467c00
+20600000
+20404fdb
+24628000
+70456900
+20600000
+20404fdb
+24628000
+70456900
+20205123
+680945a0
+68008303
+1fe27200
+9840fe00
+600145a0
+dfe00a41
+98408a00
+d8c00304
+20407ec0
+20404fdb
+24628000
+70456900
+20205169
+79200025
+449ec027
+e8c08000
+c000d069
+c001508b
+c001d090
+c00250a0
+c002d0a8
+c00350d5
+c003d0d7
+c00450d8
+c004d0e0
+c00550e3
+c005d0e4
+c00650c9
+c006d0d0
+7009bd45
+20204bd6
+79200025
+449f4027
+e8c18000
+6001839a
+c00150e8
+c001d0e5
+c00250eb
+c00350ee
+c00450f8
+c005510c
+c0065110
+c0075114
+c008511a
+c0095120
+c00b5142
+c00c516b
+c029511e
+20600000
+e8c48000
+6004c45b
+e8c10000
+60010382
+68008362
+79207e05
+60008362
+6800c132
+c1848000
+70413100
+7048c71e
+20600000
+e8c28000
+6002c456
+e8c10000
+60010382
+68008362
+79207e06
+60008362
+20600000
+6800c132
+c084d036
+7048bb01
+58000014
+60010390
+20600000
+e8c40000
+60044573
+e8c10000
+60014571
+e8c40000
+60044551
+e8c20000
+6002449a
+7009bd24
+20404bd6
+70456b01
+6800c56a
+c1010000
+6800c132
+c004e418
+c1850000
+2020640c
+e8c40000
+60044559
+e8c20000
+6002449e
+202070c8
+68008362
+79207e04
+60008362
+7009bd26
+20204bd6
+20748000
+7009bd26
+20404bd6
+7009bd32
+20207d86
+20600000
+7009bd29
+20204bd6
+20600000
+70456b02
+7009bd2b
+20404bd6
+7009bd33
+20207d86
+20600000
+7009bd33
+20204bd6
+20748000
+7009bd2c
+20204bd6
+20600000
+6000c4d5
+e8c30000
+e0a30000
+7009bd42
+20404bd6
+6800c132
+c004d07b
+20405086
+70456a01
+6800c4d6
+c0005078
+c000d078
+c001d078
+6800c56c
+c001507d
+dfe00000
+6002456d
+20600000
+7048ba01
+20600000
+da20456d
+1a220a00
+df200003
+20405918
+6801456f
+1fe17e07
+6001456f
+7009bd34
+20207d86
+6800c4d8
+c3818000
+6800c56c
+c4038000
+20203e6b
+6000c4dc
+e8c30000
+e0a30000
+7009bd43
+20204bd6
+18c22200
+6800c56c
+c041d09a
+1a220c00
+d8a044b3
+20407e87
+7009bd44
+2034cbd6
+7009bd43
+20204bd6
+1a220c00
+d8a044b3
+20407e87
+70456402
+70456608
+20600000
+18c22200
+6800c563
+c000d0ab
+1a220c00
+204070ba
+2022d0c0
+7009bd45
+20404bd6
+70456a00
+7009bd30
+20207d86
+d8a00352
+1a220c00
+20407e87
+6800c56c
+c041d0b6
+20406e6e
+7009bd44
+20404bd6
+6800c56c
+c0415d60
+20600000
+20406edc
+d8a00a11
+20406f24
+da200a11
+da4044b3
+df200010
+20407f55
+2422d2d8
+7009bd44
+20204bd6
+204070b5
+7009bd31
+20407d86
+7044b201
+70456a02
+7009bd23
+2034cbd6
+7009bd44
+20204bd6
+68008303
+1fe0fffb
+600083db
+1fe27200
+d8a008e2
+18c08c05
+20207ec0
+d8a00992
+20407e87
+70456606
+70456402
+20600000
+d8a00342
+20207e87
+20600000
+d8a0457b
+20407e87
+6800c52b
+c1000000
+68008377
+2fe180c0
+20608000
+20203e7b
+70456b03
+70456a03
+20600000
+20600000
+20600000
+68010309
+6001454e
+20600000
+204050e5
+7009bd03
+20204bd6
+204050fc
+7009bd05
+20204bd6
+204050fc
+e8c10000
+600144fb
+20407e6d
+d8a044e7
+6801039e
+1fe0fff9
+20405105
+7009bd07
+20204bd6
+204050fc
+20405109
+7009bd09
+20204bd6
+1fecfe00
+600144e3
+e8c10000
+600144e5
+20600000
+20407e6d
+d8a044e7
+6801039e
+1fe0fffb
+e0a08000
+1fe27200
+20407e67
+20207ec0
+20407e6d
+d8a044fa
+20205103
+68010309
+6001039b
+7009bd0b
+20204bd6
+e8c10000
+600144e7
+7009bd0d
+20204bd6
+68008303
+1fe0fffb
+1fe37e00
+6000c464
+7009bd0f
+20204bd6
+204050fc
+20405101
+7009bd11
+20204bd6
+2040512f
+20205125
+2040512f
+20405125
+24628000
+7009bd13
+20204bd6
+68008303
+1fe0fffc
+6001459a
+1fe0fffd
+e8c90000
+6009459c
+6009459e
+184085fd
+98467c00
+20600000
+68008303
+1fe0fff9
+1fe27200
+1f222400
+6800c5a8
+c300d140
+6809039b
+204051f5
+207a0000
+e8c08000
+9f267c00
+2021513c
+1fe27200
+18c20a00
+1f222400
+d8c0030b
+20407ec0
+da20030b
+2020516d
+68008303
+1fe0fffc
+6001459a
+e8c90000
+6009459c
+184085fe
+6009459e
+68008303
+1fe0fff7
+600145a0
+1fe27200
+1f222400
+6800c5a8
+c300d15b
+6809039b
+204051f5
+203a5169
+e8c08000
+9f267c00
+20215157
+1fe27200
+18c20a00
+1f222400
+d8c0030d
+20407ec0
+1a427200
+d8a00a41
+d8c0030d
+20407ec0
+da20030d
+6801030b
+600145a2
+6809039b
+600945a4
+2040516d
+6801459a
+6809459c
+98467c00
+24628000
+7009bd17
+20204bd6
+7009bd19
+20204bd6
+6801429a
+207a0000
+98007a00
+680a037e
+20403b1e
+98461600
+19627e00
+68090390
+18520400
+18438400
+98467e00
+20600000
+20403b1e
+6002037e
+20600000
+70001624
+79200025
+449fc027
+6800c3ff
+207a0000
+d8e00001
+20407ee2
+247a0000
+7854fc00
+78287c00
+20404b1e
+204049d4
+20404a8a
+2436d193
+68008003
+1fe0fe01
+60008003
+79200025
+44a04028
+68008302
+1fe17e0f
+c001cac5
+c002d1af
+20002710
+68008016
+c093d17d
+d8e00001
+6801451e
+20207ed4
+79200025
+44a0c028
+68008399
+204049ad
+68010364
+984ffe00
+d8400177
+984ffe00
+d84186a0
+9846fc00
+6800838d
+d8404e20
+984ffe00
+60024596
+79200025
+44a14028
+68014161
+20407f53
+18078400
+9840fe00
+60010370
+20600000
+79200025
+44a1c028
+6803030a
+680b453e
+98467c00
+24628000
+20404bc9
+1a227e00
+6000c52b
+68038317
+60038100
+e8c40000
+e0a40000
+68030304
+60030372
+79200025
+44a24028
+18c08c06
+e8c40000
+60040386
+e8c90000
+184b8400
+e8c10000
+1febfe00
+60010364
+60020366
+98467e00
+1fe0d1fe
+e8c48000
+6004838e
+79200025
+44a2c028
+e8c08000
+1ff18400
+18430400
+60088399
+1fe17e1f
+6000837b
+20405199
+204049ef
+20404902
+2040327a
+24628000
+79200025
+44a34028
+204038d1
+7009bd14
+20407d86
+20203260
+79200025
+44a3c028
+680144e3
+98002400
+680144e5
+98002600
+68014637
+98000c00
+78347c00
+20600000
+e8c10000
+207a0000
+9a467c00
+24610000
+9a667c00
+20628000
+202151f3
+18007c01
+20600000
+18007e00
+20600000
+204051f8
+2022d205
+20600000
+79200025
+44a44029
+68014637
+98000c00
+e8c10000
+207a0000
+98467c00
+20628000
+e8c08000
+98c08c00
+e8c08000
+98c08c00
+202051fc
+e8c08000
+98c08c00
+20600000
+79200025
+44a4c029
+68014637
+98000c00
+e8c10000
+207a0000
+e8c08000
+98c08c00
+18c08dfe
+e8c10000
+98467c00
+20628000
+e8c08000
+98c08c00
+2020520c
+680103c1
+1fe20c00
+2020521b
+79200025
+44a54029
+68014637
+98000c00
+18422200
+e8c10000
+203a5228
+9a267c00
+2022d22a
+e8c08000
+98c08c00
+e8c08000
+98c08c00
+2020521f
+58000001
+20600000
+e8c08000
+600083c7
+1fe27200
+d8a003c8
+20407ec0
+e8c08000
+600083d8
+20407e6d
+58000000
+20600000
+79200025
+44a5c029
+20405238
+2020524a
+d8402a00
+20405208
+207a0000
+e8c08000
+18c20a00
+6808c440
+18427200
+98467c00
+24215247
+98460400
+d8c04441
+20407ecd
+18427200
+2442d283
+20600000
+1fe27200
+d8c04441
+20207ec0
+da604420
+da204401
+20405257
+58000000
+79347e00
+600089be
+da604440
+da204421
+20405257
+20740000
+680089be
+203a3b31
+20600000
+79200025
+44a64029
+204064c0
+20407ea5
+da400000
+d8a009e2
+20405272
+6800c440
+1fe08401
+9a40a200
+1a20a202
+1a267c1f
+24215270
+e0a88000
+d8400009
+e0a88000
+98007200
+20407ec0
+1a222400
+1a427e00
+600089e1
+d8c009e1
+5fffffe0
+9a608a00
+20207e85
+204031d4
+2020526a
+ea208000
+207a0000
+1fe0fe01
+e8c88000
+18467c09
+2022d281
+9a40a400
+1a220c00
+98007200
+20407ec0
+18c22200
+1a227e00
+9a667c00
+20610000
+20205272
+9a20a200
+2020527d
+58000020
+e0a08000
+c2005283
+20600000
+79200025
+44a6c029
+7855fc00
+2037528c
+2436d29a
+20403cb7
+68014161
+60010370
+68008302
+2fe00601
+2420bccb
+6800c465
+2fe00601
+2420bccb
+680142a2
+20407f69
+68008362
+c282bccb
+20203cb0
+68094161
+18430400
+68010370
+9840fe00
+60010370
+20203cc3
+79200025
+44a74029
+70459500
+680944f8
+20404f6a
+1a220a00
+58000000
+e0a08000
+20600000
+6800c563
+c1000000
+6800c564
+c1810000
+79200025
+44a8402a
+70456400
+6800c566
+c000d2e8
+c00152f0
+c001d2e1
+c00352ca
+c003d2c2
+c00452b8
+20600000
+6800c6eb
+1fe20e00
+1fe0fe01
+6000c6eb
+6802456d
+afefffff
+58000080
+7920fe00
+6000c6ec
+202052e4
+6800c567
+70456700
+c000d2c7
+70456402
+20600000
+70456a02
+7009bd4d
+20204bd6
+680088dd
+c001d2ce
+70456402
+20600000
+20406eae
+6800c56c
+c041d2d9
+20405078
+20406e9a
+da200a11
+da400992
+df200010
+20407f55
+2022d2da
+202050a6
+202052d2
+7044b201
+6800c56c
+c040d2c7
+c041d2c7
+70456402
+70456607
+20600000
+6800c56c
+c041d2e6
+7046ec00
+7009bd43
+20204bd6
+7046eb00
+2020507d
+70456402
+6800c568
+c001d2ec
+20600000
+7008dd00
+20407ab9
+70456602
+20600000
+20404bd0
+203a52f4
+70456402
+20600000
+7009bd4c
+20404bd6
+7009bd4c
+20404bd6
+7009bd4c
+20204bd6
+dfe008e2
+680883db
+98408a00
+68008303
+1fe27200
+98408400
+20407ec0
+600883db
+18427e00
+c1a00000
+70456402
+70456601
+20600000
+79200025
+44a8c02a
+680083db
+c08052fa
+20204fd4
+20758000
+79200025
+44a9402a
+58000000
+60008048
+60008055
+60008078
+6000807c
+6000c1f8
+600083fd
+6000816c
+600088d9
+7045f400
+70024d00
+7003fe00
+7008d900
+7008d800
+7003f700
+20600000
+79200025
+44a9c02a
+2054d90a
+2454d90e
+204058c5
+247a0000
+6800804c
+c4030000
+793ffe06
+793f8001
+6000804c
+68008475
+6808804c
+2feffe00
+79208401
+6008804c
+18410402
+6008807f
+6808804c
+1fe37e00
+6000807d
+79200025
+44aa402a
+6800807d
+c03fd37f
+c001d3cb
+c00253dd
+c01e5372
+c002d36e
+c007d5bf
+c0085440
+c011d45e
+c01cd5d8
+c01c55d3
+c018d443
+c01bd4cc
+c013d4c8
+c019d4c5
+c012d4ca
+c013545a
+c003d452
+c016d449
+c017544a
+c000d4c1
+c00154ac
+c01455ca
+c004d4a2
+c005d47b
+c004545f
+c0065486
+c00fd456
+c0105458
+c010d4e6
+c01154e6
+c01ad4e7
+c01b54e8
+c01254e6
+c01a54e9
+c00bd4f2
+c008d509
+c009550d
+c009d50f
+c006d521
+c0075521
+c017d4c6
+c0185521
+c0055521
+c00c5522
+c0195521
+c01ed527
+c01f5568
+c01fd562
+c020558f
+c020d5a1
+c00355be
+c01d5370
+70007e19
+70007c04
+20600000
+70007c06
+20600000
+70007c3b
+20600000
+68020476
+1fe3fe00
+60024172
+6800847a
+6000c179
+6802847b
+6002c187
+68028480
+e0a28000
+68008031
+79207e03
+60008031
+20600000
+79200025
+44aac02a
+68008476
+79207e07
+6000807d
+c040d3a2
+c04153a7
+c04ad4cd
+c04b54e6
+c045d4db
+c041d3bf
+c04253c1
+c0485394
+c04bd3b8
+c04c53bd
+c04cd397
+c04d539a
+c1420000
+70007c82
+70007e19
+20600000
+70007c82
+70007e2e
+20600000
+2040539c
+70007c9a
+20600000
+2040539c
+202053a0
+d8a046e6
+68018477
+e0a18000
+20600000
+2020f6f3
+20600000
+68008478
+79207e07
+600083ef
+c045d3ac
+20600000
+68008478
+79207e07
+600083ef
+c045d3b0
+20600000
+6800c1fa
+6808804c
+7d3a0405
+6008804c
+68008030
+c4028000
+793ffe05
+60008030
+680083fd
+247a0000
+70007c31
+20600000
+2434d3bb
+70007c12
+202058f6
+70007c97
+20600000
+204058f6
+20205615
+70007c84
+20600000
+68088479
+18410401
+600883f6
+6800c271
+c0a8d3c7
+70427100
+68008055
+c18a8000
+70005504
+20205926
+79200025
+44ab402a
+68008476
+600083ef
+c019d3f4
+c0045403
+c007d40a
+c0085410
+c008d411
+c0095419
+c00c542f
+c00bd432
+c009d3eb
+c01ed535
+c01f5581
+c0205537
+c020d554
+20600000
+79200025
+44abc02a
+68008476
+600083ef
+c000d426
+c019d3fe
+c005d41a
+c004541d
+c009d3ee
+c0205427
+c020d42a
+c00c542d
+c00bd43e
+20600000
+7009bd20
+20407d86
+2020320a
+7009bd19
+20407d86
+7045f402
+58000050
+d8e0000a
+20207ed4
+680083f7
+79207e00
+600083f7
+7009bd01
+20407d86
+70007c8b
+68008055
+c082d31e
+70005506
+20600000
+7003f00b
+70007c07
+70005500
+2020d31e
+20600000
+6800c25d
+247a0000
+204034a9
+20405613
+20748000
+79200021
+20600000
+24748000
+70007c10
+6800804c
+c4010000
+70007c12
+20600000
+20205615
+20405672
+68008030
+c3820000
+70007c31
+68008055
+c1850000
+7000550b
+20600000
+20600000
+70007c07
+7003f013
+20600000
+68008477
+c0035423
+c18c0000
+7003f018
+70007c07
+20600000
+7003f006
+70007c07
+20600000
+20600000
+7008d200
+70007c07
+2020531e
+7008d200
+70007c07
+2020531e
+7009bd24
+20207d86
+7009bd23
+20407d86
+2020376a
+7009bd22
+20407d86
+58000000
+60010075
+68014284
+1fe3fe00
+60010032
+6800c286
+60008073
+6800c288
+60008074
+20203746
+7009bd21
+20207d86
+68088476
+60088054
+20205454
+680083f7
+79207e02
+600083f7
+c3818000
+70007c31
+2020531e
+20600000
+6800c170
+68088476
+98467c00
+20215454
+70007c04
+70007e1f
+70007d2e
+20600000
+20405764
+20205454
+70007c03
+20600000
+70007c21
+20600000
+70007c22
+20600000
+68008055
+c1098000
+70005502
+20600000
+20600000
+20405610
+7003fa01
+7009bd0a
+20407d86
+204058fe
+2420d618
+2434d46a
+70007c04
+70007d08
+70007e23
+20600000
+6800804b
+79207e02
+6000804b
+20600000
+6808804c
+7d3a0401
+6008804c
+20600000
+6800807f
+1fe37e00
+1fe17e01
+20600000
+6800c132
+c1850000
+680088d9
+205a6402
+20600000
+20405476
+20405472
+600083fb
+20405610
+70007c0c
+6800c25d
+247a0000
+68008030
+c3830000
+70007e06
+2020536c
+da200040
+20406fad
+68020476
+680a04b6
+98467c00
+2022d48f
+70007c07
+7003f005
+20600000
+20405493
+6800c6e2
+203a5555
+20600000
+204070ab
+204031da
+6800804b
+2feffe01
+793ffe01
+6000804b
+68008055
+c00cd49d
+c00c549d
+20600000
+680088d9
+c1800000
+6800804c
+c3810000
+202059bd
+da200476
+da4004a6
+d8a00486
+20407077
+da200040
+2040591c
+70007c0b
+68008030
+c3035613
+20600000
+6801015e
+1fe0f3fd
+68088476
+58000100
+98408a00
+d8c00478
+20407ecd
+68088053
+68008477
+98467e00
+1fe67c0e
+202154bc
+1840fe0e
+60008053
+70007c01
+20600000
+6800804c
+79207e03
+6000804c
+c282561d
+20600000
+68008476
+6000807d
+70007c02
+20600000
+20205454
+70007c30
+20600000
+70007c28
+20600000
+70007c26
+20600000
+20600000
+68010032
+98000400
+68008477
+60008094
+984f8400
+68010478
+1fe3fe00
+60010095
+6802047a
+1fe3fe00
+60020090
+18427e00
+60010097
+20600000
+6808c1fa
+68008477
+9842fc00
+2422d391
+2feffe00
+6800804c
+7920fe05
+6000804c
+70007c81
+70007d8b
+20600000
+20600000
+20205454
+20205454
+68010476
+60010170
+20600000
+68010479
+6808c212
+984ffe00
+d8400640
+98467c00
+20600000
+204054ec
+20215507
+68008030
+c280d507
+68010477
+1fe3fe00
+60010075
+68010479
+1fe3fe00
+60010032
+6801047b
+60008073
+98000400
+6801047d
+60008074
+98467c00
+24215504
+60008073
+70007c03
+70007d17
+20600000
+70007e24
+2020536c
+20405454
+20405610
+20406fb0
+20203736
+20405454
+2020373f
+68020476
+1fe3fe00
+2034d51b
+6808c25d
+243a5518
+70007c04
+70007d13
+70007e24
+20600000
+70007c34
+70005500
+20203206
+20403206
+79200022
+6800816c
+793ffe02
+6000816c
+20205454
+20600000
+70007c03
+70007d18
+7009bd2e
+20407d86
+2020376a
+68008476
+c080d533
+68008477
+c080d533
+68008478
+c0985533
+20405907
+2020d530
+7008d201
+70007c03
+70007d3d
+2020531e
+70007e24
+2020536c
+70007c3e
+20600000
+6800c6ea
+c000d53e
+c0015542
+20405907
+20608000
+7008d208
+20600000
+2040797f
+7009bd35
+20407d86
+2020553a
+20405907
+20608000
+6800c6eb
+c009d552
+1fe0fe01
+6000c6eb
+7008d401
+7008d204
+6800c6eb
+1fe20e00
+68034719
+afefffff
+58000080
+7920fe00
+6000c6ec
+20600000
+7008d208
+20600000
+2040555a
+6800c6ed
+207a0000
+7046ed00
+7009bd38
+20207d86
+20405907
+2440f982
+2040f992
+20405907
+20608000
+7008d20c
+7008d401
+20600000
+d8a00992
+d8c00476
+20407e87
+6800c6ea
+c1010000
+202076f3
+680088d3
+c003d56c
+680088d2
+c080d57f
+680088db
+1fe60a20
+2421557f
+d8a008ea
+98a08a00
+68040476
+e0a40000
+6804047e
+e0a40000
+680088db
+1fe0fe10
+600088db
+c0985454
+20405907
+2020d454
+7008dc01
+7008d202
+7008d401
+20205454
+70007e24
+2020536c
+680088da
+c0185585
+70007c3e
+2020531e
+20405907
+2020d58e
+6800c6ea
+c001558c
+7008d401
+7008d204
+2020531e
+7009bd36
+20207d86
+2020531e
+680088d3
+c003d593
+680088d2
+c083559f
+d8a00952
+68040476
+e0a40000
+6804047e
+e0a40000
+20405907
+2020d59d
+7008d207
+7008d401
+20205454
+7008d304
+202076f3
+70007e24
+2020536c
+680088d3
+c005d5a5
+680088d2
+c08455b4
+d8a00982
+d8c00476
+20407e87
+20405907
+2020d5b1
+6800c6ea
+c000d5b6
+7046e900
+7008d209
+7008d401
+70007d41
+2020531e
+7008d309
+7008d501
+2020531e
+70007e24
+2020536c
+6800c6e9
+c283d5bb
+79207e06
+6000c6e9
+20600000
+c28055ac
+7046e900
+202055b4
+2020531e
+6800816c
+793ffe01
+6000816c
+20405454
+24748000
+68008476
+6808804b
+793a0404
+7d3a0405
+6008804b
+20600000
+680c0476
+68008055
+c1818000
+6800816c
+c30255d1
+70005514
+20600000
+70005504
+20600000
+6800817e
+6000815a
+70007c03
+70007d38
+20600000
+70007c03
+70007d39
+18007209
+d8c00476
+d8a00151
+e8c08000
+1fe2fe55
+e0a08000
+c20055dd
+68008151
+68088150
+793f8407
+793f8404
+c07fd5f1
+c000560a
+c002d5fe
+c003d5fd
+c00355fe
+c00455fd
+c000d5f6
+c00155f6
+c001d5f6
+c004d5f6
+c00255f6
+20600000
+68008150
+79207e03
+79207e02
+60008150
+20600000
+79200404
+70017f05
+68010158
+98007200
+6001015e
+d8a00475
+20407f40
+79200407
+79200402
+18007e00
+6000800b
+600100f9
+600100fb
+600100f7
+600100f5
+68008152
+2fe1fe00
+79208406
+60088150
+20600000
+793f8011
+70015000
+6800817e
+793ffe06
+6000817e
+20600000
+d8c00476
+d8a00486
+20207e87
+70007c09
+20600000
+24748000
+70007c11
+20600000
+da204140
+20406f7a
+70007c03
+70007d08
+20600000
+7000720a
+70007c07
+7003f016
+20600000
+79200025
+44ac402b
+78547c00
+204058ca
+68008048
+207a0000
+c283d657
+c000d77c
+c00156ef
+c001d662
+c0025679
+c013d7e4
+c0145713
+c01856ff
+c012d7df
+c013570e
+c018d7ce
+c01bd777
+c019d769
+c0045862
+c004d858
+c005d86d
+c0065876
+c007d76f
+c008589b
+c008d891
+c003d75f
+c015578b
+c005578c
+c00fd7c9
+c0035704
+c010d76c
+c016d7bf
+c01757c4
+c011576c
+c01a578d
+c009d7a2
+c00bd7b1
+c0095898
+c017d7b7
+c00c57bc
+c01ed808
+c01f5814
+c01fd826
+c0205830
+c020d845
+c011d854
+c01dd84f
+c002d855
+c014d856
+c01c5857
+c01cd782
+20203b31
+20600000
+c040d686
+c04256b2
+c041568f
+c041d718
+c045d723
+c04bd75b
+c04cd6e0
+c04d56bd
+c04ad6e5
+c04b56e6
+20203b31
+18007e02
+204058a1
+68008049
+e0a08000
+204058b0
+79200025
+44acc02b
+68008049
+c0045699
+c007d69d
+c00856a8
+c00bd678
+c019d6ab
+c020d6b1
+c008d672
+20600000
+68008055
+207a0000
+7000551b
+5800000c
+d8e0000b
+20207ed4
+20203746
+18007e03
+204058a1
+68008049
+c005d681
+e0a08000
+6800804a
+e0a08000
+202058b0
+e0a08000
+6800804a
+e0a08000
+d84003fb
+202058ec
+18000e04
+204058a9
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+68008049
+202058b0
+18000e05
+204058a9
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+6800804a
+e0a08000
+202058b0
+204034a9
+204058fe
+20608000
+20205613
+6800804b
+c282d6a4
+c4020000
+70007c12
+793ffe04
+204058f6
+202056a6
+70007c10
+793ffe05
+6000804b
+20600000
+20405907
+2020d615
+20600000
+70007c8b
+680083f7
+79207e00
+600083f7
+7009bd01
+20207d86
+20600000
+18000e0c
+204058a9
+58000001
+e0a08000
+680103f4
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202058b9
+18000e05
+204058a9
+6801c6e3
+e0a18000
+204058b9
+7046ed01
+6800c6e3
+c000d6ce
+c00156c8
+c001d6d4
+20600000
+6800c6e6
+c00056de
+c000d6de
+c00156de
+c001d6da
+20600000
+6800c6e6
+c00056da
+c000d6dc
+c00156de
+c001d6da
+20600000
+6800c6e6
+c00056da
+c000d6da
+c00156da
+c001d6da
+20600000
+7046ea03
+20600000
+7046ea01
+20600000
+7046ea02
+20600000
+18000e05
+204058a9
+6801c6e3
+e0a18000
+202058bb
+20600000
+18000e09
+204058a9
+68008094
+e0a08000
+68010095
+e0a10000
+68020090
+e0a20000
+202058b9
+18007e11
+204058a1
+68008049
+1fe20400
+c00056f7
+c00756f7
+c00e56f7
+20600000
+e0a08000
+6800c5ae
+e0a08000
+df20000e
+580045af
+98408c00
+20407ecd
+202058b9
+18007e03
+204058a1
+58000114
+e0a10000
+202058b9
+18007e03
+204058a1
+68020164
+9c467e00
+2034d70a
+1fe67e00
+1feb7e00
+793ffe0f
+e0a10000
+202058b9
+18007e06
+204058a1
+6802c5a9
+e0a28000
+202058b9
+18007e09
+204058a1
+68044138
+e0a40000
+202058b9
+18000e0c
+204058a9
+58000001
+e0a08000
+680103f4
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202058bb
+18000e03
+204058a9
+6800c1fa
+e0a08000
+78547c00
+204058bb
+24740000
+24748000
+6800c178
+c4000000
+2040573f
+20205749
+79200025
+44ad402b
+6800c13e
+79207e03
+6000c13e
+58000101
+600103f4
+20600000
+79200025
+44adc02b
+6800c13e
+793ffe03
+6000c13e
+58000000
+600103f4
+20600000
+70417803
+58000000
+600241e2
+d8a0417a
+2040574d
+d8a04187
+2040574d
+d8a041e6
+2040574d
+20205754
+d8a04187
+2040574d
+20405754
+20205757
+58ffffff
+e0a18000
+e0a18000
+e0a18000
+5800007f
+e0a08000
+20600000
+58000000
+60014176
+20600000
+6800c178
+79207e02
+6000c178
+20600000
+18000e02
+204058a9
+2434d8b9
+202058bb
+18007e02
+204058a1
+680083f0
+e0a08000
+204058bb
+6800804b
+79207e03
+6000804b
+70007232
+20600000
+18007e01
+204058a1
+202058bb
+18007e01
+204058a1
+202058b9
+18007e02
+204058a1
+6800804c
+2fec0002
+7920fe00
+1fe17e01
+e0a08000
+202058bb
+18007e03
+204058a1
+68010051
+e0a10000
+202058bb
+700072fa
+18007e02
+204058a1
+68008053
+e0a08000
+202058bb
+18007e0a
+204058a1
+d8c00151
+18007209
+e8c08000
+1fe2fe55
+e0a08000
+c2005786
+202058bb
+202058bb
+202058bb
+20748000
+204038bc
+18007e09
+204058a1
+68010170
+e0a10000
+6801c140
+e0a18000
+6800c143
+e0a08000
+68014144
+e0a10000
+c581d79e
+793f8003
+204058bb
+70007c13
+20600000
+204058b9
+70007c03
+70007d13
+20600000
+d8400200
+2034d7a6
+1d027e00
+202057a7
+1c427e00
+1c227e00
+9840fe00
+1fe17ffc
+60020034
+18007e05
+204058a1
+68020034
+1fe37e00
+e0a20000
+202058bb
+18007e0a
+204058a1
+d8c003ff
+e8c48000
+e0a48000
+202058bb
+18007e03
+204058a1
+58000114
+e0a10000
+202058bb
+18007e01
+204058a1
+202058bb
+18007e02
+204058a1
+6800c170
+e0a08000
+202058bb
+18007e02
+204058a1
+58000005
+e0a08000
+202058bb
+18007e02
+204058a1
+58000000
+e0a08000
+202058bb
+70007c2e
+68008030
+79207e04
+60008030
+1c427e00
+6002040f
+680083f7
+c281d7dd
+79207e03
+600083f7
+7009bd05
+20407d86
+18007e01
+204058a1
+202058bb
+70004800
+20600000
+18007e06
+204058a1
+6802c5a9
+e0a28000
+202058bb
+18007e09
+204058a1
+68044138
+e0a40000
+202058bb
+7008d501
+6800c639
+c1808000
+7008d313
+20600000
+204058fa
+70007c99
+7008d303
+20600000
+204058fa
+70007c3d
+7008d307
+20600000
+da200972
+da400992
+df200010
+20407f55
+2022d800
+7008d300
+204076f5
+70007e24
+70007d40
+2020536c
+7008d30a
+204076f3
+70007d40
+20205454
+70007c40
+20600000
+70007c3d
+20600000
+7008da00
+18007e04
+204058a1
+18007e01
+e0a08000
+18007e01
+e0a08000
+18007e30
+e0a08000
+20405907
+2020d8bb
+202058b9
+18007e11
+204058a1
+680088da
+d8c046b2
+98c08c00
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+680088da
+1fe0fe10
+600088da
+20405907
+2020d8bb
+202058b9
+7008d206
+70007c3f
+20600000
+18007e11
+204058a1
+d8c00972
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+202058b9
+70007c40
+20600000
+20405907
+2040f628
+18007e11
+204058a1
+d8c00942
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20405907
+2420d8b9
+2020d8bb
+7008d30f
+204058fa
+70007c0b
+20405912
+2020f665
+2020766f
+204058f6
+70007c41
+20600000
+18007e11
+204058a1
+d8c00972
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20405907
+2420d8b9
+2020d8bb
+18007e03
+204058a1
+5800fffe
+e0a10000
+202058b9
+202058bb
+202058bb
+202058bb
+202058bb
+20405916
+da204140
+2040591c
+18007e11
+204058a1
+da2004a6
+da400486
+20407077
+2434d8b0
+202058b6
+20405916
+da200040
+20406f7a
+18007e11
+204058a1
+d8c00486
+20407e87
+68008055
+c00cd8bb
+c00c58bb
+202058b6
+680088d9
+203a5873
+20405907
+2040d8fa
+2440d8f6
+20205874
+204058fa
+20405916
+20205865
+da204140
+20406fad
+18007e05
+204058a1
+680204b6
+e0a20000
+d84003fb
+204058ec
+204070ab
+20405907
+2020d885
+7003fe01
+680088d9
+207a0000
+70007c0b
+6800c25d
+207a0000
+20405907
+2420d88d
+680083fd
+207a0000
+70007c0f
+20600000
+c6908000
+793f8021
+70007c0f
+20600000
+20405916
+20406fb0
+18007e11
+204058a1
+d8c00486
+20407e87
+202058b6
+18007e01
+204058a1
+202058b6
+18007e02
+204058a1
+18007e10
+e0a08000
+60008054
+202058b6
+1fe9fe00
+1fe1fe07
+600083dc
+df200011
+d8a003de
+20407e9f
+d8a003de
+20600000
+1fe1227f
+7000487f
+18e27e00
+204058a1
+1a227e00
+e0a08000
+20600000
+68008048
+1fe3fe00
+6808804c
+284ffe01
+7920fe00
+202058c0
+6808804c
+18410401
+202058bc
+18000400
+202058bc
+18000401
+68008048
+1fe3fe00
+7934fe00
+9842fe00
+600083dd
+70004800
+204058d1
+78347c00
+20600000
+6800807c
+207a0000
+204058ca
+6800807c
+20600000
+79200025
+44ae402b
+68008048
+203a58d1
+68008078
+247a0000
+202058db
+68008078
+203a58e1
+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
+44aec02b
+6800804c
+1fe22600
+e8408000
+2040546e
+204058b0
+1a627e00
+6000804c
+20600000
+6808804c
+793f8400
+6008804c
+20600000
+6808804c
+79200400
+6008804c
+20600000
+7d34fe01
+6808804c
+9842fe00
+2feffe01
+20600000
+6800804c
+7934fe01
+6000804c
+20600000
+680088d8
+2fe0fe01
+20600000
+680088d8
+79207e07
+600088d8
+20600000
+680088d8
+793ffe07
+600088d8
+20600000
+680088d8
+2feffe07
+600088d8
+20600000
+d8a00486
+18007210
+180a7e00
+e0a08000
+c2005918
+20600000
+20406f7e
+da204261
+da4004b6
+ea240000
+68088030
+7d3a0406
+60088030
+1a220a00
+20407077
+202031ee
+79200025
+44af402b
+204058c5
+247a0000
+68008055
+207a0000
+c002597b
+c002d980
+c0015972
+c001d988
+c0075975
+c00359a4
+c003d9bc
+c004d9bd
+c00559c6
+c005d9ca
+c0065992
+c006d995
+c007d99b
+c0095965
+c009d988
+c0085968
+c00a5962
+c00ad988
+c00b595c
+c00c5961
+c00bd955
+c00cd95b
+c00d5946
+c00dd950
+70005500
+20600000
+680083f7
+c4010000
+c4018000
+70005500
+2040594c
+2020690d
+6800816c
+c4008000
+7000550a
+20600000
+d8e0000b
+20407ee2
+247a0000
+7000551a
+20600000
+6800816c
+793ffe00
+6000816c
+70005519
+70007c0b
+20600000
+20600000
+680083fa
+c1810000
+204059cc
+70005518
+20600000
+20600000
+70005515
+70007c83
+20600000
+70005513
+70007c25
+20600000
+6800c5f4
+c1000000
+c000d970
+d8e0000a
+20407ee2
+247a0000
+7045f400
+20205989
+20748000
+202059a4
+70005503
+70007c27
+20600000
+70007c13
+79200003
+70005505
+580001ff
+600103f8
+20600000
+70005505
+7003f8ff
+793f8022
+70007c33
+2020531b
+c6110000
+680103f8
+1fe67e01
+2022d986
+600103f8
+20600000
+7000550e
+20600000
+20600000
+680083f7
+c4018000
+c4010000
+6800816c
+793ffe02
+6000816c
+70007c13
+70005510
+20600000
+7000550d
+70007c31
+20600000
+680083f7
+c4010000
+70005500
+20600000
+70005506
+20600000
+680083f8
+1fe0ffff
+203a59a0
+600083f8
+20600000
+70007c07
+7003f016
+70005500
+20600000
+6800816c
+c2815989
+c28059a9
+7000551a
+20600000
+6800c25d
+203a59b5
+680083f7
+c4018000
+c4010000
+6802040f
+d8400064
+98408400
+1c427e00
+98467c00
+24610000
+20205955
+70005516
+70471804
+58003030
+60014719
+e0a10000
+7003fa02
+2020595c
+20600000
+6800816c
+c280d9c1
+7000551a
+20600000
+6800816c
+793ffe01
+6000816c
+70007c0f
+20600000
+680083fe
+207a0000
+70005500
+202059c1
+7000550c
+20600000
+6800804b
+c28159d1
+204058fa
+70007c08
+20203f9b
+6800804b
+793ffe02
+6000804b
+20405618
+20405903
+20203f9b
+58000004
+6000c718
+58003030
+e0a10000
+e0a10000
+20600000
+20758000
+70472f00
+20405234
+20406577
+58005a1c
+60014294
+58005a1c
+60014292
+58005a22
+60014296
+58005a1c
+60014290
+58005a18
+6001428a
+58005b60
+6001429c
+58005ba2
+6001429e
+58005cf9
+60014607
+58005d81
+6001429a
+79200025
+44afc02b
+204059fa
+20405a13
+20403d48
+20406441
+20205d0e
+6802473e
+60120054
+68024742
+6012005a
+68108081
+1fe1fe04
+60108081
+70027cff
+70806200
+6801473e
+60110058
+68014742
+6011005e
+60110060
+68120078
+79207e07
+60120078
+20403ee4
+6800c75a
+2feffe00
+68188062
+79208404
+60188062
+20600000
+204059fa
+6808c72b
+204064e8
+20405a76
+6808c729
+202064df
+6808c729
+204064f5
+2420be37
+20203e35
+79200025
+44b0402c
+20405dc5
+2040480e
+247a0000
+20205a7b
+1a627e00
+c000da67
+c0015a3e
+c0025a69
+c002da5b
+c0045a44
+c004da4b
+c0055a5e
+c005da4f
+c0065a5a
+c009da69
+c00a5a63
+c00ada5c
+c011da5f
+c0125a62
+c0185d49
+c018dd4b
+c0195d59
+c019dd57
+c01a5d43
+c01add39
+c01b5d41
+c01bdd4d
+c01c5d4f
+1fe1040f
+1fe17ef0
+c0285da3
+20600000
+6800c6ed
+245a5d4d
+20405a69
+6801470b
+c4020000
+20205a4b
+6801470b
+79207e04
+6001470b
+6800c73b
+6000c212
+20405a76
+20205ce4
+6801470b
+793ffe04
+6001470b
+20205ce8
+68014042
+1fe37e00
+68094284
+98467c00
+2422da55
+20203e7f
+6800c72f
+c3800000
+68110112
+245a5dbd
+20203e77
+20203e81
+20205a6d
+20405a69
+20205cea
+20203e45
+6800c72f
+c3003e79
+20205dc1
+20205dc1
+20405a6d
+6800c73c
+6000c212
+20205ce6
+7046e900
+20600000
+20405adf
+20205a6b
+6808c72b
+202064ff
+20405a6f
+20205a76
+6800c72e
+2feffe00
+2040be59
+6800c72e
+2feffe01
+2040be61
+20600000
+6808c72b
+202064fd
+6800c603
+c1000000
+20206838
+79200025
+44b0c02c
+6810810c
+c281da78
+20407f6e
+e8608000
+c080da93
+68110112
+1fe67c02
+20610000
+e8608000
+60008416
+e8688000
+18622200
+60088417
+18408403
+68110112
+98460400
+24610000
+70041801
+20405aaa
+68008418
+c1000000
+20205aa5
+20405d3f
+20407f6b
+20205a96
+79200025
+44b1402c
+68110112
+207a0000
+20407f6e
+e8608000
+1fe67c01
+2442daa9
+2422da96
+e8608000
+c1028000
+c1148000
+186087ff
+20405aa9
+20205a96
+20407f6e
+18608602
+e8608000
+98608600
+20206322
+79200025
+44b1c02c
+68008416
+c0005acc
+c000dad1
+c0015ad6
+c001daec
+c0025af5
+c002daff
+c004db23
+c005dbd3
+c0065bd4
+c006dbe8
+c0075bf0
+c007dbf6
+c0085c02
+c008dc0a
+c0095c0e
+c0135c12
+c0145c19
+c014dc29
+c0155c32
+c015dc67
+c0165c6d
+c0185c74
+c018dc7a
+c0195c8b
+c019dc93
+c01a5cb1
+c01adcb9
+c01b5cc1
+c01c5ccb
+c0245cd3
+20205cde
+68008417
+c0835cde
+e8630000
+60034140
+20205ce1
+68008417
+c0835cde
+e8630000
+6003453e
+20205ce1
+68008417
+c080dcde
+1a220600
+20405ce1
+e8688000
+6008c73d
+6801470b
+c3848000
+c3800000
+6800c72e
+2feffe00
+2420dae5
+6808c73d
+18417e03
+6000c133
+6800c72e
+2feffe01
+24608000
+6808c73d
+284ffe02
+2020be63
+20203e61
+68008417
+1fe67c20
+24215cde
+6000c5ae
+1fe27200
+1a220600
+d8a045af
+20406341
+20205ce1
+68008417
+1fe67c13
+24215cde
+6000c440
+1fe27200
+1a220600
+d8a04441
+20406341
+20405234
+20205ce1
+6800c70b
+c3025cde
+20403e1d
+2020db0f
+70041800
+6800c600
+207a0000
+6801460b
+c0805b0d
+68008417
+6001460b
+1a220600
+18627e00
+60014609
+20405b11
+2020685f
+70041800
+20205d9f
+20405b17
+6801460b
+6809472c
+98467e00
+6001460b
+20600000
+6801460b
+d840006e
+20407faf
+68094604
+20407faf
+680945f6
+20407faf
+6001472c
+20600000
+70041801
+70041605
+20205ce1
+6801470b
+c4048000
+70041800
+6800c569
+247a0000
+68014760
+203a5b4a
+6809475e
+98467c00
+24628000
+79200025
+44b2402c
+70041800
+68014764
+68094760
+98462400
+24213b31
+2422db38
+20405b47
+70041801
+20205b8e
+6800c75a
+c3810000
+68110058
+98000600
+68014760
+98608600
+18622200
+58000901
+e0610000
+1a40fe02
+e0608000
+68014762
+e0610000
+1a227e00
+60110058
+58000000
+60014760
+20600000
+1a220600
+e8610000
+60014762
+68008417
+1fe0fffe
+24215cde
+203a5cde
+60014764
+6800c75a
+c2815b5e
+6809454e
+68014764
+20407faf
+60014760
+18627e00
+6001475c
+58000000
+6001475e
+7009bd1b
+20204bd6
+d8400014
+20205b55
+6800c75b
+70475b00
+243a5bbe
+68014760
+203a3b31
+1fe08403
+60094467
+d8400014
+20407faf
+1fe27200
+6001475e
+68094760
+98460400
+6800c75a
+c2815b71
+2442db9a
+7003da01
+79200025
+44b2c02c
+d8200002
+68014762
+6001446c
+6801475c
+1fe20600
+20406341
+6800c75a
+c3015bb9
+58004467
+98a67e00
+1fe60400
+6008c466
+68014764
+68094760
+20405b94
+68088379
+68008419
+203a5b8c
+7d3a0404
+60088379
+7009bd1b
+20404bd6
+70475b01
+68088379
+20204f92
+20405b8e
+20204f90
+6800c75a
+79207e03
+20205d9a
+6800c75a
+793ffe03
+20205d9a
+70041900
+98467c00
+20628000
+24610000
+70041901
+20600000
+6801c544
+243a5b9e
+7045461f
+20600000
+20404bd4
+243a3b31
+7045451f
+20600000
+79200025
+44b3402c
+68014760
+203a3b31
+6809475e
+203a3b31
+98467e00
+d840001b
+20407faf
+1fe27200
+6801475c
+1fe20600
+6801475e
+98608600
+9f20fe00
+6001475e
+68094760
+98460400
+2442db9a
+7003da01
+d8a04467
+20406341
+d8200001
+58004467
+98a67e00
+1fe60400
+6008c466
+20204f90
+68014764
+68094760
+98467e00
+d8400014
+20407faf
+1fe27200
+1fe08403
+60094467
+68094760
+9840fe00
+60014760
+6801475c
+1fe20600
+6801475e
+98608600
+9f20fe00
+6001475e
+d8200002
+68014762
+6001446c
+20205b78
+20205d12
+1a220600
+e8608000
+c0005bdb
+c000dbde
+c0015be4
+c001dbe6
+20205cde
+20405737
+7046e200
+20205ce1
+58040003
+6001c6e3
+6000c6ea
+2040572f
+7046e201
+20205ce1
+58040002
+20205bdf
+58040001
+20205bdf
+68008417
+1fe67c10
+24215cde
+6000c718
+1fe27200
+d8a04719
+20406354
+20205ce1
+1a220600
+e8608000
+68188062
+7d3a0404
+60188062
+20205ce1
+68008417
+1fe27200
+1a220600
+20407f25
+5adc6c00
+9846fc00
+20407f53
+1807fe00
+600142d3
+20405ce1
+20407f6b
+20206325
+da200002
+da4042a6
+d8400000
+20205cec
+600109e1
+da4009e1
+d8400000
+20205cec
+6801470b
+c3005cde
+20405ce1
+20203e52
+6801470b
+c304dcde
+20405ce1
+20203e6b
+68008417
+1fe27200
+1a220600
+680142bc
+1fe20a00
+20406341
+20205ce1
+6800c70b
+c3005cde
+e8608000
+6808c6e9
+793a0400
+79200407
+6008c6e9
+20405ce1
+6800c6e9
+c2835c27
+20600000
+7046e900
+7009bd21
+20207d90
+c28055ac
+20205c24
+6800c70b
+c4020000
+6800c603
+c1000000
+e8608000
+6808c601
+98408400
+6008c601
+20600000
+df200040
+d8a04400
+20407e9f
+58000000
+600089d6
+1a220600
+18627e00
+600109da
+20405c62
+680089d6
+680889c6
+18408401
+9840fe00
+600089d6
+1fe67c20
+24215c4c
+6808c400
+58004401
+9840fe00
+600109df
+680889c6
+18408401
+6800c400
+9840fe00
+6000c400
+20205c55
+6808c420
+58004421
+9840fe00
+600109df
+680889c6
+18408401
+6800c420
+9840fe00
+6000c420
+680109df
+1fe20a00
+680109da
+1fe20600
+18427200
+20406341
+68008417
+680889d6
+98467c00
+2422dc38
+7044001f
+7044201f
+20205ce1
+e8608000
+600089c6
+e8608000
+600089d2
+20600000
+d8400000
+da200002
+68014748
+600109e1
+da4009e1
+20205cec
+68008417
+c080dcde
+e8608000
+6000c746
+58000000
+60014748
+20205ce1
+e8620000
+60024719
+70471804
+7046eb00
+20405ce1
+20205548
+68008417
+c081dcde
+e8608000
+c0005c80
+c000dc85
+20205cde
+e8688000
+e8608000
+7d3a0407
+204064df
+20205ce1
+e8688000
+204064ea
+e8608000
+2feffe00
+20406500
+20205ce1
+68008417
+c080dcde
+e8688000
+204064f5
+58000000
+7d20fe00
+da200001
+20205c06
+1a220600
+e8608000
+6000c56c
+d8400000
+2feffe07
+79208400
+6008c563
+c0005ca9
+c000dcac
+c0015cae
+c040dca2
+c0415ca4
+c041dca7
+70456300
+20205cde
+7044df0d
+20205caa
+7044df0d
+7044dd01
+20205ce1
+7044df0d
+20205caf
+7044df00
+7044dd03
+20205ce1
+7044df05
+20205caa
+7044df05
+7044dd00
+20205ce1
+68008417
+1fe67c1f
+24215cde
+1fe27200
+1a220600
+d8a04401
+20406341
+20205ce1
+68008417
+1fe67c1f
+24215cde
+1fe27200
+1a220600
+d8a04421
+20406341
+20205ce1
+6801470b
+c304dcde
+68008417
+c0845cde
+1a220600
+e8640000
+6004458d
+7009bd12
+20407d90
+20205ce1
+6800c56c
+203a5cde
+6800c56a
+c0805cde
+6800c56b
+c0805cde
+20407e29
+20205ce1
+e8608000
+c000dcdc
+6800c566
+c001dcda
+c0035cda
+c003dcda
+20205cde
+70456701
+20205ce1
+204050a6
+20205ce1
+d8400001
+da200000
+20205cec
+d8400000
+da200000
+20205cec
+70041600
+20205d0f
+70041602
+20205d0f
+70041603
+20205d0f
+70041605
+20205d0f
+68008416
+1fe22600
+70041606
+58000002
+9a20fe00
+20405d66
+1a627e00
+e1408000
+e1488000
+1a227200
+1a420c00
+2040633b
+2020631f
+70041607
+6800842e
+207a0000
+20405d66
+6800842e
+1fe27200
+68010430
+1fe20c00
+20406328
+2020631f
+70041608
+6800c751
+1fe27200
+1fe0fe02
+20405d66
+68014754
+e1410000
+68014752
+1fe20c00
+20406328
+2020631f
+70041609
+58000000
+20405d66
+2020631f
+7004160a
+58000001
+20405d66
+20405d23
+6801470b
+d8e00002
+afefffff
+79208403
+d8e00009
+afefffff
+79208405
+6800c70b
+d8e00004
+afefffff
+79208404
+e1488000
+2020631f
+d8400000
+6800c133
+d8e00000
+afefffff
+79208400
+d8e00001
+afefffff
+79208401
+6800c3ff
+d8e00000
+afefffff
+79208402
+20600000
+7004160d
+6800c2be
+1feffe22
+1fe27200
+20405d66
+680142bc
+1fe20c00
+20406328
+2020631f
+7004160e
+58000004
+20405d66
+680208de
+e1420000
+2020631f
+7004160f
+20205d0f
+70041610
+20205d0f
+70041611
+58000004
+20405d66
+6802456d
+e1420000
+2020631f
+da200180
+20205d50
+da200080
+20205d50
+da200101
+20205d50
+da200001
+7046e900
+70041614
+58000002
+20405d66
+1a227e00
+e1410000
+2020631f
+da600000
+20205d5a
+da600001
+70041615
+58000001
+20405d66
+1a627e00
+e1408000
+2020631f
+7004161d
+58000004
+20405d66
+680208de
+e1420000
+2020631f
+70041502
+60008417
+600c09c6
+79200025
+44b3c02c
+20405d71
+680c09c6
+2040631c
+68018415
+e1418000
+20600000
+20405d7a
+20608000
+20405d78
+68024737
+1feb7e00
+207a0000
+20205d7e
+6808c736
+202064ff
+6808c736
+202064f3
+6808c736
+202064fd
+1fe0ffff
+243a5d7e
+20600000
+1a227e00
+60014752
+1a427e00
+6000c751
+6801039b
+68094756
+98467c00
+2022dd8c
+68094758
+98467c00
+24628000
+60014754
+20205d98
+6800c75a
+c281dd94
+6800c75a
+c4008000
+20405d03
+20205d9c
+70041609
+20405ce1
+20405b91
+20205d90
+6800c75a
+79207e01
+6000c75a
+20600000
+6800c75a
+793ffe01
+20205d9a
+6800c72f
+c3800000
+20405dbd
+20203e77
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+79200025
+44b4402d
+20405dac
+20205da4
+6800c746
+207a0000
+6800c747
+207a0000
+1fe0ffff
+6000c747
+247a0000
+7047470a
+204065c0
+204065de
+1fe6fc64
+20407f53
+1807fe00
+18070400
+6000c748
+6008c749
+20600000
+6800c72f
+79207e00
+6000c72f
+20600000
+6800c72f
+793ffe00
+6000c72f
+20600000
+79200025
+44b4c02d
+20407f84
+20213e41
+20203e43
+79200025
+44b5402d
+58005fc3
+60014290
+58005ee2
+60014292
+58005e27
+6001428e
+58005fd4
+60014296
+58005def
+60014294
+58005efd
+6001429c
+7008d400
+7008d500
+79200025
+44b5c02d
+20405e0a
+20758000
+20405de5
+20405ded
+58005e24
+6001428c
+6801470b
+c2866074
+20206070
+20403e28
+2022ddea
+20406472
+20406098
+20203e20
+20406441
+20406476
+2020609e
+70474701
+20205e01
+20407e3f
+20405df2
+20205e3e
+6808c752
+204064f5
+2420ddf9
+6800c747
+c1000000
+70474700
+20600000
+6800c747
+c1008000
+70474701
+6800c746
+1fe0fe01
+1fe17e03
+6000c746
+20205e01
+58000006
+204060ec
+1fe104fc
+6800c746
+9840fe00
+1fed7e00
+1fe0fe06
+204060eb
+20206098
+20405f8e
+20405e10
+68110050
+793ffe0b
+60110050
+20600000
+20758000
+20403d3e
+6808c763
+204064df
+6808c764
+204064df
+6808c74d
+204064df
+6808c74e
+204064df
+6808c74f
+204064df
+6808c750
+204064df
+6808c751
+204064df
+6808c753
+204064df
+6808c752
+202064df
+5800bc05
+204060eb
+70009f01
+20405e3e
+d8400019
+204064e8
+70808100
+6808c763
+204064c2
+6808c764
+204064c2
+6808c74d
+204064c2
+6808c74e
+204064c2
+6808c74f
+204064c2
+6808c750
+204064c2
+6808c751
+204064c2
+6808c753
+204064c7
+6800809f
+247a0000
+202064d2
+79200025
+44b6402d
+20405e4d
+20405e94
+6800c75e
+6808c75d
+6000c75d
+98467c00
+2422be39
+6800c766
+6808c765
+6000c765
+98467c00
+2422be39
+20600000
+da200000
+6808c75b
+204064f5
+7920a200
+6808c75c
+204064f5
+7920a201
+1a227e00
+6000c75e
+c000de5b
+c0015e5f
+6800c75f
+c283de6b
+20600000
+6800c75d
+c0005e63
+c001de65
+20600000
+6800c75d
+c0005e67
+c001de69
+20600000
+70475f82
+20600000
+70475f81
+20600000
+70475f80
+20600000
+70475f83
+20600000
+6800c75f
+793ffe07
+6000c75f
+6800c75f
+c0005e74
+c000de77
+c0015e7a
+c001de7d
+20600000
+6800c75e
+c001de80
+20600000
+6800c75e
+c0005e80
+20600000
+6800c75e
+c001de8a
+20600000
+6800c75e
+c0005e8a
+20600000
+6800c762
+1fe0fe01
+6000c762
+1fe67c01
+20610000
+70476200
+6800c760
+1fe0fe01
+6000c760
+20600000
+6800c761
+1fe0fe01
+6000c761
+1fe67c01
+20610000
+70476100
+6800c760
+1fe0ffff
+6000c760
+20600000
+da200000
+6808c763
+204064f5
+7920a200
+6808c764
+204064f5
+7920a201
+1a227e00
+6000c766
+c000dea2
+c0015ea6
+6800c767
+c283deb2
+20600000
+6800c765
+c0005eaa
+c001deac
+20600000
+6800c765
+c0005eae
+c001deb0
+20600000
+70476782
+20600000
+70476781
+20600000
+70476780
+20600000
+70476783
+20600000
+6800c767
+793ffe07
+6000c767
+6800c767
+c0005ebb
+c000debe
+c0015ec1
+c001dec4
+20600000
+6800c766
+c001dec7
+20600000
+6800c766
+c0005ec7
+20600000
+6800c766
+c001ded1
+20600000
+6800c766
+c0005ed1
+20600000
+6800c76a
+1fe0fe01
+6000c76a
+1fe67c01
+20610000
+70476a00
+6800c768
+1fe0fe01
+6000c768
+20600000
+6800c769
+1fe0fe01
+6000c769
+1fe67c01
+20610000
+70476900
+6800c768
+1fe0ffff
+6000c768
+20600000
+20403e7b
+70474b02
+20403e7f
+20203e6d
+58000002
+6000c709
+20600000
+6800c283
+207a0000
+20404812
+247a0000
+20405f14
+24740000
+20405efa
+da200009
+20404005
+680142de
+e0a10000
+580002a1
+e0a10000
+6803c729
+e0a38000
+20600000
+58000000
+6003472a
+6000c72f
+20205ee9
+58000000
+6003472a
+6000c72f
+20205f0c
+68014739
+60014741
+20600000
+680944f8
+204051f5
+e8c08000
+600083be
+d8a0446b
+18a08a01
+680944f8
+e0a90000
+204051f5
+e8c08000
+1fe27200
+20407ecd
+680883be
+18408407
+20204f89
+79200025
+44b6c02d
+680944f8
+204051f5
+18c08a01
+6803c729
+e0a38000
+20600000
+79200025
+44b7402d
+78547c00
+58000000
+6003472a
+20405f1e
+20405f87
+20405f61
+20405f67
+20205f7f
+6800c735
+205a5f5a
+70473501
+78547c00
+6808c753
+204064f5
+24608000
+58000000
+204060ec
+58000002
+204060ec
+c4038000
+58000003
+204060ec
+20405fbb
+6001472a
+58000004
+204060ec
+20405fbb
+1fe67e00
+6001472c
+6802472a
+78347c00
+20600000
+204060e7
+20405f5a
+dfe00005
+204060ec
+6000c730
+dfe00007
+204060ec
+6000c731
+dfe00008
+204060ec
+6000c732
+202060e9
+6800c731
+c1800000
+6800c732
+1fe67c2d
+20610000
+70473300
+5800ba41
+204060db
+58000032
+204060db
+5800b541
+202060db
+6800c731
+c1800000
+6800c732
+1fe67c2d
+24610000
+70473301
+5800ba41
+204060db
+58008032
+204060db
+5800b541
+202060db
+dfe00003
+204060ec
+6001472a
+dfe00004
+204060ec
+6001472c
+20600000
+6800c768
+207a0000
+6000c72e
+70476800
+78347c00
+20600000
+6800c760
+207a0000
+6000c72f
+70476000
+78347c00
+20600000
+da200000
+6808c74d
+204064f5
+7920a200
+6808c74e
+204064f5
+7920a201
+6808c74f
+204064f5
+7920a202
+6808c750
+204064f5
+7920a203
+6808c751
+204064f5
+7920a204
+1a227e00
+20600000
+20405f6d
+6808c729
+6000c729
+9842fe00
+1fe67c00
+20628000
+78347c00
+20600000
+d840001a
+204064f5
+20608000
+5800000a
+204060ec
+200003e8
+20205f87
+204061ac
+20758000
+58000000
+204060ec
+6000824b
+c0185f98
+c018df98
+204060c0
+200003e8
+20205f90
+58008006
+204060eb
+200003e8
+20600000
+6808c756
+204064ff
+20407e89
+6808c756
+204064fd
+20207e89
+5800ba41
+204060db
+58000d11
+204060db
+5800041b
+204060db
+5800041c
+204060db
+58000f1d
+204060db
+58000032
+204060db
+5800b541
+202060db
+5800ba41
+204060db
+20000fa0
+5800ff7f
+204060db
+1a227e00
+204060db
+5800007f
+204060db
+5800b541
+202060db
+c4038000
+d840ff00
+9841fe00
+20600000
+c4018000
+d84000f0
+9841fe00
+20600000
+20404bd4
+247a0000
+6800c74c
+6000c4f8
+680944f8
+20404f6a
+c4000000
+6800c595
+c4000000
+20405f14
+24740000
+20405efa
+6800c74c
+6000c4f8
+7009bd1b
+20404bd6
+20205f0c
+1a627e00
+c00a5fe7
+c000e084
+c00adff6
+c0015ff6
+c002dff5
+c0086048
+c0096068
+c0035ff3
+c0145edb
+c014dede
+c0025ff0
+c009dff0
+c0055fee
+c0173e32
+1fe1040f
+1fe17ef0
+c0286014
+20600000
+680142af
+793ffe00
+600142af
+58000000
+6001473f
+20405efa
+20206084
+204059d7
+20203e45
+6801470b
+c2866074
+20203e0a
+20405edf
+20600000
+20600000
+79200025
+44b7c02d
+20406000
+680142ad
+c283e010
+c2803e0c
+c280e00a
+c281600d
+c281e00d
+20206074
+58000000
+6004475b
+e0a40000
+70474500
+70473500
+70428300
+7044b200
+70474b00
+70473600
+20600000
+c282e00d
+c281e00d
+20206074
+6801470b
+c2866074
+20203e0a
+204052a0
+680142ad
+c2803e0c
+20203e0a
+79200025
+44b8402e
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20406027
+2040602d
+20406034
+20406042
+20406021
+20206017
+6800c76c
+207a0000
+1fe0ffff
+6000c76c
+247a0000
+202060aa
+6800c709
+207a0000
+1fe0ffff
+6000c709
+247a0000
+20206068
+6801473d
+207a0000
+1fe0ffff
+6001473d
+247a0000
+20406084
+20203e75
+6801473f
+207a0000
+1fe0ffff
+6001473f
+247a0000
+20403e5f
+20203e75
+68014743
+207a0000
+1fe0ffff
+60014743
+247a0000
+70474500
+20600000
+68014741
+207a0000
+1fe0ffff
+60014741
+247a0000
+2020608f
+79200025
+44b8c02e
+70474500
+70473601
+58000000
+6001473f
+2040608f
+6800c132
+2feffe01
+2040e066
+6800c132
+2feffe00
+2040e062
+20403e81
+20206074
+68034273
+203a3e54
+20203e49
+68034273
+203a6060
+68014737
+6001473f
+20403e7f
+20203e5d
+20403e6f
+20203e63
+6801470b
+2feffe07
+2040be50
+20600000
+204052a0
+20600000
+70428301
+20403e7f
+20403e7d
+70474b01
+58000000
+60014707
+6000c709
+20203e79
+6800c2b5
+c019e057
+c01a605a
+20206074
+79200025
+44b9402e
+6801470b
+c285e07a
+180a7e00
+6000c53f
+20403e81
+68014716
+6001473d
+6800c132
+2feffe01
+2040be63
+6800c132
+2feffe00
+2040be57
+20203e6f
+79200025
+44b9c02e
+58000000
+6001473d
+6800c132
+2feffe01
+2040be61
+6800c132
+2feffe00
+2040be59
+20203e73
+79200025
+44ba402e
+58000000
+60014741
+6801470b
+c284be6b
+6801470b
+c2803e52
+20600000
+79200025
+44bac02e
+d8400001
+da204746
+da4000c6
+2020626f
+79200025
+44bb402e
+d8400001
+da204746
+da4000c6
+20206245
+79200025
+44bbc02e
+6800c734
+204060d1
+c00060b0
+20600000
+6808c757
+204064fd
+6808c758
+204064fd
+6808c759
+202064fd
+6800c76b
+207a0000
+70476b00
+70476c3c
+204060aa
+6800c76d
+c000e0ba
+c00160bc
+c001e0be
+20600000
+6808c757
+202064ff
+6808c758
+202064ff
+6808c759
+202064ff
+79200025
+44bc402f
+68108073
+d8400006
+9841fe00
+60108073
+68108077
+9841fe00
+60108077
+70808100
+68108077
+793ffe01
+793ffe02
+60108077
+2000001e
+70808101
+20600000
+1fe22400
+204060e7
+20000064
+1a427e00
+204060ec
+1fe22400
+204060e9
+20000064
+1a427e00
+20600000
+1fe22400
+204060e7
+20000064
+1a427e00
+204060eb
+204060e9
+20000064
+20600000
+6800c2bb
+c17f8000
+6808c2bb
+202064e8
+6808c2bb
+202064ff
+6808c2bb
+202064fd
+202061c1
+202061c9
+243460f1
+68108085
+1fe1fe20
+60108085
+18427c00
+2022e0f4
+1a627a00
+2fcc0000
+2020618e
+18000404
+da200221
+68108085
+1fe17edf
+60108085
+204060f1
+da2055aa
+68010221
+e8c90000
+9a267c00
+20600000
+d8400002
+da200227
+204060f1
+68010227
+6001021a
+20546108
+20600000
+d8400010
+da200229
+68108085
+1fe17edf
+60108085
+204060f1
+d8c00229
+df200010
+204071a1
+20407150
+204071ba
+2020714a
+7856fc00
+204060f6
+24628000
+7836fc00
+70802380
+70802200
+70802400
+da208025
+204060ed
+70802300
+204060f6
+24628000
+18007e00
+60110288
+da20828a
+204060ed
+d8400006
+204060f7
+24628000
+e8c10000
+98002200
+204060f1
+20206124
+79200025
+44bcc02f
+20407f66
+58001000
+6001021a
+da60624c
+df200002
+204060f6
+24628000
+6801021a
+1ff0fe00
+9840fe00
+1ff0fe00
+6001021a
+c2006132
+20206124
+70805025
+70828005
+20407f66
+79200025
+44bd402f
+78547c00
+204062c4
+58000000
+da200216
+d8400002
+2040630d
+68010216
+c303e150
+580007f0
+da200229
+d8400010
+2040630d
+70800608
+d8c00229
+204071ad
+78347c00
+79200025
+44bdc02f
+68010216
+1ff0fe00
+d84007ff
+98417e00
+2022e15e
+204062c9
+da606312
+20546108
+20406114
+68008215
+2fe00603
+2420e150
+79200025
+44be402f
+204062c7
+68008216
+c282e16d
+58000000
+60018219
+204061d9
+da6061fb
+20406101
+20406114
+2436e16d
+68008215
+2fe00603
+2420e15e
+79200025
+44bec02f
+20406236
+68008216
+c2836180
+20406188
+2436e178
+68008215
+2fe00603
+2420e16d
+20206180
+20406233
+68008216
+c2836180
+20406188
+2436e180
+68008215
+2fe00603
+2420e178
+18007004
+204071bb
+70805021
+68008216
+c4020000
+20403ecd
+20403ef4
+20206186
+58000000
+6001021a
+da60624c
+2040621d
+20406101
+20206114
+68008215
+1fe3fe00
+7920fe00
+2a2c000f
+20608000
+60008215
+20600000
+68108085
+c4028000
+2020619b
+6810812c
+afefffff
+20608000
+68108108
+c300e198
+2040714a
+20206198
+68014239
+207a0000
+70802380
+70802200
+70802400
+6809423b
+184bf200
+98000c00
+e8c08000
+60108025
+c20061a7
+70802300
+20600000
+79200025
+44bf402f
+6800c2b9
+60108086
+6800c2ba
+60108087
+58000218
+6011008a
+5800021d
+6011008c
+68108081
+79207e00
+793ffe01
+60108081
+20600000
+68108086
+79207e07
+60108086
+793ffe07
+60108086
+20600000
+79207e07
+60010218
+79200025
+44bfc02f
+70808802
+70808e00
+70800602
+202061d3
+18000401
+60008218
+79200025
+44c04030
+70808801
+6019008e
+70800602
+204061d3
+6800821d
+20600000
+68014176
+1fe0fe01
+60014176
+6810812c
+c301e1d3
+20600000
+70808640
+70808700
+68108081
+793ffe00
+79207e01
+60108081
+58000000
+60020218
+20600000
+58000000
+6011008e
+58000001
+60108088
+58000218
+6011008a
+70021806
+70800602
+202061d3
+18408404
+60190088
+1a20a3fc
+d8400002
+e2288000
+1ff10400
+e0a88000
+1fec8400
+e0a88000
+e0a08000
+1a227e00
+6011008a
+58000000
+6011008e
+70800602
+202061d3
+6019008e
+58000004
+60110088
+70021803
+58000218
+6011008a
+1a227e00
+6011008c
+68108086
+2a2c000f
+7920fe06
+60108086
+70800602
+6810812c
+c283e208
+d8e00003
+20406195
+204061d3
+2feffe02
+2040618e
+68008219
+1ff02400
+6800821a
+1fed7e00
+9a41a400
+6800821b
+9a41fe00
+9840fe00
+6000821b
+1fecfe00
+6000821a
+1fecfe00
+60008219
+20600000
+70809105
+70809207
+70809307
+70809407
+70809507
+70809605
+20600000
+6810812c
+c302e224
+20600000
+60110098
+1a227e00
+6011009a
+1a427e00
+6011009c
+18427e00
+6011009e
+d8400001
+7d3a0401
+60108090
+70800604
+20206224
+7920002a
+7042b608
+20600000
+793f802a
+7042b620
+20600000
+6800c2a8
+9a40fe00
+6000821a
+20206240
+6801021a
+1ff0fe00
+6000821a
+58000003
+60110098
+700219a0
+70021ba1
+20206254
+79200025
+44c0c030
+c5156239
+680142a8
+9a40fe00
+1ff0fe00
+6001021a
+79200025
+44c14030
+c515623d
+20007530
+58000004
+60110098
+700219a0
+70021ca1
+58000219
+6011009a
+6019009e
+1a227e00
+6011009c
+58000002
+2a2c000f
+7920fe00
+60108090
+70800604
+d8e00005
+20406195
+20406224
+2feffe04
+2040618e
+c515626a
+6801021a
+1ff0fe00
+9840fe00
+1ff0fe00
+6001021a
+20600000
+6800821a
+9840fe00
+1ff0fe00
+6001021a
+20600000
+680142a8
+9a40fe00
+600109be
+79200025
+44c1c030
+600909c6
+1a227e00
+600109dd
+20406287
+680909d6
+680109dd
+1fe22200
+680109be
+204062a8
+680109d6
+680909dd
+98408400
+600909dd
+680909be
+98408400
+600909be
+680109c6
+243a6277
+20600000
+79200025
+44c24030
+680142b6
+1fe0ffff
+680909be
+9841fe00
+1fe0fe01
+600189da
+680109c6
+9840fe00
+680989da
+98467e00
+2421629a
+600109c6
+680189da
+680909be
+98467e00
+600109d6
+20600000
+680109c6
+600109d6
+58000000
+600109c6
+20600000
+18408402
+60190098
+1a20a3fe
+ea298000
+18422400
+d84000a0
+e2288000
+e0a08000
+202062b7
+1fe22400
+79200025
+44c2c030
+20007530
+c515629f
+1a427e00
+18408403
+60190098
+1a20a3fd
+ea298000
+18422400
+d84000a0
+e2288000
+1ff0fe00
+e0a10000
+1a227e00
+6011009a
+58000000
+6011009e
+70809001
+70800604
+20406224
+1a427e00
+e2218000
+20002710
+20002710
+20002710
+20600000
+70897370
+20000bb8
+20600000
+70897330
+20600000
+1fe9fe00
+60110045
+70804b00
+20600000
+204062c9
+204062fa
+ea288000
+1a20a201
+18000e00
+a84c0000
+2020e2f1
+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
+2020e2d2
+68110045
+1fe0fe01
+60110045
+18e08e01
+28e01e08
+2420e2d2
+c20062cf
+70804783
+20600000
+70804782
+2000000c
+70804780
+70804782
+20000096
+20600000
+204062fa
+708047a2
+1a227e00
+60110048
+7920040b
+2fec000f
+7920840f
+6019004a
+70800601
+20600000
+6810812c
+c300e30a
+20600000
+204062c9
+20406300
+2040630a
+70804783
+20600000
+68110124
+60110045
+20406300
+d8e00001
+20406195
+2040630a
+2feffe00
+2040618e
+70804783
+20600000
+6811005e
+98001400
+20600000
+19427e00
+6011005e
+20600000
+18627e00
+60110058
+20600000
+680142d3
+60110052
+20600000
+1f227e00
+207a0000
+1f20f3f8
+20416335
+20628000
+2021632a
+1f20f208
+1f20f3fc
+20416338
+20628000
+2021632f
+1f20f204
+2020633b
+e8c40000
+e1440000
+20600000
+e8c20000
+e1420000
+20600000
+1f227e00
+207a0000
+e8c08000
+e1408000
+c200633d
+20600000
+1f227e00
+207a0000
+1f20f3f8
+2041634e
+20628000
+20216343
+1f20f208
+1f20f3fc
+20416351
+20628000
+20216348
+1f20f204
+20206354
+e8640000
+e0a40000
+20600000
+e8620000
+e0a20000
+20600000
+1f227e00
+207a0000
+e8608000
+e0a08000
+c2006356
+20600000
+79200025
+44c34030
+6800c2be
+207a0000
+204063f3
+2042e3f9
+2040638e
+6800c2be
+1fe22600
+680942bc
+600901af
+1a627e00
+203a5d30
+1a60a7ff
+18422200
+ea208000
+680881a7
+98467c00
+2042e375
+20216371
+ea208000
+1fe0fe01
+e2208000
+680901af
+18408422
+600901af
+20206365
+58000000
+e2208000
+680081a8
+e0a08000
+c099e383
+da404261
+e8c30000
+e0a40000
+58000000
+e0a40000
+1a420c00
+20407e87
+18007c01
+20600000
+c01b6387
+c01be38b
+da4044a2
+2020637b
+d8c0457b
+20407e87
+d8c044a2
+20206380
+d8c04573
+20407e87
+20206389
+204031d4
+6800c2be
+207a0000
+6801470b
+c28063a3
+6800c52b
+c000639c
+68008377
+2fe180c0
+2020e39c
+2fe18040
+2020e3a1
+2fe18000
+2020e39f
+7001a835
+68030372
+202063a7
+7001a837
+202063a7
+7001a836
+202063a7
+79200025
+44c3c030
+7001a833
+68030040
+600301a9
+680142bc
+efe88000
+1fe0fe01
+600101af
+600881a7
+6800c2be
+1fe22600
+680101af
+1fe22200
+204063bf
+20740000
+680901af
+18408422
+600901af
+184085ff
+e8408000
+600081a7
+1a60a7ff
+2422e3af
+6800c2be
+1fe0ffff
+600081a7
+20600000
+680081a8
+c099e3c6
+da4001a8
+df200007
+20407f55
+2022e4c0
+20600000
+c01b63c9
+c01be3e4
+202063c1
+ea288000
+98467c00
+24628000
+d8a009e1
+df200010
+20407e9f
+68018375
+600189e1
+204063db
+680109fe
+1ff0fe00
+1fed0400
+e8c08000
+9840fe00
+68098372
+98467c00
+2022e4c0
+20600000
+d8c009e1
+204071af
+ea208000
+204071b0
+18006c38
+18006c00
+20407145
+d8a009f1
+202071c0
+ea288000
+98467c00
+24628000
+18c22200
+18c0a608
+da404573
+df200008
+20407f55
+2022e4c0
+1a622200
+da40457b
+df200008
+20407f55
+2022e4c0
+20600000
+680142bc
+efe88000
+1fe0fe22
+efe08000
+98467c00
+20600000
+6800c2be
+1fe27200
+680942bc
+58000000
+e0408000
+18408422
+1fe0fe01
+c20063fd
+20600000
+79200025
+44c44031
+2040638e
+2434640a
+1a208c0a
+d8a04261
+20407e87
+202064b1
+70425d00
+20600000
+6804c571
+203a642c
+2040638e
+2434642c
+680101af
+1fe08c01
+d8a0457b
+20407e87
+d8a044a2
+20407e87
+7044b201
+20600000
+68014571
+243a641c
+68034573
+203a642b
+7048c603
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+7044b201
+20600000
+7048c601
+7044b200
+20600000
+68030372
+600301a9
+7001a834
+20206435
+68030040
+600301a9
+7001a833
+79200025
+44c4c031
+6800c132
+c005635a
+20406463
+2040645f
+680081a8
+c01a643f
+c019e48b
+20600000
+20406489
+20206472
+79200025
+44c54031
+2040644d
+680081a7
+c17f8000
+680301a9
+60034273
+680081a8
+6000c2b5
+c019e451
+c01a6453
+20600000
+2040645b
+680081a7
+c17f8000
+2020647a
+20406492
+202064b1
+20406490
+202064b7
+79200025
+44c64031
+58000000
+60018040
+e0a18000
+20206463
+d8400001
+da2001a7
+da40001c
+20206245
+d8400001
+da2001a7
+da40001c
+2020626f
+79200025
+44c6c031
+20406497
+78547c00
+2040649b
+20740000
+7001a700
+680301a9
+60030184
+680081a8
+60008183
+d840001c
+da200183
+da400000
+2020626f
+d8400006
+da20453e
+da40001d
+2020626f
+d8400006
+da20453e
+da40001d
+20206245
+79200025
+44c74031
+d8400007
+da2001a8
+da400000
+680081a7
+1feffe07
+9a40a400
+20206245
+d8400010
+da400023
+680081a7
+1ff27e00
+9a40a400
+20600000
+da2044a2
+2020648c
+da204261
+79200025
+44c7c031
+20406483
+2020626f
+da2044a2
+20206493
+da204261
+79200025
+44c84032
+20406483
+20206245
+d840001c
+da20018a
+da400000
+20206245
+79200025
+44c8c032
+5800018a
+600101af
+7001a700
+df200004
+1f227e00
+600089be
+680101af
+1fe22200
+204064bb
+20740000
+680101af
+1fe0fe07
+600101af
+680081a7
+1fe0fe01
+600081a7
+680089be
+1fe27200
+c20064a1
+20600000
+68044261
+680c4269
+9841fe00
+207a0000
+70425d01
+20600000
+68034273
+207a0000
+7044b201
+20600000
+da4001a8
+df200007
+20407f55
+2022e4c0
+20600000
+78347c00
+20600000
+79200025
+44c94032
+79200407
+204064f5
+7d208407
+79200025
+44c9c032
+284c0007
+18410e1f
+680200a0
+f920fe00
+600200a0
+680200a4
+fd20fe00
+600200a4
+20600000
+79200025
+44ca4032
+284c0007
+18410e1f
+680200a0
+f93ffe00
+600200a0
+680200a4
+f93ffe00
+600200a4
+20600000
+204064d2
+202064e0
+2455e4c7
+d8a0807c
+20406504
+79400407
+d8a08078
+20406504
+793f8407
+d8a08070
+20206504
+79400407
+20406503
+79200407
+d8a08070
+20206504
+18410e07
+18497e00
+1fe17e03
+98a08a00
+e8a08000
+20600000
+d8a08074
+202064f6
+d8a0811c
+204064ed
+284ffe07
+2020e4fb
+afec0000
+20600000
+afefffff
+20600000
+2fcffe07
+20206500
+2fcc0007
+58000000
+7d20fe07
+98428400
+d8a08074
+204064ed
+284ffe07
+f920fe00
+e0a08000
+20600000
+da3fffff
+68108081
+2feffe01
+2040e54d
+1fe12403
+1a467c01
+2042e54f
+2feffe02
+2040e549
+2feffe03
+2040e54b
+2feffe05
+2040e551
+2feffe06
+d8e00004
+2040e555
+7d20a204
+2feffe07
+d8e00005
+2040e555
+68108082
+2feffe00
+d8e00003
+2040e555
+68188080
+284ffe00
+d8e00005
+2040e555
+9841fe00
+2feffe01
+d8e00006
+2040e555
+2feffe02
+d8e00007
+2040e555
+2feffe03
+d8e00012
+2040e555
+2feffe04
+d8e00013
+2040e555
+2feffe05
+d8e00014
+2040e555
+2feffe06
+d8e00015
+2040e555
+2feffe07
+d8e00016
+2040e555
+68108062
+2feffe04
+2040e553
+79200025
+44cac032
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+681a007c
+9841fe00
+6012007c
+20600000
+d8e00006
+20206559
+d8e00009
+20206557
+d8e00017
+20206557
+d8e00019
+20206559
+d8e0001b
+20206559
+d8e00002
+20206559
+df200001
+2020655a
+df200004
+2020655a
+df200002
+f93fa200
+18e08e01
+c200655a
+20600000
+2040656a
+d8400006
+202064e8
+2040655e
+d8400006
+202064fd
+2040656a
+68108078
+79207e07
+60108078
+d8400007
+202064df
+68108081
+1fe17efb
+60108081
+20600000
+68108081
+2feffe02
+20600000
+204062c4
+580007e0
+da2041f0
+d8400002
+2040630d
+202062c7
+79200025
+44cb4032
+204062c4
+580007e2
+da2042bf
+d840000e
+2040630d
+204062c7
+6800c2cf
+c2806584
+c280e598
+c28165ac
+20600000
+680942cb
+5800aa55
+98467c00
+2022e58d
+58004dfa
+600142c9
+58004894
+600142c3
+20206595
+680142c9
+243a6591
+58004dfa
+600142c9
+680142c3
+243a6595
+58004894
+600142c3
+58000064
+600142cd
+20600000
+680942cb
+5800aa55
+98467c00
+2022e5a1
+58005932
+600142c7
+58004323
+600142c1
+202065a9
+680142c7
+243a65a5
+58005932
+600142c7
+680142c1
+243a65a9
+58004323
+600142c1
+58000190
+600142cd
+20600000
+680942cb
+5800aa55
+98467c00
+2022e5b5
+58006946
+600142c5
+58005377
+600142bf
+202065bd
+680142c5
+243a65b9
+58006946
+600142c5
+680142bf
+243a65bd
+58005377
+600142bf
+58000032
+600142cd
+20600000
+6800c2cf
+c28065c5
+c280e5c7
+c28165c9
+20600000
+708971bf
+202065cd
+708971af
+202065cd
+7089718f
+6800c2d0
+60108973
+202065cd
+79200025
+44cbc032
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+600942d1
+20600000
+79200025
+44cc4033
+6800c2cf
+c28065e5
+c280e5e9
+c28165ed
+20600000
+680142c9
+680942c3
+da6000c8
+202065f1
+680142c7
+680942c1
+da600064
+202065f1
+680142c5
+680942bf
+da600032
+202065f1
+98462200
+680142d1
+98467e00
+242165fe
+680942cd
+984fa400
+1a627e00
+9a2ffe00
+9a40fe00
+9a26fc00
+20407f53
+1807fe00
+20600000
+18427e00
+680942d1
+98467e00
+680942cd
+984fa400
+1a627e00
+9a2ffe00
+9a467e00
+202065fa
+20758000
+7045ff00
+70041c03
+70041d03
+70042111
+70042213
+58000000
+6001841e
+6000c2e4
+70470a00
+79200025
+44ccc033
+58000000
+6000c2e4
+6000c5fc
+6000c5f5
+6800c603
+c000e61b
+70460150
+20600000
+70460100
+20600000
+18418402
+20600000
+18427e00
+1fedfe00
+6000c5fa
+18007e3f
+1fedfe00
+6000c5f9
+18007e01
+1fedfe00
+6000c5f8
+20406655
+18427e00
+20600000
+1fedfe00
+6000c5fa
+18007e73
+1fedfe00
+6000c5f9
+18007e01
+1fedfe00
+6000c5f8
+20206655
+6800c5fb
+203a6638
+58000070
+20600000
+580000aa
+20600000
+1fedfe00
+6000c5fa
+18007eef
+20406649
+68090426
+18420a00
+e0a08000
+18a20400
+60090426
+18007eff
+20406649
+68090426
+18420a00
+e0a08000
+20600000
+1fedfe00
+6000c5f9
+680145f9
+1fed7e00
+60018423
+da200107
+da40000f
+20406662
+1fe2fed7
+1fe47e00
+1fedfe00
+20600000
+6801c5f8
+60018423
+da200107
+da40000f
+20406662
+1fed7e00
+da400007
+20406662
+1fe2fe2b
+1fe47e00
+1fedfe00
+1fe20400
+20600000
+da600000
+1a427200
+20407e43
+1fe20400
+18427e00
+1a63a600
+c304666b
+9a228400
+1a60a601
+18438400
+68018423
+1a40a5ff
+2a41feff
+2020e675
+1a427200
+20407e43
+2feffe00
+79208400
+20206666
+18437e00
+20600000
+6808c5f5
+184b8400
+79200400
+6800c5fb
+245a661d
+6008843c
+20600000
+18438400
+6800c5fb
+793a0400
+20600000
+6808842b
+70042dd7
+204067c1
+6800c2e1
+79207e06
+79207e07
+6000c2e1
+7045fb00
+202067a1
+6800c2e1
+79207e07
+6000c2e1
+202067a1
+79200025
+44cd4033
+6800c70a
+c0006694
+20206755
+6801028d
+1fe20c00
+204066bf
+6800842b
+c000669a
+20206720
+79200025
+44cdc033
+6800842c
+c01fe682
+c039e68b
+c077e6a2
+c029e74d
+20600000
+68010430
+1fe20c00
+204066ca
+68008432
+c020e6ac
+c02066b4
+c038e6ed
+c03866f9
+c024e704
+202067a1
+204066b6
+202066ae
+6800c2e4
+79207e00
+79207e01
+6000c2e4
+204067ed
+202067a1
+204066b6
+202067a1
+204066d2
+202066de
+204066d2
+e8c08000
+1fe97e00
+6000c602
+e8c08000
+60008437
+20600000
+e8c08000
+6000842a
+1fe97e00
+6000842b
+e8c08000
+6000842c
+204066d5
+6009042e
+18c27e00
+60010430
+20600000
+e8c08000
+1fe37e00
+60008432
+204066d5
+60090433
+18c27e00
+60010435
+20600000
+68010435
+1fe20c00
+20600000
+e8c08000
+1fe20400
+18430400
+c3800000
+e8c08000
+1fe9fe00
+1ff27e00
+98408400
+20600000
+e8c08000
+6000c5f5
+e8c08000
+60008438
+e8c08000
+60008439
+e8c08000
+6000843a
+e8c10000
+600145f6
+e8c08000
+6000843b
+e8c08000
+6000c600
+20600000
+204066b8
+202066ef
+6800c2e4
+79207e05
+79207e06
+6000c2e4
+6808c5f5
+184b8400
+18418403
+20406820
+7045ff03
+202067a1
+7009bd08
+20407d86
+204066b8
+6800c602
+1fe67c01
+2022e700
+20203b31
+6800c2e4
+79207e07
+6000c2e4
+202067a1
+204066d2
+e8c08000
+600089e1
+2040487a
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44ce4033
+580015ef
+e0a10000
+58001191
+e0a10000
+680089e1
+e0a08000
+58000007
+e0a28000
+58000001
+e0a10000
+20406634
+e0a08000
+20600000
+20206721
+79200025
+44cec033
+6800842c
+c039e72a
+c01fe72e
+c077e748
+c07fe740
+c029e74f
+20600000
+6800c2e4
+79207e03
+6000c2e4
+202067a1
+6800c2e4
+79207e03
+79207e02
+6000c2e4
+6800842a
+2040662b
+6000842d
+204067c1
+6800842a
+1feb7e00
+6000c5f5
+1febfe00
+793ffe01
+79207e00
+d84045fd
+60090426
+2040663a
+202067a1
+68010430
+1fe20c00
+1fe0fe01
+60010430
+e8c08000
+6808c600
+9840fe00
+6000c600
+20406853
+20406677
+20406838
+2040685d
+202067a1
+7009bd09
+20407d86
+20406611
+6800842a
+2040662b
+6000842d
+204067c1
+202067a1
+6801028d
+1fe20c00
+204066bf
+6800842b
+c000675b
+20206790
+79200025
+44cf4033
+6800842c
+c01fe682
+c039e68b
+c077e762
+202067a1
+68010430
+1fe20c00
+204066ca
+68008432
+c020e76b
+c020676b
+c038e776
+c0386786
+202067a1
+204066b6
+6800c5f5
+1fe37e00
+6808c5fc
+98467c00
+2022e772
+20203b31
+6800c2e4
+79207e01
+6000c2e4
+202067a1
+204066b8
+6800c602
+6808c5fc
+98467c00
+2022e77d
+20203b31
+202067a1
+6800c2e4
+79207e05
+79207e06
+6000c2e4
+6808c5f5
+184b8400
+18418403
+20406820
+202067a1
+204066b8
+6800c602
+6808c5fc
+98467c00
+2022e78c
+20203b31
+6800c2e4
+79207e07
+6000c2e4
+202067a1
+6800842b
+6808c5fc
+98467c00
+2022e796
+20203b31
+202067a1
+6800842c
+c039e79b
+c077e748
+c07fe740
+c029e7a0
+6800c2e4
+79207e03
+6000c2e4
+202067a1
+2020679f
+2020674f
+20600000
+6800c5ff
+207a0000
+c001e7a6
+20203b31
+7045ff00
+2040487a
+d8400001
+6808c5f5
+184b8400
+18418403
+da2000aa
+2040680a
+20404889
+18a20c00
+e8c10000
+203a3b31
+20600000
+20404889
+58000004
+e0a10000
+680142da
+e0a10000
+6800842a
+e0a08000
+79200025
+44cfc033
+5800013f
+e0a10000
+6800842d
+e0a08000
+20600000
+2040487a
+20404889
+58000004
+e0a10000
+680142da
+e0a10000
+6800842a
+e0a08000
+79200025
+44d04034
+58000173
+e0a10000
+6800842d
+e0a08000
+20600000
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d0c034
+580015ef
+e0a10000
+58001183
+e0a10000
+18427e00
+e0a08000
+580000f0
+e0a18000
+5800007f
+e0a10000
+58000000
+e0a08000
+58000001
+e0a08000
+20406634
+e0a08000
+70460110
+20600000
+2040487a
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d14034
+580015ef
+e0a10000
+58001181
+e0a10000
+6800c5f5
+e0a08000
+580000e0
+e0a18000
+68014604
+e0a10000
+58000000
+e0a08000
+6800c606
+e0a08000
+20406634
+e0a08000
+20600000
+20404889
+58000008
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d1c034
+580009ef
+e0a10000
+580005e3
+e0a10000
+18427e00
+e0a08000
+5800008d
+e0a08000
+20406634
+e0a08000
+20600000
+2040487a
+20404889
+58000008
+e0a10000
+680142da
+e0a10000
+18421600
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d24034
+580009ef
+e0a10000
+580005e1
+e0a10000
+19627e00
+e0a08000
+5800008d
+e0a08000
+20406634
+e0a08000
+20600000
+79200025
+44d2c034
+6800c601
+207a0000
+68110112
+247a0000
+1a227e00
+600089bf
+600889be
+2040480e
+247a0000
+2040487a
+20404889
+58000005
+e0a10000
+680142da
+e0a10000
+6800843c
+e0a08000
+580001ff
+e0a10000
+6800c601
+e0a08000
+6800c5fe
+e0a08000
+70460100
+20600000
+79200025
+44d34034
+6800c603
+c1008000
+6801042e
+207a0000
+6800c601
+1fe0fe01
+6000c601
+20600000
+68014607
+20207f69
+79200025
+44d3c034
+6800c600
+207a0000
+1fe0ffff
+6000c600
+680145f6
+6809472c
+98467c00
+2021686a
+6001472c
+6800c601
+203a6872
+70043f01
+6800c5fe
+6000843e
+580000ff
+6000843d
+20206877
+70043f00
+6800c5fd
+6000843e
+580000ef
+6000843d
+79200025
+44d44035
+6801472c
+1fe67c7f
+2021687f
+6800843f
+1fe0fe01
+6000843f
+20406677
+6801472c
+1fe0fe08
+6808843f
+9840a200
+204047dc
+600102a0
+1fe0fe04
+600102a2
+1fe20a00
+6800843c
+e0a08000
+6800843d
+e0a08000
+204068aa
+204068bc
+79200025
+44d4c035
+68014609
+1fe20600
+6801472c
+1fe27200
+20406341
+18a20400
+18627e00
+60014609
+18420a00
+6800843e
+e0a08000
+680102a0
+1fe20a00
+6801472c
+6808843f
+9840fe00
+1fe0fe04
+e0a10000
+680142da
+e0a10000
+70460100
+6801460b
+c0005b20
+70041800
+20600000
+79200025
+44d54035
+6801472c
+1fe67c7f
+242168b3
+1fe3fe00
+79207e00
+e0a08000
+20600000
+6801472c
+1fe97e00
+1ff18400
+1fe17e7f
+1fe3fe00
+793ffe00
+e0a08000
+e0a88000
+20600000
+6800c601
+207a0000
+e0a08000
+20600000
+79200025
+44d5c035
+20407d9e
+20403d69
+20405926
+79200025
+44d64035
+204076f7
+204076ce
+204076e0
+2040480e
+247a0000
+2040432d
+2040480e
+247a0000
+79200025
+44d6c035
+20406913
+204044f2
+204067a2
+204068d8
+79200025
+44d74035
+20203d65
+680082a8
+c2804619
+c283c623
+20600000
+79200025
+44d7c035
+20404816
+207a0000
+6800804b
+c3830000
+204047f5
+6001016e
+1fe20c00
+e8c10000
+1fe0fe04
+6001427e
+70427d06
+79200025
+44d84036
+680142d6
+203a68f9
+6800804b
+c4038000
+793ffe07
+6000804b
+70427d05
+680942d6
+6801016e
+9840fe00
+6001016e
+6801427e
+98467e00
+6001427e
+79200025
+44d8c036
+6801427e
+203a3b31
+d8400104
+98467e00
+24216907
+79200025
+44d94036
+6009427e
+680142d6
+9840fe00
+600142d6
+20206909
+58000000
+600142d6
+6800804b
+79207e06
+6000804b
+20600000
+6800c70d
+c2806911
+7002b001
+20600000
+7002b00f
+20600000
+6800c70a
+243a6919
+680082af
+207a0000
+7002af00
+20600000
+79200025
+44d9c036
+680082b0
+207a0000
+c000e93a
+c0016993
+c001e940
+c0026997
+c01de94a
+c01e699a
+c006e94f
+c007699f
+c007e952
+c00869a5
+c008e958
+c00969a9
+c009e95e
+c00a69ad
+c00ae964
+c00b69b1
+c00be96a
+c00c69b6
+c00ce970
+c00d69ba
+c00de976
+c00e69be
+c00ee97c
+c00f69c3
+c00fe982
+c01069c7
+c010e98d
+c01169cb
+20600000
+204069d6
+7002b002
+6800c2e0
+79207e00
+6000c2e0
+20600000
+7002b004
+6800c2e0
+c3810000
+7002b003
+204069de
+7002b004
+6800c2e0
+79207e02
+6000c2e0
+20600000
+20404816
+247a0000
+204069ef
+7002b03c
+20600000
+204069e4
+7002b00e
+20600000
+20406a02
+7002b010
+6800c2e2
+79207e00
+6000c2e2
+20600000
+20406a0a
+7002b012
+6800c2e2
+79207e02
+6000c2e2
+20600000
+20406a10
+7002b014
+6800c2e3
+79207e00
+6000c2e3
+20600000
+20406a18
+7002b016
+6800c2e3
+79207e02
+6000c2e3
+20600000
+204069f4
+7002b018
+6800c2e1
+79207e00
+6000c2e1
+20600000
+204069fc
+7002b01a
+6800c2e1
+79207e02
+6000c2e1
+20600000
+20406a1e
+7002b01c
+6800c2e1
+79207e06
+6000c2e1
+20600000
+20406a26
+6800c2e4
+79207e00
+6000c2e4
+7002b01e
+20600000
+20406a2d
+6800c2e4
+79207e02
+6000c2e4
+7002b020
+6800c5fc
+1fe9fe00
+1fe1fe03
+d84045fd
+60090426
+2020663a
+20406a38
+6800c2e4
+79207e04
+6000c2e4
+7002b022
+20600000
+6800c2e0
+c4008000
+7002b003
+20206919
+6800c2e0
+c19f8000
+7002b03b
+680082ae
+c18b8000
+7002ae00
+7002b00d
+20206919
+6800c2e0
+247a0000
+6800c70d
+c28069ce
+c28369d0
+202069d4
+6800c2e2
+c4008000
+7002b011
+20206919
+6800c2e2
+c19f8000
+7002b013
+20206919
+6800c2e3
+c4008000
+7002b015
+20206919
+6800c2e3
+c19f8000
+6800c70d
+c28369d0
+202069d4
+6800c2e1
+c4008000
+7002b019
+20206919
+6800c2e1
+c19f8000
+7002b01b
+20206919
+6800c2e1
+c1ff8000
+6800c70d
+c28369d2
+202069d4
+6800c2e4
+c4008000
+7002b01f
+20206919
+6800c2e4
+c4018000
+7002b021
+20206919
+6800c2e4
+c1ff8000
+202069d4
+7002b00f
+20206919
+7002b017
+20206919
+7002b01d
+20206919
+7002b000
+20600000
+79200025
+44da4036
+2040485e
+58000001
+1fe20400
+58000050
+1fe21600
+2020463a
+79200025
+44dac036
+2040485e
+680142d8
+1fe20400
+2020464a
+79200025
+44db4036
+2040485e
+680142d8
+1fe20400
+d9600050
+20404660
+6800c2e0
+793ffe05
+6000c2e0
+20600000
+79200025
+44dbc036
+2040486c
+20406d01
+2020467c
+79200025
+44dc4037
+2040485e
+58000003
+1fe20400
+58000051
+1fe21600
+2020463a
+79200025
+44dcc037
+2040485e
+680142da
+1fe20400
+2020464a
+79200025
+44dd4037
+2040485e
+58000011
+1fe20400
+58000052
+1fe21600
+2020463a
+79200025
+44ddc037
+2040485e
+680142dc
+1fe20400
+2020464a
+79200025
+44de4037
+2040485e
+58000013
+1fe20400
+58000053
+1fe21600
+2020463a
+79200025
+44dec037
+2040485e
+680142de
+1fe20400
+2020464a
+79200025
+44df4037
+2040487a
+70042a03
+70042d1c
+204067b3
+7045fb01
+20600000
+79200025
+44dfc037
+2040487a
+6808c5fc
+2040667e
+6008c5f5
+202067d0
+79200025
+44e04038
+2040487a
+6808c5f5
+20406678
+2040661f
+6000842d
+6808c5f5
+20406678
+6008842a
+202067b3
+79200025
+44e0c038
+2040487a
+6808c5f5
+20406678
+2020680a
+79200025
+44e14038
+6801028d
+98000c00
+e8c08000
+1fe22400
+60008446
+e8c10000
+60010447
+e8c08000
+1fed1600
+e8c08000
+99609600
+79200025
+44e1c038
+1a427e00
+c0016a53
+c0026a7c
+c0036b5d
+c003ed18
+20206d40
+20406d4f
+2841fe01
+2020edbd
+2841feff
+2020ed43
+e8c10000
+6001044b
+196097fe
+196097ff
+2422ed3d
+d9600440
+e9610000
+207a0000
+19609602
+20406e09
+20404878
+18007e03
+e0a08000
+68010447
+e0a10000
+18ebfe00
+1fe0fe05
+1fe0a605
+1ff0fe00
+e0a10000
+18e27e00
+1ff0fe00
+e0a10000
+e0a10000
+d8c0045c
+18e27200
+2022ea76
+e8c20000
+e0a20000
+c2006a73
+18007e00
+e0a08000
+1a627e00
+6000829e
+203a3b31
+20600000
+e8c20000
+60020455
+196097fc
+98000400
+e8c10000
+1ff0fe00
+1fe0ffee
+60010449
+196097fe
+20406da6
+2022ed43
+2a21fe05
+2020ea8c
+d8a00428
+18000e00
+20206a9c
+e8c08000
+c0856d43
+e8c10000
+243a6a9a
+e8c08000
+c0ffea98
+e8c08000
+c0ffea96
+18c08dfb
+20206af2
+18c08dfb
+20206a89
+18c08dfc
+20206a89
+18c08dfd
+20206a89
+e8c08000
+c004eab1
+c0056a9f
+e8c10000
+e0a10000
+18e08e01
+1ff0a400
+e8c10000
+1ff0fe00
+1a40a401
+9a467c00
+24216aae
+1fe22600
+1a50fe00
+e0a10000
+18e08e01
+1a627e00
+20206aa5
+196097fb
+1a20a3fb
+20206ab6
+e8c10000
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24216d43
+2422ea9c
+196097ff
+2422ed43
+20404878
+18a08a0a
+da200428
+79200025
+44e24038
+18e27e00
+203a6ad2
+ea210000
+203a6ad2
+98002400
+68020455
+98000400
+20406e52
+203a6acf
+18c08dfd
+e8c18000
+e0a18000
+20406cea
+203a6acf
+98007200
+20407ecd
+1a20a202
+18e08fff
+20206abd
+79200025
+44e2c038
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe0a
+98a67e00
+1fe62200
+1a30fe00
+1840a408
+e2410000
+1a20a203
+1a30fe00
+1840a405
+e2410000
+1a20a203
+1a30fe00
+1840a403
+e2410000
+1a20a205
+1a227e00
+6001029e
+58000036
+1840a407
+e2408000
+58000005
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+e8c08000
+c0856d43
+e8c10000
+243a6d43
+e8c08000
+c0ffed43
+e8c08000
+c0ffed43
+196097fb
+e8c08000
+c0006aff
+c000eb02
+c0016b06
+60010444
+196097ff
+20206b0a
+e8c08000
+60010444
+196097fe
+20206b0a
+e8c10000
+1ff0fe00
+60010444
+196097fd
+2422ed3d
+79200025
+44e34038
+20406e20
+2422ed3a
+18c22200
+20404878
+1a220c00
+18a08a03
+18c21600
+20406dea
+1fe22200
+68010444
+1fe22400
+1a227e00
+9a462400
+68010449
+9a467c00
+24216b38
+78547c00
+68010444
+203a6b2b
+99608c00
+1a40a403
+1a427200
+1f227e00
+1fe0fe03
+1ff0fe00
+e0a10000
+1f227e00
+1ff0fe00
+e0a10000
+20206b46
+1a20f206
+20346b2f
+1f30fe00
+20206b32
+1f227e00
+1fe0fe02
+1ff0fe00
+e0a10000
+1f20f3fd
+1f30fe00
+e0a10000
+19620c00
+20206b46
+78347c00
+68010449
+1fe22200
+1fe27200
+68010444
+203a6b2b
+99608c00
+1a227e00
+1fe0fe05
+1ff0fe00
+e0a10000
+1a227e00
+1ff0fe00
+e0a10000
+e8c08000
+e0a08000
+c2006b46
+24346b51
+18007e02
+e0a08000
+18c27e00
+99667e00
+1ff0fe00
+e0a10000
+20206b53
+18007e00
+e0a08000
+6801029c
+98a67e00
+1fe67e00
+6001029e
+20404878
+58000005
+e0a08000
+68010447
+e0a10000
+20600000
+20406d4f
+2841feff
+2020eb88
+e8c10000
+1ff0fe00
+1fe0ffee
+60010449
+196097fe
+20406da6
+d8a00428
+18000e00
+e8c18000
+c084eb88
+1fecfe00
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24216d43
+2422eb68
+196097ff
+2422ed43
+20404878
+18a08a0d
+68010440
+98002600
+da200428
+ea220000
+203a6bae
+ea210000
+98002400
+20406e2e
+203a6b86
+18c08dfd
+e8c18000
+e0a18000
+20406cea
+98007200
+e8c08000
+e0a08000
+c2006b83
+1a20a202
+20206b78
+79200025
+44e3c038
+e8c08000
+e8c08000
+196097fb
+1a20a3fb
+24216d43
+e8c08000
+196097ff
+70044400
+70044500
+243a6b9f
+d9600440
+e9610000
+19609602
+20406e09
+18e27e00
+60008474
+203a6dc0
+d8e00000
+20404878
+18a08a0a
+20206c05
+e8c10000
+196097fe
+1ff0fe00
+60010444
+d9600440
+e9610000
+19609602
+20406e09
+18e27e00
+60008474
+203a6dc0
+d8e00000
+20404878
+18a08a07
+20206c14
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe0d
+98a67e00
+2022ebd2
+1fe67e00
+1840a40c
+e2408000
+1fe0fe03
+1840a409
+e2408000
+1fe0fe03
+1ff0fe00
+1840a405
+e2410000
+1fecfe00
+1fe0fe03
+1ff0fe00
+1840a403
+e2410000
+1fecfe00
+1fe0fe05
+6000829e
+68010447
+1840a401
+e2410000
+58000007
+e0408000
+58000036
+1840a407
+e2410000
+1840a40a
+e2410000
+20600000
+70029e0a
+20404878
+58000007
+e0a08000
+68010447
+e0a10000
+58000500
+e0a10000
+58000200
+e0a10000
+58000035
+e0a18000
+20600000
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+2022ebe5
+c2006bdf
+18a21600
+1a427e00
+60010444
+1a227e00
+60010449
+203a6c26
+20346c85
+19620a00
+18e08e01
+68008474
+98e67c00
+2422ec05
+20206ca4
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+2022ebf8
+c2006bf2
+18a21600
+1a427e00
+60010444
+1a227e00
+60010449
+203a6c61
+20346c85
+19620a00
+18e08e01
+68008474
+98e67c00
+2422ec14
+20206ccc
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+18c21600
+20406dea
+1fe0f203
+68010449
+1fe22200
+68010444
+1fe22400
+19620c00
+20206bdf
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+18c21600
+20406dea
+1fe0fe03
+68090444
+98467200
+68010449
+1fe22200
+68010444
+1fe22400
+19620c00
+98c08c00
+20206bf2
+d8e00000
+da400000
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+20406dea
+1fe0fe03
+9a40a400
+18e08e01
+68008474
+98e67c00
+2422ec28
+19620a00
+18007e02
+e0a08000
+68010444
+1ff0fe00
+e0a10000
+18a08bfd
+6809029c
+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
+6001029e
+58000007
+e0408000
+58000036
+1840a407
+e2408000
+1840a401
+68010447
+e2410000
+20600000
+d8e00000
+da400000
+19620a00
+18007e02
+e0a08000
+68010444
+1ff0fe00
+e0a10000
+18a08bfd
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a205
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+1840a401
+68010447
+e2410000
+20600000
+19620a00
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18007e00
+e0a08000
+18a08bff
+6809029c
+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
+6001029e
+58000036
+1840a407
+e2408000
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c0036cf3
+c000ede2
+c0026de7
+c002ede5
+20206de0
+20406cf5
+20206de0
+1f227e00
+c002ecfa
+c0036cfd
+18007203
+20206df1
+e8c08000
+1fe0fe02
+20600000
+e8c10000
+1ff0fe00
+1fe0fe03
+20600000
+20404878
+1fe20a00
+58000006
+e0a08000
+5800006e
+e0a10000
+58000f00
+e0a10000
+581a0535
+e0a18000
+58000111
+1ff07e00
+e0a20000
+58002600
+e0a10000
+58000335
+e0a10000
+58000009
+e0a10000
+58000004
+e0a10000
+70029e14
+20600000
+18c20400
+68010447
+c0376d1c
+20206d25
+18420c00
+196097fd
+19627e00
+c0016d25
+20406d26
+20740000
+6000c5fc
+7002ae17
+20600000
+20600000
+78347c00
+1fe27200
+d8400400
+e8c10000
+98467c00
+2022ed2f
+18c08dff
+c2006d29
+20600000
+d8400300
+e8c10000
+98467c00
+2022ed36
+18c08dff
+c2006d30
+20600000
+e8c08000
+e8c08000
+78547c00
+20600000
+58000200
+6001044d
+20206d45
+58000400
+6001044d
+20206d45
+58000600
+6001044d
+20206d45
+58000300
+6001044d
+20404878
+e0a08000
+68010447
+e0a10000
+58000200
+e0a10000
+6801044d
+e0a10000
+70029e07
+20600000
+79200025
+44e44039
+18000400
+d8a00440
+20406da6
+2022eda4
+e8c08000
+1a20a3ff
+196097ff
+2fe1f018
+2420eda4
+2fe00e04
+2420ed72
+18000401
+e8c08000
+1a20a3ff
+196097ff
+c0806d66
+e8c08000
+1a20a3ff
+196097ff
+c0006d77
+20206d69
+18c08c01
+1a20a3ff
+196097ff
+18c08c02
+1a20a3fe
+196097fe
+2841fe00
+2020ed9f
+18c08c0c
+1a20a3f4
+196097f4
+20206d9f
+2fe00e02
+2420ed75
+20206d5d
+2fe00e01
+2420eda4
+e8c10000
+1a20a3fe
+196097fe
+e0a10000
+2841fe00
+2020ed9f
+18c20400
+79200025
+44e4c039
+e8c08000
+c0806d98
+e8c08000
+c0806d98
+e8c08000
+c0886d98
+e8c08000
+c0806d98
+e8c08000
+c0c06d98
+e8c08000
+c0806d98
+e8c08000
+c0806d98
+e8c08000
+c0c06d98
+e8c08000
+c0afed98
+e8c08000
+c0cded98
+e8c08000
+c09a6d98
+e8c08000
+c07ded9d
+18420c00
+18c08c0c
+18000e00
+18000400
+20206d9d
+196097f4
+1a20a3f4
+2a21fe00
+2420ed55
+18007e00
+e0a10000
+20600000
+d84000ff
+20600000
+e8c08000
+196097ff
+2fe1f030
+2420edbb
+2fe00e07
+2020edb4
+2fe00e06
+2020edb6
+2fe00e05
+2420edbb
+e8c08000
+1fe22200
+196097ff
+20206db9
+18c08c02
+196097fe
+e8c10000
+1ff0a200
+196097fe
+18007e01
+20600000
+18007e00
+20600000
+58000003
+60008446
+20206dc2
+58000007
+60008446
+20404878
+68008446
+e0a08000
+1fe22400
+68010447
+e0a10000
+58000500
+e0a10000
+2a41fe05
+2020edd2
+2a41fe07
+2020edd2
+58000000
+e0a18000
+e0a10000
+20206dd6
+58350200
+e0a18000
+58000000
+e0a10000
+70029e0a
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c0036de7
+c000ede2
+c0026de7
+c002ede5
+19620c00
+20600000
+20406e03
+1fe0fe01
+20206de0
+18007e02
+20206de0
+20406df9
+1fe0fe02
+20206de0
+e8c08000
+1fe17207
+1fe97e00
+c0036df9
+c000edf1
+c002edfe
+20600000
+20406e03
+98007200
+18000400
+184d0400
+e8c08000
+98418400
+c2006df4
+20600000
+1f227e00
+c002edfe
+c0036e00
+18007203
+20206df1
+e8c08000
+20600000
+e8c10000
+1ff0fe00
+20600000
+18007e01
+1f227c00
+20628000
+1fe3fe00
+c2006e06
+20600000
+98002600
+79200025
+44e54039
+18000e00
+6801460d
+98000c00
+d8a0045c
+78547c00
+e8c08000
+207a0000
+98007200
+e8c10000
+9a667c00
+2422ee18
+78347c00
+c2006e14
+e8c20000
+24346e1d
+e0a20000
+18e08e01
+20406dea
+98c08c00
+20206e10
+79200025
+44e5c039
+6801460d
+98000c00
+e8c08000
+207a0000
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+20628000
+20406dea
+98c08c00
+20206e24
+79200025
+44e64039
+6801460d
+98000c00
+e8c08000
+203a6e4f
+98007200
+e8c10000
+9a667c00
+2022ee3d
+c2006e35
+18c08c04
+20406dea
+98c08c00
+20206e32
+1f20f3ff
+1f23fe00
+98c08c00
+18c08c04
+20406dea
+98c08400
+18c08c01
+e8c10000
+9a461600
+7922fe00
+19621600
+20628000
+20406dd8
+98c08c00
+18427e00
+98c67c00
+2022ee4f
+20206e43
+18000c00
+18007e00
+20600000
+79200025
+44e6c039
+6801460d
+98000c00
+e8c08000
+203a6e6c
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+2022ee60
+20406dea
+98c08c00
+20206e56
+20406dea
+98c08400
+18c08c01
+e8c10000
+9a467c00
+20628000
+20406dd8
+98c08c00
+18427e00
+98c67c00
+2022ee6c
+20206e62
+18000c00
+20600000
+79200025
+44e74039
+70050950
+d8a0050a
+d8c044c3
+20407e87
+d8c0465a
+20407e85
+d8c008e2
+20407e85
+20406f2d
+d8c00352
+20406f28
+20406ef2
+d8a00a11
+20406f24
+580f4240
+1fe22200
+68020a11
+9a26fc00
+20407f53
+18077e00
+600208de
+20600000
+70050941
+d8a0050a
+20406ed7
+20406ed2
+6801c4dd
+e0a18000
+20406e96
+d8c00352
+20407e87
+d8c044c3
+20407e87
+20406f2d
+d8c00a31
+d8a009e1
+20407e87
+20206ef2
+6802456d
+e0a20000
+20407e98
+20207e95
+79200025
+44e7c039
+70050941
+d8a0050a
+20406ed2
+20406ed7
+6801c4d6
+e0a18000
+20406e96
+d8c044c3
+20407e87
+d8c00352
+20407e87
+20406f2d
+d8c00a31
+d8a009e1
+20407e87
+20406ef2
+d8a00a11
+20206f24
+70050920
+d8c00922
+d8a0050a
+20407e85
+20406f2d
+d8c008c2
+20406f28
+20406ef2
+d8a009e1
+204071c0
+d8400001
+20406ec0
+d8a044a2
+20406f24
+d8400000
+20406ec0
+d8a00a31
+202071c0
+79200025
+44e8403a
+70050935
+58000100
+6001050a
+20406ed2
+20406ed7
+d8c044c3
+20407e87
+d8c00352
+20407e87
+58006c65
+e0a10000
+58006274
+e0a10000
+e0a88000
+20406f2d
+20206ef2
+6803453e
+e0a30000
+6800c532
+e0a08000
+20600000
+68030372
+e0a30000
+6800c52b
+e0a08000
+20600000
+70050941
+6800c6ec
+6000850a
+d8c0465a
+20407e85
+d8c008e2
+20407e85
+20406f2d
+d8c00352
+20406f28
+20206ef2
+70050941
+6800c6ec
+6000850a
+d8c008e2
+20407e85
+d8c0465a
+20407e85
+20406f2d
+d8c044c3
+20406f28
+20206ef2
+79200025
+44e8c03a
+20406f42
+68008509
+1fe20400
+1fe0fe0f
+1ff1fe00
+1fe22400
+203a6f05
+18417e0f
+243a6f08
+da6009f1
+dfe0050a
+1fe0fff0
+9840a200
+d8a00a21
+df200004
+20407ea8
+20206f13
+da400001
+da200000
+20206f09
+1841220f
+dfe0050a
+9840fe00
+9a260c00
+d8a00a11
+20406f69
+da600a01
+da200a11
+d8a00a21
+df200004
+20407ea8
+204071ba
+20407150
+d8c0050a
+1a40a5ff
+1a427e00
+203a6f1c
+204071af
+2040714a
+20206f16
+d8a00a11
+204071c0
+d8c00a21
+204071af
+20407150
+d8c00a11
+204071af
+2020714a
+18a22200
+204071c0
+df200010
+20207eb0
+d8a009e1
+20407e87
+df200010
+da2009e1
+20207eb0
+68008509
+1fe27200
+da20050a
+20207eb0
+ea208000
+1fe3fe00
+2a6ffe00
+7920fe00
+2feffe08
+7920a600
+e2208000
+1a20a3ff
+c2006f31
+20600000
+da2009f1
+1a20a20f
+18007210
+18002600
+20206f31
+da200a01
+20206f3c
+d8c009e1
+204071ad
+18007008
+204071bb
+204071ba
+20407147
+d8a009f1
+204071c0
+79200025
+44e9403a
+680089f1
+2feffe07
+2420ef54
+20406f3b
+da6009f1
+d8a009f1
+20406f5e
+20206f55
+20406f3b
+d8c009f1
+d8a00a01
+20407e87
+68008a01
+2feffe07
+2420ef40
+20406f40
+da600a01
+d8a00a01
+df200003
+d8400000
+20406f65
+1a60a604
+c2006f5f
+d8408700
+18500400
+ea620000
+9842fe00
+e0a20000
+20600000
+79200025
+44e9c03a
+df200010
+dfe00000
+9a267c00
+2022ef75
+20216f78
+e8c88000
+e0a88000
+1fe0fe01
+c2006f6d
+20600000
+d8400080
+e0a88000
+20206f72
+d8400000
+20206f76
+20406f8d
+d8c004b6
+d8a004a6
+20207e87
+78547c00
+20407084
+d8c00486
+d8a004c6
+1800720f
+20407ecd
+e8c08000
+1fe2fe06
+e0a08000
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+6808c718
+18002410
+1840a606
+1a667c10
+20216f93
+18002610
+d8a004c6
+d8c04719
+18427200
+78547c00
+e8c08000
+e0a08000
+1a40a5ff
+2022efa1
+c2006f97
+20346f94
+78347c00
+18007206
+1a220c00
+20206f97
+d8c00486
+d8a004d6
+20407e87
+680084e5
+9a62fe00
+600084e5
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+78547c00
+20407084
+20206fb7
+da200056
+78347c00
+20407084
+20406fb7
+d8c004b6
+d8a00062
+20207e87
+58000486
+600104fa
+58004261
+600104f8
+793f8012
+20406fcd
+da2004b6
+da400486
+d8a004c6
+20407077
+da2004c6
+da4004d6
+1a420a00
+78347c00
+20407075
+2040708f
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+7004fc00
+680104f8
+98000c00
+d8a004e6
+20407e87
+680104fa
+98000c00
+d8a004b6
+20407e87
+20406ff4
+78547c00
+c5896fde
+680084fc
+c0826fde
+680104fa
+98002400
+20407026
+20407025
+20407038
+680084fc
+1fe0fe01
+600084fc
+20406ff4
+78347c00
+20407025
+20407047
+20407056
+20407047
+20407056
+20407047
+20407056
+20407047
+680084fc
+1fe0fe01
+600084fc
+c0886fd6
+20406ff4
+78547c00
+20207025
+680084fc
+d8c004e6
+203a701b
+98002400
+18007211
+18c20a00
+e8c08000
+1fe98400
+1feb7e00
+1fe97e00
+9841fe00
+e0a08000
+c2006ffa
+580004e6
+9a408c00
+18007210
+d8a00496
+e8c08000
+e0a08000
+28c1fef7
+2420f00a
+18c08def
+c2007005
+18002200
+1a40a7ff
+1a6ba600
+1a6ba600
+204071e2
+58008400
+9a60a600
+d8a00496
+18007210
+ea688000
+e8a08000
+9840fe00
+e0a08000
+1a60a601
+c2007014
+202071e6
+18007210
+18000400
+e8c08000
+98428400
+c200701d
+18427e00
+e0c08000
+d8c004e6
+d8a00496
+20207e87
+da400496
+18007210
+da2004b6
+1a220a00
+ea288000
+ea408000
+9842e000
+1f212603
+2434702f
+1a62a603
+1a662601
+20217032
+9840e000
+1e027e00
+e0a08000
+1a20a201
+1a40a401
+c2007029
+20600000
+204071e2
+18007210
+da2004b6
+ea208000
+d8c08500
+1f212603
+1a667c01
+20217041
+d8c08600
+98c08c00
+e8c08000
+e2208000
+1a20a201
+c200703b
+202071e6
+18007208
+d8c004b6
+18c20a00
+e8c08000
+98002200
+e8c08000
+98002400
+1a23fe00
+9a40fe00
+e0a08000
+1a227e00
+9a40fe00
+e0a08000
+c200704a
+20600000
+588ae42c
+98000400
+18007207
+20407065
+580d751b
+98000400
+18007205
+20407065
+680084c5
+98002200
+680084b9
+600084c5
+1a227e00
+600084b9
+20600000
+1841240f
+18417e0f
+d8a004b6
+98a08a00
+e8a08000
+98002600
+1a227e00
+e0a08000
+1a622200
+18518400
+c2007066
+580004b6
+9a408a00
+1a227e00
+e0a08000
+20600000
+78347c00
+20207078
+78547c00
+18007210
+ea288000
+ea408000
+2034707e
+9842fe00
+2020707f
+9840fe00
+e0a08000
+1a20a201
+1a40a401
+c2007079
+20600000
+d8a004d6
+ea230000
+e0a30000
+2034708a
+ea230000
+2020708b
+e8c30000
+e0a30000
+ea220000
+e0a20000
+20600000
+d8c04261
+d8a004c6
+d8400000
+588395a7
+204070b0
+58b3c1df
+204070b0
+5800e5e9
+204070b1
+18422800
+78547c00
+2040709e
+1a820400
+78347c00
+2020709e
+18007208
+e8c08000
+2f200201
+203470a5
+2020f0a6
+9840fe00
+202070a7
+2020f0a3
+9842fe00
+e0a08000
+184c8400
+c200709f
+20600000
+680304ba
+60030056
+e8c30000
+e0a30000
+20600000
+184d0400
+18500400
+98418400
+20600000
+202070b4
+79200025
+44ea403a
+20407153
+d8a044a2
+202071c0
+d8a044c3
+2034f0bd
+d8a00352
+18c22200
+20407e87
+20407168
+d8c044b3
+202071d9
+da200352
+2034f0c5
+da2044c3
+1a220a00
+20405917
+20207168
+d8c04551
+204071af
+d8c044a2
+204071b0
+18006c38
+18006c00
+20407145
+d8a003a0
+202071c0
+18007e49
+202070d4
+18007e01
+18007000
+184d5e00
+9de1de00
+1f00f001
+184cde00
+1df15e00
+6801449a
+1ff07e00
+9de1de00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+e8c10000
+1a30de00
+1df05e00
+9de1de00
+1f00f001
+20600000
+1a608c01
+e8c08000
+98002200
+204070d1
+20407147
+18007000
+ea608000
+1fe17e03
+1ff05e00
+79205e08
+204071b8
+2040714a
+1a227200
+1a608c02
+20407197
+204071a1
+2040714a
+1f227e00
+203a70fb
+202070f6
+1800700c
+1de27e00
+6002033a
+20600000
+1a20a201
+204070d3
+1a620c00
+204071ab
+2040714d
+204071c7
+1a60a610
+1a40a5f0
+202170ff
+20600000
+79200025
+44eac03a
+da604465
+680ac48c
+204070e7
+18007008
+98005e00
+18002200
+204070d3
+2040714d
+da604467
+6800c466
+1fe0a5ff
+9a608a00
+1800700c
+1de27e00
+e0a20000
+204070ff
+6800c466
+1fe0fe04
+6000c466
+680ac48c
+18408401
+600ac48c
+20600000
+79200025
+44eb403a
+68008303
+1fe67c14
+20217127
+da600304
+1fe0a5ff
+1fe0fffc
+60008303
+9a608c00
+e8c20000
+18007008
+98005e00
+18002200
+680ac491
+204070d3
+2040714d
+1800700c
+1de27e00
+6002033e
+204070ff
+da600302
+204070e7
+680a033e
+98467e00
+247a0000
+68024496
+98467e00
+207a0000
+600a4496
+6802c491
+1fe0fe01
+6002c491
+18007e00
+20600000
+243bf145
+20600000
+18006c30
+18006c00
+20207145
+18006c32
+18006c02
+20207145
+18006c34
+18006c04
+20207145
+18006c01
+18006c00
+20600000
+18007000
+68020352
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+680244c3
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+204071bb
+1f00f1fc
+6802456d
+1fe25e00
+1f00f004
+18006c38
+18006c08
+20207145
+79200025
+44ebc03a
+6803453e
+680b0372
+2034f16f
+68030372
+680b453e
+18007008
+18425e00
+1f00f001
+184f5e00
+1ff07e00
+9de1de00
+1f00f001
+1fef5e00
+1f00f001
+18005e00
+18007e00
+6800c52b
+6808c521
+2434f17f
+6800c532
+6808c52b
+6000c4d3
+6008c4d4
+18007000
+da4044d3
+18007204
+ea220000
+ea4a0000
+9842de00
+1f00f001
+1a20a204
+1a40a404
+c2007184
+204071bb
+1f00f1fc
+6802456d
+1fe25e00
+1f00f004
+18006c38
+18006c0c
+20407145
+204071ba
+18006c3a
+18006c08
+20207145
+2f200600
+20608000
+18c27e00
+9f208a00
+18007e00
+e0a08000
+1f20f201
+2f200600
+20608000
+2020719c
+18007000
+1f227e00
+203a71a6
+e8c20000
+1f20f3fc
+98005e00
+1f00f001
+2f001e04
+20608000
+202071a2
+18007008
+202071b0
+18007004
+202071b0
+18007000
+18007204
+e8c20000
+98005e00
+1f00f001
+c20071b1
+20600000
+d8c003a0
+202071ad
+18007204
+202071bd
+18007000
+18007204
+18005e00
+1f00f001
+c20071bc
+20600000
+1800700c
+18007204
+1de27e00
+e0a20000
+1f00f001
+c20071c2
+20600000
+1800700c
+1a620a00
+1a40f201
+1f267c0f
+202171cd
+18007210
+1de27e00
+1f267c03
+202171d5
+e0a20000
+1f20f3fc
+20628000
+1f00f001
+202071cd
+e0a08000
+1fecfe00
+c20071d5
+20600000
+1800700c
+18007204
+e8c20000
+9de67c00
+24628000
+1f00f001
+c20071db
+18007c00
+20600000
+68108050
+793ffe00
+60108050
+20600000
+68108050
+79207e00
+60108050
+20600000
+d8a007aa
+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
+d8a00842
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+3804003f
+38080000
+380c0000
+e0a48000
+38000000
+38040000
+38081000
+380c0000
+e0a48000
+3803ff00
+3807ffff
+380bffcf
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380c03ff
+e0a48000
+38000000
+38040000
+38080000
+380c0000
+e0a48000
+38010000
+38040000
+380bf000
+380fffff
+e0a48000
+380296ff
+38062630
+380b945d
+380fd284
+e0a48000
+380333a0
+38044b7a
+380837d8
+380fc9dc
+e0a48000
+3803a440
+3805b958
+380b8bce
+380d091f
+e0a48000
+3802e12c
+3805f47c
+380b56b1
+380efd47
+e0a48000
+38006837
+3806ed90
+3809ecec
+380dacc5
+e0a48000
+38023357
+38058af3
+3808f9e1
+380d29f0
+e0a48000
+3802e7eb
+3807e6e3
+380be1a7
+380d0b8b
+e0a48000
+38024fe3
+380420ef
+3809b5a6
+380cdc2f
+e0a48000
+38013860
+3806bd69
+3808391a
+380db222
+e0a48000
+20600000
+20758000
+204074fd
+204075c9
+70808100
+204073a5
+5800737c
+6001428c
+5800748c
+6001428e
+58007365
+60014298
+5800737a
+60014294
+58007371
+60014290
+580072f4
+60014296
+580072ef
+6001428a
+580074e5
+6001429c
+580074f4
+6001429a
+20407496
+70421200
+7048c700
+79200025
+44ec403b
+6800c755
+c00072b8
+20407382
+20407cf6
+20407d02
+70475600
+6801470b
+c3860000
+20203e75
+70475601
+70475b01
+20407382
+58004771
+2040738e
+20407d44
+6800c713
+243a72bd
+7043ff01
+58000000
+60024729
+20407382
+68014748
+6001474a
+204072e5
+70474600
+20405234
+6803453e
+204072d6
+204072d2
+20600000
+600141f4
+1fe0fffc
+6001451c
+6001451e
+20600000
+68094741
+207a0000
+e0430000
+20600000
+60030100
+68008100
+6000810b
+e8c08000
+6000810a
+e8c08000
+60008109
+e8c08000
+60008108
+e8c08000
+60008107
+e8c08000
+60008106
+68030106
+20600000
+7048bb00
+6801474e
+243a72ec
+58004763
+2040738e
+580000a0
+204072cd
+6801474c
+6001474e
+20600000
+6800c740
+c000be35
+6800c877
+243a3e35
+20203e37
+1a627e00
+c016f475
+c008747a
+c00a7334
+c00af34c
+1fe1040f
+1fe17ef0
+c02872fd
+20600000
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+79200025
+44ecc03b
+20407d1f
+2040731f
+2040732c
+2040746c
+20407464
+20407313
+2040730c
+202072fe
+6800c8c7
+207a0000
+1fe0ffff
+6000c8c7
+247a0000
+70421205
+20600000
+6800c8c2
+207a0000
+1fe0ffff
+6000c8c2
+247a0000
+68008362
+c302731c
+7048c201
+20600000
+20403e7f
+7009bd12
+20207d90
+6800c756
+c1808000
+6801474e
+207a0000
+1fe0ffff
+6001474e
+247a0000
+6801470b
+c284f32a
+5800476a
+2040738e
+58000140
+202072cd
+6801474a
+207a0000
+1fe0ffff
+6001474a
+247a0000
+70475602
+20407487
+20600000
+70413100
+68014748
+6001474a
+70474600
+20403e61
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+20403e61
+20403e7f
+70474e00
+5800477f
+2040738e
+70470e00
+20600000
+70421200
+7048c700
+7044b200
+7048c600
+7048c000
+2040749b
+68014748
+6001474a
+6800c743
+c0807369
+204072e5
+70474600
+58000000
+60010286
+58000000
+60010288
+20407363
+20403e63
+20600000
+70474001
+20600000
+6800c740
+20600000
+70474000
+20600000
+20203e75
+70474301
+6801470b
+c284be6b
+2040736d
+20407f6b
+70474300
+20203e0a
+58000000
+60010286
+60010288
+20207363
+6800c747
+245a7375
+204074ca
+202073c5
+70474700
+7009bd03
+20204bd6
+70474701
+20600000
+204074ca
+202073c5
+204073af
+680147b6
+203a7380
+20203e75
+20406509
+2020748c
+6800c75e
+1fe27200
+5800475f
+1fe22200
+1a220c00
+e8c08000
+c07ff38c
+1fe20400
+6000c70e
+20407d2a
+c2007386
+20600000
+1fe20c00
+18007207
+d8a047a2
+20407ecd
+79200025
+44ed403b
+6800c7a2
+c17f8000
+680947a4
+60094711
+680947a6
+6009470f
+6808c7a8
+6008c713
+20407d2f
+6808c7a3
+6008c70e
+6800c7a2
+c00073a3
+c000fd38
+c0017d3f
+20600000
+20207d2f
+6800c7a9
+207a0000
+1fe27200
+580047aa
+1fe22200
+ea288000
+204064df
+1a20a202
+c20073aa
+20600000
+da2047aa
+18002400
+7047b600
+ea288000
+204064f5
+79200025
+44edc03b
+680147b6
+1a420e00
+f920fe00
+600147b6
+1a20a202
+1a40a401
+6800c7a9
+9a42fc00
+2422f3b2
+680147b6
+680947b8
+9842fc00
+20628000
+78347c00
+20600000
+d8e0000c
+20407ee2
+247a0000
+204074c7
+6800c75b
+207a0000
+78547c00
+2040748c
+79200025
+44ee403b
+6800c7a9
+207a0000
+204073af
+24347d28
+20407d26
+78547c00
+68014748
+6001474a
+6801470b
+c304f2e5
+204074de
+202173f5
+680147b6
+600147c0
+7047c200
+18000e00
+79200025
+44eec03b
+680147b8
+1fe30400
+600947b8
+1fe17e01
+680947c0
+18412201
+18430400
+600947c0
+9a22fc00
+2442f3f9
+6800c7a9
+6808c7c2
+18408401
+6008c7c2
+18420e00
+98e2fc00
+2422f3df
+680147b6
+600147b8
+20600000
+58000000
+600147b6
+600147b8
+20600000
+1a227e00
+203a7419
+79200025
+44ef403b
+18e27e00
+c0007423
+c000f427
+c001742b
+c001f42f
+c0027433
+c002f437
+6800c56b
+c1818000
+6800c8bb
+247a0000
+e8408000
+207a0000
+6000c7ba
+18408401
+600947bb
+680147bb
+efe88000
+18427200
+98408400
+600947bb
+1fe20400
+2040749c
+6800c7ba
+1fe0ffff
+6000c7ba
+2422f40d
+202074ca
+79200025
+44efc03b
+18e27e00
+c000743b
+c000f43f
+c0017443
+c001f447
+c002744b
+c002f44f
+20207404
+6800c7ab
+20407457
+d84047c3
+20207404
+6800c7ad
+20407457
+d84047eb
+20207404
+6800c7af
+20407457
+d8404807
+20207404
+6800c7b1
+20407457
+d8404823
+20207404
+6800c7b3
+20407457
+d840483f
+20207404
+6800c7b5
+20407457
+d840485b
+20207404
+6800c7ab
+20407453
+d84047d7
+20207404
+6800c7ad
+20407453
+d84047f9
+20207404
+6800c7af
+20407453
+d8404815
+20207404
+6800c7b1
+20407453
+d8404831
+20207404
+6800c7b3
+20407453
+d840484d
+20207404
+6800c7b5
+20407453
+d8404869
+20207404
+2fe1fe01
+20608000
+18007e03
+20207457
+c000745c
+c000f45e
+c0017460
+c001f462
+2020738e
+58004786
+2020738e
+5800478d
+2020738e
+58004794
+2020738e
+5800479b
+2020738e
+6800c75a
+207a0000
+1fe0ffff
+6000c75a
+247a0000
+6800c756
+c000f2c0
+2020748a
+6800c758
+207a0000
+1fe0ffff
+6000c758
+247a0000
+20203e73
+6800c757
+6000c758
+20203e71
+6800c756
+c000f478
+20203e75
+70475b01
+20600000
+6800c756
+c000f481
+70475601
+58004771
+6808c759
+6008c75a
+2020738e
+70475602
+70475b00
+7043ff00
+6801470b
+c304f487
+20403e6b
+7043ff00
+58004778
+2020747e
+20407382
+20203e75
+6800c7a9
+207a0000
+1fe27200
+580047aa
+1fe22200
+ea288000
+204064c2
+1a20a202
+c2007491
+20600000
+70487700
+5800487c
+60014878
+6001487a
+20600000
+20207496
+78547c00
+6800c877
+2fe1fe06
+20608000
+78347c00
+6801487a
+1fe20a00
+18420c00
+20407ecd
+6800c877
+1fe0fe01
+6000c877
+5800487a
+204074ab
+20600000
+1fe22200
+d84048b8
+ea210000
+1fe0fe0a
+98467c00
+242174b2
+5800487c
+e2210000
+20600000
+78547c00
+6800c877
+207a0000
+78347c00
+6800c877
+1fe0ffff
+6000c877
+68014878
+600148b8
+58004878
+204074ab
+680148b8
+20600000
+78547c00
+6800c877
+207a0000
+78347c00
+68014878
+20600000
+6801475c
+d8e0000c
+20207ed4
+204074c1
+24740000
+78547c00
+18000413
+600944f8
+202074d0
+df200002
+680944f8
+d8c04729
+204074d7
+20600000
+7009bd1d
+202074dc
+20404bd0
+247a0000
+6800c8ba
+247a0000
+7009bd1b
+20404bd6
+2020735f
+680a472f
+1c427e00
+6002472f
+98467e00
+24610000
+1fe67e14
+20600000
+204074b4
+24740000
+78547c00
+1fe20c00
+e8c88000
+184085fd
+18427200
+e8c90000
+1f20fe07
+6000c73f
+d8a0446c
+e0a90000
+20407ecd
+6808c73f
+20204f89
+6800839a
+c00974f8
+c02974fb
+20600000
+6801039b
+c00c74fb
+20600000
+7048ba00
+20600000
+d8a048cc
+38020001
+38060000
+38081022
+380c0860
+e0a48000
+38030200
+38044a00
+38083200
+380c0800
+e0a48000
+38012a05
+38050000
+38082000
+380ca408
+e0a48000
+38000002
+38040140
+38080020
+380c08a0
+e0a48000
+38021800
+38048001
+380a8030
+380c0804
+e0a48000
+38020007
+38068000
+38083132
+380da5a1
+e0a48000
+38017370
+38075859
+3808c422
+380c8115
+e0a48000
+38002020
+38040808
+380a0202
+380c0020
+e0a48000
+38000302
+3804804a
+38080090
+380c0408
+e0a48000
+3800022a
+38068032
+38082000
+380ca00c
+e0a48000
+38030201
+38048002
+380aa040
+380c1820
+e0a48000
+38000600
+38041900
+380812c0
+380c0030
+e0a48000
+38000002
+3806808a
+3808d180
+380c0800
+e0a48000
+38012803
+38078080
+38082000
+380ca940
+e0a48000
+38020207
+38058922
+38081826
+380c3c00
+e0a48000
+38000200
+38048a00
+38098120
+380c0040
+e0a48000
+38000302
+3805804a
+38080110
+380d3808
+e0a48000
+5801012a
+e0a18000
+38020012
+380600c0
+38092012
+380c004c
+e0a48000
+38024d02
+3804008a
+38094280
+380c0800
+e0a48000
+38022902
+38040000
+38080150
+380c2008
+e0a48000
+38020229
+38058040
+38082001
+380ca00c
+e0a48000
+38031201
+38048005
+380aa4d0
+380c0008
+e0a48000
+38001828
+38048080
+38082290
+380c0000
+e0a48000
+38020019
+38064200
+38083022
+380c6804
+e0a48000
+38030200
+38044a00
+3809b020
+380c0800
+e0a48000
+38002a4b
+38070151
+38081090
+380c0684
+e0a48000
+38010285
+38067a42
+38089ea0
+380c2788
+e0a48000
+38011530
+38070940
+38090750
+380c0654
+e0a48000
+38000081
+38044170
+38086090
+380c0684
+e0a48000
+38010385
+380641c1
+380a9e01
+380c579c
+e0a48000
+38012500
+38045d40
+38088950
+380c0a04
+e0a48000
+38010875
+38054065
+380a5001
+380c17d0
+e0a48000
+38001907
+38050a40
+3808081f
+380c0300
+e0a40000
+3802001c
+380600c0
+38082012
+380c0074
+e0a48000
+38024a02
+3804410a
+38080011
+380c7804
+e0a48000
+38030200
+38044a00
+3809f040
+380c0800
+e0a48000
+38012a4c
+38040000
+38082002
+380ca000
+e0a48000
+38000f02
+38040846
+38083020
+380c04a0
+e0a48000
+38002212
+38064080
+380812a1
+380c8c00
+e0a48000
+38020200
+38048a40
+38080000
+380c0000
+e0a48000
+20600000
+7044df01
+7045a801
+70456c01
+5800001b
+6001458b
+70452201
+7048c803
+70459650
+70454c17
+70454e17
+d8a044dc
+38000302
+38040040
+38081021
+380c0000
+e0a38000
+d8a0458d
+38000008
+38040004
+380ac000
+380c0004
+e0a40000
+20600000
+6800c6e2
+243a75f4
+20207a96
+79200025
+44f0403c
+6800c6e2
+207a0000
+6800c639
+c1808000
+6800c563
+207a0000
+6800c568
+c1018000
+6801470b
+c28075f2
+6800c565
+c0007a96
+20600000
+70456500
+20600000
+79200025
+44f0c03c
+6800c6e2
+203a5737
+2040572f
+204075fb
+20207684
+58000000
+600408d2
+600208da
+6003c6e6
+20600000
+7008d401
+20207605
+6800c639
+c000f6a2
+20203b31
+6800c639
+c000f608
+20207684
+204076a2
+680088d3
+247a0000
+7008d203
+20600000
+680088d6
+c080762b
+20407628
+d8a009a2
+58000952
+e0a10000
+580046ca
+e0a10000
+58000902
+e0a10000
+2020761f
+d8a009a2
+58000962
+e0a10000
+58000902
+e0a10000
+580046ca
+e0a10000
+204079bd
+680088d3
+c0027625
+7008d401
+7008d205
+20600000
+7008d314
+20407602
+202076f3
+d8a00942
+18000e08
+202076bb
+7008d401
+20600000
+79200025
+44f1403c
+d8a0064b
+68034140
+e0a30000
+68030040
+e0a30000
+6801c6e6
+e0a18000
+20407a2b
+da200972
+da400982
+18000e04
+204076c0
+2420f648
+2040763f
+70007d41
+20205903
+680088d3
+c004f645
+7008d20a
+7008d401
+70007c03
+20600000
+70007c03
+7008d315
+202076f3
+680088d3
+c004f64e
+7008d200
+70007c04
+70007e05
+20600000
+70007c04
+7008d300
+20600000
+680088d7
+c000f655
+7008d30a
+202076f3
+d8a0064b
+68030040
+e0a30000
+68034140
+e0a30000
+6801c6e3
+e0a18000
+20407a43
+680088d3
+c0057662
+7008d20b
+7008d401
+20600000
+7008d30b
+7008d501
+20600000
+d8a009a2
+68030040
+e0a30000
+68034140
+e0a30000
+58000952
+e0a10000
+58000962
+e0a10000
+20207679
+7008d20f
+d8a009a2
+68034140
+e0a30000
+68030040
+e0a30000
+58000962
+e0a10000
+58000952
+e0a10000
+d8a0064b
+680309a2
+e0a30000
+680309a8
+e0a30000
+204079f5
+70425d01
+d8a04261
+d8c00972
+20407e87
+202031ee
+79200025
+44f1c03c
+6800c639
+c1800000
+680088d6
+c1800000
+d8a0469a
+18000e0b
+204076bb
+180a7e00
+1fe37e00
+e0a10000
+d8a005e2
+d8c0469a
+20407e86
+d8a0050a
+d8c007f2
+20407e84
+d8a0053a
+20407e90
+70053a01
+20407a7c
+7008d601
+20600000
+d8a046b2
+d8c00552
+20407e84
+70463901
+7008d600
+20600000
+79200025
+44f2403c
+680088dd
+c1800000
+680088d6
+c1800000
+d8a005e2
+d8c0469a
+20407e86
+d8a0050a
+d8c008ea
+20407e84
+d8a0053a
+20407e90
+70053a01
+20407a7c
+7008d602
+20600000
+7008d701
+d8a0092a
+d8c00552
+20407e86
+7008dd01
+7008d600
+20600000
+18e08fff
+24610000
+180a7e00
+e0a10000
+202076bb
+18e08fff
+242176cc
+ea220000
+1fe20400
+ea420000
+9842fe00
+2422f6ca
+1a20a204
+1a40a404
+202076c0
+7840fc00
+20600000
+7820fc00
+20600000
+79200025
+44f2c03c
+680088d4
+207a0000
+204058c5
+247a0000
+7008d400
+680088d2
+c001d806
+c002d823
+c003d82e
+c005d843
+c0017600
+c002760d
+c004f62d
+c0057651
+c006766f
+20600000
+79200025
+44f3403c
+680088d5
+207a0000
+204058c5
+247a0000
+7008d500
+680088d3
+c00957e9
+c009d7ee
+c001d7f2
+c0027618
+c00a57f6
+c003d804
+c0057651
+c005d842
+c004f62d
+c00ad83c
+20600000
+7008d501
+20600000
+7008d500
+20600000
+79200025
+44f3c03c
+6800c6e2
+207a0000
+680088d6
+207a0000
+1fe0fe80
+600088d6
+c3838000
+68008507
+203a7703
+20207a87
+204078ef
+680088d6
+c000f69c
+c00176b4
+20600000
+1fe10e07
+1fe97e00
+98c08c00
+e8c08000
+afec0000
+20600000
+20407e86
+20407e86
+20207e86
+e8c40000
+247a0000
+e8c40000
+247a0000
+e8c40000
+20600000
+ea220000
+98000400
+ea420000
+98467c00
+24628000
+1a20a204
+1a40a404
+c2007717
+20600000
+18007206
+1a20a214
+1a40a414
+ea420000
+98000400
+ea220000
+98467e00
+24610000
+247a0000
+1a20a3fc
+1a40a5fc
+c2007723
+20600000
+18007206
+18002600
+ea220000
+98000400
+ea420000
+9840fe00
+9a60fe00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c200772f
+20600000
+18007206
+18002600
+ea420000
+98000400
+ea220000
+98467e00
+9a667e00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c200773d
+20600000
+18007206
+1a20a214
+18002600
+ea220000
+2feffe00
+7920a601
+1fe37e00
+2a6ffe00
+7920fe1f
+e2220000
+1a20a3fc
+1a632600
+c200774c
+20600000
+18007206
+18002600
+ea220000
+2feffe1f
+7920a601
+1fe3fe00
+2a6ffe00
+7920fe00
+e2220000
+1a20a204
+1a632600
+c2007759
+20600000
+20407757
+2a6ffe00
+2020f76d
+da4007aa
+1a222600
+1a20a3e8
+20407720
+24610000
+1a622200
+1a20a3e8
+da4007aa
+1a220a00
+2020773b
+2040772d
+18a22200
+20207765
+2040773b
+2a6c0000
+20608000
+da4007aa
+18a0a3e8
+1a220a00
+2020772d
+18a21600
+1a226000
+da40063a
+1a420a00
+1a208c18
+e8c40000
+e0a40000
+e0a40000
+18007e00
+e0a40000
+19620a00
+20407771
+da40063a
+1a420a00
+18007e00
+e0a40000
+1e008c20
+e8c40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+20407771
+da40063a
+1a420a00
+1e008c28
+e8c40000
+e0a40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+20207771
+18007206
+e8c20000
+98005e00
+1f00f001
+c200779d
+20600000
+18a21600
+d8a0060a
+20407e90
+d8a0060a
+1a220c00
+18007000
+2040779c
+1a420c00
+2040779c
+18002400
+18000400
+18002606
+e8a20000
+98002200
+1a427000
+1de27e00
+1a627000
+9deffe00
+9a20fe00
+9840fe00
+e0a20000
+1fef0400
+1a60a601
+2a61fe0c
+2420f7ae
+18427e00
+e0a20000
+18a08be8
+1a40a401
+2a41fe06
+2420f7ac
+da20060a
+19620a00
+2020777b
+1a222400
+202077a2
+1a226000
+1e022200
+ea208000
+2feffe00
+20608000
+20407749
+ea408000
+2fec0000
+2020f7d6
+da2007aa
+1a420a00
+2040772d
+ea408000
+9a60fe00
+e2408000
+1a40a5e8
+1a40a218
+18007207
+2040774b
+202077c7
+18a21600
+d8a0066a
+20407e90
+18007e00
+60020622
+60020682
+70066a01
+d8a0060a
+20407e90
+d8c007aa
+d8a0063a
+20407e86
+1a220c00
+d8a00652
+20407e86
+d8c00652
+20407711
+203a7812
+da200652
+da40066a
+204077c6
+da20063a
+da40060a
+204077c6
+da200652
+da40063a
+20407720
+20217804
+da20063a
+da400652
+1a220a00
+2040773b
+da20066a
+da40060a
+1a420a00
+2040772d
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+202077e9
+da200652
+da40063a
+1a220a00
+2040773b
+da20060a
+da40066a
+1a420a00
+2040772d
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+202077e9
+d8a0066a
+20407e90
+68008622
+6000866a
+60008672
+da20066a
+da40060a
+1a420a00
+20407771
+da2007aa
+da40060a
+19620a00
+20207774
+da2005ca
+d8a00682
+204077c4
+da200682
+d8a0069a
+204077c4
+da2007c2
+da40069a
+d8a0069a
+204077a2
+da20059a
+d8a00682
+204077c4
+d8c00682
+d8a00652
+20407e86
+da200652
+20407764
+da200682
+da400652
+d8a00682
+20407771
+da200682
+da40069a
+d8a00682
+20407771
+d8c0059a
+d8a00652
+20407e86
+da2005b2
+d8a0069a
+204077c4
+da200652
+20407764
+da200652
+20407764
+da200652
+da40069a
+d8a00652
+204077a2
+da20069a
+d8a0066a
+204077c4
+da20066a
+20407764
+da20066a
+20407764
+da20066a
+20407764
+d8c005b2
+d8a0069a
+20407e86
+da20069a
+20407764
+da20069a
+da4005ca
+d8a005ca
+204077a2
+da200682
+d8a0069a
+204077c4
+da20069a
+da400652
+d8a0069a
+20407774
+da20069a
+da400652
+d8a0059a
+20407774
+da200652
+da40059a
+d8a0069a
+20407774
+da20069a
+da400682
+d8a0069a
+204077a2
+da20069a
+da40066a
+d8a005b2
+20207774
+da20053a
+d8a006b2
+204077c4
+da20059a
+da4006b2
+d8a0066a
+204077a2
+da20053a
+da4006b2
+d8a006b2
+204077a2
+da2005b2
+da4006b2
+d8a00652
+204077a2
+da2005ca
+d8a006b2
+204077c4
+da20050a
+da4006b2
+d8a00682
+204077a2
+da2005ca
+da4006b2
+d8a006b2
+204077a2
+da200522
+da4006b2
+d8a0069a
+204077a2
+da20066a
+da400682
+d8a006b2
+20407774
+da20066a
+da400682
+d8a0066a
+20407771
+da200652
+da40069a
+d8a00682
+20407774
+da200652
+da40069a
+d8a00652
+20407771
+da200652
+da4006b2
+d8a00652
+204077a2
+da2005ca
+da40053a
+d8a0069a
+204077a2
+da20069a
+da4006b2
+d8a005ca
+204077a2
+da2006b2
+d8a006b2
+204077c4
+da2006b2
+da40066a
+d8a0069a
+204077a2
+da2006b2
+da400652
+d8a00652
+204077a2
+da200682
+d8a0059a
+204077c4
+da20059a
+da40069a
+d8a0059a
+20407774
+d8c0059a
+d8a006b2
+20407e86
+da2006b2
+20407764
+da20069a
+da4006b2
+d8a0069a
+20407774
+da20069a
+da400682
+d8a00682
+204077a2
+da200682
+da400652
+d8a005b2
+20407774
+da2005b2
+da4007aa
+d8a005b2
+18002600
+680085b2
+2feffe00
+2040f72d
+1a626000
+da2005b2
+20407749
+680085c9
+2e0ffe00
+7920fe07
+600085c9
+20600000
+68008507
+1fe0ffff
+24610000
+60008507
+68008506
+205a781f
+68008507
+d8c005e2
+20407708
+2020f8dc
+68008506
+243a78ea
+20407870
+202078dc
+70050600
+d8c0050a
+d8a0059a
+2040770e
+202078dc
+da2005ca
+d8a0069a
+204077da
+da20069a
+d8a00652
+204077c4
+da20059a
+da400652
+d8a00552
+204077a2
+da20069a
+da400652
+d8a00682
+204077a2
+da2005b2
+da400682
+d8a0056a
+202077a2
+e8c20000
+18002204
+18a08a03
+e0a08000
+1fecfe00
+18a08bfe
+1a20a3ff
+2422f904
+18a08a05
+c2007901
+20600000
+18ebfe00
+99608c00
+e8c20000
+20600000
+18006010
+d960050a
+1e008ff9
+2040790c
+98000400
+1e008ff0
+2040790c
+98408400
+1e008ffe
+2040790c
+1fee7e01
+98408400
+1e008ff1
+2040790c
+1fee7e00
+98408400
+1e0bfe00
+99608a00
+e0aa0000
+1e00e001
+2e01fe40
+2420f912
+20600000
+d8c00822
+18007007
+e8c20000
+98005e00
+1f00f1ff
+20217929
+20600000
+79200025
+44f4403d
+20407910
+d8a0060a
+18007000
+1de27e00
+e0a20000
+1f00f001
+2f01fe08
+2420f933
+204071e2
+d9608700
+de00050a
+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
+c200793c
+d8c0060a
+18007000
+e8c20000
+9de0de00
+1f00f001
+2f01fe08
+2420f965
+202071e6
+d8a00962
+18007007
+1de27e00
+e0a20000
+1f00f1ff
+2021796d
+20600000
+d8a0050a
+18c08dfc
+1f262210
+e8c20000
+9842fe00
+e0a20000
+18c08df8
+c2007975
+1a227200
+18427e00
+e0a20000
+c200797c
+20600000
+20407984
+2040796b
+202079aa
+20407984
+202079aa
+d8c00902
+d8a0050a
+18007206
+20407a90
+d8c046ca
+18007206
+20407a90
+d8c00962
+20407a8f
+20407927
+2040792e
+d8c00952
+d8a0050a
+202079a1
+d8c046ca
+d8a0050a
+18007206
+20407a90
+d8c00902
+18007206
+20407a90
+d8c00952
+20407a8f
+20407927
+2040792e
+d8c00962
+d8a0050a
+204079a1
+202079aa
+20407a8f
+58800000
+1fed7e00
+e0a20000
+18007205
+20407e91
+58000280
+e0a20000
+2020792e
+68020962
+da2003e8
+9a26fc00
+20407f53
+18077e00
+600208de
+1807fe00
+da2003e8
+9a26fc00
+20407f53
+18077e00
+da2003e8
+9a2ffe00
+680a08de
+9840fe00
+600208de
+20600000
+7046ec00
+202079bf
+6800c6ea
+c08179bb
+79200025
+44f4c03d
+58363636
+1fed0400
+18418436
+680109a2
+1fe20c00
+18007204
+20407972
+20407927
+2040792e
+680109a4
+1fe20c00
+d8a0050a
+18007206
+20407a90
+680109a6
+1fe20c00
+18007206
+20407a90
+58800000
+e0a18000
+6800c6ec
+e0a08000
+18007e00
+e0a40000
+58000388
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+680109a2
+1fe20c00
+18007204
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+680109ae
+1fe20c00
+d8a0050a
+20407a8f
+680109b0
+1fe20c00
+20407a8f
+5862746c
+1fed7e00
+1fe1fe6b
+e0a20000
+d8c00657
+18007203
+20407a90
+58800000
+1fed7e00
+e0a20000
+18007e00
+e0a40000
+58000380
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+6800c6ea
+c0817a3d
+79200025
+44f5403d
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c00962
+d8a0050a
+20407a8f
+d8c00952
+20407a8f
+20207a52
+58000000
+60024719
+20207a2d
+58000000
+60024719
+20207a45
+6800c6ea
+c0817a40
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c00952
+d8a0050a
+20407a8f
+d8c00962
+20407a8f
+58000000
+e0a40000
+e0a20000
+68024719
+e0a20000
+18a20400
+70064a80
+18420a00
+d8c0065a
+20407a8f
+2040792e
+d8a0050a
+18007207
+20407e91
+e0a20000
+580003f8
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+700507c0
+68008507
+207a0000
+1fe0ffff
+60008507
+d8c005e2
+20407708
+2020fa7d
+d8c0050a
+d8a0059a
+2020770e
+2040781f
+68008507
+1fe0ffff
+60008507
+d8c005e2
+20407708
+20608000
+20207870
+18007204
+18c08dfc
+e8c20000
+e0a20000
+18c08df8
+c2007a91
+20600000
+79200025
+44f5c03d
+6800c563
+203a48de
+204048da
+204075fb
+20207a9d
+6800c568
+c1800000
+6800c565
+c1800000
+d8a0463a
+18000e0f
+204076bb
+180a7e00
+1fe37e00
+e0a10000
+d8a0068a
+d8c0463a
+20407e85
+d8a0056a
+d8c00882
+20407e7b
+d8a005aa
+20407e9b
+7005aa01
+20407ae8
+70456503
+20600000
+d8a0465a
+d8c005ca
+20407e7b
+70456803
+70456500
+20600000
+680088dd
+c1800000
+6800c565
+c1800000
+d8a0068a
+d8c0463a
+20407e85
+d8a0056a
+d8c008e2
+20407e7b
+d8a005aa
+20407e9b
+7005aa01
+20407ae8
+70456504
+20600000
+d8a00922
+d8c005ca
+20407e85
+7008dd03
+70456500
+20600000
+6800c563
+207a0000
+6800c565
+207a0000
+1fe0fe80
+6000c565
+c3838000
+68010507
+203a7ad9
+20207ae0
+79200025
+44f6403d
+20407af6
+6800c565
+c001fab3
+c0027ac9
+20600000
+20407b08
+68010507
+1fe0ffff
+60010507
+d8c0068a
+20407708
+20608000
+20207b59
+79200025
+44f6c03d
+58000100
+60010507
+68010507
+207a0000
+1fe0ffff
+60010507
+d8c0068a
+20407708
+2020faec
+d8c0056a
+d8a0062a
+20207e7a
+da20066a
+d8a0076a
+20407bc5
+da20076a
+d8a0070a
+20407c9c
+da20062a
+da40070a
+d8a005ca
+20407c03
+da20076a
+da40070a
+d8a0074a
+20407c03
+da20064a
+da40074a
+d8a005ea
+20207c03
+da20066a
+d8a0074a
+20407c9c
+da20074a
+d8a0076a
+20407c9c
+da200862
+da40076a
+d8a0076a
+20407c03
+da20062a
+d8a0074a
+20407c9c
+d8c0074a
+d8a0070a
+20407e85
+da20070a
+20407ca3
+da20074a
+da40070a
+d8a0074a
+20407ca0
+da20074a
+da40076a
+d8a0074a
+20407ca0
+d8c0062a
+d8a0070a
+20407e85
+da20064a
+d8a0076a
+20407c9c
+da20070a
+20407ca3
+da20070a
+20407ca3
+da20070a
+da40076a
+d8a0070a
+20407c03
+da20076a
+d8a0072a
+20407c9c
+da20072a
+20407ca3
+da20072a
+20407ca3
+da20072a
+20407ca3
+d8c0064a
+d8a0076a
+20407e85
+da20076a
+20407ca3
+da20076a
+da40066a
+d8a0066a
+20407c03
+da20074a
+d8a0076a
+20407c9c
+da20076a
+da40070a
+d8a0076a
+20407cb9
+da20076a
+da40070a
+d8a0062a
+20407cb9
+da20070a
+da40062a
+d8a0076a
+20407cb9
+da20076a
+da40074a
+d8a0076a
+20407c03
+da20076a
+da40072a
+d8a0064a
+20207cb9
+da2005aa
+d8a0078a
+20407c9c
+da20062a
+da40078a
+d8a0072a
+20407c03
+da2005aa
+da40078a
+d8a0078a
+20407c03
+da20064a
+da40078a
+d8a0070a
+20407c03
+da20066a
+d8a0078a
+20407c9c
+da20056a
+da40078a
+d8a0074a
+20407c03
+da20066a
+da40078a
+d8a0078a
+20407c03
+da20058a
+da40078a
+d8a0076a
+20407c03
+da40072a
+da20074a
+d8a0078a
+20407cb9
+da20072a
+da40074a
+d8a0072a
+20407ca0
+da40070a
+da20076a
+d8a0074a
+20407cb9
+da20070a
+da40076a
+d8a0070a
+20407ca0
+da20070a
+da40078a
+d8a0070a
+20407c03
+da20066a
+da4005aa
+d8a0076a
+20407c03
+da20076a
+da40078a
+d8a0066a
+20407c03
+da20078a
+d8a0078a
+20407c9c
+da20078a
+da40072a
+d8a0076a
+20407c03
+da20078a
+da40070a
+d8a0070a
+20407c03
+da20074a
+d8a0062a
+20407c9c
+da20062a
+da40076a
+d8a0062a
+20407cb9
+d8c0062a
+d8a0078a
+20407e85
+da20078a
+20407ca3
+da20076a
+da40078a
+d8a0076a
+20407cb9
+da20076a
+da40074a
+d8a0074a
+20407c03
+da20074a
+da40070a
+d8a0064a
+20407cb9
+da20064a
+da400842
+d8a0064a
+18002600
+6800864a
+2feffe00
+2040fc9e
+1a626000
+da20064a
+20407cce
+68008669
+2e0ffe00
+7920fe07
+60008669
+20600000
+18a21600
+d8a0072a
+20407e9b
+18007e00
+6002074a
+70072a01
+d8a006aa
+20407e9d
+d8c00842
+d8a006ea
+20407e85
+1a220c00
+d8a0070a
+20407e85
+d8c0070a
+20407cd8
+203a7bfc
+da20070a
+da40072a
+20407cdb
+da2006ea
+da4006aa
+20407cdb
+da20070a
+da4006ea
+20407cd4
+20217bee
+da2006ea
+da40070a
+1a220a00
+20407ccc
+da20072a
+da4006aa
+1a420a00
+20407c9e
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207bd3
+da20070a
+da4006ea
+1a220a00
+20407ccc
+da2006aa
+da40072a
+1a420a00
+20407c9e
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207bd3
+da2006aa
+19620a00
+20407c2c
+da200842
+19622400
+19620a00
+20207cb9
+18a21600
+18007000
+d8a006aa
+20407e9d
+d8a009f1
+20407e9d
+1a220c00
+7009f100
+58000000
+20407c96
+1a420c00
+20407c9a
+18000e00
+d8a006aa
+d84009f1
+18e22400
+1a4bfe00
+9840a400
+18000400
+18002600
+e8a20000
+98002200
+ea420000
+1a627000
+9deffe00
+9a20fe00
+9840fe00
+e0a20000
+1fef0400
+1a60a601
+2a61fe08
+2420fc17
+18427e00
+e0a20000
+18a08be0
+18e08e01
+28e1fe08
+2420fc11
+da2006aa
+19620a00
+20207c2c
+79200025
+44f7403d
+18a21600
+1a226000
+da4006ea
+1a420a00
+20407e98
+e0a40000
+1a208c2c
+20407e81
+20407e7d
+1a422200
+20407ca3
+da4006ea
+1e022200
+19620a00
+20407ca0
+da4006ea
+1a420a00
+20407e98
+e0a40000
+1e008c30
+20407e87
+20407e98
+1a422200
+20407ca3
+da4006ea
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c20
+20407e7d
+20407e98
+e0a40000
+1e008c38
+20407e81
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c24
+20407e7d
+1e008c34
+20407e7d
+1e008c34
+20407e7e
+1e008c20
+20407e7e
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c2c
+20407e7d
+20407e98
+e0a40000
+1e008c20
+20407e7e
+1e008c28
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c30
+20407e81
+20407e81
+18007e00
+e0a40000
+1e008c24
+20407e7e
+1e008c2c
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c34
+20407e7d
+1e008c20
+20407e7d
+20407e98
+1e008c30
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c38
+20407e81
+20407e98
+1e008c24
+20407e7d
+20407e98
+1e008c34
+20407e7e
+19622200
+1a220a00
+20207cb9
+18007220
+d8a009f1
+98a08a00
+20207ecd
+18007208
+2020779d
+1a222400
+20207c03
+18007208
+2020772e
+20407c9e
+18a22200
+20207ca4
+20407cd1
+2a6ffe00
+2020fcad
+da400842
+1a222600
+1a20a3e0
+20407cd4
+24610000
+1a622200
+20207cb5
+20407cb5
+1a222600
+1a20a3e0
+da400842
+20407cd4
+24610000
+1a622200
+20207cb5
+1a20a3e0
+da400842
+1a220a00
+20207ccc
+20407ccc
+2020fcc3
+18a0a3e0
+da400842
+20407cd4
+24610000
+da400842
+18a0a3e0
+1a220a00
+20207ccc
+18a0a3e0
+da400842
+1a220a00
+20407c9e
+20608000
+18a0a3e0
+da400842
+1a220a00
+20207c9e
+18007208
+2020773c
+18007208
+1a20a21c
+2020774b
+18007208
+18002600
+20207759
+18007208
+1a20a21c
+1a40a41c
+20207723
+e8c40000
+247a0000
+20207711
+1a226000
+1e022200
+ea208000
+2feffe00
+20608000
+20407cce
+ea408000
+2fec0000
+2020fceb
+da200842
+1a420a00
+20407c9e
+ea408000
+9a60fe00
+e2408000
+1a40a5e0
+1a40a220
+18007209
+2040774b
+20207cdc
+20403d3e
+20758000
+20407cf6
+20407d72
+20207d2a
+20407d44
+20207d60
+79200025
+44f7c03d
+6800c715
+c17f8000
+98000400
+204064e8
+6808c715
+204064fd
+20000064
+6808c715
+204064df
+20207d02
+79200025
+44f8403e
+6800c715
+c17f8000
+1fe20400
+204064f5
+2420fd15
+20407d1f
+6801470b
+79207e0c
+6001470b
+6800c702
+c1000000
+70470200
+6800c714
+6000c701
+20407d26
+7009bd2c
+20207d86
+6801470b
+793ffe0c
+6001470b
+6800c702
+c1008000
+70470201
+70470100
+20407d28
+7009bd2d
+20207d86
+6800c701
+207a0000
+1fe0ffff
+6000c701
+247a0000
+7009bd10
+20207d86
+d8e00007
+20203d06
+d8e00007
+20203d0a
+6800c70e
+c17f8000
+98000400
+204064e8
+20207d33
+6801470b
+793ffe0d
+6001470b
+70470000
+6801470b
+793ffe0e
+6001470b
+6808c70e
+202064fd
+6801470b
+79207e0e
+6001470b
+70470000
+6808c70e
+202064ff
+704713ff
+6801470b
+79207e0d
+6001470b
+70470001
+20600000
+79200025
+44f8c03e
+6800c713
+207a0000
+6800c700
+c1000000
+d8e00009
+20407ee2
+247a0000
+6800c700
+c0017d53
+20407d38
+70470002
+68014711
+20207d5a
+20407d33
+6800c713
+c07ffd58
+1fe0ffff
+6000c713
+70470003
+6801470f
+d8e00009
+20207ed4
+58001000
+1ff07e00
+9a40a400
+20600000
+79200025
+44f9403e
+da200000
+680a4703
+1c422400
+1a427e00
+98467c00
+24417d5c
+1a427e00
+184084a0
+184084a0
+98467c00
+24217d75
+1a20a201
+1a217e0f
+243a7d68
+da200000
+20407d7d
+1c427e00
+60024703
+20600000
+79200025
+44f9c03e
+1a227e00
+207a0000
+18408560
+18408560
+793f841c
+600a4703
+1fe0fe50
+600089bd
+20207d86
+7046ee01
+6800c6ef
+243a7d81
+20600000
+7046ee00
+20600000
+79200025
+44fa403e
+20407d80
+1a227e00
+600209b5
+da2046f0
+20407f88
+680209b5
+1fe22200
+20207d84
+79200025
+44fac03e
+20407d80
+1a227e00
+600209b5
+da2046f8
+20407f88
+680209b5
+1fe22200
+20207d84
+58000000
+600446f8
+600446f0
+20600000
+79200025
+44fb403e
+6800c271
+247a0000
+da2046f8
+20407fa2
+207a0000
+7009b400
+20407daa
+680089b4
+203a7d9e
+20600000
+79200025
+44fbc03e
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c000fdf0
+c0017df5
+c001fdfb
+c003fe00
+c0047e01
+c004fe02
+c005fe05
+c0067e06
+c006fe07
+c0077e0d
+c007fe12
+c0087e18
+c00afd3e
+c00a7d38
+c009fd2f
+c00b7e21
+c00bfe24
+c00c7e26
+c00cfe2b
+c00dfe29
+c00e7e3b
+c00f7e3d
+600089bd
+79200025
+44fc403f
+204058c5
+243a7de5
+680089bd
+c584fde0
+c002bfae
+c0033fbd
+c0057e03
+c0027dfd
+c008fe1d
+c00efde7
+c00fe42e
+c0106432
+c0097dde
+c010fddb
+20600000
+20405903
+70007d41
+202055b4
+7009bd2f
+20204bd6
+600089bd
+20403292
+2022fde5
+2040329a
+24628000
+7009b401
+20207d90
+70007c34
+79200003
+24748000
+7045f400
+70007c13
+6800816c
+793ffe02
+6000816c
+20600000
+6801470b
+79207e06
+6001470b
+70413303
+20600000
+70470900
+70413300
+6801470b
+793ffe06
+6001470b
+20600000
+70427105
+20600000
+70007c07
+7003f013
+20600000
+20600000
+20600000
+20600000
+7003fa02
+20203fa1
+20600000
+20600000
+7043ff01
+70452000
+6801470b
+79207e0b
+6001470b
+20600000
+6801470b
+793ffe0b
+6001470b
+7043ff00
+20600000
+7043ff01
+70452001
+6801470b
+79207e0b
+6001470b
+20600000
+6801470b
+793ffe0b
+6001470b
+7043ff00
+20600000
+5800000a
+60010390
+7009bd22
+20204bd6
+7043f901
+7042711b
+20600000
+7043f901
+20600000
+7043f900
+70427100
+20600000
+7009bd4b
+20204bd6
+79200025
+44fcc03f
+6801428c
+20407f69
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+6800c715
+c07ffe38
+1fe20400
+204064df
+20407d33
+20407d9a
+20203c04
+70459501
+20600000
+18000e04
+20207ed3
+6800c70b
+c4060000
+c4038000
+20207e3d
+1f267c00
+20628000
+1fe37e00
+c2007e45
+20600000
+18a27e00
+600109df
+600c09c6
+19627e00
+600209ce
+1a227e00
+600209d2
+1a427e00
+600209d6
+1a627e00
+600189da
+18c27e00
+600109dd
+20600000
+680c09c6
+680209ce
+98001600
+680209d2
+98002200
+680209d6
+98002400
+680189da
+98002600
+680109df
+98000a00
+680109dd
+98000c00
+20600000
+680109df
+1fe20a00
+20600000
+680109dd
+1fe20c00
+20600000
+18a27e00
+600109df
+20600000
+18c27e00
+600109dd
+20600000
+18a27e00
+600109bb
+18c27e00
+600109b9
+20600000
+680109bb
+1fe20a00
+680109b9
+1fe20c00
+20600000
+20407e85
+20407e85
+20207e85
+20407e81
+e8c20000
+e0a20000
+20600000
+e8c40000
+e0a40000
+20600000
+20407e87
+20407e81
+20407e81
+20407e81
+20207e81
+1c427e00
+1fe0fe10
+1fe0fe10
+1c420400
+98467c00
+20217e8c
+20600000
+18007203
+18007e00
+e0a40000
+c2007e92
+20600000
+18007e00
+e0a40000
+20600000
+18007e00
+e0a20000
+20600000
+18007204
+20207e91
+18007208
+20207e91
+1f227e00
+207a0000
+58000000
+e0a08000
+c2007ea2
+20600000
+df200020
+d8a009e1
+20207e9f
+ea620000
+ea2a0000
+9842fe00
+e0a20000
+1a20a204
+1a60a604
+c2007ea8
+20600000
+79200025
+44fd403f
+1f227e00
+1fe67c01
+20610000
+9a20a400
+1a40a5ff
+1f237200
+ea288000
+ea408000
+e2208000
+e2488000
+1a40a5ff
+1a20a201
+c2007eb8
+20600000
+1f227e00
+207a0000
+1f20f3f8
+20417e81
+20628000
+20217ec2
+1f20f208
+1f20f3fc
+20417e7e
+20628000
+20217ec7
+1f20f204
+20207ecd
+1f227e00
+207a0000
+e8c08000
+e0a08000
+c2007ecf
+20600000
+58000000
+1c430400
+600a4134
+d8a0423d
+98000400
+18e3fe00
+98a08a00
+e0a90000
+79200025
+44fdc03f
+20600000
+d9600800
+19701600
+9960fe00
+20600000
+79200025
+44fe403f
+680a4134
+1c437e00
+60024134
+98467c00
+24417ede
+98461600
+19620400
+d8c0423d
+18c20a00
+df200010
+e8c10000
+98467e00
+20217ef2
+18007e00
+e0a10000
+c2007eee
+d8c0423d
+18e3fe00
+98c08c00
+e8c10000
+20600000
+98408400
+18427200
+58000ea6
+9f267e00
+20610000
+1fe67e00
+18510400
+18408401
+18500400
+98418400
+20600000
+20407f06
+20207f10
+78547c00
+98467e00
+20217f0b
+78347c00
+1fe67e00
+c4078000
+d85f0ea6
+9840fe00
+793ffe40
+20600000
+98000c00
+1ff17e00
+d8400ea6
+984ffe00
+98c0fe00
+20600000
+1fed7e00
+1ff27e00
+6809c20f
+9846fc00
+20407f53
+18078400
+20600000
+d8400ea6
+9846fc00
+20407f53
+1807fe00
+1ff07e00
+18070400
+98418400
+20600000
+d8400000
+18422600
+e8608000
+20407f31
+1a620400
+20407f62
+da40000a
+9a4ffe00
+9840fe00
+1fe20400
+c2007f26
+20600000
+d840003a
+98467c00
+24217f3a
+d8400061
+98467c00
+20217f3d
+d8400037
+98467e00
+20600000
+d8400030
+98467e00
+20600000
+d8400057
+98467e00
+20600000
+18426000
+580001ff
+18002400
+1fe92200
+1a232200
+9a22a200
+2a2ffe00
+7920fe09
+18430400
+2feffe00
+79208407
+1fe37e00
+1a40a401
+2a400e00
+2420ff43
+e0a88000
+c2007f43
+1e020400
+20600000
+207a8000
+20207f53
+ea208000
+ea488000
+98467c00
+24628000
+1a20a201
+1a40a401
+c2007f55
+18007c00
+20600000
+98467c00
+24610000
+18427e00
+20600000
+9840fe00
+98460400
+98467e00
+20600000
+df200200
+d8a04000
+20207e91
+207a0000
+1fe27a00
+6811010e
+243a7f6b
+20600000
+68110058
+1fe20600
+20600000
+70820301
+20600000
+60110205
+68108203
+79207e04
+60108203
+20600000
+60110207
+68108203
+79207e06
+60108203
+20600000
+60110205
+70820330
+20600000
+68108043
+793ffe04
+60108043
+20600000
+6811010e
+d8400200
+98467c00
+20600000
+79200025
+44fec03f
+ea2c0000
+18417eff
+243a7f8f
+184cfe00
+e2240000
+1a20a207
+ea208000
+243a3b31
+680089bd
+e2208000
+20600000
+79200025
+44ff403f
+df200008
+ea240000
+207a0000
+ea208000
+243a7f9f
+1a20a201
+c2007f9a
+20203b31
+d8400000
+e2288000
+20600000
+ea240000
+20600000
+ea208000
+20600000
+ea210000
+20600000
+d8400000
+68008006
+c2007fa9
+18408401
+c2007fa9
+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
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00003852
Index: ble fast connect receive/output/sched.rom
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/sched.rom	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/output/sched.rom	(working copy)
@@ -0,0 +1,275 @@
+mem_patch00:08
+mem_patch10:40
+mem_patch11:0c
+mem_patch16:10
+mem_patch20:08
+mem_patch23:02
+mem_patch25:48
+mem_patch26:0c
+
+mem_patch27:40
+
+mem_patch32:20
+mem_patch3b:13
+mem_patch3e:80
+
+mem_device_option:09
+mem_le_adv_channel_map:07 
+mem_le_scan_enable:01
+
+mem_spi_ncs_gpio:ff
+mem_led_gpio:1b
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:10
+mem_ui_button_last_state:01
+
+mem_le_fast_adv_timeout:32
+mem_led_fast_dark_time:96 00
+mem_led_fast_light_time:96 00
+mem_le_sleep_timeout:08 07
+
+#mem_le_pres:02 03 00 01 10 02 01
+mem_le_pres_auth:01
+
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+
+
+
+mem_le_lap:02 31 00 98 07 2a
+mem_le_name_len:
+'AB Shutter3
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:
+13 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 01 05 03 02 12 18 00 00 00 00
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+1e 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
+
+
+mem_shutter_att_list_patch:
+47
+
+05 0c	#USAGE_PAGE 
+09 01	#USAGE (Consumer Control)
+a1 01	#COLLECTION (Application (mouse, keyboard))
+85 02	#REPORT_ID 
+0a ae 01
+09 e9
+09 ea
+09 e2
+09 30
+15 01
+25 0c
+75 10
+95 01
+81 00
+c0 		#END_COLLECTION
+05 01 	#USAGE_PAGE 
+09 06 	#USAGE
+a1 01 	#COLLECTION (Application (mouse, keyboard))
+85 03 
+05 07 
+19 e0 
+29 e7 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+75 08 
+95 01 
+15 00 
+25 f4 
+05 07 
+19 00 
+29 f4 
+81 00 
+c0		#END_COLLECTION
+
+
+#Characteristic:Hid information
+1c 00 02 03 28 01 02
+1d 00 02 4a 2a 04 11 01 00 01        
+#Characteristic:
+1e 00 02 03 28 01 04
+1f 00 02 4c 2a 01 00
+
+#Primary Service: BAS
+20 00 02 00 28 02 0f 18 
+#Characteristic: Battery Level
+21 00 02 03 28 01 12 
+22 00 02 19 2a 01 00 
+#Client Characteristic Configuration
+23 00 02 02 29 02 00 00 
+
+#End of Attribute list
+00 00
+
+
+mem_adv_lap_ptr:mem_le_adv_data+2
+
+
+
+mem_ui_le_uuid_table:mem_shutter_le_att_list
+
+mem_lpm_mode:00
+mem_lpm_overhead:06
+mem_lpm_mult_timeout:02
+mem_hard_soft_switch_case:00
+mem_shutter_powerup_flag:00
+mem_shutter_button_timeout:0a
+mem_power_timeout:0c
+mem_packet_interval_set:20 00
+mem_le_conn_interval_min:06 00
+mem_le_conn_interval_max:20 00
+
+mem_le_scan_type:01
+mem_le_scan_own_addr_type:00
+mem_le_scan_filter_policy:00
+mem_le_scan_interval:30 00
+mem_le_scan_window:0c 00
+
+
+mem_shutter_led_num:01
+mem_led_map:
+1b
+ff
+ff
+ff
+
+mem_fast_adv_led_style:
+02
+1b
+96 00
+96 00
+ff
+
+mem_slow_adv_led_style:
+02
+1b
+96 00
+3a 07
+ff
+ 
+mem_power_on_led_style:
+02
+1b
+96 00
+3a 00
+01
+
+mem_powe_off_led_style:
+00
+1b
+48 00
+96 00
+02
+
+mem_connected_led_style:
+01
+1b
+00 00
+00 00
+00
+
+mem_key_led_style:
+01
+1b
+00 00
+00 00
+00
+#
+02
+1b
+96 00
+96 00
+01
+#
+ff
+1b
+00 00
+00 00
+00
+#
+00
+1b
+00 00
+00 00
+00
+
+
+mem_key0_press:
+03 05 17 00 00 28 05 13 00 02 00 05 13 00 01 00
+mem_key0_release:
+02 05 17 00 00 00 05 13 00 00 00
+mem_key1_press:
+02 05 13 00 01 00 05 13 00 02 00 
+mem_key1_release:
+01 05 13 00 00 00
+
+mem_le_car_write_cmd_data:
+01 0b 14 00 5a 6b 02 00 02 00 00 00
+
+mem_shutter_key_num:04
+mem_key_conf0:
+#0
+04 00  
+#1
+05 00
+#2
+06 00 
+#3
+03 00 
+#4
+ff 00 
+#5
+ff 00 
+
+mem_le_app_peer_addr:0e 10 26
+mem_le_slave_peer_addr:ff ff ff ff ff ff
+
+mem_le_sleep_conn_timeout:b8 0b
+
+mem_tx_power:02
+
+mem_le_send_write_request_count:02
+
+#mem_uart_mouse_data_buff:02 00 09 00 00 00 00 00 00 00 00
+#mem_uart_test_count:04
+
+mem_lpm_config:8f 1e ca
+mem_lpm_buckcnt:0a 0b ef 07
+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 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+#mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
+
Index: ble fast connect receive/program/24g.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/24g.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/24g.prog	(working copy)
@@ -0,0 +1,692 @@
+
+ifdef COMPILE_24G
+g24_process:
+	rtnmark0 mark_24g
+	set1 mark_24g_conext,mark
+	fetch 4,mem_24g_tx_btclk	
+	fetcht 1,mem_24g_interval
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk
+	call g24_user_prepare_data
+	branch g24_lpm_long_sleep,user
+	call g24_tx_data
+g24_exit_dispatch:
+g24_exit_context:
+	set0 mark_24g_conext,mark
+	rtn
+
+g24_send_pairing_mode:
+	fetch 1,mem_24g_pairing_sm
+	rtneq P24G_SM_PAIRING_WAIT_ADDR
+	beq P24G_SM_PAIRING_WAIT_SUCC,g24_pairing_complete
+	beq P24G_SM_PAIRING_REQUEST,g24_send_pairing_request
+	beq P24G_SM_PAIRING_COMPLETE,g24_send_pairing_complete
+	branch assert
+	
+g24_send_pairing_request:
+	jam P24G_PAIRING_REQ_HEAD,mem_24g_txdata
+	jam P24G_SM_PAIRING_WAIT_ADDR,mem_24g_pairing_sm
+	branch g24_user_enable_tx_retry
+g24_send_pairing_complete:
+	jam P24G_SM_PAIRING_WAIT_SUCC,mem_24g_pairing_sm
+	jam P24G_PAIRING_COMPLETE_HEAD,mem_24g_txdata
+	branch g24_user_enable_tx_retry
+
+g24_lpm_long_sleep:
+	fetch 1,mem_24g_enter_lpm_timer
+	nrtn blank
+ 	// do some thing before 24g long sleep
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+ 	fetch 8,mem_24g_enter_hibernate
+	call clk2lpo
+	storet 4,mem_sleep_counter
+  	branch lpm_sleep
+
+
+
+g24_user_prepare_data:
+	fetch 1,mem_24g_ensure
+	beq	ENSURE_ON_24G,disable_usr
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_send_pairing_mode
+	//send data
+	//
+	//
+g24_user_enable_tx_retry:
+	jam ENSURE_ON_24G,mem_24g_ensure
+	rtn
+
+
+g24_tx_data:
+	jam 10,mem_24g_enter_lpm_timer
+	jam 0,mem_24g_retry
+	jam dlen_24g,mem_24g_datalen
+	call g24_prepare_tx
+	call crc_tx
+g24_tx_data_loop:
+	call g24_set_freq_tx
+	arg plen_24g,loopcnt
+	call g24_tx
+	enable swfine
+	arg 10000,stop_watch					// sync time:4537
+	arg 12,loopcnt							//change rx count
+	call g24_rx
+	call shutdown_radio
+	nbranch g24_tx_data_retry,sync
+	call crc_rx_ack
+	branch g24_tx_data_success,blank		//transmit success
+g24_tx_data_retry:
+	setarg 2000
+	call sleep
+	//branch g24_tx_data_loop
+	fetch 1,mem_24g_retry
+	increase 1,pdata
+	store 1,mem_24g_retry
+	bne retry_24g,g24_tx_data_loop
+	fetch 1,mem_24g_txfail_cnt
+	increase 1,pdata
+	store 1,mem_24g_txfail_cnt
+	beq 0x20,g24_tx_data_abandon
+	fetch 2,mem_24g_rxfail_cnt
+	increase 1,pdata
+	store 2,mem_24g_rxfail_cnt
+	beq 0xff,g24_tx_attempt_fail
+	call g24_updata_ch
+	branch g24_min_interval
+g24_tx_data_success:
+	setarg 0
+	store 2,mem_24g_rxfail_cnt
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_rx_pairing_mode
+	fetch 1,mem_24g_pid
+	increase 1,pdata
+	store 1,mem_24g_pid
+g24_tx_data_abandon:
+	setarg 0
+	store 1,mem_24g_txfail_cnt
+	jam ENSURE_OFF_24G,mem_24g_ensure
+	branch g24_max_interval
+g24_tx_attempt_fail:
+	setarg 0
+	store 2,mem_24g_rxfail_cnt
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+
+g24_rx_pairing_mode:
+	fetch 1,mem_24g_pairing_sm
+	beq P24G_SM_PAIRING_COMPLETE,g24_pairing_complete
+	bne P24G_SM_PAIRING_WAIT_ADDR,assert
+	jam P24G_SM_PAIRING_COMPLETE,mem_24g_pairing_sm
+	call g24_rx_parse_dongle_addr
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch g24_tx_data_abandon
+g24_pairing_complete:
+	jam P24G_SM_PAIRING_SUCC,mem_24g_pairing_sm
+	fetch 4,mem_24g_addr_copy
+	store 4,mem_24g_addr
+	rtn
+	
+g24_rx_parse_dongle_addr:
+	fetch 5,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 4,mem_temp
+	copy pdata,temp
+	arg 3,rega
+	arg 4,loopcnt
+g24_rx_parse_dongle_addr_loop:
+	copy temp,pdata
+	reverse pdata,pdata
+	copy pdata,regb
+	setarg mem_timeup
+	iadd rega,contw
+	copy regb,pdata
+	istore 1,contw
+	increase -1,rega
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	loop g24_rx_parse_dongle_addr_loop
+	fetch 4,mem_timeup	//update mouse 24g address
+	store 4,mem_24g_addr_copy
+	rtn
+
+	
+g24_max_interval:
+	fetch 1,mem_24g_interval_max
+	branch g24_updata_interval
+g24_min_interval:
+	fetch 1,mem_24g_interval_min
+g24_updata_interval:
+	store 1,mem_24g_interval
+	rtn
+
+g24_updata_ch:
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_pairing_ch
+	fetcht 1,mem_24g_current_ch_number
+	call g24_uch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_24g_current_ch_number
+	rtn
+g24_pairing_ch:
+	jam 78,mem_24g_ch
+	rtn
+g24_uch_calc:
+	fetch 1,mem_24g_addr+3
+	reverse pdata,pdata
+	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
+
+g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_24g_ch
+	branch set_freq_tx
+
+	// loopcnt is total packet length include address and crc
+g24_tx:
+	set1 TXGFSK,radio_ctrl
+	disable decode_fec0
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	disable enable_white
+	call le_enable
+	deposit clkn
+	set1 56,pdata
+	//call savelist
+	setarg acc_24g
+	inject mod,24
+	arg mem_24g_addr,rega
+	arg mem_24g_scremble,regb
+g24_tx_loop:
+	ifetch 1,rega
+	ifetcht 1,regb
+	ixor temp,pdata
+	inject mod,8
+	increase 1,rega
+	increase 1,regb
+	loop g24_tx_loop
+	until null,tx_clear
+	nop 100         
+	rtn
+
+	
+	// loopcnt is total packet length include crc
+g24_rx:
+	force 0,radio_ctrl
+	fetcht 1,mem_24g_ch
+	call set_freq_rx
+	call rf_rx_enable
+	disable encode_fec0
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	disable enable_white
+	call le_enable
+	fetcht 1,mem_24g_addr
+	storet 1,mem_24g_rxbuf
+	xor_into 0xc7,temp
+	lshift16 temp,temp
+	lshift8 temp,temp
+	setarg acc_24g
+	ior temp,access
+	correlate null,timeout
+	deposit stop_watch
+	setflag sync,63,pdata
+//	call savelist
+	increase -1,loopcnt
+//	nbranch p_tst,sync
+	arg mem_24g_scremble+1,contr
+	arg mem_24g_rxbuf+1,contw
+g24_rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	ifetcht 1,contr
+	ixor temp,pdata
+	istore 1,contw
+	loop g24_rx_loop
+	rtn
+
+crc_rx_ack:
+	fetch 1,mem_24g_pairing_sm
+	beq P24G_SM_PAIRING_SUCC,crc_rx_ack_nodata
+crc_rx_ack_4byte:
+	arg mem_24g_rxbuf,contr
+	setarg crc_ack_4byte
+	arg 90,loopcnt
+	branch gencrc
+crc_rx_ack_nodata:
+	arg mem_24g_rxbuf,contr
+	setarg crc_ack
+	arg blen_rxack_24g,loopcnt
+	branch gencrc
+
+crc_tx_ack:
+	fetch 1,mem_24g_pairing_sm_dongle	
+	branch crc_tx_ack_nodata,blank
+crc_tx_ack_4byte:
+	arg mem_24g_addr,contr
+	setarg crc_ack_4byte
+	arg 74,loopcnt
+	call gencrc
+	branch g24_store_crc
+crc_tx_ack_nodata:	
+	arg mem_24g_addr,contr
+	setarg crc_ack
+	arg blen_txack_24g,loopcnt
+	call gencrc
+	branch g24_store_crc
+
+crc_tx:
+	arg mem_24g_addr,contr
+	setarg crc_data_6byte
+	arg blen_tx_24g,loopcnt
+	call gencrc
+	branch g24_store_crc
+	
+crc_rx:
+	arg mem_24g_rxbuf,contr
+	setarg crc_data_6byte
+	arg blen_rx_24g,loopcnt
+gencrc:
+	arg 0x1021,contw
+	arg 0,rega
+crc_loop:
+	and rega,7,null
+	nbranch crc_nofetch,zero
+	ifetcht 1,contr
+crc_nofetch:
+	bbit1 15,crc_b15
+	isolate0 0,temp
+crc_shift:
+	lshift pdata,pdata
+	branch crc_noxor,true
+	ixor contw,pdata
+crc_noxor:
+	rshift temp,temp
+	increase 1,rega
+	loop crc_loop
+	reverse pdata,temp
+	lshift8 temp,temp
+	rshift8 pdata,pdata
+	reverse pdata,pdata
+	ior temp,pdata
+	store 2,mem_24g_crc
+	rtn
+crc_b15:
+	isolate1 0,temp
+	branch crc_shift
+
+g24_prepare_tx:
+	fetch 1,mem_24g_pid
+	and_into 3,pdata
+	reverse pdata,pdata
+	lshift pdata,pdata
+	fetcht 1,mem_24g_datalen
+	add temp,1,loopcnt
+	reverse temp,temp
+	rshift temp,temp
+	ior temp,pdata
+	store 1,mem_24g_len
+	arg mem_24g_txdata,contr
+g24_ptx_loop:
+	rshift8 pdata,temp
+	ifetch 1,contr
+	lshift2 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop g24_ptx_loop
+	rtn
+
+
+	// pdata:crc
+g24_store_crc:
+	lshift2 pdata,temp
+	fetch 1,mem_24g_datalen
+	arg mem_24g_len+1,contw
+	iadd contw,contw
+	ifetch 1,contw
+	and_into 3,pdata
+	ior temp,pdata
+	istore 3,contw
+	rtn
+
+g24_init:
+	set1 mark_24g,mark
+	setsect 0,0x28dc7
+	setsect 1,0x55f4
+	setsect 2,0x273da
+	setsect 3,0x2c19a
+	store 9,mem_24g_scremble
+	setsect 0,0x13175
+	setsect 1,0x19204
+	setsect 2,0x38779
+	setsect 3,0x3
+	istore 7,contw
+	setarg 0
+	store 8,mem_24g_txfail_cnt
+	store 6,mem_24g_txdata
+	jam 0,mem_24g_current_ch_number
+	branch g24_uch_calc
+
+g24_uninit:
+	set0 mark_24g,mark
+	branch  le_disable
+
+
+
+/************************2.4G dongle for YiCHiP start****************************/
+
+/*
+//2.4g dongle define
+mem_24g_ch_map1:00 11 23 3c 
+mem_24g_ch_map2:04 1a 27 39 
+mem_24g_ch_map3:08 22 35 4b 
+mem_24g_ch_map4:0f 2d 32 4e
+mem_24g_interval_dongle:19	#0.3125ms, time to update channel	
+mem_24g_addr_private_dongle:3a b3 53 0f	#4 bytes address
+*/
+
+
+/*
+Brief: g24_sys_init_dongle
+Input: None
+Output: None
+Return: None
+Brief: spi and dongle init, choose 2.4G search channel based on the the most significant byte of the  dongle's private address
+*/
+g24_sys_init_dongle:
+	call spi_simulate_init_slave
+	call g24_init_dongle
+	call g24_search_pair_ch_update
+	call g24_search_pair_rx_ch_update
+g24_rx_loop_dongle:
+	call g24_normal_rcv_process		//normal rcv
+	call g24_search_device_process		//search device and pair
+	fetch 1,mem_24g_spi_enable_flag
+	ncall g24_data_rf_to_spi,blank		//time to send data to spi from rf 	
+	branch g24_rx_loop_dongle			//loop
+
+g24_data_rf_to_spi:
+	jam 0,mem_24g_spi_enable_flag
+	arg mem_24g_rxbuf_dongle,contr
+	arg mem_spi_simulate_write_byte_slave,contw
+	arg 6,loopcnt
+	call memcpy
+	call spi_simulate_motion_enable
+	arg 6,rega
+	call spi_simulate_write_byte_slave
+	branch spi_simulate_motion_disable
+	
+g24_init_dongle:
+	set1 mark_24g_search_pair,mark
+	set0 mark_24g_normal_rcv,mark	
+	setsect 0,0x28dc7
+	setsect 1,0x55f4
+	setsect 2,0x273da
+	setsect 3,0x2c19a
+	store 9,mem_24g_scremble
+	setsect 0,0x13175
+	setsect 1,0x19204
+	setsect 2,0x38779
+	setsect 3,0x3
+	istore 7,contw
+	setarg 0
+	store 8,mem_24g_txfail_cnt
+	store 6,mem_24g_rxbuf_temp_dongle
+	store 6,mem_24g_rxbuf_dongle
+	store 1,mem_24g_ch_update_dongle
+	store 1,mem_24g_ch_cnt_dongle
+	jam 1,mem_24g_pairing_sm_dongle
+	branch g24_rf_txbuf_rxbuf_release
+
+//24g dongle search device and pair mode
+g24_search_device_process:	//main_loop
+	rtnmark0 mark_24g_search_pair
+	rtnmark1 mark_24g_normal_rcv
+	fetch 4,mem_24g_tx_btclk_dongle	
+	fetcht 1,mem_24g_interval_dongle
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_search_device_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk_dongle
+	jam 1,mem_24g_ch_update_dongle	//change mem_24g_ch
+g24_search_device_exit_dispatch:	//read rx data
+	call g24_rf_txbuf_rxbuf_release
+	fetch 1,mem_24g_ch_update_dongle
+	ncall g24_search_pair_rx_ch_update,blank
+	call g24_rx_data
+	fetch 1,mem_24g_rx_sync_dongle
+	rtn blank
+	jam 0,mem_24g_rx_sync_dongle
+	branch g24_search_device_parse_rxbuff0
+
+g24_search_device_parse_rxbuff0:
+	fetch 7,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 6,mem_temp
+	fetch 1,mem_temp
+	rtnne 0x01
+g24_search_device_completed:
+	set0 mark_24g_search_pair,mark		//pair completed
+	set1 mark_24g_normal_rcv,mark		//start normal rcv
+	jam 0,mem_24g_pairing_sm_dongle	//clear dongle pair flag
+	call g24_get_id_private
+	jam 0,mem_24g_ch_cnt_dongle
+	jam 0x32,mem_24g_interval_dongle
+	call g24_normal_rcv_ch_update
+	branch g24_rf_txbuf_rxbuf_release
+	
+g24_search_pair_ch_update:
+	fetch 1,mem_24g_addr_private_dongle+3	//last address byte decides which map to use
+	reverse pdata,pdata
+	and_into 0x03,pdata
+	beq 0x00,g24_search_ch_map1
+	beq 0x01,g24_search_ch_map2
+	beq 0x02,g24_search_ch_map3
+	beq 0x03,g24_search_ch_map4
+	rtn
+g24_search_ch_map1:
+	fetch 1,mem_24g_ch_map1
+g24_search_ch_map:
+	store 1,mem_24g_map_buff0_dongle
+	rtn
+g24_search_ch_map2:
+	fetch 1, mem_24g_ch_map2
+	branch g24_search_ch_map
+g24_search_ch_map3:
+	fetch 1, mem_24g_ch_map3
+	branch g24_search_ch_map
+g24_search_ch_map4:
+	fetch 1,mem_24g_ch_map4
+	branch g24_search_ch_map
+
+g24_search_pair_rx_ch_update:
+	jam 0,mem_24g_ch_update_dongle
+	fetch 1,mem_24g_ch
+	bne 78,g24_search_pair_ch
+	fetch 1,mem_24g_map_buff0_dongle
+	store 1,mem_24g_ch
+	branch g24_get_id_private	
+
+g24_search_pair_ch:
+	jam 78,mem_24g_ch
+	setarg -1
+	store 4,mem_24g_addr	//initial address is 0xffffffff
+	rtn
+
+g24_get_id_private:
+	fetch 4,mem_24g_addr_private_dongle	//private address
+	store 4,mem_24g_addr
+	rtn
+
+	
+//24g dongle normal receive mode
+g24_normal_rcv_process:
+	rtnmark1 mark_24g_search_pair
+	rtnmark0 mark_24g_normal_rcv
+	fetch 4,mem_24g_tx_btclk_dongle	
+	fetcht 1,mem_24g_interval_dongle
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_normal_rcv_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk_dongle
+	jam 1,mem_24g_ch_update_dongle
+g24_normal_rcv_exit_dispatch:
+	call g24_rf_txbuf_rxbuf_release
+	call g24_rx_data	
+	fetch 1,mem_24g_rx_sync_dongle
+	branch g24_normal_rcv_judge_ch_update,blank
+	jam 0,mem_24g_rx_sync_dongle
+	jam 1,mem_24g_spi_enable_flag
+	branch g24_normal_rcv_parse_data
+
+g24_normal_rcv_judge_ch_update:
+	fetch 1,mem_24g_ch_update_dongle
+	ncall g24_normal_rcv_ch_update,blank
+	rtn
+
+g24_normal_rcv_parse_data:
+	fetch 7,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 6,mem_temp		//6 bytes mouse data
+	copy pdata,temp
+	arg 0,rega
+	arg 6,loopcnt
+g24_normal_rcv_parse_data_loop:
+	copy temp,pdata
+	copy pdata,regb
+	setarg mem_24g_rxbuf_temp_dongle
+	iadd rega,contw
+	copy regb,pdata
+	istore 1,contw
+	increase 1,rega
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	loop g24_normal_rcv_parse_data_loop
+	fetch 6,mem_24g_rxbuf_temp_dongle
+	store 6,mem_24g_rxbuf_dongle
+	rtn	
+	
+g24_rf_txbuf_rxbuf_release:
+	arg mem_24g_txdata,contw
+	arg 6,loopcnt
+	call buffer_release
+	arg mem_24g_rxbuf,contw
+	arg 64,loopcnt
+	branch buffer_release
+
+g24_normal_rcv_ch_update:
+	jam 0,mem_24g_ch_update_dongle
+	fetch 1,mem_24g_addr_private_dongle+3	//last address byte decides which map to use
+	reverse pdata,pdata
+	and_into 0x03,pdata
+	beq 0x00,g24_normal_rcv_ch_map1
+	beq 0x01,g24_normal_rcv_ch_map2
+	beq 0x02,g24_normal_rcv_ch_map3
+	beq 0x03,g24_normal_rcv_ch_map4
+	rtn
+g24_normal_rcv_ch_map1:
+	setarg mem_24g_ch_map1	
+g24_normal_rcv_ch_map:
+	fetcht 1,mem_24g_ch_cnt_dongle
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_24g_ch
+	increase 1,temp
+	and_into 0x03,temp
+	storet 1,mem_24g_ch_cnt_dongle
+	rtn
+g24_normal_rcv_ch_map2:
+	setarg mem_24g_ch_map2
+	branch g24_normal_rcv_ch_map
+g24_normal_rcv_ch_map3:
+	setarg mem_24g_ch_map3
+	branch g24_normal_rcv_ch_map
+g24_normal_rcv_ch_map4:
+	setarg mem_24g_ch_map4
+	branch g24_normal_rcv_ch_map
+
+g24_rx_data:	
+	disable swfine
+	arg 0x100,stop_watch
+	arg plen_24g,loopcnt
+	call g24_rx
+	deposit clkn
+	enable swfine
+	fetch 1,mem_24g_sifs
+	mul32 pdata,100,stop_watch
+	nbranch g24_rx_unsync,sync
+	call g24_set_freq_tx
+	fetch 3,mem_24g_rxcnt
+	increase 1,pdata
+	store 3,mem_24g_rxcnt
+	call crc_rx
+	nbranch g24_rx_fail,blank
+g24_tx_ack:
+	jam 1,mem_24g_rx_sync_dongle
+	jam 0,mem_24g_datalen
+	fetch 1,mem_24g_pairing_sm_dongle	//initial value is 1
+	ncall g24_tx_ack_with_payload,blank
+	call g24_prepare_tx
+	call crc_tx_ack
+	arg 12,loopcnt
+	until null,timeout
+	call g24_tx
+	call shutdown_radio
+	branch g24_search_device_rx_crc_pass
+
+g24_tx_ack_with_payload:
+	jam 4,mem_24g_datalen
+	arg mem_24g_txdata,contw
+	arg 4,loopcnt
+	arg 3,rega
+g24_tx_ack_with_payload_loop:
+	setarg mem_24g_addr_private_dongle
+	iadd rega,contr
+	ifetch 1,contr
+	reverse pdata,pdata
+	istore 1,contw
+	increase -1,rega
+	loop g24_tx_ack_with_payload_loop
+	rtn
+
+g24_search_device_rx_crc_pass:
+	fetch 1,mem_24g_pairing_sm_dongle
+	rtn blank
+g24_search_device_rx_crc_pass_extra:
+	fetch 1,mem_24g_ch
+	bne 78,g24_search_device_completed
+	rtn
+
+g24_rx_unsync:
+	jam 0,mem_24g_rx_sync_dongle
+	branch shutdown_radio	
+
+g24_rx_fail:
+	fetch 3,mem_24g_rxfail_cnt
+	increase 1,pdata
+	store 3,mem_24g_rxfail_cnt
+	branch shutdown_radio	
+
+/************************2.4G dongle for YiCHiP end****************************/	
+
+endif
+
+
Index: ble fast connect receive/program/app.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/app.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/app.prog	(working copy)
@@ -0,0 +1,488 @@
+app_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	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_shutter,shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+	
+app_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	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
+app_lpm_init0:
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	//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:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	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
+	fetch 2,mem_cb_event_timer
+	call callback_func
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	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_RECONNECT,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_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_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
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	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: ble fast connect receive/program/bt.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/bt.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/bt.prog	(working copy)
@@ -0,0 +1,4557 @@
+define REVD
+//define FPGA
+define ROMCODE
+define PATCH
+define ADC
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+//define ACL_DEBUG
+//define DCDC
+define NVRAM
+define RELEASE
+define SECURE_CONNECTION
+define DEBUG_RF_INIT
+//define SPI_SIMULATE
+//define ROM_RESPIN_OPTIONAL
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+//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
+//define COMPILE_24G
+
+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:
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag //bit2  1:wake from hibnate 0:wake from power
+	call spi_ncs_gpio_init  // 0xff disable spi ncs gpio init
+	clear_stack
+	ncall wait_uarttx,wake	
+	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
+	ncall load_chip_option,wake
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+ifdef SIMPLE_PAIRING
+	call publickey_init
+else
+	call ssp_disable
+ifdef SECURE_CONNECTION
+	call publickey_init
+
+endif
+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
+ifdef SECURE_CONNECTION
+	call sp_calc_sequence_256
+endif
+ifdef SIMPLE_PAIRING
+ifdef SECURE_CONNECTION
+	call publickey_calc
+endif
+endif
+	call le_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	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_5,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_6,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 patch00_7,mem_patch00
+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_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,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_1,mem_patch01
+	call timer_check
+	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_2,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	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_3,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_4,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_5,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_6,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 patch01_7,mem_patch01
+	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_0,mem_patch02
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+		
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,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_2,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
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,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_4,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_5,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_6,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	
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	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_0,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_1,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_2,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_3,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_4,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_5,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_6,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 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 patch03_7,mem_patch03
+	call parse_lmp
+	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_0,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	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_1,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	rtn
+	
+master_name_disconnect:
+	fetch 1,mem_state_map
+	rtnbit1 smap_name_res
+master_name_error:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	branch memset0
+	
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,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_3,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	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_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,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_5,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 patch04_6,mem_patch04
+	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 1,mem_sniff_attempt
+	jam 0x0,mem_sniff_timeout  
+	jam 0x0,mem_current_sniff_timeout  
+	fetch 4,mem_sniff_anchor  
+	copy clkn_bt,temp  
+	isub temp,pdata  
+	rshift2 pdata,pdata  
+	increase  -8,pdata  
+	store 1,mem_current_sniff_attempt  
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	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_0,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_1,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_2,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:
+	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
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,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 patch05_4,mem_patch05
+	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:
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+	fetcht 1,mem_current_context
+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 patch05_5,mem_patch05
+	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
+	
+	
+	/* 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 patch05_6,mem_patch05
+	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 patch05_7,mem_patch05
+	arg mem_context,rega
+	fetch 1,mem_context_number
+	copy pdata,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
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	copy contr,regb
+	store 9,mem_temp
+	fetch 1,mem_le_sc_calc
+	nbranch context_search_sniff_sc,blank
+	fetch 9,mem_temp
+	copy regb,contr
+	increase 5,pdata  
+	branch context_search_meet1
+context_search_sniff_sc:
+	fetch 9,mem_temp
+	copy regb,contr	
+	increase 20,pdata  
+context_search_meet1:
+	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
+
+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
+
+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_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_0,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_1,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_2,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_3,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 patch06_4,mem_patch06
+	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 patch06_5,mem_patch06
+	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 patch06_6,mem_patch06
+	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 patch06_7,mem_patch06
+	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_0,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_1,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_2,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_3,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 patch07_4,mem_patch07
+	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 patch07_5,mem_patch07
+	call calc_clke
+	call role_switch_slave
+	rtn user
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_l2cap
+	call parse_lmp
+	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 patch07_7,mem_patch07
+	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
+	rtn
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,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
+	rtn
+
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,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_2,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_3,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:
+	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
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	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 patch08_5,mem_patch08
+	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 patch08_6,mem_patch08
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	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 patch08_7,mem_patch08
+	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_0,mem_patch09
+	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_1,mem_patch09
+	call app_disconn_reason_collect_bt
+	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_2,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_3,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 patch09_4,mem_patch09
+	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 patch09_5,mem_patch09
+	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 patch09_6,mem_patch09
+	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 patch09_7,mem_patch09
+	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_0,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_dh3,type		/* DH3 */
+	sub pdata,183,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_1,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_2,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_3,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 patch0a_4,mem_patch0a
+	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 patch0a_5,mem_patch0a
+	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
+	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 patch0a_6,mem_patch0a
+	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 patch0a_7,mem_patch0a
+	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_0,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_1,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
+	branch error_payload,crc_failed
+	branch ack_payload
+
+
+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_2,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_3,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 patch0b_4,mem_patch0b
+	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 patch0b_5,mem_patch0b
+	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
+	//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_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	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 patch0b_7,mem_patch0b
+	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_0,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	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 patch0c_2,mem_patch0c
+	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 patch0c_3,mem_patch0c
+	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 patch0c_4,mem_patch0c
+	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 patch0c_5,mem_patch0c
+	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 patch0c_6,mem_patch0c
+	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 patch0c_7,mem_patch0c
+	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_0,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 patch0d_1,mem_patch0d
+	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 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 patch0d_2,mem_patch0d
+	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
+	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
+	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 patch0d_3,mem_patch0d
+	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
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	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 patch0d_5,mem_patch0d
+	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
+	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 patch0d_6,mem_patch0d
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	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 patch0d_7,mem_patch0d
+	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:
+	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_0,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
+	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	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 patch0e_2,mem_patch0e
+	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_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
+
+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 patch0e_3,mem_patch0e
+	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 patch0e_4,mem_patch0e
+	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 patch0e_5,mem_patch0e
+	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 patch0e_6,mem_patch0e
+	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 patch0e_7,mem_patch0e
+	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 patch0f_0,mem_patch0f
+	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 patch0f_1,mem_patch0f
+	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 patch0f_2,mem_patch0f
+	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:
+	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_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 patch0f_3,mem_patch0f
+	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 patch0f_4,mem_patch0f
+	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 patch0f_5,mem_patch0f
+	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 patch0f_6,mem_patch0f
+	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 patch0f_7,mem_patch0f
+	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 patch10_0,mem_patch10
+	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 patch10_1,mem_patch10
+	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 patch10_2,mem_patch10
+	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 patch10_3,mem_patch10
+	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 patch10_4,mem_patch10
+	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 patch10_5,mem_patch10
+	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 patch10_6,mem_patch10
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,shutdown_radio_0db
+	bbit1 TX_POWER_3DB,shutdown_radio_3db
+	bbit1 TX_POWER_5DB,shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,shutdown_radio_f5db
+shutdown_radio_5db:	
+shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+shutdown_radio0:
+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	
+
+shutdown_radio_f5db:
+shutdown_radio_f3db:
+shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch shutdown_radio0
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+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 patch11_0,mem_patch11
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	hjam 0x07,0x96d                                         /*Max added, for best sensitivity*/
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+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 patch11_2,mem_patch11
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium 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 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,set_tx_power_0db
+	bbit1 TX_POWER_3DB,set_tx_power_3db	
+	bbit1 TX_POWER_5DB,set_tx_power_5db
+	bbit1 TX_POWER_f3DB,set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,set_tx_power_f5db
+set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+
+set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+txon_common:
+	nop 4
+	hjam 0xd1,0x955
+	nop 4
+	hjam 0xd2,0x955
+	nop 4
+	hjam 0xd4,0x955
+	rtn
+
+
+initialize_radio:
+ifdef FPGA
+ifndef ROMCODE
+	branch fpga_init
+endif
+endif
+	hjam clksel_rc,core_clksel
+	call init_rf_param
+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 patch11_3,mem_patch11
+	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 patch11_4,mem_patch11
+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 patch11_5,mem_patch11
+	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 patch11_6,mem_patch11
+	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 patch11_7,mem_patch11
+	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_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
+	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
+
+	
+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 patch12_0,mem_patch12
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+	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_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 patch12_2,mem_patch12
+	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 patch12_3,mem_patch12
+	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 patch12_4,mem_patch12
+	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 patch12_5,mem_patch12
+	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 patch12_6,mem_patch12
+	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 patch12_7,mem_patch12
+	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 patch13_0,mem_patch13
+	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 patch13_1,mem_patch13
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	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 patch13_3,mem_patch13
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	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 patch13_5,mem_patch13
+	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 patch13_6,mem_patch13
+	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 patch13_7,mem_patch13
+	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 patch14_0,mem_patch14
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	rtn
+	
+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 patch14_2,mem_patch14
+	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
+	fetch 1,mem_ssp_enable
+	ncall init_memp,blank
+endif
+ifdef SECURE_CONNECTION
+	fetch 1,mem_le_secure_connect_enable
+	ncall init_memp_256,blank
+endif
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+
+init_rf_param:
+	hjam 0x1f,0x909
+	hjam 0x45,0x912		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+	hjam 0xc9,0x956
+
+	hjam 0xff,0x907
+	hjam 0x01,0x908
+	hjam 0xf8,0x90a
+	hjam 0xff,0x90b
+	hjam 0xfb,0x91a
+	hjam 0xfb,0x91b
+	hjam 0xfb,0x91c
+	hjam 0xf6,0x91d
+	hjam 0xf2,0x91e
+	hjam 0xee,0x91f
+	hjam 0xea,0x920
+	hjam 0xe6,0x921
+	hjam 0xe2,0x922
+	hjam 0xde,0x923
+	hjam 0xda,0x924
+	hjam 0xd6,0x925
+	hjam 0xd2,0x926
+	hjam 0xce,0x927
+	hjam 0xca,0x928
+	hjam 0xc6,0x929
+	hjam 0xc2,0x92a
+	hjam 0xbd,0x92b
+	hjam 0xb9,0x92c
+	hjam 0xb5,0x92d
+	hjam 0xb1,0x92e
+	hjam 0xad,0x92f
+	hjam 0xa9,0x930
+	hjam 0x80,0x931
+	hjam 0x80,0x932
+	hjam 0x80,0x933
+	hjam 0xc0,0x934
+	hjam 0xc1,0x935
+	hjam 0xc2,0x936
+	hjam 0xc3,0x937
+	hjam 0xc4,0x938
+	hjam 0xc5,0x939
+	hjam 0xc6,0x93a
+	hjam 0xc7,0x93b
+	hjam 0x06,0x93c
+	hjam 0x07,0x93d
+	hjam 0x46,0x93e
+	hjam 0x85,0x93f
+	hjam 0x86,0x940
+	hjam 0x87,0x941
+	hjam 0xc6,0x942
+	hjam 0xc7,0x943
+	hjam 0xd6,0x944
+	hjam 0xd7,0x945
+	hjam 0xe6,0x946
+	hjam 0xf5,0x947
+	hjam 0x00,0x948
+	hjam 0xf8,0x949
+	hjam 0x7f,0x94a
+	hjam 0xfb,0x94c
+	hjam 0xef,0x94d	
+	hjam 0xec,0x94e
+	hjam 0x5e,0x94f
+	hjam 0x4c,0x957
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	hjam 0xe4,0x968
+	hjam 0x00,0x969
+	hjam 0x00,0x96a
+	hjam 0x30,0x96b
+	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
+
+
+
+/*****************************************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 patch14_4,mem_patch14
+	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 patch14_5,mem_patch14
+	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 patch14_6,mem_patch14
+	call xtal_fast_wake
+	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 patch14_7,mem_patch14
+	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
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_dispatch_next:
+	fetch 1,mem_le_sc_calc
+	nrtn blank	
+	call lpm_check_wake_lock
+	nrtn blank
+	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
+lpm_dispatch_next0:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	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
+lpm_dispatch_next1:	
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	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 patch15_3,mem_patch15
+	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 patch15_4,mem_patch15
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	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 patch15_6,mem_patch15
+	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
+	fetch 2,mem_cb_bt_set_mult
+	call callback_func
+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 patch15_7,mem_patch15
+	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 patch16_0,mem_patch16
+	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
+	nop 30000
+	nop 30000
+	nop 30000	
+	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 patch16_1,mem_patch16
+	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 patch16_2,mem_patch16
+	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
+lpm_check_wake_lock0:
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+	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
+	branch  lpm_check_wake_lock_nothci
+
+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_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+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
+	
+
+
Index: ble fast connect receive/program/hci_h4.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hci_h4.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hci_h4.prog	(working copy)
@@ -0,0 +1,142 @@
+
+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
+
+endif
+
+hci_rx_h4:
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	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
+	branch assert
+	
+h4_rx_discard_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	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_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+	
Index: ble fast connect receive/program/hci_main.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hci_main.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hci_main.prog	(working copy)
@@ -0,0 +1,345 @@
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	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 patch18_1,mem_patch18
+	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:
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_h5tx_buf
+	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 patch18_2,mem_patch18
+	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
+	rtn
+
+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_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	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
+	branch hci_rx_h4
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	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_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	rtn
+
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	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
+	
+	
+
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	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 patch18_7,mem_patch18
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	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_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:
+	branch h4_get_tx_ptr
+
+	
+
+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
+
+
+
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	
+	
+//enable ssp master sm
+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
+	rtn
+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
+
+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: ble fast connect receive/program/hid.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hid.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/hid.prog	(working copy)
@@ -0,0 +1,94 @@
+/**
+* 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:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	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:
+	call hid_rx_process_data
+	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
+	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
+	ifetch 1,contr
+	store 1,mem_kb_caps_led_status
+	store 1,mem_hid_rx_data
+	fetch 1,mem_kb_led_on_timer
+	nrtn blank
+	jam 2,mem_led_cap_delay_timer
+	rtn
+	
+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: ble fast connect receive/program/keyboard.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/keyboard.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/keyboard.prog	(working copy)
@@ -0,0 +1,1249 @@
+
+ifdef COMPILE_KEYBOARD
+kb_init:	
+	call kb_clear_keys
+	rtn wake
+	//call module_hci_pairing_just_work_mode
+	call kb_init_common
+	call kb_led_int
+	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
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	call kb_init_environment
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+kb_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,kb_3_check_reconn_target
+	branch kb_start_discovery
+kb_3_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank
+	branch app_bt_start_reconnect
+
+kb_init_environment:
+	call app_initflag_check
+	branch kb_load_eeprom_param,zero
+	setarg KB_MAP2_STATUS_WIN
+	store 1,mem_kb_current_status
+	call store_current_status
+	fetch 6,mem_master_addr
+	store 6,mem_plap
+	store 6,mem_hci_plap
+	call eeprom_store_bd_reconn_info
+	jam REC_3_MODE,mem_xrecord_mode
+	branch app_initflag_store
+
+kb_load_eeprom_param:
+	call read_current_status
+	branch eeprom_load_reconn_info
+
+
+kb_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	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 0x07,pdata
+	hstore 1,core_gpio_oe3
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	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
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x01,pdata
+	hstore 1,core_gpio_key2
+	
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hjam 0x0c,core_kscn_ksctrl
+	hjam 0x30,core_kscn_scancycle_timer_h
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hfetch 1, core_kscn_ksctrl
+	set1 0,pdata
+	hstore 1,core_kscn_ksctrl	
+	rtn
+kb_led_int:
+	call kb_led_cap_init
+	call kb_led_num_init
+	branch kb_led_scl_init
+kb_led_cap_init:
+	fetch 1,mem_led_cap_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_cap_gpio
+ 	branch gpio_config_output
+kb_led_num_init:
+	fetch 1,mem_led_num_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_num_gpio
+ 	branch gpio_config_output
+kb_led_scl_init:
+	fetch 1,mem_led_scl_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_scl_gpio
+ 	branch gpio_config_output
+
+kb_led_cap_delay_timer:	
+	fetch 1,mem_led_cap_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_cap_delay_timer
+	nrtn blank
+kb_led_capslock:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	fetch 1,mem_hid_rx_data
+	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
+	branch kb_auto_disable_mult
+kb_enble_mult_timer:
+	fetch 1,mem_auto_enable_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_auto_enable_mult_timer
+	nrtn blank
+	branch app_lpm_mult_enable
+kb_auto_disable_mult:
+	fetch 1,mem_auto_enable_mult_timer_init
+	store 1,mem_auto_enable_mult_timer
+	branch app_lpm_mult_disable
+	
+kb_led_cap_status:
+	jam 1,mem_led_cap_flag
+	branch bt_send_kb_data_by_report0+8
+
+
+kb_send_process:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 6,mem_master_addr
+	fetcht 6,mem_plap
+	isub temp,null
+	branch kb_debug_send_keydata,zero
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	ncall bt_send_kb_data_by_report0,zero
+	
+	fetcht 8,mem_table_last_repory_data1
+	fetch 8,mem_map2_out_report1
+	store 8,mem_table_last_repory_data1
+	isub temp,null
+	ncall bt_send_kb_data_by_report1,zero
+	rtn
+
+kb_debug_send_keydata:
+	fetch 1,mem_kb_down
+	beq 0x7f,fn_test
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	rtn zero
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	arg 10,regA
+	call hid_malloc_tx_buff
+	setarg L2CAP_HID_Interrupt_channel
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+fn_test:
+	store 8,mem_map2_out_report0
+	branch kb_debug_send_keydata+2
+
+
+bt_send_kb_data_by_report0:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 KEY_SEARCH_M_KEY_FLAG
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report0
+	beq CAPS_LOCK_DATA,kb_led_cap_status
+	jam 0,mem_led_cap_flag
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	call bt_send_kb_data_by_report0_ptr
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+
+fill_kb_send_data:
+	arg 0,temp
+	add rega,2,contw
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+store_key:
+	ifetch 1,contr
+	bbit0 7,not_key_status
+	and pdata,7,queue
+	qset1 temp
+	branch store_key_next
+not_key_status:
+	istore 1,contw
+store_key_next:
+	loop store_key
+	istoret 2,rega
+	rtn
+	
+bt_send_kb_data_by_report1:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report1
+	beq SFK_ANDROID_MAP,android_search_m_key
+	beq SFK_IOS_SCREENSHOT,ios_screenshot
+	setarg 0
+	store 8,mem_table_temp
+	call fill_kb_send_report1_data
+	
+	fetch 1,mem_kb_temp_flag
+	bbit1 KEY_SEARCH_M_KEY_FLAG,android_search_m_key_releas
+	call bt_send_kb_data_by_report1_ptr
+	fetch 4,mem_table_temp
+	istore 4,contw
+	rtn
+
+fill_kb_send_report1_data:
+	fetch 1,mem_map2_out_report1
+	rtn blank
+	enable true
+	fetch 1,mem_map2_out_report1
+	copy pdata,queue
+	fetch 8,mem_table_temp
+	qsetflag true,pdata
+	store 8,mem_table_temp
+	disable true
+	rtn
+
+init_kb_no_data_timer:
+	fetch 2,mem_kb_no_data_timeout
+	store 2,mem_kb_no_data_timer
+	rtn
+kb_check_no_data_timer:
+	fetch 2,mem_kb_no_data_timer
+	rtn blank
+	fetch 2,mem_kb_no_data_timer
+	increase -1,pdata
+	store 2,mem_kb_no_data_timer
+	nrtn blank
+	branch kb_disconnect
+kb_disconnect:
+	setarg 0
+	store 2,mem_kb_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
+
+bt_send_kb_data_by_report0_ptr:
+	arg 10,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+bt_send_kb_data_by_report1_ptr:
+	arg 6,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	rtn
+
+android_search_m_key_releas:
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 8,contw
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0
+	istore 4,contw
+	fetch 1,mem_kb_temp_flag
+	set0 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+ios_screenshot:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x2002	//Home key,Lock
+	istore 4,contw
+	rtn
+
+android_search_m_key:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x40     // search key
+	istore 4,contw
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 2,contw
+	setarg 0x10  	// M key
+	istore 7,contw
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+
+
+kb_pincode:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	fetch 1,mem_kb_temp_flag
+	rtnbit0 KEY_EVENT_FLAG
+	set0 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_down
+	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_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_down
+	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
+
+kb_process_idle:
+	call kb_ui_check_paring_button
+	rtn wake
+kb_process:
+	fetch 1,mem_kb_get_fn_flag
+	call kb_recover_kb_down_data,blank
+	call kb_kscan_fn
+ifdef ROM_RESPIN_OPTIONAL
+	call kb_map2_main
+endif 
+	fetch 1,mem_kb_keys
+	rtn blank
+	call kb_read_gpio
+	fetch 4,mem_kb_gpio_val
+	store 4,mem_kb_gpio_last_val
+	rtn
+
+kb_ui_check_paring_button:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_RECONNECT
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 CACEL_RECONN_FLAG,pdata
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_fn_c
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_c_fn
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,check_bb_reconn_cancel
+	rtn
+
+check_bb_reconn_cancel:
+	fetch 1,mem_kb_temp_flag
+	set1 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	branch check_51cmd_bb_reconn_cancel
+
+
+kb_read_gpio:
+	hfetch 3,core_gpio_key0
+	iforce regb
+	hfetch 4,core_gpio_pu0
+	iforce rega
+	hfetcht 8,core_gpio_oe0	
+	setarg 0
+	hstore 3,core_gpio_key0
+	nop 100
+	hfetch 1,core_gpio_in
+	store 1,mem_kb_gpio_val
+	hjam 0,core_gpio_pu0
+	hfetch 1,core_gpio_oe3
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_oe3
+	xor_into 0xff,pdata
+	hstore 1,core_gpio_pu3
+	setarg 0xff
+	hstore 3,core_gpio_oe0
+	setarg 0xffff
+	hstore 2,core_gpio_pu1
+	nop 100
+	hfetch 3,core_gpio_in1
+	iand regb,pdata
+	store 3,mem_kb_gpio_val + 1
+	deposit rega
+	hstore 4,core_gpio_pu0
+	hstoret 8,core_gpio_oe0
+	deposit regb
+	hstore 3,core_gpio_key0
+	rtn	
+
+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_HANDSHAKE,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_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:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	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 kb_led_cap_delay_timer
+	call kb_check_hid_handshake_timer	
+	call kb_enble_mult_timer
+	call kb_check_no_data_timer
+	call select_system_led_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
+	fetch 1,mem_kb_temp_flag
+	bbit0,CACEL_RECONN_FLAG,app_bb_hibernate
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2, mem_ui_state_map
+	rtn
+
+kb_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	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_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_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,kb_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,kb_event_light_state_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+kb_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+	
+kb_bb_discon_clear_stack:
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag	
+	jam 0,mem_kb_debug_sm
+	rtn
+
+	
+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:
+	setarg 0
+	store 2,mem_kb_direct_timer
+	store 1,mem_pin_length
+	call led_cap_darking
+	call kb_3_0_bb_event_discovery_btn
+	call app_lpm_mult_disable
+	branch kb_start_discovery
+
+led_cap_darking:
+	jam 1,mem_led_cap_gpio_status
+	fetcht 1,mem_led_cap_gpio
+	branch gpio_out_inactive
+
+kb_3_0_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	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_led_stop_blink
+	setarg 0
+	store 2,mem_kb_discovery_timer
+	branch app_bt_stop_discovery
+
+kb_start_discovery:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_kb_discovery_timer
+	call app_bt_start_discovery
+	jam 0,mem_kb_led_on_timer
+	//jam 5,mem_led_device_blink_count
+	call app_led_start_blink
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_pin_length
+	call kb_clear_keys
+	branch kb_clean_kscan_fifo
+
+
+kb_before_hibernate:
+	fetch 1,mem_kb_led_on_timer
+	branch kb_before_hibernate_cont,blank
+	arg 320,temp
+	imul32 temp,temp
+	copy clkn_bt,pdata
+	iadd temp,temp
+kb_before_hibernate_wait:
+	copy clkn_bt,pdata
+	isub temp,null
+	nbranch kb_before_hibernate_wait,positive
+kb_before_hibernate_cont:
+	fetcht 1,mem_led_power_gpio
+ 	call gpio_out_inactive
+ 	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+kb_wake_common:
+	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_process_lpm_before:
+	call kb_wake_common
+	fetch 1,mem_lpm_current_mult
+	nrtn blank
+	jam 0,mem_gpio_wakeup_low		// no key wakeup when key is down
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+	
+kb_bt_hid_handshake:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+  	call ui_led_off
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call kb_clean_kscan_fifo
+	call kb_clear_keys
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+store_current_status:
+	fetch 1,mem_kb_current_status
+	and_into 0x7,pdata
+	store 1,mem_store_current_status
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	branch  iicd_write_eep
+
+
+read_current_status:
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	call  iicd_read_eep
+	fetch 1,mem_store_current_status
+	copy pdata,regb
+	and_into 0x0f,pdata
+	beq 0x0f,kb_current_status_regroup
+	copy regb,pdata
+	store 1,mem_kb_current_status
+	rtn
+
+
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	fetch 1,mem_kb_release_fn_data
+	beq 0x7f,kb_clear_fn_lock_flag
+	branch kb_kscan_check
+
+kb_recover_kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	branch kb_kscan_check
+
+kb_kscan_fn:
+	fetch 1,mem_kb_keys
+	branch kb_kscan_no_data,blank
+	copy pdata,regb
+	fetch 5,mem_kb_down
+	copy pdata,temp
+kb_kscan_fn_loop:
+	copy temp,pdata
+	compare 0x7f,pdata,0xff
+	branch kb_get_fn,true
+	increase -1,regb
+	setarg mem_kb_down_regroup
+	iadd regb,contw
+	copy temp,pdata
+	istore 1,contw
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	nbranch kb_kscan_fn_loop,blank
+	fetch 5,mem_kb_down_regroup
+	call kb_down_data,blank
+	branch kb_kscan_check
+kb_get_fn:
+	setarg 1
+	store 1,mem_kb_get_fn_flag
+	branch kb_kscan_fn_loop+8
+
+select_system_led_timer:
+	fetch 1,mem_select_system_led_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_select_system_led_timer
+	nrtn blank
+	branch ui_led_blink_stop
+
+
+kb_current_status_regroup:
+	copy regb,pdata
+	and_into KB_MAP2_STATUS_WIN,pdata
+	store 1,mem_kb_current_status
+	rtn
+kb_clear_fn_lock_flag:
+	jam 0,mem_kb_get_fn_flag
+	call kb_down_data
+	branch kb_kscan_check
+
+
+kb_kscan_check:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_read_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_read_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check	
+
+kb_kscan_no_data:
+	call kb_clear_data
+	branch kb_kscan_check
+	
+kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	rtn
+
+kb_clear_data:
+	setarg 0
+	store 1,mem_kb_get_fn_flag
+	store 5,mem_kb_down_regroup
+	store 8,mem_kb_down
+	rtn
+	
+kb_kscan_read_event:
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	//call p_hci_log
+	hfetch 1,core_kscn_event_num
+	isolate1 kb_KSCAN_KEY_EVENT_STAT,pdata
+	store 1,mem_kscan_event_num_last
+	hfetch 1,core_kscn_event
+	store 1,mem_kscn_event_last
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	fetcht 1,mem_kb_keys
+	sub temp,4,null
+	nbranch kb_kscan_check,positive
+	iforce contr
+	setarg mem_kb_down
+	iadd temp,contw
+	deposit contr
+	istore 1,contw
+	increase 1,temp
+	storet 1,mem_kb_keys
+	branch kb_kscan_fn
+
+
+
+/*
+****************************************************************************************************
+* map2_main
+*
+****************************************************************************************************
+*/
+
+ifdef ROM_RESPIN_OPTIONAL
+	//input: mem_kb_down
+	//output:mem_map2_out_report0,  mem_map2_out_report1,.....
+kb_map2_main:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_0,mem_patch1a
+	setarg 0
+	store 8,mem_map2_out_report0
+	store 8,mem_map2_out_report1
+
+	//call p_hci_log
+	call kb_down_data_regroup	//regroup mem_kb_down
+	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,kb_map2_main_conn
+	//bbit1 UI_STATE_BLE_CONNECTED,p_kb_map2_main_conn
+kb_map2_main_unconn:
+	fetch 1,mem_kb_current_status
+	set0 KB_MAP2_STATUS_BIT_CONN,pdata
+	set1 KB_MAP2_STATUS_BIT_UNCONN,pdata
+	store 1,mem_kb_current_status
+	branch kb_map2_main_start
+kb_map2_main_conn:
+	fetch 1,mem_kb_current_status
+	set1 KB_MAP2_STATUS_BIT_CONN,pdata
+	set0 KB_MAP2_STATUS_BIT_UNCONN,pdata
+	store 1,mem_kb_current_status
+	
+//	call p_kb_down_data_regroup	//regroup mem_kb_down
+kb_map2_main_start:
+	setarg mem_kb_map2_temp_end
+	arg mem_kb_map2_temp_start,contw
+	isub contw,loopcnt
+	call clear_mem
+kb_map2_main_loop:
+	//1. get VK
+	fetch 1,mem_kb_vk_offset
+	arg mem_kb_down_test,temp
+	iadd temp,contr
+	ifetch 2,contr
+	branch kb_map2_main_end,blank  // end of vk array
+	store 2,mem_kb_current_vk	
+
+	//2. compare VK with map2
+	setarg mem_kb_map2
+	store 2,mem_kb_map2_current_cell_ptr
+	disable user
+kb_map2_compare_loop:
+	//2.2 get map ptr in rega
+	call kb_map2_get_ptr
+	ifetch 3,rega
+	branch kb_map2_main_next_vk,blank   /// end of map2
+	store 3,mem_kb_map2_vk
+	fetch 1,mem_kb_map2_vk+2
+	branch kb_map2_compare_2bytes,blank
+	jam 3,mem_kb_vk_processed_cnt // 3 vks matched
+	fetcht 3,mem_kb_map2_vk
+	fetch 3,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	branch kb_map2_compare_next
+kb_map2_compare_2bytes:
+	fetch 1,mem_kb_map2_vk+1
+	branch kb_map2_compare_1byte,blank
+	jam 2,mem_kb_vk_processed_cnt // 2 vks matched
+	fetcht 2,mem_kb_map2_vk
+	fetch 2,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	branch kb_map2_compare_next
+kb_map2_compare_1byte:
+	jam 1,mem_kb_vk_processed_cnt // 1 vks matched
+	fetcht 1,mem_kb_map2_vk
+	fetch 1,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	// 2.4 not matched ,compare next one
+kb_map2_compare_next:	
+	disable user
+	call kb_map2_get_ptr
+	add rega,5,contr
+	ifetch 1,contr    // length
+	iadd contr,pdata
+	store 2,mem_kb_map2_current_cell_ptr// next map cell
+	branch kb_map2_compare_loop
+	
+kb_map2_main_next_vk:
+	//3. process vk offset
+	fetch 1,mem_kb_vk_offset
+	fetcht 1,mem_kb_vk_processed_cnt
+	iadd temp,pdata
+	store 1,mem_kb_vk_offset
+
+	//4.process next vk if vk matched with map2
+	branch kb_map2_main_loop,user // vk matched map2,then next vk
+
+	//5.put this vk into report if vk not matched with map2
+	arg mem_kb_current_vk,rega
+	arg mem_map2_out_report0,contr
+	arg 1,regb
+	call kb_map2_put_vk_into_report
+	branch kb_map2_main_loop// vk not matched map2,then next vk
+
+kb_map2_main_end:
+	fetcht 1,mem_kb_device_button_last
+	fetch 1,mem_kb_device_button
+	store 1,mem_kb_device_button_last
+	isub temp,regb
+	rtn zero
+	beq KB_DEVICE_BUTTON_UP,kb_map2_device_button_up
+	copy temp,pdata  //last
+	beq KB_DEVICE_BUTTON_UP,kb_map2_device_button_down
+	rtnne KB_DEVICE_BUTTON_ALREADY_LONG
+	jam KB_DEVICE_BUTTON_ALREADY_LONG,mem_kb_device_button_last
+	rtn
+	
+
+kb_map2_compare_vk_match:
+	//2.3 Compare status
+	increase 3,rega
+	ifetch 1,rega   //status
+	fetcht 1,mem_kb_current_status
+	iand temp,temp
+	and  temp,0x0f,null
+	branch kb_map2_compare_next,zero // status not match
+	and  temp,0xf0,null
+	branch kb_map2_compare_next,zero // status not match
+	//2.4 already matched with map2, check the fuction
+	enable user // key map2 matched.
+	call kb_map2_compare_fuction
+	branch kb_map2_main_next_vk,user
+	branch kb_map2_compare_next
+	
+kb_map2_compare_fuction:
+	add rega,1,contr
+	ifetch 1,contr
+	beq KB_MAP2_FUNC_REPORT0,kb_map2_report0
+	beq KB_MAP2_FUNC_REPORT1,kb_map2_report1
+	beq KB_MAP2_FUNC_WIN,kb_map2_win
+	beq KB_MAP2_FUNC_ANDROID,kb_map2_android
+	beq KB_MAP2_FUNC_IOS,kb_map2_ios
+	beq KB_MAP2_FUNC_DEV1,kb_map2_dev1
+	beq KB_MAP2_FUNC_DEV2,kb_map2_dev2
+	beq KB_MAP2_FUNC_DEV3,kb_map2_dev3
+	rtneq KB_MAP2_FUNC_IGNORE
+	disable user
+	rtn
+
+	
+kb_map2_report0:
+	arg mem_map2_out_report0,regc
+	branch kb_map2_report_in
+	
+kb_map2_report1:
+	arg mem_map2_out_report1,regc
+	//fall through
+kb_map2_report_in:
+	ifetch 1,contr
+	copy pdata,regb
+	copy contr,rega
+	copy regc,contr
+	branch kb_map2_put_vk_into_report
+	
+kb_map2_win:
+	arg KB_MAP2_STATUS_BIT_WIN,queue
+	branch kb_map2_set_system
+	
+kb_map2_android:
+	arg KB_MAP2_STATUS_BIT_ANDROID,queue
+	branch kb_map2_set_system
+	
+kb_map2_ios:
+	arg KB_MAP2_STATUS_BIT_IOS,queue
+	//branch kb_map2_set_system
+	//fail through
+kb_map2_set_system:
+	call ui_led_blink_start
+	jam 5,mem_select_system_led_timer
+	fetch 1,mem_kb_current_status
+	and_into 0xf8,pdata
+	qset1 pdata
+	store 1,mem_kb_current_status
+	call store_current_status
+	rtn
+
+
+
+kb_map2_dev1:
+	jam KB_DEVICE_BUTTON_DEVICE1,mem_kb_device_button
+	//jam 1,mem_device_flag
+	rtn
+kb_map2_dev2:
+	jam KB_DEVICE_BUTTON_DEVICE2,mem_kb_device_button
+	//jam 2,mem_device_flag
+	rtn
+kb_map2_dev3:
+	jam KB_DEVICE_BUTTON_DEVICE3,mem_kb_device_button
+	//jam 3,mem_device_flag
+	rtn
+
+
+kb_map2_device_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN,pdata
+	store 2,mem_ui_state_map
+	
+	copy temp,pdata
+	rtneq KB_DEVICE_BUTTON_ALREADY_LONG
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+
+
+	
+	branch kb_map2_device_button_timer_stop
+	copy temp,pdata
+
+	//beq KB_DEVICE_BUTTON_DEVICE1,p_kb_map2_reconn_device1
+	//beq KB_DEVICE_BUTTON_DEVICE2,p_kb_map2_reconn_device2
+	//beq KB_DEVICE_BUTTON_DEVICE3,p_kb_map2_reconn_device3
+	rtn
+kb_map2_device_button_down:
+	call app_bt_sniff_exit
+	jam 40,mem_kb_device_button_timer // 40 x 100ms
+ 	rtn
+kb_map2_device_button_timer_stop:
+	jam 0,mem_kb_device_button_timer
+	rtn
+
+kb_map2_reconn_device1:
+	//jam 1,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+kb_map2_reconn_device2:
+	//jam 2,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+kb_map2_reconn_device3:
+	//jam 3,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+	
+kb_map2_get_ptr:
+	fetch 2,mem_kb_map2_current_cell_ptr
+	copy pdata,rega
+	rtn
+	
+	//input:   report prt via contr
+	//input:  report data ptr via rega
+	//input:  report data len via regb
+kb_map2_put_vk_into_report:
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+kb_map2_put_vk_into_report_loop:
+	ifetch 1,contr
+	branch kb_map2_put_vk_into_report_do,blank
+	loop kb_map2_put_vk_into_report_loop
+	rtn //report full?
+kb_map2_put_vk_into_report_do:
+	add contr,-1,contw
+	copy rega,contr
+	copy regb,loopcnt
+	branch memcpy
+
+
+
+kb_down_data_regroup:
+	fetch 1,mem_kb_get_fn_flag
+	branch kb_down_data, blank
+	fetch 5,mem_kb_down_regroup
+	copy pdata,temp
+	arg 0,regb
+	arg 4,loopcnt
+kb_down_data_regroup_loop:	
+	copy temp,pdata
+	rshift8 pdata,pdata
+	lshift8 pdata,pdata
+	or_into 0x7f,pdata 
+	copy pdata,temp
+	setarg mem_kb_down_test
+	iadd regb,contw
+	copy temp,pdata
+	istore 2,contw
+	increase 2,regb
+	copy temp,pdata
+	rshift8  pdata,pdata
+	copy pdata,temp
+	loop kb_down_data_regroup_loop
+	setarg 0
+	store 5,mem_kb_down_regroup
+	rtn
+
+
+
+
+kb_kscan_release_key_data:
+	and pdata,0xff,temp
+	store 1,mem_kb_release_fn_data
+	fetch 1,mem_kb_keys
+	branch kb_kscan_check,blank
+	iforce loopcnt
+	arg mem_kb_down,contr
+kb_kscan_find_same_key:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key
+	branch kb_kscan_check
+
+endif
+
+	
+else
+kb_init:
+	branch assert
+endif
Index: ble fast connect receive/program/l2cap.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/l2cap.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/l2cap.prog	(working copy)
@@ -0,0 +1,1973 @@
+/************************************/
+/*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:	
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	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:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	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_check_map:
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	beq 0,set_pdata_0
+	beq 1,set_pdata_0
+	beq 2,set_pdata_0
+	beq 3,set_pdata_0
+	beq 0x81,set_pdata_0
+	beq 0xc0,set_pdata_0
+	beq 0x80,set_pdata_0
+	beq 0x40,set_pdata_0
+	rtn
+
+set_pdata_0:
+	setarg 0
+	rtn
+
+
+l2cap_call_proc_signal:
+	call l2cap_check_map
+	nrtn blank
+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_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	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:
+	arg 0,debug
+	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_reset_sdp_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	fetch 2,mem_sdp_tx_pkt_length
+	increase 4,pdata
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	add pdata,1,temp ///temp: how many128
+	arg mem_tx_fifo3,contr
+	ifetch 3,contr
+	rtn blank
+	store 3,mem_tx_fifo_map_temp
+	fetch 1,mem_tx_fifo_map_temp
+	copy pdata,rega
+	call check_l2cap_map
+	copy regb,pdata
+	store 1,mem_tx_fifo3
+	rtn
+
+check_l2cap_map:
+	arg 0,queue
+	arg 0,regb
+
+check_l2cap_map_loop:
+	sub queue,7,null
+	nrtn positive
+	qisolate1 rega
+	branch check_l2cap_map_used,true
+	branch check_l2cap_map_used2
+
+check_l2cap_map_used:
+	copy temp,pdata
+	branch check_l2cap_map_used2,blank
+	qset1 regb
+	increase -1,temp
+
+check_l2cap_map_used2:
+	increase 1,queue
+	branch check_l2cap_map_loop
+
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_check_map
+	nrtn blank
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_reset_sdp_map
+	branch l2cap_call_proc_sdp_common
+
+	
+ml2cap_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
+l2cap_call_proc_sdp_common:
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	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
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,l2cap_proc_signal_info_req_fix
+	rtn
+l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0280
+	istore 4, contw
+	force 12,pdata
+	branch l2cap_proc_signal_info_req_common
+l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+l2cap_proc_signal_info_req_common:
+	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
+	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 l2cap_proc_signal_info_req_reply
+
+
+/*  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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	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:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,ml2cap_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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	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
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	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_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	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:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	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: ble fast connect receive/program/le.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/le.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/le.prog	(working copy)
@@ -0,0 +1,3503 @@
+ifdef COMPILE_LE
+//******************************************//
+//*************LE INIT ****************//
+//******************************************//
+
+	
+le_secure_connection_enable:
+	fetch 1,mem_le_pres_auth
+	set1 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+le_secure_connection_disable:
+	fetch 1,mem_le_pres_auth
+	set0 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+
+
+le_init_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	disable wake
+	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_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
+	jam 1,mem_le_txheader
+	jam 0,mem_le_txlen
+	branch le_supervision_flush
+
+le_init_master:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	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 patch20_0,mem_patch20
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	fetch 2,mem_le_tsniff
+	mul32 pdata,5,pdata
+	rshift4 pdata,pdata
+	store 2,mem_le_superto			// vol.6 part B 4.5.2 only 6*conninterval before establish
+	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 patch20_1,mem_patch20
+	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 patch20_2,mem_patch20
+	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 patch20_3,mem_patch20
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+ifdef SECURE_CONNECTION
+	call sp_calc_sequence_256
+	call le_secure_connect_sm
+endif
+	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,sync	// vol.6 part B 4.5.1 respond even crc error
+	call le_got_first_packet
+	branch le_slave_match,match
+	branch le_slave_transmit_last
+	
+
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	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 patch20_6,mem_patch20
+	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 patch20_7,mem_patch20
+	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 patch21_0,mem_patch21
+	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 patch21_1,mem_patch21
+le_disconnect0:
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+ifdef SECURE_CONNECTION
+	call sp_initialize_256
+endif
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	rtn
+	
+le_got_first_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	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
+	fetch 2,mem_le_init_superto
+	store 2,mem_le_superto
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	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
+letx_setfreq0:
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	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 patch21_6,mem_patch21
+	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 patch21_7,mem_patch21
+	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 patch22_0,mem_patch22
+	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 patch22_1,mem_patch22
+	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 patch22_2,mem_patch22
+	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 patch22_3,mem_patch22
+	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 patch22_4,mem_patch22
+	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 patch22_5,mem_patch22
+	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 patch22_6,mem_patch22
+	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 patch22_7,mem_patch22
+	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,0,rega				// ble 2M Medium Frequency
+	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 patch23_0,mem_patch23
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup 
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	call le_prep
+	call letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+le_transmit0:
+	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 patch23_2,mem_patch23
+	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 patch23_3,mem_patch23
+	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_fast
+	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 patch23_4,mem_patch23
+	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 patch23_5,mem_patch23
+	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 patch23_6,mem_patch23
+	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_fast
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	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 patch24_0,mem_patch24
+	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 patch24_1,mem_patch24
+	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 patch24_2,mem_patch24
+	disable master
+	branch le_adv_access
+	
+
+
+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
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_update_param_common
+ 	jam 1,mem_lpm_mode		
+le_update_param_common:
+	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 patch24_4,mem_patch24
+	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 patch24_5,mem_patch24
+	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 patch24_6,mem_patch24
+	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 patch24_7,mem_patch24
+	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
+	beq LL_START_ENC_REQ,le_set_enc
+	fetch 1,mem_le_enc_state
+	beq FLAG_LE_ENC_PAUSE,le_clear_enc
+	rtn
+	
+
+le_set_enc:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_clear_enc:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	arg 0,pdata
+	store 4,mem_le_last_mic
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	fetch 1,mem_le_state
+	set0 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn
+
+
+
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	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 patch25_2,mem_patch25
+	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 patch25_3,mem_patch25
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+//	call le_scan_dongle
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	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
+	rtn
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	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 patch25_6,mem_patch25
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	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 patch25_7,mem_patch25
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_prepare_tx_shutter
+le_prepare_tx_1:
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	branch le_send_empty
+
+le_prepare_tx_shutter:
+	fetch 1,mem_empty_count
+	nbranch le_send_empty_shutter,blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,le_tx_4  
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_tx_4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+le_send_empty_shutter:
+	fetch 1,mem_empty_count
+	increase -1,pdata
+	store 1,mem_empty_count
+	branch le_send_empty
+le_tx_4:	
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,in_le_tx_4
+	jam 3,mem_empty_count
+in_le_tx_4:	
+	branch le_prepare_tx_1
+	
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	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 patch26_1,mem_patch26
+le_prepare_tx_ll:
+	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
+	beq LL_PING_RSP ,le_send_ping_response
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	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            
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+endif
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu_req
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu_rsp
+	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
+	beq ATTOP_CONTINUE,le_send_att_continue
+	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
+	fetch 1,mem_ltk_exists
+	beq 0,le_ltk_lost	
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+
+le_ltk_lost:
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam XT_LL_REJECT_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	call check_51cmd_le_smp_sec_req	
+	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
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_start_enc_rsp_shutter
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_start_enc_rsp_common
+le_send_start_enc_rsp_end:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+le_send_start_enc_rsp_common:
+	force 1,temp
+	branch le_send_packet
+le_send_start_enc_rsp_shutter:
+	jam 1,mem_lpm_mode
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp0
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+le_send_start_enc_rsp0:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	force 1,temp
+	call le_send_packet
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+le_send_unknown_rsp:
+	fetch 1,mem_le_ll_cur_opcode
+	istore 1,contw
+	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 1,temp
+//	branch le_send_packet		
+le_send_pause_enc_rsp:
+le_send_ping_response:
+	force 1,temp
+	branch le_send_packet	
+	
+le_send_version_ind:
+	fetch 5,mem_lmp_version
+	istore 5,contw
+//	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:
+	setarg LE_ERR_PIN_OR_KEY_MISSING
+	istore 1,contw
+	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
+	fetch 8,mem_le_interal_min
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	fetch 1,mem_device_option
+	sub pdata,dvc_op_module,null
+	call  le_parse_smp_pairing_request_check_irk,zero
+
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_send_smp_pairing_response_common
+ 	jam PAIR_ING, mem_pair_state
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit1 INITATOR_IRK,le_send_smp_pairing_response_common
+	setarg param_smp_key_dist2
+	istore 3,contw	
+le_send_smp_pairing_response_common:
+	fetch 6,mem_le_pres_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+
+le_parse_smp_pairing_request_check_irk:
+	fetcht 1,mem_le_pres_init_key_distribution
+	fetch 1,mem_le_preq_init_key_distribution
+	isolate1 LE_INITATOR_IRK_BIT,pdata
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_init_key_distribution
+	fetcht 1,mem_le_pres_resp_key_distribution
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_resp_key_distribution
+	rtn
+	
+	
+le_send_smp_pairing_confirm:
+ifdef SECURE_CONNECTION
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_send_smp_pairing_confirm_sc
+endif
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+ifdef SECURE_CONNECTION
+le_send_smp_pairing_confirm_sc:
+	arg mem_le_srand,contw	
+	call generate_random
+	call function_f4_cb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+endif
+
+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:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	arg PAIRING_FAILED_UNSPECIFIED_REASON,pdata
+	istore 1,contw
+	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
+	fetch 1,mem_device_option
+	beq dvc_op_shutter, le_send_smp_encryption_information_shutter
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	call le_send_packet
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,app_ble_store_reconn_info
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch app_ble_store_reconn_info,true
+	rtn
+	
+le_send_smp_encryption_information_shutter:
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+	
+le_send_smp_master_identification:
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_smp_master_identification_shutter
+
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit0 LE_INITATOR_IRK_BIT,le_send_smp_master_identification_only
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_smp_master_identification_common
+	
+le_send_smp_master_identification_only:	
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+le_send_smp_master_identification_common:	
+	arg mem_le_ediv,contw
+	force 10,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_ediv
+	store 2,mem_le_l2cap_response
+	fetch 8,mem_le_rand
+	istore 8,contw
+	force 15,temp
+	branch le_send_packet
+
+le_send_smp_master_identification_shutter:
+	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
+	setarg 0
+	store 8,mem_le_l2cap_response
+	istore 8,contw	//irk is zero. a device does not have a valid resolvable private address.
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+//	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+//	call le_xtype_fifo_in
+	fetch 1,mem_le_conn_own_addr_type					 
+	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:
+	fetch 1,mem_le_pres_auth
+	store 1,mem_le_l2cap_response
+	force 6,temp
+	branch le_send_packet
+
+ifdef SECURE_CONNECTION
+le_send_smp_pairing_public_key:
+//p_le_send_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_PUBLIC_KEY,le_send_public_key_continue
+//	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	arg 65,temp
+	storet 2,mem_le_txpayload // L2CAP length
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	arg 0x02,type  //LLIC:start
+	setarg LE_L2CAP_CID_SMP
+	store 2,mem_le_txcid //contw
+
+	arg mem_le_l2cap_response,contw
+	arg 22,loopcnt
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy_fast
+	jam 22,mem_le_public_length
+	
+	jam  27,mem_le_txlen
+
+	fetcht 1,mem_le_arq
+	set1 md,temp
+	storet 1,mem_le_arq
+//	jam 0,mem_le_md_flag
+//	jam LE_MD_NOTIFICATION,mem_le_continue_type
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	call le_xtype_fifo_in
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap2	
+
+
+le_send_public_key_continue:
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	fetch 1,mem_le_public_length
+	beq 22,le_send_public_key_continue2
+
+	arg  15,loopcnt
+	jam 15,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_SEND_PUBLIC_KEY,mem_le_secure_connect_state
+	jam 0,mem_le_public_length
+	rtn
+le_send_smp_publickey_continue_common:
+	arg mem_le_pubkey_local_x_256 ,contr
+	iadd contr,contr	
+	arg mem_le_txpayload,contw
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_non_l2cap	
+
+
+le_send_public_key_continue2:	
+	jam 49,mem_le_public_length
+	arg  27,loopcnt
+	jam 27,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	branch le_xtype_fifo_in
+	rtn
+	
+le_send_smp_pairing_dhkey_check:
+	call function_f6_eb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+endif
+	
+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_rsp:
+le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_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:
+	arg 2,timeup
+	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 1,contr
+	copy pdata,loopcnt
+	call memcpy_fast
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+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:
+	ifetch 1,contr
+	iadd contr,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_search_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+
+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
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_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:
+	jam LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,mem_le_search_res
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound,blank
+le_send_att_find_primary_search_loop:
+	fetcht 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound2,blank	
+	copy contr,rega
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	fetcht 1,mem_le_search_att_type_length
+	isub temp,null
+	nbranch le_send_att_find_primary_search_loop1,zero
+	arg mem_le_search_att_type,regb
+	call string_compare
+
+	branch le_send_att_find_primary_search_end_start_handle_found,zero
+
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	branch le_send_att_find_primary_search_end_ending_handle_found,zero
+le_send_att_find_primary_search_loop1:
+	fetch 2,mem_temp
+	increase 1,pdata
+	store 2,mem_temp
+	branch le_send_att_find_primary_search_loop
+
+le_send_att_error_response_notfound2:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,le_send_att_find_primary_search_end_ending_handle_found
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_find_primary_search_end_start_handle_found:
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	nbranch  le_send_att_find_primary_search_loop1,zero
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,mem_le_search_res
+//	copy rega,temp
+	fetcht 2,mem_temp
+	storet 2,mem_le_cur_handle_start
+	branch le_send_att_find_primary_search_loop1
+
+le_send_att_find_primary_search_end_ending_handle_found:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,le_send_att_find_primary_search_loop1
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE,mem_le_search_res
+	fetcht 2,mem_temp
+	increase -1,temp
+	storet 2,mem_le_cur_handle_end
+le_send_att_find_primary_search_end:
+	fetch 2,mem_le_cur_handle_start
+	icopy rega//handle start
+	fetch 2,mem_le_cur_handle_end
+	icopy regb//handle end
+	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_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_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_characteristic,zero
+	arg 2,timeup
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+le_send_att_read_by_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_type_response_end
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_response_next_handle,zero
+	nbranch le_send_att_read_by_type_res_found_next,user
+	disable user
+	
+	call le_send_att_read_by_type_write_properties
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+le_send_att_read_by_type_response_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_type_response_loop
+le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_auto_len_by_mem
+
+le_send_att_read_by_type_res_found_next:
+	call le_store_att_record
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	fetch 1,mem_le_l2cap_response
+	beq 21,le_send_att_read_by_type_response_end
+	fetch 1,mem_le_cur_uuid_lenth
+	increase 5,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_type_response_end,zero
+	
+	call get_contw
+	fetch 2,mem_temp
+	increase -1,pdata
+	istore 2,contw
+	call le_write_att_record_common
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+	branch le_send_att_read_by_type_response_next_handle
+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 get_contr
+	call memcpy_fast
+	branch store_contw
+le_send_att_read_by_type_write_uuid:
+	call get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call store_contw
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call get_contw	
+	call get_contr
+	isub loopcnt,contr
+	increase -1,contr
+	call memcpy_fast
+	branch store_contw
+
+
+
+le_send_att_read_by_type_res_not_characteristic:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+le_send_att_read_by_type_res_not_char_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_error_response_notfound,positive
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_error_response_notfound
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_res_not_char_next,zero
+le_check_if_name_uuid:
+	fetch 1,mem_le_search_uuid_length
+	bne 2,le_send_att_read_by_type_res_not_name
+	fetch 2,mem_le_search_uuid
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_name,zero
+	fetch 1,mem_le_name_len
+	branch le_send_att_read_by_type_res_not_char_common
+le_send_att_read_by_type_res_not_name:	
+	fetch 1,mem_le_search_len
+le_send_att_read_by_type_res_not_char_common:
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_temp
+	istore 2,contw
+	call get_contr
+	call memcpy_fast
+	branch le_send_autolen
+le_send_att_read_by_type_res_not_char_next:
+ 	call le_att_next_handle
+	branch le_send_att_read_by_type_res_not_char_loop
+	
+	
+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:
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION,le_send_att_read_response_common
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_le_pairing_handle
+	isub temp,null
+	branch le_send_att_read_response_error_insufficient_authentication,zero
+le_send_att_read_response_common:
+	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_fast
+	branch le_send_autolen
+
+le_send_att_read_response_error_insufficient_authentication:
+	fetch 1,mem_le_pairing_mode
+	branch le_send_att_read_response_common,blank
+	fetch 1,mem_le_state
+	bbit1 lestate_encryption,le_send_att_read_response_common
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+	
+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_fast	
+	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
+	//store 1,0x1ff0
+	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
+
+
+//mem_le_search_att_type
+//mem_le_search_handle_start
+//mem_le_search_handle_end
+le_send_att_read_by_group_type_response:
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+//	enable user
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+le_send_att_read_by_group_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_group_type_end1
+
+	call le_att_same_type
+	nbranch le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,le_send_att_read_by_group_type_end1
+	nbranch 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 store_contw
+	branch le_send_att_read_by_group_type_store_record
+le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_l2cap_response
+	beq 20,le_send_att_read_by_group_type_end1
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_group_type_end1,zero
+//	fetch 1,mem_le_l2cap_response
+//	sub pdata,0x10,null
+//	branch le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call le_write_att_record
+le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call le_store_att_record
+	increase -1,timeup
+	branch le_send_att_read_by_group_type_last_find,zero		
+le_send_att_read_by_group_type_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_group_type_response_loop
+le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch le_send_att_read_by_group_type_next_handle
+le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+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 le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call le_write_att_record
+	branch le_send_auto_len_by_mem
+
+	
+le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+le_att_check_handle_end:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+le_att_same_type:
+	fetcht 1,mem_le_search_att_type_length
+	arg mem_le_search_att_type,rega
+le_att_check_same_common:
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	isub temp,null
+	nrtn zero
+	arg mem_le_cur_uuid ,regb
+	branch string_compare
+
+le_att_same_uuid:
+	fetcht 1,mem_le_search_uuid_length
+	arg mem_le_search_uuid,rega
+	branch le_att_check_same_common
+	
+	
+le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast
+
+le_send_auto_len_by_mem:
+	call get_contw
+	branch le_send_autolen
+	
+le_write_att_record:
+	call get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+le_write_att_record_common:
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy_fast
+	branch store_contw
+	
+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_fast
+	branch le_send_autolen
+	
+	
+le_send_att_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+
+le_send_att_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_NOTIFICATION,le_send_att_notify_continue
+	beq LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response_continue
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+	rtn
+
+le_send_att_notify_continue:
+	fetch 2,mem_cb_update_notify_continue
+	branch callback_func
+
+le_send_att_prepare_write_response_continue:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	fetcht 2,mem_prepare_write_offest
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+//	fetch 2,mem_module_hci_notify_start
+//	copy pdata,contru
+//	fetch 2,mem_prepare_write_offest
+//	iadd contru,contru //start + offset
+	arg mem_temp_prepare_write_request,rega
+	fetch 2,mem_prepare_write_offest
+	iadd rega,rega
+	iadd loopcnt,pdata
+	store 2,mem_prepare_write_offest //offset += len;
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	copy rega,contr
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_not_fill_l2cap_len
+	
+	
+le_send_att_prepare_write_response:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	add pdata,5,temp   //1byte opcode,2byte handle,2byte offset
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 18,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_prepare_write_offest
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg 0x02,type  //LLIC:start
+	//setarg 4
+	//store 2,mem_le_txcid // l2cap cid
+	//jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_le_l2cap // att op-code
+	fetch 2,mem_prepare_handle //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_le_prepare_write_req_offset 
+	istore 2,contw //offset
+//	fetch 2,mem_temp_prepare_write_request
+//	copy pdata,contru
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	arg mem_temp_prepare_write_request,contr
+	call memcpy_fast
+le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+
+le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	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:
+	fetch 2,mem_cb_update_notify_value
+	branch callback_func
+
+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 patch27_0,mem_patch27
+	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 patch27_1,mem_patch27
+	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
+le_send_non_l2cap1:
+	nsetflag blank,md,temp
+le_send_non_l2cap2:
+	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 patch27_2,mem_patch27
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	nbranch le_send_no_txlen,true
+	fetch 1,mem_le_txlen
+	rtn blank
+le_send_no_txlen:	
+	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 patch27_3,mem_patch27
+	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_continue,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
+le_parse0:
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	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
+	beq LL_PING_REQ,le_parse_ping_req
+	store 1,mem_le_ll_cur_opcode
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 2,mem_le_rxbuf+2
+	store 2,mem_le_l2cap_pdu_length
+	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_parse_continue_att:
+	jam LE_CONTINUE_FLAG_RX,mem_le_continue_flag
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,le_parse_l2cap_continue_write_request
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_l2cap_continue_prepare_write_request
+	beq ATTOP_WRITE_COMMAND,le_parse_l2cap_continue_write_command
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+
+le_parse_l2cap_continue_common:
+	fetch 1,mem_le_rxbuf+1
+	icopy regb
+	arg mem_le_rxbuf+2,rega
+	call le_writeatt_cb
+
+	fetch 1,mem_le_rxbuf+1
+	fetcht 2, mem_le_buff_len
+	iadd temp,pdata
+
+	store 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	rtn
+
+le_parse_l2cap_continue_write_command:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+le_parse_l2cap_continue_write_request:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_write_request_end
+
+le_parse_l2cap_continue_prepare_write_request:
+	fetcht 2,mem_prepare_write_len	
+	fetch 1,mem_le_rxbuf+1
+	icopy loopcnt
+	iadd temp,pdata
+	store 2,mem_prepare_write_len
+	
+	arg mem_temp_prepare_write_request,pdata
+	iadd temp,contw
+	arg mem_le_rxbuf+2,contr
+	call  memcpy_fast
+
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_prepare_write_request_end
+
+
+
+
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	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
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_parse_smp_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_parse_smp_dhkey_check
+endif
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+//	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
+	rtn
+
+
+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
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter
+ 	jam 0,mem_lpm_mode  
+	jam 30,mem_shutter_conn_update_timer		
+	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_device_option
+	bne dvc_op_shutter,le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+le_parse_terminate_ind_common:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+	
+le_parse_enc_req:
+	ifetch 8,contr
+	store 8,mem_le_rand
+	ifetch 2,contr
+	store 2,mem_le_ediv
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	call  le_xtype_fifo_in
+	jam FLAG_LE_ENC_START,mem_le_enc_state
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,load_device_list_mode_4_shutter
+	rtnne dvc_op_module
+	branch load_device_list_mode_4
+	
+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
+	call le_xtype_fifo_in
+	jam BT_EVT_LE_START_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+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:
+	jam FLAG_LE_ENC_PAUSE,mem_le_enc_state
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in	
+	jam BT_EVT_LE_PAUSE_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+	
+le_parse_pause_enc_rsp:
+	rtn
+
+le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+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
+	call le_xtype_fifo_in	
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_parse_smp_pairing_request_shutter
+	call le_check_master_support_secure_connect
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state
+	fetch 1,mem_le_preq_iocap
+	beq  FLAG_IOCAP_DISPlAYONLY,le_set_tk_0
+	beq  FLAG_IOCAP_DISPLAYYESNO,le_set_tk_0
+	beq  FLAG_IOCAP_NOINPUTNOOUTPUT,le_set_tk_0
+	fetch 1,mem_le_pairing_mode	
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,le_genernate_tk
+le_set_tk_0:
+	arg 0,pdata
+	store 4,mem_le_tk
+	rtn
+le_parse_smp_pairing_request_shutter:
+	jam 1,mem_shutter_key_data_flag
+	rtn
+	
+le_genernate_tk:
+	arg mem_le_tk,rega
+	copy rega,contw
+	arg 3,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_tk + 2
+	and_into 0x7,pdata
+	store 2,mem_le_tk + 2
+	jam BT_EVT_LE_TK_GENERATE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_check_master_support_secure_connect:
+	fetch 1,mem_le_preq_auth
+	rtnbit1  LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+	fetch 1,mem_le_pairing_mode
+	rtnbit0 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+	branch app_ble_disconnect	
+	
+	
+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:
+ifdef SECURE_CONNECTION
+	copy contr,rega
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_confirm_secure_passkey
+	copy rega,contr
+endif
+	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
+ifdef SECURE_CONNECTION
+le_parse_smp_pairing_confirm_secure_passkey:
+	copy rega,contr
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+	rtn
+endif	
+
+le_parse_smp_pairing_random:	
+ifdef SECURE_CONNECTION
+	copy contr,rega
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_parse_smp_pairing_random_sc
+	copy rega,contr
+endif
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+le_pairing_failed:
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	call le_xtype_fifo_in
+le_parse_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam BT_EVT_LE_PAIRING_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+ifdef SECURE_CONNECTION	
+le_parse_smp_pairing_random_sc:
+	arg mem_le_mrand,contw
+	copy rega,contr
+	call memcpy16	
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_random_sc_passkey
+	call function_g2
+//	jam LE_SC_STAT_RECEIVE_RANDOM,mem_le_secure_connect_state
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_hci_event_le_gkey
+	rtn
+	
+le_parse_smp_pairing_random_sc_passkey:
+	call function_f4_ca
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result	
+	arg mem_AES_CMAC_temp,rega
+	arg mem_le_rconfirm ,regb
+	arg 16,loopcnt
+	call string_compare
+	nbranch le_dhkey_check_fail,zero
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+endif
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam BT_EVT_LE_PAIRING_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	jam 1,mem_ltk_exists
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	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
+	
+
+
+ifdef SECURE_CONNECTION
+le_parse_smp_public_key:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	store 1,mem_le_public_length
+	copy pdata,loopcnt
+	arg mem_le_pubkey_remote_x_256,contw
+	increase 5,contr
+	branch memcpy_fast
+
+le_parse_smp_dhkey_check:
+	arg mem_sp_confirm_remote,contw
+	call memcpy16	
+	jam LE_SC_STAT_RECEIVE_DHKEY,mem_le_secure_connect_state
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn	
+endif	
+le_parse_smp_encryption_information:
+	arg mem_le_peer_ltk,contw
+	branch memcpy16
+	
+le_parse_smp_master_identification:
+	rtn
+	
+le_parse_smp_identity_information:
+	arg mem_le_irk,contw
+	call memcpy16
+	fetch 1,mem_le_conn_peer_addr_type
+	rtneq MASTER_PUBLIC_ADDR
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	rtn true
+	branch app_ble_store_reconn_info
+	
+le_parse_smp_identity_address_information:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+	
+le_parse_att_exchange_mtu_response:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_remote_mtu
+	rtn
+	
+le_parse_att_exchange_mtu_request:
+	call le_parse_att_exchange_mtu_response
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_request:
+	call le_get_search_handle_start_end_common
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+	
+le_parse_att_find_by_type_value_request:
+	call le_get_search_handle_start_end_common
+	ifetch 2,contr
+	store 2,mem_le_search_uuid
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -7,pdata
+	call le_get_search_common2
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_read_by_type_request:
+	call le_get_search_handle_start_end_common
+	call le_get_search_att_uuid
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+le_get_search_handle_start_end_common:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	rtn
+
+le_get_search_att_type:
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+le_get_search_common:	
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -5,pdata
+le_get_search_common2:		
+	istore 1,contw
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast	
+	
+le_get_search_att_uuid:
+	call store_contr
+	arg mem_le_search_uuid_length,contw
+	branch le_get_search_common
+
+
+
+	
+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_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_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_by_group_type_request:
+	call le_get_search_handle_start_end_common
+ 	call le_get_search_att_type
+
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_command:
+	call le_parse_att_write_common
+	branch le_check_long_packet_patch
+	
+le_parse_att_write_request:
+	call le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in	
+
+le_check_long_packet_patch:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	increase -3,pdata
+
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	storet 2,mem_le_buff_data_len_all
+	increase -3,temp
+	isub temp,null
+	rtn
+
+le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_write_common1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	rtn blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_write_common0,positive
+	copy pdata,loopcnt
+le_parse_att_write_common0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy_fast
+le_parse_att_write_common1:
+	arg mem_le_rxbuf+9,rega
+	branch le_writeatt_cb
+	
+
+le_parse_att_prepare_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	increase -2,temp
+	storet 2,mem_le_buff_data_len_all
+
+	fetch 1,mem_le_rxbuf+1
+	increase -9,pdata
+	store 2,mem_prepare_write_len
+	
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_prepare_write_request1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch  le_parse_att_prepare_write_request_end,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_prepare_write_request0,positive
+	copy pdata,loopcnt
+le_parse_att_prepare_write_request0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+le_parse_att_prepare_write_request1:
+	copy regb,loopcnt
+	arg mem_temp_prepare_write_request,contw
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+	arg mem_le_rxbuf+11,rega
+	fetch 2,mem_le_rxbuf+9
+	store 2,mem_le_prepare_write_req_offset
+	fetcht 2,mem_le_att_handle
+	storet 2,mem_prepare_handle
+
+	call le_writeatt_cb
+
+	fetch 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	nrtn zero
+le_parse_att_prepare_write_request_end:
+	jam ATTOP_PREPARE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_execute_write_request:
+	jam ATTOP_EXECUTE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+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:
+	jam 36,mem_le_ch_mapped
+le_adv_loop:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	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
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	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 patch28_1,mem_patch28
+	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 patch28_2,mem_patch28
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+le_parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	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 patch28_4,mem_patch28
+	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 patch28_5,mem_patch28
+	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 patch28_6,mem_patch28
+	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 patch28_7,mem_patch28
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	fetch 2,mem_ui_le_uuid_table
+	iforce 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:
+	call le_att_get_handle_ptr2
+	branch le_att_get_handle_ptr_found,zero
+	rtn
+	
+le_att_get_handle_ptr2:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_handle_loop1:
+	ifetch 2,contr
+	rtn blank
+	isub temp,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr	
+	ifetch 1,contr			// length  
+	iadd contr,contr
+	branch le_att_get_handle_loop1
+le_att_get_handle_ptr_found:
+	ifetch 1,contr
+	iadd contr,contr	
+	rtn	
+
+
+
+le_att_get_short_uuid_ptr:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_short_uuid_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 1,contr
+	iadd contr,contr
+	increase -2,contr
+	ifetch 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			 
+	iadd contr,contr
+	branch le_att_get_short_uuid_loop	
+
+
+
+le_att_get_handle_info_from_ptr:
+	fetch 2, mem_le_cur_attlist_start_ptr
+	copy pdata,contr
+	branch le_att_get_handle_info+1
+
+le_att_get_handle_info:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	copy temp,rega
+le_att_get_handle_loop:
+	ifetch 2,contr
+	branch le_att_unfind_handle,blank
+	isub rega,null
+	branch le_att_finded_handle, zero
+	ifetch 1,contr			// length  
+	iadd contr,contr	
+	ifetch 1,contr			//length 
+	iadd contr,contr
+	branch le_att_get_handle_loop
+le_att_unfind_handle:
+	setarg 1
+	rtn
+le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	arg mem_le_cur_uuid,contw
+	call memcpy_fast
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call store_contr
+	setarg 0
+	rtn
+
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_short_uuid_ptr
+	rtn blank
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,null
+	nbranch le_name_length_longer_than_att,positive
+	isub temp,temp
+	arg mem_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+	rtn
+le_name_length_longer_than_att:
+	copy pdata,loopcnt
+	arg mem_le_name,contr
+	branch memcpy_fast
+
+
+le_modified_name_adv:
+	arg mem_le_adv_data_len+32,regc
+	arg mem_le_adv_data,rega
+	call le_modified_name_adv_and_scan
+	setarg 0
+	setflag user,0,pdata
+	store 1,mem_pdatatemp
+	arg mem_le_scan_data_len+32,regc
+	arg mem_le_scan_data,rega
+	call le_modified_name_adv_and_scan
+	rtn user
+	fetch 1,mem_pdatatemp
+	branch assert,blank
+	rtn
+
+
+le_modified_name_adv_and_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call enable_usr
+	call clear_temp_block
+	arg 0,regb	//current length
+	arg mem_le_data_temp,contw
+	call le_modified_name_adv_loop
+	fetch 1,mem_le_name_len
+	add pdata,1,temp
+	iadd regb,rega	
+	increase 2,rega
+	sub rega,0x1f,null
+	nbranch le_modified_name_adv_and_scan_name_overflow,positive
+	istoret 1,contw		//store ble name length
+	arg 0x09,temp
+	istoret 1,contw		//store ble name type
+	iforce loopcnt
+	call memcpy_fast
+	copy rega,regb
+le_modified_name_adv_and_scan_store_data:
+	deposit regb
+	store 1,mem_le_data_len_temp
+	arg mem_le_data_len_temp,contr
+	setarg -32
+	iadd regc,contw
+	branch memcpy32
+
+le_modified_name_adv_and_scan_name_overflow:
+	call disable_usr
+	branch le_modified_name_adv_and_scan_store_data
+	
+le_modified_name_adv_loop:
+	ifetch 1,rega		//pdata:length
+	rtn blank			//length is zero,ending find
+	pincrease 1		//length += 1
+	ifetcht 1,contr		//pdata:type
+	sub temp,0x09,null
+	branch le_modified_name_adv_found_name,zero
+	iadd regb,regb	
+	copy rega,contr
+	iforce loopcnt
+	call memcpy_fast
+	copy contr,rega
+le_modified_name_adv_loop2:
+	deposit rega
+	isub regc,null
+	rtn positive
+	branch le_modified_name_adv_loop
+
+le_modified_name_adv_found_name:
+	iadd rega,rega
+	branch le_modified_name_adv_loop2
+
+
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+	
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	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 2,mem_cb_le_set_mult
+	call callback_func
+	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 patch29_6,mem_patch29
+	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
+	
+
+
+ifdef SECURE_CONNECTION
+
+le_secure_connect_sm:
+	fetch 1,mem_le_secure_connect_enable
+	rtneq 0
+	fetch 1,mem_le_secure_connect_flag
+	rtnne LE_SP_FLAG_COMMIT_256
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	jam SP_FLAG_STANDBY,mem_le_secure_connect_flag
+	fetch    1,mem_le_secure_connect_state
+	beq  LE_SC_STAT_RECEIVE_PUBLIC_KEY,le_sc_receive_public_key
+	beq LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,le_sc_wait_send_public_key
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,le_sc_send_public_key
+	beq LE_SC_STAT_RECEIVE_DHKEY,le_sc_receive_dhkey
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,le_sc_wait_confirm_gkey
+	beq  LE_SC_STAT_PASSKEY_WAIT_CONFIRM,le_sc_passkey_wait_confirm
+	rtn	
+
+
+le_sc_passkey_wait_confirm:
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+	fetch 4,mem_le_tk
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	branch le_sc_ready_send_pairing_confirm
+	
+le_sc_wait_confirm_gkey:
+	fetch 1,mem_le_sc_confirm_gkey_flag
+	jam FLAG_LE_SC_CONFRIM_NULL,mem_le_sc_confirm_gkey_flag
+	beq FLAG_LE_SC_CONFRIM_GKEY_OK,le_sc_confirm_gkey_ok
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_sc_confirm_gkey_ok:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_SMP_PAIRING_DHKEY_CHECK,mem_fifo_temp
+	branch le_xtype_fifo_in		
+
+le_sc_receive_dhkey:
+	fetch 1,mem_sp_dhkey_invalid
+	beq SP_KEY_VALID_256,le_dhkey_ready
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+
+le_dhkey_ready:
+	call function_f5
+//	arg mem_le_r,contw
+//	force 2,loopcnt
+//	call memset0
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok_passkey
+	call le_set_tk_0 
+le_dhkey_ready_common:
+	call function_f6_ea
+	arg mem_AES_CMAC_temp,rega
+	arg mem_sp_confirm_remote ,regb
+	arg 16,loopcnt
+	call string_compare
+	branch le_dhkey_check_ok,zero
+le_dhkey_check_fail:	
+	branch le_pairing_failed
+le_sc_confirm_gkey_ok_passkey:
+//	fetch 4,mem_le_tk
+//	store 4,mem_le_r
+	branch le_dhkey_ready_common
+	
+le_dhkey_check_ok:
+	jam 1,mem_ltk_exists
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,le_sc_confirm_gkey_ok
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok	
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_WAIT_CONFIRM_GKEY,mem_le_secure_connect_state	
+	rtn	
+
+le_sc_send_public_key:
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_sc_send_public_key_passkey
+	jam 0,mem_passkey_1bit
+le_sc_ready_send_pairing_confirm:
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+le_sc_send_public_key_passkey:
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+//	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+//	branch p_ng_event_le_get_passkey
+	jam 0,mem_authentication_passkey_times
+//	rtn
+	branch le_genernate_tk
+	
+le_sc_receive_public_key:
+//call ice_break
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	fetch 1,mem_le_sc_local_key_invalid
+	beq SP_KEY_VALID_256,le_public_key_ready
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_public_key_ready:
+	jam SP_KEY_INVALID,mem_sp_dhkey_invalid
+	call sp_dhkey_calc_256	
+	jam LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,mem_le_secure_connect_state	
+	rtn 
+//	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+//	branch le_xtype_fifo_in
+
+le_sc_wait_send_public_key:
+	call le_xtype_fifo_is_empty
+	branch le_public_key_ready_send,blank
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag	
+	rtn
+le_public_key_ready_send:
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+
+
+
+le_pairing_public_key_continue:
+	arg mem_le_pubkey_remote_x_256,pdata
+	fetcht 1,mem_le_public_length
+	iadd temp,contw
+//copy contw,rega
+	fetch 1,mem_le_rxbuf+1
+	copy pdata,loopcnt
+	iadd temp,temp
+	call memcpy_fast
+	storet 1,mem_le_public_length
+	copy temp,pdata
+//call ice_break
+	rtnne 64
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_RECEIVE_PUBLIC_KEY,mem_le_secure_connect_state
+	rtn
+le_parse_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	fetch 1,mem_le_public_length
+	bne 0,le_pairing_public_key_continue
+	branch le_parse_continue_att
+else	
+le_parse_continue:
+	branch le_parse_continue_att
+endif
+
+else
+le_disable:
+le_dispatch:
+le_xtype_fifo_in:
+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: ble fast connect receive/program/lmp.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/lmp.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/lmp.prog	(working copy)
@@ -0,0 +1,2504 @@
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	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:	
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	call lmo_fifo_check
+	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 patch2a_4,mem_patch2a
+  	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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	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
+	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_iocap_req:
+	call iocap_lmpext_load
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_common:
+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
+	rtn
+
+	
+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
+	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
+	nrtn 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
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	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_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
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	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:	
+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
+	branch sniff_exit
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	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
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	//fetch 1,mem_auth_enable
+	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_moudle:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	fetch 1,mem_pairing_auth
+	call load_device_list,blank
+	rtn	
+
+parse_lmp_au_rand:
+	call parse_lmp_au_rand_moudle
+	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
+	branch reject_lmp_packet
+
+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 authentication_ok_common
+	fetch 1,mem_ssp_enable
+	branch  pairing_success,blank
+	rtn
+
+	
+authentication_ok_common:
+	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
+	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
+	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:
+	branch accept_lmp_msg
+
+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:
+parse_lmp_preferred_rate:
+parse_lmp_max_power:
+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_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+
+parse_lmp_sniff_req_check_sniff_para:
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	fetcht 1,mem_lpm_mult
+	imul32 temp,pdata
+	arg 0x640,temp
+	isub temp,null
+//	branch lmp_reject_sniff,positive
+	rtn
+	
+parse_lmp_sniff_req:
+	call parse_lmp_sniff_req_check_sniff_para
+	branch lmp_reject_sniff,positive
+	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:
+parse_lmp_temp_key:
+parse_lmp_timing_accuracy_res:	
+parse_lmp_unit_key:	
+parse_lmp_use_semi_permanend_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
+	branch sniff_exit
+	
+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:
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,parse_lmp_accepted_simple_pairing_number_ssp_pin
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_accepted_simple_pairing_number_passkey
+parse_lmp_accepted_simple_pairing_number_common:
+	call check_localsm
+	rtn true
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+	call g_noninit_number_confirm
+	jam BT_EVT_BT_GKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_simple_pairing_number_common
+
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+	call check_localsm
+	rtn true
+	fetch 1,mem_authentication_passkey_times
+	beq 19,authentication_passkey_end
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+//	branch p_authentication_passkey
+
+authentication_passkey:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	fetch 6,mem_pin
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	rtn
+
+authentication_passkey_end:	
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	call parse_lmp_accepted_dhkey_check_common
+pairing_success:
+	fetch 1,mem_flag_pairing_state
+	rtn blank
+	jam FLAG_PAIRING_STATE_NOT_PAIRING,mem_flag_pairing_state
+	jam BT_EVT_BT_PAIRING_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_accepted_dhkey_check_common:
+	//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 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
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	fetch 1,mem_ssp_mode_flag
+	rtneq  SSP_MODE_PASSKEY_ENTRY_FLAG
+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
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_encapsulated_payload_all_accepted_get_passkey
+	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_get_passkey:
+	jam BT_EVT_BT_GET_PASSKEY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+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
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,number_comparison_mode
+number_comparison_successed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	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
+
+number_comparison_mode:
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,comparison_result
+	set1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,pdata
+	store 1,mem_flag_mode_ssp_pin
+	rtn
+	
+comparison_result:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	jam 0,mem_flag_mode_ssp_pin
+	branch parse_lmp_dhkey_check_reject
+
+	
+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*/
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+
+	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
+
+
+	
+	
+
+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 patch2b_0,mem_patch2b
+	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
+send_lmp0:
+	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_INCR_POWER_REQ,send_lmp_inc_power	
+	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_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_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
+	call send_lmp_follow
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	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_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:
+	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
+	branch send_lmp_follow
+
+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_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_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//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
+
+
+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 3,mem_sp_iocap_local
+         istore 3,contw
+	call send_lmp_reply
+	jam FLAG_PAIRING_STATE_PAIRING,mem_flag_pairing_state
+	fetch 1,mem_sp_iocap_local
+	beq DISPLAY_YESNO,responder_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_keyboard_only_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_keyboard_only_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output
+	rtn
+
+
+responder_iocap_display_yesno:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_display_yesno_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_display_yesno_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_display_yesno_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_display_yesno_initiator_iocap_no_input_no_output
+	rtn
+
+	
+responder_iocap_no_input_no_output:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_no_input_no_output_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_no_input_no_output_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+set_ssp_mode_justwork: 
+	jam SSP_MODE_JUST_WORK_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+set_ssp_mode_numeric_comparison: 
+	jam SSP_MODE_SSP_PIN_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:	
+responder_iocap_keyboard_only_initiator_iocap_display_only:	
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+set_ssp_mode_passkey: 
+	jam SSP_MODE_PASSKEY_ENTRY_FLAG,mem_ssp_mode_flag
+	rtn
+
+
+
+         
+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 */
+	arg 14,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_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	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_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_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_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_inc_power:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x00		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+
+send_lmp_setup_complete:
+	jam LMP_MAX_SLOT_REQ,mem_lmo_opcode2
+	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
+	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:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	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:
+	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
+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
+
+//blank : not full 
+lmo_fifo_check:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	rtn
+
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	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 patch2b_5,mem_patch2b
+	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 patch2b_6,mem_patch2b
+
+	call lmo_fifo_check
+	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: ble fast connect receive/program/module.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/module.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/module.prog	(working copy)
@@ -0,0 +1,1502 @@
+
+ifdef COMPILE_MODULE
+
+
+
+
+module_init:
+	rtn wake
+	jam 0,mem_module_task
+	call le_modified_name
+	call adc_init_data
+	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_conn_process
+	store 2,mem_cb_le_process
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg module_le_tx_update_notify_continue
+	store 2,mem_cb_update_notify_continue
+	setarg module_hci_event_receive_spp_data
+	store 2,mem_cb_receive_spp_data
+	setarg module_le_receive_data
+	store 2,mem_cb_att_write
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	call module_lpm_uart_init
+	call module_gpio_init
+	call check_module_disabled
+	call eeprom_load_reconn_info
+	branch module_hci_event_enter_standby_mode
+
+
+module_lpm_uart_init:
+	fetch 4,mem_module_uart_rx_buffer
+	hstore 4,core_uart_rsaddr
+
+	fetch 4,mem_module_uart_tx_buffer
+	hstore 4,core_uart_tsaddr
+
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+
+	fetch 2,mem_module_uart_rx_buffer
+	hstore 2,core_uart_rrptr
+	fetch 2,mem_module_uart_tx_buffer
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+
+	hfetch 4,core_gpio_pu0
+	set1 7,pdata
+	hstore 4,core_gpio_pu0
+	
+	call hci_init_common
+	fetch 1,mem_module_flag
+	isolate1 MODULE_FLAG_UART_FLOW_CONTROL,pdata
+	hfetcht 1,core_uart_ctrl
+	setflag true,4,temp
+	hstoret 1,core_uart_ctrl
+	rtn
+	
+
+
+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
+	branch gpio_config_input
+
+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:
+module_conn_process:
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	call module_control_air_flow
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_RECONN_FAILED,module_process_reconn_fail
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_SPP_CONNECTED,module_process_spp_connected
+	beq BT_EVT_SPP_DISCONNECTED,module_process_spp_disconnected
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_ENTER_SNIFF,module_process_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,module_process_exit_sniff
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_process_page_time_out
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_PAIRING_FAIL,module_hci_event_le_pairing_fail
+	beq BT_EVT_LE_PAIRING_SUCCESS,module_hci_event_le_pairing_success
+	beq BT_EVT_LE_START_ENC,module_hci_event_start_enc
+	beq BT_EVT_LE_PAUSE_ENC,module_hci_event_pause_enc
+	beq BT_EVT_LE_TK_GENERATE,module_hci_event_le_tk
+	beq BT_EVT_BT_GKEY_GENERATE,module_hci_event_gkey_generate
+	beq BT_EVT_BT_GET_PASSKEY,module_hci_event_passkey_entry_mode
+	beq BT_EVT_BT_PAIRING_FAIL,module_hci_event_bt_pairing_fail	
+	beq BT_EVT_BT_PAIRING_SUCCESS,module_hci_event_bt_pairing_success
+	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:
+	fetch 1,mem_flag_pairing_state
+	ncall module_hci_event_bt_pairing_fail,blank
+	call module_disconn_start
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	branch  module_spp_disconnected
+
+module_process_spp_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SPP_CONN,pdata
+	//set1 UI_STATE_SPP_NL_AUTO_DISCOVER,pdata
+	store 2,mem_ui_state_map
+	fetch 1,mem_module_spp_lpm_mult
+	store 1,mem_lpm_mult
+	call module_set_conn_pin_low
+	branch module_hci_event_spp_connect
+
+module_process_spp_disconnected:
+//	branch module_spp_disconnected
+module_spp_disconnected:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SPP_CONN ,pdata
+	store 2,mem_ui_state_map
+	branch module_hci_event_spp_disconnect
+
+
+module_process_enter_sniff:
+
+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 MOUDLE_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall module_set_unsniff_task_flag,blank    //*仰
+	branch app_bt_sniff_exit
+
+module_process_exit_sniff:
+	branch app_lpm_mult_disable
+ 	
+module_process_setup_complete:
+	branch module_conn_start
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	branch module_hci_event_le_disconnect
+
+module_process_evt_pincode_req:
+	branch  app_bt_set_pincode
+	
+
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 MOUDLE_TASK_UNSINFF,app_bt_enter_sniff
+	branch module_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	branch module_clear_unsniff_task_flag
+
+	
+module_process_le_conn:
+	call module_conn_start
+	fetch 1,mem_module_le_lpm_mult
+	store 1,mem_lpm_mult
+	branch module_hci_event_le_connect
+
+
+module_process_bb_conn:
+	jam 0,mem_flag_mode_ssp_pin
+	rtn
+
+module_process_page_time_out:
+module_process_reconn_fail:
+module_disconn_start:
+	call module_start_adv_discovery_by_command
+	branch module_set_conn_pin_high
+
+
+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 MOUDLE_STATE_BT_BIT,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,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_with_credit:
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	branch rfcomm_send_uih_without_payload
+
+module_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	hfetch 1,core_uart_status
+	bbit1 uart_status_rx_fifo_empty,module_process_with_credit  //rx no data
+	call get_uart_rrptr
+	ifetch 1,contru
+	bne 0x01,module_hci_in_excp
+	hfetch 2,core_uart_rxitems
+	sub pdata,2,null
+	rtn positive
+	ifetch 1,contru
+	store 1,mem_uart_opcode
+	ifetcht 1,contru
+	copy contru,rega
+	storet 1,mem_uart_len
+	add temp,3,temp
+	hfetch 2,core_uart_rxitems
+	isub temp,temp
+	nrtn positive
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	call module_hci_cmd_control
+	fetch 1,mem_module_temp_nl_discard_packet
+	rtneq HCI_NOT_DISCARD_PACKET
+	branch module_hci_dicard_packet //discard this packet
+
+module_hci_in_excp:
+	call module_hci_event_invalid_packet
+	call wait_uarttx
+	branch module_hci_release_except
+
+
+module_hci_release_except:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	call get_uart_rrptr
+	ifetch 1,contru
+	sub pdata,0x01,null
+	ncall module_hci_dicard_bytes,zero
+	nbranch module_hci_release_except,zero
+	ifetch 1,contru
+	rtneq HCI_CMD_SPP_DATA_REQ
+	rtneq HCI_CMD_SET_CREDIT_GIVEN
+	increase -1,contru
+	call module_hci_dicard_bytes
+	branch module_hci_release_except
+
+module_hci_dicard_packet:
+	call get_uart_rrptr
+	increase 2,contru
+	ifetch 1,contru
+	iadd contru,contru
+module_hci_dicard_bytes:
+	branch uartd_rxdone
+	
+/*********************HCI CONTROL*********************/
+
+module_hci_cmd_control:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_uart_opcode
+	beq HCI_CMD_SET_BT_ADDR_REQ,module_hci_cmd_set_bt_addr
+	beq HCI_CMD_SET_LE_ADDR_REQ,module_hci_cmd_set_le_addr
+	beq HCI_CMD_SET_VISIBILITY_REQ,module_hci_cmd_set_visibility	
+	beq HCI_CMD_SET_BT_NAME_REQ,module_hci_cmd_set_bt_name
+	beq HCI_CMD_SET_LE_NAME_REQ,module_hci_cmd_set_le_name
+	beq HCI_CMD_SPP_DATA_REQ,module_hci_cmd_receive_spp_data
+	beq HCI_CMD_LE_DATA_REQ,module_hci_cmd_receive_le_data
+	beq HCI_CMD_STATUS_IRQ,module_hci_cmd_inquire_status
+	beq HCI_CMD_SET_PAIRING_REQ,module_hci_cmd_set_pairing_mode
+	beq HCI_CMD_SET_PINCODE_REQ,module_hci_cmd_set_pincode	
+	beq HCI_CMD_SET_UARTCONTROL_REQ,module_hci_cmd_set_uart_control_mode
+	beq HCI_CMD_SET_UART_BAUD_REQ,module_hci_cmd_set_uart_baud
+	beq HCI_CMD_VERSION_REQ,module_hci_cmd_version_request
+	beq HCI_CMD_BT_DISCONNECT,module_hci_cmd_bt_disconnect
+	beq HCI_CMD_BLE_DISCONNECT,module_hci_cmd_ble_disconnect
+	beq HCI_CMD_SET_NVRAM_REQ,module_hci_cmd_set_nvram
+	beq HCI_CMD_CONFIRM_GKEY,module_hci_cmd_confirm_gkey
+	beq HCI_CMD_SET_CREDIT_GIVEN,module_hci_cmd_set_credit_given
+	beq HCI_CMD_AUTO_ADV_SCAN,module_hci_cmd_auto_adv
+	beq HCI_CMD_POWER_REQ,module_hci_cmd_power_request
+	beq HCI_CMD_POWER_SET,module_hci_cmd_power_set
+	beq HCI_CMD_PASSKEY_ENTRY,module_hci_cmd_passkey_entry
+	beq HCI_CMD_SET_GPIO,module_hci_cmd_set_gpio
+	beq HCI_CMD_READ_GPIO,module_hci_cmd_read_gpio
+	beq HCI_CMD_LE_SET_PAIRING,module_hci_cmd_le_set_pairing_mode
+	beq HCI_CMD_LE_SET_ADV_DATA,module_hci_cmd_le_set_adv_data
+	beq HCI_CMD_LE_SET_SCAN_DATA,module_hci_cmd_le_set_scan_data
+	beq HCI_CMD_LE_SEND_CONN_UPDATE_REQ,module_hci_cmd_le_send_conn_update_req
+	beq HCI_CMD_LE_START_PAIRING,module_hci_cmd_le_start_pairing
+	beq HCI_CMD_LE_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey
+	branch  module_hci_event_receive_invalid_cmd
+
+/*********************HCI COMMAND*********************/
+
+//command opcode 0x00
+module_hci_cmd_set_bt_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_lap
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x01
+module_hci_cmd_set_le_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_le_lap
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x02
+module_hci_cmd_set_visibility:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	call module_hci_event_receive_valid_cmd
+	ifetcht 1,contru
+	storet 1,mem_module_bluetooth_stauts_by_command
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_CONNECTED
+	rtnbit1 UI_STATE_BT_CONNECTED
+module_start_adv_discovery_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	nbranch moudle_start_adv_by_command,true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	and temp,0x03,pdata
+	store 1,mem_scan_mode
+moudle_start_adv_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	nrtn true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	isolate1 2,temp
+	branch app_ble_start_adv,true
+	branch app_ble_stop_adv
+
+//command opcode 0x03
+module_hci_cmd_set_bt_name:
+	fetch 1,mem_uart_len
+	sub pdata,32,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_local_name_length
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_local_name,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x04
+module_hci_cmd_set_le_name:
+	fetch 1,mem_uart_len
+	sub pdata,0x13,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_le_name_len
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_name,contw
+	call uart_copy_rx_bytes_fast
+	call le_modified_name
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x05
+module_hci_cmd_receive_spp_data:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_SPP_CONN,module_hci_event_receive_invalid_cmd
+	call app_check_sniff
+	branch module_hci_cmd_spp_exut_sniff,true
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+//	call p_nl_clear_last_transmite_clock
+	fetch 1,mem_remote_credits
+	rtn blank
+	fetch 2,mem_nl_rx_len_all
+	bne 0,module_hci_cmd_pass_init_ng_rx_len_all
+	fetch 1,mem_uart_len
+	store 2,mem_nl_rx_len_all
+
+	copy rega,contru
+//	ifetch 2,contru
+//	store 2,mem_nl_rx_handle
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+module_hci_cmd_pass_init_ng_rx_len_all:
+	call module_hci_cmd_get_current_packet_len_and_remain_len
+	branch spp_tx_rfcomm_packet
+module_hci_cmd_spp_exut_sniff:
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	branch module_exit_sniff
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+	call module_hci_cmd_get_current_patcket_len
+	fetch 2,mem_nl_rx_len_all
+	fetcht 2,mem_current_packet_length
+	isub temp,pdata
+	store 2,mem_nl_rx_len_all
+	rtn
+
+module_hci_cmd_get_current_patcket_len:
+	fetch 2,mem_nl_rx_len_all
+	arg DM_REFCOM_BUFF_LEN,temp
+	call not_greater_than
+	fetcht 2,mem_rfcomm_max_frame_size
+	call not_greater_than
+	fetcht 2,mem_pn_max_frame_size
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+
+module_hci_command_tx_spp_tx_complete:
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	jam HCI_CMD_SPP_DATA_REQ,mem_uart_opcode
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x09
+module_hci_cmd_receive_le_data:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BLE_CONNECTED
+	
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //if packet should not be discarded, set to "NL_HCI_NOT_DISCARD_PACKET"
+	fetch 1,mem_le_continue_flag
+	nrtn blank
+ 	fetch 2,mem_module_hci_notify_len
+ 	branch module_hci_cmd_gatt_notify_start_packet,blank
+ 	fetcht 2,mem_module_hci_notify_offset
+ 	isub temp,null
+	nrtn zero   //not finish sending yet.
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,regb
+	nbranch assert,positive //debug, wont be negative
+	nbranch module_hci_cmd_gatt_notify_seperate,zero
+	call module_hci_cmd_gatt_notify_clear_len
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	branch module_set_le_tx_data_flag
+//	branch module_hci_event_receive_valid_cmd
+
+
+module_hci_cmd_gatt_notify_seperate:
+	fetch 1,mem_module_flag
+	rtnbit1 MODULE_FLAG_BLE_SEND_MTU23
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	fetch 2,mem_module_hci_notify_len
+	iadd contru,contru
+	copy contru,rega
+	setarg 0x0901
+	istore 2,contru
+	add regb,2,pdata
+	istore 1,contru
+	fetch 2,mem_module_hci_notify_att
+	istore 2,contru
+	copy rega,pdata
+	hstore 2,core_uart_rrptr
+module_hci_cmd_gatt_notify_clear_len:
+	setarg 0
+	store 2,mem_module_hci_notify_len//finish sending, discard this packet.
+	rtn
+	
+module_hci_cmd_gatt_notify_start_packet:
+	copy rega,contru
+	ifetch 2,contru // att handle	
+	store 2,mem_module_hci_notify_att
+	fetch 1,mem_uart_len  //length
+	increase -2,pdata
+
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	branch module_hci_event_receive_invalid_cmd,blank
+	store 2,mem_module_hci_notify_original_len
+
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_hci_cmd_notify_start_packet_mtu23
+	
+	fetcht 2,mem_le_remote_mtu
+module_hci_cmd_gatt_notify_start_packet1:
+	fetch 2,mem_module_hci_notify_original_len	
+	call not_greater_than
+
+	store 2,mem_module_hci_notify_len
+	copy contru,pdata
+	store 2,mem_module_hci_notify_start
+	setarg 0
+	store 2,mem_module_hci_notify_offset
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+module_hci_cmd_notify_start_packet_mtu23:
+	arg 20,temp
+	branch module_hci_cmd_gatt_notify_start_packet1
+
+
+module_le_tx_update_data:
+	fetch 1,mem_le_notify_type
+	jam 0,mem_le_notify_type
+	nbranch module_le_send_md_notify,blank
+
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_module_hci_notify_offset
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_le_tx_no_continue
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+module_le_tx_no_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+module_le_send_att_notify_common:
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	call uart_copy_rx_bytes_fast
+	fetch 1,mem_module_flag
+	bbit0 MODULE_FLAG_BLE_SEND_MTU23,module_le_send_not_fill_l2cap_len
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	call module_le_check_if_send_once_more
+	fetcht 1,mem_le_arq
+	fetch 1,mem_module_le_md_flag
+	branch module_le_send_non_l2cap_last,blank
+	nsetflag blank,md,temp	
+	storet 1,mem_le_arq
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam 1,mem_le_notify_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap1
+
+module_le_send_non_l2cap_last:
+	call module_set_le_tx_data_flag
+	branch le_send_non_l2cap
+
+module_set_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+	
+module_clear_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+
+module_le_check_if_send_once_more:
+	jam 0,mem_module_le_md_flag
+	isub temp,null
+	rtn zero
+	nrtn positive
+	jam 1,mem_module_le_md_flag
+	rtn	
+
+module_le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch module_le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+module_le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+module_le_tx_update_notify_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	fetcht 2,mem_module_hci_notify_offset
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru //start + offset
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset //offset += len;
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes_fast
+	arg 1,type   // LLID : continue
+module_le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+	
+module_le_send_md_notify:
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,pdata
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+
+	fetcht 2,mem_module_hci_notify_len
+	iadd temp,pdata	
+	store 2,mem_module_hci_notify_len
+	
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru  
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset  
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	branch module_le_send_att_notify_common
+
+//command opcode 0x0b
+module_hci_cmd_inquire_status:
+	branch module_hci_event_status_res
+
+
+//command opcode 0x0c
+module_hci_cmd_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	beq PAIRING_PINCODE,module_hci_pairing_pincode_mode
+	beq PAIRING_JUSTWORK,module_hci_pairing_just_work_mode
+	beq PAIRING_PASSKEY,module_hci_pairing_passkey
+	beq PAIRING_CONFIRM,module_hci_pairing_numeric_comparison
+	branch module_hci_event_receive_invalid_cmd
+module_hci_pairing_pincode_mode:
+	call ssp_disable
+	jam 0,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_just_work_mode:
+	setarg SSP_MODE_JUST_WORK_IO_CAP_DATA
+module_hci_sspairing_mode:	
+	store 3,mem_sp_iocap_local
+	store 1,mem_ssp_mode_flag
+	call ssp_enable
+	jam 1,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_passkey:
+	setarg SSP_MODE_PASSKEY_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+module_hci_pairing_numeric_comparison:
+	setarg SSP_MODE_SSP_PIN_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+//command opcode 0x0d
+module_hci_cmd_set_pincode:
+	fetch 1,mem_uart_len
+	sub pdata,16,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x0e
+module_hci_cmd_set_uart_control_mode:
+	copy rega,contru
+	ifetch 1,contru
+	hfetcht 1,core_uart_ctrl
+	nsetflag blank,4,temp
+	hstoret 1,core_uart_ctrl
+ 	branch module_hci_event_receive_valid_cmd
+
+ 	
+//command opcode 0x0f
+module_hci_cmd_set_uart_baud:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+module_hci_cmd_set_uart_baud_ok:
+	store uart_baud_len,mem_baud
+	call module_hci_event_receive_valid_cmd
+	call wait_uarttx
+	branch uart_set_baud_by_mem
+
+
+//command opcode 0x10
+module_hci_cmd_version_request:
+	arg 2,rega
+	arg mem_soft_version_num,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+module_hci_event_set_cmd_send_response:
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x11
+module_hci_cmd_bt_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_bt_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_bt_disconnect
+
+	
+//command opcode 0x12
+module_hci_cmd_ble_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_ble_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_ble_disconnect
+
+
+
+
+//command opcode 0x26
+module_hci_cmd_set_nvram:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	fetch 2,mem_nv_data_ptr
+	icopy contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x28
+module_hci_cmd_confirm_gkey:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd	
+	ifetch 1,contru
+	fetcht 1,mem_flag_mode_ssp_pin
+	setflag blank,FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,temp
+	set1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,temp
+	storet 1,mem_flag_mode_ssp_pin
+
+	call module_hci_event_receive_valid_cmd
+
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,module_hci_cmd_spp_number_comparison_result_is1
+	rtn
+
+dhkey_not_accept:
+	jam 0,mem_flag_mode_ssp_pin
+	jam BT_CMD_DHKEY_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+
+module_hci_cmd_spp_number_comparison_result_is1:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	branch dhkey_not_accept	
+
+
+//command opcode 0x29
+module_hci_cmd_set_credit_given:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	ifetch 1,contru
+	fetcht 1,mem_credit_given
+	iadd temp,temp
+	storet 1,mem_credit_given
+	rtn
+
+	
+//command opcode 0x2a
+module_hci_cmd_auto_adv:
+	arg 0x40,loopcnt
+	arg mem_le_adv_data_len,contw
+	call clear_mem
+	setarg 0
+	store 1,mem_regb
+	copy rega,contru
+module_hci_cmd_auto_adv_loop:
+	copy contru,pdata
+	store 2,mem_regc
+	call module_hci_cmd_auto_adv_adv_analys
+
+	fetch 1,mem_regb
+	fetcht 1,mem_temp
+	increase 1,temp
+	iadd temp,pdata
+	store 1,mem_regb
+
+	sub pdata,32,null
+	nbranch module_hci_cmd_auto_adv_store_scan,positive
+module_hci_cmd_auto_adv_store_adv:
+	fetcht 1,mem_le_adv_data_len
+	setarg mem_le_adv_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_adv_data_len
+	iadd temp,pdata
+	store 1,mem_le_adv_data_len
+	branch module_hci_cmd_auto_adv_store_common
+module_hci_cmd_auto_adv_store_scan:
+	fetcht 1,mem_le_scan_data_len
+	setarg mem_le_scan_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_scan_data_len
+	iadd temp,pdata
+	store 1,mem_le_scan_data_len
+module_hci_cmd_auto_adv_store_common:
+	fetch 2,mem_contw
+	copy pdata,contw
+	fetch 2,mem_regc
+	copy pdata,contru
+
+	copy temp,loopcnt
+	call uart_copy_rx_bytes_fast
+
+	fetch 1,mem_uart_len
+	fetcht 1,mem_regb
+	isub temp,null
+	nbranch  module_hci_cmd_auto_adv_loop,zero
+	jam 0x1f,mem_le_adv_data_len
+	jam 0x1f,mem_le_scan_data_len
+	branch module_hci_event_receive_valid_cmd
+
+//block of adv len in mem_temp
+module_hci_cmd_auto_adv_adv_analys:
+	ifetch 1,contru
+	store 1,mem_temp
+	ifetch 1,contru
+	store 1,mem_rega
+	rtn
+
+
+//command opcode 0x2b
+module_hci_cmd_power_request:
+	arg 0,temp
+	arg 2,rega
+	fetch 2,mem_module_vdd_quotient
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x2c
+module_hci_cmd_power_set:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	store 1,mem_module_read_vdd_flag
+	setarg 0x00
+	store 2,mem_module_vdd_quotient
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x30
+module_hci_cmd_passkey_entry:
+	ifetch 4,contru
+	store 4,mem_pin
+	jam 4,mem_pin_length
+	jam 0,mem_authentication_passkey_times
+	call module_hci_event_receive_valid_cmd
+	branch authentication_passkey
+
+
+//command opcode 0x31
+module_hci_cmd_set_gpio:
+	fetch 1,mem_uart_len
+	bne 3,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	beq 0x00,module_set_gpio_input
+	beq 0x01,module_set_gpio_output
+	branch module_hci_event_receive_invalid_cmd
+module_set_gpio_input:
+	ifetcht 1,contru
+	ifetch 1,contru
+	nsetflag blank,7,temp
+	call gpio_config_input
+	branch module_hci_event_receive_valid_cmd
+
+module_set_gpio_output:
+	ifetcht 1,contru
+	call gpio_config_output0
+	ifetch 1,contru	
+	isolate1 0,pdata
+	call gpio_out_flag
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x32
+module_hci_cmd_read_gpio:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetcht 1,contru
+	call gpio_get_bit
+	setarg 0x0
+	nsetflag true,0,pdata
+	arg 1,rega
+	branch module_hci_event_set_cmd_send_response
+
+
+//command opcode 0x33
+module_hci_cmd_le_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	store 1,mem_le_pairing_mode
+	arg 0,temp
+	isolate1  LE_PAIRING_MODE_SECURE_CONNECT_BIT,pdata
+	setflag true,0,temp 
+	storet 1,mem_le_secure_connect_enable
+	beq LE_PAIRING_MODE_NONE, module_le_set_no_pairing
+	beq LE_PAIRING_MODE_LAGACY_JUSTWORK,module_le_set_pairing_mode_lagacy_just_work
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,module_le_set_pairing_mode_lagacy_passkey
+ifdef SECURE_CONNECTION
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,module_le_set_pairing_mode_secure_justwork
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_le_set_pairing_mode_secure_numeric
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,module_le_set_pairing_mode_secure_passkey
+endif
+	jam 0,mem_le_secure_connect_enable
+	branch module_hci_event_receive_invalid_cmd
+		
+ifdef SECURE_CONNECTION	
+module_le_set_pairing_mode_secure_justwork:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_secure_numeric:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	jam FLAG_IOCAP_DISPLAYYESNO,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_secure_passkey:	
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_displayonly
+endif
+module_le_set_no_pairing:
+	jam FLAG_LE_NO_BONDING_NO_MITM,mem_le_pres_auth
+module_le_set_noinputnooutput:	
+	jam FLAG_IOCAP_NOINPUTNOOUTPUT,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_lagacy_just_work:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_lagacy_passkey:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+module_le_set_displayonly:	
+	jam FLAG_IOCAP_DISPLAYONLY,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x34
+module_hci_cmd_le_set_adv_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_adv_data,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+	
+
+//command opcode 0x35
+module_hci_cmd_le_set_scan_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_scan_data,contw
+	call uart_copy_rx_bytes_fast	
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x36
+module_hci_cmd_le_send_conn_update_req:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_uart_len
+	bne 0x08,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	ifetch 8,contru
+	store 8,mem_le_interal_min
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x38
+module_hci_cmd_le_start_pairing:
+	fetch 1,mem_le_pairing_mode
+	branch module_hci_event_receive_invalid_cmd,blank
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_le_enc_state
+	bne FLAG_LE_ENC_NULL,module_hci_event_receive_invalid_cmd
+	call check_51cmd_le_smp_sec_req
+	branch module_hci_event_receive_valid_cmd	
+
+
+//command opcode 0x48
+module_hci_cmd_le_confirm_gkey:
+	ifetch 1,contru
+	beq 0x01,module_hci_cmd_le_confirm_gkey_fail
+	fetch 1,mem_le_secure_connect_state
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_RECEIVE_DHKEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey_ok
+	branch module_hci_event_receive_invalid_cmd		
+module_hci_cmd_le_confirm_gkey_ok:
+	jam FLAG_LE_SC_CONFRIM_GKEY_OK,mem_le_sc_confirm_gkey_flag
+	branch module_hci_event_receive_valid_cmd	
+	
+module_hci_cmd_le_confirm_gkey_fail:
+	call le_pairing_failed
+	branch module_hci_event_receive_valid_cmd	
+/*********************HCI EVENT*********************/
+
+module_hci_event_receive_invalid_cmd:
+	arg 1,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+module_hci_event_receive_valid_cmd:
+	arg 0,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+
+//event opcode 0x00
+module_hci_event_spp_connect:
+	jam  HCI_EVENT_SPP_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x02
+module_hci_event_le_connect:
+	jam  HCI_EVENT_LE_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x03
+module_hci_event_spp_disconnect:
+	jam  HCI_EVENT_SPP_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+	
+module_hci_event_le_disconnect:
+	jam  HCI_EVENT_LE_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+
+
+//event opcode 0x06
+//input:
+//	temp: success 0; fail 1
+//	rega:Response Content length
+//	regb:Response Content address
+module_hci_event_set_cmd:
+	fetch 1,mem_uart_opcode
+	copy pdata,regc
+	jam  HCI_EVENT_CMD_RES,mem_uart_opcode
+	setarg 2
+	iadd rega,pdata
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	istoret 1,contwu
+	copy rega,loopcnt
+	copy regb,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+//event opcode 0x07
+module_hci_event_receive_spp_data:
+//	call p_nl_clear_last_transmite_clock
+	jam HCI_EVENT_SPP_DATA_REP,mem_uart_opcode
+	fetch 1,mem_current_length
+	rtn blank
+	call module_hci_prepare_tx
+	fetch 1,mem_current_length
+	copy pdata,loopcnt
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x08
+module_hci_event_receive_le_data:
+	jam HCI_EVENT_LE_DATA_REP,mem_uart_opcode
+	fetch 1,mem_module_le_rx_data_len
+	icopy loopcnt
+	increase 2,pdata
+	call module_hci_prepare_tx
+	fetch 2,mem_module_le_rx_data_handle // Attribute handle
+	istore 2,contwu
+	fetch 2,mem_module_le_rx_data_address
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x09
+module_hci_event_enter_standby_mode:
+	jam HCI_EVENT_STANDBY_REP,mem_uart_opcode
+module_hci_event_enter_standby_mode_len0:
+	setarg 0
+	call module_hci_prepare_tx
+	branch uartd_send
+
+
+//event opcode 0x0a
+module_hci_event_status_res:
+	jam HCI_EVENT_STATUS_RES,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	
+	call module_hci_read_bt_status
+	
+	fetch 2,mem_ui_state_map	
+	arg UI_STATE_BT_HID_CONN,queue
+	qisolate1 pdata
+	setflag true,3,temp
+
+	arg UI_STATE_BLE_CONNECTED,queue
+	qisolate1 pdata
+	setflag true,5,temp	
+	
+	fetch 1,mem_ui_state_map
+	arg UI_STATE_BT_SPP_CONN,queue
+	qisolate1 pdata
+	setflag true,4,temp	
+	
+	istoret 1,contwu
+	branch uartd_send
+
+//	temp: bit0 3.0 inquiry;bit1 3.0 scan;bit2 ble adv;
+
+module_hci_read_bt_status:
+	arg 0,temp
+	fetch 1,mem_scan_mode
+	arg inq_scan_mode,queue
+	qisolate1 pdata
+	setflag true,0,temp
+	arg page_scan_mode,queue
+	qisolate1 pdata
+	setflag true,1,temp	
+
+	fetch 1,mem_le_adv_enable
+	arg 0,queue
+	qisolate1 pdata
+	setflag true,2,temp	
+	rtn
+
+
+
+//event opcode 0x0d
+module_hci_event_store_device:
+	jam HCI_EVENT_NVRAM_REP,mem_uart_opcode
+	fetch 1,mem_nv_data_number
+	mul32 pdata,34,pdata
+	icopy loopcnt
+	call module_hci_prepare_tx
+	fetch 2,mem_nv_data_ptr
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+
+//event opcode 0x0e
+module_hci_event_gkey_generate:
+	jam HCI_EVENT_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x0f
+module_hci_event_invalid_packet:
+	jam HCI_EVENT_INVALID_PACKET,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+//event opcode 0x10
+module_hci_event_passkey_entry_mode:
+	jam  HCI_EVENT_GET_PASSKEY,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x11
+module_hci_event_le_tk:
+	jam HCI_EVENT_LE_TK,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_le_tk
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x14
+module_hci_event_le_pairing_fail:
+	arg FLAG_BLE_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_le_pairing_success:
+	arg FLAG_BLE_PAIRING_SUCCESS,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_fail:
+	arg FLAG_BT_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_success:
+	arg FLAG_BT_PAIRING_SUCCESS,rega
+module_hci_event_pairing_completed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam HCI_EVENT_LE_PAIRING_STATE,mem_uart_opcode
+	setarg 2
+	call module_hci_prepare_tx
+	copy rega,pdata
+	istore 2,contwu
+	branch uartd_send
+
+//event opcode 0x15
+module_hci_event_pause_enc:
+	arg FLAG_EVENT_PAUSE_ENC,regc
+	branch module_hci_event_enc
+module_hci_event_start_enc:
+	arg FLAG_EVENT_START_ENC,regc
+module_hci_event_enc:
+	jam HCI_EVENT_LE_ENCRYPTION_STATE,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	branch uartd_send
+
+//event opcode 0x1d
+module_hci_event_le_gkey:
+	jam HCI_EVENT_LE_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//****************************************************************//
+	//module_hci_prepare_tx
+	//function:write hci packet header
+	//input: pdata-----packet length  (1byte)
+	//input: mem_uart_opcode------opcode (1byte)
+	//output:contwu --- pointer to packet payload
+	//use reg: contwu,pdata
+//****************************************************************//
+	
+module_hci_prepare_tx:
+	jam 0x02,mem_uart_cmd
+	store 1,mem_uart_len
+	storet 8,mem_temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	call module_set_mcu_wake_pin_high_delay
+	fetcht 8,mem_temp
+	call uartd_prepare_tx
+	fetch 3,mem_uart_cmd
+	istore 3,contwu
+	rtn
+
+
+
+module_set_mcu_wake_pin_high_delay:
+	call module_check_mcu_wake_pin_high
+	rtn true
+module_set_mcu_wake_pin_h_delay:
+	call module_set_mcu_wake_pin_high
+	fetch 4,mem_module_mcu_wake_delay_us
+	rshift2 pdata,pdata
+	rtn blank
+	branch delay
+module_set_mcu_wake_pin_high:
+	//call ice_break
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_active
+module_check_mcu_wake_pin_high:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_check_active
+module_set_mcu_wake_pin_low:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_inactive
+
+
+delay:
+	increase -1,pdata
+	nbranch delay,blank
+	rtn
+
+
+/*********************hci command end*********************/
+
+/*********************hci ble receive data start*********************/
+
+//rega is le rx data address
+//regb is le rx data length
+//mem_le_att_handle is write handle
+module_le_receive_data:
+	copy rega,pdata
+	store 2,mem_module_le_rx_data_address
+	copy regb,pdata
+	store 1,mem_module_le_rx_data_len
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_module_data_write_handle
+	isub temp,null
+	branch module_le_receive_data_ok,zero
+	fetcht 2,mem_module_data_write_handle2
+	isub temp,null
+	nrtn zero
+module_le_receive_data_ok:	
+	store 2,mem_module_le_rx_data_handle
+	branch module_set_le_rx_data_flag
+	
+
+module_le_transmit:
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_DATA,module_hci_event_send_le_data
+module_le_transmit1:
+	fetch 1,mem_module_flag
+	rtnbit0 MODULE_FLAG_BLE_RECEIVED_DATA	//not received le data form master
+	call module_hci_event_receive_le_data
+	branch module_clear_le_rx_data_flag
+
+module_hci_event_send_le_data:
+	jam HCI_CMD_LE_DATA_REQ,mem_uart_opcode
+	call module_hci_event_receive_valid_cmd
+	call module_clear_le_tx_data_flag
+	branch module_le_transmit1
+
+
+module_set_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+module_store_moule_flag:
+	store 1,mem_module_flag
+	rtn
+
+module_clear_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+	branch module_store_moule_flag
+
+
+/*********************hci ble receive data end*********************/
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	call module_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+
+
+
+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
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	call module_read_vdd_timer
+	branch module_bb_event_100ms_loop
+
+module_read_vdd_timer:
+	fetch 1,mem_module_read_vdd_flag
+	rtn blank
+	fetch 1,mem_module_read_vdd_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_module_read_vdd_count
+	nrtn blank
+	jam FLAG_MODULE_READ_VDD_COUNT,mem_module_read_vdd_count
+	call adc_set_mode
+	call vdd_calculate_by_mode
+	div pdata,0x64
+	call wait_div_end
+	quotient pdata
+	remainder temp
+	store 1,mem_module_vdd_quotient
+	storet 1,mem_module_vdd_remainder
+	rtn	
+	
+
+
+module_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+
+
+/*************at end*******************/
+		
+else
+module_init:
+module_process_idle:
+module_conn_process:
+module_process_bb_event:
+module_lpm_init:
+module_init_static_string:
+	branch assert
+endif
Index: ble fast connect receive/program/mouse.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/mouse.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/mouse.prog	(working copy)
@@ -0,0 +1,968 @@
+
+ifdef COMPILE_MOUSE
+mouse_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	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:
+	rtn wake
+	call lpm_disable_exen_output
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_mwhee_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_sbutton1_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	branch gpio_config_input
+
+	
+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_mwhee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mwhee_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_sbutton1_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton2_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:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call mouse_t_wheel_scan
+	call mouse_wheel_scan
+	fetch 1,mem_wheel_tb_new_pinlevel
+	fetcht 1,mem_wheel_tb_old_pinlevel
+	store 1,mem_wheel_tb_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	fetch 1,mem_mwheel_b_new_pinlevel
+	fetcht 1,mem_mwheel_b_old_pinlevel
+	store 1,mem_mwheel_b_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	rtn
+mouse_t_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_whee_ta_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_tb_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_wheel_tb_new_pinlevel
+	beq 0x01,p_mouse_t_wheel_scan_judge1
+	beq 0x02,p_mouse_t_wheel_scan_judge2
+	fetch 1,mem_wheel_tog
+	bbit1 7,p_mouse_t_wheel_scan_judge3
+	rtn
+
+p_mouse_t_wheel_scan_judge1:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge11
+	beq 3,p_mouse_t_wheel_scan_judge12
+	rtn
+p_mouse_t_wheel_scan_judge2:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge21
+	beq 3,p_mouse_t_wheel_scan_judge22
+	rtn
+p_mouse_t_wheel_scan_judge11:
+	jam 0x82,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge12:
+	jam 0x81,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge21:
+	jam 0x80,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge22:
+	jam 0x83,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge3:
+	fetch 1,mem_wheel_tog
+	set0 7,pdata
+	store 1,mem_wheel_tog
+	fetch 1,mem_wheel_tog
+	beq 0,p_mouse_t_wheel_scan_judge30
+	beq 1,p_mouse_t_wheel_scan_judge31
+	beq 2,p_mouse_t_wheel_scan_judge32
+	beq 3,p_mouse_t_wheel_scan_judge33
+	rtn
+p_mouse_t_wheel_scan_judge30:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge31:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge32:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_back
+	rtn
+p_mouse_t_wheel_scan_judge33:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_back
+	rtn
+p_mouse_wheel_t_forward:
+	fetch 1,mem_mouse_tz_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count1
+	fetch 1,mem_mouse_tz_data
+	increase 1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+p_mouse_wheel_t_back:
+	fetch 1,mem_mouse_tz_data_count
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count
+	fetch 1,mem_mouse_tz_data
+	increase -1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+
+
+mouse_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_mwheel_b_new_pinlevel
+	beq 0x01,mouse_wheel_scan_judge1
+	beq 0x02,mouse_wheel_scan_judge2
+	fetch 1,mem_mwheel_tog
+	bbit1 7,mouse_wheel_scan_judge3
+	rtn
+
+mouse_wheel_scan_judge1:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge11
+	beq 3,mouse_wheel_scan_judge12
+	rtn
+mouse_wheel_scan_judge2:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge21
+	beq 3,mouse_wheel_scan_judge22
+	rtn
+mouse_wheel_scan_judge11:
+	jam 0x82,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge12:
+	jam 0x81,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge21:
+	jam 0x80,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge22:
+	jam 0x83,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge3:
+	fetch 1,mem_mwheel_tog
+	set0 7,pdata
+	store 1,mem_mwheel_tog
+	fetch 1,mem_mwheel_tog
+	beq 0,mouse_wheel_scan_judge30
+	beq 1,mouse_wheel_scan_judge31
+	beq 2,mouse_wheel_scan_judge32
+	beq 3,mouse_wheel_scan_judge33
+	rtn
+mouse_wheel_scan_judge30:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge31:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge32:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_back
+	rtn
+mouse_wheel_scan_judge33:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_back
+	rtn
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count1
+	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_count
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	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
+
+	
+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
+mouse_send_data:
+	arg 9,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+bt_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_send_data
+p_le_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_fill_data_le
+
+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
+	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
+	branch le_send_packet
+
+	
+mouse_fill_data_le:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+
+mouse_motion:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	call sensor_motion
+	call mouse_sensor_sdio_low
+	call mouse_zwheel
+	call mouse_t_zwheel
+	branch mouse_key
+	
+sensor_motion:
+	fetch 1,mem_mouse_move_flag
+	call mouse_read_sensor_common,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 P3065_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_read_sensor3610_data:
+	call spi_ncs_enable
+	call mouse_read_sensor_common
+	arg 5,pdata
+	call twspi_read
+	store 1,mem_mouse_xy_h
+	arg 7,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_hi
+	arg 8,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_lo
+	branch spi_ncs_disable
+
+
+mouse_3610_smart_enable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	rtn positive
+	jam 0,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+mouse_3610_smart_disable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	nrtn positive
+	jam 1,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x8032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+
+
+mouse_read_sensor_common:
+	arg 3,pdata
+	call twspi_read
+	store 2,mem_mouse_x
+	arg 4,pdata
+	call twspi_read
+	store 2,mem_mouse_y
+	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_t_zwheel:
+	fetch 1,mem_mouse_tz_data
+	rtn blank	
+	store 1,mem_mouse_tz
+	jam 0,mem_mouse_tz_data
+	enable user
+	rtn
+mouse_check_key_gpio:
+	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
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_get_bit
+	setflag true,3,rega
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_get_bit
+	setflag true,4,rega
+	copy rega,pdata
+	rtn
+mouse_key:
+	call mouse_check_key_gpio
+	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 */
+mouse_sensor_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0x0a
+	call twspi_read
+	nop 1000
+	branch mouse_sensor_sdio_low
+
+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
+	//beq P3610_ID,mouse_init_p3610
+	beq P3065_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 1000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	rtn
+
+mouse_init_sensor_reset:
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_active
+	call delay_10ms
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_inactive
+	branch delay_10ms
+
+mouse_init_p3610:
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0d11
+	call sensor_write
+	setarg 0x041b
+	call sensor_write
+	setarg 0x041c
+	call sensor_write
+	setarg 0x0f1d
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+	
+	
+//input-rega
+set_sensor_reg:
+	setarg 0xba41
+	call sensor_write
+	nop 4000
+	setarg 0xff7f
+	call sensor_write
+	copy rega,pdata
+	call sensor_write
+	setarg 0x007f
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+extsign_bit3:
+	rtnbit0 3
+	arg 0xf0,temp
+	ior temp,pdata
+	rtn
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	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
+	nrtn user
+	call mouse_no_data_timer_init
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+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
+	call mouse_no_data_timer_init
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	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 8,mem_whee_ta_data_gpio
+	istore 8,contw
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	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
+	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
+	call mouse_check_mouse_state_timer
+	branch mouse_bb_event_100ms_loop
+
+mouse_check_mouse_state_timer:
+	fetch 1,mem_mouse_statue_led_timer
+	rtn blank
+	pincrease -1
+	store 1,mem_mouse_statue_led_timer
+	nrtn blank
+	branch mouse_devce_led_off
+	
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	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
+	branch app_bt_enter_sniff
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_ADV,mouse_start_discovery_norandom
+	random pdata					//random ble addr
+	store 1,mem_le_lap+1
+mouse_start_discovery_norandom:
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+//mosue up led
+
+mouse_check_mouse_statue:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	fetch 1,mem_sensor_squal_reg
+	call sensor_read
+	beq 0x0,mouse_statue_up
+	rtn
+	//branch p_mouse_devce_led_off
+mouse_devce_led_off:
+	fetcht 1,mem_device1_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device2_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_inactive
+mouse_statue_up:
+	fetch 1,mem_reconn_mode
+	rtn blank
+	jam 0,mem_reconn_mode
+	jam 60,mem_mouse_statue_led_timer         // led on 6s
+	call mouse_devce_led_off
+	fetch 1,mem_device_flag
+	beq 0x01,mouse_device1_led_on  	//device_1
+	beq 0x02,mouse_device2_led_on		//device_2
+	beq 0x03,mouse_device3_led_on		//device_3
+	rtn
+mouse_device1_led_on:
+	fetcht 1,mem_device1_led_gpio
+	branch gpio_out_active
+mouse_device2_led_on:
+	fetcht 1,mem_device2_led_gpio
+	branch gpio_out_active
+mouse_device3_led_on:
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_active
+	
+
+
+else
+mouse_init:
+	branch assert
+
+endif
+
+
+
Index: ble fast connect receive/program/patch.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/patch.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/patch.prog	(working copy)
@@ -0,0 +1,858 @@
+ifdef PATCH
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_3,p_main_loop
+	beq patch10_6,p_shutdown_radio
+	beq patch11_2,p_set_freq_tx
+	beq patch11_3,p_initialize_radio_cont	
+	beq patch16_4,p_app_init
+	branch assert
+	
+patch_ext:
+	beq patch20_3,p_le_master_dispatch_end
+	beq patch23_1,p_le_transmit
+	beq patch25_3,p_le_scan
+	beq patch25_6,p_le_conn
+	beq patch26_2,p_le_prepare_smp1
+	beq patch26_3,p_le_prepare_att
+	beq patch27_6,p_le_parse_att
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3b_0,p_shutter_init_end
+	beq patch3b_1,p_shutter_le_bb_event_100ms_loop
+	beq patch3b_4,p_shutter_le_key_process
+	beq patch3e_7,p_check_51cmd_once
+	branch assert
+
+p_main_loop:
+	arg uart_rx_timer,queue
+	call timer_check
+	ncall p_main_loop_next,blank
+	call p_uart_send_data_timer_init
+	call p_le_parse_att
+p_main_loop_next:
+	branch main_loop+2
+
+p_uart_send_data_timer_init:
+	setarg TIMER_UART_SEND_DATA_DELAY
+	arg uart_rx_timer,queue
+	branch timer_init
+
+p_le_prepare_smp1:
+	fetch 1,mem_le_l2cap
+p_le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,p_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            
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+endif
+	branch assert
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist2
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+p_app_init:
+	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_shutter,p_shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+
+p_shutter_init:
+	rtn wake	
+	call init_shutter_le_att_list
+	arg 135,loopcnt
+	arg mem_shutter_le_att_list+230,contw
+	arg mem_shutter_att_list_patch,contr
+	call memcpy
+	call shutter_init_param	
+
+	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_init
+
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg p_scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+
+	call p_shutter_uart_init
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call p_shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	branch shutter_init0+5
+
+p_shutter_init_end:
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH,p_shutter_le_hard_switch_power_on_signal
+	branch shutter_init0+9
+
+p_shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+p_in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch p_in_poweron_hard_switch_led,blank
+p_shutter_le_soft_switch_power_on_signal:
+	jam ON,mem_le_scan_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	branch p_shutter_le_fast_scan
+	
+
+p_shutter_le_fast_scan:
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam 0,mem_shutter_key_data_flag_1
+	jam ON,mem_le_scan_enable
+	setarg mem_fast_adv_led_style
+	branch shutter_ui_led_send
+
+p_le_scan:
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	branch le_create_conn,zero
+	branch p_le_addr_compare
+
+p_le_addr_compare:
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_slave_peer_addr
+	isub temp,null
+	nrtn zero
+	fetch 6,mem_le_plap
+	store 6,mem_app_peer_addr 	
+	jam 28,mem_le_conn_interval
+	setarg 0x100
+	store 2,mem_le_conn_superto
+	jam OFF,mem_le_scan_enable
+	jam 1,mem_le_conn_state
+	branch app_ble_start_conn
+
+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_LE_START_CONN,p_check_51cmd_le_start_con
+	branch check_51cmd_once+9
+p_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
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_RESPONSE,p_le_parse_att_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_parse_att_handle_value_notify
+	rtn
+
+p_le_parse_att_handle_value_notify:
+	branch p_shutter_uart_tx_prepare
+	
+
+p_le_parse_att_write_response:
+	fetch 1,mem_le_send_write_request_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_send_write_request_count
+	beq 1,p_le_att_send_write_request1
+	beq 0,p_le_att_send_write_request0
+	rtn
+	
+p_le_att_send_write_request1:
+	setarg 0x27
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_att_send_write_request0:
+	setarg 0x60
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+p_le_prepare_att:
+ 	fetch 1,mem_le_l2cap
+	beq ATTOP_WRITE_REQUEST,p_le_send_att_write_request
+	branch le_prepare_att+5
+
+p_le_send_att_write_request:
+// 	fetch 1,mem_le_work_data_send_flag
+//	branch p_le_send_att_write_request_end,blank
+	
+/*
+//	call shutter_le_tx_buff_unuse
+//	call p_shutter_le_queue_get
+//	nrtn user
+//	disable user
+	copy pdata,contr						//handle
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	storet 1,mem_le_handle_data_len
+	ifetch 2,contr
+	store 2,mem_le_notify_handle
+	arg mem_le_handle_data,contw
+	call memcpy
+	*/
+p_le_send_att_write_request_end:
+  	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
+
+
+p_scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+p_le_conn:
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 1,mem_le_conn_state
+	//jam 0x12,mem_le_xtype_fifo+4
+	jam 1,mem_enable_key_scan
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+	call le_create_conn+14
+	rtn
+
+p_le_master_dispatch_end:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call p_le_master_sm
+	disable master
+	rtn
+
+	
+p_le_master_sm:
+ 	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,p_le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,p_le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,p_le_data_wait_write_res1
+	rtn
+
+p_le_data_send_write_req:
+	setarg 0x1a
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	rtn
+	
+p_le_data_wait_write_res:
+	jam CONN_SM_WAIT_WRITE_RES1,mem_le_conn_sm
+	jam ATTOP_EXCHANGE_MTU_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+p_le_data_wait_write_res1:
+	rtn
+
+p_scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 2,mem_le_send_write_request_count
+	jam 0,mem_le_conn_state
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call p_shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call p_shutter_le_fast_scan
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+
+p_shutter_le_queue_init:
+	jam 0,mem_queue_ele_num_patch
+	setarg mem_queue_start_patch
+	store 2, mem_queue_read_patch
+	store 2, mem_queue_write_patch
+	rtn
+//end
+
+p_shutter_le_queue_clear:
+	branch p_shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+p_shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	compare  QUEUE_ELE_COUNT_PATCH,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write_patch
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num_patch
+	increase 1,pdata
+	store 1, mem_queue_ele_num_patch
+	
+	setarg mem_queue_write_patch
+	branch p_shutter_le_queue_increase
+
+//pdata
+p_shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end_patch,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH_PATCH,pdata
+	isub temp,null
+	nbranch p_shutter_le_queue_put_end,positive
+	setarg mem_queue_start_patch
+p_shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+p_shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num_patch
+	increase -1,pdata
+	store 1, mem_queue_ele_num_patch
+
+	fetch 2,mem_queue_read_patch
+	store 2,mem_queue_temp_patch
+
+	setarg mem_queue_read_patch
+	call p_shutter_le_queue_increase
+	fetch 2,mem_queue_temp_patch
+	rtn
+
+p_shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read_patch
+	rtn
+
+p_shutter_le_key_process:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+//	fetch 1,mem_le_conn_state
+//	rtn blank
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutter_le_fast_scan
+	call shutter_shutter_cancel_key_shake
+	branch p_in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+p_shutter_le_key_lp1:
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall p_shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch p_shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+p_in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+p_shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch p_in_le_key_is_release,blank
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_press
+	beq 1,p_in_le_send_key1_press
+	beq 2,p_in_le_send_key2_press
+	beq 3,p_in_le_send_key3_press
+p_in_le_send_lable:
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+p_in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call p_shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch p_in_le_send_lp1,zero
+	branch p_le_send_packet
+//function end
+p_le_send_packet:
+ 	call p_shutter_le_queue_read_point
+	nrtn user
+	disable user
+//	force 0x0013,temp
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+
+p_in_le_key_is_release:
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_rel
+	beq 1,p_in_le_send_key1_rel
+	beq 2,p_in_le_send_key2_rel
+	beq 3,p_in_le_send_key3_rel
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_press:
+	jam 0x01,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_press:
+	jam 0x02,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_press:
+	jam 0x01,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_press:
+	jam 0x02,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+////////////////////////check sum////////////////////////
+//loopcnt = sum number,contr = ptr
+p_calc_check_sum_start:
+	arg 0,rega
+p_calc_check_sum_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_calc_check_sum_loop
+p_calc_check_sum_and:
+	and rega,0xff,pdata
+	rtn
+
+	
+p_shutter_le_bb_event_100ms_loop:
+ //      call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+//	call p_shutter_le_sleep_timer
+//	call shutter_ui_button_timeout_timer
+//	call p_shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+//	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop	
+
+p_shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,p_shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+/*
+p_shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	branch shutter_shutter_power_off_end	*/
+	
+
+p_shutter_uart_init:
+	hjam 0x4,core_gpio_sel1	//IO
+	hfetch 4,core_gpio_pu0	//IOΪUART
+	set1 7,pdata				//gpio7
+	hstore 4,core_gpio_pu0
+
+	hjam 0x01,core_uart_clksel	//ѡUARTʱ48M
+	setarg mem_shutter_rx_buf	//Ring Buffer
+	hstore 2,core_uart_rsaddr	//RX buffer ʼַ
+	setarg mem_shutter_rx_buf_end
+	hstore 2,core_uart_readdr	//RX bufferַ
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_tsaddr	//TX bufferʼַ
+	setarg mem_shutter_tx_buf_end
+	hstore 2,core_uart_teaddr	//TX bufferַ
+	setarg mem_shutter_rx_buf
+	hstore 2,core_uart_rrptr	//RX bufferָ
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_twptr	//TX bufferдָ
+	hstore 2,core_uart_trptrp 	//TX bufferָ
+
+	setarg uart_baud_115200		//ò
+	hstore 2,core_uart_baud
+	
+	hfetch 2,core_clkoff		//core_clkoff(0x8050)ĵ15λ,ʹUARTʱ
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	hjam 0x81,core_uart_ctrl //8bitsУ顢ģʽ
+	rtn
+
+p_shutter_uart_tx_prepare:
+	fetch 7,mem_le_rxbuf+9
+	store 7,mem_uart_mouse_data_buff+3
+p_shutter_uart_tx_prepare_next:	
+	jam 0x02,mem_uart_mouse_data_buff
+	jam 0x29,mem_uart_mouse_data_buff+1
+	jam 0x08,mem_uart_mouse_data_buff+2
+	
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	arg 0x0b,loopcnt
+	arg mem_uart_mouse_data_buff,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+	
+p_gpio_set_before_lpm_common:
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_set_freq_tx:
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+p_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 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_le_conn_state
+//	beq 0,p_txon_scan
+	beq 0,p_set_tx_power_5db
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_set_tx_power_0db
+	bbit1 TX_POWER_3DB,p_set_tx_power_3db	
+	bbit1 TX_POWER_5DB,p_set_tx_power_5db
+	bbit1 TX_POWER_f3DB,p_set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,p_set_tx_power_f5db
+p_set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_txon_scan:
+	hjam 0xc0,0x956
+	hjam 0xd8,0x955
+	rtn
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+p_letx_setfreq:
+	branch p_txon,match
+	branch letx_setfreq0
+
+p_shutdown_radio:
+	branch p_shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutdowm_radio_scan
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_shutdown_radio_0db
+	bbit1 TX_POWER_3DB,p_shutdown_radio_3db
+	bbit1 TX_POWER_5DB,p_shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,p_shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,p_shutdown_radio_f5db
+p_shutdown_radio_5db:	
+p_shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+p_shutdown_radio0:
+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	
+
+p_shutdown_radio_f5db:
+p_shutdown_radio_f3db:
+p_shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch p_shutdown_radio0
+p_shutdowm_radio_scan:
+	hjam 0xd0, 0x955
+	hjam 0xc0, 0x956
+	rtn
+
+
+p_initialize_radio_cont:
+	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_dpll,core_clksel
+	nop 1
+	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	
+
+endif
+
Index: ble fast connect receive/program/peripherals.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/peripherals.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/peripherals.prog	(working copy)
@@ -0,0 +1,2090 @@
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	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
+	
+// input read reg number: pdata 
+//output reg data: pdata
+sensor_read:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_read
+	copy pdata,regb
+	call spi_ncs_disable
+	nop 100
+	copy regb,pdata
+	rtn
+// input write reg number: pdata 
+sensor_write:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_write
+	call spi_ncs_disable
+	nop 100
+	rtn
+//spi gpio init .
+//0xff :disable spi ncs gpio init
+spi_ncs_gpio_init:
+	fetch 1,mem_spi_ncs_gpio
+	rtneq 0xff
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_config_output
+
+//nsc gpio ouput low
+spi_ncs_enable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_active
+
+//ncs gpio output high
+spi_ncs_disable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_inactive
+
+// input write reg number: regb 
+twspi_write:
+	branch spid_write_reg
+	
+// input read reg number: regb 
+//output reg data: pdata
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	call clear_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_iic_eeprom_2k,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+	branch loadcode_hci
+loadcode_iic_eeprom_2k:
+	call set_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic_eeprom_2k,true	// crc error, try again
+loadcode_hci:
+	force regidx_key,regext_index
+	call aes_clear
+	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
+
+
+loadcode_iic_by_eeprom:
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	branch load_storage
+
+
+
+/* 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
+
+
+
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	fetch 1,mem_spi_init_clk
+	hstore 1,core_spid_ctrl	// A7530 should at least 34, or write fail
+	fetch 1,mem_spi_init_delay_time
+	hstore 1,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 patch2f_7,mem_patch2f
+	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 patch30_0,mem_patch30
+	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 tx length
+rega is points to tx buffer
+regb is points to rx buffer
+temp is rx length
+*/
+iicd_read_data:
+	hstore 2,core_iicd_txlen
+	deposit rega
+	hstore 2,core_iicd_txaddr	
+	deposit regb
+	hstore 2,core_iicd_rxaddr
+	deposit temp	
+	hstore 2,core_iicd_rxlen
+	arg 1,temp
+	nsetflag blank,1,temp
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+
+set_eeprom_size_2k:
+	set1 mark_eeprom_size,mark
+	jam 0x08,mem_eeprom_block_size
+	rtn
+
+clear_eeprom_size_2k:
+	set0 mark_eeprom_size,mark
+	jam 0x20,mem_eeprom_block_size
+	rtn
+
+
+iicd_read_eep_data_size_2k:
+ 	fetch 1,mem_eeprom_base
+	iadd regb,pdata
+	store 1,mem_addr_mi
+	branch iicd_read_eep_size_2k
+
+iicd_read_eep_size_2k_lcadcode:
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	store 1,mem_addr_mi
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr:pdata
+iicd_read_eep_size_2k:
+ 	setarg 3
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+2
+	branch iicd_read_eep_common
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_data_size_2k
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	nop 30000
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+iicd_read_eep_common:	
+	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
+	bmark1 mark_eeprom_size,iicd_read_eep_load_code_size_2k
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+iicd_read_eep_load_code_size_2k:
+	fetch 1,mem_addr_mi
+	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:
+	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 patch30_3,mem_patch30
+	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 patch30_4,mem_patch30
+	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
+
+iicd_write_eep_size_2k:
+	increase 2,temp
+	hstoret 2,core_iicd_txlen
+	increase -2,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+//	byteswap pdata,pdata
+	istore 1,contw
+	branch iicd_write_eep_common
+
+	/* 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 patch30_5,mem_patch30
+	nop 30000
+	bmark1 mark_eeprom_size,iicd_write_eep_size_2k
+	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
+iicd_write_eep_common:	
+	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
+	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_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+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
+
+uart_copy_tx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_tx_8_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_tx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_tx_4_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_tx_bytes
+
+uart_tx_8_bytes:
+	ifetch 8,contr
+	istore 8,contwu
+	rtn
+
+uart_tx_4_bytes:
+	ifetch 4,contr
+	istore 4,contwu
+	rtn
+
+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_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_rx_8_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_rx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_rx_4_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_rx_bytes
+
+uart_rx_8_bytes:
+	ifetch 8,contru
+	istore 8,contw
+	rtn
+
+uart_rx_4_bytes:
+	ifetch 4,contru
+	istore 4,contw
+	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
+
+
+/* ===================== eeprom data ======================= */
+
+check_51cmd_update_device_record:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	call check_nvram
+	call init_device_list,zero
+	call nvram_find_addr_from_bd_list
+write_device_record:
+	fetch 1,mem_nv_data_number
+	icopy regc
+	fetcht 2,mem_nv_data_ptr
+	storet 2,mem_list_item_ptr
+write_device_loop_find:
+	copy regc,pdata
+	branch module_hci_event_store_device,blank  //EEPROM
+	increase -1,regc
+	copy temp,rega
+	ifetch 1,rega
+	fetcht 1,mem_select_list_item
+	isub temp,null
+	call set_index_finded_device,zero
+	branch write_device_loop_find0,positive
+	ifetch 1,rega
+	increase 1,pdata
+	istore 1,rega
+write_device_loop_find0:
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	branch write_device_loop_find
+
+set_index_finded_device:
+	setarg 0
+	istore 1,rega
+	fetch 1,mem_temp_reconn_record
+	istore 1,contw	
+	bne REC_3_MODE,set_index_finded_device_ble_mode
+	arg mem_link_key,regb
+set_index_find_device_MASTER_ADDR:
+	ifetch 6,contr
+	istore 8,contw
+	setarg 0
+	istore 8,contw
+	copy regb,contr
+store_rec_data_common:
+	call memcpy16
+	force 1,null
+	rtn
+
+set_index_finded_device_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_IRK
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_EDIV
+	arg mem_le_ltk,regb
+	branch set_index_find_device_MASTER_ADDR
+
+set_index_finded_device_IRK:
+	arg mem_le_irk,contr
+	call memcpy16
+store_ble_rec_data_common:
+	arg mem_le_ltk,contr
+	branch store_rec_data_common
+
+set_index_finded_device_EDIV:
+	arg mem_le_rand,contr
+	call memcpy16
+	branch store_ble_rec_data_common
+
+
+nvram_find_addr_from_bd_list:
+	call disable_usr
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,find_addr_from_bd_list_SPP_mode
+//	bbit1 UI_STATE_BLE_CONNECTED,find_addr_from_bd_list_ble_mode
+find_addr_from_bd_list_ble_mode:
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,find_addr_from_bd_list_static_addr
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch find_addr_from_bd_list_static_addr,true
+	compare 0x40,pdata,0xc0
+	branch find_addr_from_bd_list_random_addr,true
+	compare 0x00,pdata,0xc0
+	branch find_addr_from_bd_list_random_non_resolvable_private_address,true
+find_addr_from_bd_list_static_addr:
+	jam REC_4_MODE_STATIC_ADDRESS,mem_temp_reconn_record
+	fetch 6,mem_le_plap
+	branch find_addr_from_bd_list_common
+	
+find_addr_from_bd_list_random_non_resolvable_private_address:	
+	jam REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+
+//input :pdata EDIV and rands
+find_addr_from_bd_list_random_addr:
+	jam REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+	
+//input :pdata EDIV and rands
+find_addr_from_bd_list_SPP_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	jam REC_3_MODE,mem_temp_reconn_record
+	fetch 6,mem_plap
+find_addr_from_bd_list_common:
+	store 6,mem_temp_reconn_record+1
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease 1
+	store 2,mem_list_item_ptr
+	storet 1,mem_select_list_item
+	fetch 1,mem_nv_data_number
+	icopy regc
+nvram_find_addr_from_list:
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call nvram_find_addr_from_list_compare
+	rtn user
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	increase -1,temp
+	ifetch 1,temp
+	store 1,mem_select_list_item
+	increase -1,regc
+	nbranch nvram_find_addr_from_list,zero
+	fetch 1,mem_nv_data_number
+	pincrease DECREASED_ONE
+	store 1,mem_select_list_item
+	rtn
+nvram_find_addr_from_list_compare:
+	fetch 1,mem_temp_reconn_record
+	bne REC_3_MODE,find_addr_from_list_compare_ble_mode
+find_master_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+find_addr_from_list_compare_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,find_irk_form_list_compare
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,find_ediv_form_list_compare
+	branch find_master_addr_from_list_compare
+
+find_irk_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	arg mem_le_prand,contw
+	arg 16,loopcnt
+	call clear_mem
+	fetch 3,mem_le_plap+3
+	store 3,mem_le_prand
+	call genernate_master_MacAddress
+	fetch 2,mem_le_aes_128+13
+	byteswap pdata,pdata
+	lshift8 pdata,temp
+	ifetch 1,contr
+	iadd temp,pdata
+	fetcht 3,mem_le_plap
+	isub temp,null
+	branch enable_usr,zero
+	rtn
+
+
+genernate_master_MacAddress:
+	arg mem_le_prand ,contr
+	call load_data128
+//	arg mem_le_irk,contr
+	ifetch 1,rega
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_aes_128,contw
+	branch store_aes_result
+
+find_ediv_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	copy contr,rega
+	add contr,8,regc
+	arg mem_le_rand,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	copy regc,rega
+	arg mem_le_irk,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+check_nvram:
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease NV_DATA_LEN
+	ifetch 1,pdata
+	isub temp,null
+	rtn
+
+init_device_list:
+	fetch 1,mem_nv_data_number
+	icopy loopcnt
+	fetcht 2,mem_nv_data_ptr
+	setarg 0
+init_device_list_loop:
+	istore 1,temp
+	increase NV_DATA_LEN,temp
+	pincrease 1
+	loop init_device_list_loop
+	rtn
+
+load_device_list:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	call nvram_find_addr_from_bd_list
+	nbranch clear_key_exists,user
+	add rega,10,contr
+//	copy rega,contr
+	arg mem_link_key,contw
+	call  memcpy16
+	branch check_link_key_load
+clear_key_exists:
+	jam 0,mem_link_key_exists
+	rtn
+
+load_device_list_mode_4:
+	fetch 9,mem_le_ediv
+	branch clear_ltk_exists,blank
+	call nvram_find_addr_from_bd_list
+	nbranch clear_ltk_exists,user
+	fetch 2,mem_list_item_ptr
+	add pdata,1,contr
+	arg mem_le_irk,contw
+	call  memcpy16
+	arg mem_le_ltk,contw
+	call  memcpy16
+	jam 1,mem_ltk_exists
+	rtn
+
+load_device_list_mode_4_shutter:
+	fetch 2,mem_le_ediv
+	nbranch load_device_list_mode_4_shutter_label,blank
+	fetch 6,mem_le_rand
+	branch clear_ltk_exists_iphone_lost_ltk,blank
+load_device_list_mode_4_shutter_label:
+	jam LTK_NOT_LOST,mem_ltk_states
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	jam 1,mem_ltk_exists
+	rtn
+
+clear_ltk_exists_iphone_lost_ltk:
+	jam IPHONE_LOST_LTK,mem_ltk_states
+clear_ltk_exists:
+	jam 0,mem_ltk_exists
+	rtn
+
+
+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 patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	beq dvc_op_module,check_51cmd_update_device_record
+	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 patch31_2,mem_patch31
+	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_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	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 patch31_5,mem_patch31
+	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 patch31_6,mem_patch31
+	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 patch31_7,mem_patch31
+	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 patch32_0,mem_patch32
+	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 patch32_1,mem_patch32
+	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
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	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 patch32_3,mem_patch32
+	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 patch32_4,mem_patch32
+	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
+gpio_config_output0:
+	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
+
+gpio_check_active:
+	arg core_gpio_out0,contw
+	branch get_bit_common
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+get_bit_common:
+	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_set_before_lpm_common:
+	arg -1,rega
+	hfetch 1,core_gpio_sel1
+	isolate1 1,pdata
+	call neglact4_from_23_pin,true	//spi
+	 
+	and pdata,0x3,regb
+	sub regb,1,null
+	call neglact2_form_25_pin,zero	//two spi
+	 
+	isolate1 2,pdata
+	call neglect2_from_6_pin,true	//uart
+	 
+	isolate1 3,pdata
+	call neglect4_from_9_pin,true	//spi
+
+	isolate1 5,pdata
+	call neglact2_form_27_pin,true	//clock external
+
+	isolate1 6,pdata
+	arg 4,queue
+	call neglact_1_pin,true
+	nsetflag true,4,rega			//pwm0 gpio4
+
+	isolate1 7,pdata
+	arg 5,queue
+	call neglact_1_pin,true			//pwm0 gpio5
+
+	hfetch 1,core_gpio_sel2
+	isolate1 0,pdata
+	arg 3,queue
+	call neglact_1_pin,true			//pwm0 gpio3
+	
+	hfetcht 1,core_gpio_sel
+	isolate1 0,temp
+	arg 5,queue
+	call neglact_1_pin,true			//ADC gpio5
+
+	ior temp,pdata
+
+	isolate1 1,pdata
+	arg 6,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio6
+	
+	isolate1 2,pdata
+	arg 7,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio7
+	
+	isolate1 3,pdata
+	arg 18,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio18
+	
+	isolate1 4,pdata
+	arg 19,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio19
+	
+	isolate1 5,pdata
+	arg 20,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio20
+	
+	isolate1 6,pdata
+	arg 21,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio21
+
+	isolate1 7,pdata
+	arg 22,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio22
+
+	hfetch 1,core_uart_ctrl
+	isolate1 4,pdata
+	call neglact2_form_2_pin,true
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata	
+	hstore 4,core_gpio_pd0
+	rtn
+neglect2_from_6_pin: //uart
+	 arg 6,queue
+	 branch neglect_2_pin
+neglect4_from_9_pin:
+	 arg 9,queue
+	 branch neglact_4_pin
+neglact4_from_23_pin:
+	 arg 23,queue
+	 branch neglact_4_pin
+neglact2_form_25_pin:
+	 arg 25,queue
+	 branch neglect_2_pin
+neglact2_form_27_pin:
+	 arg 27,queue
+	 branch neglect_2_pin
+neglact2_form_2_pin:
+	 arg 2,queue
+	 branch neglect_2_pin
+neglact_1_pin:
+	arg 1,loopcnt
+	branch neglect_pin_loop
+neglact_4_pin:
+	 arg 4,loopcnt
+	 branch neglect_pin_loop
+neglect_2_pin:
+	 arg 2,loopcnt
+neglect_pin_loop:
+	 qset0 rega
+	 increase 1,queue
+	 loop neglect_pin_loop
+	 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_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_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
+
+load_chip_option:
+	call otp_enable_chgpump
+	setarg OTP_CHIP_FUNCTIONS
+	arg mem_chip_functions,rega
+	arg 0x02,temp
+	call otpd_read_data
+	branch otp_disable_chgpump
+	
+//mem_adc_config_flag 0:vinlpm 1:Hvin 2: GPIO
+
+adc_init_data:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+
+	call otp_enable_chgpump
+	setarg otp_adc_io_0_5V_addr
+	arg mem_0_5_adc_io_data,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_init_data_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_init_data_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_init_data_io
+	rtn	
+
+adc_init_data_vinlpm:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_vinlpm,zero
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data	
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+	branch set_vdd_reference_voltage_1v
+
+adc_check_data_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	nbranch adc_check_2v_vinlpm,blank
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data
+adc_check_2v_vinlpm:	
+	fetch 2,mem_2v_adc_vinlpm_data
+	nbranch set_vdd_reference_voltage_1v,blank
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+set_vdd_reference_voltage_1v:
+	setarg 100
+	store 2,mem_reference_voltage //set reference voltage = 1V
+	rtn		
+
+adc_init_data_hvin:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_hvin,zero
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data	
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+	branch set_vdd_reference_voltage_4v
+
+adc_check_data_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	nbranch adc_check_1v_hvin,blank
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data
+adc_check_1v_hvin:	
+	fetch 2,mem_1v_adc_hvin_data
+	nbranch set_vdd_reference_voltage_4v,blank
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+set_vdd_reference_voltage_4v:
+	setarg 400
+	store 2,mem_reference_voltage //set reference voltage = 4V
+	rtn 	
+
+adc_init_data_io:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_io,zero
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data	
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+	branch set_vdd_reference_voltage_0_5v
+
+adc_check_data_io:
+	fetch 2,mem_1v_adc_io_data
+	nbranch adc_check_0_5v_io,blank
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data
+adc_check_0_5v_io:
+	fetch 2,mem_0_5_adc_io_data
+	nbranch set_vdd_reference_voltage_0_5v,blank
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+set_vdd_reference_voltage_0_5v:
+	setarg 50
+	store 2,mem_reference_voltage //set reference voltage = 0.5V
+	rtn	
+
+
+adc_set_mode:
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_check_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_check_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_check_gpio
+	rtn
+adc_check_vinlpm:
+	hjam 0xbf,rf_adc_mode	//read VINLPM voltage directly	
+	branch read_adc
+adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+	branch read_adc
+adc_check_gpio:
+	hjam 0x8f,rf_adc_mode
+	fetch 1,mem_adc_channel
+	hstore 1,rf_adc_ch
+	branch read_adc
+read_adc:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	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 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
+	storet 2,mem_adc_current_value
+	rtn
+
+vdd_calculate_by_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,vdd_calculate_vinlpm
+	bbit1 ADC_CONFIG_HVIN,vdd_calculate_hvin
+	bbit1 ADC_CONFIG_GPIO,vdd_calculate_io
+	rtn
+
+vdd_calculate_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	fetcht 2,mem_2v_adc_vinlpm_data
+	arg 200,regc
+	branch vdd_calculate
+
+vdd_calculate_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	fetcht 2,mem_1v_adc_hvin_data
+	arg 100,regc
+	branch vdd_calculate
+
+vdd_calculate_io:
+	fetch 2,mem_1v_adc_io_data
+	fetcht 2,mem_0_5_adc_io_data
+	arg 50,regc
+	branch vdd_calculate
+	
+vdd_calculate:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch vdd_calculate1,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	iadd regb,pdata
+vdd_calculate2:
+	idiv rega
+	call wait_div_end
+	quotient pdata	
+	rtn
+
+vdd_calculate1:
+	copy temp,pdata
+	fetcht 2,mem_adc_current_value
+	isub temp,pdata
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	branch vdd_calculate2
+
+
+ifdef SPI_SIMULATE
+/******************************simulate spi slave start**********************************/
+
+/*
+// Define SPI struct, gpio config
+mem_spi_simulate_struct:
+02	#cs
+03	#sclk
+04	#mosi
+05	#miso
+08	#motion
+*/
+
+/*
+Brief: spi_simulate_init_slave
+Input: None
+Output: None
+Return: None
+Brief: cs_gpio,sclk_gpio,mosi_gpio : input
+	miso_gpio : output
+*/
+spi_simulate_init_slave:
+	call spi_simulate_variable_release_slave
+	branch spi_simulate_gpio_config_slave
+
+spi_simulate_variable_release_slave:
+	arg mem_spi_simulate_read_byte_slave,contw
+	arg 53,loopcnt
+	call buffer_release
+	arg mem_spi_simulate_write_byte_slave,contw
+	arg 54,loopcnt
+	branch buffer_release
+
+buffer_release:
+	setarg 0
+buffer_release_loop:
+	istore 1,contw
+	loop buffer_release_loop
+	rtn
+	
+spi_simulate_gpio_config_slave:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_sclk_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_mosi_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_miso_gpio
+	call gpio_config_output
+	fetcht 1,mem_spi_simulate_motion_gpio
+	call gpio_config_output
+	branch spi_simulate_motion_disable
+
+spi_simulate_motion_enable:
+	fetcht 1,mem_spi_simulate_motion_gpio
+	branch gpio_out_inactive
+spi_simulate_motion_disable:
+	fetcht 1,mem_spi_simulate_motion_gpio
+	branch gpio_out_active
+	
+/*
+Brief: spi_simulate_read_byte_slave
+Input: rega: read length
+Output: mem_spi_simulate_read_byte_slave: read buffer
+Return: None
+Brief: when the cs_gpio is low level,slave reads data from master at the rising edge of the sclk gpio
+*/
+spi_simulate_read_byte_slave:
+	copy rega,pdata
+	store 1,mem_spi_simulate_read_length_slave
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nrtn true
+spi_simulate_read_byte_slave1:	
+	jam 0,mem_spi_simulate_read_byte_slave_temp
+	arg 8,loopcnt
+spi_simulate_read_byte_slave_loop:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_end,true
+	
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	branch spi_simulate_read_byte_slave_loop,true	
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	lshift pdata,pdata
+	store 1,mem_spi_simulate_read_byte_slave_temp
+	fetcht 1, mem_spi_simulate_mosi_gpio
+	call gpio_get_bit
+	ncall spi_simulate_read_byte_or_one,true
+spi_simulate_read_byte_slave_loop1:	
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_end,true
+
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_loop1,true
+	loop spi_simulate_read_byte_slave_loop
+	
+	fetcht 1,mem_spi_simulate_read_length_slave_temp
+	setarg mem_spi_simulate_read_byte_slave
+	iadd temp,contw
+	copy contw,regb
+	increase 1,temp
+	storet 1,mem_spi_simulate_read_length_slave_temp
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	copy regb,contw
+	istore 1,contw
+
+	fetch 1,mem_spi_simulate_read_length_slave
+	increase -1,pdata
+	store 1,mem_spi_simulate_read_length_slave
+	nbranch spi_simulate_read_byte_slave1,blank
+	
+spi_simulate_read_byte_slave_loop2:	
+	fetcht 1, mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_loop2,true
+spi_simulate_read_byte_slave_end:	
+	jam 0,mem_spi_simulate_read_length_slave
+	jam 0,mem_spi_simulate_read_length_slave_temp
+	jam 0,mem_spi_simulate_read_byte_slave_temp
+	rtn
+
+spi_simulate_read_byte_or_one:
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	or_into 1,pdata
+	store 1,mem_spi_simulate_read_byte_slave_temp
+	rtn
+
+
+/*
+Brief: spi_simulate_write_byte_slave
+Input: rega: write length;  write buffer:mem_spi_simulate_write_byte_slave;
+Output: None
+Return: None
+Brief: when the cs_gpio is low level,slave writes data to master at the falling edge of the sclk gpio
+*/
+spi_simulate_write_byte_slave:
+	copy rega,pdata
+	store 1,mem_spi_simulate_write_length_slave
+	jam 0,mem_spi_simulate_write_length_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nrtn true
+spi_simulate_write_byte_slave1:
+	fetcht 1,mem_spi_simulate_write_length_slave_temp
+	setarg mem_spi_simulate_write_byte_slave
+	iadd temp,contr
+	copy contr,regb
+	increase 1,temp
+	storet 1,mem_spi_simulate_write_length_slave_temp
+	copy regb,contr
+	ifetch 1,contr
+	store 1,mem_spi_simulate_write_byte_slave_temp
+	
+	arg 8,loopcnt
+spi_simulate_write_byte_slave_loop:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_end,true
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	branch spi_simulate_write_byte_slave_loop,true
+spi_simulate_write_byte_slave_loop1:
+	fetch 1,mem_spi_simulate_write_byte_slave_temp
+	store 1,mem_spi_simulate_write_byte_slave_temp_temp
+	and_into 0x80,pdata
+	beq 0x80,spi_simulate_set_miso_gpio_high
+	call spi_simulate_set_miso_gpio_low
+spi_simulate_write_byte_slave_loop2:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_end,true
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_loop2,true	
+	fetch 1,mem_spi_simulate_write_byte_slave_temp_temp
+	lshift pdata,pdata
+	store 1,mem_spi_simulate_write_byte_slave_temp
+	loop spi_simulate_write_byte_slave_loop
+
+	fetch 1,mem_spi_simulate_write_length_slave
+	increase -1,pdata
+	store 1,mem_spi_simulate_write_length_slave
+	nbranch spi_simulate_write_byte_slave1,blank
+	
+spi_simulate_write_byte_slave_loop3:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	branch spi_simulate_write_byte_slave_loop3,true
+spi_simulate_write_byte_slave_end:	
+	jam 0,mem_spi_simulate_write_length_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp_temp
+	rtn
+	
+spi_simulate_set_miso_gpio_high:
+	fetcht 1,mem_spi_simulate_miso_gpio
+	call gpio_out_inactive
+	branch spi_simulate_write_byte_slave_loop2
+spi_simulate_set_miso_gpio_low:
+	fetcht 1,mem_spi_simulate_miso_gpio
+	branch gpio_out_active	
+
+/******************************simulate spi slave end**********************************/
+
+endif  //SPI_SIMULATE
+
Index: ble fast connect receive/program/rfcomm.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/rfcomm.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/rfcomm.prog	(working copy)
@@ -0,0 +1,978 @@
+
+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 patch33_1,mem_patch33
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	fetch 1,mem_credit_flag
+	beq CREDIT_ENABLE,rfcomm_init_spp_with_credit
+	jam 0x50,mem_credit_given
+	rtn
+
+rfcomm_init_spp_with_credit:
+	jam 0x00,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
+
+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 patch33_2,mem_patch33
+	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 patch33_3,mem_patch33
+	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
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn_send_event
+	rtn
+
+
+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
+	beq UIH_PARAM_CMD_REMOVE_PORT,parse_DLCI0_rp_uih_cmd_port	
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+
+	branch parse_DLCI0_rp_uih_pn_cmd_spp
+
+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_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
+
+	branch parse_DLCI0_rp_uih_ms_cmd_spp
+
+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:
+	jam BT_EVT_SPP_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	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_DLCI0_rp_uih_cmd_port:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	store 1,mem_rpn_dlci
+	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
+	//setarg 5
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1191
+	istore 2,contw
+	//fetch 1,mem_pn_dlci
+	//setarg 0x0b
+	fetch 1,mem_rpn_dlci
+	istore 1,contw //DLCI
+	setarg 0x000007
+	istore 5,contw
+//	setarg 0 //max frame size
+//	istore 2,contw 
+	setarg 0x01 //max retrans
+	istore 2,contw
+//	setarg 0x00
+//	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+
+
+parse_uih_rp:
+	branch parse_uih_rp_spp
+
+parse_uih_rp_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	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
+	rtn
+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_send_event:
+	jam BT_EVT_SPP_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event	
+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 patch33_6,mem_patch33
+	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
+	fetcht 1,mem_pn_dlci
+	lshift2 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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	fetch 2,mem_rfcomm_max_frame_size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	fetch 1,mem_rfcomm_credit_init_data
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	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:
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	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 patch34_5,mem_patch34
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_ENABLE
+	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:
+	fetch 2,mem_cb_receive_spp_data
+	branch callback_func
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	//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 ssp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+ssp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch ssp_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 ssp_tx_rfcomm_from_uart_common
+ssp_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
+ssp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,127,null
+	branch ssp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+ssp_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 ssp_tx_write_length
+	call ssp_tx_write_given_credit
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	fetch 2,mem_nl_rx_data_src		//src
+	copy pdata,contru
+	fetch 2,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes_fast
+	copy contw,temp
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+	copy temp,contw	
+	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
+	fetch 2,mem_nl_rx_len_all
+	beq 0,module_hci_command_tx_spp_tx_complete
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	rtn
+
+ssp_tx_write_length:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch ssp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+ssp_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
+ssp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+else
+
+rfcomm_init:
+	rtn
+rfcomm_init_spp:
+set_CR_bit:
+rfcomm_calculate_FCS_sabm:
+rfcomm_calculate_FCS_ua:
+rfcomm_calculate_FCS_dlci0:
+rfcomm_calculate_FCS_dlci0_res:
+rfcomm_save_FCS_uih:
+caculate_UIHdata_fcs:
+caculate_fcs:
+mod2div:
+mod2div_loop:
+mod2div_not_enough_reduction:
+mod2div_end:
+get_rfcomm_snd_adss:
+dlci_to_address_cmd:
+dlci_to_address_res:
+channel_to_dlci:
+rfcomm_rx_process_DLCI0_sabm:
+rfcomm_rx_process_DLCI0_ua:
+rfcomm_rx_process:
+rfcomm_rx_process_remote_page:
+parse_dlci0_rp:
+parse_DLCI0_rp_uih:
+parse_DLCI0_rp_uih_pn_cmd:
+parse_DLCI0_rp_uih_pn_cmd_spp:
+parse_DLCI0_rp_uih_pn_res:
+parse_DLCI0_rp_uih_pn_res_common:
+get_rfcomm_param_modem_status:
+get_rfcomm_head_struct:
+get_rfcomm_current_length:
+get_rfcomm_uih_head_struct:
+get_param_payload_ptr:
+get_rfcomm_param_length_common:
+get_rfcomm_length_common:
+get_rfcomm_prarmer_negotiation:
+parse_DLCI0_rp_uih_ms_cmd:
+parse_DLCI0_rp_uih_ms_cmd_spp:
+parse_DLCI0_rp_uih_ms_res:
+parse_DLCI0_rp_uih_ms_res_spp:
+parse_uih_rp:
+parse_uih_rp_spp:
+parse_uih_rp_spp_ua:
+parse_uih_rp_spp_sabm:
+parse_uih_spp_uih_credits:
+parse_uih_spp_uih:
+parse_uih_spp_uih_cont:
+parse_uih_rp_spp_disconn:
+rfcomm_rx_process_reconn:
+	branch assert 
+parse_DLCI0_reconn:
+parse_DLCI0_reconn_uih:
+parse_DLCI0_reconn_uih_pn_cmd:
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+parse_DLCI0_reconn_uih_ms_cmd:
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+parse_DLCI0_reconn_uih_ms_res:
+parse_DLCI0_reconn_uih_ms_res_noext:
+parse_DLCI0_reconn_uih_ms_res_spp:
+parse_uih_reconn:
+parse_uih_reconn_spp:
+parse_uih_reconn_spp_ua:
+parse_uih_reconn_spp_sabm:
+parse_uih_reconn_spp_disconn:
+rfcomm_rx_process_end:
+rfcomm_send_more_pkt:
+rfcomm_send_more_pkt_msc_cmd_spp:
+rfcomm_send_sabm:
+rfcomm_send_ua:
+rfcomm_send_param_neg_cmd:
+rfcomm_send_param_neg_res:
+rfcomm_send_modem_status_cmd:
+rfcomm_send_modem_status_res:
+rfcomm_send_uih_without_payload:
+rfcomm_increase_credit_given:
+spp_process_rx_data:
+spp_tx_rfcomm_packet:
+ssp_tx_rfcomm_from_uart:
+ssp_tx_rfcomm_from_uart_without_credit:
+ssp_tx_rfcomm_from_uart_common:
+ssp_tx_rfcomm_from_uart_common0:
+ssp_tx_write_length:
+ssp_tx_write_long_packet:
+ssp_tx_write_given_credit:
+	branch assert
+endif
Index: ble fast connect receive/program/scheduler.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/scheduler.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/scheduler.prog	(working copy)
@@ -0,0 +1,484 @@
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+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.
+//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
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+//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 patch35_6,mem_patch35
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	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 patch35_7,mem_patch35
+	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 patch36_0,mem_patch36
+	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 patch36_1,mem_patch36
+	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 patch36_2,mem_patch36
+	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 patch36_3,mem_patch36
+	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 patch36_4,mem_patch36
+	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 patch36_5,mem_patch36
+	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 patch36_6,mem_patch36
+	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 patch36_7,mem_patch36
+	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 patch37_0,mem_patch37
+	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 patch37_1,mem_patch37
+	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 patch37_2,mem_patch37
+	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 patch37_3,mem_patch37
+	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 patch37_4,mem_patch37
+	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 patch37_5,mem_patch37
+	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 patch37_6,mem_patch37
+	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 patch37_7,mem_patch37
+	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 patch38_0,mem_patch38
+	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 patch38_1,mem_patch38
+	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: ble fast connect receive/program/sdp.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/sdp.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/sdp.prog	(working copy)
@@ -0,0 +1,1370 @@
+/**********************************************************************/
+/* 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 patch38_2,mem_patch38
+	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 patch38_3,mem_patch38
+	deposit regB						/* PDUID  */
+	beq 2,servicesearch_req			
+	beq 4,patch_serviceattribute_req
+	beq 6,patch_servicesearchattribute_req
+	beq 7,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	      */
+/*                                                                    */
+/**********************************************************************/     
+patch_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 patch_serviceattribute_judge_WholeRangle,true
+patch_serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch patch_serviceattribute_req_loop
+patch_serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch patch_serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+patch_serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, patch_serviceattribute_req_one_id
+	beq 0x0a, patch_serviceattribute_req_range_id
+patch_serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regB
+	ifetch 2, contr
+	byteswap pdata,pdata
+patch_serviceattribute_req_range_id_increase:	
+	increase 1, regB
+	isub regB, null
+	nbranch patch_serviceattribute_req_range_id_finish,positive
+	copy pdata, regC
+	byteswap regB,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regC, pdata
+	branch patch_serviceattribute_req_range_id_increase
+patch_serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,regA
+	branch patch_serviceattribute_req_check_next_id
+patch_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
+patch_serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_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
+patch_answer_handle_attributelist_next:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	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 patch_answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	branch patch_answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+patch_answer_handle_attributelist_notfound:
+	increase 2,regA
+	increase -1, queue
+	branch patch_answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	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 */
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	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             */
+/*                                                                    */
+/**********************************************************************/     
+patch_servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch patch_servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+patch_servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,patch_servicesearchattribute_req_all
+patch_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 patch_servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+patch_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
+patch_answer_attributelist_next:	
+	ifetch 4,regA
+	branch patch_answer_attributelist_end,blank
+	ifetch 2,regA
+	iforce regB						/* regB is the attribute ID */
+	call search_attrib
+	branch patch_answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	iforce loopcnt	
+patch_answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop patch_answer_attributelist_attrib_loop
+patch_answer_attributelist_notfound:
+	increase 2,regA
+	branch patch_answer_attributelist_next
+patch_servicesearchattribute_req_all:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	//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
+	ifetch 1,contr
+	increase -1,timeup
+	jam 0,mem_sdp_continue_byte
+	jam 0,mem_sdp_continue_byte+1
+	nbranch patch_servicesearchattribute_req_all_continue,blank
+	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
+
+patch_servicesearchattribute_req_all_continue:
+	ifetch 2,contr
+	increase -2,timeup
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	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 7,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle_continue
+	
+patch_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 patch_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
+patch_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_attributelist_loop_continue:
+	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_continue,zero
+	loop servicesearchattribute_req_attributelist_loop_continue	
+servicesearchattribute_req_check_next_ctn_continue:	
+	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_continue,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle_continue:
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle_continue,zero
+	branch answer_attributelist_end_long_continue
+	
+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
+
+servicesearchattribute_req_next_handle_continue:
+	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,pdata
+	fetcht 2,mem_sdp_continue_byte
+	isub temp,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	iadd contr,contr
+	branch servicesearchattribute_req_attributelist_loop_continue
+	
+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_bytes_continue:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length_continue:		
+	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,7,pdata //setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce 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
+	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	
+
+answer_attributelist_end_long_continue:
+	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
+	
+	//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	
+	
+patch_sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,patch_sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+patch_sdp_data_len_6:
+	call patch_sdp_get_data_6
+	branch sdp_data_len_rtn
+patch_sdp_get_data_6:
+	deposit loopcnt
+	beq 5,patch_sdp_get_data_6_8bit
+	beq 6,patch_sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+patch_sdp_get_data_6_8bit:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+patch_sdp_get_data_6_16bit:
+	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
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_response:	
+	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:  
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	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
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	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
+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
+dsize:
+	force 0x01,pdata
+	rtn
+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 patch39_2,mem_patch39
+	force 0,queue
+	fetch 2, mem_ui_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:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	fetch 2,mem_ui_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 patch39_4,mem_patch39
+	fetch 2,mem_ui_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 patch39_5,mem_patch39
+	fetch 2,mem_ui_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: ble fast connect receive/program/security.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/security.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/security.prog	(working copy)
@@ -0,0 +1,1649 @@
+
+ifdef SECURE_CONNECTION
+	
+function_g2:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 80,mem_AES_CMAC_data_length
+	arg memdat,contw
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat	
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	call function_AES_CMAC	
+
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result
+	setarg 1000000
+	copy pdata,rega
+	fetch 4,mem_AES_CMAC_temp
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+//call ice_break
+	rtn
+
+function_f6_eb:
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_a
+	call store_addr_common_b
+	fetch 3,mem_le_pres+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	
+	arg mem_le_mrand,contr
+	call memcpy16
+	arg mem_le_srand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	branch function_AES_CMAC
+//	arg mem_AES_CMAC_temp,contw
+//	branch p_load_inverse_result
+
+get_r:
+	fetch 4,mem_le_tk
+	istore 4,contw
+	call memset0_4
+	branch memset0_8
+
+function_f6_ea:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_b
+	call store_addr_common_a
+	fetch 3,mem_le_preq+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_temp,contw
+	branch load_inverse_result
+
+function_f5:
+	jam 32,mem_AES_CMAC_data_length
+	arg mem_le_dhkey_256 ,contr
+	arg memdat,contw
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_slat,contr
+	call store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_k,contw
+	call store_aes_result
+	arg 1,temp
+	call function_f5_common
+	arg mem_le_ltk,contw
+	call load_inverse_result
+	arg 0,temp
+	call function_f5_common
+	arg mem_le_mackey,contw
+//	branch p_load_inverse_result
+	branch store_aes_result
+
+
+function_f5_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	jam 53,mem_AES_CMAC_data_length
+	setarg 0x100
+	store 2,memdat
+	call store_addr_common_b
+	call store_addr_common_a
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+//	fetch 4,mem_le_keyid 0x62746c65
+	setarg 0x6c65
+	istore 2,contw
+	setarg 0x6274
+	istore 2,contw
+	istoret 1,contw   //counter
+	call inverse_memdat	
+	branch function_AES_CMAC
+
+store_addr_common_b:
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 1,mem_le_conn_own_addr_type
+	istore 1,contw
+	rtn
+
+store_addr_common_a:
+	fetch 6,mem_le_plap
+	istore 6,contw
+//	setarg 0x2dcfc1
+//	istore 3,contw
+//	setarg 0xa71370
+//	istore 3,contw
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contw
+	rtn
+
+function_f4_ca:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+	
+
+function_f4_cb:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_srand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+
+function_AES_CMAC:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	call function_AES_CMAC_Generate_Subkey
+//call ice_break
+//	jam 65,mem_AES_CMAC_data_length
+//call ice_break
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,temp
+function_ceil16:
+	increase 15,pdata
+	rshift4 pdata,pdata
+	copy pdata,regb
+	branch function_AES_CMAC_set_flag_0_balnk,blank
+	and temp,0x0f,pdata
+	nbranch function_AES_CMAC_set_flag_0,blank
+//	flag =1;
+	arg mem_AES_CMAC_k1,regc
+	arg memdat,pdata
+	increase -16,pdata
+//	iadd temp,pdata
+//	isub rega,rega
+	iadd temp,rega	
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop
+//call ice_break
+//	arg mem_f4_k1,contr
+//	call load_key
+	branch function_AES_CMAC_aes
+
+function_AES_CMAC_set_flag_0_balnk:
+	arg 1,regb
+	arg 0,rega
+//	arg mem_f4_test_data,pdata
+	branch function_AES_CMAC_set_flag_0_common
+//call ice_break
+
+function_AES_CMAC_set_flag_0:
+//	flag = 0;
+	and temp,0x0f,rega
+function_AES_CMAC_set_flag_0_common:
+	arg memdat,pdata
+	iadd temp,pdata
+	isub rega,contr
+//call ice_break
+	arg mem_AES_CMAC_temp,contw
+	call function_AES_CMAC_padding
+//call ice_break
+	arg mem_AES_CMAC_k2,regc
+	arg mem_AES_CMAC_temp,rega
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop	
+//call ice_break
+
+//	arg mem_f4_k2,contr
+//	call load_key
+
+//	branch p_function_f4_aes
+function_AES_CMAC_aes:
+//	arg mem_f4_k,contr
+//	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call load_data128
+	call aes_clear_data
+	call aes_init	
+//	arg mem_f4_k,contr
+//	call load_key
+	arg memdat,contr
+function_AES_CMAC_aes_loop:
+//generate_mic_loop:
+	increase -1,regb
+	deposit regb
+	branch function_AES_CMAC_aes_loop_end,blank
+	call load_data128
+	call do_aes_cbc
+	branch function_AES_CMAC_aes_loop
+//generate_mic_end:
+function_AES_CMAC_aes_loop_end:	
+	arg mem_AES_CMAC_temp,contw
+	call store_aes_result
+	arg mem_AES_CMAC_M_last,contr
+	call load_data128
+	call aes_init	
+	arg mem_AES_CMAC_temp,contr
+	call load_data128	
+	branch do_aes_cbc
+
+
+
+load_inverse_result:
+//	arg mem_AES_CMAC_temp,contw
+	copy contw,rega
+	call store_aes_result
+//	arg mem_AES_CMAC_temp,rega
+	arg 16,loopcnt
+	branch inverse_data
+	
+store_inverse_k:
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+inverse_k:	
+	arg 16,loopcnt
+	arg mem_AES_CMAC_k,rega	
+	branch inverse_data
+	
+inverse_memdat:
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,loopcnt
+	arg memdat,rega
+	branch inverse_data
+
+bn_lshift_0_inverse:
+	ifetch 1,regA
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata	
+	isolate1 8,pdata
+	setflag true,0,regC	
+	istore 1,rega
+         increase -1,rega
+	loop bn_lshift_0_inverse
+	rtn	
+
+function_AES_CMAC_k1_inverse:
+	arg mem_AES_CMAC_k1,regA
+function_AES_CMAC_inverse_common:
+	increase 15,rega
+	force 16,loopcnt
+	force 0,regC
+	branch  bn_lshift_0_inverse	
+
+function_AES_CMAC_k2_inverse:
+	arg mem_AES_CMAC_k2,regA
+	branch function_AES_CMAC_inverse_common
+	
+
+function_AES_CMAC_Generate_Subkey:
+	arg mem_AES_CMAC_k,contr
+	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call aes_load_xor
+	force regidx_xor,regext_index
+	call aes_clear
+	call aes_clear_data
+	call do_aes_ocb
+	
+//	force 0x38,aes_ctrl
+//	force 0x0,aes_ctrl
+//	call wait_aes
+	arg mem_AES_CMAC_k1,contw
+	call store_aes_result
+function_AES_CMAC_k1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	fetch 1,mem_AES_CMAC_k1
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k1_0,true	
+	call function_AES_CMAC_k1_inverse
+	
+//p_function_f4_k1_xor:
+	arg mem_AES_CMAC_k1,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k1,contw
+//	arg 3,loopcnt
+//	call xor_loop
+	call function_AES_CMAC_xor_rb
+	branch function_AES_CMAC_k2
+function_AES_CMAC_k1_0:	
+	call function_AES_CMAC_k1_inverse
+function_AES_CMAC_k2:
+//call ice_break
+	arg mem_AES_CMAC_k1,contr
+	arg mem_AES_CMAC_k2,contw
+	call memcpy16
+	fetch 1,mem_AES_CMAC_k2
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k2_inverse,true		
+	call function_AES_CMAC_k2_inverse
+//p_function_f4_k2_xor:
+	arg mem_AES_CMAC_k2,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k2,contw
+//	arg 3,loopcnt
+//	branch xor_loop	
+
+
+//rb:00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 
+function_AES_CMAC_xor_rb:
+	arg 3,loopcnt
+function_AES_CMAC_xor_rb_loop:	
+	arg 0,temp
+	call function_AES_CMAC_xor_loop_common	
+	increase 4,regc
+	loop  function_AES_CMAC_xor_rb_loop
+	arg 0x8700,temp
+	lshift16 temp,temp
+function_AES_CMAC_xor_loop_common:	
+	ifetch   4,regc
+	ixor  temp,pdata
+	istore   4,contw	
+	rtn
+		
+
+
+
+//input rega :length <16	contr,contw
+function_AES_CMAC_padding:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 16,loopcnt
+	arg 0,pdata
+function_AES_CMAC_padding_loop:
+	isub rega,null
+	branch function_AES_CMAC_padding_beq_length,zero
+	branch function_AES_CMAC_padding_big_length,positive
+	ifetcht 1,contr
+	istoret 1,contw
+function_AES_CMAC_padding_loop2:	
+	increase 1,pdata
+	loop function_AES_CMAC_padding_loop
+	rtn
+function_AES_CMAC_padding_beq_length:	
+	arg 0x80,temp
+function_AES_CMAC_padding_common:
+	istoret 1,contw
+	branch  function_AES_CMAC_padding_loop2
+
+function_AES_CMAC_padding_big_length:
+	arg 0,temp
+	branch function_AES_CMAC_padding_common
+
+endif
+	
+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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	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:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	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
+
+	
+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
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	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 */
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	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
+	
+ifdef SECURE_CONNECTION
+
+
+init_memp_256:
+ 	arg mem_p_256,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3f
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x1000
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x3ff00
+        setsect 1,0x3ffff
+        setsect 2,0x3ffcf
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ff
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x10000
+        setsect 1,0x0
+        setsect 2,0x3f000
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x296ff
+        setsect 1,0x22630
+        setsect 2,0x3945d
+        setsect 3,0x3d284
+        istore 9,contw
+        setsect 0,0x333a0
+        setsect 1,0x4b7a
+        setsect 2,0x37d8
+        setsect 3,0x3c9dc
+        istore 9,contw
+        setsect 0,0x3a440
+        setsect 1,0x1b958
+        setsect 2,0x38bce
+        setsect 3,0x1091f
+        istore 9,contw
+        setsect 0,0x2e12c
+        setsect 1,0x1f47c
+        setsect 2,0x356b1
+        setsect 3,0x2fd47
+        istore 9,contw
+        setsect 0,0x6837
+        setsect 1,0x2ed90
+        setsect 2,0x1ecec
+        setsect 3,0x1acc5
+        istore 9,contw
+        setsect 0,0x23357
+        setsect 1,0x18af3
+        setsect 2,0xf9e1
+        setsect 3,0x129f0
+        istore 9,contw
+        setsect 0,0x2e7eb
+        setsect 1,0x3e6e3
+        setsect 2,0x3e1a7
+        setsect 3,0x10b8b
+        istore 9,contw
+        setsect 0,0x24fe3
+        setsect 1,0x20ef
+        setsect 2,0x1b5a6
+        setsect 3,0xdc2f
+        istore 9,contw
+        setsect 0,0x13860
+        setsect 1,0x2bd69
+        setsect 2,0x391a
+        setsect 3,0x1b222
+        istore 9,contw
+        rtn
+endif
+
Index: ble fast connect receive/program/shutter.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/shutter.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/shutter.prog	(working copy)
@@ -0,0 +1,1172 @@
+
+ifdef COMPILE_SHUTTER
+
+shutter_init:
+	//call  shutter_le_init_rf_param
+	rtn wake	
+	call init_shutter_le_att_list
+	call shutter_init_param	
+	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_init
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+
+	setarg shutter_le_send_att_handle_value_notification
+	store 2,mem_cb_update_notify_value
+
+shutter_init0:	
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH, shutter_le_hard_switch_power_on_signal
+	call shutter_ui_led_init
+	call ui_button_init
+	call ui_button_polling
+	jam SHUTTER_POWER_UP,mem_shutter_powerup_flag
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BTN_DOWN
+	branch app_enter_hibernate
+
+shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch in_poweron_hard_switch_led,blank
+shutter_le_soft_switch_power_on_signal:
+	//call ice_break
+	jam ON,mem_le_adv_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	call shutter_le_fast_advertise
+
+	jam PAIR_UNKNOWN,mem_pair_state
+	call le_modified_name
+	fetch 6,mem_le_lap
+	call shutter_byteswap
+	call shutter_updata_mac
+	rtn
+
+	
+//pdata:adv interval value
+shutter_le_adv_interval_set:
+	store 2,mem_lpm_interval
+	increase -4,pdata
+	store 2,mem_le_adv_interval_min
+	store 2,mem_le_adv_interval_max
+	rtn
+	
+shutter_updata_mac:
+	fetcht 2,mem_adv_lap_ptr
+	rtn blank
+	istore 6,temp
+	rtn
+	
+shutter_byteswap:
+	store 6,mem_tmp_buffer
+	fetch 1,mem_tmp_buffer
+	store 1,mem_tmp_buffer+11
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+10
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+9
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+8
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+7
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+6
+	fetch 6,mem_tmp_buffer+6
+	rtn
+	
+shutter_le_fast_advertise:
+	jam 0,mem_shutter_key_data_flag_1
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	nbranch in_shutter_skip_set,blank
+	setarg mem_fast_adv_led_style
+	call shutter_ui_led_send
+	setarg FAST_ADV_INTERVAL_VALUE
+	call shutter_le_adv_interval_set
+in_shutter_skip_set:
+	fetch 2,mem_le_fast_adv_timeout
+	store 2,mem_le_fast_adv_timeout_timer_count
+	rtn
+
+shutter_le_scale_lpm_lock:
+	//fetcht 4,mem_last_clk_rx
+	//copy clkn_bt,pdata
+	//isub temp,pdata
+	//arg 8,temp
+	//isub temp,null
+	//nbranch app_get_lpm_wake_lock,positive
+	fetch 1,mem_scale_txbuff_inuse
+	beq 1,app_get_lpm_wake_lock
+	fetch 1, mem_queue_ele_num
+	nbranch app_get_lpm_wake_lock,blank
+	branch app_put_lpm_wake_lock
+
+scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+shutter_le_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+shutter_le_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+	call shutter_le_sleep_timer
+	call shutter_ui_button_timeout_timer
+	call shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop
+
+shutter_conn_update_timer:
+	fetch 1,mem_shutter_conn_update_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_conn_update_timer
+	nrtn blank
+	jam 0x05,mem_lpm_mult
+	rtn	
+
+shutter_app_updata_le_param_timer:
+	fetch 1,mem_send_updata_le_param_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_send_updata_le_param_timer
+	nrtn blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,shutter_app_updata_le_param
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+
+shutter_app_updata_le_param:
+	call  app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+
+
+shutter_le_shutter_fast_adv_timer:
+	fetch 1, mem_shutter_powerup_flag
+	rtnne SHUTTER_POWER_ON
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_fast_adv_timeout_timer_count
+	nrtn blank
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,in_is_connected
+	setarg mem_slow_adv_led_style
+	call shutter_ui_led_send
+in_is_connected:
+	setarg SLOW_ADV_INTERVAL_VALUE
+	branch shutter_le_adv_interval_set
+
+shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	call shutter_shutter_power_off_end
+	//goto sleep
+	//call shutter_le_sleep_req_hibernate
+	rtn
+
+scale_process_le_conn:
+	jam 0,mem_lpm_mode
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam PAIR_UNKNOWN,mem_pair_state
+	//call shutter_update_last_clk
+	call app_ble_stop_adv
+//	call shutter_check_51cmd_le_smp_sec_req
+//	call shutter_app_updata_le_param
+
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	//call p_update_last_clk
+	call app_ble_stop_adv
+	//call check_51cmd_le_smp_sec_req
+	//call p_app_updata_le_param
+	call  app_lpm_mult_enable
+	//call ice_break
+	jam 0,mem_le_fast_adv_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 0,mem_led_gpio
+	rtn
+
+scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call shutter_le_fast_advertise
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+
+	call shutter_le_tx_buff_unuse
+	//call le_att_client_clr
+	call app_ble_start_adv
+	//call app_led_start_blink
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	rtn
+
+shutter_le_tx_buff_inuse:
+	//call ui_led_on
+	jam 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_check_tx_buff:
+	fetch 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_tx_buff_unuse:
+	//call ui_led_off
+	jam 0,mem_scale_txbuff_inuse
+	rtn
+
+shutter_le_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+
+shutter_le_sleep_req_hibernate:
+	jam 0x01,mem_le_sleep_flag
+shutter_le_sleep_req_ok:	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+shutter_le_sleep_enter:
+	call shutter_le_sleep_clr
+	call wait_uarttx
+	jam 0x00,mem_le_sleep_flag
+	branch app_bb_hibernate
+
+shutter_le_sleep_clr:
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+	//branch le_att_client_clr
+
+scale_process:
+	fetch 1, mem_exchange_mtu_req
+	ncall shutter_le_parse_att_exchange_mtu_request,blank
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_parse_att_exchange_mtu_request:
+	//fetch 1,mem_le_state
+	//bbit0 lestate_encryption,shutter_le_parse_att_exchange_mtu_request_save
+	jam 0, mem_exchange_mtu_req
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+shutter_le_parse_att_exchange_mtu_request_save:
+	jam 1, mem_exchange_mtu_req
+	rtn
+
+scale_process_idle:
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_before_hibernate:
+	call shutter_shutter_scan_key
+	fetch 2, mem_key_value_temp
+	branch in_enter_hibernate,blank
+	branch app_enter_hibernate
+in_enter_hibernate:	
+	call gpio_set_before_lpm_common
+	branch shutter_le_process_lpm_before
+
+
+
+
+
+shutter_ui_led_init:
+	fetch 1, mem_shutter_led_num
+	copy pdata,loopcnt
+	setarg mem_led_map
+	copy pdata,rega
+in_lp1:
+	copy rega,contr
+	ifetch 1,contr
+	beq INVALID_PIN_NUM,in_lp1_end
+	copy pdata,temp
+	store 1, mem_led_gpio
+	//call ice_break
+	call ui_led_init
+in_lp1_end:
+	loop in_lp1
+shutter_ui_led_init_end:
+	rtn
+
+
+
+//pdata = address of led_style 
+shutter_ui_led_send:
+	copy pdata,contr
+	force 7,loopcnt
+	//setarg mem_temp_led_style
+	//copy pdata,contw
+	arg mem_temp_led_style,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	fetch 1, mem_temp_led_type
+	rtneq LED_INVALID
+	fetcht 2,mem_temp_led_on_time
+	storet 2,mem_led_light_time
+	fetcht 2, mem_temp_led_off_time
+	storet 2,mem_led_dark_time
+	fetcht 1,mem_temp_blink_count
+	storet 1, mem_led_blink_count
+	//call ice_break
+	call ui_led_blink_stop
+	fetcht 1,mem_temp_led_pin
+	storet 1, mem_led_gpio
+	fetch 1, mem_temp_led_type
+	beq LED_OFF,shutter_ui_led_send_end
+	beq LED_ON,	ui_led_on
+	beq LED_BLINK,ui_led_blink_start1
+shutter_ui_led_send_end:
+	rtn
+
+shutter_ui_led_off:
+	branch ui_led_blink_stop
+
+
+shutter_key_init:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+shutter_key_lp1:
+	ifetcht 1, rega
+	call gpio_config_input
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop shutter_key_lp1
+shutter_key_init_end:
+	rtn
+	
+
+shutter_shutter_scan_key:
+	//setarg mem_key_conf0_pin
+	//copy pdata, rega
+	arg mem_key_conf0_pin,rega
+	force 0,regb
+	jam 0,mem_key_value_temp
+in_scan_key_lp1:
+	ifetcht 1, rega
+	call gpio_get_bit
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 2, mem_key_value_temp
+	copy regb,queue
+	qsetflag true,pdata
+	store 2, mem_key_value_temp
+	increase KEY_CONF_STRUCT_LEN,rega
+	increase 1,regb
+	fetch 1,mem_shutter_key_num
+	ixor regb,null
+	nbranch in_scan_key_lp1,zero
+	//call ice_break
+	fetch 2,mem_key_value_temp
+	fetcht 2,mem_key_value
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_le_key_process:
+	arg temp_timer,queue
+	call timer_check
+	nrtn blank
+	call shutter_le_packet_interval_set
+	fetch 1,mem_enable_key_scan
+	rtn blank
+	disable user
+	call shutter_le_process_lpm_before
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_le_fast_advertise
+	call shutter_shutter_cancel_key_shake
+	branch  in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+shutter_le_key_lp1:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch in_le_key_is_release,blank
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_press
+	beq 1,in_le_send_key1_press
+	beq 2,in_le_send_key2_press
+	beq 3,in_le_send_key3_press
+	beq 4,in_le_send_key4_press
+	beq 5,in_le_send_key5_press
+in_le_send_lable:
+	fetch 1,mem_le_enc_state
+	rtnne  FLAG_LE_ENC_END
+	fetch 1,mem_shutter_key_data_flag_1
+	nrtn blank
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch in_le_send_lp1,zero
+	branch shutter_le_send_packet
+//function end
+
+in_le_key_is_release:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_rel
+	beq 1,in_le_send_key1_rel
+	beq 2,in_le_send_key2_rel
+	beq 3,in_le_send_key3_rel
+	beq 4,in_le_send_key4_rel
+	beq 5,in_le_send_key5_rel
+	branch in_le_send_lable
+
+in_le_send_key0_press:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_key_led_index
+	arg mem_key0_press,temp
+	branch in_le_send_lable
+in_le_send_key1_press:
+//	fetch 1,0x4ff0
+//	increase 1,pdata
+//	store 1,0x4ff0
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_key_led_index
+	arg mem_key1_press,temp
+	branch in_le_send_lable
+in_le_send_key2_press:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_key_led_index
+	arg mem_key2_press,temp
+	branch in_le_send_lable
+in_le_send_key3_press:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_key_led_index
+	arg mem_key3_press,temp
+	branch in_le_send_lable
+in_le_send_key4_press:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_key_led_index
+	arg mem_key4_press,temp
+	branch in_le_send_lable
+in_le_send_key5_press:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_key_led_index
+	arg mem_key5_press,temp
+	branch in_le_send_lable
+
+in_le_send_key0_rel:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_disble_key_led
+	arg mem_key0_release,temp
+	branch in_le_send_lable
+in_le_send_key1_rel:
+//	fetch 1,0x4ff1
+//	increase 1,pdata
+//	store 1,0x4ff1
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_disble_key_led
+	arg mem_key1_release,temp
+	branch in_le_send_lable
+in_le_send_key2_rel:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_disble_key_led
+	arg mem_key2_release,temp
+	branch in_le_send_lable
+in_le_send_key3_rel:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_disble_key_led
+	arg mem_key3_release,temp
+	branch in_le_send_lable
+in_le_send_key4_rel:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_disble_key_led
+	arg mem_key4_release,temp
+	branch in_le_send_lable
+in_le_send_key5_rel:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_disble_key_led
+	arg mem_key5_release,temp
+	branch in_le_send_lable
+
+shutter_le_disble_key_led:
+	compare LED_ON,pdata,0xff
+	rtn true
+	force 3,pdata
+	branch shutter_le_key_led_index
+	//rtn
+
+//pdata = key led index
+shutter_le_key_led_index:
+	beq 0,in_le_key_led_0
+	beq 1,in_le_key_led_1
+	beq 2,in_le_key_led_2
+	beq 3,in_le_key_led_3
+	//setarg 0xff
+in_le_light_led:
+	branch shutter_ui_led_send
+//end
+
+in_le_key_led_0:
+	setarg mem_key_led_style_ind_0
+	branch shutter_ui_led_send
+in_le_key_led_1:
+	setarg mem_key_led_style_ind_1
+	branch shutter_ui_led_send
+in_le_key_led_2:
+	setarg mem_key_led_style_ind_2
+	branch shutter_ui_led_send
+in_le_key_led_3:
+	setarg mem_key_led_style_ind_3
+	branch shutter_ui_led_send
+
+//////////////////////////////////////////////////////////////////////////////////////////
+/////SOFT WTICH////////
+shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+shutter_ui_button_timeout_timer:
+	fetch 1,mem_shutter_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_button_timer
+	nrtn blank
+	branch app_led_off
+
+shutter_shuuter_led_on:
+	fetch 1,mem_shutter_button_timeout
+	store 1,mem_shutter_button_timer
+	branch  app_led_on
+
+shutter_bb_event_button_up:
+	//call ice_break
+	//fetch 2,mem_ui_state_map
+	//rtnbit1 UI_STATE_BLE_CONNECTED
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,in_power_release
+	branch app_enter_hibernate
+in_power_release:
+	jam 1,mem_enable_key_scan
+	rtn
+
+shutter_evt_button_long_pressed:
+	//call ice_break
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_power_off
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	//jam ON,mem_le_adv_enable
+	setarg mem_power_on_led_style
+shutter_shutter_power_on:
+shutter_shutter_power_on_off:
+	fetcht 1,mem_power_timeout
+	storet 1,mem_power_timer
+	branch shutter_ui_led_send
+	
+shutter_le_power_off:
+	//call ice_break
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	jam 0,mem_enable_key_scan
+	jam OFF,mem_le_adv_enable
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_shutter_power_off_end
+	call app_ble_disconnect
+shutter_shutter_power_off_end:
+	jam OFF,mem_le_adv_enable
+	setarg mem_powe_off_led_style
+	branch shutter_shutter_power_on_off
+
+shutter_shutter_power_off_signal:	
+	call shutter_ui_led_init
+	branch app_enter_hibernate
+//end
+	
+shutter_le_process_lpm_before:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+in_shutter_process_lpm_before_lp1:
+	ifetcht 1, rega
+	call gpio_set_wake_by_current_state
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop in_shutter_process_lpm_before_lp1
+shutter_le_process_lpm_before_end:
+	rtn
+
+
+shutter_le_queue_init:
+	jam 0,mem_queue_ele_num
+	setarg mem_queue_start
+	store 2, mem_queue_read
+	store 2, mem_queue_write
+	rtn
+//end
+
+shutter_le_queue_clear:
+	branch shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num
+	compare  QUEUE_ELE_COUNT,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num
+	increase 1,pdata
+	store 1, mem_queue_ele_num
+	
+	setarg mem_queue_write
+	call shutter_le_queue_increase
+	rtn
+
+//pdata
+shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH,pdata
+	isub temp,null
+	nbranch shutter_le_queue_put_end,positive
+	setarg mem_queue_start
+shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num
+	increase -1,pdata
+	store 1, mem_queue_ele_num
+
+	fetch 2,mem_queue_read
+	store 2,mem_queue_temp
+
+	setarg mem_queue_read
+	call shutter_le_queue_increase
+	fetch 2,mem_queue_temp
+	rtn
+
+shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read
+	rtn
+
+shutter_le_packet_interval_set:
+	fetch 2, mem_packet_interval_set
+	arg temp_timer,queue
+	branch timer_init
+
+shutter_le_send_packet:
+	//fetch 1,mem_le_pairing_state
+	//rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	//call shutter_le_check_tx_buff
+	//nrtn blank
+	//arg temp_timer,queue
+	//call timer_check
+	//nrtn blank
+	//call shutter_le_packet_interval_set
+	call shutter_le_queue_read_point
+	nrtn user
+	disable user
+	//copy pdata,contr
+	//ifetcht 1,contr
+	//increase -3,temp
+	//copy temp,loopcnt
+	//ifetcht 2,contr
+	//storet 2,mem_le_notify_handle
+	//arg mem_shutter_send_data,contw
+	//call memcpy
+	force 0x0013,temp
+	storet 2,mem_le_notify_handle
+	branch shutter_le_shutter_send_keydata
+
+shutter_le_shutter_send_keydata:
+	arg 2, loopcnt
+	fetcht 2, mem_le_notify_handle
+	arg mem_shutter_send_data, contr
+	call shutter_le_tx_notification
+	
+	//fetch 1,mem_shutter_1key_send_sm
+	//beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_le_shutter_1key_send_step2
+  	//beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_le_shutter_1key_send_step3
+ 	//beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_le_shutter_1key_send_step4
+	rtn	
+
+shutter_le_tx_indication:
+	jam ATTOP_HANDLE_VALUE_INDICATION,mem_fifo_temp
+	branch shutter_le_tx_common
+shutter_le_tx_notification:
+	call le_xtype_fifo_is_empty
+	nrtn blank
+	fetch 1,mem_shutter_key_data_flag
+	nrtn blank
+ 	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+shutter_le_tx_common:
+	//add loopcnt,7,pdata
+	//store 1,mem_scale_tx_length
+	//arg mem_le_l2cap+1,contw
+	//istoret 2,contw
+	//call memcpy
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+shutter_shutter_cancel_key_shake:
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,20,pdata
+	rtn
+
+shutter_le_send_att_handle_value_notification:
+	//call shutter_le_tx_buff_unuse
+	call shutter_le_queue_get
+	nrtn user
+	disable user
+	copy pdata,contr
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	//fetcht 2, mem_le_notify_handle
+	ifetcht 2,contr
+	//arg mem_shutter_send_data, contr
+	add loopcnt,7,pdata
+	store 1,mem_scale_tx_length
+	arg mem_le_l2cap+1,contw
+	istoret 2,contw
+	call memcpy
+	fetcht 1,mem_scale_tx_length
+	branch le_send_packet
+	
+shutter_le_receive_data:	
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,shutter_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,shutter_le_parse_att_write_command
+	rtn
+shutter_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle
+	beq  ATT_WRITE_REQUEST_HANDLE,shutter_key_data_send
+	rtn
+shutter_le_parse_att_write_command:
+shutter_key_data_send:
+	jam 0,mem_shutter_key_data_flag
+	rtn
+
+init_shutter_le_att_list:
+	arg mem_shutter_le_att_list,contw
+	setsect 0,0x20001
+	setsect 1,0x20000
+	setsect 2,0x1022
+	setsect 3,0x860
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x3200
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a05
+	setsect 1,0x10000
+	setsect 2,0x2000
+	setsect 3,0xa408
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x140
+	setsect 2,0x20
+	setsect 3,0x8a0
+	istore 9,contw
+	setsect 0,0x21800
+	setsect 1,0x8001
+	setsect 2,0x28030
+ 	setsect 3,0x804
+	istore 9,contw
+	setsect 0,0x20007
+	setsect 1,0x28000
+	setsect 2,0x3132
+	setsect 3,0x1a5a1
+	istore 9,contw
+	setsect 0,0x17370
+	setsect 1,0x35859
+	setsect 2,0xc422
+	setsect 3,0x8115
+	istore 9,contw
+	setsect 0,0x2020
+	setsect 1,0x808
+	setsect 2,0x20202
+	setsect 3,0x20
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x804a
+	setsect 2,0x90
+	setsect 3,0x408
+	istore 9,contw
+	setsect 0,0x22a
+	setsect 1,0x28032
+	setsect 2,0x2000
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x30201
+	setsect 1,0x8002
+	setsect 2,0x2a040
+	setsect 3,0x1820
+	istore 9,contw
+	setsect 0,0x600
+	setsect 1,0x1900
+	setsect 2,0x12c0
+	setsect 3,0x30
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x2808a
+	setsect 2,0xd180
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12803
+	setsect 1,0x38080
+	setsect 2,0x2000
+	setsect 3,0xa940
+	istore 9,contw
+	setsect 0,0x20207
+	setsect 1,0x18922
+	setsect 2,0x1826
+	setsect 3,0x3c00
+	istore 9,contw
+	setsect 0,0x200
+	setsect 1,0x8a00
+	setsect 2,0x18120
+	setsect 3,0x40
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x1804a
+	setsect 2,0x110
+	setsect 3,0x13808
+	istore 9,contw
+	setarg 0x1012a
+	istore 3,contw
+	setsect 0,0x20012
+	setsect 1,0x200c0
+	setsect 2,0x12012
+	setsect 3,0x4c
+	istore 9,contw
+	setsect 0,0x24d02
+	setsect 1,0x8a
+	setsect 2,0x14280
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x22902
+	setsect 1,0x0
+	setsect 2,0x150
+	setsect 3,0x2008
+	istore 9,contw
+	setsect 0,0x20229
+	setsect 1,0x18040
+	setsect 2,0x2001
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x31201
+	setsect 1,0x8005
+	setsect 2,0x2a4d0
+	setsect 3,0x8
+	istore 9,contw
+	setsect 0,0x1828
+	setsect 1,0x8080
+	setsect 2,0x2290
+	setsect 3,0x0
+	istore 9,contw
+	setsect 0,0x20019
+	setsect 1,0x24200
+	setsect 2,0x3022
+	setsect 3,0x6804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1b020
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x2a4b
+	setsect 1,0x30151
+	setsect 2,0x1090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10285
+	setsect 1,0x27a42
+	setsect 2,0x9ea0
+	setsect 3,0x2788
+	istore 9,contw
+	setsect 0,0x11530
+	setsect 1,0x30940
+	setsect 2,0x10750
+	setsect 3,0x654
+	istore 9,contw
+	setsect 0,0x81
+	setsect 1,0x4170
+	setsect 2,0x6090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10385
+	setsect 1,0x241c1
+	setsect 2,0x29e01
+	setsect 3,0x579c
+	istore 9,contw
+	setsect 0,0x12500
+	setsect 1,0x5d40
+	setsect 2,0x8950
+	setsect 3,0xa04
+	istore 9,contw
+	setsect 0,0x10875
+	setsect 1,0x14065
+	setsect 2,0x25001
+	setsect 3,0x17d0
+	istore 9,contw
+	setsect 0,0x1907
+	setsect 1,0x10a40
+	setsect 2,0x81f
+	setsect 3,0x300
+	istore 8,contw
+	setsect 0,0x2001c
+	setsect 1,0x200c0
+	setsect 2,0x2012
+	setsect 3,0x74
+	istore 9,contw
+	setsect 0,0x24a02
+	setsect 1,0x410a
+	setsect 2,0x11
+	setsect 3,0x7804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1f040
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a4c
+	setsect 1,0x0
+	setsect 2,0x2002
+	setsect 3,0xa000
+	istore 9,contw
+	setsect 0,0xf02
+	setsect 1,0x846
+	setsect 2,0x3020
+	setsect 3,0x4a0
+	istore 9,contw
+	setsect 0,0x2212
+	setsect 1,0x24080
+	setsect 2,0x12a1
+	setsect 3,0x8c00
+	istore 9,contw
+	setsect 0,0x20200
+	setsect 1,0x8a40
+	setsect 2,0x0
+	setsect 3,0x0
+	istore 9,contw
+	rtn
+	
+shutter_init_param:
+	jam 1,mem_le_pres_auth
+	jam 1,mem_le_flag
+	jam 1,mem_le_pairing_mode
+	setarg 0x1b
+ 	store 2,mem_le_pairing_handle
+ 	jam 1,mem_le_adv_direct_addr_type
+ 	jam 3,mem_empty_count
+ 	jam 0x50,mem_le_transmit_window
+ 
+ 	jam 0x17,mem_le_local_mtu
+ 	jam 0x17,mem_le_remote_mtu
+ 	arg mem_le_pres,contw
+ 	setsect 0,0x302
+	setsect 1,0x40
+	setsect 2,0x1021
+	setsect 3,0x0
+	istore 7,contw
+	arg mem_le_interal_min,contw
+	setsect 0,0x8
+	setsect 1,0x4
+	setsect 2,0x2c000
+	setsect 3,0x4
+	istore 8,contw
+	rtn
+
+	
+else
+shutter_init:
+shutter_cancel_key_shake:
+shutter_send_process:
+shutter_scan_key_start:
+shutter_send_process_end:
+shutter_iphonekey_release:
+shutter_iphonekey_press:
+shutter_androidkey_release:
+shutter_androidkey_press:
+shutter_send_keydata:
+shutter_scan_key:
+shutter_process_bb_event:
+shutter_bb_event_setup_complete:
+shutter_bb_event_hid_connected:
+shutter_reconnect_scan:
+shutter_reconnect_scan_2:
+shutter_process_idle:
+shutter_le_discovery_timeout_sleep:
+        branch assert
+	
+endif
Index: ble fast connect receive/program/simple_pairing.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/simple_pairing.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/simple_pairing.prog	(working copy)
@@ -0,0 +1,2269 @@
+
+publickey_init:
+	fetch 1,mem_ssp_enable
+	nbranch sp_initialize,blank
+	branch sp_initialize_256
+
+publickey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_local_key_invalid
+	rtneq SP_KEY_VALID_256
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,stop_publickey_calc_256
+	fetch 1,mem_le_sc_calc
+	beq SP_CALC_STANDBY,sp_initialize_256
+	rtn
+stop_publickey_calc_256:
+	jam SP_CALC_STANDBY,mem_le_sc_calc	
+	rtn
+	
+ifdef SIMPLE_PAIRING
+
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	fetch 1,mem_ssp_enable 
+	branch ssp_disable, blank
+	call ssp_enable
+	call sp_clear_flags
+	branch sp_pubkey_calc 
+	
+sp_clear_flags:
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	store 7,mem_sp_iocap_remote
+	rtn
+
+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 */
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+	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  
+
+	call sp_confirm_check_success
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch tid_set_reply
+    
+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 patch3c_3,mem_patch3c
+	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 patch3c_4,mem_patch3c
+	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 patch3c_5,mem_patch3c
+         fetch 1,mem_sp_flag
+         rtn blank
+	call lmo_fifo_check
+	nrtn 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 patch3c_6,mem_patch3c
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	call lmo_fifo_check
+	nrtn 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 patch3c_7,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	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_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_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_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 patch3d_0,mem_patch3d
+	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_number_confirm:
+	call g_noninit0
+	call sha_result
+	branch g_common0
+
+g_noninit:
+	call g_noninit0
+	branch g_common0
+	
+g_noninit0:
+ 	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
+	call g_common
+	branch g_common0
+	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	branch sha
+g_common0:
+	fetch 4,memresult
+//	store 4,mem_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_gkey
+	iadd temp,pdata
+	store 4,mem_gkey
+	rtn
+
+function_f1_no_key:
+	jam 0,mem_passkey_1bit
+	branch function_f1_common
+	
+function_f1:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f1_no_key
+function_f1_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	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
+	
+	fetch 1,mem_passkey_1bit
+	
+	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:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3a_no_pin
+function_f3a_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	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_f3_common
+
+function_f3a_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3a_common
+
+function_f3b_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3b_common
+
+
+function_f3b:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3b_no_pin
+function_f3b_common:
+	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_f3_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   4,contw
+	fetch 4,mem_pin
+	istore   4,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                
+	             
+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
+
+else
+sp_initialize:
+	rtn
+
+endif
+	
+
+ifdef SECURE_CONNECTION
+
+sp_initialize_256:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 1,mem_le_secure_connect_enable
+	branch  le_secure_connection_disable,blank
+	call le_secure_connection_enable
+	call sp_clear_flags
+//	jam SP_KEY_INVALID_256,mem_le_sc_local_key_invalid
+	branch sp_pubkey_calc_256
+    	
+
+
+
+sp_pubkey_calc_256:
+	fetch    1,mem_le_sc_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+	
+	arg      mem_le_private_key_256,contw 
+	force    15,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32 //mem_sp_private_key=>mem_k 
+
+	arg      mem_ax_256,contw
+	arg      mem_gx_256,contr
+	call     memcpy64 //mem_gx=>mem_ax 
+	
+	arg      mem_az_256,contw
+	call      clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam SP_CALC_PUBKEY_256,mem_le_sc_calc
+	rtn    
+
+sp_pubkey_generated_256:
+	arg      mem_le_pubkey_local_x_256,contw
+	arg      mem_bx_256,contr
+	call     memcpy64   
+	jam      SP_KEY_VALID_256,mem_le_sc_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+	
+
+
+sp_dhkey_calc_256:
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32
+
+	arg      mem_ax_256,contw
+	arg      mem_le_pubkey_remote_x_256,contr
+	call     memcpy64
+
+	arg      mem_az_256,contw
+	call     clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam     SP_CALC_DHKEY_256,mem_le_sc_calc
+	rtn 
+
+
+sp_dhkey_generated_256:
+//	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_le_dhkey_256,contw
+	arg mem_bx_256,contr
+	call memcpy32
+	jam SP_KEY_VALID_256,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+
+
+
+sp_calc_sequence_256:
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_le_sc_calc
+	rtnbit1 7
+	fetch    2,mem_ec_loopc
+	branch   sp_calc_sequence_done_256,blank
+	branch   eckp_calc_256
+
+sp_calc_sequence_done_256:    
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	call ecunmapz_256
+	fetch 1,mem_le_sc_calc
+	beq  SP_CALC_PUBKEY_256,sp_pubkey_generated_256
+	beq  SP_CALC_DHKEY_256,sp_dhkey_generated_256
+	rtn
+
+
+eckp_calc_256:
+	call     ecdbl_256  
+	fetch    2,mem_ec_loopc
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd_256   
+
+eckp_calc_init_256:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	setarg 256,pdata
+	store 2,mem_ec_loopc
+eckp_calc_init_256_1:    
+	fetch    2,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	branch eckp_calc_init_256_1,true
+	arg      mem_ax_256,contr
+	arg      mem_cx_256,contw
+	branch     memcpy96	
+
+
+ecunmapz_256:
+	arg mem_cz_256,regA
+	arg mem_t3_256,contw
+	call bn_invmod_256			/* t3 = 1/z */
+	arg mem_t3_256,regA
+	arg mem_t1_256,contw		
+	call bn_sqrmod_256			/* t1 = 1/z2 */
+	arg mem_cx_256,regA
+	arg mem_t1_256,regB
+	arg mem_bx_256,contw
+	call bn_mulmod_256
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw			
+	call bn_mulmod_256			/* t2 = 1/z3 */
+	arg mem_cy_256,regA
+	arg mem_t2_256,regB
+	arg mem_by_256,contw
+	branch bn_mulmod_256	
+	
+ecdbl_256:
+	arg mem_cz_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_a_256,regA
+	arg mem_t3_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=a*z4	*/
+	arg mem_cx_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_t2_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256
+//call ice_break
+	arg mem_t2_256,regA
+	arg mem_t3_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256		/* t2=3*x2 + z*z4		D  */
+//call ice_break
+	arg mem_cx_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_cy_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA		
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		//S = 4X1Y1^2/* t1=4x*y2	B	*/
+	arg mem_t3_256,regA
+	arg mem_t0_256,contw
+	call bn_sqrmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256		
+	arg mem_t0_256,regA		
+	call bn_lshiftmod_256	//T = 8Y1^4	/* t0=8*y4		C */
+	arg mem_cy_256,contr
+	arg mem_t3_256,contw
+	call memcpy32
+	arg mem_t3_256,regA
+	call bn_lshiftmod_256
+	arg mem_t3_256,regA
+	arg mem_cz_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		//z = 2Y1Z1
+
+
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256   // M ^2
+//call ice_break
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256  // t2^2 - 4*cx *cy^2 
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256   //X2
+	arg mem_t1_256,regA
+	arg mem_cx_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256   //S-X2
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	//M(S-X2)	
+	arg mem_t3_256,regA
+	arg mem_t0_256,regB
+	arg mem_cy_256,contw
+	branch bn_submod_256  //M(S-X2)-T Y2	
+
+ecadd_256:
+
+	arg mem_az_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_cx_256,regA
+	arg mem_t7_256,regB
+	arg mem_t0_256,contw
+	call bn_mulmod_256		/* n1=t0=xa*zb2 U1 = X1Z0^2*/
+
+
+	arg mem_az_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_cy_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* n2=t1=ya*zb3   S1 = Y1Z0^3*/
+
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_ax_256,regA
+	arg mem_t7_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* n3=t2=xb*za2  U0 = X0Z1^2*/
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_ay_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* n4=t3=yb*za3 S0 = Y0Z1^3*/
+
+
+//	arg mem_t0_256,regA
+//	arg mem_t2_256,regB
+	arg mem_t0_256,regb
+	arg mem_t2_256,rega
+	arg mem_t7_256,contw
+	call bn_submod_256		/* n5=t7=n1-n3=t0-t2   W=U1-U0*/
+	arg mem_t0_256,regA
+	arg mem_t2_256,regB
+	arg mem_t0_256,contw
+	call bn_addmod_256		/* n7=t0=n1+n3=t0+t2    T=U1+U0 */
+//	arg mem_t1_256,regA
+//	arg mem_t3_256,regB
+	arg mem_t1_256,regb
+	arg mem_t3_256,rega
+	arg mem_t2_256,contw
+	call bn_submod_256		/* n6=t2=n2-n4=t1-t3  S1-S0 */
+	arg mem_t1_256,regA
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_addmod_256		/* n8=t1=n2+n4=t1+t3 M=S1+S0*/
+	arg mem_t1_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5     MW */
+	arg mem_cz_256,regA
+	arg mem_az_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	      //Z0Z1
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		/* z=za*zb*n5   Z0Z1W */
+
+	arg mem_t7_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256		/* t7=n5^2 */
+	arg mem_t7_256,regA
+	arg mem_t0_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=n5^2*n7 */
+	arg mem_t7_256,regA
+	arg mem_t1_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5^3 */
+	arg mem_t2_256,regA
+	arg mem_cx_256,contw
+	call bn_sqrmod_256		
+	arg mem_cx_256,regA
+	arg mem_t3_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256		/* x=n6^2-n5^2*n7 */
+	arg mem_cx_256,contr
+	arg mem_t7_256,contw
+	call memcpy32
+	arg mem_t7_256,regA
+	call bn_lshiftmod_256		/* t7=2*x */
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256		/* t3=n9 */
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* t2=n9*n6 */
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_cy_256,contw
+	call bn_submod_256	
+	arg mem_cy_256,regA
+	arg mem_p_256,regB
+	arg mem_cy_256,contw
+	force 0,regC
+	fetch 1,mem_cy_256
+	isolate1 0,pdata
+	call bn_add_256,true
+	copy regC,alarm
+	arg mem_cy_256,regA
+	call bn_rshift_256
+	fetch 1,mem_cy5_256
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5_256
+	rtn	
+
+bn_invmod_256:
+	copy contw,timeup					 
+	arg mem_tmp0_256,contw			 
+	call clear_mem_256
+	force 0,pdata
+//	store 4,mem_tmp52
+	store 4,mem_t2_256
+	jam 1,mem_tmp0_256      //y1
+	arg mem_tmp1_256,contw	//y2			 
+	call clear_mem_512      
+	arg mem_p_256,contr
+	arg mem_tmp2_256,contw		//j		 
+	call memcpy32
+	copy regA,contr
+	arg mem_tmp3_256,contw		//i		 
+	call memcpy32
+	
+//	arg mem_tmp22,regA
+//	arg mem_tmp32,regB
+//	call p_bn_bigeq_256
+//	branch assert,positive
+bn_invmod_256_2:	
+	arg mem_tmp3_256,contr
+	call bn_eq_zero_256
+	branch bn_invmod_256_0,blank
+//call ice_break    	
+//fetch 1,0x4ffe
+//increase 1,pdata
+//store 1,0x4ffe
+	arg mem_tmp3_256,regA
+	arg mem_tmp0_256,regB
+	call bn_rshifteven_256
+	arg mem_tmp2_256,regA
+	arg mem_tmp1_256,regB
+	call bn_rshifteven_256
+	
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	call bn_bigeq_256
+	branch bn_invmod_256_1,positive
+	arg mem_tmp2_256,regA
+	arg mem_tmp3_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp0_256,regA
+	arg mem_tmp1_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_1:
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp1_256,regA
+	arg mem_tmp0_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_0:
+//call ice_break
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	call  bn_p256mod
+//call ice_break
+	arg mem_p_256,regA
+	copy timeup,regB
+	copy timeup,contw
+	branch bn_submod_256
+
+
+bn_mulmod_256:
+	copy contw,timeup					/* save result ptr */
+	
+	force 0,regext_index
+	
+	arg mem_tmp1_256,contw
+	call clear_mem_512
+	arg mem_regext,contw
+	call clear_mem_512
+//	jam 0,mem_regext_index
+
+//	arg mem_tmp12,contw
+	copy regA,contr
+//	force 0,regext_index
+	jam 0,mem_regext
+	setarg 0
+	call bn_load_mem
+	copy regB,contr
+	call bn_load_256
+//	force 0,regB
+//	jam 0,mem_regb
+	force 0,queue
+	arg mem_tmp1_256,contw	
+bn_mulmod_256_1:	
+//	copy regb,pdata
+//	store 1,
+	arg mem_regext,temp
+	copy queue,regb
+	lshift2 regb,pdata
+//	lshift4 pdata,pdata
+	iadd temp,regb	
+	force 0,temp
+	force 0,regC
+bn_mulmod_256_0:
+//	copy contw,pdata
+//	store 2,mem_contw
+//call ice_break
+//	copy pdata,contw
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+//	copy regB,regext_index
+//	deposit regext
+	ifetch 4,regb
+	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 8,regC,0xff
+	nbranch bn_mulmod_256_0,true
+//call ice_break
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -32,contw
+//	fetch 1,mem_regb
+//	copy pdata,regb
+	increase 1,queue
+	compare 8,queue,0xff
+	nbranch bn_mulmod_256_1,true
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	branch bn_p256mod
+
+bn_p256mod:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add regA,44,contr
+	call memcpy8
+	call memcpy12
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S1
+	arg mem_tmp2_256,regB
+	copy alarm,rega   
+	copy timeup,contw
+	call bn_addmod_256 //T+2S1
+//call ice_break	
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add alarm,48,contr
+	call memcpy16
+	call memset0_4	
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S2
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy timeup,rega   
+	copy regA,contw	
+	call bn_addmod_256  //+2S2
+//call ice_break	
+//	arg 0,regB
+		
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,56,contr
+	call memcpy8
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S3
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,36,contr
+	call memcpy12
+	add alarm,52,contr	
+	call memcpy12
+	add alarm,52,contr
+	call memcpy4
+	add alarm,32,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S4	
+//call ice_break	
+//	arg 1,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,44,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,32,contr
+	call memcpy4
+	add alarm,40,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D1	
+//call ice_break	
+//	arg 2,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,48,contr
+	call memcpy8
+	call memcpy8
+	force 0,pdata
+	istore 8,contw
+	add alarm,36,contr
+	call memcpy4
+	add alarm,44,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D2	
+//call ice_break	
+//	arg 3,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,52,contr
+	call memcpy12
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,48,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D3
+//call ice_break	
+//	arg 4,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,56,contr
+	call memcpy8
+	call memset0_4	
+	add alarm,36,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,52,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	branch  bn_submod_256 //-D4	
+
+
+bn_load_mem:
+	force 32,loopcnt
+	arg mem_regext,contw
+	iadd contw,contw
+	branch memcpy
+
+bn_load_256:
+	force 8,loopcnt
+	branch bn_load_0
+
+bn_sqrmod_256:
+	copy regA,regB
+	branch bn_mulmod_256
+
+bn_add_256:
+	force 8,loopcnt
+ 	branch bn_add+1
+
+bn_addmod_256:
+	call bn_add_256
+	copy contw,regA
+	branch bn_lshiftmod_ismod_256
+
+bn_lshiftmod_256:
+	call bn_lshift_256
+bn_lshiftmod_ismod_256:	
+	isolate1 0,regC
+	branch bn_lshiftmod_p_256,true
+	arg mem_p_256,regB
+	copy regA,regC
+	increase -32,regA
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+	
+bn_lshiftmod_p_256:
+	call sub_p2_256
+//	nrtn true
+	copy regA,regC
+	increase -32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+		
+	
+sub_p2_256:
+	increase -32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_sub_256
+	
+
+
+	
+bn_submod_256:
+	call bn_sub_256
+//	isolate1 0,regC
+	branch  bn_submod_256_np,true
+//	copy regA,regC
+//	increase -32,regA
+	add contw,-32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	arg mem_p_256,regB
+	add contw,-32,regA
+//	copy regC,regA
+	copy rega,contw
+	branch  bn_sub_256
+bn_submod_256_np:	
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	call bn_add_256
+//	isolate1 0,regC
+	rtn true
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_add_256	
+
+
+ 
+bn_sub_256:
+	force 8,loopcnt
+	branch bn_sub+1
+
+bn_rshift_256:
+	force 8,loopcnt
+	increase 28,regA
+	branch bn_rshift
+
+bn_lshift_256:
+	force 8,loopcnt
+	force 0,regC
+	branch bn_lshift_0
+
+bn_bigeq_256:
+	force 8,loopcnt
+	increase 28,regA
+	increase 28,regB
+	branch bn_bigeq_0
+
+
+bn_eq_zero_256:
+	ifetch 8,contr
+	nrtn blank
+	branch bn_eq_zero
+
+
+
+	
+bn_rshifteven_256:
+	copy regA,alarm
+bn_rshifteven_256_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift_256
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_256_0,true
+	arg mem_p_256,regA
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						 
+	increase -32,regB
+bn_rshifteven_256_0:
+	add regB,32,regA
+	force 9,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_256_1		
+
+else
+sp_initialize_256:
+	rtn
+
+endif
+
+
Index: ble fast connect receive/program/ui.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/ui.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/ui.prog	(working copy)
@@ -0,0 +1,480 @@
+ui_init:
+	call lpm_disable_exen_output
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	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_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	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:
+	jam 0xff,mem_led_blink_count
+ui_led_blink_start1:
+	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 patch3e_1,mem_patch3e
+	fetch 1,mem_led_blink_count
+	rtn blank
+	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,in_ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch in_ui_led_blink_timer_start
+in_ui_led_blink_polling_dark:
+	call ui_led_off
+	fetch 1,mem_led_blink_count
+	beq LED_FLASH_INFINITE,in_ui_led_infinite
+	increase -1,pdata
+	store 1, mem_led_blink_count
+in_ui_led_infinite:
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+in_ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+ui_timer_timeout:
+	setarg 0x1000
+	lshift16 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	copy regb,pdata
+	isub temp,null
+	ncall ui_timer_timeout,positive
+	//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 patch3e_3,mem_patch3e
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	set0 28,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_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	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 patch3e_5,mem_patch3e
+	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:
+	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 patch3e_6,mem_patch3e
+	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 patch3e_7,mem_patch3e
+	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_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
+ifdef COMPILE_24G
+	beq BT_CMD_START_24G,check_51cmd_start24g
+	beq BT_CMD_STOP_24G,check_52cmd_stop24g
+	beq BT_CMD_PAIR_24G,check_51_cmd_pairing_24g
+endif 
+	//context related, process in context
+	store 1,mem_fifo_temp
+	set1 mark_ext_patch,mark
+	bpatch patch3f_0,mem_patch3f
+	call lmo_fifo_check
+	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
+  	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,check_51cmd_ble_update_connect_param
+	beq BT_CMD_DHKEY_NOT_ACCEPT,check_51cmd_dhkey_not_accept
+  	rtn
+
+check_51cmd_dhkey_not_accept:
+	call tid_set_reply
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch parse_lmp_dhkey_check_reject	
+
+check_51cmd_ble_update_connect_param:
+	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
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	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
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_direct_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+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 patch3f_1,mem_patch3f
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	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
+
+ifdef COMPILE_24G
+check_51cmd_start24g:
+	fetch 4,mem_24g_addr_copy
+	store 4,mem_24g_addr
+	branch g24_init
+check_52cmd_stop24g:
+	jam P24G_SM_PAIRING_SUCC,mem_24g_pairing_sm
+	branch g24_uninit
+check_51_cmd_pairing_24g:
+	jam P24G_SM_PAIRING_REQUEST,mem_24g_pairing_sm
+	call g24_init
+	setarg -1
+	store 4,mem_24g_addr
+	branch g24_pairing_ch		//must change ch at last
+endif
+
+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: ble fast connect receive/program/utility.prog
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/utility.prog	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/program/utility.prog	(working copy)
@@ -0,0 +1,606 @@
+
+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
+	
+get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+store_contr:
+	copy contr,pdata
+	store 2,mem_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
+
+memcpy96:
+	call memcpy32
+memcpy64:
+	call memcpy32
+	branch memcpy32
+memcpy12:
+	call memcpy8
+memcpy4:
+	ifetch 4,contr
+	istore 4,contw
+	rtn	
+memcpy8:
+	ifetch 8,contr
+	istore 8,contw
+	rtn	
+
+memcpy48:
+	call memcpy16
+memcpy32:
+	call memcpy8
+memcpy24:
+	call memcpy8
+memcpy16:
+	call memcpy8
+	branch memcpy8
+
+
+
+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
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+memset0_8:
+	force 0,pdata
+	istore 8,contw
+	rtn
+memset0_4:
+	force 0,pdata
+	istore 4,contw
+	rtn	
+	
+clear_mem_256:
+	force 4,loopcnt
+	branch memset0 
+clear_mem_512:
+	force 8,loopcnt
+	branch memset0 
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+
+clear_temp_block:
+	arg 32,loopcnt
+	arg mem_temp_block0,contw
+	branch clear_mem
+	
+xor_loop:
+	ifetch   4,regc
+	ifetcht 4,rega
+	ixor     temp,pdata
+	istore   4,contw	
+	increase 4,rega
+	increase 4,regc
+	loop  xor_loop
+	rtn
+	
+// 11 22 -> 22 11; 11 22 33 -> 33 22 11 
+// rega:data addr ;loopnct:length
+inverse_data:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	copy loopcnt,pdata
+	sub pdata,1,null
+	rtn positive
+	iadd rega,regb	
+	increase -1,regb
+	rshift loopcnt,loopcnt
+inverse_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	istore 1,rega
+	istoret 1,regb
+	increase -1,regb
+	increase 1,rega
+	loop inverse_loop
+	rtn
+
+
+memcpy_fast:
+	deposit loopcnt
+	rtn blank
+memcpy_fast_loop:
+	increase -8,loopcnt
+	call memcpy8,positive
+	rtn zero
+	branch memcpy_fast_loop,positive
+	increase 8,loopcnt
+memcpy_fast_loop_four:
+	increase -4,loopcnt
+	call memcpy4,positive
+	rtn zero
+	branch memcpy_fast_loop_four,positive
+	increase 4,loopcnt
+	branch memcpy
+ 
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	rshift clkn_bt,temp
+	storet 4,mem_last_clkn
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	rtn
+
+timer_check_timeout:
+	arg 0x800,timeup
+	lshift16 timeup,timeup
+	iadd timeup,pdata
+	rtn
+
+
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn	
+	isub temp,null
+	ncall timer_check_timeout,positive	
+	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
+
+
+
+	/* 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
+
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	loop string2dec_from_uart_done
+	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
+
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+
+
+//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	
+*/
+
+	//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 
+
+
+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_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 patch3f_5,mem_patch3f
+	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 patch3f_6,mem_patch3f
+	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: ble fast connect receive/sched/109x.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/109x.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/109x.dat	(working copy)
@@ -0,0 +1,34 @@
+mem_lpm_config:8f 1e ca
+mem_lpm_buckcnt:0a 0b ef 07
+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 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+#mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
+
Index: ble fast connect receive/sched/DM_module.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/DM_module.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/DM_module.dat	(working copy)
@@ -0,0 +1,448 @@
+
+mem_device_option:0a
+mem_ui_profile_supported:40
+mem_app_connection_options:13
+
+mem_module_wake_up_gpio:9b
+mem_module_connect_state_gpio:85
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+mem_module_mcu_wake_pin:88 
+mem_module_mcu_wake_delay_us:80 03 00 00 
+
+
+mem_lpm_mode:01
+mem_lpm_mult:04
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 01
+
+mem_features:
+ff
+ff
+8f
+f8      #fe--EDR  F8--BR
+9b      #AFHclose 83
+9d
+59
+83
+
+##############ADC CONFIG##############
+mem_module_read_vdd_count:01
+mem_module_read_vdd_flag:01
+#####################################
+
+##############NVRAM CONFIG##############
+mem_nv_data_ptr:mem_nv_data
+mem_nv_data_number:05
+#####################################
+
+##############SPP CONFIG##############
+mem_credit_flag:00
+mem_rfcomm_max_frame_size:7f 00
+mem_rfcomm_credit_init_data:07
+#####################################
+
+##############SSP CONFIG##############
+mem_sp_iocap_local:03 00 04
+mem_ssp_enable:01
+mem_pin_length:04  30 30 30 30 30
+#####################################
+
+##############UART CONFIG##############
+mem_baud:A0 01
+mem_module_uart_rx_buffer:00 4c
+mem_module_uart_rx_buffer_end:ff 4f
+mem_module_uart_tx_buffer:00 1c
+mem_module_uart_tx_buffer_end:ff 1f
+#####################################
+
+
+
+##############BLUETOOTH CONFIG##############
+###commom###
+mem_soft_version_num:00 01
+mem_module_state:03
+mem_module_bluetooth_stauts_by_command:07
+mem_class:24 04 04
+
+mem_module_flag:00
+#bit0 MODULE_FLAG_UART_FLOW_CONTROL
+#bit1 MODULE_FLAG_BLE_RECEIVED_DATA
+
+###3.0###
+mem_scan_mode:00
+mem_module_spp_lpm_mult:28
+mem_lap:77 1a 21 31 10 3a
+mem_local_name_length:
+'YichipFPGA
+
+###3.0 sinff param###
+mem_sniff_param_interval:20 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:00
+
+
+###ble###
+mem_le_secure_connect_enable:00
+mem_le_pairing_mode:01
+
+mem_module_data_write_handle:2d 00
+mem_module_data_write_handle2:2f 00
+
+mem_le_flag:00
+#bit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+#bit1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+
+#mem_le_keyid:#62746c65
+#656c7462
+
+#mem_p_256:FFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000001000000FFFFFFFF
+
+#mem_a_256:FcFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000001000000FFFFFFFf
+#mem_gx_256:96c298d84539a1f4a033eb2d817d0377f240a463e5e6bcf847422ce1f2d1176b
+#mem_gy_256:f551bf376840b6cbce5e316b5733ce2b169e0f7c4aebe78e9b7f1afee242e34f
+#mem_le_slat:#6C 88 83 91 AA F5 A5 38 60 37 0B DB 5A 60 83 BE  #const
+#BE83605ADB0B376038A5F5AA9183886C
+#mem_le_private_key_256:
+#bd1a3ccda6b8995899b740eb7b60ff4a503f10d2e3b3c974385fc5a3d4f6493f
+
+mem_le_adv_enable:00
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+mem_le_lap:7a 31 00 33 02 2a
+mem_le_name_len:
+'YichipFPGAle
+
+mem_le_adv_data_len:03
+mem_le_adv_data:
+02 01 0e
+
+mem_le_scan_data_len:0e
+
+mem_le_scan_data:# 1 byte length + 1 byte type + N bytes data
+'\09YichipFPGAle
+
+mem_le_pres:02 03 00 05 10 02 03
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_local_mtu:41
+mem_le_remote_mtu:17
+
+mem_le_pairing_handle:2f 00
+
+#####################################
+
+
+mem_eir_enable:01
+mem_all_uuid_16bits: 
+05
+03#Type: Complete list of 16-bit UUIDs
+0012 0001 0100 0111 0300 
+
+mem_all_uuid_128bits:
+00#01
+#07#Type: Complete list of 128-bit UUIDs
+#00000000decafadedecadeafdecacaff
+
+mem_ui_uuid_table:mem_module_uuid_list
+
+mem_module_uuid_list:
+03
+12
+00
+01
+00
+00
+01
+00
+01
+00
+01
+36
+00
+52
+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
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+03
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+06
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+03
+11
+01
+00
+03
+01
+00
+00
+01
+00
+03
+36
+00
+46
+09
+00
+00
+0a
+00
+01
+00
+03
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+02
+0a
+00
+00
+00
+00
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+01
+00
+25
+0a
+53
+50
+50
+20
+73
+6c
+61
+76
+65
+00
+00
+00
+01
+00
+
+
+mem_ui_le_uuid_table:mem_module_le_att_list
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_module_le_att_list:
+
+#Primary service GAP ------
+01 00  02 00 28 02 00 18
+
+#Device name
+02 00 02 03 28 01 0a
+03 00 02 00 2a 12 41 73 74 20 4c 45 20 4d 6f 75 73 65 20 20 20 20 20 20 
+
+
+#Appearance
+04 00 02 03 28 01 02
+05 00 02 01 2a 02 c8 00 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 02 03 28 01 02
+07 00 02 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+
+#privcy flag
+08 00 02 03 28 01 02
+09 00 02 02 2a 01 01
+
+#reconnecting addr 
+0a 00 02 03 28 01 08
+0b 00 02 03 2a 06 00 00 00 00 00 00
+
+#Primary service GATT ------
+0c 00 02 00 28 02 01 18
+
+#Service changed
+0d 00 02 03 28 01 20
+0e 00 02 05 2a 00
+#Client Characteristic Configuration
+0f 00 02 02 29 02 00 00
+
+#Primary service TX power ------
+10 00 02 00 28 02 04 18
+#Characteristic Tx power level
+11 00 02 03 28 01 16
+12 00 02 07 2a 01 00
+13 00 02 02 29 02 00 00
+
+#Primary service Battery ------
+14 00 02 00 28 02 0f 18
+#Characteristic Battery level
+15 00 02 03 28 01 12
+16 00 02 19 2a 01 38
+
+#Primary service device infomation
+17 00 02 00 28 02 0a 18
+#Characteristic system id
+18 00 02 03 28 01 02
+19 00 02 23 2a 03 00 00 00
+
+#Characteristic manufactor name
+1a 00 02 03 28 01 02
+1b 00 02 29 2a 08 46 6c 61 67 74 72 69 70
+
+#Characteristic module number
+1c 00 02 03 28 01 02
+1d 00 02 24 2a 06 79 69 63 68 69 70
+
+#Characteristic serial number
+1e 00 02 03 28 01 02
+1f 00 02 25 2a 04 63 6f 6d 33
+
+#Characteristic firmware version
+20 00 02 03 28 01 02
+21 00 02 26 2a 03 31 2e 30
+
+#Characteristic software version
+22 00 02 03 28 01 02
+23 00 02 28 2a 03 31 2e 30
+
+#Characteristic hardware version
+24 00 02 03 28 01 02
+25 00 02 2a 2a 03 31 2e 30
+
+#Characteristic regulatory version
+26 00 02 03 28 01 02
+27 00 02 25 2a 04 63 6f 6d 33
+
+#Primary service yichip transmit ------
+28 00 02 00 28 10 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 00
+#Characteristic tx--notify
+29 00 02 03 28 01 10
+2a 00 02 11 ff 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+2b 00 02 02 29 02 00 00
+
+#Characteristic rx--write
+2c 00 02 03 28 01 04
+2d 00 10 ff 22 33 44 55 66 77 88 99 aa bb cc dd ee ff ff 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+2e 00 02 03 28 01 0a
+2f 00 02 11 dd 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+
+#End of Attribute list
+00 00
+
+
Index: ble fast connect receive/sched/fpga.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/fpga.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/fpga.dat	(working copy)
@@ -0,0 +1,36 @@
+
+
+
+#4010:c0
+#4011:0f
+#4022:80
+#4023:02
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
Index: ble fast connect receive/sched/gatt.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/gatt.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/gatt.dat	(working copy)
@@ -0,0 +1,88 @@
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip transmit ------
+12 00 00 28 02 f0 18
+#Characteristic tx--notify
+13 00 03 28 01 12
+14 00 f1 2a 14	# for Android device, ATT MTU is just 23 bytes, so payload is 20 bytes max
+'Test read initial va
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic rx--write
+16 00 03 28 01 0c
+17 00 f0 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_enable:01
+mem_le_adv_data_len:03
+
+mem_le_adv_data:02 01 05
+#flags NOTE: should be included here, or Android will not do connectgatt()
+
+
+mem_le_scan_data_len:17
+
+mem_le_scan_data:	# 1 byte length + 1 byte type + N bytes data
+
+#complete local name
+0e 09 
+#'Ast LE2Serial
+'YiChip BLE2IR
+
+#16bit uuid
+03 03 00 f0
+
+#Apperance
+03 19 40 02
+
+
+mem_le_adv_interval_min:00 08
+mem_le_adv_interval_max:00 08 
+mem_le_adv_direct_addr_type:01
+mem_le_adv_channel_map:07 
+mem_le_adv_led:0a
+
+mem_lap:77 11 00 33 00 00
+
Index: ble fast connect receive/sched/hci.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/hci.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/hci.dat	(working copy)
@@ -0,0 +1,8 @@
+#device parameters
+mem_lap:88 11 00 33 00 00
+mem_local_name_length:09
+mem_local_name:'Bluetooth
+mem_device_option:01
+mem_ssp_enable:01
+mem_lpm_mode:01
+mem_3v_adc_data:00 00
\ No newline at end of file
Index: ble fast connect receive/sched/hci_boot.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/hci_boot.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/hci_boot.dat	(working copy)
@@ -0,0 +1,11 @@
+
+mem_patch00:01
+mem_lpm_config:8f 10 ca
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: ble fast connect receive/sched/kb.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/kb.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/kb.dat	(working copy)
@@ -0,0 +1,388 @@
+mem_class: 40 25
+mem_ui_button_gpio:1f
+mem_ui_button_timeout:03
+mem_discovery_timeout:b8 0b 
+mem_led_gpio:1e
+mem_led_cap_gpio:1d
+mem_led_num_gpio:1d
+mem_led_scl_gpio:1d
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+
+mem_lap:26 01 23 01 23 01        
+mem_local_name_length:0a
+mem_local_name:
+'YiCHiP kb1
+
+mem_app_connection_options:17
+
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 02
+
+
+mem_lpm_mode:00
+mem_lpm_mult:00#02
+mem_sniff_param_interval:12 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_sp_iocap_local:03 00 04
+
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+0011 0100 1002 1124  1200  0001
+
+mem_all_uuid_128bits:00
+
+mem_ui_uuid_table:mem_keyboard_uuid_list
+#keyboard uuid
+mem_keyboard_uuid_list:
+#uuids
+04 0011 0100 1002 1124
+
+#handle
+00010000
+
+#total length
+3601aa
+
+#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 3599 3597 0822 2593
+
+# 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
+
+050c # Usage Page(Consumer)
+0901 # Usage(Control)
+a101 # Collection(Application)
+8502 # Report ID(2)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+7501 # Report Size(1)
+9516 # Report Count(22)
+0ab101 # Usage(433)
+0a2302 # Usage(AC Home)					#01 home
+0aae01 # Usage(virtual keyboard)                        #02
+0a8a01 # Usage(AL Email Reader)                      #03
+0940 # Usage(Menu)						#04 menu
+096f # Usage(Lignt Down)					#05
+0a2102 # Usage(AC Search) 					#06
+09b6 # Usage(Scan Previous Track) 			#07 previous music
+09cd # Usage(205)						#08 start music
+09b5 # Usage(Scan Next Track)				#09 next music
+09e2 # Usage(Mute)						#0a
+09ea # Usage(Volume Down)					#0b
+09e9 # Usage(Volume Up)					#0c
+0930 # Usage(Power)                                         #0d
+0a8301 # Usage(music)                                      #0e
+0a0503 # Usage(773)
+0a0703 # Usage(775)
+0a0803 # Usage(776)
+0a0103 # Usage(769)
+0a9e01 # Usage(AL Terminal Lock/Screensaver)	#13
+0a0a03 # Usage(778)
+#0a0b03 # Usage(779)
+0970 # Usage(Lignt Up)						#15
+8102 # Input(Data Variable Absolute)
+9501 # Report Count(1)
+7502 # Report Size(2)
+8103 # Input(Constant Variable Absolute)
+c0 # End Collection
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 090c80
+09020d 2800
+09020e 2801
+09020f 090318
+090210 090000
+#attribute end
+
+#uuids for pnpInformation	
+03 1002 1200 0001
+
+#handle
+00010001
+
+#total length 90 bytes
+3600a1
+
+#attribute list
+090000 0a00010001
+090001 3503 191200
+090004 350d 3506 190100 090001 3503 190001
+090006 3509 09656e 09006a 090100
+090009 3508 3506 191200 090100
+090100 252f42726f6164636f6d20426c7565746f6f746820576972656c657373204b6579626f61726420506e5020536572766572
+090101 25084b6579626f617264
+090200
+090103
+
+090201# VendorID
+090a5c #  befor 05ac  //and 20730 same 2017-7-26
+
+090202#ProductID
+090220
+
+090203
+090001
+090204 
+2801
+090205
+090002
+
+#attribute end
+00
+fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+
+mem_kb_map:
+14 # 00 q
+2b # 01 tab
+04 # 02 a
+29 # 03 esc
+1d # 04 z
+00
+35 # 06 `
+1e # 07 1
+1a # 08 w
+39 # 09 caps
+16 # 0a s
+00
+1b # 0c x
+00
+3a # 0e f1
+1f # 0f 2
+08 # 10 e
+3c # 11 f3
+07 # 12 d
+3d # 13 f4
+06 # 14 c
+63 # 15 .
+3b # 16 f2
+20 # 17 3
+15 # 18 r
+17 # 19 t
+09 # 1a f
+0a # 1b g
+19 # 1c v
+05 # 1d b
+22 # 1e 5
+21 # 1f 4
+18 # 20 u
+1c # 21 y
+0d # 22 j
+0b # 23 h
+10 # 24 m
+11 # 25 n
+23 # 26 6
+24 # 27 7
+0c # 28 i
+30 # 29 ]
+0e # 2a k
+3f # 2b f6
+36 # 2c ,
+00
+2e # 2e =
+25 # 2f 8
+12 #30 o
+40 #31  f7
+0f  #32 l
+00 #33
+37 #34 .
+00 #35
+41 #36 f8
+26 #37 9
+00 #38
+00 #39
+00 #3a
+2c #3b space
+44 #3c f11
+51 #3d down
+4c #3e delete
+00 #3f
+00  # 40 
+81  # 41 lshift
+85 # 42 rshift
+00
+00 # 44 
+00
+00 # 46 
+00 # 47  
+00 #48	
+2a #49 bksp
+31 #4a \
+00 # 4b 
+28 # 4c enter
+00 # 4d 
+42 # 4e  f9
+43 #4f f10
+13  #50 p
+2f  # 51 [
+33 # 52 ;
+34 #53 '
+00 #54  
+38 #55 /
+2d #56 
+27 #57 0
+00 #58
+00 # 59 
+80 # 5a  lctrl
+83 #5b lwin
+00 # 5c  
+87 #5d rwin
+00 # 5e 
+45 # 5f  f12
+00 # 60 
+00 # 61 
+00 # 62 
+00 # 63 
+86 # 64 ralt
+00 # 65 
+00 # 66  
+3e # 67  f5
+00 # 68
+82 # 69 lalt
+00 # 6a  
+00 # 6b  
+00
+00  #6d  
+00
+00 # 6f  
+00
+00
+00
+00
+00 # 74  
+00 # 75 
+00 # 76
+00 # 77  
+00 # 78
+00 # 79  
+00 # 7a
+00 # 7b
+00 # 7c
+4f # 7d right
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+52  # 8b up
+00 # 8c
+50 # 8d  left
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00 # 9b 
+00
+00 # 9d 
+
+#Auto reconnection after power on
+mem_device_option:80
+
+mem_kb_fast_wake_last:ff 00 00 00
+mem_ptt:0
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
Index: ble fast connect receive/sched/le_kb.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_kb.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_kb.dat	(working copy)
@@ -0,0 +1,336 @@
+
+mem_ui_le_uuid_table:mem_keyboard_le_att_list
+
+#attribute list: handle 2bytes  uuid 2bytes  length 1bytes  attribute Nbytes
+mem_keyboard_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18 
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c
+'Ast LE Keybd
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c1 03 #3c1=hid keyboard
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms  latency 100  timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#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
+
+#PNP id
+#0f 00 03 28 01 02
+#10 00 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 00 28 02 0f 18
+
+#Battery level
+12 00 03 28 01 02
+13 00 19 2a 01 33
+
+#Client Characteristic
+14 00 02 29 02 00 00
+
+#Primary service hid ------
+15 00 00 28 02 12 18
+
+#Protocol mode
+16 00 03 28 01 06
+17 00 4e 2a 01 01
+
+#Hid report
+18 00 03 28 01 1a
+19 00 4d 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+1a 00 02 29 02 01 00
+
+#Report reference
+1b 00 08 29 02 02 01 # report id=2, type=1 input
+
+#Report map
+2c 00 03 28 01 0a
+2d 00 4b 2a 43 # length 65 bytes
+05 01 # Usage Page (Generic Desktop) 
+09 06 # Usage (Keyboard) 
+a1 01 # Collection (Application) 
+85 02 #Report ID(1)
+05 07 # Usage Page(Key Codes) 
+19 e0 # Usage Minimum (224) 
+29 e7 # Usage Maximun (231) 
+15 00 # Logical Minimum (0) 
+25 01 # Logical  Maximun (1) 
+75 01 # Report Size (1) 
+95 08 # Report Count (8) 
+81 02 # Input (Data  Variable  Absolute);Modifier byte
+95 01 # Report Count (1) 
+75 08 # Report Size (8) 
+81 01 # Input (Constant);Reserved byte
+95 03 # Report Count (3) 
+75 01 # Report Size (1) 
+05 08 # Usage Page (For LED) 
+19 01 # Usage Minimum (01) 
+29 03 # Usage Maximun (03) 
+91 02 # Output(Data  Variable  Absolute);LED Report
+95 01 # Report Count (1) 
+75 05 # Report Size (5) 
+91 01 # Output(Constant);LED report padding
+95 06 # Report Count (6) 
+75 08 # Report Size (8)  
+15 00 # Logical Minimum (0) 
+26 ff 00 # Logical Maximum (65536) 
+05 07 # Usage Page(Key Codes) 
+19 00 # Usage Minimum (0) 
+2a ff 00 # Usage Maximun (65536) 
+81 00 # Input (Data Array);Key arrays(6 Bytes)
+c0    # End Collection 
+
+#Boot mouse input report
+2e 00 03 28 01 1a
+2f 00 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+30 00 02 29 02 00 00
+
+#Hid information
+31 00 03 28 01 02
+32 00 4a 2a 04 01 01 00 03
+
+#Hid control point
+33 00 03 28 01 04
+34 00 4c 2a 00
+
+#End of Attribute list
+00 00
+
+mem_kb_map:
+14 # 00 q
+2b # 01 tab
+04 # 02 a
+29 # 03 esc
+1d # 04 z
+00
+35 # 06 `
+1e # 07 1
+1a # 08 w
+39 # 09 caps
+16 # 0a s
+00
+1b # 0c x
+00
+3a # 0e f1
+1f # 0f 2
+08 # 10 e
+3c # 11 f3
+07 # 12 d
+3d # 13 f4
+06 # 14 c
+63 # 15 .
+3b # 16 f2
+20 # 17 3
+15 # 18 r
+17 # 19 t
+09 # 1a f
+0a # 1b g
+19 # 1c v
+05 # 1d b
+22 # 1e 5
+21 # 1f 4
+18 # 20 u
+1c # 21 y
+0d # 22 j
+0b # 23 h
+10 # 24 m
+11 # 25 n
+23 # 26 6
+24 # 27 7
+0c # 28 i
+30 # 29 ]
+0e # 2a k
+3f # 2b f6
+36 # 2c ,
+00
+2e # 2e =
+25 # 2f 8
+12 #30 o
+40 #31  f7
+0f  #32 l
+00 #33
+37 #34 .
+00 #35
+41 #36 f8
+26 #37 9
+00 #38
+00 #39
+00 #3a
+2c #3b space
+44 #3c f11
+51 #3d down
+4c #3e delete
+00 #3f
+00  # 40 
+81  # 41 lshift
+85 # 42 rshift
+00
+00 # 44 
+00
+00 # 46 
+00 # 47  
+00 #48	
+2a #49 bksp
+31 #4a \
+00 # 4b 
+28 # 4c enter
+00 # 4d 
+42 # 4e  f9
+43 #4f f10
+13  #50 p
+2f  # 51 [
+33 # 52 ;
+34 #53 '
+00 #54  
+38 #55 /
+2d #56 
+27 #57 0
+00 #58
+00 # 59 
+80 # 5a  lctrl
+83 #5b lwin
+00 # 5c  
+87 #5d rwin
+00 # 5e 
+45 # 5f  f12
+00 # 60 
+00 # 61 
+00 # 62 
+00 # 63 
+86 # 64 ralt
+00 # 65 
+00 # 66  
+3e # 67  f5
+00 # 68
+82 # 69 lalt
+00 # 6a  
+00 # 6b  
+00
+00  #6d  
+00
+00 # 6f  
+00
+00
+00
+00
+00 # 74  
+00 # 75 
+00 # 76
+00 # 77  
+00 # 78
+00 # 79  
+00 # 7a
+00 # 7b
+00 # 7c
+4f # 7d right
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+52  # 8b up
+00 # 8c
+50 # 8d  left
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00 # 9b 
+00
+00 # 9d 
+
+#Auto reconnection after power on
+
+mem_le_adv_data_len:19
+mem_le_adv_data:0d 09 
+'Ast LE Keybd
+03 19 c1 03 02 01 05 03 03 12 18
+mem_le_scan_data_len:00
+
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_adv_interval_min:20 00 
+mem_le_adv_interval_max:20 00 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:00
+mem_le_adv_direct_addr_type:00
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_lap:11 00 11 00 e1 ed
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_device_option:0c
+mem_lpm_mode:38
+#mem_lpm_ctrl:0f 0f 10 06
+#mem_lpm_xtalcnt:0c 10 ca 1f
+
+mem_le_adv_enable:01
+mem_le_notify_handle:19
+
+mem_led_gpio:9e
+mem_led_cap_gpio:9c
+mem_led_num_gpio:9c
+mem_led_scl_gpio:9c
+
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_le_led_on_time:58 02
+
+mem_ui_button_gpio:1f
+mem_ui_button_timeout:28
+mem_kb_fast_wake_last:ff 00 00 00
\ No newline at end of file
Index: ble fast connect receive/sched/le_mouse.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_mouse.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_mouse.dat	(working copy)
@@ -0,0 +1,248 @@
+
+mem_ui_le_uuid_table:mem_mouse_le_att_list
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_mouse_le_att_list:
+
+#Primary service GAP ------
+01 00 02 00 28 02 00 18 
+
+#Device name
+02 00 02 03 28 01 0a
+03 00 02 00 2a 05 31 32 33 34 35       
+
+#Appearance
+04 00 02 03 28 01 02
+05 00 02 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 02 03 28 01 02
+07 00 02 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 02 00 28 02 01 18
+
+#Service changed
+09 00 02 03 28 01 20
+0a 00 02 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 02 29 02 00 00
+
+#Primary service device information ------
+0c 00 02 00 28 02 0a 18
+
+#Manufacturer Name
+0d 00 02 03 28 01 02
+0e 00 02 29 2a 06 59 69 43 68 69 70
+
+#PNP id
+0f 00 02 03 28 01 02
+10 00 02 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 02 00 28 02 0f 18
+
+#Battery level
+12 00 02 03 28 01 02
+13 00 02 19 2a 01 33
+
+#Client Characteristic
+14 00 02 02 29 02 00 00
+
+#Primary service hid ------
+15 00 02 00 28 02 12 18
+
+#Protocol mode
+16 00 02 03 28 01 06
+17 00 02 4e 2a 01 01
+
+#Hid report
+18 00 02 03 28 01 1a
+19 00 02 4d 2a 07 00 00 00 00 00 00 00
+
+#Client Characteristic
+1a 00 02 02 29 02 00 00
+
+#Report reference
+1b 00 02 08 29 02 01 01 # report id=1, type=1 input
+
+#Report map
+1c 00 02 03 28 01 0a
+1d 00 02 4b 2a 45 # length 72 bytes
+
+05 01 # Usage Page(Generic Desktop)
+09 02 # Usage(Mouse)
+a1 01 # Collection(Application)
+85 01 # Report ID(1)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+05 09 # Usage Page(Buttons)
+19 01 # Usage Minimum(1)
+29 08 # Usage Maximum(8)
+15 00 # Logical Minimum(0).
+25 01 # Logical Maximum(1)
+75 01 # Report Size(1)
+95 08 # Report Count(8)
+81 02 # Input(Data Variable Absolute)
+
+05 01 # Usage Page(Generic Desktop)
+09 30 # Usage(X)
+09 31 # Usage(Y)
+16 01 f8 # Logical Minimum(-2047)
+26 ff 07 # Logical Maximum(2047)
+75 10 # Report Size(16)
+95 02 # Report Count(2)
+81 06 # Input(Data Variable Relative)
+
+09 38 # Usage(Wheel)
+15 81 # Logical Minimum(-127)
+25 7f # Logical Maximum(127)
+75 08 # Report Size(8)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+05 0c # Usage Page(Consumer)
+0a 38 02 # Usage(AC Pan)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+c0 # End Collection
+c0 # End Collection
+
+#Boot mouse input report
+1e 00 02 03 28 01 1a
+1f 00 02 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+20 00 02 02 29 02 00 00
+
+#Hid information
+21 00 02 03 28 01 02
+22 00 02 4a 2a 04 01 01 00 03
+
+#Hid control point
+23 00 02 03 28 01 04
+24 00 02 4c 2a 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1f
+
+mem_le_adv_data:
+
+#name
+'\09Ast LE Mouse
+
+#appearance
+03 19 c2 03
+
+#flag 
+02 01 05
+
+#uuid
+03 03 12 18
+
+#2.4G indication
+03 ff 12 35
+
+
+
+mem_le_scan_data_len:00
+
+#mem_le_scan_data:# 1 byte length + 1 byte type + N bytes data
+
+#complete local name
+#0d 09 
+#'Ast LE Mouse
+
+#Apperance
+03 19 c2 03
+
+#16bit uuid
+03 03 12 18
+
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_adv_interval_min:00 08 
+mem_le_adv_interval_max:00 08 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:00
+mem_le_adv_direct_addr_type:00
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_lap:88 b1 3a 59 e1 e5
+
+mem_le_transmit_window:50
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_le_pairing_handle:1d 00
+mem_le_pairing_mode:01
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:00
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:06
+mem_lpm_interval:00 02
+mem_le_notify_handle:19
+mem_mouse_le_notify_handle:19
+mem_le_local_mtu:17
+mem_le_remote_mtu:17
+
+# REVB
+#mem_motion_gpio:03
+#mem_lbutton_gpio:03
+#mem_rbutton_gpio:1a
+#mem_mbutton_gpio:19
+#mem_led_gpio:9b
+
+#REVA
+#mem_lbutton_gpio:07
+#mem_rbutton_gpio:0a
+#mem_mbutton_gpio:09
+#mem_gpio_led:8e
+
+#REVC
+mem_lbutton_gpio:03
+mem_rbutton_gpio:04
+mem_mbutton_gpio:05
+mem_sbutton1_gpio:06
+mem_sbutton2_gpio:07
+
+mem_led_gpio:07
+mem_sensor_data_gpio:08
+mem_mwhee_a_data_gpio:0a
+mem_mwhee_b_data_gpio:0b
+mem_whee_ta_data_gpio:0c
+mem_whee_ta_data_gpio:0d
+
+mem_dpi_button_gpio:04
+
+
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_le_led_on_time:58 02
+
+mem_ui_button_gpio:09
+mem_ui_button_timeout:28
+
+mem_spi_init_clk:75 #48M/128
+mem_spi_init_delay_time:0a #4us
+mem_le_secure_connect_enable:00
+mem_le_pairing_mode:01
+mem_le_pres:02 03 00 05 10 02 03
+mem_le_flag:03
+
+mem_discovery_timeout:3c 0b
+mem_mouse_direct_timeout:58 02
+mem_mouse_blank_data_timeout:b8 0b
+mem_mouse_no_data_timeout:28 23
+
Index: ble fast connect receive/sched/le_prcp.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_prcp.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_prcp.dat	(working copy)
@@ -0,0 +1,82 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip PRCP ------
+12 00 00 28 02 f1 18
+#Characteristic device tx
+13 00 03 28 01 12
+14 00 f3 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic device rx
+16 00 03 28 01 0e
+17 00 f2 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09
+'Yichip Temp
+ 03 19 40 02 02 01 05 02 0a 00 03 03 f1 18
+mem_le_scan_data_len:00
+#mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
+
+
+mem_le_adv_interval_min:20 00 
+mem_le_adv_interval_max:20 00 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:01 
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_notify_handle:14
+
+mem_lpm_mode:00
+#mem_lpm_ctrl:0f 0f 10 06
+mem_lpm_xtalcnt:0c 10 ca 1f
+mem_device_option:0d
+mem_fcomp_div:24
+mem_fcomp_mul:02
+mem_le_lap:45 67 78 89 90 56
+
Index: ble fast connect receive/sched/le_transmit_uuid.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_transmit_uuid.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/le_transmit_uuid.dat	(working copy)
@@ -0,0 +1,62 @@
+mem_device_option: 01
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip transmit ------
+12 00 00 28 02 f0 18
+#Characteristic tx--notify
+13 00 03 28 01 12
+14 00 f1 2a 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic rx--write
+16 00 03 28 01 0c
+17 00 f0 2a 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09 52 74 72 69 76 72 5f 52 36 32 31 03 19 40 02 02 01 05 02 0a 00 03 03 00 f0
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
Index: ble fast connect receive/sched/lenovo_mouse.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/lenovo_mouse.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/lenovo_mouse.dat	(working copy)
@@ -0,0 +1,170 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+1100:
+
+#Primary service GAP ------
+01 00 00 18 00
+
+#Device name
+02 00 03 28 05 0a 03 00 00 2a
+03 00 00 2a 0c 41 73 74 20 4d 6f 75 73 65 6e 61 48
+
+#Appearance 
+04 00 03 28 05 02 05 00 01 2a
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 07 02 07 00 04 2a
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 01 18 00
+
+#Service changed
+09 00 03 28 05 20 0a 00 05 2a 
+0a 00 05 2a 00
+
+#Primary service device information ------
+0c 00 0a 18 00
+
+#Manufacturer Name
+0d 00 03 28 05 02 0e 00 29 2a 
+0e 00 29 2a 06 59 69 43 68 69 70
+
+#PNP id
+0f 00 03 28 05 02 10 00 50 2a
+10 00 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 0f 18 00
+
+#Battery level
+12 00 03 28 05 02 13 00 19 2a
+13 00 19 2a 01 33
+
+#Client Characteristic
+14 00 02 29 02 00 00
+
+#Primary service hid ------
+15 00 12 18 00
+
+#Protocol mode
+16 00 03 28 05 06 17 00 4e 2a
+17 00 4e 2a 01 01
+
+#Hid report
+18 00 03 28 05 1a 19 00 4d 2a
+19 00 4d 2a 00
+
+#Client Characteristic
+1a 00 02 29 02 01 00
+
+#Report reference
+1b 00 08 29 02 01 01 # report id=1, type=1 input
+
+#Hid report
+1c 00 03 28 05 1a 1d 00 4d 2a
+1d 00 4d 2a 00
+
+#Client Characteristic
+1e 00 02 29 02 01 00
+
+#Report reference
+1f 00 08 29 02 02 01 # report id=2, type=1 input
+
+#Hid report
+20 00 03 28 05 1a 21 00 4d 2a
+
+#Client Characteristic
+22 00 02 29 02 01 00
+
+#Report reference
+23 00 08 29 02 03 01 # report id=3, type=1 input
+
+#Report map
+24 00 03 28 05 0a 25 00 4b 2a
+25 00 4b 2a 7b # length 123 bytes
+05 01 # Usage Page(Generic Desktop)
+09 02 # Usage(Mouse)
+a1 01 # Collection(Application)
+85 01 # Report ID(1)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+75 01 # Report Size(1)
+95 05 # Report Count(5)
+05 09 # Usage Page(Buttons)
+19 01 # Usage Minimum(1)
+29 05 # Usage Maximum(5)
+15 00 # Logical Minimum(0)
+25 01 # Logical Maximum(1)
+81 02 # Input(Data Variable Absolute)
+75 03 # Report Size(3)
+95 01 # Report Count(1)
+81 01 # Input(Constant) 3 bit padding
+75 08 # Report Size(8)
+95 01 # Report Count(1)
+05 01 # Usage Page(Generic Desktop)
+09 38 # Usage(Wheel)
+15 81 # Logical Minimum(-127)
+25 7f # Logical Maximum(127)
+81 06 # Input(Data Variable Relative)
+05 0c # Usage Page(Consumer)
+0a 38 02 # Usage(AC Pan)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+c0 # End Collection
+85 02 # Report ID(2)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+75 0c # Report Size(12)
+95 02 # Report Count(2)
+05 01 # Usage Page(Desktop)
+09 30 # Usage(X)
+09 31 # Usage(Y)
+16 01 f8 # Logical Minimum(-2047)
+26 ff 07 # Logical Maximum(2047)
+81 06 # Input(Data Variable Relative)
+c0 c0 # End Collection
+05 01 # Usage Page(Desktop)
+09 07 # Usage(Keypad)
+a1 01 # Collection(Application)
+85 03 # Report ID(3)
+05 07 # Usage Page(Keyboard)
+15 00 # Logical Minimum(0)
+25 01 # Logical Maximum(1)
+09 06 # Usage(Keyboard C)
+09 07 # Usage(Keyboard D)
+09 2a # Usage(Keyboard Delete)
+09 e3 # Usage(Keyboard Left GUI)
+09 e0 # Usage(Keyboard Left CTRL)
+09 4b # Usage(Keyboard PageUp)
+09 4e # Usage(Keyboard PageDown)
+75 01 # Report Size(1)
+95 07 # Report Count(7)
+81 02 # Input(Data Variable Absolute)
+95 01 # Report Count(1)
+81 01 # Input(Constant) 1 bit padding
+c0 # End Collection
+
+#Boot mouse input report
+26 00 03 28 05 1a 27 00 33 2a
+27 00 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+28 00 02 29 02 00 00
+
+#Hid information
+29 00 03 28 05 02 2a 00 4a 2a
+2a 00 4a 2a 04 01 01 00 03
+
+#Hid control point
+2b 00 03 28 05 04 2c 00 4c 2a
+2c 00 4c 2a 00
+
+
+mem_le_adv_data_len:1d
+mem_le_adv_data:11 09 4c 65 6e 6f 76 6f 20 4d 69 63 65 20 4e 37 30 30 03 19 c2 03 02 01 05 03 03 12 18
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
+
+
Index: ble fast connect receive/sched/mouse.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/mouse.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/mouse.dat	(working copy)
@@ -0,0 +1,602 @@
+#device option
+#REVB GPIO setup    mouse_VB
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:1E
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_class:80 25 00
+mem_app_connection_options:06
+#mem_lpm_mode:00
+#mem_lpm_mult:00
+mem_lap:66 66 66 55 22 51
+mem_local_name_length:
+mem_local_name:
+'Yichip Mouse
+mem_sniff_param_interval:0c 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:00
+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
+0011 0100 1002 1124  1200  0001
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+mem_mouse_uuid_list:
+04 0011 0100 1002 1124
+00 01 00 00
+36 01 61
+09
+00
+00
+0a
+00
+01
+00
+09
+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
+16
+59 69 43 68 69 70#YiChip
+20 42 6c 75 65 74 6f 6f 74 68 20 4d 6f 75 73 65
+09
+01
+01
+25
+05
+4d
+6f
+75
+73
+65
+09
+01
+02
+25
+06
+59 69 43 68 69 70#YiChip
+09
+02
+00
+09
+01
+00
+09
+02
+01
+09
+01
+11
+09
+02
+02
+08
+80
+09
+02
+03
+08
+21
+09
+02
+04
+28
+01
+09
+02
+05
+28
+01
+09
+02
+06
+35
+81
+35
+7f
+08
+22
+25
+7b
+05
+01
+09
+02
+a1
+01
+85
+02
+09
+01
+a1
+00
+05
+09
+19
+01
+29
+08
+15
+00
+25
+01
+75
+01
+95
+08
+81
+02
+05
+01
+09
+30
+09
+31
+16
+01
+f8
+26
+ff
+07
+75
+10
+95
+02
+81
+06
+09
+38
+15
+81
+25
+7f
+75
+08
+95
+01
+81
+06
+05
+0c
+0a
+38
+02
+75
+08
+95
+01
+81
+06
+c0
+c0
+05
+0c
+09
+01
+a1
+01
+85
+03
+75
+10
+95
+02
+15
+01
+26
+8c
+02
+19
+01
+2a
+8c
+02
+81
+60
+c0
+06
+00
+ff
+09
+01
+a1
+01
+85
+10
+75
+08
+95
+06
+15
+00
+26
+ff
+00
+09
+01
+81
+00
+09
+01
+91
+00
+c0
+09
+02
+07
+35
+08
+35
+06
+09
+04
+09
+09
+01
+00
+09
+02
+08
+28
+00
+09
+02
+09
+28
+01
+09
+02
+0a
+28
+01
+09
+02
+0b
+09
+01
+00
+09
+02
+0c
+09
+0c
+80
+09
+02
+0d
+28
+00
+09
+02
+0e
+28
+01
+
+04 1002 1200 0100 0001
+00 01 00 01
+36 00 5a
+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
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09 02 00#SpecificationID
+09 01 03#DeviceID Spec Version:1.3
+
+09 02 01# VendorID
+09 0a 5c#Unknown See http://www.bluetooth.org/assigned-number.htm
+
+09 02 02#ProductID
+09 00 01#0x0001
+
+09 02 03#Version
+09 01 29#Product Version:1.2.9
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+00
+00
+
+01 00 01
+00 01 00 01
+36 00 5a
+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
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+00
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+00
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+
+03 1101 0003 0100 
+00 01 00 02
+36 00 2f
+09
+00
+00
+0a
+00
+01
+00
+02
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+01
+00
+25
+09
+53
+50
+50
+20
+73
+
+mem_ui_uuid_table:mem_mouse_uuid_list
+#Auto reconnection after power on
+mem_device_option:43
+mem_ptt:0
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
Index: ble fast connect receive/sched/reva.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/reva.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/reva.dat	(working copy)
@@ -0,0 +1,96 @@
+mem_rf_init:
+# agc
+08 08
+11 35
+12 c7
+
+# agc gain table
+1A F1 
+1B F1 
+1C ED 
+1D E9 
+1E E5 
+1F E1 
+20 DD 
+21 D9 
+22 D5 
+23 D1 
+24 CD 
+25 C9 
+26 C5 
+27 C1 
+28 BD 
+29 B9 
+2A B5 
+2B B1 
+2C AD 
+2D A9 
+2E A5 
+2F A1 
+30 9D 
+# agc setting table
+31 00
+32 00
+33 00
+34 01
+35 02
+36 00
+37 03
+38 03
+39 10
+3A 04
+3B 04
+3C 21
+3D 05
+3E 05
+3F 32
+40 06
+41 06
+42 43
+43 07
+44 08
+45 44
+46 09
+47 18
+48 44
+49 19
+4A 28
+4B 44
+4C 29
+4D 20
+4E 5c
+4F 38
+50 38
+51 ed
+52 38
+
+#rf
+54 f7
+55 40
+57 4c
+5f 20
+62 8c
+64 4a
+67 0d
+6e 00
+
+#clkpll for 24Mhz xtal
+70 e4
+71 00
+72 00
+73 60
+
+
+00
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_features:ff ff 8f fe 83 9d 59 83
+mem_scan_mode:03
Index: ble fast connect receive/sched/revb.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revb.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revb.dat	(working copy)
@@ -0,0 +1,101 @@
+mem_lpm_config:4f 10 06
+mem_lpm_buckcnt:0a 1b ef 0f
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_features:
+ff
+ff
+8f
+fa	#openACL3M fe
+9b	#AFHclose 83
+9d
+59
+83
+
+#auto filled by geneep, should NOT remove
+memp_reload_ptr:00 00
+
+mem_flag:01
+
+mem_rf_init:
+#agc gain
+1a f5
+31 c0
+32 c1
+33 c2
+34 c3
+35 c4
+36 c5
+37 04
+38 05
+39 06
+3A 15
+3B 16
+3C 55
+3D 56
+3E 57
+3F 66
+40 67
+41 a6
+42 a7
+43 a8
+44 b7
+45 f6
+46 f7
+47 f8
+48 c0
+49 ff  
+#for revb
+53 00
+54 68
+55 d8
+56 88
+57 48
+58 74
+59 90
+5A 4a
+5B 86
+5C a0
+5D 84
+5E 88
+5F c4
+60 87
+61 1c
+62 c7
+63 11
+64 66
+65 20
+66 2a
+67 84
+6C 0d
+6D 1b
+6E 80
+6F 88
+4c fb ##rx_ib_mixer1_stg1, rx_vtrl_reg_adc2
+4d ef ##lna_rtrim, rx_mixer1_bleeding      
+4e 4c ##lna_ctrim                          
+4f 58                                       
+07 04 # LO leakage                                   
+0a e0 #IQ_mismatch_tx                               
+0b 40
+0d 85 #demod_afc_win                                
+0e b1                                                        
+19 70                                                        
+44 68 # agc table fix                                      
+45 75
+46 b5
+47 f5                   
+12 45
+68 64 #clkpll for 24Mhz xtal
+69 00
+6a 00
+6b 30
+ff
+
Index: ble fast connect receive/sched/revc.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revc.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revc.dat	(working copy)
@@ -0,0 +1,31 @@
+mem_patch00:01
+mem_lpm_config:8f 10 ca
+mem_lpm_xtalcnt:00 0a 0b ef 07
+mem_lpm_hibernate_switch:07
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+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_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+4000:00
+
+#pointers to tail space of mem_le_att_list
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: ble fast connect receive/sched/revd.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revd.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revd.dat	(working copy)
@@ -0,0 +1,49 @@
+mem_lpm_config:8f 10 ca
+mem_lpm_buckcnt:0a 0b ef 07
+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:20 00
+mem_iscan_interval:00 04
+mem_pscan_window:16 00
+mem_pscan_interval:00 04
+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_adc_config_flag:02
+mem_adc_channel:30
+
+mem_spi_init_clk:77 #48M/128
+mem_spi_init_delay_time:0a #4us
+
+mem_eeprom_base:30 3f	#30 0f 
+mem_eeprom_block_size:20 #40
+
+#pointers to tail space of mem_le_att_list
+
+mem_module_uuid_list+250:
+68 e4
+69 00
+6a 00
+6b 30
+
+#07	7f
+#08	01
+#09	1f
+#0a	f8
+#0b	ff
+
+
+#55 d0
+#56 e0
+#57 4c	#-5db
+#58 6c
+#59 50
+ff
+mem_rf_init_ptr:mem_module_uuid_list+250
+
+
Index: ble fast connect receive/sched/revd_32k.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revd_32k.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/revd_32k.dat	(working copy)
@@ -0,0 +1,62 @@
+mem_patch12:04
+mem_patch38:01
+mem_patch30:10
+mem_patch32:0b
+mem_patch39:64
+#updata le param
+#notification 
+mem_patch2c:28
+#write request
+#write command
+mem_patch2d:80
+#le set mult
+mem_patch2f:20
+#reject sniff when wake up
+mem_patch3c:04
+
+
+#debug le disconn
+#mem_patch27:20
+
+#ui le param
+mem_patch31:20
+
+
+#slave loop
+mem_patch08:0c
+
+#eeprom write
+mem_patch20:80
+
+#
+#mem_patch21:01   #eeprom test 
+
+mem_lpm_config:8f 10 ca
+mem_lpm_xtalcnt:00 0a 0b ef 07
+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 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+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_eeprom_base:30 0f
+mem_eeprom_block_size:40
+
+#pointers to tail space of mem_le_att_list
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: ble fast connect receive/sched/rtrivr_uuid.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/rtrivr_uuid.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/rtrivr_uuid.dat	(working copy)
@@ -0,0 +1,75 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+#Primary service Immediate alert ------
+0f 00 00 28 02 02 18
+#Characteristic Alert level
+10 00 03 28 01 04
+11 00 06 2a 01 00
+
+#Primary service UUID:f003 ------
+12 00 00 28 02 03 f0
+#Characteristic UUID:f803
+13 00 03 28 01 04
+14 00 03 f8 01 00
+
+
+#Primary service Link loss alert ------
+15 00 00 28 02 03 f0
+#Characteristic Alert level
+16 00 03 28 01 0a
+17 00 06 2a 01 00
+
+#Primary service UUID:f002 ------
+18 00 00 28 02 02 f0
+#Characteristic UUID:f802
+19 00 03 28 01 12
+1a 00 02 f8 01 28
+1b 00 02 29 02 00 00
+
+#Primary service Battery ------
+1c 00 00 28 02 0f 18
+#Characteristic Battery level
+1d 00 03 28 01 12
+1e 00 19 2a 01 38
+
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09 52 74 72 69 76 72 5f 52 36 32 31 03 19 40 02 02 01 05 02 0a 00 03 03 00 f0
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
Index: ble fast connect receive/sched/shutter.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/shutter.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/shutter.dat	(working copy)
@@ -0,0 +1,241 @@
+mem_patch00:08
+mem_patch10:40
+mem_patch11:0c
+mem_patch16:10
+mem_patch20:08
+mem_patch23:02
+mem_patch25:48
+mem_patch26:0c
+
+mem_patch27:40
+
+mem_patch32:20
+mem_patch3b:13
+mem_patch3e:80
+
+mem_device_option:09
+mem_le_adv_channel_map:07 
+mem_le_scan_enable:01
+
+mem_spi_ncs_gpio:ff
+mem_led_gpio:1b
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:10
+mem_ui_button_last_state:01
+
+mem_le_fast_adv_timeout:32
+mem_led_fast_dark_time:96 00
+mem_led_fast_light_time:96 00
+mem_le_sleep_timeout:08 07
+
+#mem_le_pres:02 03 00 01 10 02 01
+mem_le_pres_auth:01
+
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+
+
+
+mem_le_lap:02 31 00 98 07 2a
+mem_le_name_len:
+'AB Shutter3
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:
+13 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 01 05 03 02 12 18 00 00 00 00
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+1e 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
+
+
+mem_shutter_att_list_patch:
+47
+
+05 0c	#USAGE_PAGE 
+09 01	#USAGE (Consumer Control)
+a1 01	#COLLECTION (Application (mouse, keyboard))
+85 02	#REPORT_ID 
+0a ae 01
+09 e9
+09 ea
+09 e2
+09 30
+15 01
+25 0c
+75 10
+95 01
+81 00
+c0 		#END_COLLECTION
+05 01 	#USAGE_PAGE 
+09 06 	#USAGE
+a1 01 	#COLLECTION (Application (mouse, keyboard))
+85 03 
+05 07 
+19 e0 
+29 e7 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+75 08 
+95 01 
+15 00 
+25 f4 
+05 07 
+19 00 
+29 f4 
+81 00 
+c0		#END_COLLECTION
+
+
+#Characteristic:Hid information
+1c 00 02 03 28 01 02
+1d 00 02 4a 2a 04 11 01 00 01        
+#Characteristic:
+1e 00 02 03 28 01 04
+1f 00 02 4c 2a 01 00
+
+#Primary Service: BAS
+20 00 02 00 28 02 0f 18 
+#Characteristic: Battery Level
+21 00 02 03 28 01 12 
+22 00 02 19 2a 01 00 
+#Client Characteristic Configuration
+23 00 02 02 29 02 00 00 
+
+#End of Attribute list
+00 00
+
+
+mem_adv_lap_ptr:mem_le_adv_data+2
+
+
+
+mem_ui_le_uuid_table:mem_shutter_le_att_list
+
+mem_lpm_mode:00
+mem_lpm_overhead:06
+mem_lpm_mult_timeout:02
+mem_hard_soft_switch_case:00
+mem_shutter_powerup_flag:00
+mem_shutter_button_timeout:0a
+mem_power_timeout:0c
+mem_packet_interval_set:20 00
+mem_le_conn_interval_min:06 00
+mem_le_conn_interval_max:20 00
+
+mem_le_scan_type:01
+mem_le_scan_own_addr_type:00
+mem_le_scan_filter_policy:00
+mem_le_scan_interval:30 00
+mem_le_scan_window:0c 00
+
+
+mem_shutter_led_num:01
+mem_led_map:
+1b
+ff
+ff
+ff
+
+mem_fast_adv_led_style:
+02
+1b
+96 00
+96 00
+ff
+
+mem_slow_adv_led_style:
+02
+1b
+96 00
+3a 07
+ff
+ 
+mem_power_on_led_style:
+02
+1b
+96 00
+3a 00
+01
+
+mem_powe_off_led_style:
+00
+1b
+48 00
+96 00
+02
+
+mem_connected_led_style:
+01
+1b
+00 00
+00 00
+00
+
+mem_key_led_style:
+01
+1b
+00 00
+00 00
+00
+#
+02
+1b
+96 00
+96 00
+01
+#
+ff
+1b
+00 00
+00 00
+00
+#
+00
+1b
+00 00
+00 00
+00
+
+
+mem_key0_press:
+03 05 17 00 00 28 05 13 00 02 00 05 13 00 01 00
+mem_key0_release:
+02 05 17 00 00 00 05 13 00 00 00
+mem_key1_press:
+02 05 13 00 01 00 05 13 00 02 00 
+mem_key1_release:
+01 05 13 00 00 00
+
+mem_le_car_write_cmd_data:
+01 0b 14 00 5a 6b 02 00 02 00 00 00
+
+mem_shutter_key_num:04
+mem_key_conf0:
+#0
+04 00  
+#1
+05 00
+#2
+06 00 
+#3
+03 00 
+#4
+ff 00 
+#5
+ff 00 
+
+mem_le_app_peer_addr:0e 10 26
+mem_le_slave_peer_addr:ff ff ff ff ff ff
+
+mem_le_sleep_conn_timeout:b8 0b
+
+mem_tx_power:02
+
+mem_le_send_write_request_count:02
+
+#mem_uart_mouse_data_buff:02 00 09 00 00 00 00 00 00 00 00
+#mem_uart_test_count:04
+
Index: ble fast connect receive/sched/spp.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/spp.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/spp.dat	(working copy)
@@ -0,0 +1,206 @@
+#device option
+mem_device_option:04
+
+#spp uuid
+mem_uuid_list:
+04
+10
+02
+12
+00
+01
+00
+00
+01
+00
+01
+00
+01
+36
+00
+5a
+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
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+03
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+06
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+03
+11
+01
+00
+03
+01
+00
+00
+01
+00
+03
+36
+00
+4e
+09
+00
+00
+0a
+00
+01
+00
+03
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+02
+0a
+00
+00
+00
+00
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+01
+00
+25
+0a
+53
+50
+50
+20
+73
+6c
+61
+76
+65
+00
+00
+00
+01
Index: ble fast connect receive/sched/ssp.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/ssp.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/ssp.dat	(working copy)
@@ -0,0 +1,261 @@
+#memk, for reva-c only
+4b00:
+98    
+2f    
+8a    
+42    
+91    
+44    
+37    
+71    
+CF    
+FB   
+C0   
+B5    
+A5    
+DB   
+B5    
+E9    
+5B    
+C2    
+56   
+39    
+F1    
+11    
+F1    
+59    
+A4    
+82    
+3F    
+92    
+D5    
+5E    
+1C    
+AB    
+98    
+AA    
+07    
+D8    
+01   
+5B    
+83   
+12    
+BE    
+85   
+31    
+24    
+C3    
+7D    
+0C    
+55    
+74   
+5D    
+BE    
+72    
+FE    
+B1    
+DE    
+80    
+A7    
+06    
+DC    
+9B    
+74    
+F1    
+9B    
+C1    
+C1    
+69    
+9B    
+E4    
+86    
+47    
+BE    
+EF    
+C6    
+9D    
+C1    
+0F    
+CC    
+A1    
+0C    
+24    
+6F    
+2C    
+E9    
+2D    
+AA    
+84    
+74    
+4A    
+DC    
+A9    
+B0    
+5C    
+DA    
+88    
+F9    
+76    
+52    
+51    
+3E    
+98    
+6D    
+C6    
+31    
+A8    
+C8    
+27   
+03    
+B0    
+C7    
+7F    
+59    
+BF    
+F3    
+0B    
+E0    
+C6    
+47    
+91    
+A7    
+D5    
+51   
+63    
+CA    
+06    
+67    
+29    
+29    
+14    
+85    
+0A    
+B7    
+27    
+38    
+21    
+1B    
+2E    
+FC    
+6D   
+2C    
+4D    
+13    
+0D    
+38    
+53    
+54    
+73    
+0A    
+65    
+BB   
+0A   
+6A    
+76    
+2E   
+C9   
+C2   
+81    
+85   
+2C   
+72    
+92    
+A1    
+E8    
+BF    
+A2    
+4B    
+66    
+1A    
+A8    
+70    
+8B    
+4B    
+C2    
+A3    
+51    
+6C    
+C7    
+19    
+E8    
+92    
+D1    
+24    
+06   
+99   
+D6   
+85   
+35   
+0E    
+F4  
+70    
+A0    
+6A    
+10    
+16    
+C1    
+A4    
+19    
+08   
+6C    
+37    
+1E    
+4C    
+77    
+48    
+27    
+B5    
+BC    
+B0    
+34    
+B3    
+0C    
+1C    
+39    
+4A    
+AA    
+D8   
+4E    
+4F    
+CA   
+9C   
+5B    
+F3   
+6F    
+2E   
+68    
+EE    
+82   
+8F   
+74    
+6F   
+63    
+A5    
+78    
+14    
+78    
+C8    
+84   
+08    
+02   
+C7    
+8C   
+FA   
+FF    
+BE    
+90   
+EB    
+6C    
+50   
+A4   
+F7    
+A3    
+F9    
+BE    
+F2    
+78    
+71    
+C6    
+
+
+
Index: ble fast connect receive/sched/test.dat
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/test.dat	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/sched/test.dat	(working copy)
@@ -0,0 +1,104 @@
+
+mem_patch00:
+41   #mem_patch00
+00   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+00   #mem_patch04
+00   #mem_patch05
+00   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+10   #mem_patch0A
+00   #mem_patch0B
+00   #mem_patch0C
+00   #mem_patch0D
+00   #mem_patch0E
+00   #mem_patch0F
+00   #mem_patch10
+00   #mem_patch11
+15   #mem_patch12
+00   #mem_patch13
+00   #mem_patch14
+00   #mem_patch15
+01   #mem_patch16
+00   #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
+84   #mem_patch20
+01   #mem_patch21
+00   #mem_patch22
+01   #mem_patch23
+00   #mem_patch24
+00   #mem_patch25
+00   #mem_patch26
+c0   #mem_patch27
+00   #mem_patch28
+1c   #mem_patch29
+00   #mem_patch2A
+00   #mem_patch2B
+28   #mem_patch2C
+84   #mem_patch2D
+00   #mem_patch2E
+24   #mem_patch2F
+00   #mem_patch30
+20   #mem_patch31
+00   #mem_patch32
+00   #mem_patch33
+01   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+00   #mem_patch37
+01   #mem_patch38
+54   #mem_patch39
+00   #mem_patch3A
+00   #mem_patch3B
+0c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+
+
+
+mem_lap:77 11 00 33 00 00
+mem_le_lap:88 11 00 33 00 00
+mem_device_option:ff
+mem_local_name_length:
+'REVB
+
+mem_seqi:7f
+
+mem_lpm_mode:00
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:05
+mem_scan_mode:03
+mem_le_adv_enable:00
+mem_le_scan_enable:00
+mem_ui_button_gpio:ff
+mem_led_gpio:1b
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
+
+
+
Index: ble fast connect receive/util/a1bugfix.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/a1bugfix.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/a1bugfix.pl	(working copy)
@@ -0,0 +1,81 @@
+#get sched ram content
+$add = 0;
+if(open file, "sched.rom") {
+	while(<file>) {
+		next if(/^#/);
+		s/#.*//g;
+		if(/^([a-z0-9_]+):(.*)/) {
+			push @dat, $1;
+			$_ = $2;
+		}
+		if(/^\'/) {
+			s/[\'\r\n]//g;
+			for($i = 0;$i < length($_);$i++) {
+				push @dat, ord(substr($_, $i, 1));
+			}
+		} else {
+			s/\s//g;
+			for($i = 0;$i < length($_);$i+=2) {
+				push @dat, hex(substr($_, $i, 2));
+			}
+		}
+	}
+	close file;
+}
+for($j = $k = $n = 0;$j < @dat;$j++) {
+	if($dat[$j] =~ /^mem_/ && $j > 0 || $n == 3) {
+		push @init, sprintf "\tsetarg 0x%x\n", $k;
+		push @init, sprintf "\tistore %d,contw\n", $n;
+		$n = $k = 0;
+	}
+	if($dat[$j] =~ /^mem_/) {
+		push @init, sprintf "\targ %s,contw\n", $dat[$j];
+	} else {
+		$k |= $dat[$j] << $n++*8;
+	}
+}
+push @init, sprintf "\tsetarg 0x%x\n", $k;
+push @init, sprintf "\tistore %d,contw\n", $n;
+
+open file,"eeprom.dat";
+for($i = 0;$i < 4;$i++) {
+	$_ = <file>;
+}
+close file;
+$len = int(((hex($_) + @init*4 + 12) & 0xff)/4);
+if($len > 0x3b) {
+	for($i = 0;$i < 0x40 - $len;$i++) { push @init, "\trtn\n"; }
+	$len = 0;
+}
+printf "len=%x\n", $len;
+
+open file, "bt_program23.list";
+while(<file>){
+	if(/^0x([0-9a-f]+)\s+([0-9]+)/)  {
+		$line = 0 + $2;
+		last if(hex($1) == $len);
+	}
+}
+close file;
+open file, "bt_program23.meta";
+@f = <file>;
+close file;
+
+
+open file, ">bt_program23.meta";
+for($i = 0;$i < @f;$i++) { 
+	$_ = $f[$i];
+	if($i == $line) {
+		printf file "\tbranch skip_a1bugfix_romdat\n";
+		printf file "\tromdat 0x00,0x00,0x55,0xaa\n";
+		printf file "\tromdat 0x00,0x08,0x90,0x01\n";
+		printf file "\tromdat 0xa0,0x74,0x01,0xf0\n";
+		printf file "\tromdat 0x80,0xfe,0x00,0x00\n";
+		printf file "skip_a1bugfix_romdat:\n";
+	}
+	print file $_;
+	if(/^init_sched:/) {
+		print file @init;
+	}
+}
+close file;
Index: ble fast connect receive/util/bytecnt.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/bytecnt.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/bytecnt.pl	(working copy)
@@ -0,0 +1,12 @@
+while(<stdin>) {
+	next if(/^#/);
+	s/#.*//g;
+	if(/^\'/) {
+		s/[\r\n]//g;
+		$len += length($_) - 1;
+	} else {
+		s/\s//g;
+		$len += length($_)/2;
+	}
+}
+printf "len = %x\n", $len;
Index: ble fast connect receive/util/crc16_ccitt.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/crc16_ccitt.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/crc16_ccitt.pl	(working copy)
@@ -0,0 +1,61 @@
+sub swap
+{
+	my($b) = @_;
+	my($i, $j);
+	for($i = 0, $j = 0;$i < 8;$i++) {
+		$j |= 1 << $i if($b & 1 << (7 - $i)); 
+	}
+	return $j;
+}
+
+@crc_tabccitt = ();
+$initd = 0;
+sub init_crcccitt_tab
+{
+	my($crc, $i, $c, $j);
+
+  for ($i=0; $i<256; $i++) {
+      $crc = 0;
+      $c   = $i << 8;
+      for ($j=0; $j<8; $j++) {
+          if ( ($crc ^ $c) & 0x8000 ) {	$crc = ( $crc << 1 ) ^ 0x1021;	}
+          else  { $crc =   $crc << 1; }
+          $c = $c << 1;
+      }
+      $crc_tabccitt[$i] = $crc & 0xffff;
+  }
+	$initd = 1;
+}
+
+sub crc16_ccitt 
+
+{
+	my($crc, $c) = @_;
+	my($tmp, $short_c);
+
+	init_crcccitt_tab() if(!$initd);
+  $short_c  = 0x00ff & $c;
+
+  $tmp = ($crc >> 8) ^ $short_c;
+  $crc = (($crc << 8) ^ $crc_tabccitt[$tmp]) & 0xffff;
+
+  return $crc;
+
+} 
+
+sub crc16_ccitt2
+{
+	my($crc, $c) = @_;
+
+  $crc  = ($crc >> 8) | ($crc << 8);
+  $crc ^= $c;
+  $crc ^= ($crc & 0xff) >> 4;
+  $crc ^= $crc << 12;
+  $crc ^= ($crc & 0xff) << 5;
+  $crc &= 0xffff;
+ return $crc;
+}
+
+init_crcccitt_tab();
+
+1;
\ No newline at end of file
Index: ble fast connect receive/util/define_info.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/define_info.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/define_info.pl	(working copy)
@@ -0,0 +1,55 @@
+use strict;
+use warnings;
+
+sub read_definfo{
+	my $filename = shift();
+	my $const_chip = "CHIP VERSION";
+	my $const_config = "CONFIG: ";
+	my $version = "";
+	my @res;
+	open(FILE,$filename) || die("can not open file:$filename \n");
+	while(my $line = <FILE>){
+		next if ($line eq "\n"||$line =~ "REVD");
+		last if ($line =~ "INCLUDE");
+		last if ($line =~ "SIMPLE_PAIRING");
+		
+		if ($line =~ "FPGA" && $line !~ "//"){
+			$version = $version."FPGA";
+		}elsif($line =~ "ROMCODE" && $line !~ "//"){
+			$version = $version."ROMCODE";
+			print $const_chip.$version."\n\n";
+		}elsif($line !~ "//"){				# valid
+			if ($line =~"liandi"){
+				print "baud rate  : boot rate\n";
+				}
+			elsif ($line =~ "CREDIT"){
+				print "credit     : from mcu\n";
+				}
+			elsif ($line =~ "SSP_EXT"){
+				print "ssp confirm: suport\n";
+				}
+			elsif ($line =~ "NVRAM"){
+				print "nvram      : by mcu\n";
+			}elsif ($line=~"RELEASE"){
+				print "version    : release\n";
+			}
+		}elsif ($line =~ "//"){				#noted
+			if ($line =~"liandi"){
+				print "baud rate  : 115200 or other \n";
+				}
+			elsif ($line =~ "CREDIT"){
+				print "credit     : auto\n";
+				}
+			elsif ($line =~ "SSP_EXT"){
+				print "ssp confirm: justwork only\n";
+				}
+			elsif ($line =~ "NVRAM"){
+				print "nvram      : in eep\n";
+			}elsif ($line =~ "RELEASE"){
+				print "version    : debug\n";
+			}
+		}
+	}
+}
+
+&read_definfo("bt.prog");
\ No newline at end of file
Index: ble fast connect receive/util/gen_patch_h.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/gen_patch_h.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/gen_patch_h.pl	(working copy)
@@ -0,0 +1,135 @@
+#!/usr/bin/perl
+sub clear_print_buf{
+	for($i = 0; $i < 10; $i++){
+		$binData[$i] = 0;
+	}
+}
+
+sub print_line{
+	if($byte_cnt == 0){
+		#new line print header;
+		$offset = $patch_cmd_len * $line_cnt;
+		printf "{";
+		printf "0x%x%x, ", ($offset / 16 )     % 16, ($offset)       % 16;
+		printf "0x%x%x, ", ($offset / 4096)    % 16, ($offset / 256) % 16;
+		printf "0x%x%x, ", ($patch_cmd_len / 16) % 16, ($patch_cmd_len)  % 16;
+		$line_cnt ++;
+	}
+	printf "0x%s%s, 0x%s%s, 0x%s%s, 0x%s%s",$binData[0],$binData[1],$binData[2],$binData[3],$binData[4],$binData[5],$binData[6],$binData[7];
+	
+	$byte_cnt += 4;
+	if($byte_cnt >= $patch_cmd_len){
+		$byte_cnt = 0;
+		printf "},\n\t";
+	}else{
+		printf ", ";
+	}
+}
+
+################STATIC########################
+
+$patch_cmd_len = 96;
+$patch_cmd_header_len = 3;
+$patch_cmd_checksum_len = 1;
+
+################main fuction##################
+
+printf "/******************************************************************************\n";
+printf " ** File Name:      yc_patch_yc1021.h                                         *\n";
+printf " **                                                                           *\n";
+printf " ******************************************************************************\n";
+printf "\n";
+printf " ******************************************************************************\n";
+printf " **                               Edit History                                *\n";
+printf " ** ------------------------------------------------------------------------- *\n";
+printf " **     DATE          NAME             DESCRIPTION                            *\n";
+printf " **  2015.3.17       fan.kou            Create.                               *\n";
+printf " ******************************************************************************/\n";
+printf "/******************************************************************************/\n";
+printf "#ifndef _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
+printf "#define _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                             Dependencies                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                            Compiler Flag                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "#ifdef __cplusplus\n";
+printf "extern   \"C\" \n";
+printf "{\n";
+printf "#endif\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                           Macros & Enums                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+
+open(FILE,"ramcode.rom") or die $!;
+$line_cnt = 0;
+while($line = <FILE>){
+	$line_cnt++;
+}
+$cmd_cnt = $line_cnt * 4 / $patch_cmd_len + (($line_cnt * 4 % $patch_cmd_len) > 0);
+close(FILE);
+
+printf "#define YC_PATCH_CMD_CNT %d\n",$cmd_cnt;
+printf "#define YC_PATCH_CMD_LEN %d\n",$patch_cmd_len + $patch_cmd_header_len + $patch_cmd_checksum_len;
+printf "#define YC_PATCH_ARRAY_LEN 0x20\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                           Data Structures                                 *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                             Variables                                     *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+
+printf "const uint8_t yc_patch_array[YC_PATCH_ARRAY_LEN] =\n";
+printf "{\n";
+printf "\t0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf("\n");
+printf("};\n");
+
+
+printf "const uint8_t yc_patch_cmd[YC_PATCH_CMD_CNT][YC_PATCH_CMD_LEN] =\n";
+printf "{\n\t";
+
+open(BINFILE,"ramcode.rom") or die $!;
+binmode (BINFILE);
+$byte_cnt = 0;
+$end_of_file = 0;
+$checksum = 0;
+$line_cnt = 0;
+while(!$end_of_file)
+{
+	for($i = 0; $i < 10; $i++){
+		if(!read(BINFILE, $binData[$i], 1)){
+			$end_of_file = 1;
+			if(i != 0){
+				printf "Error: Error at the end of file.";
+			}
+		}
+	}
+	if(!$end_of_file){
+		&print_line;
+	}
+}
+while($byte_cnt){
+	&clear_print_buf;
+	&print_line;
+}
+printf("\n");
+printf("};\n");
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                         Function Prototypes                               *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+printf "#ifdef __cplusplus\n";
+printf "}\n";
+printf "#endif\n";
+printf "\n";
+printf "/******************************************************************************/\n";
+printf "#endif //#ifndef _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
\ No newline at end of file
Index: ble fast connect receive/util/hex2mif.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/hex2mif.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/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: ble fast connect receive/util/ifdef.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/ifdef.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/ifdef.pl	(working copy)
@@ -0,0 +1,8 @@
+open file, "bt_program23.meta"
+@prog = <file>;
+close file;
+open file, "bt_format.meta"
+@fmt = <file>;
+close file;
+
+
Index: ble fast connect receive/util/memalloc.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/memalloc.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/memalloc.pl	(working copy)
@@ -0,0 +1,55 @@
+$path=$ARGV[0];
+open file, $path;
+@f = <file>;
+close file;
+open file, ">$path";
+$path =~ s/\/.*//;
+open file1, ">$path/memmap.format";
+$xaddr = 0x4000;
+$oaddr = $saddr = 0;
+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*$/);
+	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*$/) {
+			$start = 0;
+			push @omalloc,[@ostr] if(@ostr > 0);
+			@ostr = ();
+		}
+	} else {
+		$sstr .= $_;
+	}
+}
+
+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: ble fast connect receive/util/mergepatch.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/mergepatch.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/mergepatch.pl	(working copy)
@@ -0,0 +1,63 @@
+$defs = "";
+$fmt = 0;
+sub reva {
+	return $_ if($defs =~ /REV[CD]/ || $fmt);
+	if(/bmark([01])\s+([a-z0-9_]+)\s*,\s*([a-z0-9_]+)/) {
+		$ret = sprintf("\tisolate%d %s,mark\n\tbranch %s,true\n", $1, $2, $3);
+	}	elsif(/rtnmark([01])\s+([a-z0-9_]+)\s*/) {
+		$ret = sprintf("\tisolate%d %s,mark\n\trtn true\n", $1, $2);
+	} else {
+		$ret = $_;
+	}
+	return $ret if($defs =~ /REVB/);
+	if(/mul32\s+([a-z]+)\s*,\s*([a-z0-9_]+)\s*,\s*([a-z]+)/) {
+		$ret = sprintf("\tmult %s,%s\n\tnop 19\n\tproduct %s\n", $2, $1, $3);
+	}	elsif(/imul32\s+([a-z]+)\s*,\s*([a-z]+)/) {
+		$ret = sprintf("\timult %s\n\tnop 19\n\tproduct %s\n", $1, $2);
+	} else {
+		$ret = $_;
+	}
+	return $ret;
+}
+
+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 =~ /$1 / ? 1 : 0) & $valid[$#valid];
+		} elsif(/^ifndef\s+(\w+)\s*/) {
+			push @valid, ($defs =~ /$1 / ? 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 {
+				next if(/^\s*bpatch\s+/ && $defs !~ /ROMCODE/);
+				next if(/^\s*set[01] mark_ext_patch/ && $defs !~ /ROMCODE/);
+				print file reva($_);
+			}
+		}
+	}
+	close file;
+}
+
+parseif("output/bt_program23.meta");
+$fmt = 1;
+parseif("output/bt_format.meta");
+
+
Index: ble fast connect receive/util/rom2mif.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/rom2mif.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/rom2mif.pl	(working copy)
@@ -0,0 +1,50 @@
+#!/usr/bin/perl
+#perl hex2mif.pl <filename without ext> 
+
+
+$file0 = $file1 = $ARGV[0];
+$file1 =~ s/\.rom/.mif/;
+$wid = 8;
+
+
+
+print ("opening $file0\n");
+open(ifile, "$file0") || die("cannot find $file0 file\n");
+for($l = 0;$val = <ifile>;$l++)
+{
+	if($l == 0)
+	{
+		if(substr($val, 1, 1) !~ /[0-9a-fA-F]/) { $wid = 1; }
+		elsif(substr($val, 2, 1) !~ /[0-9a-fA-F]/) { $wid = 8; }
+		elsif(substr($val, 4, 1) !~ /[0-9a-fA-F]/) { $wid = 16; }
+		else { $wid = 32;	}
+	}
+}
+printf ("width is %d\n", $wid);
+printf ("totally %d words\n", $l);
+seek(ifile, 0, 0);
+open(ofile, ">$file1");
+printf ofile ("DEPTH = %d;\n", $wid == 1 ? $l/8 : $l);
+printf ofile ("WIDTH = %d;\n", $wid == 1 ? 8 : $wid);
+print ofile ("ADDRESS_RADIX = HEX;\n");
+print ofile ("DATA_RADIX = HEX;\n");
+print ofile ("CONTENT\n");
+print ofile ("BEGIN\n");
+for($l = 0, $val1 = 0;$val = <ifile>;$l++)
+{
+	$val =~ s/\n//g;
+	$val0 = hex(substr($val, 0, $wid == 1 ? 1 : $wid/4));
+	if($wid > 1) {
+		printf ofile ("%x : %x;\n", $l, $val0);
+	} elsif($l % 8 == 0 && $l > 0) {
+		printf ofile ("%x : %x;\n", $l/8 - 1, $val1);
+		$val1 = 0;
+	}
+	$val1 |= $val0 << ($l & 7);
+}
+if($wid == 1) { printf ofile ("%x : %x;\n", $l/8 - 1, $val1); }
+print ofile ("END;\n");
+
+close(ifile);
+close(ofile);
+
Index: ble fast connect receive/util/route.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/route.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/route.pl	(working copy)
@@ -0,0 +1,10 @@
+system("route print > 1");
+open file,"1";
+while(<file>) {
+	if(/^\s+0\.0\.0\.0\s+0\.0\.0\.0\s+([\.0-9]+)\s+([\.0-9]+)\s+1\s+$/) {
+		print "added route to " . $1;
+		system("route add 192.168.2.126 " .$1);
+		last;
+	}
+}
+close file;
\ No newline at end of file
Index: ble fast connect receive/util/setarg.pl
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/setarg.pl	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/ble fast connect receive/util/setarg.pl	(working copy)
@@ -0,0 +1,100 @@
+@dat = @init = ();
+
+sub setarg {
+my ($j, $k, $n);
+for($j = $k = $n = 0;$j < @dat;$j++) {
+        if($dat[$j] =~ /^mem_/ && $j > 0 || $n == 3) {
+                push @init, sprintf "\tsetarg 0x%x\n", $k;
+                push @init, sprintf "\tistore %d,contw\n", $n;
+                $n = $k = 0;
+        }
+        if($dat[$j] =~ /^mem_/) {
+               push @init, sprintf "\targ %s,contw\n", $dat[$j];
+        } else {
+                $k |= $dat[$j] << $n++*8;
+        }
+}
+push @init, sprintf "\tsetarg 0x%x\n", $k;
+push @init, sprintf "\tistore %d,contw\n", $n;
+}
+
+sub setsect {
+my($i,$j,$k,$n);
+
+if($ARGV[1] eq "c51") {
+	push @init, sprintf "ifdef C51\ndownload_pdata:\n\tforce 9,loopcnt\ndownload_pdata_loop:\n\thstore 1,core_docd_pdata\n";
+	push @init, sprintf "\trshift8 pdata,pdata\n\tloop download_pdata_loop\n\trtn\n";
+	push @init, sprintf "download_c51:\n\thjam 5,core_docd_ctrl\n\tforce 0,pdata\n\thstore 2,core_docd_paddr\n";
+}
+for($i = $j = $k = $n = 0;$i < @dat + 2;$i++) {
+	if($i == @dat && $n == 0) {
+		push @init, sprintf "\tsetarg 0x%x\n", $k;
+		if($ARGV[1] eq "c51") {
+                	push @init, sprintf "\tcall download_pdata\n";
+		} else {
+			push @init, sprintf "\tistore %d,contw\n", ($j + 7)/8;
+		}
+		last;
+	}
+	if($i == @dat) {
+		$i = $i;
+	}
+	if($j > 18 || $i == @dat + 1) {
+		push @init, sprintf "\tsetsect %d,0x%x\n", $n,$k & 0x3ffff;
+		if($n == 3 || $i == @dat + 1) {
+			if($ARGV[1] eq "c51") {
+                		push @init, sprintf "\tcall download_pdata\n";
+			} else {
+                		push @init, sprintf "\tistore %d,contw\n", ($n*18 + ($j > 18 ? 18 : $j))/8;
+			}
+			$n = -1;
+		}
+		$k >>= 18;
+		$j -= 18;
+		$n++;
+	}
+	if($i < @dat) {
+		if($dat[$i] =~ /^mem_/) {
+		       push @init, sprintf "\targ %s,contw\n", $dat[$i];
+		} else {
+			$k |= $dat[$i] << $j;
+			$j += 8;
+		}
+	}
+}
+if($ARGV[1] eq "c51") {
+	push @init, sprintf "\thjam 3,core_docd_ctrl\n\trtn\nendif\n";
+}
+}
+
+if(@ARGV == 0) {
+	printf "missing file name\n";
+	exit;
+}
+if(open file, $ARGV[0]) {
+        while(<file>) {
+                next if(/^#/);
+                s/#.*//g;
+                if(/^([a-z0-9_]+):(.*)/) {
+                        push @dat, $1;
+                        $_ = $2;
+                }
+                if(/^\'/) {
+                        s/[\'\r\n]//g;
+                        for($i = 0;$i < length($_);$i++) {
+                                push @dat, ord(substr($_, $i, 1));
+                        }
+                } else {
+                        s/\s//g;
+                        for($i = 0;$i < length($_);$i+=2) {
+                                push @dat, hex(substr($_, $i, 2));
+                        }
+                }
+        }
+        close file;
+}
+
+setsect();
+
+print @init;
+
Index: test_tools/Use Instructions.pdf
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/Use Instructions.pdf	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/Use Instructions.pdf	(working copy)
@@ -0,0 +1,29 @@
+%PDF-1.7
+%
+1 0 obj
+<</Type/Catalog/Pages 2 0 R /Outlines 70 0 R /PageLabels<</Kids[ 71 0 R ]>>/Lang(zh-CN)/MarkInfo<</Marked true>>/StructTreeRoot 72 0 R /AcroForm<</Fields[]>>/Metadata 666 0 R >>
+endobj
+5 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F4 27 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image16 37 0 R /Image23 39 0 R /Image25 41 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/MediaBox[ 0 0 595.32 841.92]/Contents 42 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0>>
+endobj
+6 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/MediaBox[ 0 0 595.32 841.92]/Contents 45 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 1>>
+endobj
+7 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F4 27 0 R /F5 46 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R /Image36 49 0 R /Image37 50 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 51 0 R  52 0 R ]/MediaBox[ 0 0 595.32 841.92]/Contents 53 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 2>>
+endobj
+8 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F6 54 0 R /F4 27 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R /Image42 57 0 R /Image43 58 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/MediaBox[ 0 0 595.32 841.92]/Contents 59 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 5>>
+endobj
+9 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F4 27 0 R /F5 46 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R /Image48 60 0 R /Image49 61 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Annots[ 62 0 R  63 0 R ]/MediaBox[ 0 0 595.32 841.92]/Contents 64 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 6>>
+endobj
+10 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F4 27 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R /Image52 65 0 R /Image53 66 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/MediaBox[ 0 0 595.32 841.92]/Contents 67 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 9>>
+endobj
+11 0 obj
+<</Type/Page/Parent 12 0 R /Resources<</Font<</F1 13 0 R /F2 16 0 R /F3 24 0 R /F4 27 0 R >>/ExtGState<</GS7 35 0 R /GS8 36 0 R >>/XObject<</Image28 43 0 R /Image56 68 0 R >>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/MediaBox[ 0 0 595.32 841.92]/Contents 69 0 R /Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 10>>
+endobj
+21 0 obj
+<</Length 31461/Length1 76729/Filter/FlateDecode>>stream
+x	|TE0^UޗNҝCܐE@i	[ B\ѸḰ9!t
\ No newline at end of file
Index: regedr/e.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: regedr/e.exe
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/regedr/e.exe	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/regedr/e.exe	(working copy)

Property changes on: regedr/e.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: regedr/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: regedr/geneep.exe
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/regedr/geneep.exe	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/regedr/geneep.exe	(working copy)

Property changes on: regedr/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: test_tools/Use Instructions.docx
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: test_tools/Use Instructions.docx
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/Use Instructions.docx	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/Use Instructions.docx	(working copy)

Property changes on: test_tools/Use Instructions.docx
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: test_tools/mouse_test V1.3.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: test_tools/mouse_test V1.3.exe
===================================================================
--- /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/mouse_test V1.3.exe	(revision 0)
+++ /branch/mouse/1098_customers_code_release/Standard_mouse_fast_conn_project/109X Mouse Receive/test_tools/mouse_test V1.3.exe	(working copy)

Property changes on: test_tools/mouse_test V1.3.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
