Index: do.bat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/do.bat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/do.bat	(working copy)
@@ -20,6 +20,10 @@
 @rem set device_option=flippen
 @echo off
 
+set now_path=%~dp0
+set util_path=%now_path%util
+set/p mode=Please press mode SA or SB:
+
 setlocal enabledelayedexpansion
 for %%f in (program\ble_protocol_stack\*.prog) do @set progs=!progs! %%f
 for %%f in (program\g24_protocol_stack\*.prog) do @set progs=!progs! %%f
@@ -74,9 +78,18 @@
 cd output
 osiuasm bt_program23 -O-W
 
-geneep -n 
-::geneep -n -k key.dat 
+if /I "%mode%" equ "SA" (goto SAmode)
+if /I "%mode%" equ "SB" (goto SBmode)
+
+:SAmode
+%util_path%/geneep  -n
+goto contin
+
+:SBmode
+%util_path%/geneep  -n -s
+goto contin
 
+:contin
 echo create auth rom
 perl ../util/mergepatch.pl mouse_ble_att_list usb_kbdata_vendor_define usb_kbdata usb_msdata usb_devicedata usb_confdata ble_shutter_gatt_list ble_shutter_key_value_list ble_car_att_list sha256 
 perl ../util/romcrc.pl romcode.rom
@@ -98,7 +111,4 @@
 cd ..
 call set_chip_type_flag.bat 
 
-:end
-
-
-
+:end
\ No newline at end of file
Index: format/app.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app.format	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app.format	(working copy)
@@ -65,10 +65,19 @@
 
 
 //adc
+0 mem_reference_inter1p8v_2v_adc_io_data
+0 mem_inter1v_adc_ft_data
 2 mem_3v_adc_io_data
+0 mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+0 mem_inter1p2v_adc_ft_data
 2 mem_2v_adc_hvin_data
+0 mem_reference_inter1p8v_1v_adc_io_data
+0 mem_io1v_adc_ft_data
 2 mem_1v_adc_io_data
+0 mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+0 mem_io2v_adc_ft_data
 2 mem_3v_adc_hvin_data
+0 mem_adc_ratio
 2 mem_reference_voltage
 1 mem_adc_config_flag
 1 mem_adc_channel
@@ -209,6 +218,7 @@
 7 OTP_OFFSET_XRAM_BISTFIX	//2 byte
 9 OTP_OFFSET_PATCH_BISTFIX	//2 byte
 
+0xfc0 OTP_OFFSET_ADC_PARAM_L_C0
 0xfd0 OTP_OFFSET_ADC_PARAM_L
 0xff0 OTP_OFFSET_UCODE_KEY_L
 0x1000 OTP_OFFSET_H
@@ -369,3 +379,9 @@
 0x0e ADC_CH_GPIO13
 )
 
+//mem_adc_reference_mode 
+(
+1 SADC_REFERENCE_INTER3V
+2 SADC_REFERENCE_INTER1P8V_DIV2
+)
+
Index: format/app_mouse.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app_mouse.format	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app_mouse.format	(working copy)
@@ -424,27 +424,19 @@
 3 mem_tx_power_factory_param_new
 18 mem_sensor_ka8g2_init_new
 
-//uart start 
-1 mem_device_uart_tx_gpio
-1 mem_device_uart_rx_gpio
-2 mem_device_uart_rx_buffer
-2 mem_device_uart_rx_buffer_end
-2 mem_device_uart_tx_buffer
-2 mem_device_uart_tx_buffer_end
-2 mem_device_uart_baud_rate
-//uart end
-
 64 mem_le_tx_buffer0_omemalloc_new
 64 mem_le_tx_buffer1_omemalloc_new
 64 mem_le_tx_buffer2_omemalloc_new
 64 mem_le_tx_buffer3_omemalloc_new
+
+1 mem_mouse_wheel_temp_gpio
+1 mem_mouse_qdec_set_flag
 )
 
 (
 0x20 MOUSE_BLE_L2CAP_TXBUFF_SIZE_NEW
 )
 
-
 xmemalloc g24_tx_hid_mouse_flippen(
 16 mem_24g_txpayload_buf
 1 mem_release_data_from_receiver_enable
Index: format/bt.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/bt.format	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/bt.format	(working copy)
@@ -209,8 +209,18 @@
 1 mem_system_clk
 
 ifdef DEBUG_RF_INIT
-18 mem_rf_init_data
+5 mem_rf_init_data
 endif
+
+0 mem_adc_reference3v_ft_data	
+2 mem_adc_reference3v_gpio1v_ft_data	
+2 mem_adc_reference3v_gpio2v_ft_data	
+2 mem_adc_reference3v_vdcdc3p6v_ft_data	
+2 mem_adc_reference3v_vdcdc4p6v_ft_data	
+2 mem_adc_reference3v_inter1v_ft_data
+2 mem_adc_reference3v_inter1v_now_data	
+1 mem_adc_reference_mode
+
 1 mem_otp_charge_pump_x
 1 mem_otp_dpll_ibais_x
 
Index: output/eeprom.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/eeprom.dat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/eeprom.dat	(working copy)
@@ -1,5023 +1,5699 @@
 00
 02
-aa
-55
-56
-13
+38
+75
 c2
-84
-00
-24
-c0
-00
-02
-98
-c0
-01
-00
-4b
-c0
-08
-00
-54
-c0
-08
-80
-56
-c0
-0a
-01
-6f
-c0
-0a
-80
-d8
-c0
-0c
-00
-f8
-c0
+27
+f0
+9b
 0c
-80
-ff
-c0
-0d
-00
-64
-c0
-12
-82
-1e
-c0
-34
-02
-91
-c0
-34
-82
-b1
-c0
-36
-02
-5a
-c0
-36
-80
-33
-c0
-39
-84
-7e
-c0
-3d
-04
+74
+60
+78
+61
 d0
-c0
-3f
-84
-5e
-c0
-40
-84
-b5
-c0
-42
-03
-9a
-c0
+cc
+b7
+67
+fb
+aa
+55
+d0
+14
+ba
+1b
+2d
+7c
+fa
+2a
+0b
+a8
+55
+3b
+f2
+34
+56
+2f
+c3
+4d
 42
-83
-e6
-c0
-43
-02
-06
-c0
-43
-83
-c4
-c0
 44
-03
+0f
+05
+18
+51
+cc
+fc
+52
+a7
+aa
+0e
+1b
+d5
+0a
+3b
 e4
-c0
-45
-03
-ae
-c0
-46
-02
-ef
-c0
-46
-83
-57
-c0
+c5
+db
+ee
+5d
+7e
+b5
+0a
+0b
+f4
+96
+cf
+58
+d5
 47
-04
-48
-c0
-45
-82
-c8
-c0
+71
+22
+e5
+e1
+2d
+fb
 48
-04
-aa
-c0
-4a
-84
-75
-c0
-4b
-04
-93
-c0
-62
-82
-3d
-c0
-6d
-01
-40
-c0
-6e
-01
-50
-20
-20
-23
-5a
-c0
-0a
-01
-90
-c0
-0d
-01
+55
+86
+db
+22
 8f
-c0
-12
-81
-bf
-c0
-13
-01
-c4
-c0
-1c
-81
-d6
-c0
-1d
-01
-e0
-c0
-26
-01
+40
+2d
+17
+41
 da
-c0
+d3
+59
 26
-81
-de
-c0
-48
-02
-40
-c0
-4b
-04
-69
-c0
-4d
-00
-e6
-c0
-4e
-80
-ed
-c0
-4f
-82
-62
-c1
-7f
-80
-00
-20
-20
-23
-5a
-6f
-e0
-c6
-4f
-67
-e0
-c9
-58
-6f
-e0
-c6
-4e
-c1
-7f
-80
-00
-20
-40
-23
-c3
-6f
-e0
-c6
-4e
-d8
-40
-00
-3e
-20
-40
-6f
-21
-6f
+5e
 e0
-c6
-5b
-d8
-40
-00
+03
+be
+17
+bb
 3e
-20
-40
-6f
-21
-68
-48
-c6
-4d
-20
-40
-55
-b5
+7e
+44
+5d
+6c
+e5
 68
-48
-c6
+34
+f4
+f2
+4f
+b3
 4d
-20
-40
-6e
-e6
-20
-40
-d4
-73
-20
-40
-55
+41
+ad
+4f
+69
 b1
+53
+24
+98
+2f
+f2
+d1
+53
+c5
+19
+e5
+9b
+a1
+93
+a9
+56
+5c
+9f
+8c
+9e
+85
+86
+2d
+8c
+a4
+ef
+44
+cb
+49
+3c
+10
+34
+be
 68
-48
-c6
-4d
-20
-40
-6e
-dd
-20
-40
-23
-c7
-68
-48
+fa
+b9
+a5
+df
 c6
-4e
-20
-40
-6f
-0f
-68
-48
+d4
+70
+b2
+bb
+70
+06
+e9
+2c
+c0
+2f
+c9
+8b
+d0
+b3
+f2
+8a
+e9
+5d
+83
+18
+95
+85
+27
+bd
 c6
+c9
+f6
+58
+dc
+ac
+2b
+e9
+60
+e2
+fd
+8d
+28
+bf
+3a
+15
+f6
+8f
+65
+91
+0c
+2d
+f7
+08
+0d
+a1
+41
+51
+cc
 5b
-20
-20
-6f
+64
+0b
+14
+67
+83
+bd
+19
+91
+5d
+c8
+70
+de
+b9
+cc
+d1
+23
+ba
+fc
 0f
-20
-40
+b0
+8b
+a5
+cc
+09
+e1
+92
+2c
+02
+1c
 75
-52
-20
-40
-74
-48
-20
-40
-2a
+46
+8b
+7c
+b1
+de
+9b
+d8
+0e
+18
+1b
+ff
 45
-20
-40
-20
-2a
-20
-40
+e7
+8d
+1a
+d6
+10
+60
+8f
+f9
+3f
+2d
+ff
+79
+a4
+4a
+d0
+61
+e2
+1c
+e8
+d6
+88
+91
+39
+d3
+6c
+e8
+da
+df
+f8
+85
+a3
+58
+92
+93
+95
+f7
+23
+e7
+59
+ef
+b5
+7f
+42
+80
+25
+d6
+93
+9a
+43
+aa
+63
+17
+ac
+41
+61
+55
+d9
+08
+87
+6a
+fd
 42
-ad
-20
-40
-20
 18
-20
-40
+d2
+85
+a0
+9b
+c7
+3d
+23
+f4
 31
+17
+b7
+c1
+08
+01
+fd
+17
+b2
+97
+dc
+a6
+ec
+83
+ad
+13
+1b
+9f
+0e
+fd
+c4
+72
+f3
+c7
+27
+ed
+5c
+a3
+01
+9f
+34
+f9
+d4
+2a
+3d
+a4
+23
 0f
-20
-40
-24
-8c
-20
-20
-00
-4b
-70
-89
-00
-00
-20
-20
-21
-53
-70
-8a
-0f
-60
-70
-8a
-10
-aa
-70
-8a
-12
-7a
-70
-8a
+29
+74
+b6
 25
-00
-70
-8a
+62
+d5
+54
+31
+fc
+08
+d7
+bb
+c4
+99
+79
+4c
+f3
+09
+75
+9d
+37
+ae
+87
+8b
+7d
+29
+ba
+56
+1f
+f4
+7e
+34
+a3
+03
+a7
+03
+11
+cb
+a3
+35
+0d
+4e
+fc
+65
 26
-00
-20
-00
-00
-3c
-70
-8a
-20
-20
-70
-8a
-23
+7d
 f5
-70
-8a
-24
-12
-70
-8a
-24
-10
-20
-00
-00
+d1
+2a
+39
+e6
+4a
+66
+c1
+7b
+f0
+aa
+92
+a6
 3c
-70
+b9
+ca
+68
+9c
 8a
+00
+f7
+f4
 12
-60
-70
-8a
-23
-dd
+4a
+62
 20
-60
-00
-00
-70
-01
+f9
+63
+62
+08
+b5
+ee
+dd
+d0
 bb
-00
-70
-01
-bc
-00
-37
-d9
+29
 82
-00
-70
-89
+21
+df
+4c
+2b
+51
+fd
+27
+62
+48
+e6
+61
+52
+1f
+38
+26
+87
+76
+5a
+ab
+69
 46
-0d
-70
-89
-6f
-10
-70
-8a
+ec
+b4
+ac
 13
-cd
-70
-8a
-06
+1c
+83
+4b
 10
-70
-8a
-84
+e6
+47
+c3
+bc
+0a
+92
+ee
+6b
+94
+b2
+44
+04
+ab
+4b
+ed
+7d
+7f
+4c
+cd
+6a
+17
+ad
 4a
-70
-8a
-85
+cf
+45
+4f
+f3
+36
+89
+87
+3b
+b8
 40
+78
+0d
+f8
+37
+25
+5b
+03
+e8
+e8
+fb
+ea
+c9
+b5
+49
 70
-8a
-16
-fe
-20
-40
-00
+af
+4c
+b2
+d8
+0c
+2b
+49
+e0
+7d
+c1
+f3
 ac
-20
-40
-70
-d7
-37
+46
+54
+61
+2f
+f1
+fa
+cb
+10
+c7
+ae
 d9
-82
-00
-70
+df
+1e
+1a
+06
+5c
+e4
+22
+b0
+e0
+fd
+5c
+f3
+6e
+94
+dc
+12
+7c
+73
+47
+51
+15
+3f
+2a
+e8
+2e
+a4
+e4
+d6
+d5
+97
+9b
+7f
+2e
+db
+11
+cd
+f6
+9a
+6e
+8e
+86
+4f
+7f
+a2
+d2
+a5
+da
+4c
+57
 81
+c6
+8f
+d4
+ea
+41
+ab
+e4
+7f
+b0
+7a
+35
+e7
+8e
+9c
+17
+fc
+46
+33
+44
+29
 3b
-5f
-37
-d9
-82
-00
-70
-81
-3c
-88
-37
-d9
-82
-00
-6f
-e0
-c0
+c5
+57
+52
+c7
+bc
 99
-c0
-08
-00
-a1
-6f
-e0
-c4
-38
-1f
-e1
-fe
-04
-67
-f0
-8a
-02
-70
-89
-0f
-01
-70
-8a
-80
+f7
 24
-70
-8a
-81
-62
-58
+bb
+df
 e6
-12
-12
-67
-f1
-8a
-73
-70
-8a
-86
-60
+a8
+14
+af
+ea
 70
+b5
+fc
+b3
+da
+a7
+72
+73
+3d
 8a
-8b
-3b
-20
-40
-00
+bb
 93
-70
-80
-43
-00
-70
-80
-42
-05
-58
-55
-74
-74
-67
+db
 f1
-89
-68
-70
-89
-60
-6e
-20
-40
-01
-12
-20
-40
-01
-3d
-20
-40
-00
-8d
+05
+c7
+16
+2f
+6a
+6d
+c7
+43
+f6
+b5
+33
+b1
+5c
+f7
 70
-41
-48
-0c
-20
-40
-6f
-4e
-20
-20
-01
-3f
-20
+27
+fc
 75
-80
-00
-37
-d9
-82
-00
-6f
-e0
-c1
-1c
-67
-f0
-81
-3a
-37
-d9
-82
-00
+ba
+e9
+ad
+b4
+e4
 20
-60
-00
-00
-6f
-e0
-c0
-99
+16
+78
+14
+f7
+32
+66
+39
+3e
+6c
+25
+81
+9c
+e2
+25
+a3
+9d
+33
+e6
+3c
+31
 c0
-0c
-00
-99
-6f
-e0
-c4
-38
-1f
-e1
-fe
+f5
+74
+5d
+d5
 06
-67
-f0
-8a
-02
-70
-8a
+32
+73
+92
+a3
 05
-e0
-70
-8a
-00
-d8
-20
-00
-00
-3c
-70
-8a
-01
-a0
-70
-8a
-00
-df
-70
-8a
-01
-fa
-20
-00
-00
-14
-70
-8a
-00
-9f
-20
-60
-00
-00
-6f
-e0
-c4
+5f
+f5
+b1
+3b
 38
-1f
-e1
-fe
-06
+94
+30
+35
+25
+8d
+ab
+5f
+1b
+3c
+da
+62
+bd
+75
+28
+d2
+b5
 67
-f0
-8a
-02
-70
-89
-0f
-00
-70
-8a
-80
-23
-70
-8a
+c4
+0c
+ef
+4a
+e7
+ec
+3c
+96
+a8
+1c
+c6
 81
+57
+4f
+53
+b2
+91
+ba
+c7
+8a
+2c
+d2
 b0
-58
-e4
-09
-09
-67
-f1
-8a
-73
-70
-8a
-76
-2a
-70
-89
-02
-04
-20
-20
-00
-7f
-20
-35
-80
-d4
-6f
-e2
+30
+06
+ac
+29
 02
-0d
-20
-7a
-00
-00
-37
-d9
+6a
+22
+72
+61
+b5
+65
+58
+fc
+e4
+bf
+42
+c2
+91
+b8
+c1
+36
+6e
+1a
+2b
+49
+86
+eb
+fe
+44
+c5
+07
+e3
+55
+07
+6e
+03
+fc
+a9
+58
+6c
+d6
+73
+23
+f3
+14
+d1
+85
+8b
+c4
+19
+ba
+b2
+b6
+97
+e0
+63
 82
+fc
+1a
+4c
+95
+d9
+ae
+3f
+a6
+e3
+03
+b9
+83
+96
+e9
+1d
+75
+b9
+cf
+69
+cd
+cb
+1c
+c1
+9c
+97
+34
+fa
+e0
+79
 00
-6f
-f0
-81
-36
-1f
-e1
-7e
+b6
+29
+77
+74
 f0
+5a
+01
+5e
+41
+22
+56
+a1
+e3
+a1
+31
+35
+04
+01
 68
+a6
+58
+44
+f9
+cd
+2c
+07
+bd
+0b
+a6
+95
+85
+fa
+8a
+a6
+93
+46
+e5
+a4
 48
-82
 0d
-98
-41
+d8
 fe
-00
-1f
-e0
-ff
-fd
-67
-f0
+ad
+e8
+27
+5f
+0e
+cb
+3f
+69
 81
-36
+73
+2e
+4d
+53
+cf
+d8
+be
+1e
 37
+dd
+59
+19
+ad
+d7
+91
+2c
+d2
+6d
+5e
 d9
-82
-00
-6f
-f0
+9a
+06
+04
+99
+67
+2a
+c8
+6e
+d5
+97
+73
+5b
+73
+2e
+3e
+5d
+29
+37
+22
+87
+b0
+01
+e8
+5d
+5d
+76
+65
+2c
+2f
+64
 81
-38
-1f
-e1
-7e
-07
-68
-48
-82
-0e
-18
-49
+da
+33
+6c
+05
 84
-00
-98
+e2
+25
+aa
+30
 41
-fe
-00
-67
-f0
-81
+f3
+85
 38
-37
-d9
-82
-00
+93
+9b
+32
+2b
 6f
-f0
-8a
-cb
-1f
+36
+5e
+f4
+49
+b9
+80
+6d
+63
+a5
+02
+e5
+cf
+c5
+d8
+6f
+66
+58
+aa
+95
+06
+0d
+bb
+37
+c0
+c6
 e1
-7e
-f0
-68
-48
-82
+33
 0f
-60
-48
-c1
-5b
-98
-41
-fe
-00
-67
-f0
-8a
-cb
-6f
-e0
-82
-10
+63
+c8
+74
+a7
+83
+9c
+c9
+70
+6a
+4f
+4f
+61
+ff
+dd
+eb
+33
+54
+a7
+1a
+76
+e3
+0b
+63
+e6
+57
+cd
 67
-e0
-c1
-5c
-2f
+0f
+43
+22
+9d
+c3
+45
+e7
+f7
+ee
+22
+83
+96
+f5
+de
+e5
+97
+48
+3e
+93
+b9
+e7
+3f
+57
+fd
+3a
+a4
+f3
+e6
+63
+a0
+1f
+6d
+fc
+dd
+37
+29
+62
 ef
-fe
-03
-6f
-f0
-8a
-06
-79
-20
-fe
-07
-67
-f0
-8a
-06
-6f
-e0
-82
+de
+3b
+77
+80
+dd
+29
+08
+74
+c0
+b2
+d3
+a3
+dd
 10
-1f
-e1
-04
-07
-18
-52
-04
-00
+dd
+83
+42
+89
+a6
+a6
+16
+74
+ea
+80
+5d
+50
+be
+d3
+2d
+75
+ff
+c5
+96
+2b
+33
 18
-43
-84
-00
+ae
+fe
+23
+b9
+07
+42
+c5
+4d
+a2
+89
+50
+a5
+2c
 60
-48
-c4
+2b
+cd
+30
+b9
+eb
+f9
+9f
+2e
+99
+5c
 38
-6f
-f0
-8a
+01
+27
+46
+3b
+86
+e3
+51
+3b
+a6
+74
+ef
+b2
+fc
+01
+44
+72
+9b
+d5
+58
+23
+56
+77
+5a
+c7
+e4
+08
+5f
+10
+a1
 02
-1f
-e1
+52
+a2
+db
+ce
+91
+36
 7e
-1f
-98
-41
-fe
-00
-67
-f0
-8a
-02
-20
-60
-00
-00
-6f
-e1
-41
-5b
-20
-7a
-00
-00
-67
-e1
-02
-0f
-20
-20
-00
-be
-20
-40
-68
-6f
-20
-40
+95
+05
+56
+bd
+db
+a9
+99
+1b
+d3
+42
+7f
+8d
+d6
+15
+45
+b8
+b4
+fa
+95
 21
-ba
-18
-00
-2a
-08
-18
-00
-2a
-00
-58
-0a
-aa
-da
-67
 f1
-8a
-0f
-70
-8a
+45
+66
+4a
+f1
+90
+d5
+b9
+34
+5e
+9e
+84
+ac
+86
+89
+45
+1d
+80
+37
+bd
+4d
+18
+3f
+51
+5d
 25
-40
 70
-8a
-26
+8d
+83
+21
+1c
+8c
+a8
+e6
+d8
+a2
+36
+ba
 10
-20
-00
-00
-3c
-70
-8a
-01
+91
+67
+88
+87
+ce
+44
+39
+09
+f7
+a1
+2a
+a5
+b1
+af
 fb
-70
-8a
-25
-ff
-70
-8a
-26
+9c
+91
+6e
+37
+eb
+e4
+6d
+ef
 30
-70
-8a
-16
-fe
-20
-20
-21
-b4
-6f
-e0
-c7
-93
-24
-7a
-00
-00
-20
-40
-00
-ea
-20
-20
-60
-fc
-6f
-e0
-c6
-55
-c1
-7f
-80
-00
-20
-20
-5e
-78
-68
-48
+64
 c6
+25
+2d
+ae
+62
+53
 01
-6f
-e0
-c6
-21
-98
-46
-7c
-00
-24
+62
+80
+15
+65
+62
+af
 21
-00
-f2
-20
-20
-36
-81
-6f
-e2
-45
-8f
-68
-4a
-45
-e4
-98
-46
-7c
-00
-20
-22
-b2
-22
+55
 20
-40
-02
+15
+77
+53
+05
+a5
+90
+79
+1b
+7b
+d1
 87
-20
-20
-36
-9b
-58
-0a
-aa
+21
 7e
-67
-f1
-8a
-0f
-20
-00
-00
-3c
-70
-8a
-25
-00
-70
-8a
+ba
+ff
 26
-0d
+f5
+13
+9d
+6e
+95
+ca
+85
+9a
+c2
+2e
+75
+97
+ab
+f1
+2f
 70
-8a
-16
+fe
+74
+d0
+e6
+bf
+1c
+ea
 f6
-20
-20
-22
-03
-6f
-e0
-c1
-41
-c0
-03
-22
-25
-c0
-05
-01
-05
-c0
-4f
-01
-0e
-c0
+b3
+b8
+f3
+61
+7a
+95
+7b
+eb
+4d
+65
+7d
+b2
+9d
+2e
+64
+e5
+1d
+0b
+ba
+db
+c8
+26
+1d
+48
+16
+95
+ae
+4d
+c2
+8f
+54
+ca
+2d
+35
+09
+53
+33
 55
-01
+1e
+91
+f0
 0a
-20
-20
-22
-0e
-70
-8a
-14
-25
-58
-a9
-3f
-3f
-67
-f1
-8a
-60
-70
-8a
-63
-1f
-20
-60
-00
-00
-70
-8a
-14
-17
-6f
+b0
+6e
+f4
+04
+29
+9b
 e1
-ca
-08
-67
-f1
-8a
-60
-20
-20
-22
-1a
-70
-8a
-14
-17
-58
-25
-03
-00
-67
-f1
-8a
-60
-20
-20
-22
-1a
-20
-75
-80
-00
-20
-40
-21
-60
-d8
-40
-00
-27
+b2
+63
+b7
+f9
+7b
+c3
+e2
 20
-40
-21
-6f
+31
+5c
+a7
+9d
+11
+8c
+44
+16
 20
-40
-21
-a6
-70
-8a
-25
-7f
-70
-8a
 30
-1a
-70
+54
 8a
-31
+d3
+4f
+69
+4d
+6f
+66
+24
+d8
+d8
+75
+c7
+ef
 78
-70
-8a
+91
+66
+72
 8f
-b2
-70
-8a
+18
+d9
+58
+0d
 c2
-00
+27
+c0
+39
+6a
+61
+5a
+37
+52
+9f
+85
+ca
+13
+9e
+39
+9b
+c4
+f2
+85
+79
+92
+30
 70
-8a
-c3
-00
-d8
-e0
-00
-06
-20
+b8
+d4
+46
+f9
+ec
+e3
+14
+c4
+c7
+e3
 40
-01
-2f
-2a
-2f
-fe
-0d
-20
-40
-21
-1d
-2a
+6a
+17
+c7
+e5
+5b
+32
+4e
+56
+95
 4f
-fe
-0d
-20
-40
-21
-1e
-d8
-e0
-00
-05
-20
-40
-21
-1c
-20
-40
-21
-1e
-20
-40
+59
+d0
+d6
+29
+bb
+ad
+14
+c6
+2b
+9e
+f7
+60
+88
+f8
+3e
+24
+24
+36
+78
+d3
+32
+f7
+5e
+4d
 01
-2f
-d8
-a0
+b3
+39
+ac
+c6
+8b
+6b
 8a
+b8
+bd
+55
+6f
+02
+a4
+68
+e6
+59
+d9
+ad
+bb
+97
+6f
+05
+b3
+ff
+29
 c2
-1a
-31
-fe
-00
-20
+83
+fc
+eb
+05
+58
+03
 40
+e1
 21
+3c
+5c
+d2
+2c
+49
+da
+79
+d4
+44
 17
-1a
-51
-fe
+26
+f0
+11
+ac
+d9
+3b
+7f
+9d
+35
+8a
+82
+bd
+87
+a4
+02
 00
-20
-40
-21
-17
-18
-e0
+3a
+79
+59
+4c
+db
 8f
-ff
-20
-21
-01
-24
-20
-20
-21
+25
+d0
 4f
-20
-00
-00
-3c
-58
-00
+11
+a4
+82
+e4
+af
+ef
+2e
+9a
+d1
+7b
+61
+28
+99
+ce
+4a
+5f
+84
+31
+94
+65
+51
+d3
+da
+f7
+25
+6d
+a7
+62
+88
+22
+fd
+7c
+c3
+bd
+e1
+79
+1a
+cc
+0d
+57
+ef
+54
+9a
+e0
+bd
+71
+74
+fc
 0f
-00
+a4
+f8
+45
+dc
 67
+cb
 f1
-09
-82
-58
-00
+a2
+43
+36
+cd
+5d
+49
+ad
+c1
+a5
+b5
+7c
+87
+13
+91
+71
 0f
 f0
-67
-f1
-09
-84
-70
-89
-81
+ab
+69
+7f
+b0
+11
+32
 09
-70
-89
-81
-03
-70
-89
+95
+b8
+dd
+d3
+26
+b2
+87
+31
+b8
+ce
+9d
 80
-06
-20
-00
-00
+ef
+93
+bf
+fb
+1a
+4d
+c7
+cd
+e2
+eb
+a6
+ec
+52
+a6
+52
+a5
+59
 3c
-da
-20
-00
-00
-da
-40
-00
-00
-df
-20
-00
+23
+d1
+1f
+33
+b1
 10
-d8
-c0
-0f
-00
-20
-20
-21
-2d
-20
-75
-80
-00
-20
-20
-22
-72
-20
-60
-00
-00
+f1
+fd
+49
+84
+a1
+fd
+04
+bd
+14
+e8
 20
-75
-80
+11
+59
+4c
+c6
+09
+53
+5b
+fd
+5e
+46
+6e
+d3
+03
+c0
+85
+58
+98
+04
+31
+95
+41
+0d
+7b
+bd
+28
+be
+e1
+b6
+9f
+bb
+f9
+98
+33
+23
+3e
+4f
+3b
+c8
+d8
+28
+cd
+59
+27
+8c
+29
+ee
+77
+c6
+fb
+5c
+ae
+27
+a0
+62
+bb
+f8
+1d
+d8
+14
 00
-70
-8a
-07
+fc
+fc
+8e
+8b
+a4
 77
-70
-8a
-08
-c9
-70
-8a
-0b
-01
-6f
+e5
+5b
+7f
+5c
+26
+8f
+48
+11
+cb
+9d
 e0
-c4
-09
-67
-f0
-80
+1d
+d5
+ed
 cd
-20
-00
-0b
-b8
-20
+86
+bd
+25
+7e
+d1
+76
+ad
+cb
+57
+9e
+62
+32
+ec
+3d
 40
-01
-68
+85
+fa
+18
+bd
+a7
+79
+f1
+15
+7c
+95
+e8
+5f
+80
+a8
+4a
+ae
+d2
+04
+ea
+90
+39
+12
+75
+bb
 70
-8a
-08
-c1
-6a
-40
-c4
-19
-df
-20
-00
-08
+0e
+3d
+82
+8f
+f1
+70
+ea
+41
+91
+3b
 20
-40
-6f
-58
-6f
-e0
-c4
-19
-67
-e0
-c4
 33
-62
-40
-c4
-19
-20
-60
-00
-00
-20
-40
-01
-5e
-6f
-f0
-8a
-09
-79
-3f
-fe
 07
-67
 f0
-8a
-09
-70
-8a
-07
-77
-70
-8a
-08
+dc
+4f
 c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
+50
+83
 b8
-20
-40
+4d
+61
+02
+99
+44
+aa
+74
 01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
+fb
+db
+c3
+9f
+0f
+d5
+63
+29
+84
+7c
+a9
+b7
 7e
-01
-67
+fa
+6e
+05
+d5
+30
+59
+49
+4a
 f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
+ec
+8d
 6f
-f0
-81
+5d
+4a
+3a
+ff
+0b
+1c
+76
+0d
+22
+b5
+d2
+55
+7e
+4c
+58
+ce
+59
+f4
+30
+13
 29
-c3
-02
-81
-69
+88
+42
+12
+24
+9c
+f1
+a2
+a9
+5f
+bb
+9d
 68
-59
-01
-64
-60
+16
+eb
+6a
+7e
+25
+a5
 49
-44
-0a
-70
-80
-cc
-00
-20
+ad
+ad
+65
+89
+a9
+25
+03
+04
+7c
+92
+85
+3b
+98
+c3
+0c
+e7
+4f
+14
+2f
+b7
+14
+9b
+27
+db
+f6
+62
+56
+f3
 60
-00
-00
-70
-8a
+c4
+57
+d0
+e8
+8c
+52
 82
+28
+8c
+e3
+b7
 11
-70
-8a
-8d
-12
-70
-8a
-8e
-0a
-6f
-e0
-c0
-99
-c0
-08
-01
-88
-58
-00
-57
-62
-67
-f1
-09
-07
-70
-89
+54
+7d
 01
-03
-70
-89
-30
-03
-c6
-16
+99
+3f
+0c
+e5
+8b
+fe
+c8
+d1
+41
+c9
+c9
+fc
+4c
 80
-00
-70
-89
-01
-01
-70
-8a
-82
-07
-70
-8a
-8d
-44
-70
-8a
+5b
+4b
+7d
+ed
+9a
+aa
+c4
+df
+cc
+81
+c7
+f3
 8e
-0a
-6f
-e0
-c0
-99
+d7
+5a
+bb
+41
+d0
+5d
+0d
+8d
+59
+e6
+10
+78
+0f
+e4
+dc
 c0
-08
+80
+73
+18
 01
-85
-58
-00
+4c
+a1
+59
+9c
+68
+8c
+5a
+cb
+ff
+a9
+31
+a5
+ef
+d3
+57
+2c
+2a
+63
+6b
+9b
+3c
 2b
+d2
+5e
+34
 b1
-67
-f1
-09
-07
+55
+a7
+fe
+3e
+65
+93
+ca
+94
+fd
+fe
+ac
+69
+0f
+6c
+5d
+8d
+2b
+6c
+69
+de
+e1
+21
+57
+c3
+9c
+a3
+31
+df
+f8
+7f
 c6
-97
-80
-00
-70
-89
-30
-24
-70
-89
-01
-05
-20
-60
-00
-00
+c2
 58
-00
-41
-89
-67
-f1
-09
-07
-20
-20
-01
+8c
+3c
+8a
+e2
+51
+5c
+a6
+d6
 81
-58
-00
-83
-12
-67
-f1
-09
-07
-20
-20
-01
-76
-6f
-e0
-cc
-02
-da
-60
-01
-00
-9a
-60
-fe
-00
-20
+17
+b2
+3c
+db
+b1
+2a
+3d
+d4
+b7
+8e
+7a
+de
+bf
+d0
+bc
+72
+53
+88
+4e
+5e
+d8
+77
+65
+40
 60
-00
-00
-20
-20
-01
-af
-20
+cf
+d7
+29
+d1
 40
-01
-92
-20
-20
+c5
+81
+ed
 25
-63
-6f
-e0
-cc
-03
-20
-7a
-00
-00
-6f
-e0
-cc
-04
+cd
+f3
+73
+7b
 24
-7a
-00
-00
-68
-48
-cc
-03
-6f
-e0
-cc
-02
-98
-46
+b5
 7c
-00
-24
+1b
+d4
+ff
+4e
+a3
+f7
+66
+3c
+9f
+5b
+77
+b0
 41
-01
-8b
-98
-46
-7e
-00
-1f
-e6
-7c
-64
-20
-21
-01
-a4
-6f
-e0
-cc
-05
-1f
-e6
-7c
+c6
+eb
 14
+cf
+cb
+ed
+ee
+b3
+ac
+47
+d4
+fa
+fe
+45
+c1
+91
+55
+7d
+25
+71
+82
+c4
+33
+f9
+a7
+f5
+d2
+9f
+3e
+90
 24
-41
-01
-a2
-70
-4c
-04
-01
-20
-60
-00
-00
-70
-4c
-06
-01
-20
-20
-43
-1f
+23
+fd
+9f
 68
-48
-81
-7f
-6f
-e0
-80
-4c
+8d
+26
+d0
+b2
+da
+ba
+cb
+36
+41
 1f
-e3
+70
+3f
+c4
+93
+77
+c2
+a7
 7e
-00
-98
-42
-fe
-00
-2f
-ef
-fe
-02
-58
-00
-00
-00
-68
-48
-cc
-05
-79
-20
-fe
-00
-98
-40
-84
-00
-60
-48
-cc
-05
-20
+9b
+14
+0f
+56
+d7
+cf
+b8
+c6
+0a
+4d
+6e
+99
+c5
+73
+74
+35
+b8
+bb
+47
+64
+1b
+f5
+e7
+89
+cb
+81
+82
+51
+cb
 60
-00
-00
-6f
-e0
-80
-05
-1f
-e0
-fe
-01
+d5
+fa
+69
+dc
+7b
+7a
+f8
+6d
+16
+9f
+6c
+dc
 67
-e0
-80
+12
 05
-24
-36
-81
+e7
+4f
+d8
+46
+33
 b6
-6f
-e0
-cc
-02
-1f
-e0
-fe
-01
-67
-e0
-cc
-02
-6f
-e0
-81
-68
-c3
-81
-80
-00
-79
-20
-7e
-03
-67
-e0
-81
-68
-6f
-e1
-42
+c2
+c5
+9f
 f5
-67
-e1
-01
+29
+61
 96
-58
-00
-00
-00
-67
-e2
-43
-1d
-20
-60
-00
-00
-20
-40
-28
-1c
-6a
-20
+dd
+53
+d1
+31
+22
+51
+87
+d1
+48
 80
-4d
-1a
-20
-a3
-fc
-24
-21
-26
-fa
-20
-20
+ad
+8d
+23
+73
 26
+a1
+e2
+55
+86
+52
+85
+c7
+ba
 8e
-09
-80
-00
-18
-1f
-ef
-7e
-00
+67
+44
+d0
+a3
+0c
+af
+a7
+a1
+6b
+40
+9a
 1f
-f1
-7e
-00
-e7
-e1
 80
-05
-78
-28
-7c
-00
-20
-40
-27
-0d
-20
-23
-26
+6d
+ac
+66
+d6
+ca
+d4
+d1
+96
 f6
-c5
-99
-26
-af
-6f
-e0
+56
+9f
+3e
+9c
+bd
+ff
+d7
+88
+cb
+0e
 80
-4d
-20
-3a
-26
-af
-1f
+0a
+36
+76
+33
+97
+de
+ef
+53
+86
+e8
 e0
+66
+9f
+9e
+af
+45
+6e
+f5
+fe
+d1
+f3
+70
+9e
+f7
+12
+d7
+07
+a3
+c0
+16
+f1
+57
+53
+58
+88
+41
+92
+73
+78
+d2
+e8
+52
+1c
+a5
+30
+e9
+87
+74
+2a
+10
+19
+d1
+f0
+04
+db
+49
+8e
+55
+aa
+ef
+91
+c1
 ff
-fc
-67
 e0
-80
-4d
-20
-40
-72
-cb
-6f
-f0
-81
-08
-c3
-03
-a6
-fa
+8e
 18
-00
-70
-0c
-65
-e2
+60
 01
+12
+6c
+d0
+ba
+02
+46
 54
-20
-20
-26
-af
-6f
-e0
+1d
+bb
+18
+6d
+72
+28
+c6
 c3
-34
-c1
-00
-00
-00
+dc
+ce
+27
+12
+e6
+2f
+50
+fb
+4b
+5c
+cf
+64
+24
+99
+e7
+db
+41
+46
+ce
+c3
+5f
+87
+57
+14
+6f
+b3
+da
+24
+90
+fb
+12
+b2
+9a
+06
+c6
 c0
-01
-b0
-4a
-20
-20
-28
-e1
-20
-40
-21
-52
-70
-89
 00
-00
-79
-3f
-80
+53
+48
+69
+3c
+8d
+98
+f8
+bf
+14
 30
-20
-20
-2a
-e3
-79
-3f
-80
+c2
 30
-20
-20
-2a
-f6
-ef
-e1
-00
-06
-c0
-02
-01
-e3
-20
-20
-28
-eb
-ef
-e1
-80
-06
-67
-e1
-c3
-97
-c0
-05
-01
-e8
-c0
-09
-01
-f7
-20
-20
-2b
+82
 96
-6f
-e4
-47
-13
-c3
-1d
-ad
-19
-20
-40
-2d
-c7
-68
-49
-43
-98
-6f
-e0
-c3
-21
 c2
-81
-81
+9a
+e2
+cd
+3a
+48
+71
+b4
+86
+38
+7d
+be
+da
+6e
+21
+fa
+ce
+9f
+a1
+38
 f2
-6f
-e1
-43
-98
-c0
-18
-2e
-03
-68
-49
-43
-98
-20
-20
+5b
+58
+e5
+07
+66
+38
+62
+ec
+76
+77
+51
+2c
+44
+b7
+52
+d6
+b6
+a9
+5c
+ae
+c5
+e3
+b2
+fa
+2f
+11
+23
+d4
+e6
 2d
-1d
-6f
+69
+66
+9f
+25
+35
 e1
-43
-32
-98
-46
+aa
+58
+31
+66
+52
 7c
-00
-24
-22
-81
-ee
-24
-34
-01
-ee
-20
-20
+c7
+1b
+3f
+fd
+5e
 2d
-46
-18
-c2
-22
-00
-6f
-e1
-43
+2a
+41
+95
+ba
+31
+c7
+02
 35
-1f
-e0
-a5
-fd
-20
-40
-29
-29
-6f
+32
+4a
+08
+0b
+42
+c8
+35
+6d
+e9
+14
+07
+e5
+fe
 e0
-c7
+6e
+36
+88
+73
+f7
+d2
+61
 8f
-c0
-7f
-ad
-ac
-6f
-e0
-c7
+82
+67
+7b
+52
+6b
+e4
+4e
+ec
+58
+0f
+07
+89
 95
+79
+db
+3b
+20
+7e
+5a
+25
+9a
+bf
+04
+57
 20
-3a
-2d
-ac
-6f
-e0
-c8
-43
 c2
-80
-ad
-ac
+f5
 58
-00
-00
-1a
-68
-49
-43
-98
-98
-46
-7c
-00
-24
-22
-ad
-ac
-20
-20
-2d
-46
-20
-40
-2a
-28
-24
+c1
+e1
+a5
 7a
-00
-00
-6f
-e0
-c7
-8f
-c0
-7f
-82
-11
-6f
-e0
-c8
-43
+2c
+13
+29
+92
+29
 1f
-e1
-7e
-03
+e3
+aa
+12
+c8
 c1
-81
+fa
+1f
+fa
+9d
+de
+5b
+8b
+87
+9e
+40
+6a
+32
+6c
+17
+92
+ae
+ff
+ea
+0d
+32
+30
+26
+c9
+a2
+d5
 80
-00
-6f
-e0
+ae
+42
+57
+97
+65
+85
+0a
+ae
+9c
+41
+f5
+12
+5b
+71
+c1
+87
+1c
 cc
-04
-20
-7a
-00
-00
+d7
+6b
+c1
+cb
+44
+46
+a9
+2f
+e9
+72
+4d
+65
+02
+c5
+7c
+cf
+bf
+fd
+30
+2a
+a3
+99
 6f
+e9
+ce
+cf
+a7
+15
+0b
+c3
+69
+89
+4a
+b7
+a3
+7e
+8a
+7c
+bd
+ed
+2a
+ce
+43
+86
+1d
+69
+85
+a4
+50
+51
+5e
+ee
+08
+2a
+b5
+51
+60
+02
+5c
+49
+48
+27
+d3
+0e
+29
+23
+a4
+72
+c5
+27
+9f
+78
 e0
-cc
-06
-24
-7a
-00
+9c
+a5
+fe
+54
+3f
+95
+94
+bf
+33
+18
+79
+2e
+67
 00
-6f
-e0
-c9
-56
-20
-5a
-5a
-71
-6f
-e4
-47
-13
-c2
-80
-db
-5b
-c2
-80
-5b
-5b
-c2
-82
-db
-5b
-c2
-83
-5b
+67
+f3
+7d
+e9
+af
+91
+5c
+89
+75
+59
+58
+c0
 5b
-20
-40
-56
-01
-20
-40
-5a
-b2
-24
-74
-00
-00
-20
-40
-5a
-bc
-20
-40
 04
-9f
-20
-20
-5b
-37
-6f
+f0
+dd
+62
+a9
+5e
 e1
-43
-e9
-20
-40
+50
+26
+d3
+28
+a5
+b5
+a0
+2e
+56
+aa
+ea
+af
+f3
+8e
 7d
-79
+28
+bb
+1c
+7e
+a6
+4c
+3f
+18
+fc
+22
+5f
+cf
+1a
+aa
+26
+d0
+01
+b6
+69
+e3
+52
+47
+8c
+a0
+8e
+7c
+e5
+d9
+e9
+2d
+b3
+e3
 6f
-e2
-40
-ad
+1f
+2a
+31
+bd
+d0
+99
+b9
+a9
+21
+d5
+30
+54
+c7
+39
+e6
+b6
+6a
+43
+c3
+03
+55
 98
-40
-fe
-00
-67
-e2
-40
-ad
-20
-40
-02
-25
-20
-20
-24
-25
-60
-04
-40
+f5
+38
+62
+5a
+b9
+18
+4f
+5c
+1e
+2e
 e7
+7d
+4a
+cb
+2e
+0b
+db
+8d
+9b
+47
+66
+23
+38
+5e
+21
+50
+d3
+35
+5f
+52
+1d
 d8
-c0
-80
-70
-d8
+9d
+94
+7d
+99
+8e
+af
+eb
+ea
+c7
+74
+6e
+db
 a0
-40
+c5
+e3
 cc
-20
-40
-7c
-8f
-d8
-c0
-80
-d4
-20
+0d
+6a
 40
-7c
-89
-6f
-f0
-80
-80
-67
-e0
-c0
+ce
+cf
+c9
 ef
-18
-42
-24
-00
-df
-20
-00
-0c
-da
-20
-00
-16
+7a
+79
 da
-60
-81
-4d
-37
-d9
-82
-00
-ef
-e0
-80
-11
-e8
-40
-80
-13
-98
-46
-7c
-00
-20
-22
-82
-38
-e7
-e0
-80
-13
-37
-d9
-82
-00
-1a
-20
-a2
+e9
+35
+eb
+0a
+a4
+43
 01
-1a
+2d
+db
+b8
+50
+86
+97
+e7
+63
+18
+d6
+4f
+63
+53
+86
+70
+54
+9a
+1b
 60
-a6
-01
-c2
-00
+91
 02
-32
-1a
 42
-04
-00
-20
-60
-00
-00
-20
-40
-6b
+97
+dc
+5d
+9c
+8e
+19
+2e
 3a
-20
-40
-6b
-75
-20
-20
-6b
-38
-6f
-e1
+ca
+73
+b2
+a0
+85
 45
-e0
+3c
+7a
+0c
+ee
+e7
+c1
+46
+1c
+3b
+99
+bf
+3b
+a6
+44
+46
+a3
+55
+9c
+e7
+13
+90
+19
+5b
+55
+b3
+04
+49
+ff
 d8
-40
-01
-f8
+cb
+33
+8a
+a6
+74
+52
+3e
+fb
+5a
+77
+06
 98
-41
-7e
-00
-20
-3a
-02
-48
-6f
-e1
-45
-e0
-1f
-e0
-fe
-01
-67
-e1
-45
-e0
-20
-60
-00
-00
-20
-40
-35
-7f
-20
-40
-36
-51
-24
-2c
-35
+5b
 86
-24
+78
+ea
+12
+c0
 37
-b5
-86
-20
-40
-36
-6e
-6f
-e0
-c5
-7d
-20
-3a
+b2
+cf
+08
+ec
+e5
+09
+b3
+67
+77
+38
+28
+14
 02
-57
-6f
-e2
-45
-cc
-68
-4a
-45
-8f
+81
+86
+21
+42
+bb
+7b
+9a
+1c
+06
+5b
+80
+2a
+6d
+85
+9c
+59
+f2
+0c
+5f
+b7
+cd
+30
+65
+0d
+4d
 98
-46
-7c
-00
-20
-22
-82
-54
-20
-20
-35
-6e
-6f
-e4
-47
+28
+2d
+51
+8a
+06
+f8
+c5
+64
+db
+76
+ed
+3b
+a0
+40
+3e
+6a
+37
+7b
+9d
+a3
+c8
+39
+bc
+15
+b6
+d8
+78
+7b
+88
+59
+73
+19
+17
+df
+60
 13
-c2
-98
-32
-91
-20
-20
-35
+a5
+79
+f3
+0b
+ad
+21
+30
+1d
+1b
+16
+a5
 49
+43
+b6
+5b
 6f
-e2
-45
-5f
-20
-7a
-00
-00
-20
-20
-02
-4f
-20
-40
-54
-3b
-20
 40
+cf
+29
+3e
+d7
 02
-5d
-20
-20
-54
-4c
+f6
+e9
+5c
+d7
+13
+8b
+0d
+b8
+01
+db
+4d
+fe
+81
+44
+70
+35
 58
-00
-4a
-29
-67
-e1
-43
-3f
-58
-00
-00
-20
-67
-e1
-43
-41
-20
+2e
+5c
+34
+15
+63
+3f
+4f
+e3
+2f
+99
+9c
+fc
+a2
+fe
+cb
+9c
 60
-00
-00
-6f
-e0
-c4
-37
-24
-7a
-00
-00
-6f
-e1
-44
-e9
+eb
+ed
+73
+87
+58
+64
+fc
+b6
+57
+01
+87
+a9
+9e
+89
+64
+b7
+1c
+a2
+13
+ce
+99
+17
+ca
+4a
+f9
+7f
+6a
 c3
-85
+7f
+ad
+72
+1a
+69
+f2
+70
+29
+98
+e4
+e1
+5f
+ef
+0e
+f5
+f4
+04
+5c
+78
+17
+98
+9e
+e6
+5b
+fe
+03
+cf
+9c
+81
+4f
 80
-00
-6a
-21
-45
-f0
-20
-40
-35
+cc
 b4
-60
-48
-c6
-24
-6f
-e0
-c6
-29
-c5
-13
-02
-6c
+fc
 6f
-e0
-c6
-2c
-98
+7d
+fc
 46
-7c
-00
-24
-21
-02
-86
-6f
-e0
-c6
-26
+14
+8e
+68
+a5
+f1
+7a
+ee
+cb
+b3
+54
+93
 1f
-e6
-7c
-02
-24
-21
-02
-74
-6f
-e0
-c6
-26
-c0
-00
+d1
+52
 02
+52
+f7
+65
+ad
+32
+6b
+09
+78
+96
+a3
+f2
+49
+f4
+c5
+4c
+b9
+23
+3f
+a1
+ce
+5c
+84
+ad
+91
+c4
+07
+a1
 87
-20
-60
-00
-00
-6f
-e0
-c6
-26
-68
-48
-c6
-27
-98
-46
+17
+56
+1b
+23
+e5
+ca
+bd
+8e
+5b
+d8
+37
+89
+52
 7c
 00
-24
-62
-80
-00
-70
-46
-26
-00
-68
-48
-c6
-24
-6f
-e0
-c6
-28
-c5
+23
+1c
+3c
+a7
 13
-02
-7d
-6f
-e0
-c6
-2b
-98
-46
-7c
-00
-24
-61
-00
-00
-6f
-e0
-c6
-25
-c0
-00
-37
-15
-1f
-e0
-ff
-ff
-67
-e0
-c6
-25
-c0
-01
-02
-8f
-c0
-00
-b7
-0b
-20
-20
-37
-15
-70
-46
-26
-00
-6f
-e0
-c6
-25
-c0
-01
-82
-8d
-1f
-e0
-fe
-01
-67
-e0
-c6
-25
-c0
-00
-b7
-0b
-c0
-01
-02
-8f
-70
-41
-41
-05
-20
-60
-00
-00
-70
-41
-41
-03
-20
-60
-00
-00
-58
-00
-62
-35
-67
-e1
-45
-f8
-58
-00
-02
+b9
+76
+9a
+dc
+3e
+04
+f1
+94
+2a
+08
+86
+13
+9e
+e5
+3f
+f9
+f9
+ba
+cf
+a3
 9b
-67
-e1
-45
-fa
-58
-00
-02
+9a
+e5
+05
+f4
+06
+5e
+47
+28
+98
+a7
 b0
-67
-e1
+39
+dd
+1b
 43
-e9
-20
-20
-53
-f3
-20
-80
-00
-00
-20
-55
-e0
+96
+ee
+25
+ae
+0d
 04
-20
-20
-20
-03
-20
-40
-36
+5d
+84
+d0
 b4
-24
+62
+2d
+4b
+de
+5c
+67
+28
+fb
+ee
+62
+45
+28
+5f
+ac
+d1
+0f
+63
+d6
+06
+b7
 74
-00
-00
-70
+dd
 47
-7c
-01
-20
-40
+c9
+2d
+e3
+1f
+fa
+44
+28
+90
+de
 36
-be
-70
-47
-72
+b7
+7f
+08
+6d
+2e
+43
+28
 00
+db
+28
 20
-40
-62
-aa
-6f
-e0
-c7
-3f
-24
-5a
+6e
+a2
+ba
+7d
+d5
+06
+2a
 54
-dc
-20
-40
-02
-a6
-6f
-e2
-45
-af
-20
+b8
+c9
+3d
+97
+cd
+b1
+67
 20
-36
-22
-6f
-e0
-c7
-3f
-24
+d2
+6d
+33
+27
+9a
+9c
 7a
+da
+c5
+19
+71
+f2
+4e
+ad
+da
+b0
+f4
+7b
+8f
+a8
+3e
 00
-00
-68
-48
+1a
+58
 c6
-4a
-20
-40
-6f
-0f
-68
-48
-c6
-4a
-20
-40
-6e
-c6
-68
-48
-c6
-4b
-20
-40
-6f
-0f
-68
-48
-c6
-4b
-20
-20
-6e
-c6
-20
-60
-00
-00
-20
-40
-04
-42
-6f
-e4
+9d
+9f
 47
-13
-c2
-89
-dd
-60
-c2
-89
-5d
+7e
+d8
+cb
+79
+91
+28
+f8
+12
+f4
+0e
+9b
+92
+e4
+bd
+eb
+e2
+5b
+81
+11
+b3
+1b
+51
+0e
+3a
+7d
+e9
+49
+8e
+88
+88
+c6
+69
+8f
+fe
+62
+ae
+38
+8e
+1e
+86
+de
+2e
+19
+c4
+0c
+61
+1e
+41
+d7
+82
+53
+b4
+82
+14
+f5
+2d
+d2
+50
+bc
+3e
+ec
 6e
-c2
-8a
-02
-b7
-20
-60
-00
-00
-20
-40
-02
-c2
-20
-40
-5e
-43
-20
-40
-5d
 b4
-20
-40
-02
-d6
-20
-40
-02
-bf
-20
-40
-02
-c5
-20
-40
-02
-de
-20
-20
-5d
-aa
-6f
-e4
-47
+80
+dd
+3d
+6d
+82
+91
 13
-c4
-15
-00
-00
-20
-40
-04
-aa
-6f
-e0
-c6
-66
+0a
+80
+f2
+c5
+6c
+ac
+60
+b8
+55
+6c
+4e
+a3
+1d
+bc
+71
+cf
+7b
+7b
+d8
+94
+ac
+ea
+0f
+03
 67
-e0
-ca
 06
-20
-60
-00
-00
-6f
-e4
-47
-13
+39
+43
+03
 c2
-9f
-5d
-d1
-20
-20
-5d
-cc
-6f
-e1
-46
-8e
-d8
-40
+eb
+fd
+9e
+df
+3c
 aa
-55
-98
-46
-7c
-00
-20
-22
-83
-4b
-60
+28
+62
+81
+43
+5e
+1b
+74
+d5
+a9
+39
+8b
 49
-46
-8e
-20
-40
-5c
-9c
-6f
-e0
-c9
-a1
-67
-e0
-c6
-66
-20
-40
-5c
-8c
-58
-00
-11
-22
-67
-e1
-46
-95
-6f
-e0
-ca
-06
-67
-e0
-c6
-66
-20
-60
-00
-00
-6f
-e0
-c6
-66
-1f
-e6
-7c
-00
-20
-22
-82
-d3
+f7
 1f
-e6
-7c
+1e
 04
-20
-22
-82
+14
+34
+90
+e6
+52
+b0
+05
+38
+58
+10
+11
+19
 dc
-20
-61
-00
-00
-70
-46
-66
-00
-20
-60
-00
-00
-6f
-e0
-c6
-66
-c1
-00
-00
-00
+96
+3f
+e3
+fd
+a7
 6a
-41
-49
-fe
-1a
-42
-26
-00
-20
-40
-5e
-3d
 6f
-e1
-49
-e0
-20
+50
+25
+96
+ef
+d5
+f8
+1b
+db
 3a
+a7
+00
+1d
 02
-ec
-67
-e1
-49
-de
-1a
-60
-a6
 02
-6f
-e1
+8f
+35
+b5
+cc
+cb
+89
 4a
-00
-9a
-66
-7c
-00
-24
-21
-02
-ec
-1a
+95
+ab
+2e
+bf
+96
+64
+94
+4a
+d2
+fb
+58
+f8
+4e
+26
+db
+26
+57
 62
-24
-00
-20
-20
-02
-e2
-6f
-e1
-49
-de
-67
-e1
-46
+7d
+f5
+dd
+35
+fd
+5c
+4f
+cd
+44
+f1
+70
+0a
+69
+91
 95
-20
-60
-00
-00
+85
+bd
+88
+8c
+23
+eb
+d8
+7d
+07
+f3
+25
+23
+fd
+87
+f4
+d9
+70
+0a
+42
+ea
+0d
+2c
+4a
+31
+bd
+b2
+64
+a3
+61
+e7
+af
+6e
+c5
+56
+a0
+b4
+70
+e5
+46
+a0
+f2
+76
+63
+c1
 6f
-e4
-47
-13
-c2
-89
-dc
-b1
-c2
-89
-5c
-b9
+71
+11
+0e
+cf
 c2
-8a
+6f
+c3
+cb
+a0
+e4
+7f
+7e
+7a
+c0
+f1
+2a
+eb
+ef
+e0
 02
-f4
-20
-60
-00
 00
-20
-40
+cb
+2f
+a5
+f5
+86
 02
-f7
-20
-40
+4e
+fa
+86
+6a
 02
-fc
-20
+d5
+ce
+11
+78
+ec
+bb
+08
+57
+8d
+a6
+86
+80
 20
-5c
-c1
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
-00
+31
+7c
+a3
+bf
+94
+b2
+53
+59
 83
-23
-c0
-01
-03
+f8
+bd
+cc
+74
+9b
+fc
+13
+e6
+a9
+d3
+0d
+28
+cf
+b4
+f4
+52
+29
+c5
+a7
+e5
+30
+e3
+2e
 37
-20
-60
-00
-00
-6a
-41
+cf
+39
+1f
+51
+29
+25
+78
+3b
+d0
+2e
+c5
+78
+d9
+32
+85
+47
+ad
+c4
+4a
 49
-e2
-1a
-42
-26
-00
-20
-40
-5d
+81
 c0
-6f
-e0
-c9
-a1
-20
-3a
-03
+96
+a7
+84
 08
-67
-e0
-c9
-a0
-1a
+5d
+3b
+dc
 60
-a6
-01
-6f
-e1
-49
-e4
-9a
-66
-7c
-00
-24
-61
-00
-00
-1a
-62
-24
-00
-20
-20
-02
-fe
-6f
-e0
-c9
-a0
-1f
+86
+22
+9b
+13
+51
+09
+d3
+8a
+6b
 e1
-7e
-f0
-20
-3a
-03
-12
-6f
-e0
-c6
-66
-20
-40
-03
-20
-67
+2d
+8e
+f3
 e0
-c9
+8e
+76
 a2
-df
-20
-00
-01
-1a
-62
-24
-00
-da
-20
-49
+db
+04
+1e
+14
+d3
+f1
 a2
-20
-20
-6b
-45
-68
-48
-c9
-a0
-6f
-e0
-c6
-66
-20
-40
+a7
+e7
+86
+e6
+77
+de
+65
+a5
 03
-20
-98
-46
-7c
-00
-20
-62
-80
-00
-1f
-f2
-7e
+71
+9b
+61
+dd
+bc
+f0
+ce
+83
+8c
+0a
+5c
+fb
+2b
+b3
+eb
+02
+dc
+e9
+ae
+75
+9d
 00
-98
-40
-fe
-00
-67
-e0
-c9
-a2
-1a
-62
-7e
+21
+d9
+d6
+9a
+c5
+27
+14
+1e
+48
+35
+ad
+bc
+80
+6c
+32
+c2
+17
+ea
+9e
+1d
+a5
+6a
+8f
 00
-68
-49
-49
+84
+aa
+35
+6e
+ff
+11
+2e
+39
+54
+09
+ab
+02
+79
+01
+f9
+de
 e2
-98
-46
+57
+25
+2e
+58
+f8
+54
+39
+90
+d0
+12
+e4
+9f
+f5
+6b
+54
+af
+1c
+d2
+bc
+90
+d3
+cd
+e7
+57
 7c
-00
 20
-22
+8b
+1c
+f8
+d0
+fc
+0d
+fa
+dd
+f8
+8f
+4d
 83
+4c
+9b
+7c
+7e
+73
+1b
+79
+32
+c8
+3f
+13
+23
+85
+4e
+1e
+3b
+ba
+a5
+9f
+81
+9e
+26
 0e
+c7
+02
+a2
+a0
+5d
+da
+d8
+75
+7b
+15
+3f
+52
+c4
+ae
+7d
+e7
+2e
+f9
+dd
+78
+13
+d0
+3d
+4a
+ea
+ca
+1c
+b1
+9a
+c8
+52
+c5
+35
+10
+2a
+d6
+85
+04
+40
+91
+ed
+bb
+06
+59
+76
+83
+6d
+5c
+d6
+92
+ca
+90
+69
+2a
+84
+c3
+44
+f2
+b1
+ca
+6e
+fb
+75
+29
+6c
+42
+6d
+b9
+51
+11
+50
+63
+a2
+1f
+70
+08
+66
+b3
+48
+c8
+69
+11
+ef
+a0
+94
+8e
 1a
-60
-a7
-ff
-20
-20
-03
+cf
+7a
+d7
+b9
+1c
+c5
+ef
 0e
-c1
-80
-00
-00
-1f
-e0
-fe
-04
-20
-60
-00
-00
-6a
+14
+96
+ca
+d8
+36
+5b
+33
+c2
+c8
 41
-49
-ee
+72
+6b
+37
+d4
+9b
+6c
 1a
-42
-26
+54
+90
+dc
+22
+ec
 00
-20
-40
-5d
+4a
+d3
+9b
+f1
+74
+ca
+a3
+e8
 f3
-6f
-e3
-49
-b5
-20
-3a
-03
-2f
-67
-e3
-49
-af
-1a
-60
-a6
-06
-6f
-e1
-49
-f0
+d8
+b0
+69
+9c
+09
+ef
+e2
+d4
+4f
+8a
+43
+c1
+77
+bc
+a2
+22
+92
+dd
+23
+25
+29
+2b
+d0
+3f
+33
+96
+bf
+73
 9a
-66
-7c
-00
-24
-61
-00
-00
-1a
-62
-24
-00
-20
+45
+b6
+b2
+8c
+b7
+ef
+34
+17
+02
+a3
+a9
+bb
 20
-03
-25
-6f
-e3
-49
-af
-68
-4b
-46
-6e
-98
+d8
+ee
+bf
+2a
+82
+78
+e5
+42
+14
+63
+18
+76
+ab
+f6
+4f
+4c
+c6
+1e
+64
+7c
+92
+10
+99
+5b
+e5
 46
+33
+f1
+d4
+69
+2d
+bb
+ec
+df
+1d
+b4
 7c
-00
+44
+47
+42
+a8
+e6
+e0
+05
+45
+cb
 20
-62
-80
+cc
+23
+8f
+ee
+69
+1c
+7c
+b1
+61
+5b
+1f
+40
+1b
+d2
+1f
+5c
+11
+73
+d9
+dc
 00
+64
+95
+8a
 df
-20
-00
-06
-da
-20
-46
-6e
-1a
-62
+d0
+35
+4a
 24
-00
-20
-20
-6b
-45
-6a
-41
-49
-f6
-1a
-42
+bc
+bb
+08
+02
+29
+05
+27
+5b
 26
-00
-20
-40
-5e
-17
-6f
-e3
-49
-cd
-20
-3a
+2e
+7d
+50
+85
+77
+93
+aa
+0a
+23
+87
+f3
+c2
+88
+c4
+a4
+ef
 03
-43
-67
-e3
-49
-c7
-1a
-60
-a6
-06
-6f
-e1
-49
+09
 f8
-9a
-66
-7c
-00
-24
+0e
+21
+94
+a0
+c0
+75
+a9
+ce
+3d
 61
-00
-00
-1a
-62
-24
-00
-20
-20
-03
-39
+97
+ad
+27
+14
+b6
+38
 6f
-e3
-49
-c7
-68
-4b
-46
-7b
-98
-46
-7c
-00
-20
-62
-80
-00
-df
-20
-00
-06
-da
-20
-46
-7b
-1a
+87
+70
+ab
+30
+be
+0c
+8c
+3f
+7f
+28
 62
-24
-00
-20
-20
-6b
-45
-20
-40
-03
-84
-20
-40
-03
-9c
-20
-40
-03
-4f
-20
-20
-5c
-90
-6f
+c9
+8b
+b3
+f3
 e4
-47
-13
+d1
+91
+d3
+f0
+0b
+1c
+1a
+92
+b8
 c4
-07
-80
-00
-6f
-e0
-c6
-90
-c0
-00
-5c
-94
-c0
-03
-03
-55
-20
-60
-00
-00
-70
-46
-90
-00
-20
-60
-00
-00
-6f
-e4
-47
-13
-c2
-89
-dc
+61
+26
+44
+d0
+65
+6c
+de
+95
+76
+aa
 b5
-c2
-8a
-03
-5b
-20
-60
-00
-00
-6f
-e4
-47
-13
-c4
-07
-80
-00
-6a
-41
-49
-fa
-1a
+af
+23
+e7
+6d
+e6
+77
+d7
+88
+3f
+4c
+72
+a1
+a7
+b6
+db
+db
+53
+39
+4a
+0f
+3e
+39
+4d
+36
+92
+85
 42
-26
-00
-20
-40
-5e
-51
-6f
-e0
-c9
-d4
-20
-3a
-03
-69
-67
-e0
-c9
-d3
-1a
-60
-a6
-01
+29
+31
+43
+cb
+4d
+3f
+98
+f4
+28
+18
+f2
+bc
+41
+a2
+b3
+0c
+d9
+f0
+b4
 6f
-e1
-49
-fc
-9a
-66
-7c
-00
-24
+ab
+52
 61
-00
-00
-1a
-62
-24
-00
-20
-20
-03
-5f
-6f
+2b
+79
+71
+93
+7b
+b9
+d7
+3c
+0e
+dc
+b4
+1c
+12
+2e
+83
+83
+61
+25
+19
+cc
+cd
+f2
+4a
+e8
+1d
+46
+ad
+67
+3a
+ff
+21
 e0
-c9
+d2
 d3
-1f
-e1
-7e
-f0
-20
+34
+a8
 3a
-03
-73
-6f
-e0
-c6
-90
-20
-40
-03
-81
-67
-e0
-c9
-d5
-df
-20
-00
-01
-1a
-62
-24
-00
-da
-20
-49
-d5
-20
-20
-6b
+cb
+8a
+b2
+26
+5d
+0c
+d7
+11
+7a
+8c
+57
+1e
+a4
+ee
+c5
 45
-68
+6b
+ca
+7d
+0c
+a4
+39
+fb
+24
+04
+4d
+d7
+35
+84
+fd
+d2
+c3
+62
+c5
+cf
+4b
+51
+87
+e9
+3c
+35
+85
+7f
+a0
+66
+47
+0e
+ef
 48
-c9
-d3
-6f
-e0
-c6
-90
-20
-40
-03
-81
-98
+16
+96
+9f
+26
+a4
+0d
+e4
+57
+ba
+27
+79
+db
+0e
 46
-7c
-00
-20
-62
-80
-00
-1f
-f2
+b0
+c8
+aa
+f9
+3c
+48
+ef
+4a
+77
+55
+24
+6e
 7e
-00
-98
-40
-fe
-00
+c3
+8e
+f6
+e5
+97
+bd
+ef
+25
+29
+f1
+a1
+c7
+f9
+d1
+38
+58
+3e
+33
+ba
+de
+e3
+dc
+33
+7e
+f5
+2b
+b3
+df
+b4
+9f
+30
+c1
+55
+b3
+cd
+7b
+d0
+50
+92
+72
+53
 67
-e0
-c9
+19
+c0
+a1
 d5
+c2
+70
+ff
+da
+48
+76
 1a
-62
-7e
-00
-68
-49
-49
-fa
-98
-46
-7c
+11
+0f
+12
+7d
+cc
+5f
+e3
+85
+15
 00
-20
+5c
+fd
+86
+38
+2c
+c9
+96
+fd
+2f
+ec
+3f
+2e
+48
 22
-83
-6f
-1a
-60
-a7
-ff
-20
-20
-03
-6f
-c1
-80
-00
-00
-1f
-e0
-fe
+99
+51
+d0
+b4
+4e
+ad
+8f
+2e
 06
+5c
+8f
+62
+27
+f2
+49
+c0
+8b
+7e
+89
+51
+df
+e1
+3b
+30
 20
-60
-00
-00
-6f
-e4
-47
 13
+3d
+ff
+b0
+15
+dc
+d7
+77
+26
+b0
+34
+bc
+89
+50
+af
+ef
+84
+87
+a8
+b6
+c4
+f8
+a0
+77
+71
+04
+93
+e5
+3e
+d1
+8d
+9d
+ec
+44
+30
+fd
+d4
+76
+0d
+ba
 c2
-9f
-03
-8b
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
+ac
+80
+19
+dc
+7c
 00
-83
-8b
-c0
-01
-03
-92
-20
+f9
+b9
+08
+bd
+eb
+57
+0e
 60
-00
-00
-6f
-e3
-46
-6e
-68
-4b
-46
-e6
-98
+3b
+86
+52
+89
+4f
+57
+d9
+02
+d5
+04
+ee
+0b
+82
+75
+aa
+e8
+a7
+05
+9d
+de
+94
+fb
+a5
+95
+b5
+76
+1b
+b9
+6a
+ab
+72
+3d
+a4
 46
+0c
+b8
+1a
+77
+5d
+61
+8c
 7c
-00
-24
+b0
+e8
+01
+a8
+49
+d1
+c3
+e2
+c0
+68
+52
+84
+ec
+55
+bd
+73
+5c
+63
+b4
+22
+09
+d1
+5e
 62
-80
-00
-6f
-e3
-42
-db
-67
-e3
-46
-6e
-20
+32
+7a
+9e
+36
+59
+e6
+48
+fc
+2a
+e6
+25
+08
+d6
+16
+54
+9b
+d3
+4c
+0d
+10
+5c
+a7
+30
 60
-00
-00
-6f
-e3
-46
+16
+84
+06
+54
+1d
+32
+32
+27
+e0
+90
+1d
+84
+02
+28
+40
+f1
+2c
+99
+cc
+79
+16
+0d
+eb
+c4
+c7
+23
+bd
+9f
+ee
+38
+89
+f0
+de
+24
+21
 6e
-68
+a0
 4b
-46
-e6
-98
-46
+9f
+14
+3c
+a1
+0a
+08
+d0
+b8
+81
+91
+7d
+7b
+0d
+4e
+ce
+35
 7c
-00
-24
+5a
+a1
+a1
+c7
+e8
+75
 62
-80
-00
-6f
-e3
-42
-db
-1f
-e0
-ff
-00
-67
-e3
-46
-6e
-20
-60
-00
-00
-20
-40
-03
-9c
-20
-20
-5a
-9c
-6f
+c9
+29
+85
 e4
-47
-13
-c3
-0a
+ea
+f1
+aa
 5c
-6f
-c2
-9f
-03
-a4
-6f
+e9
+7c
+0e
+af
+5f
+3b
+2c
+2c
+52
+26
+5b
+25
+7a
+ed
+1e
+05
+8b
+67
+89
+cc
+a0
+81
+79
+d0
+07
+01
+79
 e0
-c6
-66
-c1
-00
-00
-00
-c0
+ce
+31
+cc
+15
+77
+9d
+c2
 00
-83
-a4
-c0
 01
-03
-a9
-20
-60
-00
-00
-6f
-e3
-46
-68
-67
-e3
-41
-16
-6f
-e3
-46
-6e
-67
-e3
+28
+a3
+65
+72
+b7
+8b
+47
+13
+7e
+a6
+91
+3a
+47
+ed
+59
+bc
+88
+b1
+d8
+cc
+a0
+c8
+9d
+ad
 42
-db
-20
+77
+85
+e2
+3e
+2d
+b3
+93
+4c
+2a
+91
+b9
+76
+73
+1b
+63
+62
+07
+0c
 60
-00
-00
-6f
-e3
-46
-75
-67
-e3
-41
+ae
+97
+80
+0a
+4d
+c5
+bd
+3a
+01
+32
+62
 16
-6f
-e3
-46
-7b
-67
-e3
-42
-db
-20
-60
-00
-00
-6f
+36
+56
+66
+d5
+59
+df
+0b
+86
+58
+74
+0d
+9b
+64
+c8
 e4
-47
-13
-c4
-01
-00
-00
-c3
-0a
+ad
+6e
+c6
+5e
+d9
+a7
+78
+e6
+a6
+c7
+d1
+23
+b7
+f9
+35
+cf
+7d
+d0
+1b
+1e
+72
+aa
+77
+9e
+31
+98
 5c
-43
-d8
-e0
-00
+1f
+e4
+fe
+68
+05
+f2
 02
-20
-40
-5f
-04
-20
-40
-5c
-4a
-20
-40
-03
-b6
-20
-20
-5c
-a3
-6f
-e0
-c6
+da
+1c
+0f
 66
-c0
-00
-83
-ba
-c0
-01
-03
-bf
-20
-60
-00
-00
-6f
-e3
-01
-78
-67
-e3
-46
-68
-6f
-e3
-42
-db
-67
-e3
-46
-6e
-20
-60
-00
-00
-6f
-e3
-01
-78
-67
-e3
-46
-75
-6f
-e3
-42
-db
-67
-e3
+89
+d8
+3e
+52
+48
+c5
+02
+6b
+6a
 46
-7b
-20
+37
+bd
+2a
 60
-00
-00
-20
-40
-03
-da
-20
-40
-61
-4d
-20
-40
-55
-3d
-20
-40
-61
-10
-20
-40
-61
-b1
-20
-40
-61
-1e
-20
-40
-32
-8e
-20
-40
-35
+de
 31
-20
-40
-5f
-dd
-20
-40
-57
-2c
-20
-40
-5b
-9b
-20
-40
-5b
-ab
-20
-40
-5b
-ce
-20
-40
-5b
-d3
-20
-40
-5b
-e1
-20
-40
-5b
-ee
-20
-40
-5b
-e4
-20
-40
-5b
-fb
-20
-40
-03
-dd
-20
-40
-56
-b6
-20
-40
-5c
-0e
-20
-20
+c6
 5c
-05
-da
-60
-4a
-05
-da
-40
-5a
-ef
-20
-20
-42
-e0
-da
-60
-47
-7e
-da
+a1
+83
+98
+fc
+9c
+39
+aa
 40
-03
+d9
+15
+cd
+d9
 e0
+c9
+74
+56
+f2
+e3
 20
-20
-42
-e0
-6f
-e0
+8e
+30
+d2
+6c
+ce
+db
+36
+39
+d6
+35
+95
+3e
+30
 c9
-6b
-67
-e0
-c0
+92
 c0
-70
+91
+13
+4b
+ae
+df
+4f
+3f
+4a
+41
+8e
+ff
+2e
+cd
+6d
+d3
+a9
+41
+54
+54
+00
+7b
+ca
 47
+b2
 7d
-03
-20
-60
-00
-00
-20
-40
+73
+d7
+ca
+6d
+e1
+fa
+b3
+94
 59
-ed
-20
-20
-5c
-1b
-1a
-62
-7e
-00
-c0
-20
-03
-fb
-c0
-0a
-84
-00
-c0
-19
-03
-f2
-c0
-1e
-04
-1e
-c0
+d7
+33
+ee
+7f
+5d
+ae
+61
+d0
+a9
+98
+a0
+ac
+8e
+db
+25
+2d
+7d
+b3
+58
+af
+0d
 1c
-84
-2f
-c0
-1d
-04
 32
-c0
-0a
-03
-ef
-20
-20
-5a
-c3
-58
-00
-00
-00
-67
-e2
+17
+99
+86
+6e
+a5
+3c
+94
+f1
+b4
+c1
+c2
 4c
-03
-20
-20
-5a
-d0
-6f
-e0
+e4
+ea
+6e
+d7
 c7
-95
-c0
-00
-83
-f6
-70
-48
-44
-14
-20
-20
-03
-f8
-20
-40
-5a
-ef
-70
-48
-44
-05
-6f
-e0
-cc
-02
-67
-e0
-cc
-03
-20
-20
+12
 5a
-f6
-6f
-e0
-ca
+37
+12
+65
+76
+3f
+b8
+12
+dc
+25
+13
+34
+69
+3b
+c8
+4e
 04
-24
-7a
-00
-00
-70
+95
+ba
+ec
 4a
+fe
+ef
 04
-01
-70
-4a
-05
-1e
-20
-60
-00
-00
-58
-00
-00
-00
-67
-e0
-ca
+5e
+44
+68
+65
+b4
+65
+ec
+27
+37
+ef
+6d
+88
+f3
+b6
+4c
+98
+a0
+37
 04
-67
-e0
-ca
+5d
+bb
+1d
+5a
+85
+1f
+a4
+a0
+51
+50
+5e
+97
+10
+fe
+27
+2e
+55
+ce
+96
+02
+1c
+e3
+b8
+1d
+da
+88
+55
+5e
+7a
+66
+64
+8f
+09
+49
+5c
+b2
+37
+ce
+9e
 05
-58
-00
-00
-00
-67
-e1
-47
-c0
-70
-47
-94
-00
-d8
-40
+0c
+19
+d0
+b3
+e2
+9e
+13
+0f
+38
+10
+31
+23
+ab
+a0
+6b
+53
+86
+87
+4c
+95
+21
+c4
+7c
+ab
+d9
 00
-06
-6f
-e4
-47
 13
-c2
-8d
-84
-0a
-d8
-40
-00
-07
-60
-49
-42
-d3
-60
-49
+19
+82
+b6
+81
+17
+62
+4b
+f1
+03
+26
+e3
 42
-d5
-70
-47
-c2
-00
-70
+78
 49
-56
-00
-20
-40
-29
-cb
-20
-20
-04
-10
-20
-40
-5b
-7b
-6f
+34
 e1
-43
-ef
-c2
-83
-84
-15
+46
+3f
+a5
+85
 c2
-80
-42
 fc
-20
-20
-5c
-1a
-6f
-e1
-43
-ef
-c2
 80
-42
-fc
-6f
-e0
+07
+6c
+38
+37
+07
+0c
+0c
+e7
+2d
 c8
-43
-1f
-e1
-7e
-03
-20
-40
-5b
-21
-c0
-81
-d4
-a9
-6f
+b6
+64
+2f
+51
+63
+ca
+18
+d0
+01
+a5
+0a
+5c
+58
+5d
+3f
+0a
+fe
+76
+9a
+64
+22
+77
+78
+36
+30
+d5
+f5
+27
+c6
 e0
-cc
+89
+e8
+06
+dd
+89
+86
+fb
+80
+2b
 06
+84
+16
+1a
+16
+d9
+6a
+0e
+bd
+11
+96
+f5
+34
+b8
+89
+5a
+67
+a5
+0b
+5c
+9b
+ec
+31
+58
+a8
+11
+c3
+09
 24
-3a
-54
-a9
-20
-20
+d8
+ca
+5e
+7c
+c8
+7f
+b7
+9b
+ad
+63
+7c
+51
+28
+bc
+b3
+63
+17
+3b
+27
+9c
+56
+ee
+67
+ec
+0c
+ef
+41
+17
+31
+34
+6e
+16
+bb
+e7
+d1
+f4
+24
+b3
+5a
+4b
+63
+c0
+f7
 54
 cd
-6f
-e2
-45
-8f
-67
-e2
-45
-e8
-67
-e2
+a6
+0a
+74
+6a
 46
-91
-20
-40
-35
-5a
-20
-40
-5c
+7e
+85
+fa
+74
+cf
+17
+1a
+15
+e1
+ae
+d4
+81
+e3
+f1
+89
+52
+87
+94
+2d
+e3
+ec
+76
+c8
+4d
+44
 0b
-20
-40
-61
-8e
-20
-40
-5a
-73
-70
-47
-7d
-00
-70
-45
-fc
-00
-70
-45
-e2
-00
+c8
+d3
+6e
+4e
+69
+81
+5b
+5f
+f9
+55
+90
+80
+19
+ff
+79
+44
+44
+a7
+8f
+6d
+b0
+e0
+ee
+43
+c7
+3a
+d2
+2b
+0f
+ba
+8d
+4a
+28
+13
+ac
+e5
 6f
-e2
-45
-e8
-68
+88
+fa
+23
+62
+85
+ae
+a4
+f7
+dd
+52
+64
+01
+8b
+e7
+0c
+23
+5c
+b9
+34
+3e
+ed
+a2
+5a
+43
+03
+f8
+57
+10
+dc
 4a
-45
+29
+c1
+53
+6b
+be
+ab
 e4
-98
-46
-7c
-00
-20
-62
-80
-00
-20
-40
+5d
+6c
+25
+aa
+55
+5a
+e8
 60
+b9
+0e
+34
+94
+c8
+e6
 16
-20
-40
-04
+a8
+23
+fe
+02
+76
+65
+8f
+e8
+7f
+96
+90
+19
+6d
+2f
+14
+f9
+92
+a2
+08
+0c
+1e
+76
+4a
+73
+a4
+df
 45
+be
+ec
+33
+57
+e7
+a4
+eb
+8d
+b2
+e7
+48
+cb
+3d
+41
+b0
+d0
+86
+cc
+c7
+f0
+33
+4d
+6f
+aa
+22
+f8
+25
+d3
+be
+19
+69
+31
+ee
+d5
+cf
 20
+ec
+b8
+e1
+27
+2f
+fc
+7d
+9f
+98
+a5
+41
+d8
+a4
+d7
+f8
+78
+9d
+be
+9f
+ab
+b9
+e4
+d0
+a5
+d8
+98
+a6
+b8
+aa
+7f
+8d
+c1
+35
+8d
+17
+aa
+2f
+74
+59
+35
 20
-60
-42
-20
-40
-60
+d7
 16
-20
-40
-04
+4b
+7c
+ce
+b4
 45
-20
-20
-60
+7c
+93
+3f
+d6
 84
-20
+9a
+72
+7e
+aa
+55
 40
-60
-16
-20
+00
+00
 40
-04
-45
-6f
-e0
-c8
-7a
-c1
-00
-80
-00
-6f
-e0
-c6
-00
-24
-3a
-5f
-f2
-6f
-e0
-c5
-e2
-c0
-02
-04
-3b
-20
-20
-60
-55
-6f
-e4
-47
-13
-c3
-1f
-60
-59
-6f
-e0
-c7
-1b
-c0
+05
 00
-e0
-59
-20
-40
-60
-18
-70
-46
-66
-01
-20
-20
-54
-a0
-6f
-e0
-c1
-41
-67
-e0
-ca
+33
 07
 20
-60
 00
 00
-6f
-e0
-ca
-07
-67
-e0
-c1
-41
-20
-60
 00
 00
-20
-40
-62
-0e
-20
-40
-78
-aa
-20
-40
-04
-4c
-20
-20
-5e
-61
-6f
-e0
-c6
-49
-c1
-7f
-80
 00
-da
-20
 00
 00
-70
-49
-77
-05
-68
-48
-c6
-49
-20
-40
-04
-53
-20
-20
-56
-c1
-6f
-e4
-47
-13
-c2
-95
-d6
-de
-6f
-e0
-c9
-74
-1f
-e2
-26
 00
-6f
-e0
-c6
-54
-c0
-7f
+73
+18
 84
-5a
-20
-20
-56
-ce
-6f
-e0
-c6
-49
-20
-40
-59
-46
-68
-48
-c6
-49
-20
-20
-04
-5e
-1a
-62
-7e
+f2
+7d
+61
 00
-67
-e0
-c9
-78
-1f
-e3
-fe
 00
-1f
-e2
-24
 00
-18
-42
-26
 00
-20
-40
-55
-b1
-1a
-62
-04
 00
 20
-40
-6e
-e6
-7d
-20
-a4
 00
-20
-40
-59
-3d
-20
-20
-59
-29
-20
-40
-36
-b4
-24
-74
+60
+04
 00
 00
-20
-40
-36
-be
-20
-40
-04
-6f
-6f
-e1
-c6
-08
-20
-20
-36
-22
-58
 00
 00
 00
-79
-20
-7e
-15
-67
-e4
 00
-16
-58
+10
+04
+60
 00
 00
+06
 00
-67
-e2
+30
 00
-1e
-20
-60
 00
 00
-70
-46
 00
 00
-20
-40
-36
-47
-5f
-ff
-ff
-ff
-67
-e2
-45
-af
-58
 00
 00
 00
-67
-e3
-c8
-46
-70
-47
-3f
-01
-20
-40
-59
-ed
-20
-20
-02
-9b
-20
-40
-5a
-92
-20
-40
-04
-6f
-20
-40
-56
-a9
-68
-48
-c6
-54
-20
-40
-6e
-f7
-68
-48
-c6
-54
-20
-40
-6e
-d3
-6f
-e0
-c6
-4d
-20
-40
-59
-43
-d8
-40
+41
+a4
 00
-15
-20
-40
-55
-b5
-20
-40
-04
-8b
-20
-20
-54
-df
-6f
-e0
-c6
-5a
-c1
-7f
-80
 00
-6f
-e0
-c6
-66
-c0
 00
-04
-91
-68
-48
-c6
-5a
-20
-20
-55
-b5
-68
-48
-c6
-5a
-20
-20
-6f
-0f
-c6
-93
 00
 00
-20
-40
-56
-01
-24
-74
 00
 00
-6f
-e0
-c7
-7c
-70
-47
-7c
 00
-24
-5a
-04
-a8
-6f
-e4
-47
+00
+00
+00
+00
+aa
+55
+08
+00
 13
-c3
-0b
+47
 04
-9d
-6f
-e0
 c9
-6c
-24
-3a
-60
-b6
-20
-40
-04
-9f
-20
-20
-60
-a2
-6f
-e0
-c6
-59
-c1
-ff
-80
+12
 00
-6f
-e0
-c7
-7d
-20
-7a
 00
 00
-1f
-e0
+01
+1b
+aa
+55
+1e
+00
+44
+46
+06
+07
+08
+08
+07
+06
+14
+12
+0d
+0f
+15
+01
+02
+00
 ff
 ff
-67
-e0
-c7
-7d
-58
+0a
+ff
+ff
+ff
+ff
+ff
+ff
+05
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+01
 00
+29
+47
+01
+aa
+55
+02
 00
+ff
+46
+00
+14
+aa
+55
+03
 00
-67
-e2
-48
-47
-20
-20
-5a
-73
-20
-40
-04
-6f
-20
-20
 02
-2e
-6f
-e4
 47
-13
-c4
-15
+05
+02
+05
+aa
+55
+01
 00
+07
+47
+14
+aa
+55
+01
 00
-c3
-1f
-de
-b9
-68
-48
-c6
-5a
-20
-40
-6e
-f7
-68
-48
-c6
-5a
-20
-40
+05
+47
+02
+aa
 55
-b1
-68
-48
-c6
-5a
-20
-40
-6e
-e6
-24
-20
-de
-c2
-20
-20
-5e
-be
-20
-40
-59
-58
-c0
-18
-59
-5f
-c0
-18
-d9
-c6
-c0
-2c
-04
-ba
-20
-20
-59
-52
-20
-40
-59
-e7
-6f
-e0
-c8
-5a
-c0
-2c
-84
-be
-20
-20
-59
-5f
-70
-49
-57
-0b
-da
-60
-4a
-0b
-20
-20
-59
-95
-6f
-e0
-c4
-20
-c1
-80
+02
 00
+0a
+47
+02
+06
+aa
+55
+01
 00
-6f
-e0
-c9
-57
-c0
-05
-84
-c6
-20
-20
-59
-f8
-20
-40
-5a
-6d
-6f
-e0
-c6
-59
-c0
-7f
-84
-cc
-68
-48
-c6
-59
-20
-40
-6e
-e6
-24
-60
-80
+0d
+47
+0a
+aa
+55
+01
+00
+12
+47
+0a
+aa
+55
+02
+00
+0f
+47
+58
+02
+aa
+55
+02
 00
+3a
+46
 58
+02
+aa
+55
+01
 00
+3d
+46
+64
+aa
+55
+02
 00
+21
+47
+05
 00
-20
-40
-69
-e5
-c0
-ac
-59
+aa
 55
-20
-20
-5a
-2f
-78
-54
-7c
+01
 00
-58
+3c
+46
+32
+aa
+55
+02
 00
+38
+46
+b0
+04
+aa
+55
+01
 00
+1e
+47
+0a
+aa
+55
+02
 00
-67
-e3
-48
+25
 47
-20
-40
-04
-c1
-20
-20
-56
-06
-88
-75
+70
+17
 aa
 55
-40
+01
+00
+cb
+43
+08
+aa
+55
+01
 00
+1b
+47
+01
+aa
+55
+01
 00
+94
 40
-05
+01
+aa
+55
+01
 00
-33
-07
+c0
+40
 20
+aa
+55
+01
 00
+6b
+49
+20
+aa
+55
+03
 00
+3c
+47
 00
 00
 00
+aa
+55
+02
 00
+66
+46
 00
+34
+aa
+55
+01
 00
-33
-08
-84
-f2
-7d
-61
-00
-00
-00
-00
-00
-20
-00
-00
-14
-00
-00
-00
+74
+46
+34
+aa
+55
+01
 00
+81
+46
+33
+aa
+55
+06
 00
+2d
+46
+dc
+05
+84
+03
+e8
+03
+aa
+55
+01
 00
-10
+35
+46
 04
-60
+aa
+55
+01
 00
+28
+47
+03
+aa
+55
+01
 00
+27
+47
+07
+aa
+55
 06
 00
-30
-00
-00
-00
-00
-00
-00
-00
-00
-41
-a4
-00
-00
-00
-00
-00
-00
+e6
+46
 00
 00
 00
@@ -5026,1631 +5702,955 @@
 00
 aa
 55
-08
-00
-13
-47
-04
-c9
-12
-00
-00
+06
 00
-01
-1b
+f1
+44
+02
+11
+36
+66
+51
+61
 aa
 55
-1e
-00
-44
-46
-06
-07
-08
-08
-07
-06
-14
-12
-0d
-0f
-15
 01
-02
 00
-ff
-ff
-0a
-ff
-ff
-ff
-ff
-ff
-ff
-05
-ff
-ff
-ff
-ff
-ff
-ff
+89
+45
+01
 aa
 55
-01
+05
 00
-29
-47
+e3
+45
 01
+0f
+0f
+0f
+0f
 aa
 55
-02
+01
 00
-ff
-46
+b9
+45
 00
-14
 aa
 55
-03
+01
 00
-02
+40
 47
-05
 02
-05
 aa
 55
 01
 00
-07
-47
-14
+ca
+45
+00
 aa
 55
 01
 00
-05
+7b
 47
-02
+00
 aa
 55
 02
 00
-0a
+8b
+45
+c0
+12
+aa
+55
+07
+00
+43
 47
-02
-06
+ee
+4d
+00
+80
+bb
+00
+05
 aa
 55
-01
+04
 00
-0d
+55
 47
-0a
+80
+bb
+00
+00
 aa
 55
-01
+07
 00
-12
+4a
 47
-0a
+60
+ea
+00
+00
+77
+01
+0b
 aa
 55
-02
+04
 00
-0f
+59
 47
-58
-02
+00
+77
+01
+00
+aa
+55
+03
+00
+af
+45
+00
+48
+60
 aa
 55
 02
 00
-3a
+1d
 46
-58
-02
+2c
+01
 aa
 55
-01
+02
 00
-3d
+1b
 46
-64
+50
+00
 aa
 55
 02
 00
-21
+23
 47
-05
+64
 00
 aa
 55
 01
 00
-3c
+f4
 46
-32
+01
 aa
 55
-02
+06
 00
-38
-46
-b0
-04
+db
+42
+71
+81
+91
+a1
+b3
+c1
 aa
 55
 01
 00
-1e
-47
-0a
-aa
-55
-02
-00
-25
-47
-70
-17
+93
+43
+07
 aa
 55
-01
+08
 00
-cb
+c0
 43
+fb
+00
+48
+08
+fb
+00
+48
 08
 aa
 55
-01
+02
 00
-1b
+be
 47
-01
+96
+00
 aa
 55
-01
+02
+00
+b5
+47
+15
 00
-94
-40
-01
 aa
 55
-01
+02
+00
+9b
+43
+19
 00
-c0
-40
-20
 aa
 55
-01
+04
+00
+b7
+47
+1d
+00
+21
 00
-6b
-49
-20
 aa
 55
 02
 00
-66
-46
+32
+43
+2d
 00
-34
 aa
 55
-01
+02
 00
-74
-46
-34
-aa
-55
-01
+bb
+47
+30
 00
-81
-46
-33
 aa
 55
-06
+0c
 00
-2d
-46
-dc
+48
+43
+1f
+02
+01
 05
-84
 03
-e8
+03
+12
+18
+03
+19
+c2
 03
 aa
 55
-01
+14
+00
+a0
+47
+06
+ff
+06
 00
+03
+00
+80
+0c
+09
+42
+54
 35
-46
-04
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-01
+0e
 00
-28
-47
-03
+68
+43
+1f
+0c
+09
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-01
+0c
 00
-27
-47
-07
+6b
+42
+0b
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-06
-00
-e6
-46
-00
+0c
 00
+8c
+49
+0b
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
+aa
+55
+08
 00
+d3
+42
+06
 00
+09
 00
+20
 00
+2c
+01
 aa
 55
 06
 00
-f1
-44
-02
-11
-36
-66
-51
-61
-aa
-55
-01
+9a
+47
+03
+12
+18
+ff
 00
-89
-45
-01
-aa
-55
-05
 00
-e3
-45
-01
-0f
-0f
-0f
-0f
 aa
 55
-01
+03
 00
-b9
-45
+ec
+46
+00
+50
 00
 aa
 55
-01
-00
-40
-47
 02
+00
+eb
+43
+80
+1f
 aa
 55
 01
 00
-ca
-45
-00
-aa
-55
-01
-00
-7b
-47
-00
-aa
-55
-02
-00
-8b
-45
-c0
-12
-aa
-55
-07
-00
+f4
 43
-47
-ee
-4d
-00
-80
-bb
-00
-05
-aa
-55
-04
-00
-55
-47
 80
-bb
-00
-00
-aa
-55
-07
-00
-4a
-47
-f2
-f9
-00
-00
-77
-01
-0b
 aa
 55
 04
 00
-59
-47
-00
-77
-01
-00
-aa
-55
-03
-00
-af
-45
-00
-48
-60
-aa
-55
-02
-00
-1d
-46
-2c
-01
+fa
+49
+b9
+1a
+ea
+1a
 aa
 55
-02
+18
 00
+e2
+49
+eb
+1a
+b2
 1b
-46
-50
-00
-aa
-55
-02
-00
-23
-47
-64
-00
-aa
-55
-01
-00
-f4
-46
-01
-aa
-55
-06
-00
-db
-42
-71
-81
-91
-a1
 b3
-c1
-aa
-55
-01
-00
-93
-43
-07
-aa
-55
-08
-00
-c0
-43
-fb
-00
-48
-08
-fb
-00
-48
-08
-aa
-55
-02
-00
-be
-47
-96
-00
-aa
-55
-02
-00
-b5
-47
-15
-00
-aa
-55
-02
-00
-9b
-43
-19
-00
-aa
-55
-04
-00
-b7
-47
-1d
-00
-21
-00
-aa
-55
-02
-00
-32
-43
-2d
-00
-aa
-55
-02
-00
-bb
-47
-30
-00
-aa
-55
-0c
-00
-48
-43
-1f
-02
-01
-05
-03
-03
-12
-18
-03
-19
-c2
-03
-aa
-55
-14
-00
-a0
-47
-06
-ff
-06
-00
-03
-00
-80
-0c
-09
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0e
-00
-68
-43
-1f
-0c
-09
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0c
-00
-6b
-42
-0b
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0c
-00
-8c
-49
-0b
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-08
-00
-d3
-42
-06
-00
-09
-00
-20
-00
-2c
-01
-aa
-55
-06
-00
-9a
-47
-03
-12
-18
-ff
-00
-00
-aa
-55
-03
-00
-ec
-46
-00
-50
-00
-aa
-55
-02
-00
-eb
-43
-80
-1f
-aa
-55
-01
-00
-f4
-43
-80
-aa
-55
-04
-00
-fa
-49
-b9
-1a
-ea
-1a
-aa
-55
-18
-00
-e2
-49
-eb
-1a
-b2
-1b
-b3
-1b
-2a
-1c
-2b
-1c
-de
-1c
-df
-1c
-92
+1b
+2a
+1c
+2b
+1c
+de
+1c
+df
+1c
+92
 1d
 93
-1d
-46
-1e
-47
-1e
-fa
-1e
-aa
-55
-06
-00
-fe
-49
-fb
-1e
-c2
-1f
-c4
-1f
-aa
-55
-01
-00
-ec
-44
-ff
-aa
-55
-01
-00
-eb
-44
-1e
-aa
-55
-01
-00
-ee
-44
-00
-aa
-55
-01
-00
-41
-41
-03
-aa
-55
-01
-00
-3e
-46
-00
-aa
-55
-01
-00
-d2
-45
-07
-aa
-55
-02
-00
-f0
-45
-83
-47
-aa
-55
-02
-00
-3f
-46
-85
-90
-aa
-55
-02
-00
-42
-46
-75
-80
-aa
-55
-01
-00
-41
-46
-63
-aa
-55
-01
-00
-27
-46
-7d
-aa
-55
-01
-00
-37
-44
-00
-aa
-55
-03
-00
-08
-4a
-00
-03
-25
-aa
-55
-01
-00
-6c
-08
-ff
-aa
-55
-11
-00
-68
-48
-03
-04
-01
-02
-20
-2a
-3f
-15
-14
-1b
-11
-0e
-8a
-8b
-83
-84
-88
-aa
-55
-08
-00
-4e
-49
-09
-a5
-0b
-f3
-09
-00
-ff
-ff
-aa
-55
-08
-00
-46
-49
-09
-5a
-0b
-f3
-09
-00
-ff
-ff
-aa
-55
-12
-00
-0b
-4a
-09
-a5
-26
-34
-19
-04
-60
-07
-69
-04
-7d
-20
-7e
-00
-09
-00
-ff
-ff
-aa
-55
-0a
-00
-7c
-48
-09
-5a
-26
-34
-19
-04
-09
-00
-ff
-ff
-aa
-55
-0a
-00
-90
-48
-09
-5a
-0d
-10
-1d
-ed
-7d
-80
-ff
-ff
-aa
-55
-10
-00
-2a
-49
-09
-a5
-26
-34
-60
-07
-69
-04
-7d
-20
-7e
-00
-09
-00
-ff
-ff
-aa
-55
-1e
-00
-d6
-48
-09
-5a
-ff
-27
-ab
-40
-be
-d1
-a0
-41
-a1
-12
-a5
-84
-a7
-ff
-b5
-d0
-b6
-00
-ff
-00
-35
-c8
-25
-af
-09
-00
-ff
-ff
-aa
-55
-2e
-00
-fc
-48
-09
-5a
-0d
-10
-0e
-c5
-5b
-9a
-10
-38
-11
-42
-28
-28
-41
-23
-49
-39
-4a
-b0
-4b
-a0
-4c
-90
-4d
-70
-09
-00
-ff
-ff
-09
-5a
-06
-02
-09
-69
-0d
-48
-0e
-9f
-0f
-ba
-09
-00
-ff
-ff
-aa
-55
-01
-00
-48
-41
-0c
-aa
-55
-06
-00
-c3
-40
-35
-3f
-64
-db
-7b
-3b
-aa
-55
-01
-00
-a7
-40
-20
-aa
-55
-03
-00
-c9
-40
-00
-08
-b4
-aa
-55
-01
-00
-99
-40
-18
-aa
-55
-01
-00
-1c
-41
-3e
-aa
-55
-0c
-00
-16
-00
-00
-00
-20
-00
-00
-00
-00
-00
-00
-00
-00
-00
-aa
-55
-05
-00
-5e
-41
-08
-0e
-05
-03
-00
-aa
-55
-01
-00
-68
-41
-20
-aa
-55
-02
-00
-9a
-40
-00
-0c
-aa
-55
-05
-00
-43
-41
-ff
-04
-00
-00
-08
-aa
-55
-01
-00
-1c
-02
-5a
-aa
-55
-01
-00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
-38
-44
-a0
-aa
-55
-02
-00
-3b
-44
-bc
-02
-aa
-55
-02
-00
-39
-44
-90
-01
-aa
-55
-02
-00
-3d
-44
-03
-09
-aa
-55
-01
-00
-49
-41
-ff
-aa
-55
-02
-00
-9c
-40
-49
-41
-55
-aa
-aa
-55
-c3
-5e
-a6
-6e
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
+1d
+46
+1e
+47
+1e
+fa
+1e
+aa
+55
+06
+00
+fe
+49
+fb
+1e
+ac
+1f
+ae
+1f
+aa
+55
+01
+00
+ec
+44
 ff
+aa
+55
+01
+00
+eb
+44
+1e
+aa
+55
+01
+00
+ee
+44
+00
+aa
+55
+01
+00
+41
+41
+03
+aa
+55
+01
+00
+3e
+46
+00
+aa
+55
+01
+00
+d2
+45
+07
+aa
+55
+02
+00
+f0
+45
+83
+47
+aa
+55
+02
+00
+3f
+46
+85
+90
+aa
+55
+02
+00
+42
+46
+75
+80
+aa
+55
+01
+00
+41
+46
+63
+aa
+55
+01
+00
+27
+46
+7d
+aa
+55
+01
+00
+37
+44
+00
+aa
+55
+03
+00
+08
+4a
+00
+03
+25
+aa
+55
+01
+00
+6c
+08
 ff
+aa
+55
+11
+00
+68
+48
+03
+04
+01
+02
+20
+2a
+3f
+15
+14
+1b
+11
+0e
+8a
+8b
+83
+84
+88
+aa
+55
+08
+00
+4e
+49
+09
+a5
+0b
+f3
+09
+00
 ff
 ff
+aa
+55
+08
+00
+46
+49
+09
+5a
+0b
+f3
+09
+00
 ff
 ff
+aa
+55
+12
+00
+0b
+4a
+09
+a5
+26
+34
+19
+04
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
 ff
 ff
+aa
+55
+0a
+00
+7c
+48
+09
+5a
+26
+34
+19
+04
+09
+00
 ff
 ff
+aa
+55
+0a
+00
+90
+48
+09
+5a
+0d
+10
+1d
+ed
+7d
+80
 ff
 ff
+aa
+55
+10
+00
+2a
+49
+09
+a5
+26
+34
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
 ff
 ff
+aa
+55
+1a
+00
+d6
+48
+09
+5a
 ff
+27
+ab
+40
+be
+d1
+a0
+41
+a1
+12
+a7
 ff
+b6
+00
+b5
+c8
+a5
+af
 ff
+00
+09
+00
 ff
 ff
+aa
+55
+2e
+00
+fc
+48
+09
+5a
+0d
+10
+0e
+c5
+5b
+9a
+10
+38
+11
+42
+28
+28
+41
+23
+49
+39
+4a
+b0
+4b
+a0
+4c
+90
+4d
+70
+09
+00
 ff
 ff
+09
+5a
+06
+02
+09
+69
+0d
+48
+0e
+9f
+0f
+ba
+09
+00
 ff
 ff
+aa
+55
+01
+00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
+48
+41
+0c
+aa
+55
+06
+00
+c3
+40
+35
+3f
+64
+db
+7b
+3b
+aa
+55
+01
+00
+a7
+40
+20
+aa
+55
+03
+00
+c9
+40
+00
+08
+b4
+aa
+55
+01
+00
+99
+40
+18
+aa
+55
+01
+00
+1c
+41
+3e
+aa
+55
+0c
+00
+16
+00
+00
+00
+20
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+05
+00
+5e
+41
+08
+0e
+05
+03
+00
+aa
+55
+01
+00
+68
+41
+20
+aa
+55
+02
+00
+9a
+40
+00
+0c
+aa
+55
+05
+00
+43
+41
 ff
+04
+00
+00
+08
+aa
+55
+01
+00
+1c
+02
+5a
+aa
+55
+01
+00
+38
+44
+a0
+aa
+55
+02
+00
+3b
+44
+bc
+02
+aa
+55
+02
+00
+39
+44
+90
+01
+aa
+55
+02
+00
+3d
+44
+03
+09
+aa
+55
+01
+00
+49
+41
 ff
+aa
+55
+02
+00
+9c
+40
+49
+41
+55
+aa
+aa
+55
+1f
+5d
+bc
+28
 ff
 ff
 ff
@@ -8188,5 +8188,5 @@
 ff
 ff
 ff
-2d
-0a
+8e
+81
Index: output/flash.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/flash.dat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/flash.dat	(working copy)
@@ -1,5023 +1,5699 @@
 00
 02
-aa
-55
-56
-13
+38
+75
 c2
-84
-00
-24
-c0
-00
-02
-98
-c0
-01
-00
-4b
-c0
-08
-00
-54
-c0
-08
-80
-56
-c0
-0a
-01
-6f
-c0
-0a
-80
-d8
-c0
-0c
-00
-f8
-c0
+27
+f0
+9b
 0c
-80
-ff
-c0
-0d
-00
-64
-c0
-12
-82
-1e
-c0
-34
-02
-91
-c0
-34
-82
-b1
-c0
-36
-02
-5a
-c0
-36
-80
-33
-c0
-39
-84
-7e
-c0
-3d
-04
+74
+60
+78
+61
 d0
-c0
-3f
-84
-5e
-c0
-40
-84
-b5
-c0
-42
-03
-9a
-c0
+cc
+b7
+67
+fb
+aa
+55
+d0
+14
+ba
+1b
+2d
+7c
+fa
+2a
+0b
+a8
+55
+3b
+f2
+34
+56
+2f
+c3
+4d
 42
-83
-e6
-c0
-43
-02
-06
-c0
-43
-83
-c4
-c0
 44
-03
+0f
+05
+18
+51
+cc
+fc
+52
+a7
+aa
+0e
+1b
+d5
+0a
+3b
 e4
-c0
-45
-03
-ae
-c0
-46
-02
-ef
-c0
-46
-83
-57
-c0
+c5
+db
+ee
+5d
+7e
+b5
+0a
+0b
+f4
+96
+cf
+58
+d5
 47
-04
-48
-c0
-45
-82
-c8
-c0
+71
+22
+e5
+e1
+2d
+fb
 48
-04
-aa
-c0
-4a
-84
-75
-c0
-4b
-04
-93
-c0
-62
-82
-3d
-c0
-6d
-01
-40
-c0
-6e
-01
-50
-20
-20
-23
-5a
-c0
-0a
-01
-90
-c0
-0d
-01
+55
+86
+db
+22
 8f
-c0
-12
-81
-bf
-c0
-13
-01
-c4
-c0
-1c
-81
-d6
-c0
-1d
-01
-e0
-c0
-26
-01
+40
+2d
+17
+41
 da
-c0
+d3
+59
 26
-81
-de
-c0
-48
-02
-40
-c0
-4b
-04
-69
-c0
-4d
-00
-e6
-c0
-4e
-80
-ed
-c0
-4f
-82
-62
-c1
-7f
-80
-00
-20
-20
-23
-5a
-6f
-e0
-c6
-4f
-67
-e0
-c9
-58
-6f
-e0
-c6
-4e
-c1
-7f
-80
-00
-20
-40
-23
-c3
-6f
-e0
-c6
-4e
-d8
-40
-00
-3e
-20
-40
-6f
-21
-6f
+5e
 e0
-c6
-5b
-d8
-40
-00
+03
+be
+17
+bb
 3e
-20
-40
-6f
-21
-68
-48
-c6
-4d
-20
-40
-55
-b5
+7e
+44
+5d
+6c
+e5
 68
-48
-c6
+34
+f4
+f2
+4f
+b3
 4d
-20
-40
-6e
-e6
-20
-40
-d4
-73
-20
-40
-55
+41
+ad
+4f
+69
 b1
+53
+24
+98
+2f
+f2
+d1
+53
+c5
+19
+e5
+9b
+a1
+93
+a9
+56
+5c
+9f
+8c
+9e
+85
+86
+2d
+8c
+a4
+ef
+44
+cb
+49
+3c
+10
+34
+be
 68
-48
-c6
-4d
-20
-40
-6e
-dd
-20
-40
-23
-c7
-68
-48
+fa
+b9
+a5
+df
 c6
-4e
-20
-40
-6f
-0f
-68
-48
+d4
+70
+b2
+bb
+70
+06
+e9
+2c
+c0
+2f
+c9
+8b
+d0
+b3
+f2
+8a
+e9
+5d
+83
+18
+95
+85
+27
+bd
 c6
+c9
+f6
+58
+dc
+ac
+2b
+e9
+60
+e2
+fd
+8d
+28
+bf
+3a
+15
+f6
+8f
+65
+91
+0c
+2d
+f7
+08
+0d
+a1
+41
+51
+cc
 5b
-20
-20
-6f
+64
+0b
+14
+67
+83
+bd
+19
+91
+5d
+c8
+70
+de
+b9
+cc
+d1
+23
+ba
+fc
 0f
-20
-40
+b0
+8b
+a5
+cc
+09
+e1
+92
+2c
+02
+1c
 75
-52
-20
-40
-74
-48
-20
-40
-2a
+46
+8b
+7c
+b1
+de
+9b
+d8
+0e
+18
+1b
+ff
 45
-20
-40
-20
-2a
-20
-40
+e7
+8d
+1a
+d6
+10
+60
+8f
+f9
+3f
+2d
+ff
+79
+a4
+4a
+d0
+61
+e2
+1c
+e8
+d6
+88
+91
+39
+d3
+6c
+e8
+da
+df
+f8
+85
+a3
+58
+92
+93
+95
+f7
+23
+e7
+59
+ef
+b5
+7f
+42
+80
+25
+d6
+93
+9a
+43
+aa
+63
+17
+ac
+41
+61
+55
+d9
+08
+87
+6a
+fd
 42
-ad
-20
-40
-20
 18
-20
-40
+d2
+85
+a0
+9b
+c7
+3d
+23
+f4
 31
+17
+b7
+c1
+08
+01
+fd
+17
+b2
+97
+dc
+a6
+ec
+83
+ad
+13
+1b
+9f
+0e
+fd
+c4
+72
+f3
+c7
+27
+ed
+5c
+a3
+01
+9f
+34
+f9
+d4
+2a
+3d
+a4
+23
 0f
-20
-40
-24
-8c
-20
-20
-00
-4b
-70
-89
-00
-00
-20
-20
-21
-53
-70
-8a
-0f
-60
-70
-8a
-10
-aa
-70
-8a
-12
-7a
-70
-8a
+29
+74
+b6
 25
-00
-70
-8a
+62
+d5
+54
+31
+fc
+08
+d7
+bb
+c4
+99
+79
+4c
+f3
+09
+75
+9d
+37
+ae
+87
+8b
+7d
+29
+ba
+56
+1f
+f4
+7e
+34
+a3
+03
+a7
+03
+11
+cb
+a3
+35
+0d
+4e
+fc
+65
 26
-00
-20
-00
-00
-3c
-70
-8a
-20
-20
-70
-8a
-23
+7d
 f5
-70
-8a
-24
-12
-70
-8a
-24
-10
-20
-00
-00
+d1
+2a
+39
+e6
+4a
+66
+c1
+7b
+f0
+aa
+92
+a6
 3c
-70
+b9
+ca
+68
+9c
 8a
+00
+f7
+f4
 12
-60
-70
-8a
-23
-dd
+4a
+62
 20
-60
-00
-00
-70
-01
+f9
+63
+62
+08
+b5
+ee
+dd
+d0
 bb
-00
-70
-01
-bc
-00
-37
-d9
+29
 82
-00
-70
-89
+21
+df
+4c
+2b
+51
+fd
+27
+62
+48
+e6
+61
+52
+1f
+38
+26
+87
+76
+5a
+ab
+69
 46
-0d
-70
-89
-6f
-10
-70
-8a
+ec
+b4
+ac
 13
-cd
-70
-8a
-06
+1c
+83
+4b
 10
-70
-8a
-84
+e6
+47
+c3
+bc
+0a
+92
+ee
+6b
+94
+b2
+44
+04
+ab
+4b
+ed
+7d
+7f
+4c
+cd
+6a
+17
+ad
 4a
-70
-8a
-85
+cf
+45
+4f
+f3
+36
+89
+87
+3b
+b8
 40
+78
+0d
+f8
+37
+25
+5b
+03
+e8
+e8
+fb
+ea
+c9
+b5
+49
 70
-8a
-16
-fe
-20
-40
-00
+af
+4c
+b2
+d8
+0c
+2b
+49
+e0
+7d
+c1
+f3
 ac
-20
-40
-70
-d7
-37
+46
+54
+61
+2f
+f1
+fa
+cb
+10
+c7
+ae
 d9
-82
-00
-70
+df
+1e
+1a
+06
+5c
+e4
+22
+b0
+e0
+fd
+5c
+f3
+6e
+94
+dc
+12
+7c
+73
+47
+51
+15
+3f
+2a
+e8
+2e
+a4
+e4
+d6
+d5
+97
+9b
+7f
+2e
+db
+11
+cd
+f6
+9a
+6e
+8e
+86
+4f
+7f
+a2
+d2
+a5
+da
+4c
+57
 81
+c6
+8f
+d4
+ea
+41
+ab
+e4
+7f
+b0
+7a
+35
+e7
+8e
+9c
+17
+fc
+46
+33
+44
+29
 3b
-5f
-37
-d9
-82
-00
-70
-81
-3c
-88
-37
-d9
-82
-00
-6f
-e0
-c0
+c5
+57
+52
+c7
+bc
 99
-c0
-08
-00
-a1
-6f
-e0
-c4
-38
-1f
-e1
-fe
-04
-67
-f0
-8a
-02
-70
-89
-0f
-01
-70
-8a
-80
+f7
 24
-70
-8a
-81
-62
-58
+bb
+df
 e6
-12
-12
-67
-f1
-8a
-73
-70
-8a
-86
-60
+a8
+14
+af
+ea
 70
+b5
+fc
+b3
+da
+a7
+72
+73
+3d
 8a
-8b
-3b
-20
-40
-00
+bb
 93
-70
-80
-43
-00
-70
-80
-42
-05
-58
-55
-74
-74
-67
+db
 f1
-89
-68
-70
-89
-60
-6e
-20
-40
-01
-12
-20
-40
-01
-3d
-20
-40
-00
-8d
+05
+c7
+16
+2f
+6a
+6d
+c7
+43
+f6
+b5
+33
+b1
+5c
+f7
 70
-41
-48
-0c
-20
-40
-6f
-4e
-20
-20
-01
-3f
-20
+27
+fc
 75
-80
-00
-37
-d9
-82
-00
-6f
-e0
-c1
-1c
-67
-f0
-81
-3a
-37
-d9
-82
-00
+ba
+e9
+ad
+b4
+e4
 20
-60
-00
-00
-6f
-e0
-c0
-99
+16
+78
+14
+f7
+32
+66
+39
+3e
+6c
+25
+81
+9c
+e2
+25
+a3
+9d
+33
+e6
+3c
+31
 c0
-0c
-00
-99
-6f
-e0
-c4
-38
-1f
-e1
-fe
+f5
+74
+5d
+d5
 06
-67
-f0
-8a
-02
-70
-8a
+32
+73
+92
+a3
 05
-e0
-70
-8a
-00
-d8
-20
-00
-00
-3c
-70
-8a
-01
-a0
-70
-8a
-00
-df
-70
-8a
-01
-fa
-20
-00
-00
-14
-70
-8a
-00
-9f
-20
-60
-00
-00
-6f
-e0
-c4
+5f
+f5
+b1
+3b
 38
-1f
-e1
-fe
-06
+94
+30
+35
+25
+8d
+ab
+5f
+1b
+3c
+da
+62
+bd
+75
+28
+d2
+b5
 67
-f0
-8a
-02
-70
-89
-0f
-00
-70
-8a
-80
-23
-70
-8a
+c4
+0c
+ef
+4a
+e7
+ec
+3c
+96
+a8
+1c
+c6
 81
+57
+4f
+53
+b2
+91
+ba
+c7
+8a
+2c
+d2
 b0
-58
-e4
-09
-09
-67
-f1
-8a
-73
-70
-8a
-76
-2a
-70
-89
-02
-04
-20
-20
-00
-7f
-20
-35
-80
-d4
-6f
-e2
+30
+06
+ac
+29
 02
-0d
-20
-7a
-00
-00
-37
-d9
+6a
+22
+72
+61
+b5
+65
+58
+fc
+e4
+bf
+42
+c2
+91
+b8
+c1
+36
+6e
+1a
+2b
+49
+86
+eb
+fe
+44
+c5
+07
+e3
+55
+07
+6e
+03
+fc
+a9
+58
+6c
+d6
+73
+23
+f3
+14
+d1
+85
+8b
+c4
+19
+ba
+b2
+b6
+97
+e0
+63
 82
+fc
+1a
+4c
+95
+d9
+ae
+3f
+a6
+e3
+03
+b9
+83
+96
+e9
+1d
+75
+b9
+cf
+69
+cd
+cb
+1c
+c1
+9c
+97
+34
+fa
+e0
+79
 00
-6f
-f0
-81
-36
-1f
-e1
-7e
+b6
+29
+77
+74
 f0
+5a
+01
+5e
+41
+22
+56
+a1
+e3
+a1
+31
+35
+04
+01
 68
+a6
+58
+44
+f9
+cd
+2c
+07
+bd
+0b
+a6
+95
+85
+fa
+8a
+a6
+93
+46
+e5
+a4
 48
-82
 0d
-98
-41
+d8
 fe
-00
-1f
-e0
-ff
-fd
-67
-f0
+ad
+e8
+27
+5f
+0e
+cb
+3f
+69
 81
-36
+73
+2e
+4d
+53
+cf
+d8
+be
+1e
 37
+dd
+59
+19
+ad
+d7
+91
+2c
+d2
+6d
+5e
 d9
-82
-00
-6f
-f0
+9a
+06
+04
+99
+67
+2a
+c8
+6e
+d5
+97
+73
+5b
+73
+2e
+3e
+5d
+29
+37
+22
+87
+b0
+01
+e8
+5d
+5d
+76
+65
+2c
+2f
+64
 81
-38
-1f
-e1
-7e
-07
-68
-48
-82
-0e
-18
-49
+da
+33
+6c
+05
 84
-00
-98
+e2
+25
+aa
+30
 41
-fe
-00
-67
-f0
-81
+f3
+85
 38
-37
-d9
-82
-00
+93
+9b
+32
+2b
 6f
-f0
-8a
-cb
-1f
+36
+5e
+f4
+49
+b9
+80
+6d
+63
+a5
+02
+e5
+cf
+c5
+d8
+6f
+66
+58
+aa
+95
+06
+0d
+bb
+37
+c0
+c6
 e1
-7e
-f0
-68
-48
-82
+33
 0f
-60
-48
-c1
-5b
-98
-41
-fe
-00
-67
-f0
-8a
-cb
-6f
-e0
-82
-10
+63
+c8
+74
+a7
+83
+9c
+c9
+70
+6a
+4f
+4f
+61
+ff
+dd
+eb
+33
+54
+a7
+1a
+76
+e3
+0b
+63
+e6
+57
+cd
 67
-e0
-c1
-5c
-2f
+0f
+43
+22
+9d
+c3
+45
+e7
+f7
+ee
+22
+83
+96
+f5
+de
+e5
+97
+48
+3e
+93
+b9
+e7
+3f
+57
+fd
+3a
+a4
+f3
+e6
+63
+a0
+1f
+6d
+fc
+dd
+37
+29
+62
 ef
-fe
-03
-6f
-f0
-8a
-06
-79
-20
-fe
-07
-67
-f0
-8a
-06
-6f
-e0
-82
+de
+3b
+77
+80
+dd
+29
+08
+74
+c0
+b2
+d3
+a3
+dd
 10
-1f
-e1
-04
-07
-18
-52
-04
-00
+dd
+83
+42
+89
+a6
+a6
+16
+74
+ea
+80
+5d
+50
+be
+d3
+2d
+75
+ff
+c5
+96
+2b
+33
 18
-43
-84
-00
+ae
+fe
+23
+b9
+07
+42
+c5
+4d
+a2
+89
+50
+a5
+2c
 60
-48
-c4
+2b
+cd
+30
+b9
+eb
+f9
+9f
+2e
+99
+5c
 38
-6f
-f0
-8a
+01
+27
+46
+3b
+86
+e3
+51
+3b
+a6
+74
+ef
+b2
+fc
+01
+44
+72
+9b
+d5
+58
+23
+56
+77
+5a
+c7
+e4
+08
+5f
+10
+a1
 02
-1f
-e1
+52
+a2
+db
+ce
+91
+36
 7e
-1f
-98
-41
-fe
-00
-67
-f0
-8a
-02
-20
-60
-00
-00
-6f
-e1
-41
-5b
-20
-7a
-00
-00
-67
-e1
-02
-0f
-20
-20
-00
-be
-20
-40
-68
-6f
-20
-40
+95
+05
+56
+bd
+db
+a9
+99
+1b
+d3
+42
+7f
+8d
+d6
+15
+45
+b8
+b4
+fa
+95
 21
-ba
-18
-00
-2a
-08
-18
-00
-2a
-00
-58
-0a
-aa
-da
-67
 f1
-8a
-0f
-70
-8a
+45
+66
+4a
+f1
+90
+d5
+b9
+34
+5e
+9e
+84
+ac
+86
+89
+45
+1d
+80
+37
+bd
+4d
+18
+3f
+51
+5d
 25
-40
 70
-8a
-26
+8d
+83
+21
+1c
+8c
+a8
+e6
+d8
+a2
+36
+ba
 10
-20
-00
-00
-3c
-70
-8a
-01
+91
+67
+88
+87
+ce
+44
+39
+09
+f7
+a1
+2a
+a5
+b1
+af
 fb
-70
-8a
-25
-ff
-70
-8a
-26
+9c
+91
+6e
+37
+eb
+e4
+6d
+ef
 30
-70
-8a
-16
-fe
-20
-20
-21
-b4
-6f
-e0
-c7
-93
-24
-7a
-00
-00
-20
-40
-00
-ea
-20
-20
-60
-fc
-6f
-e0
-c6
-55
-c1
-7f
-80
-00
-20
-20
-5e
-78
-68
-48
+64
 c6
+25
+2d
+ae
+62
+53
 01
-6f
-e0
-c6
-21
-98
-46
-7c
-00
-24
+62
+80
+15
+65
+62
+af
 21
-00
-f2
-20
-20
-36
-81
-6f
-e2
-45
-8f
-68
-4a
-45
-e4
-98
-46
-7c
-00
-20
-22
-b2
-22
+55
 20
-40
-02
+15
+77
+53
+05
+a5
+90
+79
+1b
+7b
+d1
 87
-20
-20
-36
-9b
-58
-0a
-aa
+21
 7e
-67
-f1
-8a
-0f
-20
-00
-00
-3c
-70
-8a
-25
-00
-70
-8a
+ba
+ff
 26
-0d
+f5
+13
+9d
+6e
+95
+ca
+85
+9a
+c2
+2e
+75
+97
+ab
+f1
+2f
 70
-8a
-16
+fe
+74
+d0
+e6
+bf
+1c
+ea
 f6
-20
-20
-22
-03
-6f
-e0
-c1
-41
-c0
-03
-22
-25
-c0
-05
-01
-05
-c0
-4f
-01
-0e
-c0
+b3
+b8
+f3
+61
+7a
+95
+7b
+eb
+4d
+65
+7d
+b2
+9d
+2e
+64
+e5
+1d
+0b
+ba
+db
+c8
+26
+1d
+48
+16
+95
+ae
+4d
+c2
+8f
+54
+ca
+2d
+35
+09
+53
+33
 55
-01
+1e
+91
+f0
 0a
-20
-20
-22
-0e
-70
-8a
-14
-25
-58
-a9
-3f
-3f
-67
-f1
-8a
-60
-70
-8a
-63
-1f
-20
-60
-00
-00
-70
-8a
-14
-17
-6f
+b0
+6e
+f4
+04
+29
+9b
 e1
-ca
-08
-67
-f1
-8a
-60
-20
-20
-22
-1a
-70
-8a
-14
-17
-58
-25
-03
-00
-67
-f1
-8a
-60
-20
-20
-22
-1a
-20
-75
-80
-00
-20
-40
-21
-60
-d8
-40
-00
-27
+b2
+63
+b7
+f9
+7b
+c3
+e2
 20
-40
-21
-6f
+31
+5c
+a7
+9d
+11
+8c
+44
+16
 20
-40
-21
-a6
-70
-8a
-25
-7f
-70
-8a
 30
-1a
-70
+54
 8a
-31
+d3
+4f
+69
+4d
+6f
+66
+24
+d8
+d8
+75
+c7
+ef
 78
-70
-8a
+91
+66
+72
 8f
-b2
-70
-8a
+18
+d9
+58
+0d
 c2
-00
+27
+c0
+39
+6a
+61
+5a
+37
+52
+9f
+85
+ca
+13
+9e
+39
+9b
+c4
+f2
+85
+79
+92
+30
 70
-8a
-c3
-00
-d8
-e0
-00
-06
-20
+b8
+d4
+46
+f9
+ec
+e3
+14
+c4
+c7
+e3
 40
-01
-2f
-2a
-2f
-fe
-0d
-20
-40
-21
-1d
-2a
+6a
+17
+c7
+e5
+5b
+32
+4e
+56
+95
 4f
-fe
-0d
-20
-40
-21
-1e
-d8
-e0
-00
-05
-20
-40
-21
-1c
-20
-40
-21
-1e
-20
-40
+59
+d0
+d6
+29
+bb
+ad
+14
+c6
+2b
+9e
+f7
+60
+88
+f8
+3e
+24
+24
+36
+78
+d3
+32
+f7
+5e
+4d
 01
-2f
-d8
-a0
+b3
+39
+ac
+c6
+8b
+6b
 8a
+b8
+bd
+55
+6f
+02
+a4
+68
+e6
+59
+d9
+ad
+bb
+97
+6f
+05
+b3
+ff
+29
 c2
-1a
-31
-fe
-00
-20
+83
+fc
+eb
+05
+58
+03
 40
+e1
 21
+3c
+5c
+d2
+2c
+49
+da
+79
+d4
+44
 17
-1a
-51
-fe
+26
+f0
+11
+ac
+d9
+3b
+7f
+9d
+35
+8a
+82
+bd
+87
+a4
+02
 00
-20
-40
-21
-17
-18
-e0
+3a
+79
+59
+4c
+db
 8f
-ff
-20
-21
-01
-24
-20
-20
-21
+25
+d0
 4f
-20
-00
-00
-3c
-58
-00
+11
+a4
+82
+e4
+af
+ef
+2e
+9a
+d1
+7b
+61
+28
+99
+ce
+4a
+5f
+84
+31
+94
+65
+51
+d3
+da
+f7
+25
+6d
+a7
+62
+88
+22
+fd
+7c
+c3
+bd
+e1
+79
+1a
+cc
+0d
+57
+ef
+54
+9a
+e0
+bd
+71
+74
+fc
 0f
-00
+a4
+f8
+45
+dc
 67
+cb
 f1
-09
-82
-58
-00
+a2
+43
+36
+cd
+5d
+49
+ad
+c1
+a5
+b5
+7c
+87
+13
+91
+71
 0f
 f0
-67
-f1
-09
-84
-70
-89
-81
+ab
+69
+7f
+b0
+11
+32
 09
-70
-89
-81
-03
-70
-89
+95
+b8
+dd
+d3
+26
+b2
+87
+31
+b8
+ce
+9d
 80
-06
-20
-00
-00
+ef
+93
+bf
+fb
+1a
+4d
+c7
+cd
+e2
+eb
+a6
+ec
+52
+a6
+52
+a5
+59
 3c
-da
-20
-00
-00
-da
-40
-00
-00
-df
-20
-00
+23
+d1
+1f
+33
+b1
 10
-d8
-c0
-0f
-00
-20
-20
-21
-2d
-20
-75
-80
-00
-20
-20
-22
-72
-20
-60
-00
-00
+f1
+fd
+49
+84
+a1
+fd
+04
+bd
+14
+e8
 20
-75
-80
+11
+59
+4c
+c6
+09
+53
+5b
+fd
+5e
+46
+6e
+d3
+03
+c0
+85
+58
+98
+04
+31
+95
+41
+0d
+7b
+bd
+28
+be
+e1
+b6
+9f
+bb
+f9
+98
+33
+23
+3e
+4f
+3b
+c8
+d8
+28
+cd
+59
+27
+8c
+29
+ee
+77
+c6
+fb
+5c
+ae
+27
+a0
+62
+bb
+f8
+1d
+d8
+14
 00
-70
-8a
-07
+fc
+fc
+8e
+8b
+a4
 77
-70
-8a
-08
-c9
-70
-8a
-0b
-01
-6f
+e5
+5b
+7f
+5c
+26
+8f
+48
+11
+cb
+9d
 e0
-c4
-09
-67
-f0
-80
+1d
+d5
+ed
 cd
-20
-00
-0b
-b8
-20
+86
+bd
+25
+7e
+d1
+76
+ad
+cb
+57
+9e
+62
+32
+ec
+3d
 40
-01
-68
+85
+fa
+18
+bd
+a7
+79
+f1
+15
+7c
+95
+e8
+5f
+80
+a8
+4a
+ae
+d2
+04
+ea
+90
+39
+12
+75
+bb
 70
-8a
-08
-c1
-6a
-40
-c4
-19
-df
-20
-00
-08
+0e
+3d
+82
+8f
+f1
+70
+ea
+41
+91
+3b
 20
-40
-6f
-58
-6f
-e0
-c4
-19
-67
-e0
-c4
 33
-62
-40
-c4
-19
-20
-60
-00
-00
-20
-40
-01
-5e
-6f
-f0
-8a
-09
-79
-3f
-fe
 07
-67
 f0
-8a
-09
-70
-8a
-07
-77
-70
-8a
-08
+dc
+4f
 c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
+50
+83
 b8
-20
-40
+4d
+61
+02
+99
+44
+aa
+74
 01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
+fb
+db
+c3
+9f
+0f
+d5
+63
+29
+84
+7c
+a9
+b7
 7e
-01
-67
+fa
+6e
+05
+d5
+30
+59
+49
+4a
 f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
+ec
+8d
 6f
-f0
-81
+5d
+4a
+3a
+ff
+0b
+1c
+76
+0d
+22
+b5
+d2
+55
+7e
+4c
+58
+ce
+59
+f4
+30
+13
 29
-c3
-02
-81
-69
+88
+42
+12
+24
+9c
+f1
+a2
+a9
+5f
+bb
+9d
 68
-59
-01
-64
-60
+16
+eb
+6a
+7e
+25
+a5
 49
-44
-0a
-70
-80
-cc
-00
-20
+ad
+ad
+65
+89
+a9
+25
+03
+04
+7c
+92
+85
+3b
+98
+c3
+0c
+e7
+4f
+14
+2f
+b7
+14
+9b
+27
+db
+f6
+62
+56
+f3
 60
-00
-00
-70
-8a
+c4
+57
+d0
+e8
+8c
+52
 82
+28
+8c
+e3
+b7
 11
-70
-8a
-8d
-12
-70
-8a
-8e
-0a
-6f
-e0
-c0
-99
-c0
-08
-01
-88
-58
-00
-57
-62
-67
-f1
-09
-07
-70
-89
+54
+7d
 01
-03
-70
-89
-30
-03
-c6
-16
+99
+3f
+0c
+e5
+8b
+fe
+c8
+d1
+41
+c9
+c9
+fc
+4c
 80
-00
-70
-89
-01
-01
-70
-8a
-82
-07
-70
-8a
-8d
-44
-70
-8a
+5b
+4b
+7d
+ed
+9a
+aa
+c4
+df
+cc
+81
+c7
+f3
 8e
-0a
-6f
-e0
-c0
-99
+d7
+5a
+bb
+41
+d0
+5d
+0d
+8d
+59
+e6
+10
+78
+0f
+e4
+dc
 c0
-08
+80
+73
+18
 01
-85
-58
-00
+4c
+a1
+59
+9c
+68
+8c
+5a
+cb
+ff
+a9
+31
+a5
+ef
+d3
+57
+2c
+2a
+63
+6b
+9b
+3c
 2b
+d2
+5e
+34
 b1
-67
-f1
-09
-07
+55
+a7
+fe
+3e
+65
+93
+ca
+94
+fd
+fe
+ac
+69
+0f
+6c
+5d
+8d
+2b
+6c
+69
+de
+e1
+21
+57
+c3
+9c
+a3
+31
+df
+f8
+7f
 c6
-97
-80
-00
-70
-89
-30
-24
-70
-89
-01
-05
-20
-60
-00
-00
+c2
 58
-00
-41
-89
-67
-f1
-09
-07
-20
-20
-01
+8c
+3c
+8a
+e2
+51
+5c
+a6
+d6
 81
-58
-00
-83
-12
-67
-f1
-09
-07
-20
-20
-01
-76
-6f
-e0
-cc
-02
-da
-60
-01
-00
-9a
-60
-fe
-00
-20
+17
+b2
+3c
+db
+b1
+2a
+3d
+d4
+b7
+8e
+7a
+de
+bf
+d0
+bc
+72
+53
+88
+4e
+5e
+d8
+77
+65
+40
 60
-00
-00
-20
-20
-01
-af
-20
+cf
+d7
+29
+d1
 40
-01
-92
-20
-20
+c5
+81
+ed
 25
-63
-6f
-e0
-cc
-03
-20
-7a
-00
-00
-6f
-e0
-cc
-04
+cd
+f3
+73
+7b
 24
-7a
-00
-00
-68
-48
-cc
-03
-6f
-e0
-cc
-02
-98
-46
+b5
 7c
-00
-24
+1b
+d4
+ff
+4e
+a3
+f7
+66
+3c
+9f
+5b
+77
+b0
 41
-01
-8b
-98
-46
-7e
-00
-1f
-e6
-7c
-64
-20
-21
-01
-a4
-6f
-e0
-cc
-05
-1f
-e6
-7c
+c6
+eb
 14
+cf
+cb
+ed
+ee
+b3
+ac
+47
+d4
+fa
+fe
+45
+c1
+91
+55
+7d
+25
+71
+82
+c4
+33
+f9
+a7
+f5
+d2
+9f
+3e
+90
 24
-41
-01
-a2
-70
-4c
-04
-01
-20
-60
-00
-00
-70
-4c
-06
-01
-20
-20
-43
-1f
+23
+fd
+9f
 68
-48
-81
-7f
-6f
-e0
-80
-4c
+8d
+26
+d0
+b2
+da
+ba
+cb
+36
+41
 1f
-e3
+70
+3f
+c4
+93
+77
+c2
+a7
 7e
-00
-98
-42
-fe
-00
-2f
-ef
-fe
-02
-58
-00
-00
-00
-68
-48
-cc
-05
-79
-20
-fe
-00
-98
-40
-84
-00
-60
-48
-cc
-05
-20
+9b
+14
+0f
+56
+d7
+cf
+b8
+c6
+0a
+4d
+6e
+99
+c5
+73
+74
+35
+b8
+bb
+47
+64
+1b
+f5
+e7
+89
+cb
+81
+82
+51
+cb
 60
-00
-00
-6f
-e0
-80
-05
-1f
-e0
-fe
-01
+d5
+fa
+69
+dc
+7b
+7a
+f8
+6d
+16
+9f
+6c
+dc
 67
-e0
-80
+12
 05
-24
-36
-81
+e7
+4f
+d8
+46
+33
 b6
-6f
-e0
-cc
-02
-1f
-e0
-fe
-01
-67
-e0
-cc
-02
-6f
-e0
-81
-68
-c3
-81
-80
-00
-79
-20
-7e
-03
-67
-e0
-81
-68
-6f
-e1
-42
+c2
+c5
+9f
 f5
-67
-e1
-01
+29
+61
 96
-58
-00
-00
-00
-67
-e2
-43
-1d
-20
-60
-00
-00
-20
-40
-28
-1c
-6a
-20
+dd
+53
+d1
+31
+22
+51
+87
+d1
+48
 80
-4d
-1a
-20
-a3
-fc
-24
-21
-26
-fa
-20
-20
+ad
+8d
+23
+73
 26
+a1
+e2
+55
+86
+52
+85
+c7
+ba
 8e
-09
-80
-00
-18
-1f
-ef
-7e
-00
+67
+44
+d0
+a3
+0c
+af
+a7
+a1
+6b
+40
+9a
 1f
-f1
-7e
-00
-e7
-e1
 80
-05
-78
-28
-7c
-00
-20
-40
-27
-0d
-20
-23
-26
+6d
+ac
+66
+d6
+ca
+d4
+d1
+96
 f6
-c5
-99
-26
-af
-6f
-e0
+56
+9f
+3e
+9c
+bd
+ff
+d7
+88
+cb
+0e
 80
-4d
-20
-3a
-26
-af
-1f
+0a
+36
+76
+33
+97
+de
+ef
+53
+86
+e8
 e0
+66
+9f
+9e
+af
+45
+6e
+f5
+fe
+d1
+f3
+70
+9e
+f7
+12
+d7
+07
+a3
+c0
+16
+f1
+57
+53
+58
+88
+41
+92
+73
+78
+d2
+e8
+52
+1c
+a5
+30
+e9
+87
+74
+2a
+10
+19
+d1
+f0
+04
+db
+49
+8e
+55
+aa
+ef
+91
+c1
 ff
-fc
-67
 e0
-80
-4d
-20
-40
-72
-cb
-6f
-f0
-81
-08
-c3
-03
-a6
-fa
+8e
 18
-00
-70
-0c
-65
-e2
+60
 01
+12
+6c
+d0
+ba
+02
+46
 54
-20
-20
-26
-af
-6f
-e0
+1d
+bb
+18
+6d
+72
+28
+c6
 c3
-34
-c1
-00
-00
-00
+dc
+ce
+27
+12
+e6
+2f
+50
+fb
+4b
+5c
+cf
+64
+24
+99
+e7
+db
+41
+46
+ce
+c3
+5f
+87
+57
+14
+6f
+b3
+da
+24
+90
+fb
+12
+b2
+9a
+06
+c6
 c0
-01
-b0
-4a
-20
-20
-28
-e1
-20
-40
-21
-52
-70
-89
 00
-00
-79
-3f
-80
+53
+48
+69
+3c
+8d
+98
+f8
+bf
+14
 30
-20
-20
-2a
-e3
-79
-3f
-80
+c2
 30
-20
-20
-2a
-f6
-ef
-e1
-00
-06
-c0
-02
-01
-e3
-20
-20
-28
-eb
-ef
-e1
-80
-06
-67
-e1
-c3
-97
-c0
-05
-01
-e8
-c0
-09
-01
-f7
-20
-20
-2b
+82
 96
-6f
-e4
-47
-13
-c3
-1d
-ad
-19
-20
-40
-2d
-c7
-68
-49
-43
-98
-6f
-e0
-c3
-21
 c2
-81
-81
+9a
+e2
+cd
+3a
+48
+71
+b4
+86
+38
+7d
+be
+da
+6e
+21
+fa
+ce
+9f
+a1
+38
 f2
-6f
-e1
-43
-98
-c0
-18
-2e
-03
-68
-49
-43
-98
-20
-20
+5b
+58
+e5
+07
+66
+38
+62
+ec
+76
+77
+51
+2c
+44
+b7
+52
+d6
+b6
+a9
+5c
+ae
+c5
+e3
+b2
+fa
+2f
+11
+23
+d4
+e6
 2d
-1d
-6f
+69
+66
+9f
+25
+35
 e1
-43
-32
-98
-46
+aa
+58
+31
+66
+52
 7c
-00
-24
-22
-81
-ee
-24
-34
-01
-ee
-20
-20
+c7
+1b
+3f
+fd
+5e
 2d
-46
-18
-c2
-22
-00
-6f
-e1
-43
+2a
+41
+95
+ba
+31
+c7
+02
 35
-1f
-e0
-a5
-fd
-20
-40
-29
-29
-6f
+32
+4a
+08
+0b
+42
+c8
+35
+6d
+e9
+14
+07
+e5
+fe
 e0
-c7
+6e
+36
+88
+73
+f7
+d2
+61
 8f
-c0
-7f
-ad
-ac
-6f
-e0
-c7
+82
+67
+7b
+52
+6b
+e4
+4e
+ec
+58
+0f
+07
+89
 95
+79
+db
+3b
+20
+7e
+5a
+25
+9a
+bf
+04
+57
 20
-3a
-2d
-ac
-6f
-e0
-c8
-43
 c2
-80
-ad
-ac
+f5
 58
-00
-00
-1a
-68
-49
-43
-98
-98
-46
-7c
-00
-24
-22
-ad
-ac
-20
-20
-2d
-46
-20
-40
-2a
-28
-24
+c1
+e1
+a5
 7a
-00
-00
-6f
-e0
-c7
-8f
-c0
-7f
-82
-11
-6f
-e0
-c8
-43
+2c
+13
+29
+92
+29
 1f
-e1
-7e
-03
+e3
+aa
+12
+c8
 c1
-81
+fa
+1f
+fa
+9d
+de
+5b
+8b
+87
+9e
+40
+6a
+32
+6c
+17
+92
+ae
+ff
+ea
+0d
+32
+30
+26
+c9
+a2
+d5
 80
-00
-6f
-e0
+ae
+42
+57
+97
+65
+85
+0a
+ae
+9c
+41
+f5
+12
+5b
+71
+c1
+87
+1c
 cc
-04
-20
-7a
-00
-00
+d7
+6b
+c1
+cb
+44
+46
+a9
+2f
+e9
+72
+4d
+65
+02
+c5
+7c
+cf
+bf
+fd
+30
+2a
+a3
+99
 6f
+e9
+ce
+cf
+a7
+15
+0b
+c3
+69
+89
+4a
+b7
+a3
+7e
+8a
+7c
+bd
+ed
+2a
+ce
+43
+86
+1d
+69
+85
+a4
+50
+51
+5e
+ee
+08
+2a
+b5
+51
+60
+02
+5c
+49
+48
+27
+d3
+0e
+29
+23
+a4
+72
+c5
+27
+9f
+78
 e0
-cc
-06
-24
-7a
-00
+9c
+a5
+fe
+54
+3f
+95
+94
+bf
+33
+18
+79
+2e
+67
 00
-6f
-e0
-c9
-56
-20
-5a
-5a
-71
-6f
-e4
-47
-13
-c2
-80
-db
-5b
-c2
-80
-5b
-5b
-c2
-82
-db
-5b
-c2
-83
-5b
+67
+f3
+7d
+e9
+af
+91
+5c
+89
+75
+59
+58
+c0
 5b
-20
-40
-56
-01
-20
-40
-5a
-b2
-24
-74
-00
-00
-20
-40
-5a
-bc
-20
-40
 04
-9f
-20
-20
-5b
-37
-6f
+f0
+dd
+62
+a9
+5e
 e1
-43
-e9
-20
-40
+50
+26
+d3
+28
+a5
+b5
+a0
+2e
+56
+aa
+ea
+af
+f3
+8e
 7d
-79
+28
+bb
+1c
+7e
+a6
+4c
+3f
+18
+fc
+22
+5f
+cf
+1a
+aa
+26
+d0
+01
+b6
+69
+e3
+52
+47
+8c
+a0
+8e
+7c
+e5
+d9
+e9
+2d
+b3
+e3
 6f
-e2
-40
-ad
+1f
+2a
+31
+bd
+d0
+99
+b9
+a9
+21
+d5
+30
+54
+c7
+39
+e6
+b6
+6a
+43
+c3
+03
+55
 98
-40
-fe
-00
-67
-e2
-40
-ad
-20
-40
-02
-25
-20
-20
-24
-25
-60
-04
-40
+f5
+38
+62
+5a
+b9
+18
+4f
+5c
+1e
+2e
 e7
+7d
+4a
+cb
+2e
+0b
+db
+8d
+9b
+47
+66
+23
+38
+5e
+21
+50
+d3
+35
+5f
+52
+1d
 d8
-c0
-80
-70
-d8
+9d
+94
+7d
+99
+8e
+af
+eb
+ea
+c7
+74
+6e
+db
 a0
-40
+c5
+e3
 cc
-20
-40
-7c
-8f
-d8
-c0
-80
-d4
-20
+0d
+6a
 40
-7c
-89
-6f
-f0
-80
-80
-67
-e0
-c0
+ce
+cf
+c9
 ef
-18
-42
-24
-00
-df
-20
-00
-0c
-da
-20
-00
-16
+7a
+79
 da
-60
-81
-4d
-37
-d9
-82
-00
-ef
-e0
-80
-11
-e8
-40
-80
-13
-98
-46
-7c
-00
-20
-22
-82
-38
-e7
-e0
-80
-13
-37
-d9
-82
-00
-1a
-20
-a2
+e9
+35
+eb
+0a
+a4
+43
 01
-1a
+2d
+db
+b8
+50
+86
+97
+e7
+63
+18
+d6
+4f
+63
+53
+86
+70
+54
+9a
+1b
 60
-a6
-01
-c2
-00
+91
 02
-32
-1a
 42
-04
-00
-20
-60
-00
-00
-20
-40
-6b
+97
+dc
+5d
+9c
+8e
+19
+2e
 3a
-20
-40
-6b
-75
-20
-20
-6b
-38
-6f
-e1
+ca
+73
+b2
+a0
+85
 45
-e0
+3c
+7a
+0c
+ee
+e7
+c1
+46
+1c
+3b
+99
+bf
+3b
+a6
+44
+46
+a3
+55
+9c
+e7
+13
+90
+19
+5b
+55
+b3
+04
+49
+ff
 d8
-40
-01
-f8
+cb
+33
+8a
+a6
+74
+52
+3e
+fb
+5a
+77
+06
 98
-41
-7e
-00
-20
-3a
-02
-48
-6f
-e1
-45
-e0
-1f
-e0
-fe
-01
-67
-e1
-45
-e0
-20
-60
-00
-00
-20
-40
-35
-7f
-20
-40
-36
-51
-24
-2c
-35
+5b
 86
-24
+78
+ea
+12
+c0
 37
-b5
-86
-20
-40
-36
-6e
-6f
-e0
-c5
-7d
-20
-3a
+b2
+cf
+08
+ec
+e5
+09
+b3
+67
+77
+38
+28
+14
 02
-57
-6f
-e2
-45
-cc
-68
-4a
-45
-8f
+81
+86
+21
+42
+bb
+7b
+9a
+1c
+06
+5b
+80
+2a
+6d
+85
+9c
+59
+f2
+0c
+5f
+b7
+cd
+30
+65
+0d
+4d
 98
-46
-7c
-00
-20
-22
-82
-54
-20
-20
-35
-6e
-6f
-e4
-47
+28
+2d
+51
+8a
+06
+f8
+c5
+64
+db
+76
+ed
+3b
+a0
+40
+3e
+6a
+37
+7b
+9d
+a3
+c8
+39
+bc
+15
+b6
+d8
+78
+7b
+88
+59
+73
+19
+17
+df
+60
 13
-c2
-98
-32
-91
-20
-20
-35
+a5
+79
+f3
+0b
+ad
+21
+30
+1d
+1b
+16
+a5
 49
+43
+b6
+5b
 6f
-e2
-45
-5f
-20
-7a
-00
-00
-20
-20
-02
-4f
-20
-40
-54
-3b
-20
 40
+cf
+29
+3e
+d7
 02
-5d
-20
-20
-54
-4c
+f6
+e9
+5c
+d7
+13
+8b
+0d
+b8
+01
+db
+4d
+fe
+81
+44
+70
+35
 58
-00
-4a
-29
-67
-e1
-43
-3f
-58
-00
-00
-20
-67
-e1
-43
-41
-20
+2e
+5c
+34
+15
+63
+3f
+4f
+e3
+2f
+99
+9c
+fc
+a2
+fe
+cb
+9c
 60
-00
-00
-6f
-e0
-c4
-37
-24
-7a
-00
-00
-6f
-e1
-44
-e9
+eb
+ed
+73
+87
+58
+64
+fc
+b6
+57
+01
+87
+a9
+9e
+89
+64
+b7
+1c
+a2
+13
+ce
+99
+17
+ca
+4a
+f9
+7f
+6a
 c3
-85
+7f
+ad
+72
+1a
+69
+f2
+70
+29
+98
+e4
+e1
+5f
+ef
+0e
+f5
+f4
+04
+5c
+78
+17
+98
+9e
+e6
+5b
+fe
+03
+cf
+9c
+81
+4f
 80
-00
-6a
-21
-45
-f0
-20
-40
-35
+cc
 b4
-60
-48
-c6
-24
-6f
-e0
-c6
-29
-c5
-13
-02
-6c
+fc
 6f
-e0
-c6
-2c
-98
+7d
+fc
 46
-7c
-00
-24
-21
-02
-86
-6f
-e0
-c6
-26
+14
+8e
+68
+a5
+f1
+7a
+ee
+cb
+b3
+54
+93
 1f
-e6
-7c
-02
-24
-21
-02
-74
-6f
-e0
-c6
-26
-c0
-00
+d1
+52
 02
+52
+f7
+65
+ad
+32
+6b
+09
+78
+96
+a3
+f2
+49
+f4
+c5
+4c
+b9
+23
+3f
+a1
+ce
+5c
+84
+ad
+91
+c4
+07
+a1
 87
-20
-60
-00
-00
-6f
-e0
-c6
-26
-68
-48
-c6
-27
-98
-46
+17
+56
+1b
+23
+e5
+ca
+bd
+8e
+5b
+d8
+37
+89
+52
 7c
 00
-24
-62
-80
-00
-70
-46
-26
-00
-68
-48
-c6
-24
-6f
-e0
-c6
-28
-c5
+23
+1c
+3c
+a7
 13
-02
-7d
-6f
-e0
-c6
-2b
-98
-46
-7c
-00
-24
-61
-00
-00
-6f
-e0
-c6
-25
-c0
-00
-37
-15
-1f
-e0
-ff
-ff
-67
-e0
-c6
-25
-c0
-01
-02
-8f
-c0
-00
-b7
-0b
-20
-20
-37
-15
-70
-46
-26
-00
-6f
-e0
-c6
-25
-c0
-01
-82
-8d
-1f
-e0
-fe
-01
-67
-e0
-c6
-25
-c0
-00
-b7
-0b
-c0
-01
-02
-8f
-70
-41
-41
-05
-20
-60
-00
-00
-70
-41
-41
-03
-20
-60
-00
-00
-58
-00
-62
-35
-67
-e1
-45
-f8
-58
-00
-02
+b9
+76
+9a
+dc
+3e
+04
+f1
+94
+2a
+08
+86
+13
+9e
+e5
+3f
+f9
+f9
+ba
+cf
+a3
 9b
-67
-e1
-45
-fa
-58
-00
-02
+9a
+e5
+05
+f4
+06
+5e
+47
+28
+98
+a7
 b0
-67
-e1
+39
+dd
+1b
 43
-e9
-20
-20
-53
-f3
-20
-80
-00
-00
-20
-55
-e0
+96
+ee
+25
+ae
+0d
 04
-20
-20
-20
-03
-20
-40
-36
+5d
+84
+d0
 b4
-24
+62
+2d
+4b
+de
+5c
+67
+28
+fb
+ee
+62
+45
+28
+5f
+ac
+d1
+0f
+63
+d6
+06
+b7
 74
-00
-00
-70
+dd
 47
-7c
-01
-20
-40
+c9
+2d
+e3
+1f
+fa
+44
+28
+90
+de
 36
-be
-70
-47
-72
+b7
+7f
+08
+6d
+2e
+43
+28
 00
+db
+28
 20
-40
-62
-aa
-6f
-e0
-c7
-3f
-24
-5a
+6e
+a2
+ba
+7d
+d5
+06
+2a
 54
-dc
-20
-40
-02
-a6
-6f
-e2
-45
-af
-20
+b8
+c9
+3d
+97
+cd
+b1
+67
 20
-36
-22
-6f
-e0
-c7
-3f
-24
+d2
+6d
+33
+27
+9a
+9c
 7a
+da
+c5
+19
+71
+f2
+4e
+ad
+da
+b0
+f4
+7b
+8f
+a8
+3e
 00
-00
-68
-48
+1a
+58
 c6
-4a
-20
-40
-6f
-0f
-68
-48
-c6
-4a
-20
-40
-6e
-c6
-68
-48
-c6
-4b
-20
-40
-6f
-0f
-68
-48
-c6
-4b
-20
-20
-6e
-c6
-20
-60
-00
-00
-20
-40
-04
-42
-6f
-e4
+9d
+9f
 47
-13
-c2
-89
-dd
-60
-c2
-89
-5d
+7e
+d8
+cb
+79
+91
+28
+f8
+12
+f4
+0e
+9b
+92
+e4
+bd
+eb
+e2
+5b
+81
+11
+b3
+1b
+51
+0e
+3a
+7d
+e9
+49
+8e
+88
+88
+c6
+69
+8f
+fe
+62
+ae
+38
+8e
+1e
+86
+de
+2e
+19
+c4
+0c
+61
+1e
+41
+d7
+82
+53
+b4
+82
+14
+f5
+2d
+d2
+50
+bc
+3e
+ec
 6e
-c2
-8a
-02
-b7
-20
-60
-00
-00
-20
-40
-02
-c2
-20
-40
-5e
-43
-20
-40
-5d
 b4
-20
-40
-02
-d6
-20
-40
-02
-bf
-20
-40
-02
-c5
-20
-40
-02
-de
-20
-20
-5d
-aa
-6f
-e4
-47
+80
+dd
+3d
+6d
+82
+91
 13
-c4
-15
-00
-00
-20
-40
-04
-aa
-6f
-e0
-c6
-66
+0a
+80
+f2
+c5
+6c
+ac
+60
+b8
+55
+6c
+4e
+a3
+1d
+bc
+71
+cf
+7b
+7b
+d8
+94
+ac
+ea
+0f
+03
 67
-e0
-ca
 06
-20
-60
-00
-00
-6f
-e4
-47
-13
+39
+43
+03
 c2
-9f
-5d
-d1
-20
-20
-5d
-cc
-6f
-e1
-46
-8e
-d8
-40
+eb
+fd
+9e
+df
+3c
 aa
-55
-98
-46
-7c
-00
-20
-22
-83
-4b
-60
+28
+62
+81
+43
+5e
+1b
+74
+d5
+a9
+39
+8b
 49
-46
-8e
-20
-40
-5c
-9c
-6f
-e0
-c9
-a1
-67
-e0
-c6
-66
-20
-40
-5c
-8c
-58
-00
-11
-22
-67
-e1
-46
-95
-6f
-e0
-ca
-06
-67
-e0
-c6
-66
-20
-60
-00
-00
-6f
-e0
-c6
-66
-1f
-e6
-7c
-00
-20
-22
-82
-d3
+f7
 1f
-e6
-7c
+1e
 04
-20
-22
-82
+14
+34
+90
+e6
+52
+b0
+05
+38
+58
+10
+11
+19
 dc
-20
-61
-00
-00
-70
-46
-66
-00
-20
-60
-00
-00
-6f
-e0
-c6
-66
-c1
-00
-00
-00
+96
+3f
+e3
+fd
+a7
 6a
-41
-49
-fe
-1a
-42
-26
-00
-20
-40
-5e
-3d
 6f
-e1
-49
-e0
-20
+50
+25
+96
+ef
+d5
+f8
+1b
+db
 3a
+a7
+00
+1d
 02
-ec
-67
-e1
-49
-de
-1a
-60
-a6
 02
-6f
-e1
+8f
+35
+b5
+cc
+cb
+89
 4a
-00
-9a
-66
-7c
-00
-24
-21
-02
-ec
-1a
+95
+ab
+2e
+bf
+96
+64
+94
+4a
+d2
+fb
+58
+f8
+4e
+26
+db
+26
+57
 62
-24
-00
-20
-20
-02
-e2
-6f
-e1
-49
-de
-67
-e1
-46
+7d
+f5
+dd
+35
+fd
+5c
+4f
+cd
+44
+f1
+70
+0a
+69
+91
 95
-20
-60
-00
-00
+85
+bd
+88
+8c
+23
+eb
+d8
+7d
+07
+f3
+25
+23
+fd
+87
+f4
+d9
+70
+0a
+42
+ea
+0d
+2c
+4a
+31
+bd
+b2
+64
+a3
+61
+e7
+af
+6e
+c5
+56
+a0
+b4
+70
+e5
+46
+a0
+f2
+76
+63
+c1
 6f
-e4
-47
-13
-c2
-89
-dc
-b1
-c2
-89
-5c
-b9
+71
+11
+0e
+cf
 c2
-8a
+6f
+c3
+cb
+a0
+e4
+7f
+7e
+7a
+c0
+f1
+2a
+eb
+ef
+e0
 02
-f4
-20
-60
-00
 00
-20
-40
+cb
+2f
+a5
+f5
+86
 02
-f7
-20
-40
+4e
+fa
+86
+6a
 02
-fc
-20
+d5
+ce
+11
+78
+ec
+bb
+08
+57
+8d
+a6
+86
+80
 20
-5c
-c1
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
-00
+31
+7c
+a3
+bf
+94
+b2
+53
+59
 83
-23
-c0
-01
-03
+f8
+bd
+cc
+74
+9b
+fc
+13
+e6
+a9
+d3
+0d
+28
+cf
+b4
+f4
+52
+29
+c5
+a7
+e5
+30
+e3
+2e
 37
-20
-60
-00
-00
-6a
-41
+cf
+39
+1f
+51
+29
+25
+78
+3b
+d0
+2e
+c5
+78
+d9
+32
+85
+47
+ad
+c4
+4a
 49
-e2
-1a
-42
-26
-00
-20
-40
-5d
+81
 c0
-6f
-e0
-c9
-a1
-20
-3a
-03
+96
+a7
+84
 08
-67
-e0
-c9
-a0
-1a
+5d
+3b
+dc
 60
-a6
-01
-6f
-e1
-49
-e4
-9a
-66
-7c
-00
-24
-61
-00
-00
-1a
-62
-24
-00
-20
-20
-02
-fe
-6f
-e0
-c9
-a0
-1f
+86
+22
+9b
+13
+51
+09
+d3
+8a
+6b
 e1
-7e
-f0
-20
-3a
-03
-12
-6f
-e0
-c6
-66
-20
-40
-03
-20
-67
+2d
+8e
+f3
 e0
-c9
+8e
+76
 a2
-df
-20
-00
-01
-1a
-62
-24
-00
-da
-20
-49
+db
+04
+1e
+14
+d3
+f1
 a2
-20
-20
-6b
-45
-68
-48
-c9
-a0
-6f
-e0
-c6
-66
-20
-40
+a7
+e7
+86
+e6
+77
+de
+65
+a5
 03
-20
-98
-46
-7c
-00
-20
-62
-80
-00
-1f
-f2
-7e
+71
+9b
+61
+dd
+bc
+f0
+ce
+83
+8c
+0a
+5c
+fb
+2b
+b3
+eb
+02
+dc
+e9
+ae
+75
+9d
 00
-98
-40
-fe
-00
-67
-e0
-c9
-a2
-1a
-62
-7e
+21
+d9
+d6
+9a
+c5
+27
+14
+1e
+48
+35
+ad
+bc
+80
+6c
+32
+c2
+17
+ea
+9e
+1d
+a5
+6a
+8f
 00
-68
-49
-49
+84
+aa
+35
+6e
+ff
+11
+2e
+39
+54
+09
+ab
+02
+79
+01
+f9
+de
 e2
-98
-46
+57
+25
+2e
+58
+f8
+54
+39
+90
+d0
+12
+e4
+9f
+f5
+6b
+54
+af
+1c
+d2
+bc
+90
+d3
+cd
+e7
+57
 7c
-00
 20
-22
+8b
+1c
+f8
+d0
+fc
+0d
+fa
+dd
+f8
+8f
+4d
 83
+4c
+9b
+7c
+7e
+73
+1b
+79
+32
+c8
+3f
+13
+23
+85
+4e
+1e
+3b
+ba
+a5
+9f
+81
+9e
+26
 0e
+c7
+02
+a2
+a0
+5d
+da
+d8
+75
+7b
+15
+3f
+52
+c4
+ae
+7d
+e7
+2e
+f9
+dd
+78
+13
+d0
+3d
+4a
+ea
+ca
+1c
+b1
+9a
+c8
+52
+c5
+35
+10
+2a
+d6
+85
+04
+40
+91
+ed
+bb
+06
+59
+76
+83
+6d
+5c
+d6
+92
+ca
+90
+69
+2a
+84
+c3
+44
+f2
+b1
+ca
+6e
+fb
+75
+29
+6c
+42
+6d
+b9
+51
+11
+50
+63
+a2
+1f
+70
+08
+66
+b3
+48
+c8
+69
+11
+ef
+a0
+94
+8e
 1a
-60
-a7
-ff
-20
-20
-03
+cf
+7a
+d7
+b9
+1c
+c5
+ef
 0e
-c1
-80
-00
-00
-1f
-e0
-fe
-04
-20
-60
-00
-00
-6a
+14
+96
+ca
+d8
+36
+5b
+33
+c2
+c8
 41
-49
-ee
+72
+6b
+37
+d4
+9b
+6c
 1a
-42
-26
+54
+90
+dc
+22
+ec
 00
-20
-40
-5d
+4a
+d3
+9b
+f1
+74
+ca
+a3
+e8
 f3
-6f
-e3
-49
-b5
-20
-3a
-03
-2f
-67
-e3
-49
-af
-1a
-60
-a6
-06
-6f
-e1
-49
-f0
+d8
+b0
+69
+9c
+09
+ef
+e2
+d4
+4f
+8a
+43
+c1
+77
+bc
+a2
+22
+92
+dd
+23
+25
+29
+2b
+d0
+3f
+33
+96
+bf
+73
 9a
-66
-7c
-00
-24
-61
-00
-00
-1a
-62
-24
-00
-20
+45
+b6
+b2
+8c
+b7
+ef
+34
+17
+02
+a3
+a9
+bb
 20
-03
-25
-6f
-e3
-49
-af
-68
-4b
-46
-6e
-98
+d8
+ee
+bf
+2a
+82
+78
+e5
+42
+14
+63
+18
+76
+ab
+f6
+4f
+4c
+c6
+1e
+64
+7c
+92
+10
+99
+5b
+e5
 46
+33
+f1
+d4
+69
+2d
+bb
+ec
+df
+1d
+b4
 7c
-00
+44
+47
+42
+a8
+e6
+e0
+05
+45
+cb
 20
-62
-80
+cc
+23
+8f
+ee
+69
+1c
+7c
+b1
+61
+5b
+1f
+40
+1b
+d2
+1f
+5c
+11
+73
+d9
+dc
 00
+64
+95
+8a
 df
-20
-00
-06
-da
-20
-46
-6e
-1a
-62
+d0
+35
+4a
 24
-00
-20
-20
-6b
-45
-6a
-41
-49
-f6
-1a
-42
+bc
+bb
+08
+02
+29
+05
+27
+5b
 26
-00
-20
-40
-5e
-17
-6f
-e3
-49
-cd
-20
-3a
+2e
+7d
+50
+85
+77
+93
+aa
+0a
+23
+87
+f3
+c2
+88
+c4
+a4
+ef
 03
-43
-67
-e3
-49
-c7
-1a
-60
-a6
-06
-6f
-e1
-49
+09
 f8
-9a
-66
-7c
-00
-24
+0e
+21
+94
+a0
+c0
+75
+a9
+ce
+3d
 61
-00
-00
-1a
-62
-24
-00
-20
-20
-03
-39
+97
+ad
+27
+14
+b6
+38
 6f
-e3
-49
-c7
-68
-4b
-46
-7b
-98
-46
-7c
-00
-20
-62
-80
-00
-df
-20
-00
-06
-da
-20
-46
-7b
-1a
+87
+70
+ab
+30
+be
+0c
+8c
+3f
+7f
+28
 62
-24
-00
-20
-20
-6b
-45
-20
-40
-03
-84
-20
-40
-03
-9c
-20
-40
-03
-4f
-20
-20
-5c
-90
-6f
+c9
+8b
+b3
+f3
 e4
-47
-13
+d1
+91
+d3
+f0
+0b
+1c
+1a
+92
+b8
 c4
-07
-80
-00
-6f
-e0
-c6
-90
-c0
-00
-5c
-94
-c0
-03
-03
-55
-20
-60
-00
-00
-70
-46
-90
-00
-20
-60
-00
-00
-6f
-e4
-47
-13
-c2
-89
-dc
+61
+26
+44
+d0
+65
+6c
+de
+95
+76
+aa
 b5
-c2
-8a
-03
-5b
-20
-60
-00
-00
-6f
-e4
-47
-13
-c4
-07
-80
-00
-6a
-41
-49
-fa
-1a
+af
+23
+e7
+6d
+e6
+77
+d7
+88
+3f
+4c
+72
+a1
+a7
+b6
+db
+db
+53
+39
+4a
+0f
+3e
+39
+4d
+36
+92
+85
 42
-26
-00
-20
-40
-5e
-51
-6f
-e0
-c9
-d4
-20
-3a
-03
-69
-67
-e0
-c9
-d3
-1a
-60
-a6
-01
+29
+31
+43
+cb
+4d
+3f
+98
+f4
+28
+18
+f2
+bc
+41
+a2
+b3
+0c
+d9
+f0
+b4
 6f
-e1
-49
-fc
-9a
-66
-7c
-00
-24
+ab
+52
 61
-00
-00
-1a
-62
-24
-00
-20
-20
-03
-5f
-6f
+2b
+79
+71
+93
+7b
+b9
+d7
+3c
+0e
+dc
+b4
+1c
+12
+2e
+83
+83
+61
+25
+19
+cc
+cd
+f2
+4a
+e8
+1d
+46
+ad
+67
+3a
+ff
+21
 e0
-c9
+d2
 d3
-1f
-e1
-7e
-f0
-20
+34
+a8
 3a
-03
-73
-6f
-e0
-c6
-90
-20
-40
-03
-81
-67
-e0
-c9
-d5
-df
-20
-00
-01
-1a
-62
-24
-00
-da
-20
-49
-d5
-20
-20
-6b
+cb
+8a
+b2
+26
+5d
+0c
+d7
+11
+7a
+8c
+57
+1e
+a4
+ee
+c5
 45
-68
+6b
+ca
+7d
+0c
+a4
+39
+fb
+24
+04
+4d
+d7
+35
+84
+fd
+d2
+c3
+62
+c5
+cf
+4b
+51
+87
+e9
+3c
+35
+85
+7f
+a0
+66
+47
+0e
+ef
 48
-c9
-d3
-6f
-e0
-c6
-90
-20
-40
-03
-81
-98
+16
+96
+9f
+26
+a4
+0d
+e4
+57
+ba
+27
+79
+db
+0e
 46
-7c
-00
-20
-62
-80
-00
-1f
-f2
+b0
+c8
+aa
+f9
+3c
+48
+ef
+4a
+77
+55
+24
+6e
 7e
-00
-98
-40
-fe
-00
+c3
+8e
+f6
+e5
+97
+bd
+ef
+25
+29
+f1
+a1
+c7
+f9
+d1
+38
+58
+3e
+33
+ba
+de
+e3
+dc
+33
+7e
+f5
+2b
+b3
+df
+b4
+9f
+30
+c1
+55
+b3
+cd
+7b
+d0
+50
+92
+72
+53
 67
-e0
-c9
+19
+c0
+a1
 d5
+c2
+70
+ff
+da
+48
+76
 1a
-62
-7e
-00
-68
-49
-49
-fa
-98
-46
-7c
+11
+0f
+12
+7d
+cc
+5f
+e3
+85
+15
 00
-20
+5c
+fd
+86
+38
+2c
+c9
+96
+fd
+2f
+ec
+3f
+2e
+48
 22
-83
-6f
-1a
-60
-a7
-ff
-20
-20
-03
-6f
-c1
-80
-00
-00
-1f
-e0
-fe
+99
+51
+d0
+b4
+4e
+ad
+8f
+2e
 06
+5c
+8f
+62
+27
+f2
+49
+c0
+8b
+7e
+89
+51
+df
+e1
+3b
+30
 20
-60
-00
-00
-6f
-e4
-47
 13
+3d
+ff
+b0
+15
+dc
+d7
+77
+26
+b0
+34
+bc
+89
+50
+af
+ef
+84
+87
+a8
+b6
+c4
+f8
+a0
+77
+71
+04
+93
+e5
+3e
+d1
+8d
+9d
+ec
+44
+30
+fd
+d4
+76
+0d
+ba
 c2
-9f
-03
-8b
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
+ac
+80
+19
+dc
+7c
 00
-83
-8b
-c0
-01
-03
-92
-20
+f9
+b9
+08
+bd
+eb
+57
+0e
 60
-00
-00
-6f
-e3
-46
-6e
-68
-4b
-46
-e6
-98
+3b
+86
+52
+89
+4f
+57
+d9
+02
+d5
+04
+ee
+0b
+82
+75
+aa
+e8
+a7
+05
+9d
+de
+94
+fb
+a5
+95
+b5
+76
+1b
+b9
+6a
+ab
+72
+3d
+a4
 46
+0c
+b8
+1a
+77
+5d
+61
+8c
 7c
-00
-24
+b0
+e8
+01
+a8
+49
+d1
+c3
+e2
+c0
+68
+52
+84
+ec
+55
+bd
+73
+5c
+63
+b4
+22
+09
+d1
+5e
 62
-80
-00
-6f
-e3
-42
-db
-67
-e3
-46
-6e
-20
+32
+7a
+9e
+36
+59
+e6
+48
+fc
+2a
+e6
+25
+08
+d6
+16
+54
+9b
+d3
+4c
+0d
+10
+5c
+a7
+30
 60
-00
-00
-6f
-e3
-46
+16
+84
+06
+54
+1d
+32
+32
+27
+e0
+90
+1d
+84
+02
+28
+40
+f1
+2c
+99
+cc
+79
+16
+0d
+eb
+c4
+c7
+23
+bd
+9f
+ee
+38
+89
+f0
+de
+24
+21
 6e
-68
+a0
 4b
-46
-e6
-98
-46
+9f
+14
+3c
+a1
+0a
+08
+d0
+b8
+81
+91
+7d
+7b
+0d
+4e
+ce
+35
 7c
-00
-24
+5a
+a1
+a1
+c7
+e8
+75
 62
-80
-00
-6f
-e3
-42
-db
-1f
-e0
-ff
-00
-67
-e3
-46
-6e
-20
-60
-00
-00
-20
-40
-03
-9c
-20
-20
-5a
-9c
-6f
+c9
+29
+85
 e4
-47
-13
-c3
-0a
+ea
+f1
+aa
 5c
-6f
-c2
-9f
-03
-a4
-6f
+e9
+7c
+0e
+af
+5f
+3b
+2c
+2c
+52
+26
+5b
+25
+7a
+ed
+1e
+05
+8b
+67
+89
+cc
+a0
+81
+79
+d0
+07
+01
+79
 e0
-c6
-66
-c1
-00
-00
-00
-c0
+ce
+31
+cc
+15
+77
+9d
+c2
 00
-83
-a4
-c0
 01
-03
-a9
-20
-60
-00
-00
-6f
-e3
-46
-68
-67
-e3
-41
-16
-6f
-e3
-46
-6e
-67
-e3
+28
+a3
+65
+72
+b7
+8b
+47
+13
+7e
+a6
+91
+3a
+47
+ed
+59
+bc
+88
+b1
+d8
+cc
+a0
+c8
+9d
+ad
 42
-db
-20
+77
+85
+e2
+3e
+2d
+b3
+93
+4c
+2a
+91
+b9
+76
+73
+1b
+63
+62
+07
+0c
 60
-00
-00
-6f
-e3
-46
-75
-67
-e3
-41
+ae
+97
+80
+0a
+4d
+c5
+bd
+3a
+01
+32
+62
 16
-6f
-e3
-46
-7b
-67
-e3
-42
-db
-20
-60
-00
-00
-6f
+36
+56
+66
+d5
+59
+df
+0b
+86
+58
+74
+0d
+9b
+64
+c8
 e4
-47
-13
-c4
-01
-00
-00
-c3
-0a
+ad
+6e
+c6
+5e
+d9
+a7
+78
+e6
+a6
+c7
+d1
+23
+b7
+f9
+35
+cf
+7d
+d0
+1b
+1e
+72
+aa
+77
+9e
+31
+98
 5c
-43
-d8
-e0
-00
+1f
+e4
+fe
+68
+05
+f2
 02
-20
-40
-5f
-04
-20
-40
-5c
-4a
-20
-40
-03
-b6
-20
-20
-5c
-a3
-6f
-e0
-c6
+da
+1c
+0f
 66
-c0
-00
-83
-ba
-c0
-01
-03
-bf
-20
-60
-00
-00
-6f
-e3
-01
-78
-67
-e3
-46
-68
-6f
-e3
-42
-db
-67
-e3
-46
-6e
-20
-60
-00
-00
-6f
-e3
-01
-78
-67
-e3
-46
-75
-6f
-e3
-42
-db
-67
-e3
+89
+d8
+3e
+52
+48
+c5
+02
+6b
+6a
 46
-7b
-20
+37
+bd
+2a
 60
-00
-00
-20
-40
-03
-da
-20
-40
-61
-4d
-20
-40
-55
-3d
-20
-40
-61
-10
-20
-40
-61
-b1
-20
-40
-61
-1e
-20
-40
-32
-8e
-20
-40
-35
+de
 31
-20
-40
-5f
-dd
-20
-40
-57
-2c
-20
-40
-5b
-9b
-20
-40
-5b
-ab
-20
-40
-5b
-ce
-20
-40
-5b
-d3
-20
-40
-5b
-e1
-20
-40
-5b
-ee
-20
-40
-5b
-e4
-20
-40
-5b
-fb
-20
-40
-03
-dd
-20
-40
-56
-b6
-20
-40
-5c
-0e
-20
-20
+c6
 5c
-05
-da
-60
-4a
-05
-da
-40
-5a
-ef
-20
-20
-42
-e0
-da
-60
-47
-7e
-da
+a1
+83
+98
+fc
+9c
+39
+aa
 40
-03
+d9
+15
+cd
+d9
 e0
+c9
+74
+56
+f2
+e3
 20
-20
-42
-e0
-6f
-e0
+8e
+30
+d2
+6c
+ce
+db
+36
+39
+d6
+35
+95
+3e
+30
 c9
-6b
-67
-e0
-c0
+92
 c0
-70
+91
+13
+4b
+ae
+df
+4f
+3f
+4a
+41
+8e
+ff
+2e
+cd
+6d
+d3
+a9
+41
+54
+54
+00
+7b
+ca
 47
+b2
 7d
-03
-20
-60
-00
-00
-20
-40
+73
+d7
+ca
+6d
+e1
+fa
+b3
+94
 59
-ed
-20
-20
-5c
-1b
-1a
-62
-7e
-00
-c0
-20
-03
-fb
-c0
-0a
-84
-00
-c0
-19
-03
-f2
-c0
-1e
-04
-1e
-c0
+d7
+33
+ee
+7f
+5d
+ae
+61
+d0
+a9
+98
+a0
+ac
+8e
+db
+25
+2d
+7d
+b3
+58
+af
+0d
 1c
-84
-2f
-c0
-1d
-04
 32
-c0
-0a
-03
-ef
-20
-20
-5a
-c3
-58
-00
-00
-00
-67
-e2
+17
+99
+86
+6e
+a5
+3c
+94
+f1
+b4
+c1
+c2
 4c
-03
-20
-20
-5a
-d0
-6f
-e0
+e4
+ea
+6e
+d7
 c7
-95
-c0
-00
-83
-f6
-70
-48
-44
-14
-20
-20
-03
-f8
-20
-40
-5a
-ef
-70
-48
-44
-05
-6f
-e0
-cc
-02
-67
-e0
-cc
-03
-20
-20
+12
 5a
-f6
-6f
-e0
-ca
+37
+12
+65
+76
+3f
+b8
+12
+dc
+25
+13
+34
+69
+3b
+c8
+4e
 04
-24
-7a
-00
-00
-70
+95
+ba
+ec
 4a
+fe
+ef
 04
-01
-70
-4a
-05
-1e
-20
-60
-00
-00
-58
-00
-00
-00
-67
-e0
-ca
+5e
+44
+68
+65
+b4
+65
+ec
+27
+37
+ef
+6d
+88
+f3
+b6
+4c
+98
+a0
+37
 04
-67
-e0
-ca
+5d
+bb
+1d
+5a
+85
+1f
+a4
+a0
+51
+50
+5e
+97
+10
+fe
+27
+2e
+55
+ce
+96
+02
+1c
+e3
+b8
+1d
+da
+88
+55
+5e
+7a
+66
+64
+8f
+09
+49
+5c
+b2
+37
+ce
+9e
 05
-58
-00
-00
-00
-67
-e1
-47
-c0
-70
-47
-94
-00
-d8
-40
+0c
+19
+d0
+b3
+e2
+9e
+13
+0f
+38
+10
+31
+23
+ab
+a0
+6b
+53
+86
+87
+4c
+95
+21
+c4
+7c
+ab
+d9
 00
-06
-6f
-e4
-47
 13
-c2
-8d
-84
-0a
-d8
-40
-00
-07
-60
-49
-42
-d3
-60
-49
+19
+82
+b6
+81
+17
+62
+4b
+f1
+03
+26
+e3
 42
-d5
-70
-47
-c2
-00
-70
+78
 49
-56
-00
-20
-40
-29
-cb
-20
-20
-04
-10
-20
-40
-5b
-7b
-6f
+34
 e1
-43
-ef
-c2
-83
-84
-15
+46
+3f
+a5
+85
 c2
-80
-42
 fc
-20
-20
-5c
-1a
-6f
-e1
-43
-ef
-c2
 80
-42
-fc
-6f
-e0
+07
+6c
+38
+37
+07
+0c
+0c
+e7
+2d
 c8
-43
-1f
-e1
-7e
-03
-20
-40
-5b
-21
-c0
-81
-d4
-a9
-6f
+b6
+64
+2f
+51
+63
+ca
+18
+d0
+01
+a5
+0a
+5c
+58
+5d
+3f
+0a
+fe
+76
+9a
+64
+22
+77
+78
+36
+30
+d5
+f5
+27
+c6
 e0
-cc
+89
+e8
+06
+dd
+89
+86
+fb
+80
+2b
 06
+84
+16
+1a
+16
+d9
+6a
+0e
+bd
+11
+96
+f5
+34
+b8
+89
+5a
+67
+a5
+0b
+5c
+9b
+ec
+31
+58
+a8
+11
+c3
+09
 24
-3a
-54
-a9
-20
-20
+d8
+ca
+5e
+7c
+c8
+7f
+b7
+9b
+ad
+63
+7c
+51
+28
+bc
+b3
+63
+17
+3b
+27
+9c
+56
+ee
+67
+ec
+0c
+ef
+41
+17
+31
+34
+6e
+16
+bb
+e7
+d1
+f4
+24
+b3
+5a
+4b
+63
+c0
+f7
 54
 cd
-6f
-e2
-45
-8f
-67
-e2
-45
-e8
-67
-e2
+a6
+0a
+74
+6a
 46
-91
-20
-40
-35
-5a
-20
-40
-5c
+7e
+85
+fa
+74
+cf
+17
+1a
+15
+e1
+ae
+d4
+81
+e3
+f1
+89
+52
+87
+94
+2d
+e3
+ec
+76
+c8
+4d
+44
 0b
-20
-40
-61
-8e
-20
-40
-5a
-73
-70
-47
-7d
-00
-70
-45
-fc
-00
-70
-45
-e2
-00
+c8
+d3
+6e
+4e
+69
+81
+5b
+5f
+f9
+55
+90
+80
+19
+ff
+79
+44
+44
+a7
+8f
+6d
+b0
+e0
+ee
+43
+c7
+3a
+d2
+2b
+0f
+ba
+8d
+4a
+28
+13
+ac
+e5
 6f
-e2
-45
-e8
-68
+88
+fa
+23
+62
+85
+ae
+a4
+f7
+dd
+52
+64
+01
+8b
+e7
+0c
+23
+5c
+b9
+34
+3e
+ed
+a2
+5a
+43
+03
+f8
+57
+10
+dc
 4a
-45
+29
+c1
+53
+6b
+be
+ab
 e4
-98
-46
-7c
-00
-20
-62
-80
-00
-20
-40
+5d
+6c
+25
+aa
+55
+5a
+e8
 60
+b9
+0e
+34
+94
+c8
+e6
 16
-20
-40
-04
+a8
+23
+fe
+02
+76
+65
+8f
+e8
+7f
+96
+90
+19
+6d
+2f
+14
+f9
+92
+a2
+08
+0c
+1e
+76
+4a
+73
+a4
+df
 45
+be
+ec
+33
+57
+e7
+a4
+eb
+8d
+b2
+e7
+48
+cb
+3d
+41
+b0
+d0
+86
+cc
+c7
+f0
+33
+4d
+6f
+aa
+22
+f8
+25
+d3
+be
+19
+69
+31
+ee
+d5
+cf
 20
+ec
+b8
+e1
+27
+2f
+fc
+7d
+9f
+98
+a5
+41
+d8
+a4
+d7
+f8
+78
+9d
+be
+9f
+ab
+b9
+e4
+d0
+a5
+d8
+98
+a6
+b8
+aa
+7f
+8d
+c1
+35
+8d
+17
+aa
+2f
+74
+59
+35
 20
-60
-42
-20
-40
-60
+d7
 16
-20
-40
-04
+4b
+7c
+ce
+b4
 45
-20
-20
-60
+7c
+93
+3f
+d6
 84
-20
+9a
+72
+7e
+aa
+55
 40
-60
-16
-20
+00
+00
 40
-04
-45
-6f
-e0
-c8
-7a
-c1
-00
-80
-00
-6f
-e0
-c6
-00
-24
-3a
-5f
-f2
-6f
-e0
-c5
-e2
-c0
-02
-04
-3b
-20
-20
-60
-55
-6f
-e4
-47
-13
-c3
-1f
-60
-59
-6f
-e0
-c7
-1b
-c0
+05
 00
-e0
-59
-20
-40
-60
-18
-70
-46
-66
-01
-20
-20
-54
-a0
-6f
-e0
-c1
-41
-67
-e0
-ca
+33
 07
 20
-60
 00
 00
-6f
-e0
-ca
-07
-67
-e0
-c1
-41
-20
-60
 00
 00
-20
-40
-62
-0e
-20
-40
-78
-aa
-20
-40
-04
-4c
-20
-20
-5e
-61
-6f
-e0
-c6
-49
-c1
-7f
-80
 00
-da
-20
 00
 00
-70
-49
-77
-05
-68
-48
-c6
-49
-20
-40
-04
-53
-20
-20
-56
-c1
-6f
-e4
-47
-13
-c2
-95
-d6
-de
-6f
-e0
-c9
-74
-1f
-e2
-26
 00
-6f
-e0
-c6
-54
-c0
-7f
+73
+18
 84
-5a
-20
-20
-56
-ce
-6f
-e0
-c6
-49
-20
-40
-59
-46
-68
-48
-c6
-49
-20
-20
-04
-5e
-1a
-62
-7e
+f2
+7d
+61
 00
-67
-e0
-c9
-78
-1f
-e3
-fe
 00
-1f
-e2
-24
 00
-18
-42
-26
 00
-20
-40
-55
-b1
-1a
-62
-04
 00
 20
-40
-6e
-e6
-7d
-20
-a4
 00
-20
-40
-59
-3d
-20
-20
-59
-29
-20
-40
-36
-b4
-24
-74
+60
+04
 00
 00
-20
-40
-36
-be
-20
-40
-04
-6f
-6f
-e1
-c6
-08
-20
-20
-36
-22
-58
 00
 00
 00
-79
-20
-7e
-15
-67
-e4
 00
-16
-58
+10
+04
+60
 00
 00
+06
 00
-67
-e2
+30
 00
-1e
-20
-60
 00
 00
-70
-46
 00
 00
-20
-40
-36
-47
-5f
-ff
-ff
-ff
-67
-e2
-45
-af
-58
 00
 00
 00
-67
-e3
-c8
-46
-70
-47
-3f
-01
-20
-40
-59
-ed
-20
-20
-02
-9b
-20
-40
-5a
-92
-20
-40
-04
-6f
-20
-40
-56
-a9
-68
-48
-c6
-54
-20
-40
-6e
-f7
-68
-48
-c6
-54
-20
-40
-6e
-d3
-6f
-e0
-c6
-4d
-20
-40
-59
-43
-d8
-40
+41
+a4
 00
-15
-20
-40
-55
-b5
-20
-40
-04
-8b
-20
-20
-54
-df
-6f
-e0
-c6
-5a
-c1
-7f
-80
 00
-6f
-e0
-c6
-66
-c0
 00
-04
-91
-68
-48
-c6
-5a
-20
-20
-55
-b5
-68
-48
-c6
-5a
-20
-20
-6f
-0f
-c6
-93
 00
 00
-20
-40
-56
-01
-24
-74
 00
 00
-6f
-e0
-c7
-7c
-70
-47
-7c
 00
-24
-5a
-04
-a8
-6f
-e4
-47
+00
+00
+00
+00
+aa
+55
+08
+00
 13
-c3
-0b
+47
 04
-9d
-6f
-e0
 c9
-6c
-24
-3a
-60
-b6
-20
-40
-04
-9f
-20
-20
-60
-a2
-6f
-e0
-c6
-59
-c1
-ff
-80
+12
 00
-6f
-e0
-c7
-7d
-20
-7a
 00
 00
-1f
-e0
+01
+1b
+aa
+55
+1e
+00
+44
+46
+06
+07
+08
+08
+07
+06
+14
+12
+0d
+0f
+15
+01
+02
+00
 ff
 ff
-67
-e0
-c7
-7d
-58
+0a
+ff
+ff
+ff
+ff
+ff
+ff
+05
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+01
 00
+29
+47
+01
+aa
+55
+02
 00
+ff
+46
+00
+14
+aa
+55
+03
 00
-67
-e2
-48
-47
-20
-20
-5a
-73
-20
-40
-04
-6f
-20
-20
 02
-2e
-6f
-e4
 47
-13
-c4
-15
+05
+02
+05
+aa
+55
+01
 00
+07
+47
+14
+aa
+55
+01
 00
-c3
-1f
-de
-b9
-68
-48
-c6
-5a
-20
-40
-6e
-f7
-68
-48
-c6
-5a
-20
-40
+05
+47
+02
+aa
 55
-b1
-68
-48
-c6
-5a
-20
-40
-6e
-e6
-24
-20
-de
-c2
-20
-20
-5e
-be
-20
-40
-59
-58
-c0
-18
-59
-5f
-c0
-18
-d9
-c6
-c0
-2c
-04
-ba
-20
-20
-59
-52
-20
-40
-59
-e7
-6f
-e0
-c8
-5a
-c0
-2c
-84
-be
-20
-20
-59
-5f
-70
-49
-57
-0b
-da
-60
-4a
-0b
-20
-20
-59
-95
-6f
-e0
-c4
-20
-c1
-80
+02
 00
+0a
+47
+02
+06
+aa
+55
+01
 00
-6f
-e0
-c9
-57
-c0
-05
-84
-c6
-20
-20
-59
-f8
-20
-40
-5a
-6d
-6f
-e0
-c6
-59
-c0
-7f
-84
-cc
-68
-48
-c6
-59
-20
-40
-6e
-e6
-24
-60
-80
+0d
+47
+0a
+aa
+55
+01
+00
+12
+47
+0a
+aa
+55
+02
+00
+0f
+47
+58
+02
+aa
+55
+02
 00
+3a
+46
 58
+02
+aa
+55
+01
 00
+3d
+46
+64
+aa
+55
+02
 00
+21
+47
+05
 00
-20
-40
-69
-e5
-c0
-ac
-59
+aa
 55
-20
-20
-5a
-2f
-78
-54
-7c
+01
 00
-58
+3c
+46
+32
+aa
+55
+02
 00
+38
+46
+b0
+04
+aa
+55
+01
 00
+1e
+47
+0a
+aa
+55
+02
 00
-67
-e3
-48
+25
 47
-20
-40
-04
-c1
-20
-20
-56
-06
-88
-75
+70
+17
 aa
 55
-40
+01
+00
+cb
+43
+08
+aa
+55
+01
 00
+1b
+47
+01
+aa
+55
+01
 00
+94
 40
-05
+01
+aa
+55
+01
 00
-33
-07
+c0
+40
 20
+aa
+55
+01
 00
+6b
+49
+20
+aa
+55
+03
 00
+3c
+47
 00
 00
 00
+aa
+55
+02
 00
+66
+46
 00
+34
+aa
+55
+01
 00
-33
-08
-84
-f2
-7d
-61
-00
-00
-00
-00
-00
-20
-00
-00
-14
-00
-00
-00
+74
+46
+34
+aa
+55
+01
 00
+81
+46
+33
+aa
+55
+06
 00
+2d
+46
+dc
+05
+84
+03
+e8
+03
+aa
+55
+01
 00
-10
+35
+46
 04
-60
+aa
+55
+01
 00
+28
+47
+03
+aa
+55
+01
 00
+27
+47
+07
+aa
+55
 06
 00
-30
-00
-00
-00
-00
-00
-00
-00
-00
-41
-a4
-00
-00
-00
-00
-00
-00
+e6
+46
 00
 00
 00
@@ -5026,1631 +5702,955 @@
 00
 aa
 55
-08
-00
-13
-47
-04
-c9
-12
-00
-00
+06
 00
-01
-1b
+f1
+44
+02
+11
+36
+66
+51
+61
 aa
 55
-1e
-00
-44
-46
-06
-07
-08
-08
-07
-06
-14
-12
-0d
-0f
-15
 01
-02
 00
-ff
-ff
-0a
-ff
-ff
-ff
-ff
-ff
-ff
-05
-ff
-ff
-ff
-ff
-ff
-ff
+89
+45
+01
 aa
 55
-01
+05
 00
-29
-47
+e3
+45
 01
+0f
+0f
+0f
+0f
 aa
 55
-02
+01
 00
-ff
-46
+b9
+45
 00
-14
 aa
 55
-03
+01
 00
-02
+40
 47
-05
 02
-05
 aa
 55
 01
 00
-07
-47
-14
+ca
+45
+00
 aa
 55
 01
 00
-05
+7b
 47
-02
+00
 aa
 55
 02
 00
-0a
+8b
+45
+c0
+12
+aa
+55
+07
+00
+43
 47
-02
-06
+ee
+4d
+00
+80
+bb
+00
+05
 aa
 55
-01
+04
 00
-0d
+55
 47
-0a
+80
+bb
+00
+00
 aa
 55
-01
+07
 00
-12
+4a
 47
-0a
+60
+ea
+00
+00
+77
+01
+0b
 aa
 55
-02
+04
 00
-0f
+59
 47
-58
-02
+00
+77
+01
+00
+aa
+55
+03
+00
+af
+45
+00
+48
+60
 aa
 55
 02
 00
-3a
+1d
 46
-58
-02
+2c
+01
 aa
 55
-01
+02
 00
-3d
+1b
 46
-64
+50
+00
 aa
 55
 02
 00
-21
+23
 47
-05
+64
 00
 aa
 55
 01
 00
-3c
+f4
 46
-32
+01
 aa
 55
-02
+06
 00
-38
-46
-b0
-04
+db
+42
+71
+81
+91
+a1
+b3
+c1
 aa
 55
 01
 00
-1e
-47
-0a
-aa
-55
-02
-00
-25
-47
-70
-17
+93
+43
+07
 aa
 55
-01
+08
 00
-cb
+c0
 43
+fb
+00
+48
+08
+fb
+00
+48
 08
 aa
 55
-01
+02
 00
-1b
+be
 47
-01
+96
+00
 aa
 55
-01
+02
+00
+b5
+47
+15
 00
-94
-40
-01
 aa
 55
-01
+02
+00
+9b
+43
+19
 00
-c0
-40
-20
 aa
 55
-01
+04
+00
+b7
+47
+1d
+00
+21
 00
-6b
-49
-20
 aa
 55
 02
 00
-66
-46
+32
+43
+2d
 00
-34
 aa
 55
-01
+02
 00
-74
-46
-34
-aa
-55
-01
+bb
+47
+30
 00
-81
-46
-33
 aa
 55
-06
+0c
 00
-2d
-46
-dc
+48
+43
+1f
+02
+01
 05
-84
 03
-e8
+03
+12
+18
+03
+19
+c2
 03
 aa
 55
-01
+14
+00
+a0
+47
+06
+ff
+06
 00
+03
+00
+80
+0c
+09
+42
+54
 35
-46
-04
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-01
+0e
 00
-28
-47
-03
+68
+43
+1f
+0c
+09
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-01
+0c
 00
-27
-47
-07
+6b
+42
+0b
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
 aa
 55
-06
-00
-e6
-46
-00
+0c
 00
+8c
+49
+0b
+42
+54
+35
+2e
+32
+20
+4d
+6f
+75
+73
+65
+aa
+55
+08
 00
+d3
+42
+06
 00
+09
 00
+20
 00
+2c
+01
 aa
 55
 06
 00
-f1
-44
-02
-11
-36
-66
-51
-61
-aa
-55
-01
+9a
+47
+03
+12
+18
+ff
 00
-89
-45
-01
-aa
-55
-05
 00
-e3
-45
-01
-0f
-0f
-0f
-0f
 aa
 55
-01
+03
 00
-b9
-45
+ec
+46
+00
+50
 00
 aa
 55
-01
-00
-40
-47
 02
+00
+eb
+43
+80
+1f
 aa
 55
 01
 00
-ca
-45
-00
-aa
-55
-01
-00
-7b
-47
-00
-aa
-55
-02
-00
-8b
-45
-c0
-12
-aa
-55
-07
-00
+f4
 43
-47
-ee
-4d
-00
-80
-bb
-00
-05
-aa
-55
-04
-00
-55
-47
 80
-bb
-00
-00
-aa
-55
-07
-00
-4a
-47
-f2
-f9
-00
-00
-77
-01
-0b
 aa
 55
 04
 00
-59
-47
-00
-77
-01
-00
-aa
-55
-03
-00
-af
-45
-00
-48
-60
-aa
-55
-02
-00
-1d
-46
-2c
-01
+fa
+49
+b9
+1a
+ea
+1a
 aa
 55
-02
+18
 00
+e2
+49
+eb
+1a
+b2
 1b
-46
-50
-00
-aa
-55
-02
-00
-23
-47
-64
-00
-aa
-55
-01
-00
-f4
-46
-01
-aa
-55
-06
-00
-db
-42
-71
-81
-91
-a1
 b3
-c1
-aa
-55
-01
-00
-93
-43
-07
-aa
-55
-08
-00
-c0
-43
-fb
-00
-48
-08
-fb
-00
-48
-08
-aa
-55
-02
-00
-be
-47
-96
-00
-aa
-55
-02
-00
-b5
-47
-15
-00
-aa
-55
-02
-00
-9b
-43
-19
-00
-aa
-55
-04
-00
-b7
-47
-1d
-00
-21
-00
-aa
-55
-02
-00
-32
-43
-2d
-00
-aa
-55
-02
-00
-bb
-47
-30
-00
-aa
-55
-0c
-00
-48
-43
-1f
-02
-01
-05
-03
-03
-12
-18
-03
-19
-c2
-03
-aa
-55
-14
-00
-a0
-47
-06
-ff
-06
-00
-03
-00
-80
-0c
-09
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0e
-00
-68
-43
-1f
-0c
-09
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0c
-00
-6b
-42
-0b
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-0c
-00
-8c
-49
-0b
-42
-54
-35
-2e
-32
-20
-4d
-6f
-75
-73
-65
-aa
-55
-08
-00
-d3
-42
-06
-00
-09
-00
-20
-00
-2c
-01
-aa
-55
-06
-00
-9a
-47
-03
-12
-18
-ff
-00
-00
-aa
-55
-03
-00
-ec
-46
-00
-50
-00
-aa
-55
-02
-00
-eb
-43
-80
-1f
-aa
-55
-01
-00
-f4
-43
-80
-aa
-55
-04
-00
-fa
-49
-b9
-1a
-ea
-1a
-aa
-55
-18
-00
-e2
-49
-eb
-1a
-b2
-1b
-b3
-1b
-2a
-1c
-2b
-1c
-de
-1c
-df
-1c
-92
+1b
+2a
+1c
+2b
+1c
+de
+1c
+df
+1c
+92
 1d
 93
-1d
-46
-1e
-47
-1e
-fa
-1e
-aa
-55
-06
-00
-fe
-49
-fb
-1e
-c2
-1f
-c4
-1f
-aa
-55
-01
-00
-ec
-44
-ff
-aa
-55
-01
-00
-eb
-44
-1e
-aa
-55
-01
-00
-ee
-44
-00
-aa
-55
-01
-00
-41
-41
-03
-aa
-55
-01
-00
-3e
-46
-00
-aa
-55
-01
-00
-d2
-45
-07
-aa
-55
-02
-00
-f0
-45
-83
-47
-aa
-55
-02
-00
-3f
-46
-85
-90
-aa
-55
-02
-00
-42
-46
-75
-80
-aa
-55
-01
-00
-41
-46
-63
-aa
-55
-01
-00
-27
-46
-7d
-aa
-55
-01
-00
-37
-44
-00
-aa
-55
-03
-00
-08
-4a
-00
-03
-25
-aa
-55
-01
-00
-6c
-08
-ff
-aa
-55
-11
-00
-68
-48
-03
-04
-01
-02
-20
-2a
-3f
-15
-14
-1b
-11
-0e
-8a
-8b
-83
-84
-88
-aa
-55
-08
-00
-4e
-49
-09
-a5
-0b
-f3
-09
-00
-ff
-ff
-aa
-55
-08
-00
-46
-49
-09
-5a
-0b
-f3
-09
-00
-ff
-ff
-aa
-55
-12
-00
-0b
-4a
-09
-a5
-26
-34
-19
-04
-60
-07
-69
-04
-7d
-20
-7e
-00
-09
-00
-ff
-ff
-aa
-55
-0a
-00
-7c
-48
-09
-5a
-26
-34
-19
-04
-09
-00
-ff
-ff
-aa
-55
-0a
-00
-90
-48
-09
-5a
-0d
-10
-1d
-ed
-7d
-80
-ff
-ff
-aa
-55
-10
-00
-2a
-49
-09
-a5
-26
-34
-60
-07
-69
-04
-7d
-20
-7e
-00
-09
-00
-ff
-ff
-aa
-55
-1e
-00
-d6
-48
-09
-5a
-ff
-27
-ab
-40
-be
-d1
-a0
-41
-a1
-12
-a5
-84
-a7
-ff
-b5
-d0
-b6
-00
-ff
-00
-35
-c8
-25
-af
-09
-00
-ff
-ff
-aa
-55
-2e
-00
-fc
-48
-09
-5a
-0d
-10
-0e
-c5
-5b
-9a
-10
-38
-11
-42
-28
-28
-41
-23
-49
-39
-4a
-b0
-4b
-a0
-4c
-90
-4d
-70
-09
-00
-ff
-ff
-09
-5a
-06
-02
-09
-69
-0d
-48
-0e
-9f
-0f
-ba
-09
-00
-ff
-ff
-aa
-55
-01
-00
-48
-41
-0c
-aa
-55
-06
-00
-c3
-40
-35
-3f
-64
-db
-7b
-3b
-aa
-55
-01
-00
-a7
-40
-20
-aa
-55
-03
-00
-c9
-40
-00
-08
-b4
-aa
-55
-01
-00
-99
-40
-18
-aa
-55
-01
-00
-1c
-41
-3e
-aa
-55
-0c
-00
-16
-00
-00
-00
-20
-00
-00
-00
-00
-00
-00
-00
-00
-00
-aa
-55
-05
-00
-5e
-41
-08
-0e
-05
-03
-00
-aa
-55
-01
-00
-68
-41
-20
-aa
-55
-02
-00
-9a
-40
-00
-0c
-aa
-55
-05
-00
-43
-41
-ff
-04
-00
-00
-08
-aa
-55
-01
-00
-1c
-02
-5a
-aa
-55
-01
-00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
-38
-44
-a0
-aa
-55
-02
-00
-3b
-44
-bc
-02
-aa
-55
-02
-00
-39
-44
-90
-01
-aa
-55
-02
-00
-3d
-44
-03
-09
-aa
-55
-01
-00
-49
-41
-ff
-aa
-55
-02
-00
-9c
-40
-49
-41
-55
-aa
-aa
-55
-c3
-5e
-a6
-6e
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
+1d
+46
+1e
+47
+1e
+fa
+1e
+aa
+55
+06
+00
+fe
+49
+fb
+1e
+ac
+1f
+ae
+1f
+aa
+55
+01
+00
+ec
+44
 ff
+aa
+55
+01
+00
+eb
+44
+1e
+aa
+55
+01
+00
+ee
+44
+00
+aa
+55
+01
+00
+41
+41
+03
+aa
+55
+01
+00
+3e
+46
+00
+aa
+55
+01
+00
+d2
+45
+07
+aa
+55
+02
+00
+f0
+45
+83
+47
+aa
+55
+02
+00
+3f
+46
+85
+90
+aa
+55
+02
+00
+42
+46
+75
+80
+aa
+55
+01
+00
+41
+46
+63
+aa
+55
+01
+00
+27
+46
+7d
+aa
+55
+01
+00
+37
+44
+00
+aa
+55
+03
+00
+08
+4a
+00
+03
+25
+aa
+55
+01
+00
+6c
+08
 ff
+aa
+55
+11
+00
+68
+48
+03
+04
+01
+02
+20
+2a
+3f
+15
+14
+1b
+11
+0e
+8a
+8b
+83
+84
+88
+aa
+55
+08
+00
+4e
+49
+09
+a5
+0b
+f3
+09
+00
 ff
 ff
+aa
+55
+08
+00
+46
+49
+09
+5a
+0b
+f3
+09
+00
 ff
 ff
+aa
+55
+12
+00
+0b
+4a
+09
+a5
+26
+34
+19
+04
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
 ff
 ff
+aa
+55
+0a
+00
+7c
+48
+09
+5a
+26
+34
+19
+04
+09
+00
 ff
 ff
+aa
+55
+0a
+00
+90
+48
+09
+5a
+0d
+10
+1d
+ed
+7d
+80
 ff
 ff
+aa
+55
+10
+00
+2a
+49
+09
+a5
+26
+34
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
 ff
 ff
+aa
+55
+1a
+00
+d6
+48
+09
+5a
 ff
+27
+ab
+40
+be
+d1
+a0
+41
+a1
+12
+a7
 ff
+b6
+00
+b5
+c8
+a5
+af
 ff
+00
+09
+00
 ff
 ff
+aa
+55
+2e
+00
+fc
+48
+09
+5a
+0d
+10
+0e
+c5
+5b
+9a
+10
+38
+11
+42
+28
+28
+41
+23
+49
+39
+4a
+b0
+4b
+a0
+4c
+90
+4d
+70
+09
+00
 ff
 ff
+09
+5a
+06
+02
+09
+69
+0d
+48
+0e
+9f
+0f
+ba
+09
+00
 ff
 ff
+aa
+55
+01
+00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
+48
+41
+0c
+aa
+55
+06
+00
+c3
+40
+35
+3f
+64
+db
+7b
+3b
+aa
+55
+01
+00
+a7
+40
+20
+aa
+55
+03
+00
+c9
+40
+00
+08
+b4
+aa
+55
+01
+00
+99
+40
+18
+aa
+55
+01
+00
+1c
+41
+3e
+aa
+55
+0c
+00
+16
+00
+00
+00
+20
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+05
+00
+5e
+41
+08
+0e
+05
+03
+00
+aa
+55
+01
+00
+68
+41
+20
+aa
+55
+02
+00
+9a
+40
+00
+0c
+aa
+55
+05
+00
+43
+41
 ff
+04
+00
+00
+08
+aa
+55
+01
+00
+1c
+02
+5a
+aa
+55
+01
+00
+38
+44
+a0
+aa
+55
+02
+00
+3b
+44
+bc
+02
+aa
+55
+02
+00
+39
+44
+90
+01
+aa
+55
+02
+00
+3d
+44
+03
+09
+aa
+55
+01
+00
+49
+41
 ff
+aa
+55
+02
+00
+9c
+40
+49
+41
+55
+aa
+aa
+55
+1f
+5d
+bc
+28
 ff
 ff
 ff
@@ -8188,5 +8188,5 @@
 ff
 ff
 ff
-2d
-0a
+8e
+81
Index: output/memmap.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/memmap.format	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/memmap.format	(working copy)
@@ -723,6 +723,14 @@
 0x4147 mem_gain_second_agc_en
 0x4148 mem_system_clk
 0x4149 mem_rf_init_data
+0x414e mem_adc_reference3v_ft_data
+0x414e mem_adc_reference3v_gpio1v_ft_data
+0x4150 mem_adc_reference3v_gpio2v_ft_data
+0x4152 mem_adc_reference3v_vdcdc3p6v_ft_data
+0x4154 mem_adc_reference3v_vdcdc4p6v_ft_data
+0x4156 mem_adc_reference3v_inter1v_ft_data
+0x4158 mem_adc_reference3v_inter1v_now_data
+0x415a mem_adc_reference_mode
 0x415b mem_otp_charge_pump_x
 0x415c mem_otp_dpll_ibais_x
 0x415d mem_xtal_freq
@@ -863,10 +871,19 @@
 0x43f8 mem_nv_data_ptr
 0x43fa mem_nv_data_number
 0x43fb mem_queue_ptr
+0x43fd mem_reference_inter1p8v_2v_adc_io_data
+0x43fd mem_inter1v_adc_ft_data
 0x43fd mem_3v_adc_io_data
+0x43ff mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+0x43ff mem_inter1p2v_adc_ft_data
 0x43ff mem_2v_adc_hvin_data
+0x4401 mem_reference_inter1p8v_1v_adc_io_data
+0x4401 mem_io1v_adc_ft_data
 0x4401 mem_1v_adc_io_data
+0x4403 mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+0x4403 mem_io2v_adc_ft_data
 0x4403 mem_3v_adc_hvin_data
+0x4405 mem_adc_ratio
 0x4405 mem_reference_voltage
 0x4407 mem_adc_config_flag
 0x4408 mem_adc_channel
@@ -1948,101 +1965,96 @@
 0x4a07 mem_normal_tx_power
 0x4a08 mem_tx_power_factory_param_new
 0x4a0b mem_sensor_ka8g2_init_new
-0x4a1d mem_device_uart_tx_gpio
-0x4a1e mem_device_uart_rx_gpio
-0x4a1f mem_device_uart_rx_buffer
-0x4a21 mem_device_uart_rx_buffer_end
-0x4a23 mem_device_uart_tx_buffer
-0x4a25 mem_device_uart_tx_buffer_end
-0x4a27 mem_device_uart_baud_rate
-0x4a29 mem_le_tx_buffer0_omemalloc_new
-0x4a69 mem_le_tx_buffer1_omemalloc_new
-0x4aa9 mem_le_tx_buffer2_omemalloc_new
-0x4ae9 mem_le_tx_buffer3_omemalloc_new
-0x4b29 mem_24g_txpayload_buf
-0x4b39 mem_release_data_from_receiver_enable
-0x4b3a mem_release_data_from_transmiter_enable
-0x4b3b mem_flippen_key0_gpio
-0x4b3c mem_flippen_key1_gpio
-0x4b3d mem_flippen_key2_gpio
-0x4b3e mem_flippen_key3_gpio
-0x4b3f mem_flippen_key4_gpio
-0x4b40 mem_flippen_key5_gpio
-0x4b41 mem_flippen_key6_gpio
-0x4b42 mem_flippen_key7_gpio
-0x4b43 mem_flippen_key0_press_status
-0x4b44 mem_flippen_key1_press_status
-0x4b45 mem_flippen_key2_press_status
-0x4b46 mem_flippen_key3_press_status
-0x4b47 mem_flippen_key4_press_status
-0x4b48 mem_flippen_key5_press_status
-0x4b49 mem_flippen_key6_press_status
-0x4b4a mem_flippen_key7_press_status
-0x4b4b mem_key_press_data
-0x4b4b mem_key_pageup_data
-0x4b54 mem_key_pagedown_data
-0x4b5d mem_key_shift_f5_data
-0x4b66 mem_key_esc_data
-0x4b6f mem_key_b_data
-0x4b78 mem_key_tab
-0x4b81 mem_key_enter
-0x4b8a mem_key_alt_tab
-0x4b93 mem_key_alt_f4
-0x4b9c mem_key_play_pause
-0x4ba5 mem_key_vol_up
-0x4bae mem_key_vol_down
-0x4bb7 mem_standard_key_release
-0x4bc0 mem_system_ctrl_key_release
-0x4bc9 mem_media_key_release
-0x4bd2 mem_key0_long_press_flag
-0x4bd3 mem_key1_long_press_flag
-0x4bd4 mem_key2_long_press_flag
-0x4bd5 mem_key3_long_press_flag
-0x4bd6 mem_key4_long_press_flag
-0x4bd7 mem_key0_long_press_event
-0x4bd8 mem_key1_long_press_event
-0x4bd9 mem_key2_long_press_event
-0x4bda mem_key3_long_press_event
-0x4bdb mem_key4_long_press_event
-0x4bdc mem_key0_short_press_flag
-0x4bdd mem_key1_short_press_flag
-0x4bde mem_key2_short_press_flag
-0x4bdf mem_key3_short_press_flag
-0x4be0 mem_key4_short_press_flag
-0x4be1 mem_key0_press_timer_count
-0x4be2 mem_key1_press_timer_count
-0x4be3 mem_key2_press_timer_count
-0x4be4 mem_key3_press_timer_count
-0x4be5 mem_key4_press_timer_count
-0x4be6 mem_combination_key_down_flag
-0x4be7 mem_combination_key_longpress_flag
-0x4be8 mem_key_disable_timer
-0x4be9 mem_24g_calculate_package_id_disable
-0x4bea mem_24g_package_id_abandon_flag
-0x4beb mem_24g_package_id
-0x4bec mem_key_state
-0x4bed mem_key_press_state
-0x4bee mem_poweron_first_blank_data_enable
-0x4bef mem_flippen_no_data_timeout
-0x4bf1 mem_flippen_start_pair_no_data_timeout
-0x4bf3 mem_key_longpress_timer_init
-0x4bf5 mem_key_longpress_timer
-0x4bf7 mem_low_voltage_led_blink_flag
-0x4bf8 mem_low_voltage_led_blink_start_timer
-0x4bf9 mem_poweron_led_blink_flag
-0x4bfa mem_24g_pair_enable_flag
-0x4bfb mem_24g_ch_work
-0x4bfc mem_24g_pair_key_down_flag
-0x4bfd mem_24g_pairing_stop_flag
-0x4bfe mem_longpress_24g_enter_hibernate_flag
-0x4bff mem_g24_connected_state
-0x4c00 mem_g24_pairing_stop_flag
-0x4c01 mem_send_package_before_check
-0x4c02 mem_le_conn_rcv_new
-0x4c03 mem_le_conn_first_rcv
-0x4c04 mem_le_check_retransmit_flag
-0x4c05 mem_le_retransmit_cnt
-0x4c06 mem_le_check_retransmit_discon_flag
+0x4a1d mem_le_tx_buffer0_omemalloc_new
+0x4a5d mem_le_tx_buffer1_omemalloc_new
+0x4a9d mem_le_tx_buffer2_omemalloc_new
+0x4add mem_le_tx_buffer3_omemalloc_new
+0x4b1d mem_mouse_wheel_temp_gpio
+0x4b1e mem_mouse_qdec_set_flag
+0x4b1f mem_24g_txpayload_buf
+0x4b2f mem_release_data_from_receiver_enable
+0x4b30 mem_release_data_from_transmiter_enable
+0x4b31 mem_flippen_key0_gpio
+0x4b32 mem_flippen_key1_gpio
+0x4b33 mem_flippen_key2_gpio
+0x4b34 mem_flippen_key3_gpio
+0x4b35 mem_flippen_key4_gpio
+0x4b36 mem_flippen_key5_gpio
+0x4b37 mem_flippen_key6_gpio
+0x4b38 mem_flippen_key7_gpio
+0x4b39 mem_flippen_key0_press_status
+0x4b3a mem_flippen_key1_press_status
+0x4b3b mem_flippen_key2_press_status
+0x4b3c mem_flippen_key3_press_status
+0x4b3d mem_flippen_key4_press_status
+0x4b3e mem_flippen_key5_press_status
+0x4b3f mem_flippen_key6_press_status
+0x4b40 mem_flippen_key7_press_status
+0x4b41 mem_key_press_data
+0x4b41 mem_key_pageup_data
+0x4b4a mem_key_pagedown_data
+0x4b53 mem_key_shift_f5_data
+0x4b5c mem_key_esc_data
+0x4b65 mem_key_b_data
+0x4b6e mem_key_tab
+0x4b77 mem_key_enter
+0x4b80 mem_key_alt_tab
+0x4b89 mem_key_alt_f4
+0x4b92 mem_key_play_pause
+0x4b9b mem_key_vol_up
+0x4ba4 mem_key_vol_down
+0x4bad mem_standard_key_release
+0x4bb6 mem_system_ctrl_key_release
+0x4bbf mem_media_key_release
+0x4bc8 mem_key0_long_press_flag
+0x4bc9 mem_key1_long_press_flag
+0x4bca mem_key2_long_press_flag
+0x4bcb mem_key3_long_press_flag
+0x4bcc mem_key4_long_press_flag
+0x4bcd mem_key0_long_press_event
+0x4bce mem_key1_long_press_event
+0x4bcf mem_key2_long_press_event
+0x4bd0 mem_key3_long_press_event
+0x4bd1 mem_key4_long_press_event
+0x4bd2 mem_key0_short_press_flag
+0x4bd3 mem_key1_short_press_flag
+0x4bd4 mem_key2_short_press_flag
+0x4bd5 mem_key3_short_press_flag
+0x4bd6 mem_key4_short_press_flag
+0x4bd7 mem_key0_press_timer_count
+0x4bd8 mem_key1_press_timer_count
+0x4bd9 mem_key2_press_timer_count
+0x4bda mem_key3_press_timer_count
+0x4bdb mem_key4_press_timer_count
+0x4bdc mem_combination_key_down_flag
+0x4bdd mem_combination_key_longpress_flag
+0x4bde mem_key_disable_timer
+0x4bdf mem_24g_calculate_package_id_disable
+0x4be0 mem_24g_package_id_abandon_flag
+0x4be1 mem_24g_package_id
+0x4be2 mem_key_state
+0x4be3 mem_key_press_state
+0x4be4 mem_poweron_first_blank_data_enable
+0x4be5 mem_flippen_no_data_timeout
+0x4be7 mem_flippen_start_pair_no_data_timeout
+0x4be9 mem_key_longpress_timer_init
+0x4beb mem_key_longpress_timer
+0x4bed mem_low_voltage_led_blink_flag
+0x4bee mem_low_voltage_led_blink_start_timer
+0x4bef mem_poweron_led_blink_flag
+0x4bf0 mem_24g_pair_enable_flag
+0x4bf1 mem_24g_ch_work
+0x4bf2 mem_24g_pair_key_down_flag
+0x4bf3 mem_24g_pairing_stop_flag
+0x4bf4 mem_longpress_24g_enter_hibernate_flag
+0x4bf5 mem_g24_connected_state
+0x4bf6 mem_g24_pairing_stop_flag
+0x4bf7 mem_send_package_before_check
+0x4bf8 mem_le_conn_rcv_new
+0x4bf9 mem_le_conn_first_rcv
+0x4bfa mem_le_check_retransmit_flag
+0x4bfb mem_le_retransmit_cnt
+0x4bfc mem_le_check_retransmit_discon_flag
 0x462d mem_remote_car_hard_soft_switch
 0x462e mem_remote_car_queue_each_size
 0x462f mem_remote_car_queue_length
Index: output/otp.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/otp.dat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/otp.dat	(working copy)
@@ -9,4960 +9,5354 @@
 00
 00
 00
-aa
-55
-56
-13
+38
+75
 c2
-84
-00
-24
-c0
-00
-02
-98
-c0
-01
-00
-4b
-c0
-08
-00
-54
-c0
-08
-80
-56
-c0
-0a
-01
-6f
-c0
-0a
-80
-d8
-c0
-0c
-00
-f8
-c0
+27
+f0
+9b
 0c
-80
-ff
-c0
-0d
-00
-64
-c0
-12
-82
-1e
-c0
-34
-02
-91
-c0
-34
-82
-b1
-c0
-36
-02
-5a
-c0
-36
-80
-33
-c0
-39
-84
-7e
-c0
-3d
-04
+74
+60
+78
+61
 d0
-c0
-3f
-84
-5e
-c0
-40
-84
-b5
-c0
-42
-03
-9a
-c0
+cc
+b7
+67
+fb
+aa
+55
+d0
+14
+ba
+1b
+2d
+7c
+fa
+2a
+0b
+a8
+55
+3b
+f2
+34
+56
+2f
+c3
+4d
 42
-83
-e6
-c0
-43
-02
-06
-c0
-43
-83
-c4
-c0
 44
-03
+0f
+05
+18
+51
+cc
+fc
+52
+a7
+aa
+0e
+1b
+d5
+0a
+3b
 e4
-c0
-45
-03
-ae
-c0
-46
-02
-ef
-c0
-46
-83
-57
-c0
+c5
+db
+ee
+5d
+7e
+b5
+0a
+0b
+f4
+96
+cf
+58
+d5
 47
-04
-48
-c0
-45
-82
-c8
-c0
+71
+22
+e5
+e1
+2d
+fb
 48
-04
-aa
-c0
-4a
-84
-75
-c0
-4b
-04
-93
-c0
-62
-82
-3d
-c0
-6d
-01
-40
-c0
-6e
-01
-50
-20
-20
-23
-5a
-c0
-0a
-01
-90
-c0
-0d
-01
+55
+86
+db
+22
 8f
-c0
-12
-81
-bf
-c0
-13
-01
-c4
-c0
-1c
-81
-d6
-c0
-1d
-01
-e0
-c0
-26
-01
+40
+2d
+17
+41
 da
-c0
+d3
+59
 26
-81
-de
-c0
-48
-02
-40
-c0
-4b
-04
-69
-c0
-4d
-00
-e6
-c0
-4e
-80
-ed
-c0
-4f
-82
-62
-c1
-7f
-80
-00
-20
-20
-23
-5a
-6f
-e0
-c6
-4f
-67
-e0
-c9
-58
-6f
-e0
-c6
-4e
-c1
-7f
-80
-00
-20
-40
-23
-c3
-6f
-e0
-c6
-4e
-d8
-40
-00
-3e
-20
-40
-6f
-21
-6f
+5e
 e0
-c6
-5b
-d8
-40
-00
+03
+be
+17
+bb
 3e
-20
-40
-6f
-21
-68
-48
-c6
-4d
-20
-40
-55
-b5
+7e
+44
+5d
+6c
+e5
 68
-48
-c6
+34
+f4
+f2
+4f
+b3
 4d
-20
-40
-6e
-e6
-20
-40
-d4
-73
-20
-40
-55
+41
+ad
+4f
+69
 b1
+53
+24
+98
+2f
+f2
+d1
+53
+c5
+19
+e5
+9b
+a1
+93
+a9
+56
+5c
+9f
+8c
+9e
+85
+86
+2d
+8c
+a4
+ef
+44
+cb
+49
+3c
+10
+34
+be
 68
-48
-c6
-4d
-20
-40
-6e
-dd
-20
-40
-23
-c7
-68
-48
+fa
+b9
+a5
+df
 c6
-4e
-20
-40
-6f
-0f
-68
-48
+d4
+70
+b2
+bb
+70
+06
+e9
+2c
+c0
+2f
+c9
+8b
+d0
+b3
+f2
+8a
+e9
+5d
+83
+18
+95
+85
+27
+bd
 c6
+c9
+f6
+58
+dc
+ac
+2b
+e9
+60
+e2
+fd
+8d
+28
+bf
+3a
+15
+f6
+8f
+65
+91
+0c
+2d
+f7
+08
+0d
+a1
+41
+51
+cc
 5b
-20
-20
-6f
+64
+0b
+14
+67
+83
+bd
+19
+91
+5d
+c8
+70
+de
+b9
+cc
+d1
+23
+ba
+fc
 0f
-20
-40
+b0
+8b
+a5
+cc
+09
+e1
+92
+2c
+02
+1c
 75
-52
-20
-40
-74
-48
-20
-40
-2a
+46
+8b
+7c
+b1
+de
+9b
+d8
+0e
+18
+1b
+ff
 45
-20
-40
-20
-2a
-20
-40
-42
-ad
-20
-40
-20
-18
-20
-40
-31
-0f
-20
-40
-24
-8c
-20
-20
-00
-4b
-70
-89
-00
-00
-20
-20
-21
-53
-70
-8a
-0f
-60
-70
-8a
-10
-aa
-70
-8a
-12
-7a
-70
-8a
-25
-00
-70
-8a
-26
-00
-20
-00
-00
-3c
-70
-8a
-20
-20
-70
-8a
-23
-f5
-70
-8a
-24
-12
-70
-8a
-24
+e7
+8d
+1a
+d6
 10
-20
-00
-00
-3c
-70
-8a
-12
-60
-70
-8a
-23
-dd
-20
 60
-00
-00
-70
-01
-bb
-00
-70
-01
-bc
-00
-37
-d9
-82
-00
-70
-89
-46
-0d
-70
-89
-6f
-10
-70
-8a
-13
-cd
-70
-8a
-06
-10
-70
-8a
-84
+8f
+f9
+3f
+2d
+ff
+79
+a4
 4a
-70
-8a
-85
-40
-70
-8a
-16
-fe
-20
-40
-00
-ac
-20
-40
-70
-d7
-37
-d9
-82
-00
-70
-81
-3b
-5f
-37
-d9
-82
-00
-70
-81
-3c
+d0
+61
+e2
+1c
+e8
+d6
 88
-37
-d9
-82
-00
-6f
-e0
-c0
-99
-c0
-08
-00
-a1
-6f
-e0
-c4
-38
-1f
-e1
-fe
-04
-67
-f0
-8a
-02
-70
-89
-0f
-01
-70
-8a
-80
-24
-70
-8a
-81
-62
+91
+39
+d3
+6c
+e8
+da
+df
+f8
+85
+a3
 58
-e6
-12
-12
-67
-f1
-8a
-73
-70
-8a
-86
-60
-70
-8a
-8b
-3b
-20
-40
-00
+92
 93
-70
+95
+f7
+23
+e7
+59
+ef
+b5
+7f
+42
 80
+25
+d6
+93
+9a
 43
-00
-70
-80
-42
-05
-58
+aa
+63
+17
+ac
+41
+61
 55
-74
-74
-67
-f1
-89
-68
-70
-89
-60
-6e
-20
-40
-01
-12
-20
-40
-01
-3d
-20
-40
-00
-8d
-70
-41
-48
-0c
-20
-40
-6f
-4e
-20
-20
-01
-3f
-20
-75
-80
-00
-37
-d9
-82
-00
-6f
-e0
-c1
-1c
-67
-f0
-81
-3a
-37
 d9
-82
-00
-20
-60
-00
-00
-6f
-e0
-c0
-99
-c0
-0c
-00
-99
-6f
-e0
-c4
-38
-1f
-e1
-fe
-06
-67
-f0
-8a
-02
-70
-8a
-05
-e0
-70
-8a
-00
-d8
-20
-00
-00
-3c
-70
-8a
-01
+08
+87
+6a
+fd
+42
+18
+d2
+85
 a0
-70
-8a
-00
-df
-70
-8a
+9b
+c7
+3d
+23
+f4
+31
+17
+b7
+c1
+08
 01
-fa
-20
-00
-00
-14
-70
-8a
-00
+fd
+17
+b2
+97
+dc
+a6
+ec
+83
+ad
+13
+1b
 9f
-20
-60
-00
-00
-6f
-e0
+0e
+fd
 c4
-38
-1f
-e1
-fe
-06
-67
-f0
-8a
-02
-70
-89
-0f
-00
-70
-8a
-80
+72
+f3
+c7
+27
+ed
+5c
+a3
+01
+9f
+34
+f9
+d4
+2a
+3d
+a4
 23
-70
-8a
-81
-b0
-58
-e4
-09
+0f
+29
+74
+b6
+25
+62
+d5
+54
+31
+fc
+08
+d7
+bb
+c4
+99
+79
+4c
+f3
 09
-67
-f1
-8a
-73
-70
-8a
-76
-2a
-70
-89
-02
-04
-20
-20
-00
-7f
-20
-35
-80
-d4
-6f
-e2
-02
-0d
-20
-7a
-00
-00
+75
+9d
 37
-d9
-82
-00
-6f
-f0
-81
-36
+ae
+87
+8b
+7d
+29
+ba
+56
 1f
-e1
+f4
 7e
-f0
-68
-48
-82
-0d
-98
-41
-fe
-00
-1f
-e0
-ff
-fd
-67
-f0
-81
-36
-37
-d9
-82
-00
-6f
-f0
-81
-38
-1f
-e1
-7e
-07
-68
-48
-82
-0e
-18
-49
-84
-00
-98
-41
-fe
-00
-67
-f0
-81
-38
-37
-d9
-82
-00
-6f
-f0
-8a
-cb
-1f
-e1
-7e
-f0
-68
-48
-82
-0f
-60
-48
-c1
-5b
-98
-41
-fe
-00
-67
-f0
-8a
-cb
-6f
-e0
-82
-10
-67
-e0
-c1
-5c
-2f
-ef
-fe
-03
-6f
-f0
-8a
-06
-79
-20
-fe
-07
-67
-f0
-8a
-06
-6f
-e0
-82
-10
-1f
-e1
-04
-07
-18
-52
-04
-00
-18
-43
-84
-00
-60
-48
-c4
-38
-6f
-f0
-8a
-02
-1f
-e1
-7e
-1f
-98
-41
-fe
-00
-67
-f0
-8a
-02
-20
-60
-00
-00
-6f
-e1
-41
-5b
-20
-7a
-00
-00
-67
-e1
-02
-0f
-20
-20
-00
-be
-20
-40
-68
-6f
-20
-40
-21
-ba
-18
-00
-2a
-08
-18
-00
-2a
-00
-58
-0a
-aa
-da
-67
-f1
-8a
-0f
-70
-8a
-25
-40
-70
-8a
-26
-10
-20
-00
-00
-3c
-70
-8a
-01
-fb
-70
-8a
-25
-ff
-70
-8a
-26
-30
-70
-8a
-16
-fe
-20
-20
-21
-b4
-6f
-e0
-c7
-93
-24
-7a
-00
-00
-20
-40
-00
-ea
-20
-20
-60
-fc
-6f
-e0
-c6
-55
-c1
-7f
-80
-00
-20
-20
-5e
-78
-68
-48
-c6
-01
-6f
-e0
-c6
-21
-98
-46
-7c
-00
-24
-21
-00
-f2
-20
-20
-36
-81
-6f
-e2
-45
-8f
-68
-4a
-45
-e4
-98
-46
-7c
-00
-20
-22
-b2
-22
-20
-40
-02
-87
-20
-20
-36
-9b
-58
-0a
-aa
-7e
-67
-f1
-8a
-0f
-20
-00
-00
-3c
-70
-8a
-25
-00
-70
-8a
-26
-0d
-70
-8a
-16
-f6
-20
-20
-22
-03
-6f
-e0
-c1
-41
-c0
-03
-22
-25
-c0
-05
-01
-05
-c0
-4f
-01
-0e
-c0
-55
-01
-0a
-20
-20
-22
-0e
-70
-8a
-14
-25
-58
-a9
-3f
-3f
-67
-f1
-8a
-60
-70
-8a
-63
-1f
-20
-60
-00
-00
-70
-8a
-14
-17
-6f
-e1
-ca
-08
-67
-f1
-8a
-60
-20
-20
-22
-1a
-70
-8a
-14
-17
-58
-25
-03
-00
-67
-f1
-8a
-60
-20
-20
-22
-1a
-20
-75
-80
-00
-20
-40
-21
-60
-d8
-40
-00
-27
-20
-40
-21
-6f
-20
-40
-21
-a6
-70
-8a
-25
-7f
-70
-8a
-30
-1a
-70
-8a
-31
-78
-70
-8a
-8f
-b2
-70
-8a
-c2
-00
-70
-8a
-c3
-00
-d8
-e0
-00
-06
-20
-40
-01
-2f
-2a
-2f
-fe
-0d
-20
-40
-21
-1d
-2a
-4f
-fe
-0d
-20
-40
-21
-1e
-d8
-e0
-00
-05
-20
-40
-21
-1c
-20
-40
-21
-1e
-20
-40
-01
-2f
-d8
-a0
-8a
-c2
-1a
-31
-fe
-00
-20
-40
-21
-17
-1a
-51
-fe
-00
-20
-40
-21
-17
-18
-e0
-8f
-ff
-20
-21
-01
-24
-20
-20
-21
-4f
-20
-00
-00
-3c
-58
-00
-0f
-00
-67
-f1
-09
-82
-58
-00
-0f
-f0
-67
-f1
-09
-84
-70
-89
-81
-09
-70
-89
-81
-03
-70
-89
-80
-06
-20
-00
-00
-3c
-da
-20
-00
-00
-da
-40
-00
-00
-df
-20
-00
-10
-d8
-c0
-0f
-00
-20
-20
-21
-2d
-20
-75
-80
-00
-20
-20
-22
-72
-20
-60
-00
-00
-20
-75
-80
-00
-70
-8a
-07
-77
-70
-8a
-08
-c9
-70
-8a
-0b
-01
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
-b8
-20
-40
-01
-68
-70
-8a
-08
-c1
-6a
-40
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-58
-6f
-e0
-c4
-19
-67
-e0
-c4
-33
-62
-40
-c4
-19
-20
-60
-00
-00
-20
-40
-01
-5e
-6f
-f0
-8a
-09
-79
-3f
-fe
-07
-67
-f0
-8a
-09
-70
-8a
-07
-77
-70
-8a
-08
-c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
-b8
-20
-40
-01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
-7e
-01
-67
-f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
-6f
-f0
-81
-29
-c3
-02
-81
-69
-68
-59
-01
-64
-60
-49
-44
-0a
-70
-80
-cc
-00
-20
-60
-00
-00
-70
-8a
-82
-11
-70
-8a
-8d
-12
-70
-8a
-8e
-0a
-6f
-e0
-c0
-99
-c0
-08
-01
-88
-58
-00
-57
-62
-67
-f1
-09
-07
-70
-89
-01
-03
-70
-89
-30
-03
-c6
-16
-80
-00
-70
-89
-01
-01
-70
-8a
-82
-07
-70
-8a
-8d
-44
-70
-8a
-8e
-0a
-6f
-e0
-c0
-99
-c0
-08
-01
-85
-58
-00
-2b
-b1
-67
-f1
-09
-07
-c6
-97
-80
-00
-70
-89
-30
-24
-70
-89
-01
-05
-20
-60
-00
-00
-58
-00
-41
-89
-67
-f1
-09
-07
-20
-20
-01
-81
-58
-00
-83
-12
-67
-f1
-09
-07
-20
-20
-01
-76
-6f
-e0
-cc
-02
-da
-60
-01
-00
-9a
-60
-fe
-00
-20
-60
-00
-00
-20
-20
-01
-af
-20
-40
-01
-92
-20
-20
-25
-63
-6f
-e0
-cc
-03
-20
-7a
-00
-00
-6f
-e0
-cc
-04
-24
-7a
-00
-00
-68
-48
-cc
-03
-6f
-e0
-cc
-02
-98
-46
-7c
-00
-24
-41
-01
-8b
-98
-46
-7e
-00
-1f
-e6
-7c
-64
-20
-21
-01
-a4
-6f
-e0
-cc
-05
-1f
-e6
-7c
-14
-24
-41
-01
-a2
-70
-4c
-04
-01
-20
-60
-00
-00
-70
-4c
-06
-01
-20
-20
-43
-1f
-68
-48
-81
-7f
-6f
-e0
-80
-4c
-1f
-e3
-7e
-00
-98
-42
-fe
-00
-2f
-ef
-fe
-02
-58
-00
-00
-00
-68
-48
-cc
-05
-79
-20
-fe
-00
-98
-40
-84
-00
-60
-48
-cc
-05
-20
-60
-00
-00
-6f
-e0
-80
-05
-1f
-e0
-fe
-01
-67
-e0
-80
-05
-24
-36
-81
-b6
-6f
-e0
-cc
-02
-1f
-e0
-fe
-01
-67
-e0
-cc
-02
-6f
-e0
-81
-68
-c3
-81
-80
-00
-79
-20
-7e
-03
-67
-e0
-81
-68
-6f
-e1
-42
-f5
-67
-e1
-01
-96
-58
-00
-00
-00
-67
-e2
-43
-1d
-20
-60
-00
-00
-20
-40
-28
-1c
-6a
-20
-80
-4d
-1a
-20
+34
+a3
+03
+a7
+03
+11
+cb
 a3
+35
+0d
+4e
 fc
-24
-21
-26
-fa
-20
-20
+65
 26
-8e
-09
-80
-00
-18
-1f
-ef
-7e
-00
-1f
-f1
-7e
-00
-e7
-e1
-80
-05
-78
-28
-7c
+7d
+f5
+d1
+2a
+39
+e6
+4a
+66
+c1
+7b
+f0
+aa
+92
+a6
+3c
+b9
+ca
+68
+9c
+8a
 00
+f7
+f4
+12
+4a
+62
 20
-40
+f9
+63
+62
+08
+b5
+ee
+dd
+d0
+bb
+29
+82
+21
+df
+4c
+2b
+51
+fd
 27
-0d
-20
-23
-26
-f6
-c5
-99
-26
-af
-6f
-e0
-80
-4d
-20
-3a
-26
-af
+62
+48
+e6
+61
+52
 1f
-e0
-ff
-fc
-67
-e0
-80
-4d
-20
-40
-72
-cb
-6f
-f0
-81
-08
+38
+26
+87
+76
+5a
+ab
+69
+46
+ec
+b4
+ac
+13
+1c
+83
+4b
+10
+e6
+47
 c3
+bc
+0a
+92
+ee
+6b
+94
+b2
+44
+04
+ab
+4b
+ed
+7d
+7f
+4c
+cd
+6a
+17
+ad
+4a
+cf
+45
+4f
+f3
+36
+89
+87
+3b
+b8
+40
+78
+0d
+f8
+37
+25
+5b
 03
-a6
-fa
-18
-00
+e8
+e8
+fb
+ea
+c9
+b5
+49
 70
-0c
-65
-e2
-01
-54
-20
-20
-26
 af
-6f
+4c
+b2
+d8
+0c
+2b
+49
 e0
-c3
-34
+7d
 c1
-00
-00
-00
-c0
-01
+f3
+ac
+46
+54
+61
+2f
+f1
+fa
+cb
+10
+c7
+ae
+d9
+df
+1e
+1a
+06
+5c
+e4
+22
 b0
-4a
-20
-20
-28
-e1
-20
-40
-21
-52
-70
-89
-00
-00
-79
-3f
-80
-30
-20
-20
-2a
-e3
-79
+e0
+fd
+5c
+f3
+6e
+94
+dc
+12
+7c
+73
+47
+51
+15
 3f
-80
-30
-20
-20
 2a
-f6
-ef
-e1
-00
-06
-c0
-02
-01
-e3
-20
-20
-28
-eb
-ef
-e1
-80
-06
-67
-e1
-c3
+e8
+2e
+a4
+e4
+d6
+d5
 97
-c0
+9b
+7f
+2e
+db
+11
+cd
+f6
+9a
+6e
+8e
+86
+4f
+7f
+a2
+d2
+a5
+da
+4c
+57
+81
+c6
+8f
+d4
+ea
+41
+ab
+e4
+7f
+b0
+7a
+35
+e7
+8e
+9c
+17
+fc
+46
+33
+44
+29
+3b
+c5
+57
+52
+c7
+bc
+99
+f7
+24
+bb
+df
+e6
+a8
+14
+af
+ea
+70
+b5
+fc
+b3
+da
+a7
+72
+73
+3d
+8a
+bb
+93
+db
+f1
 05
-01
-e8
-c0
-09
-01
+c7
+16
+2f
+6a
+6d
+c7
+43
+f6
+b5
+33
+b1
+5c
 f7
-20
-20
-2b
-96
-6f
-e4
-47
-13
-c3
-1d
+70
+27
+fc
+75
+ba
+e9
 ad
-19
+b4
+e4
 20
-40
-2d
-c7
-68
-49
-43
-98
-6f
-e0
-c3
-21
-c2
-81
+16
+78
+14
+f7
+32
+66
+39
+3e
+6c
+25
 81
-f2
-6f
-e1
-43
-98
+9c
+e2
+25
+a3
+9d
+33
+e6
+3c
+31
 c0
-18
-2e
-03
-68
-49
-43
-98
-20
-20
-2d
-1d
-6f
-e1
-43
+f5
+74
+5d
+d5
+06
 32
-98
-46
-7c
-00
-24
-22
-81
-ee
-24
-34
-01
-ee
-20
-20
-2d
-46
-18
-c2
-22
-00
-6f
-e1
-43
+73
+92
+a3
+05
+5f
+f5
+b1
+3b
+38
+94
+30
 35
-1f
-e0
-a5
-fd
-20
-40
-29
-29
-6f
-e0
-c7
-8f
-c0
-7f
-ad
-ac
-6f
-e0
+25
+8d
+ab
+5f
+1b
+3c
+da
+62
+bd
+75
+28
+d2
+b5
+67
+c4
+0c
+ef
+4a
+e7
+ec
+3c
+96
+a8
+1c
+c6
+81
+57
+4f
+53
+b2
+91
+ba
 c7
-95
-20
-3a
-2d
-ac
-6f
-e0
-c8
-43
-c2
-80
-ad
+8a
+2c
+d2
+b0
+30
+06
 ac
+29
+02
+6a
+22
+72
+61
+b5
+65
 58
-00
-00
+fc
+e4
+bf
+42
+c2
+91
+b8
+c1
+36
+6e
 1a
-68
+2b
 49
-43
-98
-98
-46
-7c
-00
-24
-22
-ad
-ac
-20
-20
-2d
-46
-20
-40
-2a
-28
-24
-7a
-00
-00
-6f
+86
+eb
+fe
+44
+c5
+07
+e3
+55
+07
+6e
+03
+fc
+a9
+58
+6c
+d6
+73
+23
+f3
+14
+d1
+85
+8b
+c4
+19
+ba
+b2
+b6
+97
 e0
-c7
-8f
-c0
-7f
+63
 82
-11
-6f
-e0
-c8
-43
-1f
-e1
-7e
+fc
+1a
+4c
+95
+d9
+ae
+3f
+a6
+e3
 03
+b9
+83
+96
+e9
+1d
+75
+b9
+cf
+69
+cd
+cb
+1c
 c1
-81
-80
-00
-6f
-e0
-cc
-04
-20
-7a
-00
-00
-6f
+9c
+97
+34
+fa
 e0
-cc
-06
-24
-7a
-00
+79
 00
-6f
-e0
-c9
-56
-20
-5a
-5a
-71
-6f
-e4
-47
-13
-c2
-80
-db
-5b
-c2
-80
-5b
-5b
-c2
-82
-db
-5b
-c2
-83
-5b
-5b
-20
-40
-56
-01
-20
-40
-5a
-b2
-24
+b6
+29
+77
 74
-00
-00
-20
-40
+f0
 5a
-bc
-20
-40
+01
+5e
+41
+22
+56
+a1
+e3
+a1
+31
+35
 04
-9f
-20
-20
-5b
+01
+68
+a6
+58
+44
+f9
+cd
+2c
+07
+bd
+0b
+a6
+95
+85
+fa
+8a
+a6
+93
+46
+e5
+a4
+48
+0d
+d8
+fe
+ad
+e8
+27
+5f
+0e
+cb
+3f
+69
+81
+73
+2e
+4d
+53
+cf
+d8
+be
+1e
 37
-6f
-e1
-43
-e9
-20
-40
-7d
-79
-6f
-e2
-40
+dd
+59
+19
 ad
-98
-40
-fe
-00
+d7
+91
+2c
+d2
+6d
+5e
+d9
+9a
+06
+04
+99
 67
+2a
+c8
+6e
+d5
+97
+73
+5b
+73
+2e
+3e
+5d
+29
+37
+22
+87
+b0
+01
+e8
+5d
+5d
+76
+65
+2c
+2f
+64
+81
+da
+33
+6c
+05
+84
 e2
-40
-ad
-20
-40
-02
-25
-20
-20
-24
 25
-60
-04
-40
-e7
-d8
-c0
+aa
+30
+41
+f3
+85
+38
+93
+9b
+32
+2b
+6f
+36
+5e
+f4
+49
+b9
 80
-70
-d8
-a0
-40
-cc
-20
-40
-7c
-8f
+6d
+63
+a5
+02
+e5
+cf
+c5
 d8
-c0
-80
-d4
-20
-40
-7c
-89
 6f
-f0
-80
-80
-67
-e0
+66
+58
+aa
+95
+06
+0d
+bb
+37
 c0
-ef
-18
-42
-24
-00
-df
-20
-00
-0c
-da
-20
-00
-16
-da
-60
-81
-4d
+c6
+e1
+33
+0f
+63
+c8
+74
+a7
+83
+9c
+c9
+70
+6a
+4f
+4f
+61
+ff
+dd
+eb
+33
+54
+a7
+1a
+76
+e3
+0b
+63
+e6
+57
+cd
+67
+0f
+43
+22
+9d
+c3
+45
+e7
+f7
+ee
+22
+83
+96
+f5
+de
+e5
+97
+48
+3e
+93
+b9
+e7
+3f
+57
+fd
+3a
+a4
+f3
+e6
+63
+a0
+1f
+6d
+fc
+dd
 37
-d9
-82
-00
+29
+62
 ef
-e0
-80
-11
-e8
-40
+de
+3b
+77
 80
-13
-98
-46
-7c
-00
-20
-22
-82
-38
-e7
-e0
+dd
+29
+08
+74
+c0
+b2
+d3
+a3
+dd
+10
+dd
+83
+42
+89
+a6
+a6
+16
+74
+ea
 80
-13
-37
-d9
-82
-00
-1a
-20
+5d
+50
+be
+d3
+2d
+75
+ff
+c5
+96
+2b
+33
+18
+ae
+fe
+23
+b9
+07
+42
+c5
+4d
 a2
-01
-1a
+89
+50
+a5
+2c
 60
+2b
+cd
+30
+b9
+eb
+f9
+9f
+2e
+99
+5c
+38
+01
+27
+46
+3b
+86
+e3
+51
+3b
 a6
+74
+ef
+b2
+fc
 01
-c2
-00
+44
+72
+9b
+d5
+58
+23
+56
+77
+5a
+c7
+e4
+08
+5f
+10
+a1
 02
-32
-1a
+52
+a2
+db
+ce
+91
+36
+7e
+95
+05
+56
+bd
+db
+a9
+99
+1b
+d3
 42
-04
-00
-20
-60
-00
-00
-20
-40
-6b
-3a
-20
-40
-6b
-75
-20
-20
-6b
-38
-6f
-e1
+7f
+8d
+d6
+15
 45
-e0
-d8
-40
-01
-f8
-98
-41
-7e
-00
-20
-3a
-02
-48
-6f
-e1
+b8
+b4
+fa
+95
+21
+f1
 45
-e0
-1f
-e0
-fe
-01
-67
-e1
+66
+4a
+f1
+90
+d5
+b9
+34
+5e
+9e
+84
+ac
+86
+89
 45
-e0
-20
-60
-00
-00
-20
-40
-35
-7f
-20
-40
-36
+1d
+80
+37
+bd
+4d
+18
+3f
 51
-24
-2c
-35
-86
-24
+5d
+25
+70
+8d
+83
+21
+1c
+8c
+a8
+e6
+d8
+a2
+36
+ba
+10
+91
+67
+88
+87
+ce
+44
+39
+09
+f7
+a1
+2a
+a5
+b1
+af
+fb
+9c
+91
+6e
 37
-b5
-86
+eb
+e4
+6d
+ef
+30
+64
+c6
+25
+2d
+ae
+62
+53
+01
+62
+80
+15
+65
+62
+af
+21
+55
 20
-40
-36
+15
+77
+53
+05
+a5
+90
+79
+1b
+7b
+d1
+87
+21
+7e
+ba
+ff
+26
+f5
+13
+9d
 6e
-6f
-e0
-c5
+95
+ca
+85
+9a
+c2
+2e
+75
+97
+ab
+f1
+2f
+70
+fe
+74
+d0
+e6
+bf
+1c
+ea
+f6
+b3
+b8
+f3
+61
+7a
+95
+7b
+eb
+4d
+65
 7d
-20
-3a
-02
-57
-6f
-e2
-45
-cc
-68
-4a
-45
+b2
+9d
+2e
+64
+e5
+1d
+0b
+ba
+db
+c8
+26
+1d
+48
+16
+95
+ae
+4d
+c2
 8f
-98
-46
-7c
-00
-20
-22
-82
 54
-20
-20
+ca
+2d
 35
-6e
-6f
-e4
-47
-13
-c2
-98
-32
+09
+53
+33
+55
+1e
 91
-20
-20
-35
-49
-6f
+f0
+0a
+b0
+6e
+f4
+04
+29
+9b
+e1
+b2
+63
+b7
+f9
+7b
+c3
 e2
-45
-5f
-20
-7a
-00
-00
-20
-20
-02
-4f
-20
-40
-54
-3b
-20
-40
-02
-5d
 20
+31
+5c
+a7
+9d
+11
+8c
+44
+16
 20
+30
 54
-4c
+8a
+d3
+4f
+69
+4d
+6f
+66
+24
+d8
+d8
+75
+c7
+ef
+78
+91
+66
+72
+8f
+18
+d9
 58
-00
-4a
+0d
+c2
+27
+c0
+39
+6a
+61
+5a
+37
+52
+9f
+85
+ca
+13
+9e
+39
+9b
+c4
+f2
+85
+79
+92
+30
+70
+b8
+d4
+46
+f9
+ec
+e3
+14
+c4
+c7
+e3
+40
+6a
+17
+c7
+e5
+5b
+32
+4e
+56
+95
+4f
+59
+d0
+d6
 29
-67
-e1
-43
-3f
-58
-00
-00
-20
-67
-e1
-43
-41
-20
+bb
+ad
+14
+c6
+2b
+9e
+f7
 60
-00
-00
-6f
-e0
-c4
-37
+88
+f8
+3e
 24
-7a
-00
-00
+24
+36
+78
+d3
+32
+f7
+5e
+4d
+01
+b3
+39
+ac
+c6
+8b
+6b
+8a
+b8
+bd
+55
+6f
+02
+a4
+68
+e6
+59
+d9
+ad
+bb
+97
 6f
+05
+b3
+ff
+29
+c2
+83
+fc
+eb
+05
+58
+03
+40
 e1
-44
-e9
-c3
-85
-80
-00
-6a
 21
-45
+3c
+5c
+d2
+2c
+49
+da
+79
+d4
+44
+17
+26
 f0
-20
-40
+11
+ac
+d9
+3b
+7f
+9d
 35
-b4
-60
-48
-c6
-24
-6f
-e0
-c6
-29
-c5
-13
+8a
+82
+bd
+87
+a4
 02
-6c
-6f
-e0
-c6
-2c
-98
-46
-7c
 00
-24
-21
-02
-86
-6f
-e0
-c6
-26
-1f
-e6
+3a
+79
+59
+4c
+db
+8f
+25
+d0
+4f
+11
+a4
+82
+e4
+af
+ef
+2e
+9a
+d1
+7b
+61
+28
+99
+ce
+4a
+5f
+84
+31
+94
+65
+51
+d3
+da
+f7
+25
+6d
+a7
+62
+88
+22
+fd
 7c
-02
-24
-21
-02
-74
-6f
+c3
+bd
+e1
+79
+1a
+cc
+0d
+57
+ef
+54
+9a
 e0
-c6
+bd
+71
+74
+fc
+0f
+a4
+f8
+45
+dc
+67
+cb
+f1
+a2
+43
+36
+cd
+5d
+49
+ad
+c1
+a5
+b5
+7c
+87
+13
+91
+71
+0f
+f0
+ab
+69
+7f
+b0
+11
+32
+09
+95
+b8
+dd
+d3
 26
-c0
-00
-02
+b2
 87
+31
+b8
+ce
+9d
+80
+ef
+93
+bf
+fb
+1a
+4d
+c7
+cd
+e2
+eb
+a6
+ec
+52
+a6
+52
+a5
+59
+3c
+23
+d1
+1f
+33
+b1
+10
+f1
+fd
+49
+84
+a1
+fd
+04
+bd
+14
+e8
 20
-60
-00
-00
-6f
-e0
+11
+59
+4c
 c6
-26
-68
-48
+09
+53
+5b
+fd
+5e
+46
+6e
+d3
+03
+c0
+85
+58
+98
+04
+31
+95
+41
+0d
+7b
+bd
+28
+be
+e1
+b6
+9f
+bb
+f9
+98
+33
+23
+3e
+4f
+3b
+c8
+d8
+28
+cd
+59
+27
+8c
+29
+ee
+77
 c6
+fb
+5c
+ae
 27
-98
-46
-7c
-00
-24
+a0
 62
-80
+bb
+f8
+1d
+d8
+14
 00
-70
-46
+fc
+fc
+8e
+8b
+a4
+77
+e5
+5b
+7f
+5c
 26
-00
-68
+8f
 48
-c6
-24
-6f
-e0
-c6
-28
-c5
-13
-02
-7d
-6f
-e0
-c6
-2b
-98
-46
-7c
-00
-24
-61
-00
-00
-6f
+11
+cb
+9d
 e0
-c6
+1d
+d5
+ed
+cd
+86
+bd
 25
-c0
-00
-37
+7e
+d1
+76
+ad
+cb
+57
+9e
+62
+32
+ec
+3d
+40
+85
+fa
+18
+bd
+a7
+79
+f1
 15
-1f
-e0
-ff
-ff
-67
-e0
-c6
-25
-c0
-01
-02
+7c
+95
+e8
+5f
+80
+a8
+4a
+ae
+d2
+04
+ea
+90
+39
+12
+75
+bb
+70
+0e
+3d
+82
 8f
-c0
-00
-b7
-0b
-20
-20
-37
-15
+f1
 70
-46
-26
-00
+ea
+41
+91
+3b
+20
+33
+07
+f0
+dc
+4f
+c1
+50
+83
+b8
+4d
+61
+02
+99
+44
+aa
+74
+01
+fb
+db
+c3
+9f
+0f
+d5
+63
+29
+84
+7c
+a9
+b7
+7e
+fa
+6e
+05
+d5
+30
+59
+49
+4a
+f0
+ec
+8d
 6f
-e0
-c6
+5d
+4a
+3a
+ff
+0b
+1c
+76
+0d
+22
+b5
+d2
+55
+7e
+4c
+58
+ce
+59
+f4
+30
+13
+29
+88
+42
+12
+24
+9c
+f1
+a2
+a9
+5f
+bb
+9d
+68
+16
+eb
+6a
+7e
 25
-c0
-01
+a5
+49
+ad
+ad
+65
+89
+a9
+25
+03
+04
+7c
+92
+85
+3b
+98
+c3
+0c
+e7
+4f
+14
+2f
+b7
+14
+9b
+27
+db
+f6
+62
+56
+f3
+60
+c4
+57
+d0
+e8
+8c
+52
 82
-8d
-1f
-e0
-fe
-01
-67
-e0
-c6
-25
-c0
-00
+28
+8c
+e3
 b7
-0b
-c0
+11
+54
+7d
 01
-02
-8f
-70
-41
-41
-05
-20
-60
-00
-00
-70
-41
+99
+3f
+0c
+e5
+8b
+fe
+c8
+d1
 41
-03
-20
-60
-00
-00
-58
-00
-62
-35
-67
-e1
-45
-f8
-58
-00
-02
-9b
-67
-e1
-45
-fa
-58
-00
-02
-b0
-67
-e1
-43
-e9
-20
-20
-53
-f3
-20
+c9
+c9
+fc
+4c
 80
-00
-00
-20
-55
-e0
-04
-20
-20
-20
-03
-20
-40
-36
-b4
-24
-74
-00
-00
-70
-47
-7c
-01
-20
-40
-36
-be
-70
-47
-72
-00
-20
-40
-62
+5b
+4b
+7d
+ed
+9a
 aa
-6f
-e0
+c4
+df
+cc
+81
 c7
-3f
-24
+f3
+8e
+d7
 5a
-54
+bb
+41
+d0
+5d
+0d
+8d
+59
+e6
+10
+78
+0f
+e4
 dc
-20
-40
-02
-a6
-6f
-e2
-45
-af
-20
-20
-36
-22
-6f
-e0
-c7
-3f
-24
-7a
-00
-00
+c0
+80
+73
+18
+01
+4c
+a1
+59
+9c
 68
-48
+8c
+5a
+cb
+ff
+a9
+31
+a5
+ef
+d3
+57
+2c
+2a
+63
+6b
+9b
+3c
+2b
+d2
+5e
+34
+b1
+55
+a7
+fe
+3e
+65
+93
+ca
+94
+fd
+fe
+ac
+69
+0f
+6c
+5d
+8d
+2b
+6c
+69
+de
+e1
+21
+57
+c3
+9c
+a3
+31
+df
+f8
+7f
 c6
-4a
-20
+c2
+58
+8c
+3c
+8a
+e2
+51
+5c
+a6
+d6
+81
+17
+b2
+3c
+db
+b1
+2a
+3d
+d4
+b7
+8e
+7a
+de
+bf
+d0
+bc
+72
+53
+88
+4e
+5e
+d8
+77
+65
 40
-6f
-0f
-68
-48
-c6
-4a
-20
+60
+cf
+d7
+29
+d1
 40
-6e
+c5
+81
+ed
+25
+cd
+f3
+73
+7b
+24
+b5
+7c
+1b
+d4
+ff
+4e
+a3
+f7
+66
+3c
+9f
+5b
+77
+b0
+41
 c6
+eb
+14
+cf
+cb
+ed
+ee
+b3
+ac
+47
+d4
+fa
+fe
+45
+c1
+91
+55
+7d
+25
+71
+82
+c4
+33
+f9
+a7
+f5
+d2
+9f
+3e
+90
+24
+23
+fd
+9f
 68
-48
-c6
-4b
-20
-40
-6f
+8d
+26
+d0
+b2
+da
+ba
+cb
+36
+41
+1f
+70
+3f
+c4
+93
+77
+c2
+a7
+7e
+9b
+14
 0f
-68
-48
+56
+d7
+cf
+b8
 c6
-4b
-20
-20
+0a
+4d
 6e
-c6
-20
-60
-00
-00
-20
-40
-04
-42
-6f
-e4
+99
+c5
+73
+74
+35
+b8
+bb
 47
-13
-c2
-89
-dd
-60
-c2
+64
+1b
+f5
+e7
 89
-5d
-6e
-c2
-8a
-02
-b7
-20
+cb
+81
+82
+51
+cb
 60
-00
-00
-20
-40
-02
+d5
+fa
+69
+dc
+7b
+7a
+f8
+6d
+16
+9f
+6c
+dc
+67
+12
+05
+e7
+4f
+d8
+46
+33
+b6
 c2
-20
-40
-5e
-43
-20
-40
-5d
-b4
-20
-40
-02
-d6
-20
-40
-02
-bf
-20
-40
-02
 c5
-20
-40
-02
-de
-20
-20
-5d
-aa
-6f
-e4
-47
-13
-c4
-15
-00
-00
-20
+9f
+f5
+29
+61
+96
+dd
+53
+d1
+31
+22
+51
+87
+d1
+48
+80
+ad
+8d
+23
+73
+26
+a1
+e2
+55
+86
+52
+85
+c7
+ba
+8e
+67
+44
+d0
+a3
+0c
+af
+a7
+a1
+6b
 40
-04
-aa
-6f
-e0
-c6
+9a
+1f
+80
+6d
+ac
 66
-67
-e0
+d6
 ca
-06
-20
-60
-00
-00
-6f
-e4
-47
-13
-c2
+d4
+d1
+96
+f6
+56
 9f
-5d
+3e
+9c
+bd
+ff
+d7
+88
+cb
+0e
+80
+0a
+36
+76
+33
+97
+de
+ef
+53
+86
+e8
+e0
+66
+9f
+9e
+af
+45
+6e
+f5
+fe
 d1
-20
-20
-5d
-cc
-6f
-e1
-46
+f3
+70
+9e
+f7
+12
+d7
+07
+a3
+c0
+16
+f1
+57
+53
+58
+88
+41
+92
+73
+78
+d2
+e8
+52
+1c
+a5
+30
+e9
+87
+74
+2a
+10
+19
+d1
+f0
+04
+db
+49
 8e
-d8
-40
-aa
 55
-98
-46
-7c
-00
-20
-22
-83
-4b
+aa
+ef
+91
+c1
+ff
+e0
+8e
+18
 60
-49
+01
+12
+6c
+d0
+ba
+02
 46
-8e
-20
-40
-5c
-9c
-6f
-e0
-c9
-a1
-67
-e0
+54
+1d
+bb
+18
+6d
+72
+28
 c6
-66
-20
-40
+c3
+dc
+ce
+27
+12
+e6
+2f
+50
+fb
+4b
 5c
-8c
-58
-00
-11
-22
-67
-e1
+cf
+64
+24
+99
+e7
+db
+41
 46
-95
+ce
+c3
+5f
+87
+57
+14
 6f
-e0
-ca
+b3
+da
+24
+90
+fb
+12
+b2
+9a
 06
-67
-e0
-c6
-66
-20
-60
-00
-00
-6f
-e0
 c6
-66
-1f
-e6
-7c
+c0
 00
-20
-22
+53
+48
+69
+3c
+8d
+98
+f8
+bf
+14
+30
+c2
+30
 82
-d3
-1f
+96
+c2
+9a
+e2
+cd
+3a
+48
+71
+b4
+86
+38
+7d
+be
+da
+6e
+21
+fa
+ce
+9f
+a1
+38
+f2
+5b
+58
+e5
+07
+66
+38
+62
+ec
+76
+77
+51
+2c
+44
+b7
+52
+d6
+b6
+a9
+5c
+ae
+c5
+e3
+b2
+fa
+2f
+11
+23
+d4
 e6
-7c
-04
-20
-22
-82
-dc
-20
-61
-00
-00
-70
-46
+2d
+69
 66
-00
-20
-60
-00
-00
-6f
-e0
-c6
+9f
+25
+35
+e1
+aa
+58
+31
 66
-c1
-00
-00
-00
-6a
+52
+7c
+c7
+1b
+3f
+fd
+5e
+2d
+2a
 41
-49
-fe
-1a
+95
+ba
+31
+c7
+02
+35
+32
+4a
+08
+0b
 42
-26
-00
-20
-40
-5e
-3d
-6f
-e1
-49
+c8
+35
+6d
+e9
+14
+07
+e5
+fe
 e0
-20
-3a
-02
-ec
+6e
+36
+88
+73
+f7
+d2
+61
+8f
+82
 67
-e1
-49
-de
-1a
-60
-a6
-02
-6f
-e1
-4a
-00
-9a
-66
-7c
-00
-24
-21
-02
+7b
+52
+6b
+e4
+4e
 ec
-1a
-62
-24
-00
+58
+0f
+07
+89
+95
+79
+db
+3b
 20
+7e
+5a
+25
+9a
+bf
+04
+57
 20
-02
-e2
-6f
+c2
+f5
+58
+c1
 e1
-49
+a5
+7a
+2c
+13
+29
+92
+29
+1f
+e3
+aa
+12
+c8
+c1
+fa
+1f
+fa
+9d
 de
-67
-e1
+5b
+8b
+87
+9e
+40
+6a
+32
+6c
+17
+92
+ae
+ff
+ea
+0d
+32
+30
+26
+c9
+a2
+d5
+80
+ae
+42
+57
+97
+65
+85
+0a
+ae
+9c
+41
+f5
+12
+5b
+71
+c1
+87
+1c
+cc
+d7
+6b
+c1
+cb
+44
 46
-95
-20
-60
-00
-00
+a9
+2f
+e9
+72
+4d
+65
+02
+c5
+7c
+cf
+bf
+fd
+30
+2a
+a3
+99
 6f
-e4
-47
-13
-c2
-89
-dc
-b1
-c2
+e9
+ce
+cf
+a7
+15
+0b
+c3
+69
 89
-5c
-b9
-c2
-8a
-02
-f4
-20
+4a
+b7
+a3
+7e
+8a
+7c
+bd
+ed
+2a
+ce
+43
+86
+1d
+69
+85
+a4
+50
+51
+5e
+ee
+08
+2a
+b5
+51
 60
-00
-00
-20
-40
-02
-f7
-20
-40
 02
-fc
-20
-20
 5c
-c1
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
-00
-83
-23
-c0
-01
-03
-37
-20
-60
-00
-00
-6a
-41
 49
-e2
-1a
-42
-26
-00
-20
-40
-5d
-c0
-6f
+48
+27
+d3
+0e
+29
+23
+a4
+72
+c5
+27
+9f
+78
 e0
-c9
-a1
-20
-3a
-03
-08
+9c
+a5
+fe
+54
+3f
+95
+94
+bf
+33
+18
+79
+2e
 67
-e0
-c9
-a0
-1a
-60
-a6
-01
-6f
-e1
-49
-e4
-9a
-66
-7c
-00
-24
-61
 00
-00
-1a
+67
+f3
+7d
+e9
+af
+91
+5c
+89
+75
+59
+58
+c0
+5b
+04
+f0
+dd
 62
-24
-00
-20
-20
-02
-fe
-6f
-e0
-c9
-a0
-1f
+a9
+5e
 e1
+50
+26
+d3
+28
+a5
+b5
+a0
+2e
+56
+aa
+ea
+af
+f3
+8e
+7d
+28
+bb
+1c
 7e
-f0
-20
-3a
-03
-12
-6f
-e0
-c6
-66
-20
-40
-03
-20
-67
-e0
-c9
-a2
-df
-20
-00
-01
+a6
+4c
+3f
+18
+fc
+22
+5f
+cf
 1a
-62
-24
-00
-da
-20
-49
-a2
-20
-20
-6b
-45
-68
-48
-c9
+aa
+26
+d0
+01
+b6
+69
+e3
+52
+47
+8c
 a0
-6f
-e0
-c6
-66
-20
-40
-03
-20
-98
-46
+8e
 7c
-00
-20
-62
-80
-00
+e5
+d9
+e9
+2d
+b3
+e3
+6f
 1f
-f2
-7e
-00
+2a
+31
+bd
+d0
+99
+b9
+a9
+21
+d5
+30
+54
+c7
+39
+e6
+b6
+6a
+43
+c3
+03
+55
 98
+f5
+38
+62
+5a
+b9
+18
+4f
+5c
+1e
+2e
+e7
+7d
+4a
+cb
+2e
+0b
+db
+8d
+9b
+47
+66
+23
+38
+5e
+21
+50
+d3
+35
+5f
+52
+1d
+d8
+9d
+94
+7d
+99
+8e
+af
+eb
+ea
+c7
+74
+6e
+db
+a0
+c5
+e3
+cc
+0d
+6a
 40
-fe
-00
-67
-e0
+ce
+cf
 c9
-a2
-1a
-62
-7e
-00
-68
-49
-49
-e2
-98
-46
-7c
-00
-20
-22
-83
-0e
-1a
-60
-a7
-ff
-20
-20
-03
-0e
-c1
-80
-00
-00
-1f
-e0
-fe
-04
-20
+ef
+7a
+79
+da
+e9
+35
+eb
+0a
+a4
+43
+01
+2d
+db
+b8
+50
+86
+97
+e7
+63
+18
+d6
+4f
+63
+53
+86
+70
+54
+9a
+1b
 60
-00
-00
-6a
-41
-49
-ee
-1a
+91
+02
 42
-26
-00
-20
-40
+97
+dc
 5d
-f3
-6f
-e3
-49
-b5
-20
+9c
+8e
+19
+2e
 3a
-03
-2f
-67
-e3
+ca
+73
+b2
+a0
+85
+45
+3c
+7a
+0c
+ee
+e7
+c1
+46
+1c
+3b
+99
+bf
+3b
+a6
+44
+46
+a3
+55
+9c
+e7
+13
+90
+19
+5b
+55
+b3
+04
 49
-af
-1a
-60
+ff
+d8
+cb
+33
+8a
 a6
+74
+52
+3e
+fb
+5a
+77
 06
-6f
-e1
-49
-f0
+98
+5b
+86
+78
+ea
+12
+c0
+37
+b2
+cf
+08
+ec
+e5
+09
+b3
+67
+77
+38
+28
+14
+02
+81
+86
+21
+42
+bb
+7b
 9a
-66
-7c
-00
-24
-61
-00
-00
-1a
-62
-24
-00
-20
-20
-03
-25
-6f
-e3
-49
-af
-68
-4b
-46
-6e
+1c
+06
+5b
+80
+2a
+6d
+85
+9c
+59
+f2
+0c
+5f
+b7
+cd
+30
+65
+0d
+4d
 98
-46
-7c
-00
-20
-62
-80
-00
-df
-20
-00
+28
+2d
+51
+8a
 06
-da
-20
-46
-6e
-1a
-62
-24
-00
-20
-20
-6b
-45
-6a
-41
-49
-f6
-1a
-42
-26
-00
-20
+f8
+c5
+64
+db
+76
+ed
+3b
+a0
 40
-5e
+3e
+6a
+37
+7b
+9d
+a3
+c8
+39
+bc
+15
+b6
+d8
+78
+7b
+88
+59
+73
+19
 17
-6f
-e3
+df
+60
+13
+a5
+79
+f3
+0b
+ad
+21
+30
+1d
+1b
+16
+a5
 49
-cd
-20
-3a
-03
 43
-67
+b6
+5b
+6f
+40
+cf
+29
+3e
+d7
+02
+f6
+e9
+5c
+d7
+13
+8b
+0d
+b8
+01
+db
+4d
+fe
+81
+44
+70
+35
+58
+2e
+5c
+34
+15
+63
+3f
+4f
 e3
-49
-c7
-1a
+2f
+99
+9c
+fc
+a2
+fe
+cb
+9c
 60
-a6
-06
-6f
-e1
-49
-f8
-9a
-66
-7c
-00
-24
-61
-00
-00
+eb
+ed
+73
+87
+58
+64
+fc
+b6
+57
+01
+87
+a9
+9e
+89
+64
+b7
+1c
+a2
+13
+ce
+99
+17
+ca
+4a
+f9
+7f
+6a
+c3
+7f
+ad
+72
 1a
-62
-24
-00
-20
-20
-03
-39
-6f
-e3
-49
-c7
-68
-4b
-46
-7b
+69
+f2
+70
+29
 98
-46
-7c
-00
-20
-62
+e4
+e1
+5f
+ef
+0e
+f5
+f4
+04
+5c
+78
+17
+98
+9e
+e6
+5b
+fe
+03
+cf
+9c
+81
+4f
 80
-00
-df
-20
-00
-06
-da
-20
+cc
+b4
+fc
+6f
+7d
+fc
 46
-7b
-1a
-62
-24
-00
-20
-20
+14
+8e
+68
+a5
+f1
+7a
+ee
+cb
+b3
+54
+93
+1f
+d1
+52
+02
+52
+f7
+65
+ad
+32
 6b
-45
-20
-40
-03
-84
-20
-40
-03
-9c
-20
-40
-03
-4f
-20
-20
+09
+78
+96
+a3
+f2
+49
+f4
+c5
+4c
+b9
+23
+3f
+a1
+ce
 5c
-90
-6f
-e4
-47
-13
+84
+ad
+91
 c4
 07
-80
-00
-6f
-e0
-c6
-90
-c0
-00
-5c
-94
-c0
-03
-03
-55
-20
-60
-00
-00
-70
-46
-90
-00
-20
-60
-00
+a1
+87
+17
+56
+1b
+23
+e5
+ca
+bd
+8e
+5b
+d8
+37
+89
+52
+7c
 00
-6f
-e4
-47
+23
+1c
+3c
+a7
 13
-c2
-89
+b9
+76
+9a
 dc
-b5
-c2
-8a
-03
-5b
-20
-60
-00
-00
-6f
-e4
-47
+3e
+04
+f1
+94
+2a
+08
+86
 13
-c4
-07
-80
-00
-6a
-41
-49
-fa
-1a
-42
-26
-00
-20
-40
+9e
+e5
+3f
+f9
+f9
+ba
+cf
+a3
+9b
+9a
+e5
+05
+f4
+06
 5e
-51
-6f
-e0
-c9
-d4
-20
-3a
-03
-69
+47
+28
+98
+a7
+b0
+39
+dd
+1b
+43
+96
+ee
+25
+ae
+0d
+04
+5d
+84
+d0
+b4
+62
+2d
+4b
+de
+5c
 67
-e0
-c9
-d3
-1a
-60
-a6
-01
-6f
-e1
-49
-fc
-9a
-66
-7c
-00
-24
-61
-00
-00
-1a
+28
+fb
+ee
 62
-24
-00
-20
-20
-03
+45
+28
 5f
-6f
-e0
+ac
+d1
+0f
+63
+d6
+06
+b7
+74
+dd
+47
 c9
-d3
+2d
+e3
 1f
-e1
-7e
-f0
-20
-3a
-03
-73
-6f
-e0
-c6
+fa
+44
+28
 90
-20
-40
-03
-81
-67
-e0
-c9
-d5
-df
-20
-00
-01
-1a
-62
-24
+de
+36
+b7
+7f
+08
+6d
+2e
+43
+28
 00
-da
+db
+28
 20
-49
+6e
+a2
+ba
+7d
 d5
-20
-20
-6b
-45
-68
-48
+06
+2a
+54
+b8
 c9
-d3
-6f
-e0
-c6
-90
-20
-40
-03
-81
-98
-46
-7c
-00
+3d
+97
+cd
+b1
+67
 20
-62
-80
-00
-1f
+d2
+6d
+33
+27
+9a
+9c
+7a
+da
+c5
+19
+71
 f2
-7e
-00
-98
-40
-fe
+4e
+ad
+da
+b0
+f4
+7b
+8f
+a8
+3e
 00
-67
-e0
-c9
-d5
 1a
-62
+58
+c6
+9d
+9f
+47
 7e
-00
-68
-49
+d8
+cb
+79
+91
+28
+f8
+12
+f4
+0e
+9b
+92
+e4
+bd
+eb
+e2
+5b
+81
+11
+b3
+1b
+51
+0e
+3a
+7d
+e9
 49
-fa
-98
-46
-7c
-00
-20
-22
-83
-6f
-1a
+8e
+88
+88
+c6
+69
+8f
+fe
+62
+ae
+38
+8e
+1e
+86
+de
+2e
+19
+c4
+0c
+61
+1e
+41
+d7
+82
+53
+b4
+82
+14
+f5
+2d
+d2
+50
+bc
+3e
+ec
+6e
+b4
+80
+dd
+3d
+6d
+82
+91
+13
+0a
+80
+f2
+c5
+6c
+ac
 60
-a7
-ff
-20
-20
+b8
+55
+6c
+4e
+a3
+1d
+bc
+71
+cf
+7b
+7b
+d8
+94
+ac
+ea
+0f
 03
-6f
-c1
-80
-00
-00
-1f
-e0
-fe
+67
 06
-20
-60
-00
-00
-6f
-e4
-47
-13
-c2
-9f
+39
+43
 03
+c2
+eb
+fd
+9e
+df
+3c
+aa
+28
+62
+81
+43
+5e
+1b
+74
+d5
+a9
+39
 8b
-6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
-00
-83
-8b
-c0
-01
-03
-92
-20
-60
-00
-00
-6f
+49
+f7
+1f
+1e
+04
+14
+34
+90
+e6
+52
+b0
+05
+38
+58
+10
+11
+19
+dc
+96
+3f
 e3
-46
-6e
-68
-4b
-46
-e6
-98
-46
-7c
-00
-24
-62
-80
-00
+fd
+a7
+6a
 6f
-e3
-42
+50
+25
+96
+ef
+d5
+f8
+1b
 db
-67
-e3
-46
-6e
-20
-60
-00
-00
-6f
-e3
-46
-6e
-68
-4b
-46
-e6
-98
-46
-7c
+3a
+a7
 00
-24
+1d
+02
+02
+8f
+35
+b5
+cc
+cb
+89
+4a
+95
+ab
+2e
+bf
+96
+64
+94
+4a
+d2
+fb
+58
+f8
+4e
+26
+db
+26
+57
 62
-80
-00
-6f
-e3
+7d
+f5
+dd
+35
+fd
+5c
+4f
+cd
+44
+f1
+70
+0a
+69
+91
+95
+85
+bd
+88
+8c
+23
+eb
+d8
+7d
+07
+f3
+25
+23
+fd
+87
+f4
+d9
+70
+0a
 42
-db
-1f
-e0
-ff
-00
-67
-e3
-46
+ea
+0d
+2c
+4a
+31
+bd
+b2
+64
+a3
+61
+e7
+af
 6e
-20
-60
-00
-00
-20
-40
-03
-9c
-20
-20
-5a
-9c
-6f
-e4
-47
-13
-c3
-0a
-5c
+c5
+56
+a0
+b4
+70
+e5
+46
+a0
+f2
+76
+63
+c1
 6f
+71
+11
+0e
+cf
 c2
-9f
-03
-a4
 6f
-e0
-c6
-66
-c1
-00
-00
-00
-c0
-00
-83
-a4
+c3
+cb
+a0
+e4
+7f
+7e
+7a
 c0
-01
-03
-a9
-20
-60
-00
+f1
+2a
+eb
+ef
+e0
+02
 00
-6f
-e3
-46
-68
-67
-e3
-41
-16
-6f
-e3
-46
-6e
-67
-e3
-42
-db
+cb
+2f
+a5
+f5
+86
+02
+4e
+fa
+86
+6a
+02
+d5
+ce
+11
+78
+ec
+bb
+08
+57
+8d
+a6
+86
+80
 20
-60
-00
-00
-6f
-e3
-46
-75
-67
-e3
-41
-16
-6f
-e3
-46
-7b
-67
+31
+7c
+a3
+bf
+94
+b2
+53
+59
+83
+f8
+bd
+cc
+74
+9b
+fc
+13
+e6
+a9
+d3
+0d
+28
+cf
+b4
+f4
+52
+29
+c5
+a7
+e5
+30
 e3
-42
-db
-20
-60
-00
-00
-6f
-e4
+2e
+37
+cf
+39
+1f
+51
+29
+25
+78
+3b
+d0
+2e
+c5
+78
+d9
+32
+85
 47
-13
+ad
 c4
-01
-00
-00
-c3
-0a
-5c
-43
-d8
+4a
+49
+81
+c0
+96
+a7
+84
+08
+5d
+3b
+dc
+60
+86
+22
+9b
+13
+51
+09
+d3
+8a
+6b
+e1
+2d
+8e
+f3
 e0
-00
-02
-20
-40
-5f
+8e
+76
+a2
+db
 04
-20
-40
-5c
-4a
-20
-40
+1e
+14
+d3
+f1
+a2
+a7
+e7
+86
+e6
+77
+de
+65
+a5
 03
-b6
-20
-20
-5c
-a3
-6f
-e0
-c6
-66
-c0
-00
+71
+9b
+61
+dd
+bc
+f0
+ce
 83
-ba
-c0
-01
-03
-bf
-20
-60
+8c
+0a
+5c
+fb
+2b
+b3
+eb
+02
+dc
+e9
+ae
+75
+9d
 00
+21
+d9
+d6
+9a
+c5
+27
+14
+1e
+48
+35
+ad
+bc
+80
+6c
+32
+c2
+17
+ea
+9e
+1d
+a5
+6a
+8f
 00
-6f
-e3
-01
-78
-67
-e3
-46
-68
-6f
-e3
-42
-db
-67
-e3
-46
+84
+aa
+35
 6e
-20
-60
-00
-00
-6f
-e3
+ff
+11
+2e
+39
+54
+09
+ab
+02
+79
 01
-78
-67
-e3
-46
+f9
+de
+e2
+57
+25
+2e
+58
+f8
+54
+39
+90
+d0
+12
+e4
+9f
+f5
+6b
+54
+af
+1c
+d2
+bc
+90
+d3
+cd
+e7
+57
+7c
+20
+8b
+1c
+f8
+d0
+fc
+0d
+fa
+dd
+f8
+8f
+4d
+83
+4c
+9b
+7c
+7e
+73
+1b
+79
+32
+c8
+3f
+13
+23
+85
+4e
+1e
+3b
+ba
+a5
+9f
+81
+9e
+26
+0e
+c7
+02
+a2
+a0
+5d
+da
+d8
 75
-6f
-e3
-42
-db
-67
-e3
-46
 7b
-20
-60
-00
-00
-20
-40
-03
-da
-20
-40
-61
-4d
-20
-40
-55
+15
+3f
+52
+c4
+ae
+7d
+e7
+2e
+f9
+dd
+78
+13
+d0
 3d
-20
-40
-61
+4a
+ea
+ca
+1c
+b1
+9a
+c8
+52
+c5
+35
 10
-20
+2a
+d6
+85
+04
 40
-61
+91
+ed
+bb
+06
+59
+76
+83
+6d
+5c
+d6
+92
+ca
+90
+69
+2a
+84
+c3
+44
+f2
 b1
-20
-40
-61
-1e
-20
-40
-32
+ca
+6e
+fb
+75
+29
+6c
+42
+6d
+b9
+51
+11
+50
+63
+a2
+1f
+70
+08
+66
+b3
+48
+c8
+69
+11
+ef
+a0
+94
 8e
-20
-40
-35
-31
-20
-40
-5f
-dd
-20
-40
-57
-2c
-20
-40
+1a
+cf
+7a
+d7
+b9
+1c
+c5
+ef
+0e
+14
+96
+ca
+d8
+36
 5b
+33
+c2
+c8
+41
+72
+6b
+37
+d4
 9b
-20
-40
-5b
-ab
-20
-40
-5b
-ce
-20
-40
-5b
+6c
+1a
+54
+90
+dc
+22
+ec
+00
+4a
 d3
-20
-40
-5b
-e1
-20
-40
-5b
-ee
-20
-40
-5b
-e4
-20
-40
-5b
-fb
-20
-40
-03
+9b
+f1
+74
+ca
+a3
+e8
+f3
+d8
+b0
+69
+9c
+09
+ef
+e2
+d4
+4f
+8a
+43
+c1
+77
+bc
+a2
+22
+92
 dd
-20
-40
-56
+23
+25
+29
+2b
+d0
+3f
+33
+96
+bf
+73
+9a
+45
 b6
-20
-40
-5c
-0e
-20
-20
-5c
-05
-da
-60
-4a
-05
-da
-40
-5a
+b2
+8c
+b7
 ef
+34
+17
+02
+a3
+a9
+bb
 20
-20
+d8
+ee
+bf
+2a
+82
+78
+e5
 42
-e0
-da
-60
+14
+63
+18
+76
+ab
+f6
+4f
+4c
+c6
+1e
+64
+7c
+92
+10
+99
+5b
+e5
+46
+33
+f1
+d4
+69
+2d
+bb
+ec
+df
+1d
+b4
+7c
+44
 47
-7e
-da
-40
-03
-e0
-20
-20
 42
+a8
+e6
 e0
-6f
-e0
-c9
-6b
-67
-e0
-c0
-c0
-70
-47
-7d
-03
-20
-60
-00
-00
+05
+45
+cb
 20
+cc
+23
+8f
+ee
+69
+1c
+7c
+b1
+61
+5b
+1f
 40
-59
-ed
-20
-20
-5c
 1b
-1a
-62
-7e
+d2
+1f
+5c
+11
+73
+d9
+dc
 00
-c0
-20
-03
-fb
-c0
+64
+95
+8a
+df
+d0
+35
+4a
+24
+bc
+bb
+08
+02
+29
+05
+27
+5b
+26
+2e
+7d
+50
+85
+77
+93
+aa
 0a
-84
-00
-c0
-19
+23
+87
+f3
+c2
+88
+c4
+a4
+ef
 03
-f2
-c0
-1e
-04
-1e
+09
+f8
+0e
+21
+94
+a0
 c0
+75
+a9
+ce
+3d
+61
+97
+ad
+27
+14
+b6
+38
+6f
+87
+70
+ab
+30
+be
+0c
+8c
+3f
+7f
+28
+62
+c9
+8b
+b3
+f3
+e4
+d1
+91
+d3
+f0
+0b
 1c
-84
-2f
-c0
-1d
-04
-32
-c0
-0a
-03
-ef
-20
-20
-5a
-c3
-58
-00
-00
-00
-67
-e2
-4c
-03
-20
-20
-5a
+1a
+92
+b8
+c4
+61
+26
+44
 d0
+65
+6c
+de
+95
+76
+aa
+b5
+af
+23
+e7
+6d
+e6
+77
+d7
+88
+3f
+4c
+72
+a1
+a7
+b6
+db
+db
+53
+39
+4a
+0f
+3e
+39
+4d
+36
+92
+85
+42
+29
+31
+43
+cb
+4d
+3f
+98
+f4
+28
+18
+f2
+bc
+41
+a2
+b3
+0c
+d9
+f0
+b4
 6f
-e0
-c7
-95
-c0
-00
+ab
+52
+61
+2b
+79
+71
+93
+7b
+b9
+d7
+3c
+0e
+dc
+b4
+1c
+12
+2e
 83
-f6
-70
-48
-44
-14
-20
-20
-03
-f8
-20
-40
-5a
-ef
-70
-48
-44
-05
-6f
-e0
+83
+61
+25
+19
 cc
-02
+cd
+f2
+4a
+e8
+1d
+46
+ad
 67
+3a
+ff
+21
 e0
-cc
-03
-20
-20
-5a
-f6
-6f
-e0
-ca
-04
-24
+d2
+d3
+34
+a8
+3a
+cb
+8a
+b2
+26
+5d
+0c
+d7
+11
 7a
-00
-00
-70
-4a
-04
-01
-70
-4a
-05
+8c
+57
 1e
-20
-60
-00
-00
-58
-00
-00
-00
-67
-e0
+a4
+ee
+c5
+45
+6b
 ca
+7d
+0c
+a4
+39
+fb
+24
 04
-67
-e0
-ca
-05
-58
-00
-00
-00
-67
-e1
-47
-c0
-70
+4d
+d7
+35
+84
+fd
+d2
+c3
+62
+c5
+cf
+4b
+51
+87
+e9
+3c
+35
+85
+7f
+a0
+66
 47
-94
-00
-d8
-40
-00
-06
-6f
+0e
+ef
+48
+16
+96
+9f
+26
+a4
+0d
 e4
-47
-13
-c2
-8d
-84
-0a
-d8
-40
-00
-07
-60
-49
-42
-d3
-60
-49
-42
+57
+ba
+27
+79
+db
+0e
+46
+b0
+c8
+aa
+f9
+3c
+48
+ef
+4a
+77
+55
+24
+6e
+7e
+c3
+8e
+f6
+e5
+97
+bd
+ef
+25
+29
+f1
+a1
+c7
+f9
+d1
+38
+58
+3e
+33
+ba
+de
+e3
+dc
+33
+7e
+f5
+2b
+b3
+df
+b4
+9f
+30
+c1
+55
+b3
+cd
+7b
+d0
+50
+92
+72
+53
+67
+19
+c0
+a1
 d5
-70
-47
 c2
-00
 70
-49
-56
+ff
+da
+48
+76
+1a
+11
+0f
+12
+7d
+cc
+5f
+e3
+85
+15
 00
-20
-40
-29
-cb
-20
-20
-04
-10
-20
-40
-5b
-7b
-6f
+5c
+fd
+86
+38
+2c
+c9
+96
+fd
+2f
+ec
+3f
+2e
+48
+22
+99
+51
+d0
+b4
+4e
+ad
+8f
+2e
+06
+5c
+8f
+62
+27
+f2
+49
+c0
+8b
+7e
+89
+51
+df
 e1
-43
+3b
+30
+20
+13
+3d
+ff
+b0
+15
+dc
+d7
+77
+26
+b0
+34
+bc
+89
+50
+af
 ef
-c2
-83
 84
-15
+87
+a8
+b6
+c4
+f8
+a0
+77
+71
+04
+93
+e5
+3e
+d1
+8d
+9d
+ec
+44
+30
+fd
+d4
+76
+0d
+ba
 c2
+ac
 80
-42
-fc
-20
-20
-5c
+19
+dc
+7c
+00
+f9
+b9
+08
+bd
+eb
+57
+0e
+60
+3b
+86
+52
+89
+4f
+57
+d9
+02
+d5
+04
+ee
+0b
+82
+75
+aa
+e8
+a7
+05
+9d
+de
+94
+fb
+a5
+95
+b5
+76
+1b
+b9
+6a
+ab
+72
+3d
+a4
+46
+0c
+b8
 1a
-6f
-e1
-43
-ef
-c2
-80
-42
+77
+5d
+61
+8c
+7c
+b0
+e8
+01
+a8
+49
+d1
+c3
+e2
+c0
+68
+52
+84
+ec
+55
+bd
+73
+5c
+63
+b4
+22
+09
+d1
+5e
+62
+32
+7a
+9e
+36
+59
+e6
+48
 fc
-6f
+2a
+e6
+25
+08
+d6
+16
+54
+9b
+d3
+4c
+0d
+10
+5c
+a7
+30
+60
+16
+84
+06
+54
+1d
+32
+32
+27
 e0
-c8
-43
-1f
-e1
-7e
-03
-20
+90
+1d
+84
+02
+28
 40
-5b
-21
-c0
-81
-d4
-a9
-6f
-e0
+f1
+2c
+99
 cc
-06
+79
+16
+0d
+eb
+c4
+c7
+23
+bd
+9f
+ee
+38
+89
+f0
+de
 24
-3a
-54
-a9
-20
-20
-54
-cd
-6f
-e2
-45
-8f
-67
-e2
-45
-e8
-67
-e2
-46
+21
+6e
+a0
+4b
+9f
+14
+3c
+a1
+0a
+08
+d0
+b8
+81
 91
-20
-40
+7d
+7b
+0d
+4e
+ce
 35
+7c
 5a
-20
-40
-5c
-0b
-20
-40
-61
-8e
-20
-40
-5a
-73
-70
-47
-7d
-00
-70
-45
-fc
-00
-70
-45
-e2
-00
-6f
-e2
-45
+a1
+a1
+c7
 e8
-68
-4a
-45
+75
+62
+c9
+29
+85
 e4
-98
-46
+ea
+f1
+aa
+5c
+e9
 7c
+0e
+af
+5f
+3b
+2c
+2c
+52
+26
+5b
+25
+7a
+ed
+1e
+05
+8b
+67
+89
+cc
+a0
+81
+79
+d0
+07
+01
+79
+e0
+ce
+31
+cc
+15
+77
+9d
+c2
 00
-20
-62
-80
-00
-20
-40
-60
-16
-20
-40
-04
-45
-20
-20
-60
+01
+28
+a3
+65
+72
+b7
+8b
+47
+13
+7e
+a6
+91
+3a
+47
+ed
+59
+bc
+88
+b1
+d8
+cc
+a0
+c8
+9d
+ad
 42
-20
-40
-60
-16
-20
-40
-04
-45
-20
-20
-60
-84
-20
-40
+77
+85
+e2
+3e
+2d
+b3
+93
+4c
+2a
+91
+b9
+76
+73
+1b
+63
+62
+07
+0c
 60
+ae
+97
+80
+0a
+4d
+c5
+bd
+3a
+01
+32
+62
 16
-20
-40
-04
-45
-6f
-e0
+36
+56
+66
+d5
+59
+df
+0b
+86
+58
+74
+0d
+9b
+64
 c8
-7a
-c1
-00
-80
-00
-6f
-e0
+e4
+ad
+6e
 c6
-00
-24
-3a
-5f
+5e
+d9
+a7
+78
+e6
+a6
+c7
+d1
+23
+b7
+f9
+35
+cf
+7d
+d0
+1b
+1e
+72
+aa
+77
+9e
+31
+98
+5c
+1f
+e4
+fe
+68
+05
 f2
-6f
-e0
+02
+da
+1c
+0f
+66
+89
+d8
+3e
+52
+48
 c5
-e2
-c0
 02
-04
-3b
-20
-20
-60
-55
-6f
-e4
-47
-13
-c3
-1f
+6b
+6a
+46
+37
+bd
+2a
 60
-59
-6f
-e0
-c7
-1b
-c0
-00
-e0
-59
-20
+de
+31
+c6
+5c
+a1
+83
+98
+fc
+9c
+39
+aa
 40
-60
-18
-70
-46
-66
-01
-20
-20
-54
-a0
-6f
-e0
-c1
-41
-67
+d9
+15
+cd
+d9
 e0
-ca
-07
+c9
+74
+56
+f2
+e3
 20
-60
-00
+8e
+30
+d2
+6c
+ce
+db
+36
+39
+d6
+35
+95
+3e
+30
+c9
+92
+c0
+91
+13
+4b
+ae
+df
+4f
+3f
+4a
+41
+8e
+ff
+2e
+cd
+6d
+d3
+a9
+41
+54
+54
 00
-6f
-e0
+7b
 ca
-07
-67
-e0
+47
+b2
+7d
+73
+d7
+ca
+6d
+e1
+fa
+b3
+94
+59
+d7
+33
+ee
+7f
+5d
+ae
+61
+d0
+a9
+98
+a0
+ac
+8e
+db
+25
+2d
+7d
+b3
+58
+af
+0d
+1c
+32
+17
+99
+86
+6e
+a5
+3c
+94
+f1
+b4
 c1
-41
-20
-60
-00
-00
-20
-40
-62
-0e
-20
-40
-78
-aa
-20
-40
+c2
+4c
+e4
+ea
+6e
+d7
+c7
+12
+5a
+37
+12
+65
+76
+3f
+b8
+12
+dc
+25
+13
+34
+69
+3b
+c8
+4e
+04
+95
+ba
+ec
+4a
+fe
+ef
 04
+5e
+44
+68
+65
+b4
+65
+ec
+27
+37
+ef
+6d
+88
+f3
+b6
 4c
-20
-20
+98
+a0
+37
+04
+5d
+bb
+1d
+5a
+85
+1f
+a4
+a0
+51
+50
 5e
-61
-6f
-e0
-c6
-49
-c1
-7f
-80
-00
+97
+10
+fe
+27
+2e
+55
+ce
+96
+02
+1c
+e3
+b8
+1d
 da
-20
-00
-00
-70
+88
+55
+5e
+7a
+66
+64
+8f
+09
 49
-77
+5c
+b2
+37
+ce
+9e
 05
-68
-48
-c6
-49
-20
-40
-04
-53
-20
-20
-56
-c1
-6f
-e4
-47
+0c
+19
+d0
+b3
+e2
+9e
 13
-c2
+0f
+38
+10
+31
+23
+ab
+a0
+6b
+53
+86
+87
+4c
 95
-d6
-de
-6f
-e0
-c9
-74
-1f
-e2
-26
+21
+c4
+7c
+ab
+d9
 00
-6f
-e0
-c6
-54
-c0
-7f
-84
-5a
-20
-20
-56
-ce
-6f
-e0
-c6
-49
-20
-40
-59
-46
-68
-48
-c6
-49
-20
-20
-04
-5e
-1a
+13
+19
+82
+b6
+81
+17
 62
-7e
-00
-67
-e0
-c9
-78
-1f
+4b
+f1
+03
+26
 e3
-fe
-00
-1f
-e2
-24
-00
-18
 42
-26
-00
-20
-40
-55
-b1
-1a
-62
-04
-00
-20
-40
-6e
-e6
-7d
-20
-a4
-00
-20
-40
-59
-3d
-20
-20
-59
-29
-20
-40
-36
-b4
-24
-74
-00
-00
-20
-40
-36
-be
-20
-40
-04
-6f
-6f
+78
+49
+34
 e1
-c6
-08
-20
-20
-36
-22
-58
-00
-00
-00
-79
-20
-7e
-15
-67
-e4
-00
-16
-58
-00
-00
-00
-67
-e2
-00
-1e
-20
-60
-00
-00
-70
 46
-00
-00
-20
-40
-36
-47
-5f
-ff
-ff
-ff
-67
-e2
-45
-af
+3f
+a5
+85
+c2
+fc
+80
+07
+6c
+38
+37
+07
+0c
+0c
+e7
+2d
+c8
+b6
+64
+2f
+51
+63
+ca
+18
+d0
+01
+a5
+0a
+5c
 58
-00
-00
-00
-67
-e3
-c8
-46
-70
-47
+5d
 3f
-01
-20
-40
-59
-ed
-20
-20
-02
-9b
-20
-40
-5a
-92
-20
-40
-04
-6f
-20
-40
-56
-a9
-68
-48
-c6
-54
-20
-40
-6e
-f7
-68
-48
-c6
-54
-20
-40
-6e
-d3
-6f
-e0
+0a
+fe
+76
+9a
+64
+22
+77
+78
+36
+30
+d5
+f5
+27
 c6
-4d
-20
-40
-59
-43
-d8
-40
-00
-15
-20
-40
-55
-b5
-20
-40
-04
-8b
-20
-20
-54
-df
-6f
 e0
-c6
-5a
-c1
-7f
+89
+e8
+06
+dd
+89
+86
+fb
 80
-00
-6f
-e0
-c6
-66
-c0
-00
-04
-91
-68
-48
-c6
-5a
-20
-20
-55
-b5
-68
-48
-c6
+2b
+06
+84
+16
+1a
+16
+d9
+6a
+0e
+bd
+11
+96
+f5
+34
+b8
+89
 5a
-20
-20
-6f
-0f
-c6
-93
-00
-00
-20
-40
-56
-01
+67
+a5
+0b
+5c
+9b
+ec
+31
+58
+a8
+11
+c3
+09
 24
-74
-00
-00
-6f
-e0
-c7
+d8
+ca
+5e
 7c
-70
-47
+c8
+7f
+b7
+9b
+ad
+63
 7c
-00
+51
+28
+bc
+b3
+63
+17
+3b
+27
+9c
+56
+ee
+67
+ec
+0c
+ef
+41
+17
+31
+34
+6e
+16
+bb
+e7
+d1
+f4
 24
+b3
 5a
-04
-a8
-6f
-e4
-47
-13
-c3
-0b
-04
-9d
-6f
-e0
-c9
-6c
-24
-3a
-60
-b6
-20
-40
-04
-9f
-20
-20
-60
-a2
-6f
-e0
-c6
-59
-c1
-ff
+4b
+63
+c0
+f7
+54
+cd
+a6
+0a
+74
+6a
+46
+7e
+85
+fa
+74
+cf
+17
+1a
+15
+e1
+ae
+d4
+81
+e3
+f1
+89
+52
+87
+94
+2d
+e3
+ec
+76
+c8
+4d
+44
+0b
+c8
+d3
+6e
+4e
+69
+81
+5b
+5f
+f9
+55
+90
 80
-00
-6f
-e0
-c7
-7d
-20
-7a
-00
-00
-1f
-e0
-ff
+19
 ff
-67
+79
+44
+44
+a7
+8f
+6d
+b0
 e0
+ee
+43
 c7
-7d
-58
-00
-00
-00
-67
-e2
-48
-47
-20
-20
-5a
-73
-20
-40
-04
-6f
-20
-20
-02
-2e
-6f
-e4
-47
+3a
+d2
+2b
+0f
+ba
+8d
+4a
+28
 13
-c4
-15
-00
-00
-c3
-1f
-de
-b9
-68
-48
-c6
-5a
-20
-40
-6e
+ac
+e5
+6f
+88
+fa
+23
+62
+85
+ae
+a4
 f7
-68
-48
-c6
-5a
-20
-40
-55
-b1
-68
-48
-c6
-5a
-20
-40
-6e
-e6
-24
-20
-de
-c2
-20
-20
-5e
-be
-20
-40
-59
-58
-c0
-18
-59
-5f
-c0
-18
-d9
-c6
-c0
-2c
-04
-ba
-20
-20
-59
+dd
 52
-20
-40
-59
+64
+01
+8b
 e7
-6f
-e0
-c8
+0c
+23
+5c
+b9
+34
+3e
+ed
+a2
 5a
-c0
-2c
-84
-be
-20
-20
-59
-5f
-70
-49
+43
+03
+f8
 57
-0b
-da
-60
+10
+dc
 4a
-0b
-20
-20
-59
-95
-6f
-e0
-c4
-20
+29
 c1
-80
-00
-00
+53
+6b
+be
+ab
+e4
+5d
+6c
+25
+aa
+55
+5a
+e8
+60
+b9
+0e
+34
+94
+c8
+e6
+16
+a8
+23
+fe
+02
+76
+65
+8f
+e8
+7f
+96
+90
+19
+6d
+2f
+14
+f9
+92
+a2
+08
+0c
+1e
+76
+4a
+73
+a4
+df
+45
+be
+ec
+33
+57
+e7
+a4
+eb
+8d
+b2
+e7
+48
+cb
+3d
+41
+b0
+d0
+86
+cc
+c7
+f0
+33
+4d
 6f
-e0
-c9
-57
-c0
-05
-84
-c6
-20
-20
-59
+aa
+22
 f8
-20
-40
-5a
-6d
-6f
-e0
-c6
-59
-c0
-7f
-84
-cc
-68
-48
-c6
-59
-20
-40
-6e
-e6
-24
-60
-80
-00
-58
-00
-00
-00
-20
-40
+25
+d3
+be
+19
 69
-e5
-c0
-ac
-59
-55
-20
+31
+ee
+d5
+cf
 20
-5a
+ec
+b8
+e1
+27
 2f
+fc
+7d
+9f
+98
+a5
+41
+d8
+a4
+d7
+f8
 78
-54
-7c
-00
-58
-00
-00
-00
-67
-e3
-48
-47
-20
-40
-04
+9d
+be
+9f
+ab
+b9
+e4
+d0
+a5
+d8
+98
+a6
+b8
+aa
+7f
+8d
 c1
+35
+8d
+17
+aa
+2f
+74
+59
+35
 20
-20
-56
-06
-88
-75
+d7
+16
+4b
+7c
+ce
+b4
+45
+7c
+93
+3f
+d6
+84
+9a
+72
+7e
 aa
 55
 40
@@ -4982,8 +5376,8 @@
 00
 00
 00
-33
-08
+73
+18
 84
 f2
 7d
@@ -4995,8 +5389,8 @@
 00
 20
 00
-00
-14
+60
+04
 00
 00
 00
@@ -5241,6 +5635,15 @@
 20
 aa
 55
+03
+00
+3c
+47
+00
+00
+00
+aa
+55
 02
 00
 66
@@ -5401,8 +5804,8 @@
 00
 4a
 47
-f2
-f9
+60
+ea
 00
 00
 77
@@ -5739,9 +6142,9 @@
 49
 fb
 1e
-c2
+ac
 1f
-c4
+ae
 1f
 aa
 55
@@ -5977,7 +6380,7 @@
 ff
 aa
 55
-1e
+1a
 00
 d6
 48
@@ -5993,20 +6396,16 @@
 41
 a1
 12
-a5
-84
 a7
 ff
-b5
-d0
 b6
 00
-ff
-00
-35
+b5
 c8
-25
+a5
 af
+ff
+00
 09
 00
 ff
@@ -6067,6 +6466,39 @@
 55
 01
 00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
 48
 41
 0c
@@ -6178,44 +6610,6 @@
 55
 01
 00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
 38
 44
 a0
@@ -6262,8 +6656,8 @@
 aa
 aa
 55
-c3
-5e
-a6
-6e
+1f
+5d
+bc
+28
 20
Index: output/program.lis
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/program.lis	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/program.lis	(working copy)
@@ -1,385 +1,383 @@
               include "bt_format "
               org 0x0000
-0000 c2840024 bbit1 8 ,pf_patch_ext 
-0001 c0000298 beq patch00_0 ,p_soft_reset 
-0002 c001004b beq patch00_2 ,p_main_loop 
-0003 c0080054 beq patch02_0 ,p_shutdown_radio 
-0004 c0088056 beq patch02_1 ,p_set_sync_on 
-0005 c00a016f beq patch02_4 ,p_set_lemode 
-0006 c00a80d8 beq patch02_5 ,p_rf_rx_enable 
-0007 c00c00f8 beq patch03_0 ,p_txon 
-0008 c00c80ff beq patch03_1 ,p_set_tx_power 
-0009 c00d0064 beq patch03_2 ,p_initialize_radio_cont 
-000a c012821e beq patch04_5 ,p_lpm_sleep 
-000b c0340291 beq patch0d_0 ,p_mouse_cb_fuction 
-000c c03482b1 beq patch0d_1 ,p_mouse_load_device_info_check 
-000d c036025a beq patch0d_4 ,p_mouse_param_init 
-000e c0368033 beq patch0d_5 ,p_mouse_sensor_set_angle 
-000f c039847e beq patch0e_3 ,p_mouse_setgpio_hibernate 
-0010 c03d04d0 beq patch0f_2 ,p_mouse_motion 
-0011 c03f845e beq patch0f_7 ,p_mouse_3io6key_check 
-0012 c04084b5 beq patch10_1 ,p_mouse_init_sensor 
-0013 c042039a beq patch10_4 ,p_mouse_buletooth_fast_conn_end 
-0014 c04283e6 beq patch10_5 ,p_mouse_priority_bb_event 
-0015 c0430206 beq patch10_6 ,p_mouse_le 
-0016 c04383c4 beq patch10_7 ,p_mouse_bb_event_timer 
-0017 c04403e4 beq patch11_0 ,p_mouse_start_discovery 
-0018 c04503ae beq patch11_2 ,p_mouse_store_remote_bdaddr 
-0019 c04602ef beq patch11_4 ,p_mouse_store_device_info 
-001a c0468357 beq patch11_5 ,p_mouse_store_dpi_info_check 
-001b c0470448 beq patch11_6 ,p_mouse_idle 
-001c c04582c8 beq patch11_3 ,p_mouse_app_initflag_check 
-001d c04804aa beq patch12_0 ,p_mouse_check_select_device_by_switch 
-001e c04a8475 beq patch12_5 ,p_mouse_24g_hibernate_set 
-001f c04b0493 beq patch12_6 ,p_mouse_24g_package_data 
-0020 c062823d beq patch18_5 ,p_otp_read_data 
-0021 c06d0140 beq patch1b_2 ,p_sadc_calibration 
-0022 c06e0150 beq patch1b_4 ,p_enable_adc 
-0023 2020235a branch assert 
+0000 c2840027 bbit1 8 ,pf_patch_ext 
+0001 c00002a7 beq patch00_0 ,p_soft_reset 
+0002 c001004e beq patch00_2 ,p_main_loop 
+0003 c0080057 beq patch02_0 ,p_shutdown_radio 
+0004 c0088059 beq patch02_1 ,p_set_sync_on 
+0005 c00a0157 beq patch02_4 ,p_set_lemode 
+0006 c00a80d9 beq patch02_5 ,p_rf_rx_enable 
+0007 c00c00f9 beq patch03_0 ,p_txon 
+0008 c00c8100 beq patch03_1 ,p_set_tx_power 
+0009 c00d0067 beq patch03_2 ,p_initialize_radio_cont 
+000a c0128226 beq patch04_5 ,p_lpm_sleep 
+000b c03402a0 beq patch0d_0 ,p_mouse_cb_fuction 
+000c c03482b3 beq patch0d_1 ,p_mouse_load_device_info_check 
+000d c0360263 beq patch0d_4 ,p_mouse_param_init 
+000e c0368036 beq patch0d_5 ,p_mouse_sensor_set_angle 
+000f c037044c beq patch0d_6 ,p_mouse_start_work 
+0010 c03984a1 beq patch0e_3 ,p_mouse_setgpio_hibernate 
+0011 c03a0223 beq patch0e_4 ,p_mouse_lpm_before_common 
+0012 c03d04f3 beq patch0f_2 ,p_mouse_motion 
+0013 c03f8481 beq patch0f_7 ,p_mouse_3io6key_check 
+0014 c04084d8 beq patch10_1 ,p_mouse_init_sensor 
+0015 c042039c beq patch10_4 ,p_mouse_buletooth_fast_conn_end 
+0016 c04283e8 beq patch10_5 ,p_mouse_priority_bb_event 
+0017 c04301ee beq patch10_6 ,p_mouse_le 
+0018 c04383c6 beq patch10_7 ,p_mouse_bb_event_timer 
+0019 c04403e6 beq patch11_0 ,p_mouse_start_discovery 
+001a c04503b0 beq patch11_2 ,p_mouse_store_remote_bdaddr 
+001b c04582ca beq patch11_3 ,p_mouse_app_initflag_check 
+001c c04602f1 beq patch11_4 ,p_mouse_store_device_info 
+001d c0468359 beq patch11_5 ,p_mouse_store_dpi_info_check 
+001e c047046b beq patch11_6 ,p_mouse_idle 
+001f c04804cd beq patch12_0 ,p_mouse_check_select_device_by_switch 
+0020 c04a8498 beq patch12_5 ,p_mouse_24g_hibernate_set 
+0021 c04b04b6 beq patch12_6 ,p_mouse_24g_package_data 
+0022 c0628249 beq patch18_5 ,p_otp_read_data 
+0023 c06a820d beq patch1a_5 ,p_gpio_set_wake_by_current_state 
+0024 c06b0206 beq patch1a_6 ,p_gpio_set_wake 
+0025 c06d0140 beq patch1b_2 ,p_sadc_calibration 
+0026 2020235a branch assert 
 
 pf_patch_ext:
-0024 c00a0190 beq patch22_4 ,p_le_slave_match 
-0025 c00d018f beq patch23_2 ,p_le_got_first_packet 
-0026 c01281bf beq patch24_5 ,p_le_rx_dec 
-0027 c01301c4 beq patch24_6 ,p_le_rx_nopayload 
-0028 c01c81d6 beq patch27_1 ,p_le_parse 
-0029 c01d01e0 beq patch27_2 ,p_le_parse_l2cap 
-002a c02601da beq patch29_4 ,p_le_adv_not_match 
-002b c02681de beq patch29_5 ,p_le_init_adv 
-002c c0480240 beq patch32_0 ,p_g24_reconn_dispatch 
-002d c04b0469 beq patch32_6 ,p_g24_short_sleep 
-002e c04d00e6 beq patch33_2 ,p_mouse_g24_retransmit 
-002f c04e80ed beq patch33_5 ,p_g24_transmit_hop_process 
-0030 c04f8262 beq patch33_7 ,p_power_ctrl_start 
-0031 c17f8000 rtneq patch3f_7 
-0032 2020235a branch assert 
+0027 c00a0178 beq patch22_4 ,p_le_slave_match 
+0028 c00d0177 beq patch23_2 ,p_le_got_first_packet 
+0029 c01281a7 beq patch24_5 ,p_le_rx_dec 
+002a c01301ac beq patch24_6 ,p_le_rx_nopayload 
+002b c01c81be beq patch27_1 ,p_le_parse 
+002c c01d01c8 beq patch27_2 ,p_le_parse_l2cap 
+002d c02601c4 beq patch29_4 ,p_le_adv_not_match 
+002e c02681c2 beq patch29_5 ,p_le_init_adv 
+002f c048024c beq patch32_0 ,p_g24_reconn_dispatch 
+0030 c04b048c beq patch32_6 ,p_g24_short_sleep 
+0031 c04d00e7 beq patch33_2 ,p_mouse_g24_retransmit 
+0032 c04e80ee beq patch33_5 ,p_g24_transmit_hop_process 
+0033 c04f8271 beq patch33_7 ,p_power_ctrl_start 
+0034 c17f8000 rtneq patch3f_7 
+0035 2020235a branch assert 
 
 p_mouse_sensor_set_angle:
-0033 6fe0c64f fetch 1 ,mem_sensor_angle_default 
-0034 67e0c958 store 1 ,mem_config_sensor_angle 
-0035 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
-0036 c17f8000 rtneq gpio_disable 
-0037 204023c3 call lpm_write_ice_disable 
+0036 6fe0c64f fetch 1 ,mem_sensor_angle_default 
+0037 67e0c958 store 1 ,mem_config_sensor_angle 
 0038 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
-0039 d840003e arg gpcfg_output_low ,temp 
-003a 20406f21 call gpio_config_function_int 
-003b 6fe0c65b fetch 1 ,mem_mouse_reuse_2ice_gpio 
+0039 c17f8000 rtneq gpio_disable 
+003a 204023c3 call lpm_write_ice_disable 
+003b 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
 003c d840003e arg gpcfg_output_low ,temp 
 003d 20406f21 call gpio_config_function_int 
-003e 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-003f 204055b5 call mouse_gpio_config_input_pu 
-0040 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-0041 20406ee6 call gpio_get_bit 
-0042 2040d473 call mouse_sensor_switch_angle ,true 
-0043 204055b1 call mouse_gpio_config_input_pd 
-0044 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-0045 20406edd call gpio_config_input 
-0046 204023c7 call lpm_write_ice_enable 
+003e 6fe0c65b fetch 1 ,mem_mouse_reuse_2ice_gpio 
+003f d840003e arg gpcfg_output_low ,temp 
+0040 20406f21 call gpio_config_function_int 
+0041 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+0042 204055b5 call mouse_gpio_config_input_pu 
+0043 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+0044 20406ee6 call gpio_get_bit 
+0045 2040d473 call mouse_sensor_switch_angle ,true 
+0046 204055b1 call mouse_gpio_config_input_pd 
+0047 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+0048 20406edd call gpio_config_input 
+0049 204023c7 call lpm_write_ice_enable 
 
 p_ice_gpio_set_float:
-0047 6848c64e fetcht 1 ,mem_select_sensor_angle_gpio 
-0048 20406f0f call gpio_set_high_impedance 
-0049 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
-004a 20206f0f branch gpio_set_high_impedance 
+004a 6848c64e fetcht 1 ,mem_select_sensor_angle_gpio 
+004b 20406f0f call gpio_set_high_impedance 
+004c 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
+004d 20206f0f branch gpio_set_high_impedance 
 
 p_main_loop:
-004b 20407552 call sp_calc_sequence_256 
-004c 20407448 call sp_calc_sequence_256_check 
-004d 20402a45 call le_advertising_dispatch 
-004e 2040202a call idle_dispatch 
-004f 204042ad call app_process_idle 
-0050 20402018 call connection_dispatch 
-0051 2040310f call g24_dispatch 
-0052 2040248c call lpm_dispatch 
-0053 2020004b branch p_main_loop 
+004e 20407552 call sp_calc_sequence_256 
+004f 20407448 call sp_calc_sequence_256_check 
+0050 20402a45 call le_advertising_dispatch 
+0051 2040202a call idle_dispatch 
+0052 204042ad call app_process_idle 
+0053 20402018 call connection_dispatch 
+0054 2040310f call g24_dispatch 
+0055 2040248c call lpm_dispatch 
+0056 2020004e branch p_main_loop 
 
 p_shutdown_radio:
-0054 70890000 jam 0 ,0x8900 
-0055 20202153 branch shutdown_radio + 1 
+0057 70890000 jam 0 ,0x8900 
+0058 20202153 branch shutdown_radio + 1 
 
 p_set_sync_on:
-0056 708a0f60 jam 0x60 ,0x8a0f 
-0057 708a10aa jam 0xaa ,0x8a10 
-0058 708a127a jam 0x7a ,0x8a12 
-0059 708a2500 jam 0x00 ,0x8a25 
-005a 708a2600 jam 0x00 ,0x8a26 
-005b 2000003c nop 60 
-005c 708a2020 jam 0x20 ,0x8a20 
-005d 708a23f5 jam 0xf5 ,0x8a23 
-005e 708a2412 jam 0x12 ,0x8a24 
-005f 708a2410 jam 0x10 ,0x8a24 
-0060 2000003c nop 60 
-0061 708a1260 jam 0x60 ,0x8a12 
-0062 708a23dd jam 0xdd ,0x8a23 
-0063 20600000 rtn 
+0059 708a0f60 jam 0x60 ,0x8a0f 
+005a 708a10aa jam 0xaa ,0x8a10 
+005b 708a127a jam 0x7a ,0x8a12 
+005c 708a2500 jam 0x00 ,0x8a25 
+005d 708a2600 jam 0x00 ,0x8a26 
+005e 2000003c nop 60 
+005f 708a2020 jam 0x20 ,0x8a20 
+0060 708a23f5 jam 0xf5 ,0x8a23 
+0061 708a2412 jam 0x12 ,0x8a24 
+0062 708a2410 jam 0x10 ,0x8a24 
+0063 2000003c nop 60 
+0064 708a1260 jam 0x60 ,0x8a12 
+0065 708a23dd jam 0xdd ,0x8a23 
+0066 20600000 rtn 
 
 p_initialize_radio_cont:
-0064 7001bb00 jam 0 ,mem_le_testtype 
-0065 7001bc00 jam 0 ,mem_cmd_le_create_conn 
-0066 37d98200 until null ,lpo_edge 
-0067 7089460d jam 0x0d ,0x8946 
-0068 70896f10 jam 0x10 ,0x896f 
-0069 708a13cd jam 0xcd ,0x8a13 
-006a 708a0610 jam 0x10 ,0x8a06 
-006b 708a844a jam 0x4a ,0x8a84 
-006c 708a8540 jam 0x40 ,0x8a85 
-006d 708a16fe jam 0xfe ,0x8a16 
-006e 204000ac call p_set_otp_config 
-006f 204070d7 call wdt_set_disable 
-0070 37d98200 until null ,lpo_edge 
-0071 70813b5f jam 0x5f ,0x813b 
-0072 37d98200 until null ,lpo_edge 
-0073 70813c88 jam 0x88 ,0x813c 
-0074 37d98200 until null ,lpo_edge 
-0075 6fe0c099 fetch 1 ,mem_fcomp_div 
-0076 c00800a1 beq xtal_16m ,p_initialize_radio_16m 
-0077 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-0078 1fe1fe04 or_into 0x04 ,pdata 
-0079 67f08a02 store 1 ,0x8a02 
-007a 70890f01 jam 0x01 ,0x890f 
-007b 708a8024 jam 0x24 ,0x8a80 
-007c 708a8162 jam 0x62 ,0x8a81 
-007d 58e61212 setarg 0xe61212 
-007e 67f18a73 store 3 ,0x8a73 
+0067 7001bb00 jam 0 ,mem_le_testtype 
+0068 7001bc00 jam 0 ,mem_cmd_le_create_conn 
+0069 37d98200 until null ,lpo_edge 
+006a 7089460d jam 0x0d ,0x8946 
+006b 70896f10 jam 0x10 ,0x896f 
+006c 708a13cd jam 0xcd ,0x8a13 
+006d 708a0610 jam 0x10 ,0x8a06 
+006e 708a844a jam 0x4a ,0x8a84 
+006f 708a8540 jam 0x40 ,0x8a85 
+0070 708a16fe jam 0xfe ,0x8a16 
+0071 204000ae call p_set_otp_config 
+0072 204070d7 call wdt_set_disable 
+0073 37d98200 until null ,lpo_edge 
+0074 70813b5f jam 0x5f ,0x813b 
+0075 37d98200 until null ,lpo_edge 
+0076 70813c88 jam 0x88 ,0x813c 
+0077 37d98200 until null ,lpo_edge 
+0078 6fe0c099 fetch 1 ,mem_fcomp_div 
+0079 c00800a3 beq xtal_16m ,p_initialize_radio_16m 
+007a 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+007b 1fe1fe04 or_into 0x04 ,pdata 
+007c 67f08a02 store 1 ,0x8a02 
+007d 70890f01 jam 0x01 ,0x890f 
+007e 708a8024 jam 0x24 ,0x8a80 
+007f 708a8162 jam 0x62 ,0x8a81 
+0080 58e61212 setarg 0xe61212 
+0081 67f18a73 store 3 ,0x8a73 
 
 p_initialize_radio2:
-007f 708a8660 jam 0x60 ,0x8a86 
-0080 708a8b3b jam 0x3b ,0x8a8b 
-0081 20400093 call p_dpll_on 
-0082 70804300 jam 0 ,core_config 
-0083 70804205 jam clksel_dpll ,core_clksel 
-0084 58557474 setarg 0x557474 
-0085 67f18968 store 3 ,0x8968 
-0086 7089606e jam 0x6e ,0x8960 
-0087 20400112 call p_rx_dcoc 
-0088 2040013d call p_rfpll_aac_ghpc 
-0089 2040008d call p_set_xtal_cap 
-008a 7041480c jam system_clk_12m ,mem_system_clk 
-008b 20406f4e call sadc_calibration 
-008c 2020013f branch p_dpll_ring_ibias_calc 
+0082 708a8660 jam 0x60 ,0x8a86 
+0083 708a8b3b jam 0x3b ,0x8a8b 
+0084 20400095 call p_dpll_on 
+0085 70804300 jam 0 ,core_config 
+0086 70804205 jam clksel_dpll ,core_clksel 
+0087 58557474 setarg 0x557474 
+0088 67f18968 store 3 ,0x8968 
+0089 7089606e jam 0x6e ,0x8960 
+008a 20400113 call p_rx_dcoc 
+008b 2040013e call p_rfpll_aac_ghpc 
+008c 2040008f call p_set_xtal_cap 
+008d 7041480c jam system_clk_12m ,mem_system_clk 
+008e 20206f4e branch sadc_calibration 
 
 p_set_xtal_cap:
-008d 20758000 rtn wake 
-008e 37d98200 until null ,lpo_edge 
-008f 6fe0c11c fetch 1 ,mem_xtal_c_sel 
-0090 67f0813a store 1 ,core_xtal_cap 
-0091 37d98200 until null ,lpo_edge 
-0092 20600000 rtn 
+008f 20758000 rtn wake 
+0090 37d98200 until null ,lpo_edge 
+0091 6fe0c11c fetch 1 ,mem_xtal_c_sel 
+0092 67f0813a store 1 ,core_xtal_cap 
+0093 37d98200 until null ,lpo_edge 
+0094 20600000 rtn 
 
 p_dpll_on:
-0093 6fe0c099 fetch 1 ,mem_fcomp_div 
-0094 c00c0099 beq xtal_24m ,p_dpll_on_24m 
-0095 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-0096 1fe1fe06 or_into 0x06 ,pdata 
-0097 67f08a02 store 1 ,0x8a02 
-0098 708a05e0 jam 0xe0 ,0x8a05 
+0095 6fe0c099 fetch 1 ,mem_fcomp_div 
+0096 c00c009b beq xtal_24m ,p_dpll_on_24m 
+0097 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+0098 1fe1fe06 or_into 0x06 ,pdata 
+0099 67f08a02 store 1 ,0x8a02 
+009a 708a05e0 jam 0xe0 ,0x8a05 
 
 p_dpll_on_24m:
-0099 708a00d8 jam 0xd8 ,0x8a00 
-009a 2000003c nop 60 
-009b 708a01a0 jam 0xa0 ,0x8a01 
-009c 708a00df jam 0xdf ,0x8a00 
-009d 708a01fa jam 0xfa ,0x8a01 
-009e 20000014 nop 20 
-009f 708a009f jam 0x9f ,0x8a00 
-00a0 20600000 rtn 
+009b 708a00d8 jam 0xd8 ,0x8a00 
+009c 2000003c nop 60 
+009d 708a01a0 jam 0xa0 ,0x8a01 
+009e 708a00df jam 0xdf ,0x8a00 
+009f 708a01fa jam 0xfa ,0x8a01 
+00a0 20000014 nop 20 
+00a1 708a009f jam 0x9f ,0x8a00 
+00a2 20600000 rtn 
 
 p_initialize_radio_16m:
-00a1 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-00a2 1fe1fe06 or_into 0x06 ,pdata 
-00a3 67f08a02 store 1 ,0x8a02 
-00a4 70890f00 jam 0x00 ,0x890f 
-00a5 708a8023 jam 0x23 ,0x8a80 
-00a6 708a81b0 jam 0xb0 ,0x8a81 
-00a7 58e40909 setarg 0xe40909 
-00a8 67f18a73 store 3 ,0x8a73 
-00a9 708a762a jam 0x2a ,0x8a76 
-00aa 70890204 jam 0x04 ,0x8902 
-00ab 2020007f branch p_initialize_radio2 
+00a3 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+00a4 1fe1fe06 or_into 0x06 ,pdata 
+00a5 67f08a02 store 1 ,0x8a02 
+00a6 70890f00 jam 0x00 ,0x890f 
+00a7 708a8023 jam 0x23 ,0x8a80 
+00a8 708a81b0 jam 0xb0 ,0x8a81 
+00a9 58e40909 setarg 0xe40909 
+00aa 67f18a73 store 3 ,0x8a73 
+00ab 708a762a jam 0x2a ,0x8a76 
+00ac 70890204 jam 0x04 ,0x8902 
+00ad 20200082 branch p_initialize_radio2 
 
 p_set_otp_config:
-00ac 203580d4 branch p_set_otp_config_wake ,wake 
-00ad 6fe2020d fetch 4 ,mem_otp_core_ldo 
-00ae 207a0000 rtn blank 
-00af 37d98200 until null ,lpo_edge 
-00b0 6ff08136 fetch 1 ,0x8136 
-00b1 1fe17ef0 and pdata ,0xf0 ,pdata 
-00b2 6848820d fetcht 1 ,mem_otp_core_ldo 
-00b3 9841fe00 ior temp ,pdata 
-00b4 1fe0fffd increase -3 ,pdata 
-00b5 67f08136 store 1 ,0x8136 
-00b6 37d98200 until null ,lpo_edge 
-00b7 6ff08138 fetch 1 ,0x8138 
-00b8 1fe17e07 and pdata ,0x7 ,pdata 
-00b9 6848820e fetcht 1 ,mem_otp_verf_bg 
-00ba 18498400 lshift3 temp ,temp 
-00bb 9841fe00 ior temp ,pdata 
-00bc 67f08138 store 1 ,0x8138 
-00bd 37d98200 until null ,lpo_edge 
-
-p_set_otp_config2:
-00be 6ff08acb fetch 1 ,0x8acb 
-00bf 1fe17ef0 and pdata ,0xf0 ,pdata 
-00c0 6848820f fetcht 1 ,mem_otp_charge_pump 
-00c1 6048c15b storet 1 ,mem_otp_charge_pump_x 
-00c2 9841fe00 ior temp ,pdata 
-00c3 67f08acb store 1 ,0x8acb 
-00c4 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
-00c5 67e0c15c store 1 ,mem_otp_dpll_ibais_x 
-00c6 2feffe03 isolate1 3 ,pdata 
-00c7 6ff08a06 fetch 1 ,0x8a06 
-00c8 7920fe07 setflag true ,7 ,pdata 
-00c9 67f08a06 store 1 ,0x8a06 
-00ca 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
-00cb 1fe10407 and pdata ,7 ,temp 
-00cc 18520400 lshift4 temp ,temp 
-00cd 18438400 lshift temp ,temp 
-00ce 6048c438 storet 1 ,mem_ring_ibias_trim 
-00cf 6ff08a02 fetch 1 ,0x8a02 
-00d0 1fe17e1f and pdata ,0x1f ,pdata 
-00d1 9841fe00 ior temp ,pdata 
-00d2 67f08a02 store 1 ,0x8a02 
-00d3 20600000 rtn 
+00ae 203580c0 branch p_set_otp_config_wake ,wake 
+00af 6fe2020d fetch 4 ,mem_otp_core_ldo 
+00b0 207a0000 rtn blank 
+00b1 37d98200 until null ,lpo_edge 
+00b2 6ff08136 fetch 1 ,0x8136 
+00b3 1fe17ef0 and pdata ,0xf0 ,pdata 
+00b4 6848820d fetcht 1 ,mem_otp_core_ldo 
+00b5 9841fe00 ior temp ,pdata 
+00b6 1fe0fffd increase -3 ,pdata 
+00b7 67f08136 store 1 ,0x8136 
+00b8 37d98200 until null ,lpo_edge 
+00b9 6ff08138 fetch 1 ,0x8138 
+00ba 1fe17e07 and pdata ,0x7 ,pdata 
+00bb 6848820e fetcht 1 ,mem_otp_verf_bg 
+00bc 18498400 lshift3 temp ,temp 
+00bd 9841fe00 ior temp ,pdata 
+00be 67f08138 store 1 ,0x8138 
+00bf 37d98200 until null ,lpo_edge 
 
 p_set_otp_config_wake:
-00d4 6fe1415b fetch 2 ,mem_otp_charge_pump_x 
-00d5 207a0000 rtn blank 
-00d6 67e1020f store 2 ,mem_otp_charge_pump 
-00d7 202000be branch p_set_otp_config2 
+00c0 6fe1415b fetch 2 ,mem_otp_charge_pump_x 
+00c1 207a0000 rtn blank 
+00c2 67e1020f store 2 ,mem_otp_charge_pump 
+
+p_set_otp_config2:
+00c3 6ff08acb fetch 1 ,0x8acb 
+00c4 1fe17ef0 and pdata ,0xf0 ,pdata 
+00c5 6848820f fetcht 1 ,mem_otp_charge_pump 
+00c6 6048c15b storet 1 ,mem_otp_charge_pump_x 
+00c7 9841fe00 ior temp ,pdata 
+00c8 67f08acb store 1 ,0x8acb 
+00c9 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
+00ca 67e0c15c store 1 ,mem_otp_dpll_ibais_x 
+00cb 2feffe03 isolate1 3 ,pdata 
+00cc 6ff08a06 fetch 1 ,0x8a06 
+00cd 7920fe07 setflag true ,7 ,pdata 
+00ce 67f08a06 store 1 ,0x8a06 
+00cf 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
+00d0 1fe10407 and pdata ,7 ,temp 
+00d1 18520400 lshift4 temp ,temp 
+00d2 18438400 lshift temp ,temp 
+00d3 6048c438 storet 1 ,mem_ring_ibias_trim 
+00d4 6ff08a02 fetch 1 ,0x8a02 
+00d5 1fe17e1f and pdata ,0x1f ,pdata 
+00d6 9841fe00 ior temp ,pdata 
+00d7 67f08a02 store 1 ,0x8a02 
+00d8 20600000 rtn 
 
 p_rf_rx_enable:
-00d8 2040686f call rf_debug_rx_gpio_high 
-00d9 204021ba call rf_rx_agc_set 
-00da 18002a08 force 8 ,radio_ctrl 
-00db 18002a00 force 0 ,radio_ctrl 
-00dc 580aaada setarg 0x0aaada 
-00dd 67f18a0f store 3 ,0x8a0f 
-00de 708a2540 jam 0x40 ,0x8a25 
-00df 708a2610 jam 0x10 ,0x8a26 
-00e0 2000003c nop 60 
-00e1 708a01fb jam 0xfb ,0x8a01 
-00e2 708a25ff jam 0xff ,0x8a25 
-00e3 708a2630 jam 0x30 ,0x8a26 
-00e4 708a16fe jam 0xfe ,0x8a16 
-00e5 202021b4 branch rf_rx_enable + 14 
+00d9 2040686f call rf_debug_rx_gpio_high 
+00da 204021ba call rf_rx_agc_set 
+00db 18002a08 force 8 ,radio_ctrl 
+00dc 18002a00 force 0 ,radio_ctrl 
+00dd 580aaada setarg 0x0aaada 
+00de 67f18a0f store 3 ,0x8a0f 
+00df 708a2540 jam 0x40 ,0x8a25 
+00e0 708a2610 jam 0x10 ,0x8a26 
+00e1 2000003c nop 60 
+00e2 708a01fb jam 0xfb ,0x8a01 
+00e3 708a25ff jam 0xff ,0x8a25 
+00e4 708a2630 jam 0x30 ,0x8a26 
+00e5 708a16fe jam 0xfe ,0x8a16 
+00e6 202021b4 branch rf_rx_enable + 14 
 
 p_mouse_g24_retransmit:
-00e6 6fe0c793 fetch 1 ,mem_mouse_need_soft_reset 
-00e7 247a0000 nrtn blank 
-00e8 204000ea call p_mouse_retransmit_select_device_by_pb_button 
-00e9 202060fc branch mouse_g24_retransmit + 3 
+00e7 6fe0c793 fetch 1 ,mem_mouse_need_soft_reset 
+00e8 247a0000 nrtn blank 
+00e9 204000eb call p_mouse_retransmit_select_device_by_pb_button 
+00ea 202060fc branch mouse_g24_retransmit + 3 
 
 p_mouse_retransmit_select_device_by_pb_button:
-00ea 6fe0c655 fetch 1 ,mem_config_select_device_button_gpio 
-00eb c17f8000 rtneq gpio_disable 
-00ec 20205e78 branch mouse_retransmit_select_device_by_pb_button 
+00eb 6fe0c655 fetch 1 ,mem_config_select_device_button_gpio 
+00ec c17f8000 rtneq gpio_disable 
+00ed 20205e78 branch mouse_retransmit_select_device_by_pb_button 
 
 p_g24_transmit_hop_process:
-00ed 6848c601 fetcht 1 ,mem_24g_retry 
-00ee 6fe0c621 fetch 1 ,mem_24g_fast_hop_count 
-00ef 98467c00 isub temp ,null 
-00f0 242100f2 nbranch p_g24_tx_fast_hop ,positive 
-00f1 20203681 branch g24_transmit_hop_process + 5 
+00ee 6848c601 fetcht 1 ,mem_24g_retry 
+00ef 6fe0c621 fetch 1 ,mem_24g_fast_hop_count 
+00f0 98467c00 isub temp ,null 
+00f1 242100f3 nbranch p_g24_tx_fast_hop ,positive 
+00f2 20203681 branch g24_transmit_hop_process + 5 
 
 p_g24_tx_fast_hop:
-00f2 6fe2458f fetch 4 ,mem_24g_addr 
-00f3 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
-00f4 98467c00 isub temp ,null 
-00f5 2022b222 branch g24_ch ,zero 
-00f6 20400287 call p_power_ctrl_txpower_incrs 
-00f7 2020369b branch g24_tx_fast_hop + 1 
+00f3 6fe2458f fetch 4 ,mem_24g_addr 
+00f4 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
+00f5 98467c00 isub temp ,null 
+00f6 2022b222 branch g24_ch ,zero 
+00f7 20400296 call p_power_ctrl_txpower_incrs 
+00f8 2020369b branch g24_tx_fast_hop + 1 
 
 p_txon:
-00f8 580aaa7e setarg 0x0aaa7e 
-00f9 67f18a0f store 3 ,0x8a0f 
-00fa 2000003c nop 60 
-00fb 708a2500 jam 0x00 ,0x8a25 
-00fc 708a260d jam 0x0d ,0x8a26 
-00fd 708a16f6 jam 0xf6 ,0x8a16 
-00fe 20202203 branch txon + 7 
+00f9 580aaa7e setarg 0x0aaa7e 
+00fa 67f18a0f store 3 ,0x8a0f 
+00fb 2000003c nop 60 
+00fc 708a2500 jam 0x00 ,0x8a25 
+00fd 708a260d jam 0x0d ,0x8a26 
+00fe 708a16f6 jam 0xf6 ,0x8a16 
+00ff 20202203 branch txon + 7 
 
 p_set_tx_power:
-00ff 6fe0c141 fetch 1 ,mem_tx_power 
-0100 c0032225 beq tx_power_6db ,set_tx_power_7db 
-0101 c0050105 beq tx_power_10db ,p_set_tx_power_10db 
-0102 c04f010e beq tx_power_f30db ,p_set_tx_power_f30db 
-0103 c055010a beq tx_power_factory ,p_set_tx_power_factory 
-0104 2020220e branch set_tx_power + 2 
+0100 6fe0c141 fetch 1 ,mem_tx_power 
+0101 c0032225 beq tx_power_6db ,set_tx_power_7db 
+0102 c0050106 beq tx_power_10db ,p_set_tx_power_10db 
+0103 c04f010f beq tx_power_f30db ,p_set_tx_power_f30db 
+0104 c055010b beq tx_power_factory ,p_set_tx_power_factory 
+0105 2020220e branch set_tx_power + 2 
 
 p_set_tx_power_10db:
-0105 708a1425 jam 0x25 ,0x8a14 
-0106 58a93f3f setarg 0xa93f3f 
-0107 67f18a60 store 3 ,0x8a60 
-0108 708a631f jam 0x1f ,0x8a63 
-0109 20600000 rtn 
+0106 708a1425 jam 0x25 ,0x8a14 
+0107 58a93f3f setarg 0xa93f3f 
+0108 67f18a60 store 3 ,0x8a60 
+0109 708a631f jam 0x1f ,0x8a63 
+010a 20600000 rtn 
 
 p_set_tx_power_factory:
-010a 708a1417 jam 0x17 ,0x8a14 
-010b 6fe1ca08 fetch 3 ,mem_tx_power_factory_param_new 
-010c 67f18a60 store 3 ,0x8a60 
-010d 2020221a branch set_tx_power_8a63_28 
+010b 708a1417 jam 0x17 ,0x8a14 
+010c 6fe1ca08 fetch 3 ,mem_tx_power_factory_param_new 
+010d 67f18a60 store 3 ,0x8a60 
+010e 2020221a branch set_tx_power_8a63_28 
 
 p_set_tx_power_f30db:
-010e 708a1417 jam 0x17 ,0x8a14 
-010f 58250300 setarg 0x250300 
-0110 67f18a60 store 3 ,0x8a60 
-0111 2020221a branch set_tx_power_8a63_28 
+010f 708a1417 jam 0x17 ,0x8a14 
+0110 58250300 setarg 0x250300 
+0111 67f18a60 store 3 ,0x8a60 
+0112 2020221a branch set_tx_power_8a63_28 
 
 p_rx_dcoc:
-0112 20758000 rtn wake 
-0113 20402160 call set_sync_on 
-0114 d8400027 arg 39 ,temp 
-0115 2040216f call set_freq_rx 
-0116 204021a6 call rf_rx_enable 
-0117 708a257f jam 0x7f ,0x8a25 
-0118 708a301a jam 0x1a ,0x8a30 
-0119 708a3178 jam 0x78 ,0x8a31 
-011a 708a8fb2 jam 0xb2 ,0x8a8f 
-011b 708ac200 jam 0 ,0x8ac2 
-011c 708ac300 jam 0 ,0x8ac3 
-011d d8e00006 arg 6 ,queue 
-011e 2040012f call p_rx_dcoc_avg 
-011f 2a2ffe0d isolate1 13 ,rega 
-0120 2040211d call qset_start 
-0121 2a4ffe0d isolate1 13 ,regb 
-0122 2040211e call qset_p 
-0123 d8e00005 arg 5 ,queue 
+0113 20758000 rtn wake 
+0114 20402160 call set_sync_on 
+0115 d8400027 arg 39 ,temp 
+0116 2040216f call set_freq_rx 
+0117 204021a6 call rf_rx_enable 
+0118 708a257f jam 0x7f ,0x8a25 
+0119 708a301a jam 0x1a ,0x8a30 
+011a 708a3178 jam 0x78 ,0x8a31 
+011b 708a8fb2 jam 0xb2 ,0x8a8f 
+011c 708ac200 jam 0 ,0x8ac2 
+011d 708ac300 jam 0 ,0x8ac3 
+011e d8e00006 arg 6 ,queue 
+011f 20400130 call p_rx_dcoc_avg 
+0120 2a2ffe0d isolate1 13 ,rega 
+0121 2040211d call qset_start 
+0122 2a4ffe0d isolate1 13 ,regb 
+0123 2040211e call qset_p 
+0124 d8e00005 arg 5 ,queue 
 
 p_rx_dcoc_loop2:
-0124 2040211c call qset1_p 
-0125 2040211e call qset_p 
-0126 2040012f call p_rx_dcoc_avg 
-0127 d8a08ac2 arg 0x8ac2 ,contw 
-0128 1a31fe00 rshift4 rega ,pdata 
-0129 20402117 call qsetxor 
-012a 1a51fe00 rshift4 regb ,pdata 
-012b 20402117 call qsetxor 
-012c 18e08fff increase -1 ,queue 
-012d 20210124 branch p_rx_dcoc_loop2 ,positive 
-012e 2020214f branch rx_dcoc_loop2 + 10 
+0125 2040211c call qset1_p 
+0126 2040211e call qset_p 
+0127 20400130 call p_rx_dcoc_avg 
+0128 d8a08ac2 arg 0x8ac2 ,contw 
+0129 1a31fe00 rshift4 rega ,pdata 
+012a 20402117 call qsetxor 
+012b 1a51fe00 rshift4 regb ,pdata 
+012c 20402117 call qsetxor 
+012d 18e08fff increase -1 ,queue 
+012e 20210125 branch p_rx_dcoc_loop2 ,positive 
+012f 2020214f branch rx_dcoc_loop2 + 10 
 
 p_rx_dcoc_avg:
-012f 2000003c nop 60 
-0130 58000f00 setarg mem_dcoc_buf 
-0131 67f10982 store 2 ,0x8982 
-0132 58000ff0 setarg mem_dcoc_buf_end 
-0133 67f10984 store 2 ,0x8984 
-0134 70898109 jam 0x9 ,0x8981 
-0135 70898103 jam 0x3 ,0x8981 
-0136 70898006 jam 0x6 ,0x8980 
-0137 2000003c nop 60 
-0138 da200000 arg 0 ,rega 
-0139 da400000 arg 0 ,regb 
-013a df200010 arg 16 ,loopcnt 
-013b d8c00f00 arg mem_dcoc_buf ,contr 
-013c 2020212d branch rx_dcoc_loop 
+0130 2000003c nop 60 
+0131 58000f00 setarg mem_dcoc_buf 
+0132 67f10982 store 2 ,0x8982 
+0133 58000ff0 setarg mem_dcoc_buf_end 
+0134 67f10984 store 2 ,0x8984 
+0135 70898109 jam 0x9 ,0x8981 
+0136 70898103 jam 0x3 ,0x8981 
+0137 70898006 jam 0x6 ,0x8980 
+0138 2000003c nop 60 
+0139 da200000 arg 0 ,rega 
+013a da400000 arg 0 ,regb 
+013b df200010 arg 16 ,loopcnt 
+013c d8c00f00 arg mem_dcoc_buf ,contr 
+013d 2020212d branch rx_dcoc_loop 
 
 p_rfpll_aac_ghpc:
-013d 20758000 rtn wake 
-013e 20202272 branch rfpll_aac_ghpc + 1 
-
-p_dpll_ring_ibias_calc:
-013f 20600000 rtn 
+013e 20758000 rtn wake 
+013f 20202272 branch rfpll_aac_ghpc + 1 
 
 p_sadc_calibration:
 0140 20758000 rtn wake 
@@ -389,7 +387,7 @@
 0144 6fe0c409 fetch 1 ,mem_adc_clkdiv 
 0145 67f080cd store 1 ,core_sadc_clkdiv 
 0146 20000bb8 nop 3000 
-0147 20400168 call p_sadc_read 
+0147 20400150 call p_sadc_read 
 0148 708a08c1 jam 0xc1 ,core_gpadc_cfg0 
 0149 6a40c419 fetchr regb ,1 ,mem_spi_write_addr 
 014a df200008 arg 8 ,loopcnt 
@@ -399,1212 +397,1359 @@
 014e 6240c419 storer regb ,1 ,mem_spi_write_addr 
 014f 20600000 rtn 
 
-p_enable_adc:
-0150 2040015e call p_sadc_cal_write 
-0151 6ff08a09 fetch 1 ,core_gpadc_cfg1 
-0152 793ffe07 set0 7 ,pdata 
-0153 67f08a09 store 1 ,core_gpadc_cfg1 
-0154 708a0777 jam 0x77 ,core_gpadc_ctrl 
-0155 708a08c1 jam 0xc1 ,core_gpadc_cfg0 
-0156 708a0b01 jam 0x01 ,core_gpadc_cfg3 
-0157 20406f90 call sadc_channel 
-0158 6fe0c409 fetch 1 ,mem_adc_clkdiv 
-0159 67f080cd store 1 ,core_sadc_clkdiv 
-015a 20000bb8 nop 3000 
-015b 20400168 call p_sadc_read 
-015c 7080cd00 jam 0 ,core_sadc_clkdiv 
-015d 20206fa1 branch sadc_dma 
-
-p_sadc_cal_write:
-015e 6ff080cc fetch 1 ,core_sadc_ctrl 
-015f 79207e01 set1 1 ,pdata 
-0160 67f080cc store 1 ,core_sadc_ctrl 
-0161 6a40c419 fetchr regb ,1 ,mem_spi_write_addr 
-0162 6fe0c433 fetch 1 ,mem_adc_cal_c7 
-0163 67e0c419 store 1 ,mem_spi_write_addr 
-0164 df200008 arg 8 ,loopcnt 
-0165 20406f67 call sadc_cal_write + 4 
-0166 6240c419 storer regb ,1 ,mem_spi_write_addr 
-0167 20600000 rtn 
-
 p_sadc_read:
-0168 7080cc03 jam 0x03 ,core_sadc_ctrl 
+0150 7080cc03 jam 0x03 ,core_sadc_ctrl 
 
 p_sadc_read_wait:
-0169 6ff08129 fetch 1 ,core_perf_status 
-016a c3028169 bbit0 saradc_done ,p_sadc_read_wait 
-016b 68590164 fetcht 2 ,core_sadc_data 
-016c 6049440a storet 2 ,mem_adc_current_value 
-016d 7080cc00 jam 0x00 ,core_sadc_ctrl 
-016e 20600000 rtn 
+0151 6ff08129 fetch 1 ,core_perf_status 
+0152 c3028151 bbit0 saradc_done ,p_sadc_read_wait 
+0153 68590164 fetcht 2 ,core_sadc_data 
+0154 6049440a storet 2 ,mem_adc_current_value 
+0155 7080cc00 jam 0x00 ,core_sadc_ctrl 
+0156 20600000 rtn 
 
 p_set_lemode:
-016f 708a8211 jam 0x11 ,0x8a82 
-0170 708a8d12 jam 0x12 ,0x8a8d 
-0171 708a8e0a jam 0x0a ,0x8a8e 
-0172 6fe0c099 fetch 1 ,mem_fcomp_div 
-0173 c0080188 beq xtal_16m ,p_set_lemode_2m_16m 
-0174 58005762 setarg 0x5762 
-0175 67f10907 store 2 ,0x8907 
+0157 708a8211 jam 0x11 ,0x8a82 
+0158 708a8d12 jam 0x12 ,0x8a8d 
+0159 708a8e0a jam 0x0a ,0x8a8e 
+015a 6fe0c099 fetch 1 ,mem_fcomp_div 
+015b c0080170 beq xtal_16m ,p_set_lemode_2m_16m 
+015c 58005762 setarg 0x5762 
+015d 67f10907 store 2 ,0x8907 
 
 p_set_lemode_2m:
-0176 70890103 jam 3 ,0x8901 
-0177 70893003 jam 3 ,0x8930 
-0178 c6168000 rtnmark1 mark_ble_2m 
-0179 70890101 jam 1 ,0x8901 
-017a 708a8207 jam 0x07 ,0x8a82 
-017b 708a8d44 jam 0x44 ,0x8a8d 
-017c 708a8e0a jam 0x0a ,0x8a8e 
-017d 6fe0c099 fetch 1 ,mem_fcomp_div 
-017e c0080185 beq xtal_16m ,p_set_lemode_1m_16m 
-017f 58002bb1 setarg 0x2bb1 
-0180 67f10907 store 2 ,0x8907 
+015e 70890103 jam 3 ,0x8901 
+015f 70893003 jam 3 ,0x8930 
+0160 c6168000 rtnmark1 mark_ble_2m 
+0161 70890101 jam 1 ,0x8901 
+0162 708a8207 jam 0x07 ,0x8a82 
+0163 708a8d44 jam 0x44 ,0x8a8d 
+0164 708a8e0a jam 0x0a ,0x8a8e 
+0165 6fe0c099 fetch 1 ,mem_fcomp_div 
+0166 c008016d beq xtal_16m ,p_set_lemode_1m_16m 
+0167 58002bb1 setarg 0x2bb1 
+0168 67f10907 store 2 ,0x8907 
 
 p_set_lemode_1m:
-0181 c6978000 rtnmark0 mark_ble_lr 
-0182 70893024 jam 0x24 ,0x8930 
-0183 70890105 jam 5 ,0x8901 
-0184 20600000 rtn 
+0169 c6978000 rtnmark0 mark_ble_lr 
+016a 70893024 jam 0x24 ,0x8930 
+016b 70890105 jam 5 ,0x8901 
+016c 20600000 rtn 
 
 p_set_lemode_1m_16m:
-0185 58004189 setarg 0x4189 
-0186 67f10907 store 2 ,0x8907 
-0187 20200181 branch p_set_lemode_1m 
+016d 58004189 setarg 0x4189 
+016e 67f10907 store 2 ,0x8907 
+016f 20200169 branch p_set_lemode_1m 
 
 p_set_lemode_2m_16m:
-0188 58008312 setarg 0x8312 
-0189 67f10907 store 2 ,0x8907 
-018a 20200176 branch p_set_lemode_2m 
+0170 58008312 setarg 0x8312 
+0171 67f10907 store 2 ,0x8907 
+0172 2020015e branch p_set_lemode_2m 
 
 p_le_check_retransmit_timesout:
-018b 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-018c da600100 arg 256 ,regc 
-018d 9a60fe00 iadd regc ,pdata 
-018e 20600000 rtn 
+0173 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+0174 da600100 arg 256 ,regc 
+0175 9a60fe00 iadd regc ,pdata 
+0176 20600000 rtn 
 
 p_le_got_first_packet:
-018f 202001af branch p_le_got_first_packet_new 
+0177 20200197 branch p_le_got_first_packet_new 
 
 p_le_slave_match:
-0190 20400192 call p_le_check_retransmit 
-0191 20202563 branch le_slave_match + 1 
+0178 2040017a call p_le_check_retransmit 
+0179 20202563 branch le_slave_match + 1 
 
 p_le_check_retransmit:
-0192 6fe0cc03 fetch 1 ,mem_le_conn_first_rcv 
-0193 207a0000 rtn blank 
-0194 6fe0cc04 fetch 1 ,mem_le_check_retransmit_flag 
-0195 247a0000 nrtn blank 
-0196 6848cc03 fetcht 1 ,mem_le_conn_first_rcv 
-0197 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-0198 98467c00 isub temp ,null 
-0199 2441018b ncall p_le_check_retransmit_timesout ,positive 
-019a 98467e00 isub temp ,pdata 
-019b 1fe67c64 sub pdata ,100 ,null 
-019c 202101a4 branch p_le_check_retransmit_count ,positive 
-019d 6fe0cc05 fetch 1 ,mem_le_retransmit_cnt 
-019e 1fe67c14 sub pdata ,20 ,null 
-019f 244101a2 ncall p_app_ble_disconnect ,positive 
-01a0 704c0401 jam 1 ,mem_le_check_retransmit_flag 
-01a1 20600000 rtn 
+017a 6fe0cbf9 fetch 1 ,mem_le_conn_first_rcv 
+017b 207a0000 rtn blank 
+017c 6fe0cbfa fetch 1 ,mem_le_check_retransmit_flag 
+017d 247a0000 nrtn blank 
+017e 6848cbf9 fetcht 1 ,mem_le_conn_first_rcv 
+017f 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+0180 98467c00 isub temp ,null 
+0181 24410173 ncall p_le_check_retransmit_timesout ,positive 
+0182 98467e00 isub temp ,pdata 
+0183 1fe67c64 sub pdata ,100 ,null 
+0184 2021018c branch p_le_check_retransmit_count ,positive 
+0185 6fe0cbfb fetch 1 ,mem_le_retransmit_cnt 
+0186 1fe67c14 sub pdata ,20 ,null 
+0187 2441018a ncall p_app_ble_disconnect ,positive 
+0188 704bfa01 jam 1 ,mem_le_check_retransmit_flag 
+0189 20600000 rtn 
 
 p_app_ble_disconnect:
-01a2 704c0601 jam 1 ,mem_le_check_retransmit_discon_flag 
-01a3 2020431f branch app_ble_disconnect 
+018a 704bfc01 jam 1 ,mem_le_check_retransmit_discon_flag 
+018b 2020431f branch app_ble_disconnect 
 
 p_le_check_retransmit_count:
-01a4 6848817f fetcht 1 ,mem_le_arq 
-01a5 6fe0804c fetch 1 ,mem_le_rxbuf_data_header 
-01a6 1fe37e00 rshift pdata ,pdata 
-01a7 9842fe00 ixor temp ,pdata 
-01a8 2feffe02 isolate1 nesn ,pdata 
-01a9 58000000 setarg 0 
-01aa 6848cc05 fetcht 1 ,mem_le_retransmit_cnt 
-01ab 7920fe00 setflag true ,0 ,pdata 
-01ac 98408400 iadd temp ,temp 
-01ad 6048cc05 storet 1 ,mem_le_retransmit_cnt 
-01ae 20600000 rtn 
+018c 6848817f fetcht 1 ,mem_le_arq 
+018d 6fe0804c fetch 1 ,mem_le_rxbuf_data_header 
+018e 1fe37e00 rshift pdata ,pdata 
+018f 9842fe00 ixor temp ,pdata 
+0190 2feffe02 isolate1 nesn ,pdata 
+0191 58000000 setarg 0 
+0192 6848cbfb fetcht 1 ,mem_le_retransmit_cnt 
+0193 7920fe00 setflag true ,0 ,pdata 
+0194 98408400 iadd temp ,temp 
+0195 6048cbfb storet 1 ,mem_le_retransmit_cnt 
+0196 20600000 rtn 
 
 p_le_got_first_packet_new:
-01af 6fe08005 fetch 1 ,mem_le_conn_rcv 
-01b0 1fe0fe01 increase 1 ,pdata 
-01b1 67e08005 store 1 ,mem_le_conn_rcv 
-01b2 243681b6 nbranch p_le_got_first_packet_new + 7 ,match 
-01b3 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-01b4 1fe0fe01 increase 1 ,pdata 
-01b5 67e0cc02 store 1 ,mem_le_conn_rcv_new 
-01b6 6fe08168 fetch 1 ,mem_le_state 
-01b7 c3818000 rtnbit1 lestate_got_first_packet 
-01b8 79207e03 set1 lestate_got_first_packet ,pdata 
-01b9 67e08168 store 1 ,mem_le_state 
-01ba 6fe142f5 fetch 2 ,mem_le_init_superto 
-01bb 67e10196 store 2 ,mem_le_superto 
-01bc 58000000 setarg 0 
-01bd 67e2431d store 4 ,mem_le_transmit_window 
-01be 20600000 rtn 
+0197 6fe08005 fetch 1 ,mem_le_conn_rcv 
+0198 1fe0fe01 increase 1 ,pdata 
+0199 67e08005 store 1 ,mem_le_conn_rcv 
+019a 2436819e nbranch p_le_got_first_packet_new + 7 ,match 
+019b 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+019c 1fe0fe01 increase 1 ,pdata 
+019d 67e0cbf8 store 1 ,mem_le_conn_rcv_new 
+019e 6fe08168 fetch 1 ,mem_le_state 
+019f c3818000 rtnbit1 lestate_got_first_packet 
+01a0 79207e03 set1 lestate_got_first_packet ,pdata 
+01a1 67e08168 store 1 ,mem_le_state 
+01a2 6fe142f5 fetch 2 ,mem_le_init_superto 
+01a3 67e10196 store 2 ,mem_le_superto 
+01a4 58000000 setarg 0 
+01a5 67e2431d store 4 ,mem_le_transmit_window 
+01a6 20600000 rtn 
 
 p_le_rx_dec:
-01bf 2040281c call le_check_retransmit 
-01c0 6a20804d fetchr rega ,1 ,mem_le_rxbuf_data_length 
-01c1 1a20a3fc increase -4 ,rega 
-01c2 242126fa nbranch le_crc_fail_consecutive ,positive 
-01c3 2020268e branch le_rx_dec + 6 
+01a7 2040281c call le_check_retransmit 
+01a8 6a20804d fetchr rega ,1 ,mem_le_rxbuf_data_length 
+01a9 1a20a3fc increase -4 ,rega 
+01aa 242126fa nbranch le_crc_fail_consecutive ,positive 
+01ab 2020268e branch le_rx_dec + 6 
 
 p_le_rx_nopayload:
-01c4 09800018 parse demod ,bucket ,24 
-01c5 1fef7e00 rshift32 pdata ,pdata 
-01c6 1ff17e00 rshift16 pdata ,pdata 
-01c7 e7e18005 istore 3 ,contw 
-01c8 78287c00 enable swfine 
-01c9 2040270d call le_set_until_tx_timer 
-01ca 202326f6 branch le_crc_fail ,crc_failed 
-01cb c59926af bmark0 mark_ble_encryption ,le_rx_match 
-01cc 6fe0804d fetch 1 ,mem_le_rxbuf_data_length 
-01cd 203a26af branch le_rx_match ,blank 
-01ce 1fe0fffc increase -4 ,pdata 
-01cf 67e0804d store 1 ,mem_le_rxbuf_data_length 
-01d0 204072cb call wait_ccm_done 
-01d1 6ff08108 fetch 1 ,core_misc_status 
-01d2 c303a6fa bbit0 7 ,le_crc_fail_consecutive 
-01d3 1800700c force regidx_result ,regext_index 
-01d4 65e20154 storer regext ,4 ,mem_le_peer_mic 
-01d5 202026af branch le_rx_match 
+01ac 09800018 parse demod ,bucket ,24 
+01ad 1fef7e00 rshift32 pdata ,pdata 
+01ae 1ff17e00 rshift16 pdata ,pdata 
+01af e7e18005 istore 3 ,contw 
+01b0 78287c00 enable swfine 
+01b1 2040270d call le_set_until_tx_timer 
+01b2 202326f6 branch le_crc_fail ,crc_failed 
+01b3 c59926af bmark0 mark_ble_encryption ,le_rx_match 
+01b4 6fe0804d fetch 1 ,mem_le_rxbuf_data_length 
+01b5 203a26af branch le_rx_match ,blank 
+01b6 1fe0fffc increase -4 ,pdata 
+01b7 67e0804d store 1 ,mem_le_rxbuf_data_length 
+01b8 204072cb call wait_ccm_done 
+01b9 6ff08108 fetch 1 ,core_misc_status 
+01ba c303a6fa bbit0 7 ,le_crc_fail_consecutive 
+01bb 1800700c force regidx_result ,regext_index 
+01bc 65e20154 storer regext ,4 ,mem_le_peer_mic 
+01bd 202026af branch le_rx_match 
 
 p_le_parse:
-01d6 6fe0c334 fetch 1 ,mem_le_packet_llid 
-01d7 c1000000 rtneq llid_reserved 
-01d8 c001b04a beq llid_le_ll ,le_parse_ll 
-01d9 202028e1 branch le_parse_l2cap 
-
-p_le_adv_not_match:
-01da 20402152 call shutdown_radio 
-01db 70890000 jam 0 ,0x8900 
-01dc 793f8030 set0 mark_ble_crc_fail ,mark 
-01dd 20202ae3 branch le_adv_not_match + 1 
+01be 6fe0c334 fetch 1 ,mem_le_packet_llid 
+01bf c1000000 rtneq llid_reserved 
+01c0 c001b04a beq llid_le_ll ,le_parse_ll 
+01c1 202028e1 branch le_parse_l2cap 
 
 p_le_init_adv:
-01de 793f8030 set0 mark_ble_crc_fail ,mark 
-01df 20202af6 branch le_init_adv + 1 
+01c2 793f8030 set0 mark_ble_crc_fail ,mark 
+01c3 20202af6 branch le_init_adv + 1 
+
+p_le_adv_not_match:
+01c4 20402152 call shutdown_radio 
+01c5 70890000 jam 0 ,0x8900 
+01c6 793f8030 set0 mark_ble_crc_fail ,mark 
+01c7 20202ae3 branch le_adv_not_match + 1 
 
 p_le_parse_l2cap:
-01e0 efe10006 ifetch 2 ,contr 
-01e1 c00201e3 beq le_l2cap_cid_att ,p_le_parse_att 
-01e2 202028eb branch le_parse_l2cap_next + 2 
+01c8 efe10006 ifetch 2 ,contr 
+01c9 c00201cb beq le_l2cap_cid_att ,p_le_parse_att 
+01ca 202028eb branch le_parse_l2cap_next + 2 
 
 p_le_parse_att:
-01e3 efe18006 ifetch 3 ,contr 
-01e4 67e1c397 store 3 ,mem_le_att_opcode 
-01e5 c00501e8 beq attop_read_request ,p_le_parse_att_read_request 
-01e6 c00901f7 beq attop_write_request ,p_le_parse_att_write_request 
-01e7 20202b96 branch le_parse_att2 
+01cb efe18006 ifetch 3 ,contr 
+01cc 67e1c397 store 3 ,mem_le_att_opcode 
+01cd c00501d0 beq attop_read_request ,p_le_parse_att_read_request 
+01ce c00901df beq attop_write_request ,p_le_parse_att_write_request 
+01cf 20202b96 branch le_parse_att2 
 
 p_le_parse_att_read_request:
-01e8 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-01e9 c31dad19 bbit0 mouse_enable_le_battery_service_cancel ,le_parse_att_read_request 
-01ea 20402dc7 call le_check_encrypt_state 
-01eb 68494398 fetcht 2 ,mem_le_att_handle 
-01ec 6fe0c321 fetch 1 ,mem_le_configuration 
-01ed c28181f2 bbit1 bit_ble_read_auth ,p_le_send_att_read_response_check_auth 
+01d0 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+01d1 c31dad19 bbit0 mouse_enable_le_battery_service_cancel ,le_parse_att_read_request 
+01d2 20402dc7 call le_check_encrypt_state 
+01d3 68494398 fetcht 2 ,mem_le_att_handle 
+01d4 6fe0c321 fetch 1 ,mem_le_configuration 
+01d5 c28181da bbit1 bit_ble_read_auth ,p_le_send_att_read_response_check_auth 
 
 p_le_send_att_read_response:
-01ee 6fe14398 fetch 2 ,mem_le_att_handle 
-01ef c0182e03 beq 0x30 ,le_send_att_error_response_notfound 
-01f0 68494398 fetcht 2 ,mem_le_att_handle 
-01f1 20202d1d branch le_send_att_read_response 
+01d6 6fe14398 fetch 2 ,mem_le_att_handle 
+01d7 c0182e03 beq 0x30 ,le_send_att_error_response_notfound 
+01d8 68494398 fetcht 2 ,mem_le_att_handle 
+01d9 20202d1d branch le_send_att_read_response 
 
 p_le_send_att_read_response_check_auth:
-01f2 6fe14332 fetch 2 ,mem_le_pairing_handle 
-01f3 98467c00 isub temp ,null 
-01f4 242281ee nbranch p_le_send_att_read_response ,zero 
-01f5 243401ee nbranch p_le_send_att_read_response ,user 
-01f6 20202d46 branch le_send_att_read_response_error_insufficient_auth 
+01da 6fe14332 fetch 2 ,mem_le_pairing_handle 
+01db 98467c00 isub temp ,null 
+01dc 242281d6 nbranch p_le_send_att_read_response ,zero 
+01dd 243401d6 nbranch p_le_send_att_read_response ,user 
+01de 20202d46 branch le_send_att_read_response_error_insufficient_auth 
 
 p_le_parse_att_write_request:
-01f7 18c22200 copy contr ,rega 
-01f8 6fe14335 fetch 2 ,mem_le_l2cap_size 
-01f9 1fe0a5fd add pdata ,-3 ,regb 
-01fa 20402929 call le_writeatt_cb 
-01fb 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
-01fc c07fadac beq 0xff ,le_send_att_write_response_check_auth 
-01fd 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
-01fe 203a2dac branch le_send_att_write_response_check_auth ,blank 
-01ff 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-0200 c280adac bbit1 ll_start_enc_flag ,le_send_att_write_response_check_auth 
-0201 5800001a setarg 0x001a 
-0202 68494398 fetcht 2 ,mem_le_att_handle 
-0203 98467c00 isub temp ,null 
-0204 2422adac nbranch le_send_att_write_response_check_auth ,zero 
-0205 20202d46 branch le_send_att_read_response_error_insufficient_auth 
+01df 18c22200 copy contr ,rega 
+01e0 6fe14335 fetch 2 ,mem_le_l2cap_size 
+01e1 1fe0a5fd add pdata ,-3 ,regb 
+01e2 20402929 call le_writeatt_cb 
+01e3 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+01e4 c07fadac beq 0xff ,le_send_att_write_response_check_auth 
+01e5 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
+01e6 203a2dac branch le_send_att_write_response_check_auth ,blank 
+01e7 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+01e8 c280adac bbit1 ll_start_enc_flag ,le_send_att_write_response_check_auth 
+01e9 5800001a setarg 0x001a 
+01ea 68494398 fetcht 2 ,mem_le_att_handle 
+01eb 98467c00 isub temp ,null 
+01ec 2422adac nbranch le_send_att_write_response_check_auth ,zero 
+01ed 20202d46 branch le_send_att_read_response_error_insufficient_auth 
 
 p_mouse_le:
-0206 20402a28 call le_fifo_check_nearly_full 
-0207 247a0000 nrtn blank 
-0208 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
-0209 c07f8211 beq 0xff ,p_mouse_le_next 
-020a 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-020b 1fe17e03 and pdata ,0x03 ,pdata 
-020c c1818000 rtnne 0x03 
-020d 6fe0cc04 fetch 1 ,mem_le_check_retransmit_flag 
-020e 207a0000 rtn blank 
-020f 6fe0cc06 fetch 1 ,mem_le_check_retransmit_discon_flag 
-0210 247a0000 nrtn blank 
+01ee 20402a28 call le_fifo_check_nearly_full 
+01ef 247a0000 nrtn blank 
+01f0 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+01f1 c07f81f9 beq 0xff ,p_mouse_le_next 
+01f2 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+01f3 1fe17e03 and pdata ,0x03 ,pdata 
+01f4 c1818000 rtnne 0x03 
+01f5 6fe0cbfa fetch 1 ,mem_le_check_retransmit_flag 
+01f6 207a0000 rtn blank 
+01f7 6fe0cbfc fetch 1 ,mem_le_check_retransmit_discon_flag 
+01f8 247a0000 nrtn blank 
 
 p_mouse_le_next:
-0211 6fe0c956 fetch 1 ,mem_mouse_clear_sensor_data_flag 
-0212 205a5a71 call mouse_clear_sensor_data_by_reset ,blank 
-0213 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0214 c280db5b bbit1 mouse_24g_pairing_flag ,mouse_le_send_empty_packet 
-0215 c2805b5b bbit1 mouse_select_device_flag ,mouse_le_send_empty_packet 
-0216 c282db5b bbit1 mouse_bt_discovery_button_down_flag ,mouse_le_send_empty_packet 
-0217 c2835b5b bbit1 mouse_bt_discovery_button_long_down_flag ,mouse_le_send_empty_packet 
-0218 20405601 call mouse_motion 
-0219 20405ab2 call mouse_check_125hz 
-021a 24740000 nrtn user 
-021b 20405abc call mouse_current_mult_update 
-021c 2040049f call p_mouse_data_xy_release 
-021d 20205b37 branch mouse_le_next + 12 
+01f9 6fe0c956 fetch 1 ,mem_mouse_clear_sensor_data_flag 
+01fa 205a5a71 call mouse_clear_sensor_data_by_reset ,blank 
+01fb 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+01fc c280db5b bbit1 mouse_24g_pairing_flag ,mouse_le_send_empty_packet 
+01fd c2805b5b bbit1 mouse_select_device_flag ,mouse_le_send_empty_packet 
+01fe c282db5b bbit1 mouse_bt_discovery_button_down_flag ,mouse_le_send_empty_packet 
+01ff c2835b5b bbit1 mouse_bt_discovery_button_long_down_flag ,mouse_le_send_empty_packet 
+0200 20405601 call mouse_motion 
+0201 20405ab2 call mouse_check_125hz 
+0202 24740000 nrtn user 
+0203 20405abc call mouse_current_mult_update 
+0204 204004c2 call p_mouse_data_xy_release 
+0205 20205b37 branch mouse_le_next + 12 
+
+p_gpio_set_wake:
+0206 18467cff sub temp ,ui_button_gpio_disable ,null 
+0207 20628000 rtn zero 
+0208 d9000004 arg 4 ,debug 
+0209 284ffe07 isolate1 gpio_active_bit ,temp 
+020a 2020eebd branch gpio_set_wake_high ,true 
+020b d9000003 arg 3 ,debug 
+020c 20206ebd branch gpio_set_wake_high 
+
+p_gpio_set_wake_by_current_state:
+020d 18467cff sub temp ,gpio_disable ,null 
+020e 20628000 rtn zero 
+020f 6048cb1d storet 1 ,mem_mouse_wheel_temp_gpio 
+0210 20406ee6 call gpio_get_bit 
+0211 20208217 branch p_gpio_set_qdec_mode ,true 
+
+p_gpio_set_low_wake_disable_qdec:
+0212 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+0213 20406f0f call gpio_set_high_impedance 
+0214 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+
+p_gpio_set_low_wake:
+0215 d9000003 arg 3 ,debug 
+0216 20206ebd branch gpio_set_wake_high 
+
+p_gpio_set_qdec_mode:
+0217 704b1e01 jam 1 ,mem_mouse_qdec_set_flag 
+0218 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+0219 20406f0f call gpio_set_high_impedance 
+021a 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+
+p_mouse_qdec_lpm_cfg:
+021b d9000006 arg 6 ,debug 
+021c 20206ebd branch gpio_set_wake_high 
+
+p_mouse_puchk_disable:
+021d 58000010 setarg 0x10 
+
+p_mouse_puchk_set:
+021e 67f08141 store 1 ,core_puwakeup 
+021f 37d98200 until null ,lpo_edge 
+0220 20600000 rtn 
+
+p_mouse_puchk_enable:
+0221 58000080 setarg 0x80 
+0222 2020021e branch p_mouse_puchk_set 
+
+p_mouse_lpm_before_common:
+0223 20400492 call p_clear_wake 
+0224 704b1e00 jam 0 ,mem_mouse_qdec_set_flag 
+0225 2020550d branch mouse_lpm_before_common + 1 
 
 p_lpm_sleep:
-021e 6fe143e9 fetch 2 ,mem_cb_before_lpm_sleep 
-021f 20407d79 call callback_func 
+0226 6fe143e9 fetch 2 ,mem_cb_before_lpm_sleep 
+0227 20407d79 call callback_func 
 
 p_lpm_sleep_skip_cb_function:
-0220 6fe240ad fetch 4 ,mem_sleep_counter_all 
-0221 9840fe00 iadd temp ,pdata 
-0222 67e240ad store 4 ,mem_sleep_counter_all 
-0223 20400225 call p_lpm_save_context 
-0224 20202425 branch lpm_sleep_skip_cb_function + 4 
+0228 6fe240ad fetch 4 ,mem_sleep_counter_all 
+0229 9840fe00 iadd temp ,pdata 
+022a 67e240ad store 4 ,mem_sleep_counter_all 
+022b 20400231 call p_lpm_save_context 
+022c 2040022e call p_mouse_puchk_set_check 
+022d 20202425 branch lpm_sleep_skip_cb_function + 4 
+
+p_mouse_puchk_set_check:
+022e 6fe0cb1e fetch 1 ,mem_mouse_qdec_set_flag 
+022f 203a021d branch p_mouse_puchk_disable ,blank 
+0230 20200221 branch p_mouse_puchk_enable 
 
 p_lpm_save_context:
-0225 600440e7 storer mark ,8 ,mem_saved_mark 
-0226 d8c08070 arg core_gpio_conf ,contr 
-0227 d8a040cc arg mem_saved_gpio ,contw 
-0228 20407c8f call memcpy16 
-0229 d8c080d4 arg core_gpio_conf_hi ,contr 
-022a 20407c89 call memcpy8 
-022b 6ff08080 fetch 1 ,core_spid_ctrl 
-022c 67e0c0ef store 1 ,mem_saved_spidctrl 
-022d 18422400 copy temp ,regb 
+0231 600440e7 storer mark ,8 ,mem_saved_mark 
+0232 d8c08070 arg core_gpio_conf ,contr 
+0233 d8a040cc arg mem_saved_gpio ,contw 
+0234 20407c8f call memcpy16 
+0235 d8c080d4 arg core_gpio_conf_hi ,contr 
+0236 20407c89 call memcpy8 
+0237 6ff08080 fetch 1 ,core_spid_ctrl 
+0238 67e0c0ef store 1 ,mem_saved_spidctrl 
+0239 18422400 copy temp ,regb 
 
 p_lpm_write_gpio_wakeup:
-022e df20000c arg 12 ,loopcnt 
-022f da200016 arg mem_gpio_wakeup_cfg ,rega 
-0230 da60814d arg core_gpio_wakeup_cfg ,regc 
-0231 37d98200 until null ,lpo_edge 
+023a df20000c arg 12 ,loopcnt 
+023b da200016 arg mem_gpio_wakeup_cfg ,rega 
+023c da60814d arg core_gpio_wakeup_cfg ,regc 
+023d 37d98200 until null ,lpo_edge 
 
 p_lpm_write_gpio_loop:
-0232 efe08011 ifetch 1 ,rega 
-0233 e8408013 ifetcht 1 ,regc 
-0234 98467c00 isub temp ,null 
-0235 20228238 branch p_lpm_write_gpio_loop_next ,zero 
-0236 e7e08013 istore 1 ,regc 
-0237 37d98200 until null ,lpo_edge 
+023e efe08011 ifetch 1 ,rega 
+023f e8408013 ifetcht 1 ,regc 
+0240 98467c00 isub temp ,null 
+0241 20228244 branch p_lpm_write_gpio_loop_next ,zero 
+0242 e7e08013 istore 1 ,regc 
+0243 37d98200 until null ,lpo_edge 
 
 p_lpm_write_gpio_loop_next:
-0238 1a20a201 increase 1 ,rega 
-0239 1a60a601 increase 1 ,regc 
-023a c2000232 loop p_lpm_write_gpio_loop 
-023b 1a420400 copy regb ,temp 
-023c 20600000 rtn 
+0244 1a20a201 increase 1 ,rega 
+0245 1a60a601 increase 1 ,regc 
+0246 c200023e loop p_lpm_write_gpio_loop 
+0247 1a420400 copy regb ,temp 
+0248 20600000 rtn 
 
 p_otp_read_data:
-023d 20406b3a call enable_otp_read 
-023e 20406b75 call otp_read_data + 1 
-023f 20206b38 branch otp_disable_chgpump 
+0249 20406b3a call enable_otp_read 
+024a 20406b75 call otp_read_data + 1 
+024b 20206b38 branch otp_disable_chgpump 
 
 p_g24_reconn_dispatch:
-0240 6fe145e0 fetch 2 ,mem_24g_reconn_count 
-0241 d84001f8 arg 0x01f8 ,temp 
-0242 98417e00 iand temp ,pdata 
-0243 203a0248 branch p_g24_reconn_dispatch_next ,blank 
-0244 6fe145e0 fetch 2 ,mem_24g_reconn_count 
-0245 1fe0fe01 increase 1 ,pdata 
-0246 67e145e0 store 2 ,mem_24g_reconn_count 
-0247 20600000 rtn 
+024c 6fe145e0 fetch 2 ,mem_24g_reconn_count 
+024d d84001f8 arg 0x01f8 ,temp 
+024e 98417e00 iand temp ,pdata 
+024f 203a0254 branch p_g24_reconn_dispatch_next ,blank 
+0250 6fe145e0 fetch 2 ,mem_24g_reconn_count 
+0251 1fe0fe01 increase 1 ,pdata 
+0252 67e145e0 store 2 ,mem_24g_reconn_count 
+0253 20600000 rtn 
 
 p_g24_reconn_dispatch_next:
-0248 2040357f call g24_reconn_data_prep 
-0249 20403651 call g24_transmit_receive_ack 
-024a 242c3586 nbranch g24_reconn_device_fail ,sync 
-024b 2437b586 nbranch g24_reconn_device_fail ,user3 
-024c 2040366e call g24_ackpayload_parse 
-024d 6fe0c57d fetch 1 ,mem_24g_rxdata_length 
-024e 203a0257 branch p_recv_addr_zero_skip ,blank 
+0254 2040357f call g24_reconn_data_prep 
+0255 20403651 call g24_transmit_receive_ack 
+0256 242c3586 nbranch g24_reconn_device_fail ,sync 
+0257 2437b586 nbranch g24_reconn_device_fail ,user3 
+0258 2040366e call g24_ackpayload_parse 
+0259 6fe0c57d fetch 1 ,mem_24g_rxdata_length 
+025a 203a026b branch p_recv_addr_zero_skip ,blank 
 
 p_g24_reconn_dispatch_next_2:
-024f 6fe245cc fetch 4 ,mem_24g_pair_addr 
-0250 684a458f fetcht 4 ,mem_24g_addr 
-0251 98467c00 isub temp ,null 
-0252 20228254 branch p_g24_reconn_mode_judge ,zero 
-0253 2020356e branch g24_reconn_dispatch_next + 9 
+025b 6fe245cc fetch 4 ,mem_24g_pair_addr 
+025c 684a458f fetcht 4 ,mem_24g_addr 
+025d 98467c00 isub temp ,null 
+025e 20228260 branch p_g24_reconn_mode_judge ,zero 
+025f 2020356e branch g24_reconn_dispatch_next + 9 
 
 p_g24_reconn_mode_judge:
-0254 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0255 c2983291 bbit1 mouse_enable_auto_24g_paring ,g24_pair_start 
-0256 20203549 branch g24_reconn_receiver_addr 
-
-p_recv_addr_zero_skip:
-0257 6fe2455f fetch 4 ,mem_24g_rxpayload + 2 
-0258 207a0000 rtn blank 
-0259 2020024f branch p_g24_reconn_dispatch_next_2 
+0260 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0261 c2983291 bbit1 mouse_enable_auto_24g_paring ,g24_pair_start 
+0262 20203549 branch g24_reconn_receiver_addr 
 
 p_mouse_param_init:
-025a 2040543b call mouse_param_common_init 
-025b 2040025d call p_mouse_le_buff_modify 
-025c 2020544c branch mouse_param_init + 2 
+0263 2040543b call mouse_param_common_init 
+0264 20400266 call p_mouse_le_buff_modify 
+0265 2020544c branch mouse_param_init + 2 
 
 p_mouse_le_buff_modify:
-025d 58004a29 setarg mem_le_tx_buffer0_omemalloc_new 
-025e 67e1433f store 2 ,mem_ble_l2cap_tx_buff0_ptr 
-025f 58000020 setarg mouse_ble_l2cap_txbuff_size_new 
-0260 67e14341 store 2 ,mem_ble_l2cap_tx_buff_size_ptr 
-0261 20600000 rtn 
+0266 58004a1d setarg mem_le_tx_buffer0_omemalloc_new 
+0267 67e1433f store 2 ,mem_ble_l2cap_tx_buff0_ptr 
+0268 58000020 setarg mouse_ble_l2cap_txbuff_size_new 
+0269 67e14341 store 2 ,mem_ble_l2cap_tx_buff_size_ptr 
+026a 20600000 rtn 
+
+p_recv_addr_zero_skip:
+026b 6fe245e4 fetch 4 ,mem_24g_fast_conn_addr 
+026c 684a458f fetcht 4 ,mem_24g_addr 
+026d 2022825b branch p_g24_reconn_dispatch_next_2 ,zero 
+026e 6fe2455f fetch 4 ,mem_24g_rxpayload + 2 
+026f 207a0000 rtn blank 
+0270 2020025b branch p_g24_reconn_dispatch_next_2 
 
 p_power_ctrl_start:
-0262 6fe0c437 fetch 1 ,mem_power_ctrl_disable 
-0263 247a0000 nrtn blank 
-0264 6fe144e9 fetch 2 ,mem_ui_state_map 
-0265 c3858000 rtnbit1 ui_state_ble_adv 
-0266 6a2145f0 fetchr rega ,2 ,mem_rssi_signal_buf_ptr 
-0267 204035b4 call rssi_average 
-0268 6048c624 storet 1 ,mem_rssi_avg_received 
-0269 6fe0c629 fetch 1 ,mem_rssi_dis_max_24g 
-026a c513026c bmark1 mark_24g ,p_power_ctrl_start_next 
-026b 6fe0c62c fetch 1 ,mem_rssi_dis_max_ble 
+0271 6fe0c437 fetch 1 ,mem_power_ctrl_disable 
+0272 247a0000 nrtn blank 
+0273 6fe144e9 fetch 2 ,mem_ui_state_map 
+0274 c3858000 rtnbit1 ui_state_ble_adv 
+0275 6a2145f0 fetchr rega ,2 ,mem_rssi_signal_buf_ptr 
+0276 204035b4 call rssi_average 
+0277 6048c624 storet 1 ,mem_rssi_avg_received 
+0278 6fe0c629 fetch 1 ,mem_rssi_dis_max_24g 
+0279 c513027b bmark1 mark_24g ,p_power_ctrl_start_next 
+027a 6fe0c62c fetch 1 ,mem_rssi_dis_max_ble 
 
 p_power_ctrl_start_next:
-026c 98467c00 isub temp ,null 
-026d 24210286 nbranch p_power_ctrl_txpower_incrs_force ,positive 
-026e 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-026f 1fe67c02 sub pdata ,2 ,null 
-0270 24210274 nbranch p_power_ctrl_txpower_decrs_check ,positive 
-0271 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0272 c0000287 beq 0 ,p_power_ctrl_txpower_incrs 
-0273 20600000 rtn 
+027b 98467c00 isub temp ,null 
+027c 24210295 nbranch p_power_ctrl_txpower_incrs_force ,positive 
+027d 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+027e 1fe67c02 sub pdata ,2 ,null 
+027f 24210283 nbranch p_power_ctrl_txpower_decrs_check ,positive 
+0280 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0281 c0000296 beq 0 ,p_power_ctrl_txpower_incrs 
+0282 20600000 rtn 
 
 p_power_ctrl_txpower_decrs_check:
-0274 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0275 6848c627 fetcht 1 ,mem_power_ctrl_pac_succ_cnt_init 
-0276 98467c00 isub temp ,null 
-0277 24628000 nrtn zero 
-0278 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+0283 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0284 6848c627 fetcht 1 ,mem_power_ctrl_pac_succ_cnt_init 
+0285 98467c00 isub temp ,null 
+0286 24628000 nrtn zero 
+0287 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
 
 p_power_ctrl_txpower_decrs:
-0279 6848c624 fetcht 1 ,mem_rssi_avg_received 
-027a 6fe0c628 fetch 1 ,mem_rssi_dis_min_24g 
-027b c513027d bmark1 mark_24g ,p_power_ctrl_txpower_decrs_next 
-027c 6fe0c62b fetch 1 ,mem_rssi_dis_min_ble 
+0288 6848c624 fetcht 1 ,mem_rssi_avg_received 
+0289 6fe0c628 fetch 1 ,mem_rssi_dis_min_24g 
+028a c513028c bmark1 mark_24g ,p_power_ctrl_txpower_decrs_next 
+028b 6fe0c62b fetch 1 ,mem_rssi_dis_min_ble 
 
 p_power_ctrl_txpower_decrs_next:
-027d 98467c00 isub temp ,null 
-027e 24610000 nrtn positive 
-027f 6fe0c625 fetch 1 ,mem_power_ctrl_level 
-0280 c0003715 beq 0 ,power_ctrl_decrs_level0 
-0281 1fe0ffff increase -1 ,pdata 
-0282 67e0c625 store 1 ,mem_power_ctrl_level 
-0283 c001028f beq 2 ,p_power_ctrl_decrs_level2 
-0284 c000b70b beq 1 ,power_ctrl_decrs_level1 
-0285 20203715 branch power_ctrl_decrs_level0 
+028c 98467c00 isub temp ,null 
+028d 24610000 nrtn positive 
+028e 6fe0c625 fetch 1 ,mem_power_ctrl_level 
+028f c0003715 beq 0 ,power_ctrl_decrs_level0 
+0290 1fe0ffff increase -1 ,pdata 
+0291 67e0c625 store 1 ,mem_power_ctrl_level 
+0292 c001029e beq 2 ,p_power_ctrl_decrs_level2 
+0293 c000b70b beq 1 ,power_ctrl_decrs_level1 
+0294 20203715 branch power_ctrl_decrs_level0 
 
 p_power_ctrl_txpower_incrs_force:
-0286 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+0295 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
 
 p_power_ctrl_txpower_incrs:
-0287 6fe0c625 fetch 1 ,mem_power_ctrl_level 
-0288 c001828d beq 3 ,p_power_ctrl_incrs_level3 
-0289 1fe0fe01 increase 1 ,pdata 
-028a 67e0c625 store 1 ,mem_power_ctrl_level 
-028b c000b70b beq 1 ,power_ctrl_incrs_level1 
-028c c001028f beq 2 ,p_power_ctrl_incrs_level2 
+0296 6fe0c625 fetch 1 ,mem_power_ctrl_level 
+0297 c001829c beq 3 ,p_power_ctrl_incrs_level3 
+0298 1fe0fe01 increase 1 ,pdata 
+0299 67e0c625 store 1 ,mem_power_ctrl_level 
+029a c000b70b beq 1 ,power_ctrl_incrs_level1 
+029b c001029e beq 2 ,p_power_ctrl_incrs_level2 
 
 p_power_ctrl_incrs_level3:
-028d 70414105 jam tx_power_5db ,mem_tx_power 
-028e 20600000 rtn 
+029c 70414105 jam tx_power_5db ,mem_tx_power 
+029d 20600000 rtn 
 
 p_power_ctrl_decrs_level2:
 
 p_power_ctrl_incrs_level2:
-028f 70414103 jam tx_power_3db ,mem_tx_power 
-0290 20600000 rtn 
+029e 70414103 jam tx_power_3db ,mem_tx_power 
+029f 20600000 rtn 
 
 p_mouse_cb_fuction:
-0291 58006235 setarg mouse_24g_short_sleep 
-0292 67e145f8 store 2 ,mem_cb_24g_transmit_short_sleep 
-0293 5800029b setarg p_mouse_24g_long_sleep 
-0294 67e145fa store 2 ,mem_cb_24g_transmit_long_sleep 
-0295 580002b0 setarg p_mouse_24g_before_lpm_sleep 
-0296 67e143e9 store 2 ,mem_cb_before_lpm_sleep 
-0297 202053f3 branch mouse_cb_fuction + 7 
+02a0 58006235 setarg mouse_24g_short_sleep 
+02a1 67e145f8 store 2 ,mem_cb_24g_transmit_short_sleep 
+02a2 5800622b setarg mouse_24g_long_sleep 
+02a3 67e145fa store 2 ,mem_cb_24g_transmit_long_sleep 
+02a4 580002b2 setarg p_mouse_24g_before_lpm_sleep 
+02a5 67e143e9 store 2 ,mem_cb_before_lpm_sleep 
+02a6 202053f3 branch mouse_cb_fuction + 7 
 
 p_soft_reset:
-0298 20800000 clear_stack 
-0299 2055e004 call mouse_wheel_gpio_init ,wake 
-029a 20202003 branch soft_reset + 2 
-
-p_mouse_24g_long_sleep:
-029b 204036b4 call g24_lpm_wait 
-029c 24740000 nrtn user 
-029d 70477c01 jam 1 ,mem_mouse_24g_long_sleep_flag 
-029e 204036be call g24_setgpio_lpm_before 
-029f 70477200 jam 0 ,mem_mouse_24g_sleep_miss 
-02a0 204062aa call mouse_24g_send_time_long_wake 
-02a1 6fe0c73f fetch 1 ,mem_sensor_shutdown_flag 
-02a2 245a54dc ncall mouse_setgpio_hibernate ,blank 
-02a3 204002a6 call p_mouse_wheel_set_low_pullup 
-02a4 6fe245af fetch 4 ,mem_24g_enter_hibernate 
-02a5 20203622 branch g24_long_seep2 
-
-p_mouse_wheel_set_low_pullup:
-02a6 6fe0c73f fetch 1 ,mem_sensor_shutdown_flag 
-02a7 247a0000 nrtn blank 
-02a8 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
-02a9 20406f0f call gpio_set_high_impedance 
-02aa 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
-02ab 20406ec6 call gpio_set_low_pullup 
-02ac 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
-02ad 20406f0f call gpio_set_high_impedance 
-02ae 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
-02af 20206ec6 branch gpio_set_low_pullup 
+02a7 2435a002 nbranch soft_reset + 1 ,wake 
+02a8 37d98200 until null ,lpo_edge 
+02a9 37d98200 until null ,lpo_edge 
+02aa 20800000 clear_stack 
+02ab 205582ad call p_mouse_wheel_init_set ,wake 
+02ac 20202003 branch soft_reset + 2 
+
+p_mouse_wheel_init_set:
+02ad 2040021d call p_mouse_puchk_disable 
+02ae 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
+02af 20406edd call gpio_config_input 
+02b0 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
+02b1 20206edd branch gpio_config_input 
 
 p_mouse_24g_before_lpm_sleep:
-02b0 20600000 rtn 
+02b2 20600000 rtn 
 
 p_mouse_load_device_info_check:
-02b1 20400442 call p_mouse_store_normal_tx_power 
-02b2 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02b3 c289dd60 bbit1 mouse_enable_eeprom ,mouse_load_eeprom_info_check 
-02b4 c2895d6e bbit1 mouse_enable_flash ,mouse_load_flash_info_check 
-02b5 c28a02b7 bbit1 mouse_enable_otp ,p_mouse_load_otp_info_check 
-02b6 20600000 rtn 
+02b3 20400465 call p_mouse_store_normal_tx_power 
+02b4 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02b5 c289dd60 bbit1 mouse_enable_eeprom ,mouse_load_eeprom_info_check 
+02b6 c2895d6e bbit1 mouse_enable_flash ,mouse_load_flash_info_check 
+02b7 c28a02b9 bbit1 mouse_enable_otp ,p_mouse_load_otp_info_check 
+02b8 20600000 rtn 
 
 p_mouse_load_otp_info_check:
-02b7 204002c2 call p_mouse_device_flag_temp_store 
-02b8 20405e43 call mouse_read_otp_dpi 
-02b9 20405db4 call mouse_read_otp_device_flag 
-02ba 204002d6 call p_mouse_device_flag_check 
-02bb 204002bf call p_mouse_select_device_by_switch_check 
-02bc 204002c5 call p_mouse_read_otp_device_info 
-02bd 204002de call p_mouse_read_otp_le_addr_increase_count_info 
-02be 20205daa branch mouse_otp_load_app_initflag 
+02b9 204002c4 call p_mouse_device_flag_temp_store 
+02ba 20405e43 call mouse_read_otp_dpi 
+02bb 20405db4 call mouse_read_otp_device_flag 
+02bc 204002d8 call p_mouse_device_flag_check 
+02bd 204002c1 call p_mouse_select_device_by_switch_check 
+02be 204002c7 call p_mouse_read_otp_device_info 
+02bf 204002e0 call p_mouse_read_otp_le_addr_increase_count_info 
+02c0 20205daa branch mouse_otp_load_app_initflag 
 
 p_mouse_select_device_by_switch_check:
-02bf 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02c0 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
-02c1 204004aa call p_mouse_check_select_device_by_switch 
+02c1 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02c2 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
+02c3 204004cd call p_mouse_check_select_device_by_switch 
 
 p_mouse_device_flag_temp_store:
-02c2 6fe0c666 fetch 1 ,mem_device_flag 
-02c3 67e0ca06 store 1 ,mem_mouse_device_flag_temp 
-02c4 20600000 rtn 
+02c4 6fe0c666 fetch 1 ,mem_device_flag 
+02c5 67e0ca06 store 1 ,mem_mouse_device_flag_temp 
+02c6 20600000 rtn 
 
 p_mouse_read_otp_device_info:
-02c5 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02c6 c29f5dd1 bbit1 mouse_enable_24g_first_auto_pairing ,mouse_read_otp_le_device1 
-02c7 20205dcc branch mouse_read_otp_device_info 
+02c7 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02c8 c29f5dd1 bbit1 mouse_enable_24g_first_auto_pairing ,mouse_read_otp_le_device1 
+02c9 20205dcc branch mouse_read_otp_device_info 
 
 p_mouse_app_initflag_check:
-02c8 6fe1468e fetch 2 ,mem_store_flag 
-02c9 d840aa55 arg eeprom_init_flag ,temp 
-02ca 98467c00 isub temp ,null 
-02cb 2022834b branch p_mouse_load_device_info ,zero 
-02cc 6049468e storet 2 ,mem_store_flag 
-02cd 20405c9c call mouse_ble_init_address 
-02ce 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
-02cf 67e0c666 store 1 ,mem_device_flag 
-02d0 20405c8c call mouse_load_default_dpi 
-02d1 58001122 setarg 0x1122 
-02d2 67e14695 store 2 ,mem_random_addr_increase_count 
+02ca 6fe1468e fetch 2 ,mem_store_flag 
+02cb d840aa55 arg eeprom_init_flag ,temp 
+02cc 98467c00 isub temp ,null 
+02cd 2022834d branch p_mouse_load_device_info ,zero 
+02ce 6049468e storet 2 ,mem_store_flag 
+02cf 20405c9c call mouse_ble_init_address 
+02d0 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
+02d1 67e0c666 store 1 ,mem_device_flag 
+02d2 20405c8c call mouse_load_default_dpi 
+02d3 58001122 setarg 0x1122 
+02d4 67e14695 store 2 ,mem_random_addr_increase_count 
 
 p_mouse_device_flag_temp_load:
-02d3 6fe0ca06 fetch 1 ,mem_mouse_device_flag_temp 
-02d4 67e0c666 store 1 ,mem_device_flag 
-02d5 20600000 rtn 
+02d5 6fe0ca06 fetch 1 ,mem_mouse_device_flag_temp 
+02d6 67e0c666 store 1 ,mem_device_flag 
+02d7 20600000 rtn 
 
 p_mouse_device_flag_check:
-02d6 6fe0c666 fetch 1 ,mem_device_flag 
-02d7 1fe67c00 sub pdata ,0 ,null 
-02d8 202282d3 branch p_mouse_device_flag_temp_load ,zero 
-02d9 1fe67c04 sub pdata ,4 ,null 
-02da 202282dc branch p_mouse_24g_init ,zero 
-02db 20610000 rtn positive 
+02d8 6fe0c666 fetch 1 ,mem_device_flag 
+02d9 1fe67c00 sub pdata ,0 ,null 
+02da 202282d5 branch p_mouse_device_flag_temp_load ,zero 
+02db 1fe67c04 sub pdata ,4 ,null 
+02dc 202282de branch p_mouse_24g_init ,zero 
+02dd 20610000 rtn positive 
 
 p_mouse_24g_init:
-02dc 70466600 jam mode_24g_device ,mem_device_flag 
-02dd 20600000 rtn 
+02de 70466600 jam mode_24g_device ,mem_device_flag 
+02df 20600000 rtn 
 
 p_mouse_read_otp_le_addr_increase_count_info:
-02de 6fe0c666 fetch 1 ,mem_device_flag 
-02df c1000000 rtneq mode_24g_device 
-02e0 6a4149fe fetchr regb ,2 ,mem_otp_offset_le_addr_increase_count 
-02e1 1a422600 copy regb ,regc 
+02e0 6fe0c666 fetch 1 ,mem_device_flag 
+02e1 c1000000 rtneq mode_24g_device 
+02e2 6a4149fe fetchr regb ,2 ,mem_otp_offset_le_addr_increase_count 
+02e3 1a422600 copy regb ,regc 
 
 p_mouse_read_otp_le_addr_increase_count_loop:
-02e2 20405e3d call mouse_read_otp_le_addr_increase_count_common 
-02e3 6fe149e0 fetch 2 ,mem_random_addr_increase_count_temp 
-02e4 203a02ec branch p_mouse_le_addr_increase_count_load ,blank 
-02e5 67e149de store 2 ,mem_random_addr_increase_count_last 
-02e6 1a60a602 increase 2 ,regc 
-02e7 6fe14a00 fetch 2 ,mem_otp_offset_le_addr_increase_count_end 
-02e8 9a667c00 isub regc ,null 
-02e9 242102ec nbranch p_mouse_le_addr_increase_count_load ,positive 
-02ea 1a622400 copy regc ,regb 
-02eb 202002e2 branch p_mouse_read_otp_le_addr_increase_count_loop 
+02e4 20405e3d call mouse_read_otp_le_addr_increase_count_common 
+02e5 6fe149e0 fetch 2 ,mem_random_addr_increase_count_temp 
+02e6 203a02ee branch p_mouse_le_addr_increase_count_load ,blank 
+02e7 67e149de store 2 ,mem_random_addr_increase_count_last 
+02e8 1a60a602 increase 2 ,regc 
+02e9 6fe14a00 fetch 2 ,mem_otp_offset_le_addr_increase_count_end 
+02ea 9a667c00 isub regc ,null 
+02eb 242102ee nbranch p_mouse_le_addr_increase_count_load ,positive 
+02ec 1a622400 copy regc ,regb 
+02ed 202002e4 branch p_mouse_read_otp_le_addr_increase_count_loop 
 
 p_mouse_le_addr_increase_count_load:
-02ec 6fe149de fetch 2 ,mem_random_addr_increase_count_last 
-02ed 67e14695 store 2 ,mem_random_addr_increase_count 
-02ee 20600000 rtn 
+02ee 6fe149de fetch 2 ,mem_random_addr_increase_count_last 
+02ef 67e14695 store 2 ,mem_random_addr_increase_count 
+02f0 20600000 rtn 
 
 p_mouse_store_device_info:
-02ef 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02f0 c289dcb1 bbit1 mouse_enable_eeprom ,mouse_store_eeprom_device_info 
-02f1 c2895cb9 bbit1 mouse_enable_flash ,mouse_store_flash_device_info 
-02f2 c28a02f4 bbit1 mouse_enable_otp ,p_mouse_store_otp_device_info 
-02f3 20600000 rtn 
+02f1 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02f2 c289dcb1 bbit1 mouse_enable_eeprom ,mouse_store_eeprom_device_info 
+02f3 c2895cb9 bbit1 mouse_enable_flash ,mouse_store_flash_device_info 
+02f4 c28a02f6 bbit1 mouse_enable_otp ,p_mouse_store_otp_device_info 
+02f5 20600000 rtn 
 
 p_mouse_store_otp_device_info:
-02f4 204002f7 call p_mouse_write_otp_locall_addr 
-02f5 204002fc call p_mouse_write_otp_device_flag 
-02f6 20205cc1 branch mouse_store_otp_device_info + 1 
+02f6 204002f9 call p_mouse_write_otp_locall_addr 
+02f7 204002fe call p_mouse_write_otp_device_flag 
+02f8 20205cc1 branch mouse_store_otp_device_info + 1 
 
 p_mouse_write_otp_locall_addr:
-02f7 6fe0c666 fetch 1 ,mem_device_flag 
-02f8 c1000000 rtneq mode_24g_device 
-02f9 c0008323 beq mode_bt_device1 ,p_mouse_write_otp_le_locall_addr1 
-02fa c0010337 beq mode_bt_device2 ,p_mouse_write_otp_le_locall_addr2 
-02fb 20600000 rtn 
+02f9 6fe0c666 fetch 1 ,mem_device_flag 
+02fa c1000000 rtneq mode_24g_device 
+02fb c0008325 beq mode_bt_device1 ,p_mouse_write_otp_le_locall_addr1 
+02fc c0010339 beq mode_bt_device2 ,p_mouse_write_otp_le_locall_addr2 
+02fd 20600000 rtn 
 
 p_mouse_write_otp_device_flag:
-02fc 6a4149e2 fetchr regb ,2 ,mem_otp_offset_device_flag 
-02fd 1a422600 copy regb ,regc 
+02fe 6a4149e2 fetchr regb ,2 ,mem_otp_offset_device_flag 
+02ff 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_device_flag_loop:
-02fe 20405dc0 call mouse_read_otp_device_flag_common 
-02ff 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
-0300 203a0308 branch p_mouse_device_flag_store ,blank 
-0301 67e0c9a0 store 1 ,mem_device_flag_last 
-0302 1a60a601 increase 1 ,regc 
-0303 6fe149e4 fetch 2 ,mem_otp_offset_device_flag_end 
-0304 9a667c00 isub regc ,null 
-0305 24610000 nrtn positive 
-0306 1a622400 copy regc ,regb 
-0307 202002fe branch p_mouse_write_otp_device_flag_loop 
+0300 20405dc0 call mouse_read_otp_device_flag_common 
+0301 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
+0302 203a030a branch p_mouse_device_flag_store ,blank 
+0303 67e0c9a0 store 1 ,mem_device_flag_last 
+0304 1a60a601 increase 1 ,regc 
+0305 6fe149e4 fetch 2 ,mem_otp_offset_device_flag_end 
+0306 9a667c00 isub regc ,null 
+0307 24610000 nrtn positive 
+0308 1a622400 copy regc ,regb 
+0309 20200300 branch p_mouse_write_otp_device_flag_loop 
 
 p_mouse_device_flag_store:
-0308 6fe0c9a0 fetch 1 ,mem_device_flag_last 
-0309 1fe17ef0 and pdata ,0xf0 ,pdata 
-030a 203a0312 branch p_mouse_device_flag_store_check ,blank 
-030b 6fe0c666 fetch 1 ,mem_device_flag 
-030c 20400320 call p_mouse_device_flag_otp_store_judge 
-030d 67e0c9a2 store 1 ,mem_device_flag_value 
-
-p_mouse_devoce_flag_store_end:
-030e df200001 arg 1 ,loopcnt 
-030f 1a622400 copy regc ,regb 
-0310 da2049a2 arg mem_device_flag_value ,rega 
-0311 20206b45 branch otp_write 
+030a 6fe0c9a0 fetch 1 ,mem_device_flag_last 
+030b 1fe17ef0 and pdata ,0xf0 ,pdata 
+030c 203a0314 branch p_mouse_device_flag_store_check ,blank 
+030d 6fe0c666 fetch 1 ,mem_device_flag 
+030e 20400322 call p_mouse_device_flag_otp_store_judge 
+030f 67e0c9a2 store 1 ,mem_device_flag_value 
+
+p_mouse_device_flag_store_end:
+0310 df200001 arg 1 ,loopcnt 
+0311 1a622400 copy regc ,regb 
+0312 da2049a2 arg mem_device_flag_value ,rega 
+0313 20206b45 branch otp_write 
 
 p_mouse_device_flag_store_check:
-0312 6848c9a0 fetcht 1 ,mem_device_flag_last 
-0313 6fe0c666 fetch 1 ,mem_device_flag 
-0314 20400320 call p_mouse_device_flag_otp_store_judge 
-0315 98467c00 isub temp ,null 
-0316 20628000 rtn zero 
-0317 1ff27e00 lshift4 pdata ,pdata 
-0318 9840fe00 iadd temp ,pdata 
-0319 67e0c9a2 store 1 ,mem_device_flag_value 
-031a 1a627e00 copy regc ,pdata 
-031b 684949e2 fetcht 2 ,mem_otp_offset_device_flag 
-031c 98467c00 isub temp ,null 
-031d 2022830e branch p_mouse_devoce_flag_store_end ,zero 
-031e 1a60a7ff increase -1 ,regc 
-031f 2020030e branch p_mouse_devoce_flag_store_end 
+0314 6848c9a0 fetcht 1 ,mem_device_flag_last 
+0315 6fe0c666 fetch 1 ,mem_device_flag 
+0316 20400322 call p_mouse_device_flag_otp_store_judge 
+0317 98467c00 isub temp ,null 
+0318 20628000 rtn zero 
+0319 1ff27e00 lshift4 pdata ,pdata 
+031a 9840fe00 iadd temp ,pdata 
+031b 67e0c9a2 store 1 ,mem_device_flag_value 
+031c 1a627e00 copy regc ,pdata 
+031d 684949e2 fetcht 2 ,mem_otp_offset_device_flag 
+031e 98467c00 isub temp ,null 
+031f 20228310 branch p_mouse_device_flag_store_end ,zero 
+0320 1a60a7ff increase -1 ,regc 
+0321 20200310 branch p_mouse_device_flag_store_end 
 
 p_mouse_device_flag_otp_store_judge:
-0320 c1800000 rtnne mode_24g_device 
-0321 1fe0fe04 increase 4 ,pdata 
-0322 20600000 rtn 
+0322 c1800000 rtnne mode_24g_device 
+0323 1fe0fe04 increase 4 ,pdata 
+0324 20600000 rtn 
 
 p_mouse_write_otp_le_locall_addr1:
-0323 6a4149ee fetchr regb ,2 ,mem_otp_offset_le_locall_addr1 
-0324 1a422600 copy regb ,regc 
+0325 6a4149ee fetchr regb ,2 ,mem_otp_offset_le_locall_addr1 
+0326 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_le_locall_addr1_loop:
-0325 20405df3 call mouse_read_otp_le_locall_addr1_common 
-0326 6fe349b5 fetch 6 ,mem_mouse_le_locall_addr1_temp 
-0327 203a032f branch p_mouse_le_local_addr1_store ,blank 
-0328 67e349af store 6 ,mem_mouse_le_locall_addr1_last 
-0329 1a60a606 increase 6 ,regc 
-032a 6fe149f0 fetch 2 ,mem_otp_offset_le_locall_addr1_end 
-032b 9a667c00 isub regc ,null 
-032c 24610000 nrtn positive 
-032d 1a622400 copy regc ,regb 
-032e 20200325 branch p_mouse_write_otp_le_locall_addr1_loop 
+0327 20405df3 call mouse_read_otp_le_locall_addr1_common 
+0328 6fe349b5 fetch 6 ,mem_mouse_le_locall_addr1_temp 
+0329 203a0331 branch p_mouse_le_local_addr1_store ,blank 
+032a 67e349af store 6 ,mem_mouse_le_locall_addr1_last 
+032b 1a60a606 increase 6 ,regc 
+032c 6fe149f0 fetch 2 ,mem_otp_offset_le_locall_addr1_end 
+032d 9a667c00 isub regc ,null 
+032e 24610000 nrtn positive 
+032f 1a622400 copy regc ,regb 
+0330 20200327 branch p_mouse_write_otp_le_locall_addr1_loop 
 
 p_mouse_le_local_addr1_store:
-032f 6fe349af fetch 6 ,mem_mouse_le_locall_addr1_last 
-0330 684b466e fetcht 6 ,mem_device1_locall_addr 
-0331 98467c00 isub temp ,null 
-0332 20628000 rtn zero 
-0333 df200006 arg 6 ,loopcnt 
-0334 da20466e arg mem_device1_locall_addr ,rega 
-0335 1a622400 copy regc ,regb 
-0336 20206b45 branch otp_write 
+0331 6fe349af fetch 6 ,mem_mouse_le_locall_addr1_last 
+0332 684b466e fetcht 6 ,mem_device1_locall_addr 
+0333 98467c00 isub temp ,null 
+0334 20628000 rtn zero 
+0335 df200006 arg 6 ,loopcnt 
+0336 da20466e arg mem_device1_locall_addr ,rega 
+0337 1a622400 copy regc ,regb 
+0338 20206b45 branch otp_write 
 
 p_mouse_write_otp_le_locall_addr2:
-0337 6a4149f6 fetchr regb ,2 ,mem_otp_offset_le_locall_addr2 
-0338 1a422600 copy regb ,regc 
+0339 6a4149f6 fetchr regb ,2 ,mem_otp_offset_le_locall_addr2 
+033a 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_le_locall_addr2_loop:
-0339 20405e17 call mouse_read_otp_le_locall_addr2_common 
-033a 6fe349cd fetch 6 ,mem_mouse_le_locall_addr2_temp 
-033b 203a0343 branch p_mouse_le_local_addr2_store ,blank 
-033c 67e349c7 store 6 ,mem_mouse_le_locall_addr2_last 
-033d 1a60a606 increase 6 ,regc 
-033e 6fe149f8 fetch 2 ,mem_otp_offset_le_locall_addr2_end 
-033f 9a667c00 isub regc ,null 
-0340 24610000 nrtn positive 
-0341 1a622400 copy regc ,regb 
-0342 20200339 branch p_mouse_write_otp_le_locall_addr2_loop 
+033b 20405e17 call mouse_read_otp_le_locall_addr2_common 
+033c 6fe349cd fetch 6 ,mem_mouse_le_locall_addr2_temp 
+033d 203a0345 branch p_mouse_le_local_addr2_store ,blank 
+033e 67e349c7 store 6 ,mem_mouse_le_locall_addr2_last 
+033f 1a60a606 increase 6 ,regc 
+0340 6fe149f8 fetch 2 ,mem_otp_offset_le_locall_addr2_end 
+0341 9a667c00 isub regc ,null 
+0342 24610000 nrtn positive 
+0343 1a622400 copy regc ,regb 
+0344 2020033b branch p_mouse_write_otp_le_locall_addr2_loop 
 
 p_mouse_le_local_addr2_store:
-0343 6fe349c7 fetch 6 ,mem_mouse_le_locall_addr2_last 
-0344 684b467b fetcht 6 ,mem_device2_locall_addr 
-0345 98467c00 isub temp ,null 
-0346 20628000 rtn zero 
-0347 df200006 arg 6 ,loopcnt 
-0348 da20467b arg mem_device2_locall_addr ,rega 
-0349 1a622400 copy regc ,regb 
-034a 20206b45 branch otp_write 
+0345 6fe349c7 fetch 6 ,mem_mouse_le_locall_addr2_last 
+0346 684b467b fetcht 6 ,mem_device2_locall_addr 
+0347 98467c00 isub temp ,null 
+0348 20628000 rtn zero 
+0349 df200006 arg 6 ,loopcnt 
+034a da20467b arg mem_device2_locall_addr ,rega 
+034b 1a622400 copy regc ,regb 
+034c 20206b45 branch otp_write 
 
 p_mouse_load_device_info:
-034b 20400384 call p_mouse_le_locall_addr_init_check 
-034c 2040039c call p_mouse_select_reconn_device 
-034d 2040034f call p_mouse_otp_load_dpi 
-034e 20205c90 branch mouse_load_device_info + 1 
+034d 20400386 call p_mouse_le_locall_addr_init_check 
+034e 2040039e call p_mouse_select_reconn_device 
+034f 20400351 call p_mouse_otp_load_dpi 
+0350 20205c90 branch mouse_load_device_info + 1 
 
 p_mouse_otp_load_dpi:
-034f 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0350 c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
-0351 6fe0c690 fetch 1 ,mem_mouse_dpi 
-0352 c0005c94 beq 0 ,mouse_otp_load_dpi 
-0353 c0030355 beq 6 ,p_mouse_dpi_reinit 
-0354 20600000 rtn 
+0351 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0352 c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
+0353 6fe0c690 fetch 1 ,mem_mouse_dpi 
+0354 c0005c94 beq 0 ,mouse_otp_load_dpi 
+0355 c0030357 beq 6 ,p_mouse_dpi_reinit 
+0356 20600000 rtn 
 
 p_mouse_dpi_reinit:
-0355 70469000 jam mouse_dpi_level1 ,mem_mouse_dpi 
-0356 20600000 rtn 
+0357 70469000 jam mouse_dpi_level1 ,mem_mouse_dpi 
+0358 20600000 rtn 
 
 p_mouse_store_dpi_info_check:
-0357 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0358 c289dcb5 bbit1 mouse_enable_eeprom ,mouse_store_eerpom_dpi 
-0359 c28a035b bbit1 mouse_enable_otp ,p_mouse_store_otp_dpi 
-035a 20600000 rtn 
+0359 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+035a c289dcb5 bbit1 mouse_enable_eeprom ,mouse_store_eerpom_dpi 
+035b c28a035d bbit1 mouse_enable_otp ,p_mouse_store_otp_dpi 
+035c 20600000 rtn 
 
 p_mouse_store_otp_dpi:
-035b 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-035c c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
-035d 6a4149fa fetchr regb ,2 ,mem_otp_offset_dpi 
-035e 1a422600 copy regb ,regc 
+035d 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+035e c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
+035f 6a4149fa fetchr regb ,2 ,mem_otp_offset_dpi 
+0360 1a422600 copy regb ,regc 
 
 p_mouse_otp_store_dpi_loop:
-035f 20405e51 call mouse_read_otp_dpi_common 
-0360 6fe0c9d4 fetch 1 ,mem_mouse_dpi_temp 
-0361 203a0369 branch p_mouse_otp_dpi_store ,blank 
-0362 67e0c9d3 store 1 ,mem_mouse_dpi_last 
-0363 1a60a601 increase 1 ,regc 
-0364 6fe149fc fetch 2 ,mem_otp_offset_dpi_end 
-0365 9a667c00 isub regc ,null 
-0366 24610000 nrtn positive 
-0367 1a622400 copy regc ,regb 
-0368 2020035f branch p_mouse_otp_store_dpi_loop 
+0361 20405e51 call mouse_read_otp_dpi_common 
+0362 6fe0c9d4 fetch 1 ,mem_mouse_dpi_temp 
+0363 203a036b branch p_mouse_otp_dpi_store ,blank 
+0364 67e0c9d3 store 1 ,mem_mouse_dpi_last 
+0365 1a60a601 increase 1 ,regc 
+0366 6fe149fc fetch 2 ,mem_otp_offset_dpi_end 
+0367 9a667c00 isub regc ,null 
+0368 24610000 nrtn positive 
+0369 1a622400 copy regc ,regb 
+036a 20200361 branch p_mouse_otp_store_dpi_loop 
 
 p_mouse_otp_dpi_store:
-0369 6fe0c9d3 fetch 1 ,mem_mouse_dpi_last 
-036a 1fe17ef0 and pdata ,0xf0 ,pdata 
-036b 203a0373 branch p_mouse_dpi_store_last_check ,blank 
-036c 6fe0c690 fetch 1 ,mem_mouse_dpi 
-036d 20400381 call p_mouse_dpi_otp_store_judge 
-036e 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
+036b 6fe0c9d3 fetch 1 ,mem_mouse_dpi_last 
+036c 1fe17ef0 and pdata ,0xf0 ,pdata 
+036d 203a0375 branch p_mouse_dpi_store_last_check ,blank 
+036e 6fe0c690 fetch 1 ,mem_mouse_dpi 
+036f 20400383 call p_mouse_dpi_otp_store_judge 
+0370 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
 
 p_mouse_dpi_store_end:
-036f df200001 arg 1 ,loopcnt 
-0370 1a622400 copy regc ,regb 
-0371 da2049d5 arg mem_mouse_otp_dpi_value ,rega 
-0372 20206b45 branch otp_write 
+0371 df200001 arg 1 ,loopcnt 
+0372 1a622400 copy regc ,regb 
+0373 da2049d5 arg mem_mouse_otp_dpi_value ,rega 
+0374 20206b45 branch otp_write 
 
 p_mouse_dpi_store_last_check:
-0373 6848c9d3 fetcht 1 ,mem_mouse_dpi_last 
-0374 6fe0c690 fetch 1 ,mem_mouse_dpi 
-0375 20400381 call p_mouse_dpi_otp_store_judge 
-0376 98467c00 isub temp ,null 
-0377 20628000 rtn zero 
-0378 1ff27e00 lshift4 pdata ,pdata 
-0379 9840fe00 iadd temp ,pdata 
-037a 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
-037b 1a627e00 copy regc ,pdata 
-037c 684949fa fetcht 2 ,mem_otp_offset_dpi 
-037d 98467c00 isub temp ,null 
-037e 2022836f branch p_mouse_dpi_store_end ,zero 
-037f 1a60a7ff increase -1 ,regc 
-0380 2020036f branch p_mouse_dpi_store_end 
+0375 6848c9d3 fetcht 1 ,mem_mouse_dpi_last 
+0376 6fe0c690 fetch 1 ,mem_mouse_dpi 
+0377 20400383 call p_mouse_dpi_otp_store_judge 
+0378 98467c00 isub temp ,null 
+0379 20628000 rtn zero 
+037a 1ff27e00 lshift4 pdata ,pdata 
+037b 9840fe00 iadd temp ,pdata 
+037c 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
+037d 1a627e00 copy regc ,pdata 
+037e 684949fa fetcht 2 ,mem_otp_offset_dpi 
+037f 98467c00 isub temp ,null 
+0380 20228371 branch p_mouse_dpi_store_end ,zero 
+0381 1a60a7ff increase -1 ,regc 
+0382 20200371 branch p_mouse_dpi_store_end 
 
 p_mouse_dpi_otp_store_judge:
-0381 c1800000 rtnne mouse_dpi_level1 
-0382 1fe0fe06 increase 6 ,pdata 
-0383 20600000 rtn 
+0383 c1800000 rtnne mouse_dpi_level1 
+0384 1fe0fe06 increase 6 ,pdata 
+0385 20600000 rtn 
 
 p_mouse_le_locall_addr_init_check:
-0384 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0385 c29f038b bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_le_addr1_init_check 
-0386 6fe0c666 fetch 1 ,mem_device_flag 
-0387 c1000000 rtneq mode_24g_device 
-0388 c000838b beq mode_bt_device1 ,p_mouse_le_addr1_init_check 
-0389 c0010392 beq mode_bt_device2 ,p_mouse_le_addr2_init_check 
-038a 20600000 rtn 
+0386 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0387 c29f038d bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_le_addr1_init_check 
+0388 6fe0c666 fetch 1 ,mem_device_flag 
+0389 c1000000 rtneq mode_24g_device 
+038a c000838d beq mode_bt_device1 ,p_mouse_le_addr1_init_check 
+038b c0010394 beq mode_bt_device2 ,p_mouse_le_addr2_init_check 
+038c 20600000 rtn 
 
 p_mouse_le_addr1_init_check:
-038b 6fe3466e fetch 6 ,mem_device1_locall_addr 
-038c 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
-038d 98467c00 isub temp ,null 
-038e 24628000 nrtn zero 
-038f 6fe342db fetch 6 ,mem_le_lap 
-0390 67e3466e store 6 ,mem_device1_locall_addr 
-0391 20600000 rtn 
+038d 6fe3466e fetch 6 ,mem_device1_locall_addr 
+038e 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
+038f 98467c00 isub temp ,null 
+0390 24628000 nrtn zero 
+0391 6fe342db fetch 6 ,mem_le_lap 
+0392 67e3466e store 6 ,mem_device1_locall_addr 
+0393 20600000 rtn 
 
 p_mouse_le_addr2_init_check:
-0392 6fe3466e fetch 6 ,mem_device1_locall_addr 
-0393 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
-0394 98467c00 isub temp ,null 
-0395 24628000 nrtn zero 
-0396 6fe342db fetch 6 ,mem_le_lap 
-0397 1fe0ff00 add pdata ,0x0100 ,pdata 
-0398 67e3466e store 6 ,mem_device1_locall_addr 
-0399 20600000 rtn 
+0394 6fe3466e fetch 6 ,mem_device1_locall_addr 
+0395 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
+0396 98467c00 isub temp ,null 
+0397 24628000 nrtn zero 
+0398 6fe342db fetch 6 ,mem_le_lap 
+0399 1fe0ff00 add pdata ,0x0100 ,pdata 
+039a 67e3466e store 6 ,mem_device1_locall_addr 
+039b 20600000 rtn 
 
 p_mouse_buletooth_fast_conn_end:
-039a 2040039c call p_mouse_select_reconn_device 
-039b 20205a9c branch mouse_buletooth_fast_conn_end + 2 
+039c 2040039e call p_mouse_select_reconn_device 
+039d 20205a9c branch mouse_buletooth_fast_conn_end + 2 
 
 p_mouse_select_reconn_device:
-039c 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-039d c30a5c6f bbit0 mouse_enable_otp ,mouse_select_reconn_device 
-039e c29f03a4 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_load_le_device1 
+039e 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+039f c30a5c6f bbit0 mouse_enable_otp ,mouse_select_reconn_device 
+03a0 c29f03a6 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_load_le_device1 
 
 p_mouse_select_reconn_device_start:
-039f 6fe0c666 fetch 1 ,mem_device_flag 
-03a0 c1000000 rtneq mode_24g_device 
-03a1 c00083a4 beq mode_bt_device1 ,p_mouse_load_le_device1 
-03a2 c00103a9 beq mode_bt_device2 ,p_mouse_load_le_device2 
-03a3 20600000 rtn 
+03a1 6fe0c666 fetch 1 ,mem_device_flag 
+03a2 c1000000 rtneq mode_24g_device 
+03a3 c00083a6 beq mode_bt_device1 ,p_mouse_load_le_device1 
+03a4 c00103ab beq mode_bt_device2 ,p_mouse_load_le_device2 
+03a5 20600000 rtn 
 
 p_mouse_load_le_device1:
-03a4 6fe34668 fetch 6 ,mem_device1_addr 
-03a5 67e34116 store 6 ,mem_hci_plap 
-03a6 6fe3466e fetch 6 ,mem_device1_locall_addr 
-03a7 67e342db store 6 ,mem_le_lap 
-03a8 20600000 rtn 
+03a6 6fe34668 fetch 6 ,mem_device1_addr 
+03a7 67e34116 store 6 ,mem_hci_plap 
+03a8 6fe3466e fetch 6 ,mem_device1_locall_addr 
+03a9 67e342db store 6 ,mem_le_lap 
+03aa 20600000 rtn 
 
 p_mouse_load_le_device2:
-03a9 6fe34675 fetch 6 ,mem_device2_addr 
-03aa 67e34116 store 6 ,mem_hci_plap 
-03ab 6fe3467b fetch 6 ,mem_device2_locall_addr 
-03ac 67e342db store 6 ,mem_le_lap 
-03ad 20600000 rtn 
+03ab 6fe34675 fetch 6 ,mem_device2_addr 
+03ac 67e34116 store 6 ,mem_hci_plap 
+03ad 6fe3467b fetch 6 ,mem_device2_locall_addr 
+03ae 67e342db store 6 ,mem_le_lap 
+03af 20600000 rtn 
 
 p_mouse_store_remote_bdaddr:
-03ae 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-03af c4010000 rtnbit0 mouse_store_eeprom_flag 
-03b0 c30a5c43 bbit0 mouse_enable_otp ,mouse_store_remote_bdaddr + 1 
-03b1 d8e00002 arg mouse_store_eeprom_flag ,queue 
-03b2 20405f04 call mouse_disable_function_flag 
-03b3 20405c4a call mouse_check_device_addr 
-03b4 204003b6 call p_mouse_before_store_reconn_info 
-03b5 20205ca3 branch mouse_store_device_info_delay 
+03b0 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+03b1 c4010000 rtnbit0 mouse_store_eeprom_flag 
+03b2 c30a5c43 bbit0 mouse_enable_otp ,mouse_store_remote_bdaddr + 1 
+03b3 d8e00002 arg mouse_store_eeprom_flag ,queue 
+03b4 20405f04 call mouse_disable_function_flag 
+03b5 20405c4a call mouse_check_device_addr 
+03b6 204003b8 call p_mouse_before_store_reconn_info 
+03b7 20205ca3 branch mouse_store_device_info_delay 
 
 p_mouse_before_store_reconn_info:
-03b6 6fe0c666 fetch 1 ,mem_device_flag 
-03b7 c00083ba beq mode_bt_device1 ,p_mouse_store_le_device1 
-03b8 c00103bf beq mode_bt_device2 ,p_mouse_store_le_device2 
-03b9 20600000 rtn 
+03b8 6fe0c666 fetch 1 ,mem_device_flag 
+03b9 c00083bc beq mode_bt_device1 ,p_mouse_store_le_device1 
+03ba c00103c1 beq mode_bt_device2 ,p_mouse_store_le_device2 
+03bb 20600000 rtn 
 
 p_mouse_store_le_device1:
-03ba 6fe30178 fetch 6 ,mem_le_plap 
-03bb 67e34668 store 6 ,mem_device1_addr 
-03bc 6fe342db fetch 6 ,mem_le_lap 
-03bd 67e3466e store 6 ,mem_device1_locall_addr 
-03be 20600000 rtn 
+03bc 6fe30178 fetch 6 ,mem_le_plap 
+03bd 67e34668 store 6 ,mem_device1_addr 
+03be 6fe342db fetch 6 ,mem_le_lap 
+03bf 67e3466e store 6 ,mem_device1_locall_addr 
+03c0 20600000 rtn 
 
 p_mouse_store_le_device2:
-03bf 6fe30178 fetch 6 ,mem_le_plap 
-03c0 67e34675 store 6 ,mem_device2_addr 
-03c1 6fe342db fetch 6 ,mem_le_lap 
-03c2 67e3467b store 6 ,mem_device2_locall_addr 
-03c3 20600000 rtn 
+03c1 6fe30178 fetch 6 ,mem_le_plap 
+03c2 67e34675 store 6 ,mem_device2_addr 
+03c3 6fe342db fetch 6 ,mem_le_lap 
+03c4 67e3467b store 6 ,mem_device2_locall_addr 
+03c5 20600000 rtn 
 
 p_mouse_bb_event_timer:
-03c4 204003da call p_mouse_le_send_conn_param_update_timer 
-03c5 2040614d call mouse_low_voltage_led_timer 
-03c6 2040553d call mouse_adc_read 
-03c7 20406110 call mouse_logo_led_on_timer 
-03c8 204061b1 call mouse_led_multi_timer 
-03c9 2040611e call mouse_dpi_led_blink_delay_timer 
-03ca 2040328e call g24_pair_timeout_timer 
-03cb 20403531 call g24_reconn_timeout_timer 
-03cc 20405fdd call mouse_24g_long_sleep_param_update_timer 
-03cd 2040572c call mouse_dpi_key_check_long_press 
-03ce 20405b9b call mouse_bt_discovery_check 
-03cf 20405bab call mouse_commbination_key_process 
-03d0 20405bce call mouse_check_discovery_timeout_timer 
-03d1 20405bd3 call mouse_check_direct_timeout_timer 
-03d2 20405be1 call mouse_le_enable_att_list_timer 
-03d3 20405bee call mouse_le_battery_updata_timer 
-03d4 20405be4 call mouse_le_send_smp_security_request_timer 
-03d5 20405bfb call mouse_check_reconnect_delay_long_sleep 
-03d6 204003dd call p_mouse_current_mult_update_timer 
-03d7 204056b6 call mouse_wheel_trigger_timer 
-03d8 20405c0e call mouse_store_information_delay_timer 
-03d9 20205c05 branch mouse_check_no_data_timeout_timer 
+03c6 204003dc call p_mouse_le_send_conn_param_update_timer 
+03c7 2040614d call mouse_low_voltage_led_timer 
+03c8 2040553d call mouse_adc_read 
+03c9 20406110 call mouse_logo_led_on_timer 
+03ca 204061b1 call mouse_led_multi_timer 
+03cb 2040611e call mouse_dpi_led_blink_delay_timer 
+03cc 2040328e call g24_pair_timeout_timer 
+03cd 20403531 call g24_reconn_timeout_timer 
+03ce 20405fdd call mouse_24g_long_sleep_param_update_timer 
+03cf 2040572c call mouse_dpi_key_check_long_press 
+03d0 20405b9b call mouse_bt_discovery_check 
+03d1 20405bab call mouse_commbination_key_process 
+03d2 20405bce call mouse_check_discovery_timeout_timer 
+03d3 20405bd3 call mouse_check_direct_timeout_timer 
+03d4 20405be1 call mouse_le_enable_att_list_timer 
+03d5 20405bee call mouse_le_battery_updata_timer 
+03d6 20405be4 call mouse_le_send_smp_security_request_timer 
+03d7 20405bfb call mouse_check_reconnect_delay_long_sleep 
+03d8 204003df call p_mouse_current_mult_update_timer 
+03d9 204056b6 call mouse_wheel_trigger_timer 
+03da 20405c0e call mouse_store_information_delay_timer 
+03db 20205c05 branch mouse_check_no_data_timeout_timer 
 
 p_mouse_le_send_conn_param_update_timer:
-03da da604a05 arg mem_mouse_le_send_conn_param_update_timer ,regc 
-03db da405aef arg mouse_updata_le_param ,regb 
-03dc 202042e0 branch timer_single_step 
+03dc da604a05 arg mem_mouse_le_send_conn_param_update_timer ,regc 
+03dd da405aef arg mouse_updata_le_param ,regb 
+03de 202042e0 branch timer_single_step 
 
 p_mouse_current_mult_update_timer:
-03dd da60477e arg mem_mouse_current_mult_timer ,regc 
-03de da4003e0 arg p_mouse_current_mult_reinit ,regb 
-03df 202042e0 branch timer_single_step 
+03df da60477e arg mem_mouse_current_mult_timer ,regc 
+03e0 da4003e2 arg p_mouse_current_mult_reinit ,regb 
+03e1 202042e0 branch timer_single_step 
 
 p_mouse_current_mult_reinit:
-03e0 6fe0c96b fetch 1 ,mem_lpm_mult_init 
-03e1 67e0c0c0 store 1 ,mem_lpm_mult 
-03e2 70477d03 jam 3 ,mem_mouse_long_mult_flag 
-03e3 20600000 rtn 
+03e2 6fe0c96b fetch 1 ,mem_lpm_mult_init 
+03e3 67e0c0c0 store 1 ,mem_lpm_mult 
+03e4 70477d03 jam 3 ,mem_mouse_long_mult_flag 
+03e5 20600000 rtn 
 
 p_mouse_start_discovery:
-03e4 204059ed call mouse_sensor_powerdown 
-03e5 20205c1b branch mouse_start_discovery + 1 
+03e6 204059ed call mouse_sensor_powerdown 
+03e7 20205c1b branch mouse_start_discovery + 1 
 
 p_mouse_priority_bb_event:
-03e6 1a627e00 copy regc ,pdata 
-03e7 c02003fb beq bt_evt_le_parse_conn_papa_update_rsp ,p_mouse_le_conn_param_update_rsp_recieved 
-03e8 c00a8400 beq bt_evt_le_disconnected ,p_mouse_le_bb_disconnected 
-03e9 c01903f2 beq bt_evt_le_start_enc ,p_mouse_le_ll_start_encryt 
-03ea c01e041e beq bt_evt_24g_attempt_success ,p_mouse_24g_attempt_success 
-03eb c01c842f beq bt_evt_24g_pairing_complete ,p_mouse_24g_pairing_complete 
-03ec c01d0432 beq bt_evt_24g_attempt_fail ,p_mouse_24g_attempt_fail 
-03ed c00a03ef beq bt_evt_le_connected ,p_mouse_le_bb_event_connected 
-03ee 20205ac3 branch mouse_priority_bb_event + 2 
+03e8 1a627e00 copy regc ,pdata 
+03e9 c02003fd beq bt_evt_le_parse_conn_papa_update_rsp ,p_mouse_le_conn_param_update_rsp_recieved 
+03ea c00a8402 beq bt_evt_le_disconnected ,p_mouse_le_bb_disconnected 
+03eb c01903f4 beq bt_evt_le_start_enc ,p_mouse_le_ll_start_encryt 
+03ec c01e0420 beq bt_evt_24g_attempt_success ,p_mouse_24g_attempt_success 
+03ed c01c8431 beq bt_evt_24g_pairing_complete ,p_mouse_24g_pairing_complete 
+03ee c01d0434 beq bt_evt_24g_attempt_fail ,p_mouse_24g_attempt_fail 
+03ef c00a03f1 beq bt_evt_le_connected ,p_mouse_le_bb_event_connected 
+03f0 20205ac3 branch mouse_priority_bb_event + 2 
 
 p_mouse_le_bb_event_connected:
-03ef 58000000 setarg 0 
-03f0 67e24c03 store 4 ,mem_le_conn_first_rcv 
-03f1 20205ad0 branch mouse_le_bb_event_connected 
+03f1 58000000 setarg 0 
+03f2 67e24bf9 store 4 ,mem_le_conn_first_rcv 
+03f3 20205ad0 branch mouse_le_bb_event_connected 
 
 p_mouse_le_ll_start_encryt:
-03f2 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
-03f3 c00083f6 beq 1 ,p_mouse_le_ll_reconn_start_encryt 
-03f4 70484414 jam 20 ,mem_le_start_encrypt_timer 
-03f5 202003f8 branch p_mouse_le_ll_reconn_start_encryt_new 
+03f4 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
+03f5 c00083f8 beq 1 ,p_mouse_le_ll_reconn_start_encryt 
+03f6 70484414 jam 20 ,mem_le_start_encrypt_timer 
+03f7 202003fa branch p_mouse_le_ll_reconn_start_encryt_new 
 
 p_mouse_le_ll_reconn_start_encryt:
-03f6 20405aef call mouse_updata_le_param 
-03f7 70484405 jam 5 ,mem_le_start_encrypt_timer 
+03f8 20405aef call mouse_updata_le_param 
+03f9 70484405 jam 5 ,mem_le_start_encrypt_timer 
 
 p_mouse_le_ll_reconn_start_encryt_new:
-03f8 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-03f9 67e0cc03 store 1 ,mem_le_conn_first_rcv 
-03fa 20205af6 branch mouse_le_ll_enable_start_enc_flag 
+03fa 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+03fb 67e0cbf9 store 1 ,mem_le_conn_first_rcv 
+03fc 20205af6 branch mouse_le_ll_enable_start_enc_flag 
 
 p_mouse_le_conn_param_update_rsp_recieved:
-03fb 6fe0ca04 fetch 1 ,mem_mouse_le_send_conn_param_update 
-03fc 247a0000 nrtn blank 
-03fd 704a0401 jam 1 ,mem_mouse_le_send_conn_param_update 
-03fe 704a051e jam 30 ,mem_mouse_le_send_conn_param_update_timer 
-03ff 20600000 rtn 
+03fd 6fe0ca04 fetch 1 ,mem_mouse_le_send_conn_param_update 
+03fe 247a0000 nrtn blank 
+03ff 704a0401 jam 1 ,mem_mouse_le_send_conn_param_update 
+0400 704a051e jam 30 ,mem_mouse_le_send_conn_param_update_timer 
+0401 20600000 rtn 
 
 p_mouse_le_bb_disconnected:
-0400 58000000 setarg 0 
-0401 67e0ca04 store 1 ,mem_mouse_le_send_conn_param_update 
-0402 67e0ca05 store 1 ,mem_mouse_le_send_conn_param_update_timer 
-0403 58000000 setarg 0 
-0404 67e147c0 store 2 ,mem_le_battery_level_updata_timer 
-0405 70479400 jam 0 ,mem_mouse_le_bb_connected_flag 
-0406 d8400006 arg le_interval_7_5ms ,temp 
-0407 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0408 c28d840a bbit1 mouse_enable_bt_125hz ,p_mouse_le_bb_disconnected_next 
-0409 d8400007 arg le_interval_8_75ms ,temp 
+0402 58000000 setarg 0 
+0403 67e0ca04 store 1 ,mem_mouse_le_send_conn_param_update 
+0404 67e0ca05 store 1 ,mem_mouse_le_send_conn_param_update_timer 
+0405 58000000 setarg 0 
+0406 67e147c0 store 2 ,mem_le_battery_level_updata_timer 
+0407 70479400 jam 0 ,mem_mouse_le_bb_connected_flag 
+0408 d8400006 arg le_interval_7_5ms ,temp 
+0409 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+040a c28d840c bbit1 mouse_enable_bt_125hz ,p_mouse_le_bb_disconnected_next 
+040b d8400007 arg le_interval_8_75ms ,temp 
 
 p_mouse_le_bb_disconnected_next:
-040a 604942d3 storet 2 ,mem_le_interval_min 
-040b 604942d5 storet 2 ,mem_le_interval_min + 2 
-040c 7047c200 jam le_lpm_enable ,mem_mouse_le_conn_param_reject 
-040d 70495600 jam 0 ,mem_mouse_clear_sensor_data_flag 
-040e 204029cb call le_clr_config_more_data 
-040f 20200410 branch p_mouse_bb_disconnected 
+040c 604942d3 storet 2 ,mem_le_interval_min 
+040d 604942d5 storet 2 ,mem_le_interval_min + 2 
+040e 7047c200 jam le_lpm_enable ,mem_mouse_le_conn_param_reject 
+040f 70495600 jam 0 ,mem_mouse_clear_sensor_data_flag 
+0410 204029cb call le_clr_config_more_data 
+0411 20200412 branch p_mouse_bb_disconnected 
 
 p_mouse_bb_disconnected:
-0410 20405b7b call mouse_bb_discon_clear_stack 
-0411 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0412 c2838415 bbit1 app_disc_ble ,p_mouse4_0_event_bb_disconn 
-0413 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0414 20205c1a branch mouse_start_discovery 
+0412 20405b7b call mouse_bb_discon_clear_stack 
+0413 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0414 c2838417 bbit1 app_disc_ble ,p_mouse4_0_event_bb_disconn 
+0415 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0416 20205c1a branch mouse_start_discovery 
 
 p_mouse4_0_event_bb_disconn:
-0415 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0416 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0417 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-0418 1fe17e03 and pdata ,0x03 ,pdata 
-0419 20405b21 call mouse_le_clean_connect_flag 
-041a c081d4a9 bne 0x03 ,mouse_start_reconnect 
-041b 6fe0cc06 fetch 1 ,mem_le_check_retransmit_discon_flag 
-041c 243a54a9 nbranch mouse_start_reconnect ,blank 
-041d 202054cd branch mouse_app_enter_hibernate 
+0417 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0418 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0419 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+041a 1fe17e03 and pdata ,0x03 ,pdata 
+041b 20405b21 call mouse_le_clean_connect_flag 
+041c c081d4a9 bne 0x03 ,mouse_start_reconnect 
+041d 6fe0cbfc fetch 1 ,mem_le_check_retransmit_discon_flag 
+041e 243a54a9 nbranch mouse_start_reconnect ,blank 
+041f 202054cd branch mouse_app_enter_hibernate 
 
 p_mouse_24g_attempt_success:
-041e 6fe2458f fetch 4 ,mem_24g_addr 
-041f 67e245e8 store 4 ,mem_24g_receiver_addr 
-0420 67e24691 store 4 ,mem_mouse_24g_addr 
-0421 2040355a call g24_ch_syncword_crc8_init 
-0422 20405c0b call mouse_no_data_timer_init 
-0423 2040618e call mouse_device_poweron_led_config 
-0424 20405a73 call mouse_init_sensor_reset 
-0425 70477d00 jam 0 ,mem_mouse_long_mult_flag 
-0426 7045fc00 jam 0 ,mem_24g_conn_sm 
-0427 7045e200 jam 0 ,mem_24g_reconn_type 
-0428 6fe245e8 fetch 4 ,mem_24g_receiver_addr 
-0429 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
-042a 98467c00 isub temp ,null 
-042b 20628000 rtn zero 
-042c 20406016 call mouse_soft_agc_disable 
-042d 20400445 call p_mouse_fetch_normal_tx_power 
-042e 20206042 branch mouse_24g_first_store_reconn_info 
+0420 6fe2458f fetch 4 ,mem_24g_addr 
+0421 67e245e8 store 4 ,mem_24g_receiver_addr 
+0422 67e24691 store 4 ,mem_mouse_24g_addr 
+0423 2040355a call g24_ch_syncword_crc8_init 
+0424 20405c0b call mouse_no_data_timer_init 
+0425 2040618e call mouse_device_poweron_led_config 
+0426 20405a73 call mouse_init_sensor_reset 
+0427 70477d00 jam 0 ,mem_mouse_long_mult_flag 
+0428 7045fc00 jam 0 ,mem_24g_conn_sm 
+0429 7045e200 jam 0 ,mem_24g_reconn_type 
+042a 6fe245e8 fetch 4 ,mem_24g_receiver_addr 
+042b 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
+042c 98467c00 isub temp ,null 
+042d 20628000 rtn zero 
+042e 20406016 call mouse_soft_agc_disable 
+042f 20400468 call p_mouse_fetch_normal_tx_power 
+0430 20206042 branch mouse_24g_first_store_reconn_info 
 
 p_mouse_24g_pairing_complete:
-042f 20406016 call mouse_soft_agc_disable 
-0430 20400445 call p_mouse_fetch_normal_tx_power 
-0431 20206084 branch mouse_24g_pairing_complete 
+0431 20406016 call mouse_soft_agc_disable 
+0432 20400468 call p_mouse_fetch_normal_tx_power 
+0433 20206084 branch mouse_24g_pairing_complete 
 
 p_mouse_24g_attempt_fail:
-0432 20406016 call mouse_soft_agc_disable 
-0433 20400445 call p_mouse_fetch_normal_tx_power 
-0434 6fe0c87a fetch 1 ,mem_mouse_dpi_button_state 
-0435 c1008000 rtneq dpi_button_state_down 
-0436 6fe0c600 fetch 1 ,mem_24g_attempt_fail_flag 
-0437 243a5ff2 nbranch mouse_24g_hibernate_set ,blank 
-0438 6fe0c5e2 fetch 1 ,mem_24g_reconn_type 
-0439 c002043b beq pair_and_3_0_addr ,p_mouse_24g_auto_pair_attempt_fail 
-043a 20206055 branch mouse_24g_attempt_fail + 2 
+0434 20406016 call mouse_soft_agc_disable 
+0435 20400468 call p_mouse_fetch_normal_tx_power 
+0436 6fe0c87a fetch 1 ,mem_mouse_dpi_button_state 
+0437 c1008000 rtneq dpi_button_state_down 
+0438 6fe0c600 fetch 1 ,mem_24g_attempt_fail_flag 
+0439 243a5ff2 nbranch mouse_24g_hibernate_set ,blank 
+043a 6fe0c5e2 fetch 1 ,mem_24g_reconn_type 
+043b c002043f beq pair_and_3_0_addr ,p_mouse_24g_auto_pair_attempt_fail 
+043c c000e05f beq fast_conn_and_receiver ,mouse_24g_fast_conn_attempt_fail 
+043d c0018446 beq receiver_and_3_0_addr ,p_mouse_reconn_dongle_attempt_fail 
+043e 20206055 branch mouse_24g_attempt_fail + 2 
 
 p_mouse_24g_auto_pair_attempt_fail:
-043b 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-043c c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
-043d 6fe0c71b fetch 1 ,mem_device_number 
-043e c000e059 beq 1 ,mouse_24g_attempt_fail_enter_hibernate 
+043f 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0440 c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
+0441 6fe0c71b fetch 1 ,mem_device_number 
+0442 c000e059 beq 1 ,mouse_24g_attempt_fail_enter_hibernate 
 
 p_mouse_24g_first_bluetooth_reconnect:
-043f 20406018 call mouse_24g_stop 
-0440 70466601 jam mode_bt_device1 ,mem_device_flag 
-0441 202054a0 branch mouse_start_reconnect_device 
+0443 20406018 call mouse_24g_stop 
+0444 70466601 jam mode_bt_device1 ,mem_device_flag 
+0445 20205491 branch mouse_le_fast_conn_judge 
+
+p_mouse_reconn_dongle_attempt_fail:
+0446 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0447 c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
+0448 c289e059 bbit1 mouse_enable_eeprom ,mouse_24g_attempt_fail_enter_hibernate 
+0449 c28a6059 bbit1 mouse_enable_otp ,mouse_24g_attempt_fail_enter_hibernate 
+044a c2896059 bbit1 mouse_enable_flash ,mouse_24g_attempt_fail_enter_hibernate 
+044b 20206034 branch mouse_24g_start_auto_pair 
+
+p_mouse_start_work:
+044c 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+044d c29f0451 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_24g_first_start_auto_pair_mode 
+044e 6fe0c666 fetch 1 ,mem_device_flag 
+044f c0000458 beq mode_24g_device ,p_mouse_24g_start_mode 
+0450 20205491 branch mouse_le_fast_conn_judge 
+
+p_mouse_24g_first_start_auto_pair_mode:
+0451 204054ac call mouse_wakeup_from_power_check 
+0452 20340454 branch p_mouse_24g_first_start_reconn ,user 
+0453 2020602f branch mouse_24g_reconn_general_dongle 
+
+p_mouse_24g_first_start_reconn:
+0454 6fe0c666 fetch 1 ,mem_device_flag 
+0455 c0006067 beq mode_24g_device ,mouse_24g_reconn_dongle_start 
+0456 20405aa8 call mouse_bluetooth_fast_conn_disable 
+0457 20200443 branch p_mouse_24g_first_bluetooth_reconnect 
+
+p_mouse_24g_start_mode:
+0458 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0459 c308e02a bbit0 mouse_enable_24g ,mouse_24g_mode_setup_error 
+045a 20406195 call mouse_device_24g_pair_led_config 
+045b 204054ac call mouse_wakeup_from_power_check 
+045c 20346067 branch mouse_24g_reconn_dongle_start ,user 
+045d 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+045e c2980460 bbit1 mouse_enable_auto_24g_paring ,p_mouse_24g_reconn_general_dongle 
+045f 20206023 branch mouse_24g_start_mode + 7 
+
+p_mouse_24g_reconn_general_dongle:
+0460 70466600 jam mode_24g_device ,mem_device_flag 
+0461 6fe14721 fetch 2 ,mem_mouse_24g_power_on_fast_conn_timer 
+0462 67e145de store 2 ,mem_24g_reconn_timeout 
+0463 7045e201 jam fast_conn_and_receiver ,mem_24g_reconn_type 
+0464 20203534 branch g24_reconn_start 
 
 p_mouse_store_normal_tx_power:
-0442 6fe0c141 fetch 1 ,mem_tx_power 
-0443 67e0ca07 store 1 ,mem_normal_tx_power 
-0444 20600000 rtn 
+0465 6fe0c141 fetch 1 ,mem_tx_power 
+0466 67e0ca07 store 1 ,mem_normal_tx_power 
+0467 20600000 rtn 
 
 p_mouse_fetch_normal_tx_power:
-0445 6fe0ca07 fetch 1 ,mem_normal_tx_power 
-0446 67e0c141 store 1 ,mem_tx_power 
-0447 20600000 rtn 
+0468 6fe0ca07 fetch 1 ,mem_normal_tx_power 
+0469 67e0c141 store 1 ,mem_tx_power 
+046a 20600000 rtn 
 
 p_mouse_idle:
-0448 2040620e call mouse_low_voltage_led_no_enter_lpm 
-0449 204078aa call ui_check_paring_button 
-044a 2040044c call p_mouse_dpi_check 
-044b 20205e61 branch mouse_idle + 4 
+046b 2040620e call mouse_low_voltage_led_no_enter_lpm 
+046c 204078aa call ui_check_paring_button 
+046d 2040046f call p_mouse_dpi_check 
+046e 20205e61 branch mouse_idle + 4 
 
 p_mouse_dpi_check:
-044c 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
-044d c17f8000 rtneq gpio_disable 
-044e da200000 arg 0 ,rega 
-044f 70497705 jam mouse_dpi_key ,mem_mouse_key_temp 
-0450 6848c649 fetcht 1 ,mem_dpi_button_gpio 
-0451 20400453 call p_mouse_dpi_key_check 
-0452 202056c1 branch mouse_dpi_check_next 
+046f 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
+0470 c17f8000 rtneq gpio_disable 
+0471 da200000 arg 0 ,rega 
+0472 70497705 jam mouse_dpi_key ,mem_mouse_key_temp 
+0473 6848c649 fetcht 1 ,mem_dpi_button_gpio 
+0474 20400476 call p_mouse_dpi_key_check 
+0475 202056c1 branch mouse_dpi_check_next 
 
 p_mouse_dpi_key_check:
-0453 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0454 c295d6de bbit1 mouse_enable_dpi_key_connect_gnd ,mouse_dpi_key_connect_gnd 
-0455 6fe0c974 fetch 1 ,mem_mouse_dpikey_press_status 
-0456 1fe22600 copy pdata ,regc 
-0457 6fe0c654 fetch 1 ,mem_matrix_public_gpio 
-0458 c07f845a beq gpio_disable ,p_mouse_3io6key_dpi_check 
-0459 202056ce branch mouse_dpi_key_check_next 
+0476 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0477 c295d6de bbit1 mouse_enable_dpi_key_connect_gnd ,mouse_dpi_key_connect_gnd 
+0478 6fe0c974 fetch 1 ,mem_mouse_dpikey_press_status 
+0479 1fe22600 copy pdata ,regc 
+047a 6fe0c654 fetch 1 ,mem_matrix_public_gpio 
+047b c07f847d beq gpio_disable ,p_mouse_3io6key_dpi_check 
+047c 202056ce branch mouse_dpi_key_check_next 
 
 p_mouse_3io6key_dpi_check:
-045a 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
-045b 20405946 call mouse_gpio_config_output_low 
-045c 6848c649 fetcht 1 ,mem_dpi_button_gpio 
-045d 2020045e branch p_mouse_3io6key_check 
+047d 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
+047e 20405946 call mouse_gpio_config_output_low 
+047f 6848c649 fetcht 1 ,mem_dpi_button_gpio 
+0480 20200481 branch p_mouse_3io6key_check 
 
 p_mouse_3io6key_check:
-045e 1a627e00 copy regc ,pdata 
-045f 67e0c978 store 1 ,mem_mouse_key_status 
-0460 1fe3fe00 lshift pdata ,pdata 
-0461 1fe22400 copy pdata ,regb 
-0462 18422600 copy temp ,regc 
-0463 204055b1 call mouse_gpio_config_input_pd 
-0464 1a620400 copy regc ,temp 
-0465 20406ee6 call gpio_get_bit 
-0466 7d20a400 nsetflag true ,0 ,regb 
-0467 2040593d call mouse_check_press 
-0468 20205929 branch mouse_check_key_connect_gnd_1 
+0481 1a627e00 copy regc ,pdata 
+0482 67e0c978 store 1 ,mem_mouse_key_status 
+0483 1fe3fe00 lshift pdata ,pdata 
+0484 1fe22400 copy pdata ,regb 
+0485 18422600 copy temp ,regc 
+0486 204055b1 call mouse_gpio_config_input_pd 
+0487 1a620400 copy regc ,temp 
+0488 20406ee6 call gpio_get_bit 
+0489 7d20a400 nsetflag true ,0 ,regb 
+048a 2040593d call mouse_check_press 
+048b 20205929 branch mouse_check_key_connect_gnd_1 
 
 p_g24_short_sleep:
-0469 204036b4 call g24_lpm_wait 
-046a 24740000 nrtn user 
-046b 204036be call g24_setgpio_lpm_before 
-046c 2040046f call p_clear_wake 
-046d 6fe1c608 fetch 3 ,mem_24g_short_sleep_set 
-046e 20203622 branch g24_long_seep2 
+048c 204036b4 call g24_lpm_wait 
+048d 24740000 nrtn user 
+048e 204036be call g24_setgpio_lpm_before 
+048f 20400492 call p_clear_wake 
+0490 6fe1c608 fetch 3 ,mem_24g_short_sleep_set 
+0491 20203622 branch g24_long_seep2 
 
 p_clear_wake:
-046f 58000000 setarg 0 
-0470 79207e15 set1 21 ,pdata 
-0471 67e40016 store 8 ,mem_gpio_wakeup_cfg 
-0472 58000000 setarg 0 
-0473 67e2001e store 4 ,mem_gpio_wakeup_cfg + 8 
-0474 20600000 rtn 
+0492 58000000 setarg 0 
+0493 79207e15 set1 21 ,pdata 
+0494 67e40016 store 8 ,mem_gpio_wakeup_cfg 
+0495 58000000 setarg 0 
+0496 67e2001e store 4 ,mem_gpio_wakeup_cfg + 8 
+0497 20600000 rtn 
 
 p_mouse_24g_hibernate_set:
-0475 70460000 jam 0 ,mem_24g_attempt_fail_flag 
-0476 20403647 call g24_transmit_next_packet 
-0477 5fffffff setarg -1 
-0478 67e245af store 4 ,mem_24g_enter_hibernate 
-0479 58000000 setarg 0 
-047a 67e3c846 store 7 ,mem_mouse_key 
-047b 70473f01 jam 1 ,mem_sensor_shutdown_flag 
-047c 204059ed call mouse_sensor_powerdown 
-047d 2020029b branch p_mouse_24g_long_sleep 
+0498 70460000 jam 0 ,mem_24g_attempt_fail_flag 
+0499 20403647 call g24_transmit_next_packet 
+049a 5fffffff setarg -1 
+049b 67e245af store 4 ,mem_24g_enter_hibernate 
+049c 58000000 setarg 0 
+049d 67e3c846 store 7 ,mem_mouse_key 
+049e 70473f01 jam 1 ,mem_sensor_shutdown_flag 
+049f 204059ed call mouse_sensor_powerdown 
+04a0 2020622b branch mouse_24g_long_sleep 
 
 p_mouse_setgpio_hibernate:
-047e 20405a92 call mouse_set_sdio_high 
-047f 2040046f call p_clear_wake 
-0480 204056a9 call mouse_before_hibernate_wheel_gpio_set 
-0481 6848c654 fetcht 1 ,mem_matrix_public_gpio 
-0482 20406ef7 call gpio_out_active 
-0483 6848c654 fetcht 1 ,mem_matrix_public_gpio 
-0484 20406ed3 call gpio_clr_wake 
-0485 6fe0c64d fetch 1 ,mem_mouse_sensor_sdio_gpio 
-0486 20405943 call mouse_gpio_config_output_high 
-0487 d8400015 arg 21 ,temp 
-0488 204055b5 call mouse_gpio_config_input_pu 
-0489 2040048b call p_mouse_device_switch_gpio_high_impedance 
-048a 202054df branch mouse_setgpio_hibernate + 3 
-
-p_mouse_device_switch_gpio_high_impedance:
-048b 6fe0c65a fetch 1 ,mem_device_switch_gpio 
-048c c17f8000 rtneq 0xff 
-048d 6fe0c666 fetch 1 ,mem_device_flag 
-048e c0000491 beq mode_24g_device ,p_mouse_device_switch_gpio_set_impedance 
-048f 6848c65a fetcht 1 ,mem_device_switch_gpio 
-0490 202055b5 branch mouse_gpio_config_input_pu 
-
-p_mouse_device_switch_gpio_set_impedance:
-0491 6848c65a fetcht 1 ,mem_device_switch_gpio 
-0492 20206f0f branch gpio_set_high_impedance 
+04a1 20405a92 call mouse_set_sdio_high 
+04a2 20400492 call p_clear_wake 
+04a3 204056a9 call mouse_before_hibernate_wheel_gpio_set 
+04a4 6848c654 fetcht 1 ,mem_matrix_public_gpio 
+04a5 20406ef7 call gpio_out_active 
+04a6 6848c654 fetcht 1 ,mem_matrix_public_gpio 
+04a7 20406ed3 call gpio_clr_wake 
+04a8 6fe0c64d fetch 1 ,mem_mouse_sensor_sdio_gpio 
+04a9 20405943 call mouse_gpio_config_output_high 
+04aa 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04ab 204055ab call mouse_gpio_set_pupd_by_input 
+04ac d8400015 arg 21 ,temp 
+04ad 204055b5 call mouse_gpio_config_input_pu 
+04ae 2040611a call mouse_logo_led_off 
+04af 2040550c call mouse_lpm_before_common 
+04b0 204054f9 call mouse_gpio_pd_idle 
+04b1 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
+04b2 20406f0f call gpio_set_high_impedance 
+04b3 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
+04b4 20406f0f call gpio_set_high_impedance 
+04b5 202054e2 branch mouse_setgpio_hibernate_next 
 
 p_mouse_24g_package_data:
-0493 c6930000 rtnmark0 mark_24g 
-0494 20405601 call mouse_motion 
-0495 24740000 nrtn user 
-0496 6fe0c77c fetch 1 ,mem_mouse_24g_long_sleep_flag 
-0497 70477c00 jam 0 ,mem_mouse_24g_long_sleep_flag 
-0498 245a04a8 ncall p_mouse_24g_short_sleep_clear_wake ,blank 
-0499 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-049a c30b049d bbit0 mouse_enable_keyboard ,p_mouse_24g_mouse_package_data 
-049b 6fe0c96c fetch 1 ,mem_customer_key 
-049c 243a60b6 nbranch mouse_24g_keyboard_package_data ,blank 
+04b6 c6930000 rtnmark0 mark_24g 
+04b7 20405601 call mouse_motion 
+04b8 24740000 nrtn user 
+04b9 6fe0c77c fetch 1 ,mem_mouse_24g_long_sleep_flag 
+04ba 70477c00 jam 0 ,mem_mouse_24g_long_sleep_flag 
+04bb 245a04cb ncall p_mouse_24g_short_sleep_clear_wake ,blank 
+04bc 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+04bd c30b04c0 bbit0 mouse_enable_keyboard ,p_mouse_24g_mouse_package_data 
+04be 6fe0c96c fetch 1 ,mem_customer_key 
+04bf 243a60b6 nbranch mouse_24g_keyboard_package_data ,blank 
 
 p_mouse_24g_mouse_package_data:
-049d 2040049f call p_mouse_data_xy_release 
-049e 202060a2 branch mouse_24g_mouse_package_data + 1 
+04c0 204004c2 call p_mouse_data_xy_release 
+04c1 202060a2 branch mouse_24g_mouse_package_data + 1 
 
 p_mouse_data_xy_release:
-049f 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
-04a0 c1ff8000 rtnne gpio_disable 
-04a1 6fe0c77d fetch 1 ,mem_mouse_long_mult_flag 
-04a2 207a0000 rtn blank 
-04a3 1fe0ffff increase -1 ,pdata 
-04a4 67e0c77d store 1 ,mem_mouse_long_mult_flag 
-04a5 58000000 setarg 0 
-04a6 67e24847 store 4 ,mem_mouse_x 
-04a7 20205a73 branch mouse_init_sensor_reset 
+04c2 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
+04c3 c1ff8000 rtnne gpio_disable 
+04c4 6fe0c77d fetch 1 ,mem_mouse_long_mult_flag 
+04c5 207a0000 rtn blank 
+04c6 1fe0ffff increase -1 ,pdata 
+04c7 67e0c77d store 1 ,mem_mouse_long_mult_flag 
+04c8 58000000 setarg 0 
+04c9 67e24847 store 4 ,mem_mouse_x 
+04ca 20205a73 branch mouse_init_sensor_reset 
 
 p_mouse_24g_short_sleep_clear_wake:
-04a8 2040046f call p_clear_wake 
-04a9 2020022e branch p_lpm_write_gpio_wakeup 
+04cb 20400492 call p_clear_wake 
+04cc 2020023a branch p_lpm_write_gpio_wakeup 
 
 p_mouse_check_select_device_by_switch:
-04aa 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-04ab c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
-04ac c31fdeb9 bbit0 mouse_enable_switch_gpio_connect_vin ,mouse_switch_gpio_connect_gnd 
+04cd 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+04ce c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
+04cf c31fdeb9 bbit0 mouse_enable_switch_gpio_connect_vin ,mouse_switch_gpio_connect_gnd 
 
 p_mouse_switch_gpio_connect_vin:
-04ad 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04ae 20406ef7 call gpio_out_active 
-04af 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04b0 204055b1 call mouse_gpio_config_input_pd 
-04b1 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04b2 20406ee6 call gpio_get_bit 
-04b3 2420dec2 nbranch mouse_check_select_24g_device ,true 
-04b4 20205ebe branch mouse_select_btdevice 
+04d0 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04d1 20406ef7 call gpio_out_active 
+04d2 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04d3 204055b1 call mouse_gpio_config_input_pd 
+04d4 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04d5 20406ee6 call gpio_get_bit 
+04d6 2420dec2 nbranch mouse_check_select_24g_device ,true 
+04d7 20205ebe branch mouse_select_btdevice 
 
 p_mouse_init_sensor:
-04b5 20405958 call mouse_read_sensor_id 
-04b6 c018595f beq p32xx_id1 ,mouse_init_p32xx_id2_judge 
-04b7 c018d9c6 beq p3065_id1 ,mouse_init_p3065 
-04b8 c02c04ba beq pka8g2_id1 ,p_mouse_ka8g2_id2_judge 
-04b9 20205952 branch mouse_init_sensor + 5 
+04d8 20405958 call mouse_read_sensor_id 
+04d9 c018595f beq p32xx_id1 ,mouse_init_p32xx_id2_judge 
+04da c018d9c6 beq p3065_id1 ,mouse_init_p3065 
+04db c02c04dd beq pka8g2_id1 ,p_mouse_ka8g2_id2_judge 
+04dc 20205952 branch mouse_init_sensor + 5 
 
 p_mouse_ka8g2_id2_judge:
-04ba 204059e7 call mouse_sensor_poweron 
-04bb 6fe0c85a fetch 1 ,mem_sensor_id2 
-04bc c02c84be beq pka8g2_id2 ,p_mouse_ka8g2_init_param 
-04bd 2020595f branch mouse_init_p32xx_id2_judge 
+04dd 204059e7 call mouse_sensor_poweron 
+04de 6fe0c85a fetch 1 ,mem_sensor_id2 
+04df c02c84e1 beq pka8g2_id2 ,p_mouse_ka8g2_init_param 
+04e0 2020595f branch mouse_init_p32xx_id2_judge 
 
 p_mouse_ka8g2_init_param:
-04be 7049570b jam ka8g2 ,mem_config_sensor_type 
-04bf da604a0b arg mem_sensor_ka8g2_init_new ,regc 
-04c0 20205995 branch mouse_sensor_wr_seq 
+04e1 7049570b jam ka8g2 ,mem_config_sensor_type 
+04e2 da604a0b arg mem_sensor_ka8g2_init_new ,regc 
+04e3 20205995 branch mouse_sensor_wr_seq 
 
 p_mouse_check_sensor_data:
-04c1 6fe0c420 fetch 1 ,mem_spi_write_flash_sm 
-04c2 c1800000 rtnne flash_sm_no_buys 
-04c3 6fe0c957 fetch 1 ,mem_config_sensor_type 
-04c4 c00584c6 beq ka8g2 ,p_mouse_pka8g2_sensor_motion 
-04c5 202059f8 branch mouse_check_sensor_data + 2 
+04e4 6fe0c420 fetch 1 ,mem_spi_write_flash_sm 
+04e5 c1800000 rtnne flash_sm_no_buys 
+04e6 6fe0c957 fetch 1 ,mem_config_sensor_type 
+04e7 c00584e9 beq ka8g2 ,p_mouse_pka8g2_sensor_motion 
+04e8 202059f8 branch mouse_check_sensor_data + 2 
 
 p_mouse_pka8g2_sensor_motion:
-04c6 20405a6d call mouse_clear_sensor_data 
-04c7 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
-04c8 c07f84cc beq gpio_disable ,p_mouse_pka8g2_sensor_motion_1 
-04c9 6848c659 fetcht 1 ,mem_sensor_motion_gpio 
-04ca 20406ee6 call gpio_get_bit 
-04cb 24608000 nrtn true 
+04e9 20405a6d call mouse_clear_sensor_data 
+04ea 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
+04eb c07f84ef beq gpio_disable ,p_mouse_pka8g2_sensor_motion_1 
+04ec 6848c659 fetcht 1 ,mem_sensor_motion_gpio 
+04ed 20406ee6 call gpio_get_bit 
+04ee 24608000 nrtn true 
 
 p_mouse_pka8g2_sensor_motion_1:
-04cc 58000000 setarg pan_reg_pid_l 
-04cd 204069e5 call twspi_read 
-04ce c0ac5955 bne pka8g2_id1 ,mouse_twspi_reset 
-04cf 20205a2f branch mouse_p3212_sensor_motion_2 
+04ef 58000000 setarg pan_reg_pid_l 
+04f0 204069e5 call twspi_read 
+04f1 c0ac5955 bne pka8g2_id1 ,mouse_twspi_reset 
+04f2 20205a2f branch mouse_p3212_sensor_motion_2 
 
 p_mouse_motion:
-04d0 78547c00 disable user 
-04d1 58000000 setarg 0 
-04d2 67e34847 store 6 ,mem_mouse_x 
-04d3 204004c1 call p_mouse_check_sensor_data 
-04d4 20205606 branch mouse_motion + 5 
+04f3 78547c00 disable user 
+04f4 58000000 setarg 0 
+04f5 67e34847 store 6 ,mem_mouse_x 
+04f6 204004e4 call p_mouse_check_sensor_data 
+04f7 58000089 setarg 0x0089 
+04f8 204069e4 call twspi_write 
+04f9 20405747 call mouse_setting_sensor_type 
+04fa 20405612 call mouse_zwheel 
+04fb 20405617 call mouse_t_zwheel 
+04fc 204004fe call p_mouse_key 
+04fd 2020560c branch mouse_motion + 11 
+
+p_mouse_key:
+04fe 2040584c call mouse_check_firekey_gpio 
+04ff 6fe0c987 fetch 1 ,mem_fire_key_flag 
+0500 243a5860 nbranch fire_key_press ,blank 
+0501 6fe0c982 fetch 1 ,mem_fire_key_status 
+0502 243a585f nbranch fire_key_process ,blank 
+0503 20405888 call mouse_check_key_gpio 
+0504 20400506 call p_mouse_ghost_key_check 
+0505 202057ad branch mouse_key + 7 
+
+p_mouse_ghost_key_check:
+0506 70497900 jam 0 ,mem_mouse_matrix_key_cow_count 
+0507 70497a00 jam 0 ,mem_mouse_matrix_key_row_count 
+0508 70497b00 jam 0 ,mem_mouse_ghost_flag 
+0509 1fe22400 copy pdata ,regb 
+050a 6848c644 fetcht 1 ,mem_lbutton_gpio 
+050b 6fe0c647 fetch 1 ,mem_bk_button_gpio 
+050c 98467c00 isub temp ,null 
+050d 20228518 branch p_mouse_matrix_ghost_key_l_bk ,zero 
+050e 6fe0c648 fetch 1 ,mem_fw_button_gpio 
+050f 98467c00 isub temp ,null 
+0510 2022851e branch p_mouse_matrix_ghost_key_l_fw ,zero 
+0511 6848c645 fetcht 1 ,mem_mbutton_gpio 
+0512 6fe0c647 fetch 1 ,mem_bk_button_gpio 
+0513 98467c00 isub temp ,null 
+0514 20228527 branch p_mouse_ghost_key_mbk_rfw ,zero 
+
+p_mouse_ghost_key_mfw_rbk:
+0515 204057fb call mouse_ghost_key_check_m_fw 
+
+p_mouse_ghost_key_rbk:
+0516 2040052c call p_mouse_ghost_key_check_r_bk 
+0517 202057e5 branch mouse_ghost_key_check_next 
+
+p_mouse_matrix_ghost_key_l_bk:
+0518 6848c645 fetcht 1 ,mem_mbutton_gpio 
+0519 6fe0c648 fetch 1 ,mem_fw_button_gpio 
+051a 98467c00 isub temp ,null 
+051b 2022d7d6 branch mouse_ghost_key_lbk_mfw ,zero 
+
+p_mouse_ghost_key_lbk_rfw:
+051c 204057ef call mouse_ghost_key_check_l_bk 
+051d 20200528 branch p_mouse_ghost_key_rfw 
+
+p_mouse_matrix_ghost_key_l_fw:
+051e 6848c645 fetcht 1 ,mem_mbutton_gpio 
+051f 6fe0c647 fetch 1 ,mem_bk_button_gpio 
+0520 98467c00 isub temp ,null 
+0521 20228524 branch p_mouse_ghost_key_lfw_mbk ,zero 
+
+p_mouse_ghost_key_lfw_rbk:
+0522 2040052e call p_mouse_ghost_key_check_l_fw 
+0523 20200516 branch p_mouse_ghost_key_rbk 
+
+p_mouse_ghost_key_lfw_mbk:
+0524 2040052e call p_mouse_ghost_key_check_l_fw 
+0525 2040052a call p_mouse_ghost_key_check_m_bk 
+0526 202057e5 branch mouse_ghost_key_check_next 
+
+p_mouse_ghost_key_mbk_rfw:
+0527 2040052a call p_mouse_ghost_key_check_m_bk 
+
+p_mouse_ghost_key_rfw:
+0528 20400530 call p_mouse_ghost_key_check_r_fw 
+0529 202057e5 branch mouse_ghost_key_check_next 
+
+p_mouse_ghost_key_check_m_bk:
+052a 1a417e12 and regb ,mouse_m_bk_button ,pdata 
+052b 202057f3 branch mouse_ghost_key_check_m_bk + 1 
+
+p_mouse_ghost_key_check_r_bk:
+052c 1a417e0a and regb ,mouse_r_bk_button ,pdata 
+052d 202057f6 branch mouse_ghost_key_check_r_bk + 1 
+
+p_mouse_ghost_key_check_l_fw:
+052e 1a417e11 and regb ,mouse_l_fw_button ,pdata 
+052f 202057f9 branch mouse_ghost_key_check_l_fw + 1 
+
+p_mouse_ghost_key_check_r_fw:
+0530 1a417e12 and regb ,mouse_r_fw_button ,pdata 
+0531 202057ff branch mouse_ghost_key_check_r_fw + 1 
               org 0x2000
 
 start:
@@ -19568,6 +19713,8 @@
 54df 2040611a call mouse_logo_led_off 
 54e0 2040550c call mouse_lpm_before_common 
 54e1 204054f9 call mouse_gpio_pd_idle 
+
+mouse_setgpio_hibernate_next:
 54e2 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
 54e3 204055b5 call mouse_gpio_config_input_pu 
 54e4 204055b9 call mouse_gpio_set_high_impedance 
Index: output/ramcode.rom
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/ramcode.rom	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/ramcode.rom	(working copy)
@@ -1,52 +1,55 @@
-c2840024
-c0000298
-c001004b
-c0080054
-c0088056
-c00a016f
-c00a80d8
-c00c00f8
-c00c80ff
-c00d0064
-c012821e
-c0340291
-c03482b1
-c036025a
-c0368033
-c039847e
-c03d04d0
-c03f845e
-c04084b5
-c042039a
-c04283e6
-c0430206
-c04383c4
-c04403e4
-c04503ae
-c04602ef
-c0468357
-c0470448
-c04582c8
-c04804aa
-c04a8475
-c04b0493
-c062823d
+c2840027
+c00002a7
+c001004e
+c0080057
+c0088059
+c00a0157
+c00a80d9
+c00c00f9
+c00c8100
+c00d0067
+c0128226
+c03402a0
+c03482b3
+c0360263
+c0368036
+c037044c
+c03984a1
+c03a0223
+c03d04f3
+c03f8481
+c04084d8
+c042039c
+c04283e8
+c04301ee
+c04383c6
+c04403e6
+c04503b0
+c04582ca
+c04602f1
+c0468359
+c047046b
+c04804cd
+c04a8498
+c04b04b6
+c0628249
+c06a820d
+c06b0206
 c06d0140
-c06e0150
 2020235a
-c00a0190
-c00d018f
-c01281bf
-c01301c4
-c01c81d6
-c01d01e0
-c02601da
-c02681de
-c0480240
-c04b0469
-c04d00e6
-c04e80ed
-c04f8262
+c00a0178
+c00d0177
+c01281a7
+c01301ac
+c01c81be
+c01d01c8
+c02601c4
+c02681c2
+c048024c
+c04b048c
+c04d00e7
+c04e80ee
+c04f8271
 c17f8000
 2020235a
 6fe0c64f
@@ -81,7 +84,7 @@
 20402018
 2040310f
 2040248c
-2020004b
+2020004e
 70890000
 20202153
 708a0f60
@@ -108,7 +111,7 @@
 708a844a
 708a8540
 708a16fe
-204000ac
+204000ae
 204070d7
 37d98200
 70813b5f
@@ -116,7 +119,7 @@
 70813c88
 37d98200
 6fe0c099
-c00800a1
+c00800a3
 6fe0c438
 1fe1fe04
 67f08a02
@@ -127,18 +130,17 @@
 67f18a73
 708a8660
 708a8b3b
-20400093
+20400095
 70804300
 70804205
 58557474
 67f18968
 7089606e
-20400112
-2040013d
-2040008d
+20400113
+2040013e
+2040008f
 7041480c
-20406f4e
-2020013f
+20206f4e
 20758000
 37d98200
 6fe0c11c
@@ -146,7 +148,7 @@
 37d98200
 20600000
 6fe0c099
-c00c0099
+c00c009b
 6fe0c438
 1fe1fe06
 67f08a02
@@ -169,8 +171,8 @@
 67f18a73
 708a762a
 70890204
-2020007f
-203580d4
+20200082
+203580c0
 6fe2020d
 207a0000
 37d98200
@@ -188,6 +190,9 @@
 9841fe00
 67f08138
 37d98200
+6fe1415b
+207a0000
+67e1020f
 6ff08acb
 1fe17ef0
 6848820f
@@ -210,10 +215,6 @@
 9841fe00
 67f08a02
 20600000
-6fe1415b
-207a0000
-67e1020f
-202000be
 2040686f
 204021ba
 18002a08
@@ -230,7 +231,7 @@
 202021b4
 6fe0c793
 247a0000
-204000ea
+204000eb
 202060fc
 6fe0c655
 c17f8000
@@ -238,13 +239,13 @@
 6848c601
 6fe0c621
 98467c00
-242100f2
+242100f3
 20203681
 6fe2458f
 684a45e4
 98467c00
 2022b222
-20400287
+20400296
 2020369b
 580aaa7e
 67f18a0f
@@ -255,9 +256,9 @@
 20202203
 6fe0c141
 c0032225
-c0050105
-c04f010e
-c055010a
+c0050106
+c04f010f
+c055010b
 2020220e
 708a1425
 58a93f3f
@@ -284,7 +285,7 @@
 708ac200
 708ac300
 d8e00006
-2040012f
+20400130
 2a2ffe0d
 2040211d
 2a4ffe0d
@@ -292,14 +293,14 @@
 d8e00005
 2040211c
 2040211e
-2040012f
+20400130
 d8a08ac2
 1a31fe00
 20402117
 1a51fe00
 20402117
 18e08fff
-20210124
+20210125
 2020214f
 2000003c
 58000f00
@@ -317,7 +318,6 @@
 2020212d
 20758000
 20202272
-20600000
 20758000
 708a0777
 708a08c9
@@ -325,7 +325,7 @@
 6fe0c409
 67f080cd
 20000bb8
-20400168
+20400150
 708a08c1
 6a40c419
 df200008
@@ -334,33 +334,9 @@
 67e0c433
 6240c419
 20600000
-2040015e
-6ff08a09
-793ffe07
-67f08a09
-708a0777
-708a08c1
-708a0b01
-20406f90
-6fe0c409
-67f080cd
-20000bb8
-20400168
-7080cd00
-20206fa1
-6ff080cc
-79207e01
-67f080cc
-6a40c419
-6fe0c433
-67e0c419
-df200008
-20406f67
-6240c419
-20600000
 7080cc03
 6ff08129
-c3028169
+c3028151
 68590164
 6049440a
 7080cc00
@@ -369,7 +345,7 @@
 708a8d12
 708a8e0a
 6fe0c099
-c0080188
+c0080170
 58005762
 67f10907
 70890103
@@ -380,7 +356,7 @@
 708a8d44
 708a8e0a
 6fe0c099
-c0080185
+c008016d
 58002bb1
 67f10907
 c6978000
@@ -389,34 +365,34 @@
 20600000
 58004189
 67f10907
-20200181
+20200169
 58008312
 67f10907
-20200176
-6fe0cc02
+2020015e
+6fe0cbf8
 da600100
 9a60fe00
 20600000
-202001af
-20400192
+20200197
+2040017a
 20202563
-6fe0cc03
+6fe0cbf9
 207a0000
-6fe0cc04
+6fe0cbfa
 247a0000
-6848cc03
-6fe0cc02
+6848cbf9
+6fe0cbf8
 98467c00
-2441018b
+24410173
 98467e00
 1fe67c64
-202101a4
-6fe0cc05
+2021018c
+6fe0cbfb
 1fe67c14
-244101a2
-704c0401
+2441018a
+704bfa01
 20600000
-704c0601
+704bfc01
 2020431f
 6848817f
 6fe0804c
@@ -424,18 +400,18 @@
 9842fe00
 2feffe02
 58000000
-6848cc05
+6848cbfb
 7920fe00
 98408400
-6048cc05
+6048cbfb
 20600000
 6fe08005
 1fe0fe01
 67e08005
-243681b6
-6fe0cc02
+2436819e
+6fe0cbf8
 1fe0fe01
-67e0cc02
+67e0cbf8
 6fe08168
 c3818000
 79207e03
@@ -472,34 +448,34 @@
 c1000000
 c001b04a
 202028e1
+793f8030
+20202af6
 20402152
 70890000
 793f8030
 20202ae3
-793f8030
-20202af6
 efe10006
-c00201e3
+c00201cb
 202028eb
 efe18006
 67e1c397
-c00501e8
-c00901f7
+c00501d0
+c00901df
 20202b96
 6fe44713
 c31dad19
 20402dc7
 68494398
 6fe0c321
-c28181f2
+c28181da
 6fe14398
 c0182e03
 68494398
 20202d1d
 6fe14332
 98467c00
-242281ee
-243401ee
+242281d6
+243401d6
 20202d46
 18c22200
 6fe14335
@@ -519,13 +495,13 @@
 20402a28
 247a0000
 6fe0c78f
-c07f8211
+c07f81f9
 6fe0c843
 1fe17e03
 c1818000
-6fe0cc04
+6fe0cbfa
 207a0000
-6fe0cc06
+6fe0cbfc
 247a0000
 6fe0c956
 205a5a71
@@ -538,15 +514,51 @@
 20405ab2
 24740000
 20405abc
-2040049f
+204004c2
 20205b37
+18467cff
+20628000
+d9000004
+284ffe07
+2020eebd
+d9000003
+20206ebd
+18467cff
+20628000
+6048cb1d
+20406ee6
+20208217
+6848cb1d
+20406f0f
+6848cb1d
+d9000003
+20206ebd
+704b1e01
+6848cb1d
+20406f0f
+6848cb1d
+d9000006
+20206ebd
+58000010
+67f08141
+37d98200
+20600000
+58000080
+2020021e
+20400492
+704b1e00
+2020550d
 6fe143e9
 20407d79
 6fe240ad
 9840fe00
 67e240ad
-20400225
+20400231
+2040022e
 20202425
+6fe0cb1e
+203a021d
+20200221
 600440e7
 d8c08070
 d8a040cc
@@ -563,12 +575,12 @@
 efe08011
 e8408013
 98467c00
-20228238
+20228244
 e7e08013
 37d98200
 1a20a201
 1a60a601
-c2000232
+c200023e
 1a420400
 20600000
 20406b3a
@@ -577,7 +589,7 @@
 6fe145e0
 d84001f8
 98417e00
-203a0248
+203a0254
 6fe145e0
 1fe0fe01
 67e145e0
@@ -588,26 +600,29 @@
 2437b586
 2040366e
 6fe0c57d
-203a0257
+203a026b
 6fe245cc
 684a458f
 98467c00
-20228254
+20228260
 2020356e
 6fe44713
 c2983291
 20203549
-6fe2455f
-207a0000
-2020024f
 2040543b
-2040025d
+20400266
 2020544c
-58004a29
+58004a1d
 67e1433f
 58000020
 67e14341
 20600000
+6fe245e4
+684a458f
+2022825b
+6fe2455f
+207a0000
+2020025b
 6fe0c437
 247a0000
 6fe144e9
@@ -616,15 +631,15 @@
 204035b4
 6048c624
 6fe0c629
-c513026c
+c513027b
 6fe0c62c
 98467c00
-24210286
+24210295
 6fe0c626
 1fe67c02
-24210274
+24210283
 6fe0c626
-c0000287
+c0000296
 20600000
 6fe0c626
 6848c627
@@ -633,7 +648,7 @@
 70462600
 6848c624
 6fe0c628
-c513027d
+c513028c
 6fe0c62b
 98467c00
 24610000
@@ -641,69 +656,56 @@
 c0003715
 1fe0ffff
 67e0c625
-c001028f
+c001029e
 c000b70b
 20203715
 70462600
 6fe0c625
-c001828d
+c001829c
 1fe0fe01
 67e0c625
 c000b70b
-c001028f
+c001029e
 70414105
 20600000
 70414103
 20600000
 58006235
 67e145f8
-5800029b
+5800622b
 67e145fa
-580002b0
+580002b2
 67e143e9
 202053f3
+2435a002
+37d98200
+37d98200
 20800000
-2055e004
+205582ad
 20202003
-204036b4
-24740000
-70477c01
-204036be
-70477200
-204062aa
-6fe0c73f
-245a54dc
-204002a6
-6fe245af
-20203622
-6fe0c73f
-247a0000
-6848c64a
-20406f0f
+2040021d
 6848c64a
-20406ec6
-6848c64b
-20406f0f
+20406edd
 6848c64b
-20206ec6
+20206edd
 20600000
-20400442
+20400465
 6fe44713
 c289dd60
 c2895d6e
-c28a02b7
+c28a02b9
 20600000
-204002c2
+204002c4
 20405e43
 20405db4
-204002d6
-204002bf
-204002c5
-204002de
+204002d8
+204002c1
+204002c7
+204002e0
 20205daa
 6fe44713
 c4150000
-204004aa
+204004cd
 6fe0c666
 67e0ca06
 20600000
@@ -713,7 +715,7 @@
 6fe1468e
 d840aa55
 98467c00
-2022834b
+2022834d
 6049468e
 20405c9c
 6fe0c9a1
@@ -726,9 +728,9 @@
 20600000
 6fe0c666
 1fe67c00
-202282d3
+202282d5
 1fe67c04
-202282dc
+202282de
 20610000
 70466600
 20600000
@@ -738,47 +740,47 @@
 1a422600
 20405e3d
 6fe149e0
-203a02ec
+203a02ee
 67e149de
 1a60a602
 6fe14a00
 9a667c00
-242102ec
+242102ee
 1a622400
-202002e2
+202002e4
 6fe149de
 67e14695
 20600000
 6fe44713
 c289dcb1
 c2895cb9
-c28a02f4
+c28a02f6
 20600000
-204002f7
-204002fc
+204002f9
+204002fe
 20205cc1
 6fe0c666
 c1000000
-c0008323
-c0010337
+c0008325
+c0010339
 20600000
 6a4149e2
 1a422600
 20405dc0
 6fe0c9a1
-203a0308
+203a030a
 67e0c9a0
 1a60a601
 6fe149e4
 9a667c00
 24610000
 1a622400
-202002fe
+20200300
 6fe0c9a0
 1fe17ef0
-203a0312
+203a0314
 6fe0c666
-20400320
+20400322
 67e0c9a2
 df200001
 1a622400
@@ -786,7 +788,7 @@
 20206b45
 6848c9a0
 6fe0c666
-20400320
+20400322
 98467c00
 20628000
 1ff27e00
@@ -795,9 +797,9 @@
 1a627e00
 684949e2
 98467c00
-2022830e
+20228310
 1a60a7ff
-2020030e
+20200310
 c1800000
 1fe0fe04
 20600000
@@ -805,14 +807,14 @@
 1a422600
 20405df3
 6fe349b5
-203a032f
+203a0331
 67e349af
 1a60a606
 6fe149f0
 9a667c00
 24610000
 1a622400
-20200325
+20200327
 6fe349af
 684b466e
 98467c00
@@ -825,14 +827,14 @@
 1a422600
 20405e17
 6fe349cd
-203a0343
+203a0345
 67e349c7
 1a60a606
 6fe149f8
 9a667c00
 24610000
 1a622400
-20200339
+2020033b
 6fe349c7
 684b467b
 98467c00
@@ -841,21 +843,21 @@
 da20467b
 1a622400
 20206b45
-20400384
-2040039c
-2040034f
+20400386
+2040039e
+20400351
 20205c90
 6fe44713
 c4078000
 6fe0c690
 c0005c94
-c0030355
+c0030357
 20600000
 70469000
 20600000
 6fe44713
 c289dcb5
-c28a035b
+c28a035d
 20600000
 6fe44713
 c4078000
@@ -863,19 +865,19 @@
 1a422600
 20405e51
 6fe0c9d4
-203a0369
+203a036b
 67e0c9d3
 1a60a601
 6fe149fc
 9a667c00
 24610000
 1a622400
-2020035f
+20200361
 6fe0c9d3
 1fe17ef0
-203a0373
+203a0375
 6fe0c690
-20400381
+20400383
 67e0c9d5
 df200001
 1a622400
@@ -883,7 +885,7 @@
 20206b45
 6848c9d3
 6fe0c690
-20400381
+20400383
 98467c00
 20628000
 1ff27e00
@@ -892,18 +894,18 @@
 1a627e00
 684949fa
 98467c00
-2022836f
+20228371
 1a60a7ff
-2020036f
+20200371
 c1800000
 1fe0fe06
 20600000
 6fe44713
-c29f038b
+c29f038d
 6fe0c666
 c1000000
-c000838b
-c0010392
+c000838d
+c0010394
 20600000
 6fe3466e
 684b46e6
@@ -920,15 +922,15 @@
 1fe0ff00
 67e3466e
 20600000
-2040039c
+2040039e
 20205a9c
 6fe44713
 c30a5c6f
-c29f03a4
+c29f03a6
 6fe0c666
 c1000000
-c00083a4
-c00103a9
+c00083a6
+c00103ab
 20600000
 6fe34668
 67e34116
@@ -946,11 +948,11 @@
 d8e00002
 20405f04
 20405c4a
-204003b6
+204003b8
 20205ca3
 6fe0c666
-c00083ba
-c00103bf
+c00083bc
+c00103c1
 20600000
 6fe30178
 67e34668
@@ -962,7 +964,7 @@
 6fe342db
 67e3467b
 20600000
-204003da
+204003dc
 2040614d
 2040553d
 20406110
@@ -980,7 +982,7 @@
 20405bee
 20405be4
 20405bfb
-204003dd
+204003df
 204056b6
 20405c0e
 20205c05
@@ -988,7 +990,7 @@
 da405aef
 202042e0
 da60477e
-da4003e0
+da4003e2
 202042e0
 6fe0c96b
 67e0c0c0
@@ -997,25 +999,25 @@
 204059ed
 20205c1b
 1a627e00
-c02003fb
-c00a8400
-c01903f2
-c01e041e
-c01c842f
-c01d0432
-c00a03ef
+c02003fd
+c00a8402
+c01903f4
+c01e0420
+c01c8431
+c01d0434
+c00a03f1
 20205ac3
 58000000
-67e24c03
+67e24bf9
 20205ad0
 6fe0c795
-c00083f6
+c00083f8
 70484414
-202003f8
+202003fa
 20405aef
 70484405
-6fe0cc02
-67e0cc03
+6fe0cbf8
+67e0cbf9
 20205af6
 6fe0ca04
 247a0000
@@ -1030,17 +1032,17 @@
 70479400
 d8400006
 6fe44713
-c28d840a
+c28d840c
 d8400007
 604942d3
 604942d5
 7047c200
 70495600
 204029cb
-20200410
+20200412
 20405b7b
 6fe143ef
-c2838415
+c2838417
 c28042fc
 20205c1a
 6fe143ef
@@ -1049,7 +1051,7 @@
 1fe17e03
 20405b21
 c081d4a9
-6fe0cc06
+6fe0cbfc
 243a54a9
 202054cd
 6fe2458f
@@ -1067,19 +1069,21 @@
 98467c00
 20628000
 20406016
-20400445
+20400468
 20206042
 20406016
-20400445
+20400468
 20206084
 20406016
-20400445
+20400468
 6fe0c87a
 c1008000
 6fe0c600
 243a5ff2
 6fe0c5e2
-c002043b
+c002043f
+c000e05f
+c0018446
 20206055
 6fe44713
 c31f6059
@@ -1087,7 +1091,38 @@
 c000e059
 20406018
 70466601
-202054a0
+20205491
+6fe44713
+c31f6059
+c289e059
+c28a6059
+c2896059
+20206034
+6fe44713
+c29f0451
+6fe0c666
+c0000458
+20205491
+204054ac
+20340454
+2020602f
+6fe0c666
+c0006067
+20405aa8
+20200443
+6fe44713
+c308e02a
+20406195
+204054ac
+20346067
+6fe44713
+c2980460
+20206023
+70466600
+6fe14721
+67e145de
+7045e201
+20203534
 6fe0c141
 67e0ca07
 20600000
@@ -1096,26 +1131,26 @@
 20600000
 2040620e
 204078aa
-2040044c
+2040046f
 20205e61
 6fe0c649
 c17f8000
 da200000
 70497705
 6848c649
-20400453
+20400476
 202056c1
 6fe44713
 c295d6de
 6fe0c974
 1fe22600
 6fe0c654
-c07f845a
+c07f847d
 202056ce
 6fe0c649
 20405946
 6848c649
-2020045e
+20200481
 1a627e00
 67e0c978
 1fe3fe00
@@ -1130,7 +1165,7 @@
 204036b4
 24740000
 204036be
-2040046f
+20400492
 6fe1c608
 20203622
 58000000
@@ -1147,9 +1182,9 @@
 67e3c846
 70473f01
 204059ed
-2020029b
+2020622b
 20405a92
-2040046f
+20400492
 204056a9
 6848c654
 20406ef7
@@ -1157,29 +1192,29 @@
 20406ed3
 6fe0c64d
 20405943
+6848c65a
+204055ab
 d8400015
 204055b5
-2040048b
-202054df
-6fe0c65a
-c17f8000
-6fe0c666
-c0000491
-6848c65a
-202055b5
-6848c65a
-20206f0f
+2040611a
+2040550c
+204054f9
+6848c64a
+20406f0f
+6848c64b
+20406f0f
+202054e2
 c6930000
 20405601
 24740000
 6fe0c77c
 70477c00
-245a04a8
+245a04cb
 6fe44713
-c30b049d
+c30b04c0
 6fe0c96c
 243a60b6
-2040049f
+204004c2
 202060a2
 6fe0c659
 c1ff8000
@@ -1190,8 +1225,8 @@
 58000000
 67e24847
 20205a73
-2040046f
-2020022e
+20400492
+2020023a
 6fe44713
 c4150000
 c31fdeb9
@@ -1206,11 +1241,11 @@
 20405958
 c018595f
 c018d9c6
-c02c04ba
+c02c04dd
 20205952
 204059e7
 6fe0c85a
-c02c84be
+c02c84e1
 2020595f
 7049570b
 da604a0b
@@ -1218,11 +1253,11 @@
 6fe0c420
 c1800000
 6fe0c957
-c00584c6
+c00584e9
 202059f8
 20405a6d
 6fe0c659
-c07f84cc
+c07f84ef
 6848c659
 20406ee6
 24608000
@@ -1233,5 +1268,63 @@
 78547c00
 58000000
 67e34847
-204004c1
-20205606
+204004e4
+58000089
+204069e4
+20405747
+20405612
+20405617
+204004fe
+2020560c
+2040584c
+6fe0c987
+243a5860
+6fe0c982
+243a585f
+20405888
+20400506
+202057ad
+70497900
+70497a00
+70497b00
+1fe22400
+6848c644
+6fe0c647
+98467c00
+20228518
+6fe0c648
+98467c00
+2022851e
+6848c645
+6fe0c647
+98467c00
+20228527
+204057fb
+2040052c
+202057e5
+6848c645
+6fe0c648
+98467c00
+2022d7d6
+204057ef
+20200528
+6848c645
+6fe0c647
+98467c00
+20228524
+2040052e
+20200516
+2040052e
+2040052a
+202057e5
+2040052a
+20400530
+202057e5
+1a417e12
+202057f3
+1a417e0a
+202057f6
+1a417e11
+202057f9
+1a417e12
+202057ff
Index: output/sched.rom
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/sched.rom	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/sched.rom	(working copy)
@@ -12,8 +12,8 @@
 00   #mem_patch0a
 00   #mem_patch0b
 00   #mem_patch0c
-33   #mem_patch0d
-08   #mem_patch0e
+73   #mem_patch0d
+18   #mem_patch0e
 84   #mem_patch0f
 f2   #mem_patch10
 7d   #mem_patch11
@@ -25,8 +25,8 @@
 00   #mem_patch17
 20   #mem_patch18
 00   #mem_patch19
-00   #mem_patch1a
-14   #mem_patch1b
+60   #mem_patch1a
+04   #mem_patch1b
 00   #mem_patch1c
 00   #mem_patch1d
 00   #mem_patch1e
@@ -225,6 +225,7 @@
 mem_lpm_mode:01
 mem_lpm_mult:20
 mem_lpm_mult_init:20
+mem_mouse_set_high_impedance_bit_set:00 00 00
 
 mem_device_flag:
 00		#00--24g 01--bt
@@ -277,7 +278,7 @@
 mem_mouse_24g_fast_hop_count_4ms:05
 mem_mouse_24g_tsniff_4ms:80 bb 00 00
 
-mem_mouse_24g_short_sleep_set_8ms:f2 f9 00#ac 07 01	#5625us	40 19 01:72000:6ms
+mem_mouse_24g_short_sleep_set_8ms:60 ea 00
 mem_mouse_24g_long_sleep_set_8ms:00 77 01
 mem_mouse_24g_fast_hop_count_8ms:0b
 mem_mouse_24g_tsniff_8ms:00 77 01 00
@@ -365,9 +366,9 @@
 mem_otp_offset_le_locall_addr2_end:fa 1e					#7930  end
 
 mem_otp_offset_le_addr_increase_count:fb 1e			#7931 begin		100 count
-mem_otp_offset_le_addr_increase_count_end:c2 1f		#8130 end					----------info over	
+mem_otp_offset_le_addr_increase_count_end:ac 1f		#8108 end					----------info over	
 
-mem_otp_offset_app_initflag:c4 1f		#8132 end
+mem_otp_offset_app_initflag:ae 1f		#8110 end
 
 #ui
 mem_ui_button_gpio:ff
@@ -469,13 +470,11 @@
 be d1
 a0 41
 a1 12
-a5 84
 a7 ff
-b5 d0
 b6 00
+b5 c8
+a5 af
 ff 00
-35 c8
-25 af
 09 00
 ff ff
 
@@ -506,6 +505,29 @@
 09 00
 ff ff
 
+
+#adc config
+mem_adc_config_flag:01
+#01 ADC_CONFIG_HVIN
+#02 ADC_CONFIG_GPIO
+mem_adc_clkdiv:0a
+mem_adc_channel:09
+#00 ADC_CH_VBAT
+#01 ADC_CH_VDCDC5V
+#06 ADC_CH_GPIO18
+#07 ADC_CH_GPIO10
+#08 ADC_CH_GPIO9
+#09 ADC_CH_GPIO12
+#0a ADC_CH_GPIO6
+#0b ADC_CH_GPIO20
+#0c ADC_CH_GPIO21
+#0d ADC_CH_GPIO22
+#0e ADC_CH_GPIO13
+
+mem_mouse_vdd_full_vol:a4 01		#4.2V
+18 01#mem_mouse_vdd_empty_vol  :2.8V
+2c 01#mem_mouse_vdd_low_vol   :3.0V
+
 # rf debug
 #bit7:0 means disable rf debug function
 #mem_rf_debug_rx_gpio:87
@@ -535,28 +557,6 @@
 mem_gain_second_agc_en:08	#hw agc: 0:second agc disable
 mem_otp_load_check_sum:5a
 
-#adc config
-mem_adc_config_flag:01
-#01 ADC_CONFIG_HVIN
-#02 ADC_CONFIG_GPIO
-mem_adc_clkdiv:0a
-mem_adc_channel:00
-#00 ADC_CH_VBAT
-#01 ADC_CH_VDCDC5V
-#06 ADC_CH_GPIO18
-#07 ADC_CH_GPIO10
-#08 ADC_CH_GPIO9
-#09 ADC_CH_GPIO12
-#0a ADC_CH_GPIO6
-#0b ADC_CH_GPIO20
-#0c ADC_CH_GPIO21
-#0d ADC_CH_GPIO22
-#0e ADC_CH_GPIO13
-
-mem_adc_dma_enable:00
-mem_adc_saddr_ptr:00 07
-mem_adc_eaddr_ptr:ff 07
-
 mem_ring_ibias_trim:a0
 mem_ring_ibias_vtune_high:bc 02 #700mv
 mem_ring_ibias_vtune_low:90 01 #400mv
Index: program/app_mouse.prog
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/app_mouse.prog	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/app_mouse.prog	(working copy)
@@ -342,6 +342,7 @@
 	call mouse_logo_led_off
 	call mouse_lpm_before_common
 	call mouse_gpio_pd_idle
+mouse_setgpio_hibernate_next:
 	fetcht 1,mem_mouse_reuse_2ice_gpio
 	call mouse_gpio_config_input_pu
 	call mouse_gpio_set_high_impedance
@@ -641,7 +642,7 @@
 	isolate1 0,pdata
 	call gpio_set_high_impedance,true
 	fetch 3,mem_pdatatemp
-	lshift pdata,pdata
+	lshift pdata,pdata		//-->rshift
 	store 3,mem_pdatatemp
 	increase 1,temp
 	loop mouse_gpio_set_high_impedance_bit_loop
Index: program/patch.prog
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/patch.prog	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/patch.prog	(working copy)
@@ -2,15 +2,15 @@
 //define AUTO_TEST
 //define PWM_SET
 //define SELECT_ANGLE
-//define UART_LOG
 define POWER_CTRL
 //define MORE_POWER_CTRL
+//define ADC_1121SB
+//define ADC_1121SB_1V8_MODE
 define SENSOR_ANGLE_ICE_SDIO
 
 	bbit1 8,pf_patch_ext
 	beq patch00_0,p_soft_reset
 	beq patch00_2,p_main_loop
-//	beq patch01_7,p_rx_dcoc
 	beq patch02_0,p_shutdown_radio
 	beq patch02_1,p_set_sync_on
 	beq patch02_4,p_set_lemode
@@ -18,8 +18,6 @@
 	beq patch03_0,p_txon
 	beq patch03_1,p_set_tx_power
 	beq patch03_2,p_initialize_radio_cont
-//	beq patch03_3,p_rfpll_aac_ghpc
-//	beq patch03_5,p_dpll_ring_ibias_calc
 	beq patch04_5,p_lpm_sleep
 	beq patch0d_0,p_mouse_cb_fuction
 	beq patch0d_1,p_mouse_load_device_info_check
@@ -27,7 +25,9 @@
 ifdef SENSOR_ANGLE_ICE_SDIO	
 	beq patch0d_5,p_mouse_sensor_set_angle
 endif	
+	beq patch0d_6,p_mouse_start_work
 	beq patch0e_3,p_mouse_setgpio_hibernate
+	beq patch0e_4,p_mouse_lpm_before_common
 	beq patch0f_2,p_mouse_motion
 	beq patch0f_7,p_mouse_3io6key_check
 	beq patch10_1,p_mouse_init_sensor
@@ -37,16 +37,22 @@
 	beq patch10_7,p_mouse_bb_event_timer
 	beq patch11_0,p_mouse_start_discovery
 	beq patch11_2,p_mouse_store_remote_bdaddr
+	beq patch11_3,p_mouse_app_initflag_check
 	beq patch11_4,p_mouse_store_device_info
 	beq patch11_5,p_mouse_store_dpi_info_check
 	beq patch11_6,p_mouse_idle
-	beq patch11_3,p_mouse_app_initflag_check
 	beq patch12_0,p_mouse_check_select_device_by_switch
 	beq patch12_5,p_mouse_24g_hibernate_set
 	beq patch12_6,p_mouse_24g_package_data
 	beq patch18_5,p_otp_read_data
+	beq patch1a_5,p_gpio_set_wake_by_current_state	
+	beq patch1a_6,p_gpio_set_wake
 	beq patch1b_2,p_sadc_calibration
+ifdef ADC_1121SB
+	beq patch1b_3,p_adc_init_data
 	beq patch1b_4,p_enable_adc
+	beq patch1b_5,p_vdd_calculate_by_mode
+endif
 	branch assert
 
 pf_patch_ext:
@@ -70,20 +76,6 @@
 
 /****************************************COMMON PATCH*****************************************/
 
-//p_g24_ackpayload_parse:
-//	call g24_read_len_pid_crc
-//	fetch 1,mem_24g_rxdata_length	//ack payload length 
-//	rtn blank
-//	iforce loopcnt
-//	arg mem_24g_rxbuf+2,contr
-//	arg mem_24g_rxpayload,contw	//ack payload buffer 
-//	call memcpy
-//ifdef UART_LOG
-//	call p_buffer_print_rx
-//endif	
-//	rtn
-
-
 ifdef SENSOR_ANGLE_ICE_SDIO
 p_mouse_sensor_set_angle:
 	fetch 1,mem_sensor_angle_default
@@ -190,8 +182,7 @@
 	call p_rfpll_aac_ghpc
 	call p_set_xtal_cap
 	jam SYSTEM_CLK_12M,mem_system_clk
-	call sadc_calibration
-	branch p_dpll_ring_ibias_calc
+	branch sadc_calibration
 	
 p_set_xtal_cap:
 	rtn wake
@@ -252,6 +243,10 @@
 	store 1,0x8138 
 	until null,lpo_edge
 
+p_set_otp_config_wake:
+	fetch 2,mem_otp_charge_pump_x
+	rtn blank
+	store 2,mem_otp_charge_pump
 p_set_otp_config2:
 	fetch 1,0x8acb
 	and pdata,0xf0,pdata
@@ -278,12 +273,6 @@
 	store 1,0x8a02
 	rtn
 
-p_set_otp_config_wake:
-	fetch 2,mem_otp_charge_pump_x
-	rtn blank
-	store 2,mem_otp_charge_pump
-	branch p_set_otp_config2
-
 p_rf_rx_enable:
 	call rf_debug_rx_gpio_high
 	call rf_rx_agc_set
@@ -469,9 +458,6 @@
 p_rfpll_aac_ghpc:
 	rtn wake
 	branch rfpll_aac_ghpc+1
-	
-p_dpll_ring_ibias_calc:
-	rtn
 
 p_sadc_calibration:
 	rtn wake
@@ -491,33 +477,6 @@
 	storer regb,1,mem_spi_write_addr
 	rtn
 
-p_enable_adc:
-	call p_sadc_cal_write
-	fetch 1,core_gpadc_cfg1
-	set0 7,pdata
-	store 1,core_gpadc_cfg1
-	jam 0x77,core_gpadc_ctrl
-	jam 0xc1,core_gpadc_cfg0
-	jam 0x01,core_gpadc_cfg3
-	call sadc_channel
-	fetch 1,mem_adc_clkdiv
-	store 1,core_sadc_clkdiv
-	nop 3000
-	call p_sadc_read
-	jam 0,core_sadc_clkdiv
-	branch sadc_dma
-
-p_sadc_cal_write:
-	fetch 1,core_sadc_ctrl
-	set1 1,pdata
-	store 1,core_sadc_ctrl
-	fetchr regb,1,mem_spi_write_addr
-	fetch 1,mem_adc_cal_c7
-	store 1,mem_spi_write_addr
-	arg 8,loopcnt	//rg_gpadc_sar_dat_sel c0-c7
-	call sadc_cal_write+4
-	storer regb,1,mem_spi_write_addr
-	rtn
 
 p_sadc_read:
 	jam 0x03,core_sadc_ctrl
@@ -598,8 +557,6 @@
 p_le_check_retransmit_count:
 	fetcht 1,mem_le_arq
 	fetch 1,mem_le_rxbuf_data_header
-//	isolate1 md,pdata
-//	setflag true,mark_ble_rx_md,mark
 	rshift pdata,pdata
 	ixor temp,pdata
 	isolate1 nesn,pdata
@@ -625,12 +582,10 @@
 	store 2,mem_le_superto
 	setarg 0
 	store 4,mem_le_transmit_window	
-//	fetch 1,mem_le_conn_rcv_new
-//	store 1,mem_le_conn_first_rcv
 	rtn
+	
 p_le_rx_dec:
 	call le_check_retransmit	
-//	bmark1 mark_old_packet,le_retransmit_end_of_packet
 	fetchr rega, 1,mem_le_rxbuf_data_length
 	increase -4,rega
 	nbranch le_crc_fail_consecutive,positive
@@ -662,15 +617,15 @@
 	beq LLID_LE_LL,le_parse_ll
 	branch le_parse_l2cap
 	
+p_le_init_adv:
+	set0 mark_ble_crc_fail,mark	
+	branch le_init_adv+1
+
 p_le_adv_not_match:
 	call shutdown_radio
 	jam 0,0x8900
 	set0 mark_ble_crc_fail,mark
-	branch le_adv_not_match+1	
-	
-p_le_init_adv:
-	set0 mark_ble_crc_fail,mark	
-	branch le_init_adv+1
+	branch le_adv_not_match+1
 
 p_le_parse_l2cap:
 	ifetch 2,contr
@@ -749,6 +704,54 @@
 	call p_mouse_data_xy_release
 	branch mouse_le_next+12
 
+p_gpio_set_wake:
+	sub temp,UI_BUTTON_GPIO_DISABLE,null
+	rtn zero
+	arg 4,debug
+	isolate1 GPIO_ACTIVE_BIT,temp
+	branch gpio_set_wake_high,true
+	arg 3,debug
+	branch gpio_set_wake_high
+
+p_gpio_set_wake_by_current_state:
+	sub temp,GPIO_DISABLE,null
+	rtn zero
+	storet 1,mem_mouse_wheel_temp_gpio
+	call gpio_get_bit
+	branch p_gpio_set_qdec_mode,true
+p_gpio_set_low_wake_disable_qdec:
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_mouse_wheel_temp_gpio
+p_gpio_set_low_wake:
+	arg 3,debug
+	branch gpio_set_wake_high
+	
+p_gpio_set_qdec_mode:
+	jam 1,mem_mouse_qdec_set_flag
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_mouse_wheel_temp_gpio
+p_mouse_qdec_lpm_cfg:
+	arg 6,debug
+	branch gpio_set_wake_high
+
+p_mouse_puchk_disable:
+	setarg 0x10			//bit0-1:key_delay	bit2-3:pu_delay		bit4-6:interval	bit7:enable 
+p_mouse_puchk_set:
+	store 1,core_puwakeup
+	until null,lpo_edge
+	rtn
+
+p_mouse_puchk_enable:
+	setarg 0x80			//bit0-1:key_delay	bit2-3:pu_delay		bit4-6:interval	bit7:enable 
+	branch p_mouse_puchk_set
+
+p_mouse_lpm_before_common:
+	call p_clear_wake
+	jam 0,mem_mouse_qdec_set_flag
+	branch mouse_lpm_before_common+1
+	
 p_lpm_sleep:
 	//call xtal_fast_wake
 	fetch 2,mem_cb_before_lpm_sleep
@@ -758,8 +761,14 @@
 	iadd temp,pdata
 	store 4,mem_sleep_counter_all
 	call p_lpm_save_context
+	call p_mouse_puchk_set_check
 	branch lpm_sleep_skip_cb_function+4
 
+p_mouse_puchk_set_check:
+	fetch 1,mem_mouse_qdec_set_flag
+	branch p_mouse_puchk_disable,blank
+	branch p_mouse_puchk_enable
+
 p_lpm_save_context:
 	storer mark,8,mem_saved_mark
 	arg core_gpio_conf,contr
@@ -810,7 +819,6 @@
 	nbranch g24_reconn_device_fail,sync
 	nbranch g24_reconn_device_fail,user3
 	call g24_ackpayload_parse
-	
 	fetch 1,mem_24g_rxdata_length	//ack payload length 
 	branch p_recv_addr_zero_skip,blank
 p_g24_reconn_dispatch_next_2:	
@@ -825,11 +833,6 @@
 	bbit1 MOUSE_ENABLE_AUTO_24G_PARING,g24_pair_start
 	branch g24_reconn_receiver_addr
 
-p_recv_addr_zero_skip:
-	fetch 4,mem_24g_rxpayload+2
-	rtn blank
-	branch p_g24_reconn_dispatch_next_2
-
 p_mouse_param_init:
 	call mouse_param_common_init
 	call p_mouse_le_buff_modify
@@ -842,6 +845,14 @@
 	store 2,mem_ble_l2cap_tx_buff_size_ptr
 	rtn
 
+p_recv_addr_zero_skip:
+	fetch 4,mem_24g_fast_conn_addr
+	fetcht 4,mem_24g_addr
+	branch p_g24_reconn_dispatch_next_2,zero
+	fetch 4,mem_24g_rxpayload+2
+	rtn blank
+	branch p_g24_reconn_dispatch_next_2
+
 ifdef POWER_CTRL
 p_power_ctrl_start:
 	fetch 1,mem_power_ctrl_disable
@@ -925,51 +936,34 @@
 p_mouse_cb_fuction:
 	setarg mouse_24g_short_sleep
 	store 2,mem_cb_24g_transmit_short_sleep
-	setarg p_mouse_24g_long_sleep
+	setarg mouse_24g_long_sleep
 	store 2,mem_cb_24g_transmit_long_sleep
 	setarg p_mouse_24g_before_lpm_sleep
 	store 2,mem_cb_before_lpm_sleep
 	branch mouse_cb_fuction+7
 
 p_soft_reset:
+	nbranch soft_reset+1,wake
+	until null,lpo_edge
+	until null,lpo_edge
 	clear_stack
-	call mouse_wheel_gpio_init,wake
+	call p_mouse_wheel_init_set,wake
 	branch soft_reset+2
 
-p_mouse_24g_long_sleep:
-	call g24_lpm_wait
-	nrtn user
-	jam 1,mem_mouse_24g_long_sleep_flag
-	call g24_setgpio_lpm_before
-	jam 0,mem_mouse_24g_sleep_miss
-	call mouse_24g_send_time_long_wake
-	fetch 1,mem_sensor_shutdown_flag
-	ncall mouse_setgpio_hibernate,blank
-
-	call p_mouse_wheel_set_low_pullup
-
-	fetch 4,mem_24g_enter_hibernate
-	branch g24_long_seep2
-
-p_mouse_wheel_set_low_pullup:
-	fetch 1,mem_sensor_shutdown_flag
-	nrtn blank
-	fetcht 1,mem_whee_a_data_gpio
-	call gpio_set_high_impedance
-	fetcht 1,mem_whee_a_data_gpio
-	call gpio_set_low_pullup
-
-	fetcht 1,mem_whee_b_data_gpio
-	call gpio_set_high_impedance
+p_mouse_wheel_init_set:
+	call p_mouse_puchk_disable
+	fetcht 1,mem_whee_a_data_gpio		//reinit gpio pu after disable wheel wakeup
+	call gpio_config_input
 	fetcht 1,mem_whee_b_data_gpio
-	branch gpio_set_low_pullup
-
+	branch gpio_config_input
+	
 p_mouse_24g_before_lpm_sleep:
 	rtn
 //	fetch 1,mem_device_flag
 //	rtnne MODE_24G_DEVICE
 //	branch mouse_24g_before_lpm_sleep+2	
 
+
 ifdef SELECT_ANGLE	
 p_mouse_select_angle:
 	fetch 1,mem_select_sensor_angle_gpio
@@ -1025,22 +1019,21 @@
 	call p_mouse_set_sensor_gpio_sleep
 endif
 	call p_mouse_store_normal_tx_power
-ifdef UART_LOG
-	call p_app_uarta_init	
-endif
 	fetch MOUSE_FLAG_LEN,mem_mouse_flag
 	bbit1 MOUSE_ENABLE_EEPROM,mouse_load_eeprom_info_check
 	bbit1 MOUSE_ENABLE_FLASH,mouse_load_flash_info_check
 	bbit1 MOUSE_ENABLE_OTP,p_mouse_load_otp_info_check
 	rtn
+
 p_mouse_load_otp_info_check:
 	call p_mouse_device_flag_temp_store
 	call mouse_read_otp_dpi
 	call mouse_read_otp_device_flag
-
+	
 	call p_mouse_device_flag_check		//reinit to load info
+
 	call p_mouse_select_device_by_switch_check
-	
+
 	call p_mouse_read_otp_device_info
 	call p_mouse_read_otp_le_addr_increase_count_info
 	branch mouse_otp_load_app_initflag
@@ -1155,7 +1148,7 @@
 	call p_mouse_device_flag_otp_store_judge			// add device_flag check
 	
 	store 1,mem_device_flag_value
-p_mouse_devoce_flag_store_end:	
+p_mouse_device_flag_store_end:	
 	arg 1,loopcnt
 	copy regc,regb
 	arg mem_device_flag_value,rega
@@ -1174,10 +1167,10 @@
 	copy regc,pdata
 	fetcht 2,mem_otp_offset_device_flag
 	isub temp,null
-	branch p_mouse_devoce_flag_store_end,zero
+	branch p_mouse_device_flag_store_end,zero
 	
 	increase -1,regc
-	branch p_mouse_devoce_flag_store_end
+	branch p_mouse_device_flag_store_end
 
 p_mouse_device_flag_otp_store_judge:
 	rtnne MODE_24G_DEVICE
@@ -1437,7 +1430,7 @@
 	call mouse_wheel_trigger_timer
 	call mouse_store_information_delay_timer
 	branch mouse_check_no_data_timeout_timer
-
+	
 p_mouse_le_send_conn_param_update_timer:
 	arg mem_mouse_le_send_conn_param_update_timer,regc
 	arg mouse_updata_le_param,regb
@@ -1563,6 +1556,8 @@
 	nbranch mouse_24g_hibernate_set,blank
 	fetch 1,mem_24g_reconn_type
 	beq PAIR_AND_3_0_ADDR,p_mouse_24g_auto_pair_attempt_fail
+	beq FAST_CONN_AND_RECEIVER,mouse_24g_fast_conn_attempt_fail
+	beq RECEIVER_AND_3_0_ADDR,p_mouse_reconn_dongle_attempt_fail
 	branch mouse_24g_attempt_fail+2
 
 p_mouse_24g_auto_pair_attempt_fail:
@@ -1573,8 +1568,51 @@
 p_mouse_24g_first_bluetooth_reconnect:
 	call mouse_24g_stop
 	jam MODE_BT_DEVICE1,mem_device_flag
-	branch mouse_start_reconnect_device
+	branch mouse_le_fast_conn_judge
+
+p_mouse_reconn_dongle_attempt_fail:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_EEPROM,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_OTP,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_FLASH,mouse_24g_attempt_fail_enter_hibernate
+	branch mouse_24g_start_auto_pair
+
+p_mouse_start_work:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,p_mouse_24g_first_start_auto_pair_mode
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,p_mouse_24g_start_mode
+	branch mouse_le_fast_conn_judge
+
+p_mouse_24g_first_start_auto_pair_mode:	
+	call mouse_wakeup_from_power_check
+	branch p_mouse_24g_first_start_reconn,user 
+	branch mouse_24g_reconn_general_dongle
 
+p_mouse_24g_first_start_reconn:
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,mouse_24g_reconn_dongle_start
+	call mouse_bluetooth_fast_conn_disable
+	branch p_mouse_24g_first_bluetooth_reconnect
+
+p_mouse_24g_start_mode:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_24G,mouse_24g_mode_setup_error
+	call mouse_device_24g_pair_led_config
+	call mouse_wakeup_from_power_check	// wake from hibernate :enble user
+	branch mouse_24g_reconn_dongle_start,user
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_AUTO_24G_PARING,p_mouse_24g_reconn_general_dongle
+	branch mouse_24g_start_mode+7
+
+p_mouse_24g_reconn_general_dongle:
+	jam MODE_24G_DEVICE,mem_device_flag
+	fetch 2,mem_mouse_24g_power_on_fast_conn_timer
+	store 2,mem_24g_reconn_timeout
+	jam FAST_CONN_AND_RECEIVER,mem_24g_reconn_type
+	branch g24_reconn_start
+	
 p_mouse_store_normal_tx_power:
 	fetch 1,mem_tx_power
 	store 1,mem_normal_tx_power
@@ -1655,7 +1693,7 @@
 	jam 1,mem_sensor_shutdown_flag
 	call mouse_sensor_powerdown
 //	call mouse_setgpio_hibernate
-	branch p_mouse_24g_long_sleep
+	branch mouse_24g_long_sleep
 
 p_mouse_setgpio_hibernate:
 	call mouse_set_sdio_high
@@ -1667,23 +1705,45 @@
 	call gpio_clr_wake
 	fetch 1,mem_mouse_sensor_sdio_gpio
 	call mouse_gpio_config_output_high
+	
+	fetcht 1,mem_device_switch_gpio
+	call mouse_gpio_set_pupd_by_input
 	arg 21,temp	//ice band gpio			
 	call mouse_gpio_config_input_pu
-	call p_mouse_device_switch_gpio_high_impedance
-	branch mouse_setgpio_hibernate+3
-
-p_mouse_device_switch_gpio_high_impedance:
-	fetch 1,mem_device_switch_gpio
-	rtneq 0xff
-	fetch 1,mem_device_flag
-	beq MODE_24G_DEVICE,p_mouse_device_switch_gpio_set_impedance
-	fetcht 1,mem_device_switch_gpio
-	branch mouse_gpio_config_input_pu
-
-p_mouse_device_switch_gpio_set_impedance:
-	fetcht 1,mem_device_switch_gpio
-	branch gpio_set_high_impedance
+	
+	call mouse_logo_led_off
+	call mouse_lpm_before_common
+	call mouse_gpio_pd_idle
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_set_high_impedance
+//	fetcht 1,mem_mouse_reuse_2ice_gpio
+//	call mouse_gpio_config_input_pu
+//	call p_mouse_gpio_set_high_impedance
+	branch mouse_setgpio_hibernate_next
+/*
+p_mouse_gpio_set_high_impedance:
+	fetch 3,mem_mouse_set_high_impedance_bit_set
+	store 3,mem_pdatatemp
+	arg 24,loopcnt
+	arg 0,temp
+p_mouse_gpio_set_high_impedance_bit_loop:	
+	fetch 3,mem_pdatatemp
+	isolate1 0,pdata
+	call p_gpio_set_analog,true
+	fetch 3,mem_pdatatemp
+	rshift pdata,pdata
+	store 3,mem_pdatatemp
+	increase 1,temp
+	loop p_mouse_gpio_set_high_impedance_bit_loop
+	rtn
 
+p_gpio_set_analog:
+	sub temp,UI_BUTTON_GPIO_DISABLE,null
+	rtn zero
+	branch gpio_set_analog
+*/
 p_mouse_24g_package_data:
 	rtnmark0 mark_24g
 	call mouse_motion
@@ -1729,33 +1789,6 @@
 	nbranch mouse_check_select_24g_device,true
 	branch mouse_select_btdevice
 
-ifdef PWM_SET
-
-/*
-core_clksel
-[7:6]pwm clock select
-	0:sysclk 
-	1:sysclk undivided
-	2:rc2M
-	3:lpo
-*/
-p_pwm_clk_set:
-	fetch 1,core_clksel
-	and pdata,0xc0,pdata
-	beq 0x40,pwm_24m_clk_set
-	beq 0x80,p_pwm_2m_clk_set
-	beq 0xc0,pwm_33k_clk_set
-	branch pwm_12m_clk_set
-p_pwm_2m_clk_set:
-	setarg 2000000
-	rtn
-
-p_pwm_out_set:
-	fetcht 3,mem_pdatatemp+2
-	call p_pwm_clk_set
-	branch pwm_out_set+2
-endif
-
 p_mouse_init_sensor:
 	call mouse_read_sensor_id
 	beq P32XX_ID1,mouse_init_p32xx_id2_judge
@@ -1846,119 +1879,342 @@
 	setarg 0
 	store 6,mem_mouse_x
 	call p_mouse_check_sensor_data
-	branch mouse_motion+5
+	setarg 0x0089
+	call twspi_write	
+	call mouse_setting_sensor_type
+	call mouse_zwheel
+	call mouse_t_zwheel
+	call p_mouse_key
+	branch mouse_motion+11
+
+p_mouse_key:
+	call mouse_check_firekey_gpio
+	fetch 1,mem_fire_key_flag
+	nbranch fire_key_press,blank
+	fetch 1,mem_fire_key_status
+	nbranch fire_key_process,blank
+	
+	call mouse_check_key_gpio
+	call p_mouse_ghost_key_check
+	branch mouse_key+7
+
+p_mouse_ghost_key_check:			//lbk_mfw
+	jam 0,mem_mouse_matrix_key_cow_count
+	jam 0,mem_mouse_matrix_key_row_count
+	jam 0,mem_mouse_ghost_flag
+	copy pdata,regb
+	fetcht 1,mem_lbutton_gpio
+	fetch 1,mem_bk_button_gpio
+	isub temp,null
+	branch p_mouse_matrix_ghost_key_L_BK,zero
+	fetch 1,mem_fw_button_gpio
+	isub temp,null
+	branch p_mouse_matrix_ghost_key_L_FW,zero
+	fetcht 1,mem_mbutton_gpio
+	fetch 1,mem_bk_button_gpio
+	isub temp,null
+	branch p_mouse_ghost_key_MBK_RFW,zero
+p_mouse_ghost_key_MFW_RBK:
+	call mouse_ghost_key_check_M_FW
+p_mouse_ghost_key_RBK:
+	call p_mouse_ghost_key_check_R_BK
+	branch mouse_ghost_key_check_next
+
+p_mouse_matrix_ghost_key_L_BK:
+	fetcht 1,mem_mbutton_gpio
+	fetch 1,mem_fw_button_gpio
+	isub temp,null
+	branch mouse_ghost_key_LBK_MFW,zero
+p_mouse_ghost_key_LBK_RFW:
+	call mouse_ghost_key_check_L_BK
+	branch p_mouse_ghost_key_RFW
+
+p_mouse_matrix_ghost_key_L_FW:
+	fetcht 1,mem_mbutton_gpio
+	fetch 1,mem_bk_button_gpio
+	isub temp,null
+	branch p_mouse_ghost_key_LFW_MBK,zero
+p_mouse_ghost_key_LFW_RBK:
+	call p_mouse_ghost_key_check_L_FW
+	branch p_mouse_ghost_key_RBK
+
+p_mouse_ghost_key_LFW_MBK:
+	call p_mouse_ghost_key_check_L_FW
+	call p_mouse_ghost_key_check_M_BK
+	branch mouse_ghost_key_check_next
+	
+p_mouse_ghost_key_MBK_RFW:
+	call p_mouse_ghost_key_check_M_BK
+p_mouse_ghost_key_RFW:
+	call p_mouse_ghost_key_check_R_FW
+	branch mouse_ghost_key_check_next
+
+p_mouse_ghost_key_check_M_BK:
+	and regb,MOUSE_M_BK_BUTTON,pdata
+	branch mouse_ghost_key_check_M_BK+1
+//	beq MOUSE_M_BK_BUTTON,mouse_matrix_cow_more_than_one_key
+//	rtn
+p_mouse_ghost_key_check_R_BK:
+	and regb,MOUSE_R_BK_BUTTON,pdata
+	branch mouse_ghost_key_check_R_BK+1
+//	beq MOUSE_R_BK_BUTTON,mouse_matrix_cow_more_than_one_key
+//	rtn
+p_mouse_ghost_key_check_L_FW:
+	and regb,MOUSE_L_FW_BUTTON,pdata
+	branch mouse_ghost_key_check_L_FW+1
+//	beq MOUSE_L_FW_BUTTON,mouse_matrix_cow_more_than_one_key
+//	rtn
+p_mouse_ghost_key_check_R_FW:
+	and regb,MOUSE_R_FW_BUTTON,pdata
+	branch mouse_ghost_key_check_R_FW+1
+//	beq MOUSE_R_FW_BUTTON,mouse_matrix_cow_more_than_one_key
+//	rtn	
+	
 endif
 
+ifdef ADC_1121SB
+p_adc_init_data:
+	fetch 8,mem_otp_adc
+	branch adc_init_cal_data_default,blank
+	store 8,mem_reference_inter1p8v_2v_adc_io_data
+	call enable_otp_read
+	call loadcode_check_otp_lock
+	arg OTP_OFFSET_ADC_PARAM_L_C0,pdata
+	iadd regb,regb
+	arg 10,loopcnt
+	arg mem_otp_temp,rega
+	call otp_read_data
+	call disable_otp
+	fetch 8, mem_otp_temp
+	rtn blank
+	store 8,mem_adc_reference3v_gpio1v_ft_data
+	ifetch 2,contr
+	istore 2,contw	
+	//call  eut_test_data_init	
+	rtn
 
-ifdef UART_LOG
-p_app_uarta_init:
-	fetch 1,core_uart_ctrl
-	set0 BIT_UART_CONTROL_ENABLE,pdata
-	store 1,core_uart_ctrl
-	fetch 8,mem_device_uart_rx_buffer
-	call uarta_init_dma_mem
-	fetch uart_baud_len,mem_device_uart_baud_rate
-	call uarta_init_baud_rate
-	call uart_clock_select_main_freq_crystal
-	fetch 1,mem_device_uart_tx_gpio
-	arg gpcfg_uart_txd,temp
-	call gpio_config_function_int
-	fetch 1,mem_device_uart_rx_gpio
-	arg gpcfg_uart_rxd|gpcfg_pullup,temp
-	call gpio_config_function_int
-	arg FUN_UART_CONTROL_ENABLE|FUN_UART_CONTROL_SETTING_RATE_BAUD,temp
-	storet 1,core_uart_ctrl
+p_sadc_cal_write:
+	fetch 1,core_sadc_ctrl
+	set1 1,pdata
+	store 1,core_sadc_ctrl
+	fetchr regb,1,mem_spi_write_addr
+	fetch 1,mem_adc_cal_c7
+	store 1,mem_spi_write_addr
+	arg 8,loopcnt	//rg_gpadc_sar_dat_sel c0-c7
+	call sadc_cal_write+4
+	storer regb,1,mem_spi_write_addr
+	fetch 1,core_gpadc_cfg2	
+	set0 4,pdata//caliberation write disable	
+	store 1,core_gpadc_cfg2	
 	rtn
 
-//input: loopcnt data len,  regc points to buff
-p_buffer_print_rx:
-	arg 16,loopcnt
-	arg mem_24g_rxbuf,regc
-	call log_bytes
-	branch log_end
+p_vdd_calculate_by_mode:
+ifdef ADC_1121SB_1V8_MODE
+	fetch 1,mem_adc_reference_mode
+	beq SADC_REFERENCE_INTER3V,p_vdd_reference_inter3V_calculate
+	beq SADC_REFERENCE_INTER1P8V_DIV2,p_vdd_reference_inter1p8V_calculate
+	branch p_vdd_reference_inter3V_calculate
+endif
 
-p_buffer_print_tx:
-	arg 16,loopcnt
-	arg mem_24g_txbuf,regc
-	call log_bytes
-	branch log_end
-
-//input: 1 byte hex @pdata  
-//output: 4 byte  '0','x', ASCII,ASCII, @pdata
-hex2ascii:
-	rshift4 pdata,rega  //high 4bit in rega
-	and_into 0x0f,pdata
-	call hex2ascii_half_byte
-	copy pdata,regb
-	copy rega,pdata
-	call hex2ascii_half_byte
-	lshift8 regb,regb
-	iadd regb,pdata
-//	lshift16 pdata,pdata
-//	arg 0x7830,regb   //0x
-//	iadd regb,pdata
+p_vdd_reference_inter3V_calculate:
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_vdd_reference_inter3V_calculate_by_mode_vdcdc
+	beq ADC_CONFIG_GPIO,p_vdd_reference_inter3V_calculate_by_mode_gpio
+	rtn
+	
+p_vdd_reference_inter3V_calculate_by_mode_vdcdc:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_adc_reference3v_vdcdc3p6v_ft_data
+	fetch 2,mem_adc_reference3v_vdcdc4p6v_ft_data
+	arg 3600,regc
+	call vdd_calculate
+	branch p_mul1V_div1V_to_cal
+	
+p_vdd_reference_inter3V_calculate_by_mode_gpio:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_adc_reference3v_gpio1v_ft_data
+	fetch 2,mem_adc_reference3v_gpio2v_ft_data
+	arg 1000,regc
+	call vdd_calculate
+p_mul1V_div1V_to_cal:
+	fetcht 2,mem_adc_reference3v_inter1v_ft_data
+	imul32 temp,pdata
+	fetcht 2,mem_adc_reference3v_inter1v_now_data
+	idiv temp
+	branch get_div_result
+	
+p_enable_adc_init_config:
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0xc1,core_gpadc_cfg0
+	jam 0x61,core_vtest_ctrl0
+	jam 0x00,core_gpadc_cfg3
 	rtn
 
-//input: 1 byte hex @pdata  
-//output: 4 byte  '0','x', ASCII,ASCII, @pdata
-hex2ascii_half_byte:
-	arg 0xa,temp
-	isub temp,temp
-	nbranch hex2ascii_half_byte_numberic,positive
-	setarg 0x41  // A
-	iadd temp,pdata
+p_enable_adc:
+ifdef ADC_1121SB_1V8_MODE
+	fetch 1,mem_adc_reference_mode
+	beq SADC_REFERENCE_INTER3V,p_enable_adc_reference_source_inter3V
+	beq SADC_REFERENCE_INTER1P8V_DIV2,p_enable_adc_reference_source_inter1p8V
+	branch p_enable_adc_reference_source_inter3V
+endif		
+p_enable_adc_reference_source_inter3V:
+	call p_enable_adc_init_config
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call sadc_read
+	jam 0x60,core_vtest_ctrl0
+	jam 0x00,core_sadc_clkdiv	
+//	rtn
+	
+p_read_adc_inter1V:
+	call p_enable_adc_init_config
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	jam 0x50,core_gpadc_cfg3
+	jam 0xc0,core_vtest_ctrl1//select vref1v
+
+	arg 0xb,regext_index
+	fetchr regext, 2,mem_adc_current_value
+	
+	jam 0x03,core_sadc_ctrl	
+	call p_sar_adc_read_wait
+	fetcht 2,core_sadc_data
+	storet 2,mem_adc_reference3v_inter1v_now_data 
+	call sadc_read_wait+4
+	
+	arg 0xb,regext_index
+	storer regext,2,mem_adc_current_value
+
+	jam 0x60,core_vtest_ctrl0
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,core_sadc_ctrl
 	rtn
-hex2ascii_half_byte_numberic:
-	arg 0x30,temp
-	iadd temp,pdata
+
+
+p_sar_adc_read_wait:
+	fetch 1,core_perf_status
+	bbit0 SARADC_DONE,p_sar_adc_read_wait
+	rtn
+
+ifdef ADC_1121SB_1V8_MODE
+p_vdd_reference_inter1p8V_calculate:
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_vdd_reference_inter1p8V_calculate_by_mode_vdcdc
+	beq ADC_CONFIG_GPIO,p_vdd_reference_inter1p8V_div2_calculate_by_mode_gpio
+	rtn
+	
+p_vdd_reference_inter1p8V_calculate_by_mode_vdcdc:
+	setarg 2000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+	fetch 2,mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+	arg 2600,regc
+	branch vdd_calculate
+
+p_vdd_reference_inter1p8V_div2_calculate_by_mode_gpio:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_reference_inter1p8v_2v_adc_io_data
+	fetch 2,mem_reference_inter1p8v_1v_adc_io_data
+	arg 2000,regc
+	branch p_vdd_calculate00
+	
+p_vdd_calculate00:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch p_vdd_calculate11,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	nbranch set_pdata_0,positive
+	branch vdd_calculate2
+	
+p_vdd_calculate11:
+	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
+	iadd regb,pdata
+	branch vdd_calculate2
+
+p_enable_adc_reference_source_inter1p8V:	
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_enable_adc_reference_source_inter1p8V_vdcdc
+p_enable_adc_reference_source_inter1p8V_div2_gpio:	
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0x41,core_gpadc_cfg0
+	jam 0x14,0x8ac6			//div2
+	jam 0x00,core_gpadc_cfg3
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call sadc_read
+
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,0x8ac6
+	rtn
+	
+p_enable_adc_reference_source_inter1p8V_vdcdc:
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0x41,core_gpadc_cfg0
+	jam 0x10,0x8ac6			//not div2
+	jam 0x00,core_gpadc_cfg3
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call  sadc_read
+	
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,0x8ac6
 	rtn
 
-//input: loopcnt--length,regc--data ptr	
-log_bytes:
-	copy loopcnt,pdata
-	branch log_len0,blank
-log_bytes_loop:
-	ifetch 1,regc
-	increase 1,regc
-	call log_byte
-	call log_space
-	loop log_bytes_loop
-uart_wait:
-	fetch 1,core_uart_status
-	bbit1 uart_status_tx_busy,uart_wait
-//	nop 12000
-	rtn
-
-//input 1byte @pdata
-log_byte:
-	call uarta_prepare_tx
-	call hex2ascii
-//	istore 4,contu	//0x
-	istore 2,contwu
-	branch uarta_send
-
-log_len0:
-	call uarta_prepare_tx
-	setarg 0x656c
-	istore 2,contwu
-	setarg 0x306e
-	istore 2,contwu
-	call uarta_send
-	branch log_end
-
-log_space:
-	call uarta_prepare_tx
-	setarg 0x20
-	istore 1,contwu
-	branch uarta_send
-
-log_end:
-	call uarta_prepare_tx
-	setarg 0x0a0d
-	istore 2,contwu
-	branch uarta_send
 
 endif
 
+ifdef PWM_SET
 
-	
+/*
+core_clksel
+[7:6]pwm clock select
+	0:sysclk 
+	1:sysclk undivided
+	2:rc2M
+	3:lpo
+*/
+p_pwm_clk_set:
+	fetch 1,core_clksel
+	and pdata,0xc0,pdata
+	beq 0x40,pwm_24m_clk_set
+	beq 0x80,p_pwm_2m_clk_set
+	beq 0xc0,pwm_33k_clk_set
+	branch pwm_12m_clk_set
+p_pwm_2m_clk_set:
+	setarg 2000000
+	rtn
+
+p_pwm_out_set:
+	fetcht 3,mem_pdatatemp+2
+	call p_pwm_clk_set
+	branch pwm_out_set+2
+endif
\ No newline at end of file
Index: sched/1305.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/1305.dat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/1305.dat	(working copy)
@@ -22,28 +22,6 @@
 mem_gain_second_agc_en:08	#hw agc: 0:second agc disable
 mem_otp_load_check_sum:5a
 
-#adc config
-mem_adc_config_flag:01
-#01 ADC_CONFIG_HVIN
-#02 ADC_CONFIG_GPIO
-mem_adc_clkdiv:0a
-mem_adc_channel:00
-#00 ADC_CH_VBAT
-#01 ADC_CH_VDCDC5V
-#06 ADC_CH_GPIO18
-#07 ADC_CH_GPIO10
-#08 ADC_CH_GPIO9
-#09 ADC_CH_GPIO12
-#0a ADC_CH_GPIO6
-#0b ADC_CH_GPIO20
-#0c ADC_CH_GPIO21
-#0d ADC_CH_GPIO22
-#0e ADC_CH_GPIO13
-
-mem_adc_dma_enable:00
-mem_adc_saddr_ptr:00 07
-mem_adc_eaddr_ptr:ff 07
-
 mem_ring_ibias_trim:a0
 mem_ring_ibias_vtune_high:bc 02 #700mv
 mem_ring_ibias_vtune_low:90 01 #400mv
Index: sched/mouse.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/mouse.dat	(revision 929)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/mouse.dat	(working copy)
@@ -158,6 +158,7 @@
 mem_lpm_mode:01
 mem_lpm_mult:20
 mem_lpm_mult_init:20
+mem_mouse_set_high_impedance_bit_set:00 00 00
 
 mem_device_flag:
 00		#00--24g 01--bt
@@ -210,7 +211,7 @@
 mem_mouse_24g_fast_hop_count_4ms:05
 mem_mouse_24g_tsniff_4ms:80 bb 00 00
 
-mem_mouse_24g_short_sleep_set_8ms:f2 f9 00#ac 07 01	#5625us	40 19 01:72000:6ms
+mem_mouse_24g_short_sleep_set_8ms:60 ea 00
 mem_mouse_24g_long_sleep_set_8ms:00 77 01
 mem_mouse_24g_fast_hop_count_8ms:0b
 mem_mouse_24g_tsniff_8ms:00 77 01 00
@@ -298,9 +299,9 @@
 mem_otp_offset_le_locall_addr2_end:fa 1e					#7930  end
 
 mem_otp_offset_le_addr_increase_count:fb 1e			#7931 begin		100 count
-mem_otp_offset_le_addr_increase_count_end:c2 1f		#8130 end					----------info over	
+mem_otp_offset_le_addr_increase_count_end:ac 1f		#8108 end					----------info over	
 
-mem_otp_offset_app_initflag:c4 1f		#8132 end
+mem_otp_offset_app_initflag:ae 1f		#8110 end
 
 #ui
 mem_ui_button_gpio:ff
@@ -402,13 +403,11 @@
 be d1
 a0 41
 a1 12
-a5 84
 a7 ff
-b5 d0
 b6 00
+b5 c8
+a5 af
 ff 00
-35 c8
-25 af
 09 00
 ff ff
 
@@ -439,6 +438,29 @@
 09 00
 ff ff
 
+
+#adc config
+mem_adc_config_flag:01
+#01 ADC_CONFIG_HVIN
+#02 ADC_CONFIG_GPIO
+mem_adc_clkdiv:0a
+mem_adc_channel:09
+#00 ADC_CH_VBAT
+#01 ADC_CH_VDCDC5V
+#06 ADC_CH_GPIO18
+#07 ADC_CH_GPIO10
+#08 ADC_CH_GPIO9
+#09 ADC_CH_GPIO12
+#0a ADC_CH_GPIO6
+#0b ADC_CH_GPIO20
+#0c ADC_CH_GPIO21
+#0d ADC_CH_GPIO22
+#0e ADC_CH_GPIO13
+
+mem_mouse_vdd_full_vol:a4 01		#4.2V
+18 01#mem_mouse_vdd_empty_vol  :2.8V
+2c 01#mem_mouse_vdd_low_vol   :3.0V
+
 # rf debug
 #bit7:0 means disable rf debug function
 #mem_rf_debug_rx_gpio:87
Index: util/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

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