-
Notifications
You must be signed in to change notification settings - Fork 1
/
v1.dump.30.45.50.45.c
13037 lines (12579 loc) · 334 KB
/
v1.dump.30.45.50.45.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <defs.h>
//-------------------------------------------------------------------------
// Function declarations
void __fastcall bootloader_gpio_setup();
bool __cdecl is_enter_firmware_response();
void __fastcall receive_1k_packet_and_validate(int a1, int a2, int a3, int a4, int a5);
void __cdecl drop_first_rx_buffer_byte();
void __fastcall tx_command(char a1, char a2);
int __fastcall xtea_encrypt_decrypt(char *buffer, int pos_encrypt_neg_decrypt, char *key, int a4, int a5, int a6, int a7, int a8, unsigned int *a9, unsigned int *a10);
void __fastcall decrypt_32_byte_block(int block_index);
int __fastcall get_or_set_RCC_AHBENR(int result, int);
void __fastcall get_or_set_RCC_APB2ENR(int result, int);
GPIO_PORT_STRUCT *__fastcall set_port_config(GPIO_PORT_STRUCT *port, struc_20000A30 *config);
void __fastcall init_gpio_struc(struc_20000A30 *result);
void __fastcall setup_usart_bootloader(int, int *);
_DWORD *__fastcall init_usart_data(_DWORD *result);
void __fastcall en_or_dis_USART1(int *result, int);
int __fastcall tx_byte(int result, __int16);
int __fastcall rx_byte(int);
BOOL __fastcall is_tx40_or_rx20_status(int, int);
void __fastcall wait_x_loops(int result);
void __fastcall flash_write_serial_data_1k(void *dst);
void __fastcall xtea_divide(int, int);
char *__fastcall memcpy(char *dst, char *src, unsigned int size);
int *unlock_flash();
int __fastcall flash_erase_page(void *page_ptr);
int __fastcall flash_write_word_0(_WORD *, __int16);
int __fastcall mb_wait_for_flash_ready(int);
void __cdecl init_hw_and_read_configs();
void __cdecl update_auto_calibrate_adc_4_5_6_8();
int __fastcall sub_80019E4(int, int);
int *__fastcall set_tim1_ccr1_ccr2_ccr3(int);
void __cdecl sub_800222C();
void __cdecl sub_80028AC();
void __cdecl somthing_with_break_and_not_break();
void copy_config_type_1_to_flash();
void __cdecl copy_config_type_1_to_ram_and_validate();
void copy_config_type_2_to_flash();
void __cdecl sub_8003018();
char *sub_8003214();
char *sub_800321E();
void *sub_8003238();
int __fastcall some_struct_fill(unsigned int *a1);
void __fastcall sub_80033D6(int result, int);
int __fastcall RCC_APB2ENR_clear_or_set(int result, int);
void __fastcall sub_80033FE(int result, int);
bool __fastcall was_reset_by_software_reason(unsigned int mask);
void __fastcall init_port(GPIO_PORT_STRUCT *a1, struc_20000A30 *a2);
struc_20000A30 *__fastcall init_struc_20000A30(struc_20000A30 *result);
void __fastcall set_GPIO_pin(GPIO_PORT_STRUCT *port, int bits);
void __fastcall reset_GPIO_pin(GPIO_PORT_STRUCT *result, __int16 a2);
_WORD *__fastcall stop_or_start_timer(int, int);
void __fastcall init_NVIC(unsigned __int8 *);
void sub_8003728();
void sub_80037D8();
int sub_8003860();
_WORD __cdecl mb_some_speed();
int mb_get_speed();
int sub_8003928();
int sub_8003CCA();
int __fastcall sub_8003E04(int, int, int, int);
int __fastcall sub_8003E48(int, int, int, int);
ERROR_BITS_ENUM sub_8003EAC();
char *sub_80044A0();
void __cdecl sub_80044C8();
void __cdecl sub_80044D0();
int sub_80044E2();
void __cdecl update_error_bits_bit_1_is_set();
void __fastcall init_HALL_configuration_and_UVW_settings(int);
void __cdecl sub_8004510();
BOOL sub_8004520();
char *mb_init_stuff();
void __cdecl set_is_over_volt_error_bits();
void __fastcall set_error_bit(int);
void __cdecl init_some_temp_and_batt_values();
void __cdecl sub_80049D0();
void __fastcall sub_8004A8C();
int mb_is_over_under_volt();
int seems_bad();
void __cdecl blink_error_codes_on_PB2_led();
void __cdecl some_mode_or_gear_handling_1();
int sub_800500C();
int __fastcall PB11_serial_get_next_bit();
void __fastcall PB11_build_serial_package();
void __cdecl init_selected_gear_mode();
int __fastcall divide_0(signed int, signed int);
int __fastcall mb_divide(unsigned int, unsigned int);
void nullsub_2_0();
void __cdecl sub_8005582();
void __cdecl mb_init_max_amp();
void __cdecl sub_800564C();
void __fastcall sub_80056A8(int a1);
void __cdecl update_selected_gear_mode();
void __cdecl some_mode_switch_handling_2();
void __cdecl check_for_secret_profile_change();
// void __usercall sub_8005A70();
unsigned int __fastcall sub_8005ACE();
void __cdecl mb_setup_uart();
void __fastcall rx_byte_0(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8);
void poll_tx_buffer();
void __cdecl update_counter_1();
void __fastcall rx_buffer_command_handler();
void sub_8006074();
void __cdecl poll_PC15_CAN_H_PIN15();
void __fastcall hmm_two_same_kind_lists_sub_8006124(int, int);
int __fastcall sub_8006150(int, int, __int16 *, int);
void __cdecl sub_800625C();
void __cdecl sub_8006274();
__int16 __fastcall sub_80062A4(__int16 result, __int16);
__int16 __fastcall sub_80062AC(__int16 result, __int16);
void __cdecl ping_wdt();
void __cdecl start_wdt();
int *unlock_flash_0();
void __cdecl lock_flash_0();
int __fastcall flash_erase_page_0(int page_ptr);
int __fastcall flash_write_word(_WORD *flash_ptr, __int16 data);
int __fastcall mb_wait_for_flash_ready_0(int);
void __cdecl mb_setup_systick();
void __fastcall set_count_down_timer_7(__int16 result);
BOOL is_count_down_timer_7_zero();
void __fastcall set_count_down_uart_poll_timer_3(__int16 result);
BOOL is_count_down_uart_poll_timer_3_zero();
void __fastcall set_count_down_timer_2(char result);
BOOL is_count_down_timer_2_zero();
bool __cdecl is_count_down_timer_4_zero();
int count_down_timer_5_timed_out_100_ms();
int count_down_timer_6_timed_out_1000_ms();
void nullsub_1();
int __fastcall mb_usart_setup(unsigned int *a1, usart_struct *a2);
int *__fastcall mb_bit_set_or_clear(int *result, int);
void __fastcall tx_byte_0(int result, unsigned __int8 a2);
int __fastcall rx_9_bits(int usart_base);
BOOL __fastcall is_tx40_or_rx20_status_0(int, int);
void __fastcall set_USART_ICR_bit(int usart_base, int a2);
void __cdecl init_ports();
void __cdecl setup_wdt();
bool __cdecl validate_device_id();
void __fastcall mb_setup_clock();
void update_SYSCFG_CFGR2_0();
void __fastcall update_SYSCFG_CFGR2(int);
void __fastcall usart_enable();
void __cdecl sub_8007566();
void nullsub_2();
void __cdecl sub_8007584();
void __fastcall sub_800759C(int);
void __fastcall setup_power_mode(int clear_or_set);
void __fastcall sub_80075C8(int *);
void __fastcall set_EXTI_PR(int result);
void __fastcall __noreturn break_loop_1();
void __fastcall __noreturn break_loop_0();
//-------------------------------------------------------------------------
// Data declarations
_UNKNOWN unk_00000000; // weak
_UNKNOWN unk_00000001; // weak
_UNKNOWN unk_00000002; // weak
_UNKNOWN unk_00000003; // weak
_UNKNOWN unk_00000004; // weak
_UNKNOWN unk_00000005; // weak
_UNKNOWN unk_00000008; // weak
_UNKNOWN unk_00000018; // weak
_UNKNOWN unk_000000A5; // weak
_UNKNOWN unk_00000500; // weak
int controller_main_ivt[] = { 536873664 }; // weak
_BYTE byte_8007658[8] = { 3, 3, 1, 1, 2, 2, 0, 0 }; // weak
_BYTE byte_8007660[8] = { 2, 1, 3, 2, 1, 3, 0, 0 }; // weak
_BYTE byte_8007928[8] = { 1, 1, 0, 0, 1, 0, 0, 0 }; // weak
_BYTE byte_8007930[8] = { 0, 1, 0, 0, 1, 1, 0, 0 }; // weak
_UNKNOWN unk_800EFFF; // weak
struc_config_type_1 config_type_1 = { '\0', '\x9F', 42405u, 10111, 25471, 7296, -19646, -1, 256, '\xFF', '\xFF' };
struc_config_type_2 config_type_2 = { -32512, -23131, -18945, 128 };
char ram_start_and_xtea_crypto_key[17] = "LingXiang-64Soft"; // weak
char start_of_bss[123] =
{
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\x94',
'\x11',
'\0',
'\0',
'V',
'\xD5',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0'
}; // weak
_UNKNOWN unk_200000C2; // weak
_UNKNOWN unk_200000CA; // weak
_UNKNOWN byte_200000CB; // weak
__int16 word_200000E2 = 0; // weak
__int16 word_200000EC = 0; // weak
__int16 word_200000EE = 0; // weak
__int16 word_200000F0 = 0; // weak
unsigned __int16 word_200000F4 = 0u; // weak
struc_20000130 stru_20000130 =
{
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0'
}; // weak
char byte_20000194 = '\0'; // weak
char byte_20000195 = '\0'; // weak
_UNKNOWN unk_20000196; // weak
_UNKNOWN U_V_W_setting; // weak
unsigned __int8 byte_20000198[3] = { 2u, 50u, 50u }; // weak
bool default_configuration_used = false;
char byte_2000019D = '\0'; // weak
char byte_2000019E = '\0'; // weak
unsigned __int16 word_200001A4[3] = { 0u, 0u, 0u }; // weak
__int16 word_200001AA[2] = { 0, 0 }; // weak
_UNKNOWN unk_200001B0; // weak
_UNKNOWN unk_200001B2; // weak
_UNKNOWN unk_200001B4; // weak
unsigned __int16 word_200001C8 = 0u; // weak
_UNKNOWN word_200001CA; // weak
int U_V_W[3] = { 0, 0, 0 }; // weak
_UNKNOWN unk_200001E8; // weak
_UNKNOWN dword_200001EC; // weak
char byte_200001F4 = '\0'; // weak
unsigned __int16 word_200001FE = 0u; // weak
__int16 word_20000204 = 0; // weak
struc_20000244 RS485 =
{
'\0',
'd',
'\0',
'\0',
'\0',
'\x01',
'\0',
0u,
0u,
'\0',
'\x01',
'\0',
'\0',
'\0',
'\0',
'\0',
'\x01',
'\0',
'\0',
'\0',
'\0',
'\0',
0u,
0u,
0u,
0u,
0,
0u,
0u,
0,
'\0',
'\0',
0,
0
}; // weak
_BYTE byte_200002B4[16] = { 0, 0, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 6, 7, 8, 9 }; // weak
char byte_200002D0 = '\0'; // weak
_UNKNOWN unk_200002D1; // weak
char use_limit_17_35_for_1_or_17_20 = '\x01'; // weak
_UNKNOWN unk_200002D3; // weak
_UNKNOWN unk_200002D4; // weak
__int16 word_200002D6 = 0; // weak
_UNKNOWN unk_200002D8; // weak
__int16 word_200002E0 = 0; // weak
__int16 word_200002E2 = 0; // weak
_UNKNOWN unk_200002E4; // weak
__int16 word_20000318 = 0; // weak
__int16 mb_max_amp_2[2] = { 0, 0 }; // weak
__int16 word_2000031E = 0; // weak
char rx_buffer[64] =
{
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0'
}; // weak
char tx_buffer[64] =
{
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0'
}; // weak
__int16 word_200003C4 = 0; // weak
__int16 word_200003DC = 0; // weak
__int16 word_200003F4 = 0; // weak
_UNKNOWN unk_200003F6; // weak
int dword_200003F8 = 0; // weak
int dword_200003FC = 0; // weak
int byte_20000400[11] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // weak
int unk_20000404[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; // weak
_UNKNOWN unk_20000408; // weak
struc_config_type_1 runtime_config_type_1 = { '\0', '\0', 0u, 0, 0, 0, 0, 0, 0, '\0', '\0' };
__int16 mb_max_amp = 0; // weak
__int16 word_20000454 = 0; // weak
_UNKNOWN unk_20000456; // weak
__int16 word_20000458 = 0; // weak
_UNKNOWN unk_2000045A; // weak
__int16 word_2000045C = 0; // weak
__int16 word_2000045E = 0; // weak
_DWORD dword_20000460 = 0; // weak
int hmm_dword_20000474[2] = { 0, 0 }; // weak
struc_config_type_2 runtime_config_type_2 = { 0, 0, 0, 0 };
ERROR_BITS_ENUM error_bits = 0;
__int16 word_200004A4[2] = { 0, 0 }; // weak
_WORD word_200004A8[3] = { 0, 0, 0 }; // weak
char usart_is_initialized = '\0'; // weak
char main_loop_state = '\0'; // weak
char byte_200004B2 = '\0'; // weak
char is_wdt_enabled = '\0'; // weak
char byte_200004B6 = '\0'; // weak
char config_type_2_updated = '\0'; // weak
char config_updated = '\0'; // weak
unsigned __int8 serial_buffer[1027] =
{
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,
0u,