-
Notifications
You must be signed in to change notification settings - Fork 5
/
pbmm.map
4669 lines (4661 loc) · 453 KB
/
pbmm.map
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
podbot_mm
Timestamp is 5e867e38 (Fri Apr 3 01:07:20 2020)
Preferred load address is 10000000
Start Length Name Class
0001:00000000 00000870H .text$di CODE
0001:00000870 00068b30H .text$mn CODE
0001:000693a0 0000008cH .text$x CODE
0002:00000000 0000012cH .idata$5 DATA
0002:0000012c 00000004H .00cfg DATA
0002:00000130 00000004H .CRT$XCA DATA
0002:00000134 00000024H .CRT$XCU DATA
0002:00000158 00000004H .CRT$XCZ DATA
0002:0000015c 00000004H .CRT$XIA DATA
0002:00000160 00000010H .CRT$XIC DATA
0002:00000170 00000004H .CRT$XIZ DATA
0002:00000174 00000004H .CRT$XLA DATA
0002:00000178 00000004H .CRT$XLZ DATA
0002:0000017c 00000004H .CRT$XPA DATA
0002:00000180 00000008H .CRT$XPX DATA
0002:00000188 00000004H .CRT$XPXA DATA
0002:0000018c 00000004H .CRT$XPZ DATA
0002:00000190 00000004H .CRT$XTA DATA
0002:00000194 0000000cH .CRT$XTZ DATA
0002:00000198 00000000H .gfids$y DATA
0002:000001a0 000150f0H .rdata DATA
0002:00015290 00000018H .rdata$T DATA
0002:000152a8 00000214H .rdata$r DATA
0002:000154bc 00000020H .rdata$sxdata DATA
0002:000154dc 00000330H .rdata$zzzdbg DATA
0002:0001580c 00000004H .rtc$IAA DATA
0002:00015810 00000004H .rtc$IZZ DATA
0002:00015814 00000004H .rtc$TAA DATA
0002:00015818 00000004H .rtc$TZZ DATA
0002:0001581c 00000004H .tls DATA
0002:00015820 00000004H .tls$ DATA
0002:00015824 00000004H .tls$ZZZ DATA
0002:00015828 00000828H .xdata$x DATA
0002:00016050 00000124H .edata DATA
0002:00016174 00000014H .idata$2 DATA
0002:00016188 00000014H .idata$3 DATA
0002:0001619c 0000012cH .idata$4 DATA
0002:000162c8 00000550H .idata$6 DATA
0003:00000000 000054e0H .data DATA
0003:000054e0 000000d8H .data$r DATA
0003:000055b8 00089d08H .bss DATA
0004:00000000 00000060H .rsrc$01 DATA
0004:00000060 00000338H .rsrc$02 DATA
Address Publics by Value Rva+Base Lib:Object
0000:00000000 ___hybrid_auxiliary_iat 00000000 <absolute>
0000:00000000 ___hybrid_code_map_count 00000000 <absolute>
0000:00000000 ___guard_fids_table 00000000 <absolute>
0000:00000000 ___guard_longjmp_table 00000000 <absolute>
0000:00000000 ___guard_fids_count 00000000 <absolute>
0000:00000000 __except_list 00000000 <absolute>
0000:00000000 ___guard_iat_table 00000000 <absolute>
0000:00000000 ___volatile_metadata 00000000 <absolute>
0000:00000000 ___guard_eh_cont_count 00000000 <absolute>
0000:00000000 ___hybrid_code_map 00000000 <absolute>
0000:00000000 ___AbsoluteZero 00000000 <absolute>
0000:00000000 ___guard_iat_count 00000000 <absolute>
0000:00000000 ___guard_longjmp_count 00000000 <absolute>
0000:00000000 ___enclave_config 00000000 <absolute>
0000:00000000 ___guard_eh_cont_table 00000000 <absolute>
0000:00000000 ___dynamic_value_reloc_table 00000000 <absolute>
0000:00000008 ___safe_se_handler_count 00000008 <absolute>
0000:0000002c __tls_array 0000002c <absolute>
0000:00000100 ___guard_flags 00000100 <absolute>
0000:00000000 ___ImageBase 10000000 <linker-defined>
0001:00000870 ??$RecursiveLightPoint@UGL_mnode_t@@UGL_msurface_t@@@Light@@YA?B_NQBUGL_mnode_t@@ABVVector@@1@Z 10001870 f i bot.obj
0001:00000b60 ??$RecursiveLightPoint@Umnode_s@@Umsurface_s@@@Light@@YA?B_NQBUmnode_s@@ABVVector@@1@Z 10001b60 f i bot.obj
0001:00000e50 ??0Vector@@QAE@ABV0@@Z 10001e50 f i bot.obj
0001:00000e80 ??8Vector@@QBEHABV0@@Z 10001e80 f i bot.obj
0001:00000ec0 ??9Vector@@QBEHABV0@@Z 10001ec0 f i bot.obj
0001:00000f00 ?BotBuyStuff@@YAXPAUbot_t@@@Z 10001f00 f bot.obj
0001:00001a60 ?BotChangePitch@@YAXPAUbot_t@@M@Z 10002a60 f bot.obj
0001:00001bb0 ?BotChangeYaw@@YAXPAUbot_t@@M@Z 10002bb0 f bot.obj
0001:00001d00 ?BotCheckAvoidGrenades@@YAXPAUbot_t@@@Z 10002d00 f bot.obj
0001:00002060 ?BotCheckDarkness@@YAXPAUbot_t@@@Z 10003060 f bot.obj
0001:000023d0 ?BotCheckGrenadeThrow@@YAXPAUbot_t@@@Z 100033d0 f bot.obj
0001:000030a0 ?BotCheckMessageQueue@@YAXPAUbot_t@@@Z 100040a0 f bot.obj
0001:00003580 ?BotCheckRadioCommands@@YAXPAUbot_t@@@Z 10004580 f bot.obj
0001:000047b0 ?BotCheckReload@@YAXPAUbot_t@@@Z 100057b0 f bot.obj
0001:00004bb0 ?BotCheckShield@@YAXPAUbot_t@@@Z 10005bb0 f bot.obj
0001:00004db0 ?BotCheckTaskPriorities@@YAXPAUbot_t@@@Z 10005db0 f bot.obj
0001:00004f30 ?BotChooseAimDirection@@YAXPAUbot_t@@@Z 10005f30 f bot.obj
0001:000066b0 ?BotCreate@@YAXHHHHPBD@Z 100076b0 f bot.obj
0001:000070a0 ?BotEnemyIsThreat@@YA_NPAUbot_t@@@Z 100080a0 f bot.obj
0001:00007220 ?BotEntityIsVisible@@YA_NPAUbot_t@@VVector@@@Z 10008220 f bot.obj
0001:000072a0 ?BotExecuteTask@@YAXPAUbot_t@@@Z 100082a0 f bot.obj
0001:0000e8d0 ?BotFacePosition@@YAXPAUbot_t@@VVector@@@Z 1000f8d0 f i bot.obj
0001:0000ff20 ?BotFindBreakable@@YA_NPAUbot_t@@@Z 10010f20 f bot.obj
0001:00010480 ?BotFindItem@@YAXPAUbot_t@@@Z 10011480 f bot.obj
0001:00011f70 ?BotFollowUser@@YA_NPAUbot_t@@@Z 10012f70 f bot.obj
0001:00012010 ?BotFreeAllMemory@@YAXXZ 10013010 f bot.obj
0001:00012160 ?BotGetMessageQueue@@YAHPAUbot_t@@@Z 10013160 f bot.obj
0001:00012180 ?BotGetSafeTask@@YAPAUbottask_s@@PAUbot_t@@@Z 10013180 f bot.obj
0001:00012270 ?BotGoalIsValid@@YA_NPAUbot_t@@@Z 10013270 f i bot.obj
0001:000122f0 ?BotHasHostage@@YA_NPAUbot_t@@@Z 100132f0 f bot.obj
0001:000123e0 ?BotInFieldOfView@@YAHPAUbot_t@@VVector@@@Z 100133e0 f bot.obj
0001:00012450 ?BotItemIsVisible@@YA_NPAUbot_t@@AAVVector@@PAD_N@Z 10013450 f bot.obj
0001:00012580 ?BotLastEnemyShootable@@YA_NPAUbot_t@@@Z 10013580 f bot.obj
0001:00012620 ?BotPlayRadioMessage@@YAXPAUbot_t@@H@Z 10013620 f bot.obj
0001:00012640 ?BotPrepareTask@@YAXPAUbot_t@@@Z 10013640 f bot.obj
0001:00013d20 ?BotPushMessageQueue@@YAXPAUbot_t@@H@Z 10014d20 f bot.obj
0001:00013d50 ?BotPushTask@@YAXPAUbot_t@@PAUbottask_s@@@Z 10014d50 f bot.obj
0001:000141f0 ?BotRateGroundWeapon@@YAHPAUbot_t@@PAUedict_s@@@Z 100151f0 f bot.obj
0001:00014310 ?BotReactOnEnemy@@YA_NPAUbot_t@@@Z 10015310 f bot.obj
0001:00014560 ?BotRemoveCertainTask@@YAXPAUbot_t@@H@Z 10015560 f bot.obj
0001:000146e0 ?BotResetTasks@@YAXPAUbot_t@@@Z 100156e0 f bot.obj
0001:000147b0 ?BotSetConditions@@YAXPAUbot_t@@@Z 100157b0 f bot.obj
0001:000161c0 ?BotSpawnInit@@YAXPAUbot_t@@@Z 100171c0 f bot.obj
0001:00016c30 ?BotStartGame@@YAXPAUbot_t@@@Z 10017c30 f bot.obj
0001:00016ce0 ?BotTaskComplete@@YAXPAUbot_t@@@Z 10017ce0 f bot.obj
0001:00016ea0 ?BotThink@@YAXPAUbot_t@@@Z 10017ea0 f bot.obj
0001:000192f0 ?FStrEq@@YAHPBD0@Z 1001a2f0 f i bot.obj
0001:00019340 ?GetBestSecondaryWeaponCarried@@YAHPAUbot_t@@@Z 1001a340 f bot.obj
0001:00019400 ?GetBestWeaponCarried@@YAHPAUbot_t@@@Z 1001a400 f bot.obj
0001:000194c0 ?GetHighestFragsBot@@YAHH@Z 1001a4c0 f bot.obj
0001:00019550 ?GetValidWaypoint@@YAXPAUbot_t@@@Z 1001a550 f i bot.obj
0001:00019aa0 ?IsConnectedWithWaypoint@@YA_NHH@Z 1001aaa0 f i bot.obj
0001:00019af0 ?IsDeadlyDrop@@YA_NPAUbot_t@@VVector@@@Z 1001aaf0 f bot.obj
0001:00019f00 ?IsDeadlyDropAtPos@@YA_NPAUbot_t@@VVector@@@Z 1001af00 f bot.obj
0001:00019fc0 ?Normalize@Vector2D@@QBE?AV1@XZ 1001afc0 f i bot.obj
0001:0001a040 ?Normalize@Vector@@QBE?AV1@XZ 1001b040 f i bot.obj
0001:0001a0e0 ?SelectLeaderEachTeam@@YAXPAUbot_t@@@Z 1001b0e0 f bot.obj
0001:0001a360 ?UTIL_ClampVector@@YAXPAVVector@@@Z 1001b360 f i bot.obj
0001:0001a490 ___local_stdio_printf_options 1001b490 f i bot.obj
0001:0001a4a0 __snprintf 1001b4a0 f i bot.obj
0001:0001a4e0 ?BotCheckKeywords@@YA_NPAUbot_t@@PAD1@Z 1001b4e0 f bot_chat.obj
0001:0001a7d0 ?BotParseChat@@YA_NPAUbot_t@@PAD@Z 1001b7d0 f bot_chat.obj
0001:0001a8e0 ?BotPrepareChatMessage@@YAXPAUbot_t@@PAD@Z 1001b8e0 f bot_chat.obj
0001:0001adc0 ?BotRepliesToPlayer@@YA_NPAUbot_t@@@Z 1001bdc0 f bot_chat.obj
0001:0001af20 ?ConvertNameToHuman@@YAXPAD0@Z 1001bf20 f bot_chat.obj
0001:0001b210 ?StripClanTags@@YAXPAD000@Z 1001c210 f i bot_chat.obj
0001:0001b300 _sprintf_s 1001c300 f i bot_chat.obj
0001:0001b330 ?BotClient_CS_AmmoPickup@@YAXPAXH@Z 1001c330 f bot_client.obj
0001:0001b4b0 ?BotClient_CS_AmmoX@@YAXPAXH@Z 1001c4b0 f bot_client.obj
0001:0001b620 ?BotClient_CS_BarTime@@YAXPAXH@Z 1001c620 f bot_client.obj
0001:0001b660 ?BotClient_CS_BombDrop@@YAXPAXH@Z 1001c660 f bot_client.obj
0001:0001b7f0 ?BotClient_CS_BombPickup@@YAXPAXH@Z 1001c7f0 f bot_client.obj
0001:0001b850 ?BotClient_CS_CurrentWeapon@@YAXPAXH@Z 1001c850 f bot_client.obj
0001:0001bb70 ?BotClient_CS_Damage@@YAXPAXH@Z 1001cb70 f bot_client.obj
0001:0001c090 ?BotClient_CS_DeathMsg@@YAXPAXH@Z 1001d090 f bot_client.obj
0001:0001c500 ?BotClient_CS_FlashBat@@YAXPAXH@Z 1001d500 f bot_client.obj
0001:0001c550 ?BotClient_CS_HLTV@@YAXPAXH@Z 1001d550 f bot_client.obj
0001:0001c590 ?BotClient_CS_Money@@YAXPAXH@Z 1001d590 f bot_client.obj
0001:0001c5b0 ?BotClient_CS_NVGToggle@@YAXPAXH@Z 1001d5b0 f bot_client.obj
0001:0001c5e0 ?BotClient_CS_ResetHUD@@YAXPAXH@Z 1001d5e0 f bot_client.obj
0001:0001c610 ?Client_CS_ScoreAttrib@@YAXPAXH@Z 1001d610 f bot_client.obj
0001:0001c610 ?BotClient_CS_TextMsg1@@YAXPAXH@Z 1001d610 f bot_client.obj
0001:0001c610 ?Client_CS_ScoreInfo@@YAXPAXH@Z 1001d610 f bot_client.obj
0001:0001c610 ?BotClient_CS_RoundTime@@YAXPAXH@Z 1001d610 f bot_client.obj
0001:0001c610 @_guard_check_icall_nop@4 1001d610 f LIBCMT:guard_support.obj
0001:0001c620 ?BotClient_CS_SayText@@YAXPAXH@Z 1001d620 f bot_client.obj
0001:0001c6d0 ?BotClient_CS_ScreenFade@@YAXPAXH@Z 1001d6d0 f bot_client.obj
0001:0001c970 ?BotClient_CS_ShowMenu@@YAXPAXH@Z 1001d970 f bot_client.obj
0001:0001ca40 ?BotClient_CS_StatusIcon@@YAXPAXH@Z 1001da40 f bot_client.obj
0001:0001cb50 ?BotClient_CS_TeamScore@@YAXPAXH@Z 1001db50 f bot_client.obj
0001:0001cba0 ?BotClient_CS_TextMsgAll@@YAXPAXH@Z 1001dba0 f bot_client.obj
0001:0001ccd0 ?BotClient_CS_VGUI@@YAXPAXH@Z 1001dcd0 f bot_client.obj
0001:0001cd30 ?BotClient_CS_WeaponList@@YAXPAXH@Z 1001dd30 f bot_client.obj
0001:0001ce40 ?Client_CS_TeamInfo@@YAXPAXH@Z 1001de40 f bot_client.obj
0001:0001d030 ?BotBodyTarget@@YA?AVVector@@PAUedict_s@@PAUbot_t@@@Z 1001e030 f bot_combat.obj
0001:0001dd80 ?BotCheckCorridor@@YA_NPAUbot_t@@@Z 1001ed80 f bot_combat.obj
0001:0001e3b0 ?BotCheckGrenades@@YAHPAUbot_t@@@Z 1001f3b0 f bot_combat.obj
0001:0001e3f0 ?BotCheckZoom@@YA_NPAUbot_t@@@Z 1001f3f0 f bot_combat.obj
0001:0001e6d0 ?BotCommandTeam@@YAXPAUbot_t@@@Z 1001f6d0 f bot_combat.obj
0001:0001e890 ?BotDoAttackMovement@@YAXPAUbot_t@@@Z 1001f890 f bot_combat.obj
0001:0001f690 ?BotDoFirePause@@YA_NPAUbot_t@@MPAUbot_fire_delay_t@@@Z 10020690 f bot_combat.obj
0001:0001f930 ?BotEnemyIsVisible@@YA_NPAUbot_t@@PAUedict_s@@@Z 10020930 f bot_combat.obj
0001:0001fd30 ?BotFindEnemy@@YA_NPAUbot_t@@@Z 10020d30 f bot_combat.obj
0001:00021080 ?BotFireWeapon@@YA_NVVector@@PAUbot_t@@@Z 10022080 f bot_combat.obj
0001:00021e50 ?BotFocusEnemy@@YAXPAUbot_t@@@Z 10022e50 f bot_combat.obj
0001:000222a0 ?BotHasCampWeapon@@YA_NPAUbot_t@@@Z 100232a0 f bot_combat.obj
0001:000222e0 ?BotHasPrimaryWeapon@@YA_NPAUbot_t@@@Z 100232e0 f bot_combat.obj
0001:00022330 ?BotHasRifleWeapon@@YA_NPAUbot_t@@@Z 10023330 f bot_combat.obj
0001:00022350 ?BotHasSecondaryWeapon@@YA_NPAUbot_t@@@Z 10023350 f bot_combat.obj
0001:000223a0 ?BotHasShield@@YA_NPAUbot_t@@@Z 100233a0 f bot_combat.obj
0001:000223e0 ?BotHasShieldDrawn@@YA_NPAUbot_t@@@Z 100233e0 f bot_combat.obj
0001:00022460 ?BotHasSniperWeapon@@YA_NPAUbot_t@@@Z 10023460 f bot_combat.obj
0001:00022480 ?BotHasSubmachineGun@@YA_NPAUbot_t@@@Z 10023480 f bot_combat.obj
0001:000224a0 ?BotSelectBestWeapon@@YAXPAUbot_t@@@Z 100234a0 f bot_combat.obj
0001:00022860 ?BotUsesRifle@@YA_NPAUbot_t@@@Z 10023860 f bot_combat.obj
0001:00022890 ?BotUsesSniper@@YA_NPAUbot_t@@@Z 10023890 f bot_combat.obj
0001:000228b0 ?BotUsesSubmachineGun@@YA_NPAUbot_t@@@Z 100238b0 f bot_combat.obj
0001:000228e0 ?FireHurtsFriend@@YA_NPAUbot_t@@M@Z 100238e0 f bot_combat.obj
0001:00022d70 ?HighestPistolOfEdict@@YAHPAUedict_s@@@Z 10023d70 f bot_combat.obj
0001:00022dc0 ?HighestWeaponOfEdict@@YAHPAUedict_s@@@Z 10023dc0 f bot_combat.obj
0001:00022e10 ?IsGroupOfEnemies@@YA_NPAUbot_t@@VVector@@@Z 10023e10 f bot_combat.obj
0001:00022f70 ?IsShootableThruObstacle@@YA_NPAUedict_s@@VVector@@@Z 10023f70 f bot_combat.obj
0001:00023200 ?NumEnemiesNearPos@@YAHPAUbot_t@@VVector@@H@Z 10024200 f bot_combat.obj
0001:00023300 ?NumTeammatesNearPos@@YAHPAUbot_t@@VVector@@H@Z 10024300 f bot_combat.obj
0001:00023440 ?PlayerHasShieldDrawn@@YA_NPAUedict_s@@@Z 10024440 f bot_combat.obj
0001:00023500 ?SelectWeaponByName@@YAXPAUbot_t@@PAD@Z 10024500 f bot_combat.obj
0001:00023560 ?SelectWeaponByNumber@@YAXPAUbot_t@@H@Z 10024560 f bot_combat.obj
0001:000235c0 ?VecCheckThrow@@YA?AVVector@@PAUbot_t@@ABV1@V1@M@Z 100245c0 f bot_combat.obj
0001:00023910 ?VecCheckToss@@YA?AVVector@@PAUbot_t@@ABV1@V1@@Z 10024910 f bot_combat.obj
0001:00023da0 ?WeaponIsAssualtSniper@@YA_NH@Z 10024da0 f bot_combat.obj
0001:00023dc0 ?WeaponIsNade@@YA_NH@Z 10024dc0 f bot_combat.obj
0001:00023de0 ?WeaponIsPistol@@YA_NH@Z 10024de0 f bot_combat.obj
0001:00023e10 ?WeaponIsPrimaryGun@@YA_NH@Z 10024e10 f bot_combat.obj
0001:00023e60 ?WeaponIsRifle@@YA_NH@Z 10024e60 f bot_combat.obj
0001:00023e90 ?WeaponIsSniper@@YA_NH@Z 10024e90 f bot_combat.obj
0001:00023ec0 ?WeaponIsSubmachineGun@@YA_NH@Z 10024ec0 f bot_combat.obj
0001:00023ef0 ?WeaponShootsThru@@YA_NH@Z 10024ef0 f bot_combat.obj
0001:00023f30 ??0bot_t@@QAE@XZ 10024f30 f i bot_globals.obj
0001:000242c0 ?AStarSearch@@YAPAUpathnode@@PAU1@P6AH0@Z11P6APAU1@0@ZP6AH00@Z@Z 100252c0 f bot_navigate.obj
0001:00024650 ?BotCanDuckUnder@@YA_NPAUbot_t@@VVector@@@Z 10025650 f bot_navigate.obj
0001:00024910 ?BotCanJumpUp@@YA_NPAUbot_t@@VVector@@@Z 10025910 f bot_navigate.obj
0001:00024fd0 ?BotCantMoveBack@@YA_NPAUbot_t@@VVector@@@Z 10025fd0 f bot_navigate.obj
0001:00025b40 ?BotCantMoveForward@@YA_NPAUbot_t@@VVector@@@Z 10026b40 f bot_navigate.obj
0001:00026680 ?BotChangeWptIndex@@YAXPAUbot_t@@H@Z 10027680 f bot_navigate.obj
0001:00026780 ?BotCheckCollisionWithPlayer@@YAHPAUbot_t@@PAUedict_s@@@Z 10027780 f bot_navigate.obj
0001:00026cd0 ?BotCheckTerrain@@YAXPAUbot_t@@@Z 10027cd0 f bot_navigate.obj
0001:0002c380 ?BotCheckWallOnLeft@@YA_NPAUbot_t@@@Z 1002d380 f bot_navigate.obj
0001:0002c450 ?BotCheckWallOnRight@@YA_NPAUbot_t@@@Z 1002d450 f bot_navigate.obj
0001:0002c520 ?BotChooseBombWaypoint@@YAHPAUbot_t@@@Z 1002d520 f bot_navigate.obj
0001:0002c6d0 ?BotCollectExperienceData@@YAXPAUedict_s@@0H@Z 1002d6d0 f bot_navigate.obj
0001:0002d0d0 ?BotCollectGoalExperience@@YAXPAUbot_t@@H@Z 1002e0d0 f bot_navigate.obj
0001:0002d200 ?BotDoWaypointNav@@YA_NPAUbot_t@@@Z 1002e200 f bot_navigate.obj
0001:00031890 ?BotFindCoverWaypoint@@YAHPAUbot_t@@M@Z 10032890 f bot_navigate.obj
0001:00032520 ?BotFindDefendWaypoint@@YAHPAUbot_t@@VVector@@@Z 10033520 f bot_navigate.obj
0001:00032ea0 ?BotFindGoal@@YAHPAUbot_t@@@Z 10033ea0 f bot_navigate.obj
0001:000336d0 ?BotFindWaypoint@@YA_NPAUbot_t@@@Z 100346d0 f bot_navigate.obj
0001:00033a40 ?BotGetCampDirection@@YAXPAUbot_t@@PAVVector@@@Z 10034a40 f bot_navigate.obj
0001:00033d30 ?BotHeadTowardWaypoint@@YA_NPAUbot_t@@@Z 10034d30 f bot_navigate.obj
0001:00034610 ?BotHearsBomb@@YA_NVVector@@@Z 10035610 f bot_navigate.obj
0001:000346e0 ?BotResetCollideState@@YAXPAUbot_t@@@Z 100356e0 f bot_navigate.obj
0001:000347b0 ?BotSetStrafeSpeed@@YAXPAUbot_t@@M@Z 100357b0 f bot_navigate.obj
0001:000348c0 ?CTBombPointClear@@YAXH@Z 100358c0 f bot_navigate.obj
0001:00034900 ?DeleteSearchNodes@@YAXPAUbot_t@@@Z 10035900 f bot_navigate.obj
0001:00034990 ?FindLeastCostPath@@YAPAUpathnode@@PAUbot_t@@HH@Z 10035990 f bot_navigate.obj
0001:00034ca0 ?FindShortestPath@@YAPAUpathnode@@HHPA_N@Z 10035ca0 f bot_navigate.obj
0001:00034d80 ?GetBestNextWaypoint@@YA_NPAUbot_t@@@Z 10035d80 f bot_navigate.obj
0001:00034e70 ?GetBombPosition@@YA?AVVector@@XZ 10035e70 f bot_navigate.obj
0001:00034f40 ?GetPathDistance@@YAHHH@Z 10035f40 f bot_navigate.obj
0001:00034f60 ?GetTravelTime@@YAMMVVector@@0@Z 10035f60 f bot_navigate.obj
0001:00034fb0 ?TestAPath@@YAXHHHHE@Z 10035fb0 f bot_navigate.obj
0001:000351f0 ?UpdateGlobalExperienceData@@YAXXZ 100361f0 f bot_navigate.obj
0001:00035620 ?WasBombPointVisited@@YA_NH@Z 10036620 f bot_navigate.obj
0001:00035650 ?WaypointFindInRadius@@YAXVVector@@MPAH1@Z 10036650 f bot_navigate.obj
0001:000356f0 ?WaypointFindNearestToMove@@YAHPAUedict_s@@VVector@@@Z 100366f0 f bot_navigate.obj
0001:000358c0 ?WaypointIsVisible@@YA_NHH@Z 100368c0 f bot_navigate.obj
0001:00035900 ?WaypointReachable@@YA_NPAUbot_t@@H@Z 10036900 f bot_navigate.obj
0001:00035ac0 ?WaypointReachableByEnt@@YA_NVVector@@0PAUedict_s@@@Z 10036ac0 f bot_navigate.obj
0001:00035bc0 ?gfunctionKillsCT@@YAHPAUpathnode@@@Z 10036bc0 f bot_navigate.obj
0001:00035c70 ?gfunctionKillsCTWithHostage@@YAHPAUpathnode@@@Z 10036c70 f bot_navigate.obj
0001:00035d30 ?gfunctionKillsDistCT@@YAHPAUpathnode@@@Z 10036d30 f bot_navigate.obj
0001:00035e60 ?gfunctionKillsDistCTWithHostage@@YAHPAUpathnode@@@Z 10036e60 f bot_navigate.obj
0001:00035f90 ?gfunctionKillsDistT@@YAHPAUpathnode@@@Z 10036f90 f bot_navigate.obj
0001:000360c0 ?gfunctionKillsT@@YAHPAUpathnode@@@Z 100370c0 f bot_navigate.obj
0001:00036170 ?goal@@YAHPAUpathnode@@@Z 10037170 f bot_navigate.obj
0001:00036190 ?hfunctionNone@@YAHPAUpathnode@@@Z 10037190 f bot_navigate.obj
0001:000361a0 ?hfunctionSquareDist@@YAHPAUpathnode@@@Z 100371a0 f bot_navigate.obj
0001:00036200 ?hfunctionSquareDistWithHostage@@YAHPAUpathnode@@@Z 10037200 f bot_navigate.obj
0001:00036270 ?makeChildren@@YAPAUpathnode@@PAU1@@Z 10037270 f bot_navigate.obj
0001:00036300 ?nodeEqual@@YAHPAUpathnode@@0@Z 10037300 f bot_navigate.obj
0001:00036330 ?SoundAttachToThreat@@YAXPAUedict_s@@PBDM@Z 10037330 f bot_sounds.obj
0001:000366b0 ?SoundSimulateUpdate@@YAXH@Z 100376b0 f bot_sounds.obj
0001:00036810 ?Decode@@YAHPADHPAEH@Z 10037810 f compress.obj
0001:00036950 ?DeleteNode@@YAXH@Z 10037950 f compress.obj
0001:00036a50 ?Encode@@YAHPADPAEH1H@Z 10037a50 f compress.obj
0001:00036cc0 ?InitTree@@YAXXZ 10037cc0 f compress.obj
0001:00036ce0 ?InsertNode@@YAXH@Z 10037ce0 f compress.obj
0001:00036e30 _GetEntityAPI2 10037e30 f dll.obj
0001:00036ed0 _GetEntityAPI2_Post 10037ed0 f dll.obj
0001:00036f10 ??$_snprintf_s@$03@@YAHAAY03DIPBDZZ 10037f10 f i dll.obj
0001:00036f40 ??$_snprintf_s@$0BAA@@@YAHAAY0BAA@DIPBDZZ 10037f40 f i dll.obj
0001:00036f80 ??$_snprintf_s@$0CAA@@@YAHAAY0CAA@DIPBDZZ 10037f80 f i dll.obj
0001:00036fc0 ??$_snprintf_s@$0CI@@@YAHAAY0CI@DIPBDZZ 10037fc0 f i dll.obj
0001:00036ff0 ??$_snprintf_s@$0EA@@@YAHAAY0EA@DIPBDZZ 10037ff0 f i dll.obj
0001:00037020 ??$_snprintf_s@$0FA@@@YAHAAY0FA@DIPBDZZ 10038020 f i dll.obj
0001:00037050 ??$_snprintf_s@$0IA@@@YAHAAY0IA@DIPBDZZ 10038050 f i dll.obj
0001:00037090 ??0TraceResult@@QAE@XZ 10038090 f i dll.obj
0001:000370c0 ?ClientCommand@@YAXPAUedict_s@@@Z 100380c0 f dll.obj
0001:00039330 ?ClientConnect@@YAHPAUedict_s@@PBD1QAD@Z 1003a330 f dll.obj
0001:00039390 ?ClientDisconnect@@YAXPAUedict_s@@@Z 1003a390 f dll.obj
0001:00039470 ?ClientPutInServer@@YAXPAUedict_s@@@Z 1003a470 f dll.obj
0001:00039540 ?ClientUserInfoChanged_Post@@YAXPAUedict_s@@PAD@Z 1003a540 f dll.obj
0001:000396b0 ?FakeClientCommand@@YAXPAUedict_s@@PBDZZ 1003a6b0 f dll.obj
0001:00039980 ?GameDLLInit@@YAXXZ 1003a980 f dll.obj
0001:00039a10 ?GetField@@YAPBDPBDH@Z 1003aa10 f dll.obj
0001:00039b20 ?GetGameDir@@YAXXZ 1003ab20 f dll.obj
0001:00039bd0 ?IsPBAdmin@@YA_NPAUedict_s@@@Z 1003abd0 f dll.obj
0001:00039c20 ?PODBot_ServerCommand@@YAXXZ 1003ac20 f dll.obj
0001:00039c90 ?PbCmdParser@@YAXPAUedict_s@@PBD11111@Z 1003ac90 f dll.obj
0001:0003c100 ?Pfn_KeyValue@@YAXPAUedict_s@@PAUKeyValueData_s@@@Z 1003d100 f dll.obj
0001:0003c280 ?Pfn_UpdateClientData@@YAXPBUedict_s@@HPAUclientdata_s@@@Z 1003d280 f dll.obj
0001:0003c4a0 ?ServerActivate@@YAXPAUedict_s@@HH@Z 1003d4a0 f dll.obj
0001:0003dd50 ?ServerDeactivate@@YAXXZ 1003ed50 f dll.obj
0001:0003df10 ?ShowPBKickBotMenu@@YAXPAUedict_s@@H@Z 1003ef10 f dll.obj
0001:0003e220 ?Spawn@@YAHPAUedict_s@@@Z 1003f220 f dll.obj
0001:0003e6b0 ?Spawn_Post@@YAHPAUedict_s@@@Z 1003f6b0 f dll.obj
0001:0003e880 ?StartFrame@@YAXXZ 1003f880 f dll.obj
0001:0003ff20 ?UserNewroundAll@@YAXXZ 10040f20 f dll.obj
0001:0003ffb0 _DllMain@12 10040fb0 f dll.obj
0001:0003ffc0 _GiveFnptrsToDll@8 10040fc0 f dll.obj
0001:00040020 _Meta_Attach 10041020 f dll.obj
0001:00040130 _Meta_Detach 10041130 f dll.obj
0001:000401c0 _Meta_Query 100411c0 f dll.obj
0001:00040330 ___local_stdio_scanf_options 10041330 f i dll.obj
0001:00040340 _sscanf_s 10041340 f i dll.obj
0001:00040370 ?C_MessageEnd_Post@@YAXXZ 10041370 f engine.obj
0001:000405f0 ?FAST_GET_USER_MSG_ID@@YAHPAUplugin_info_t@@AAHPBDPAH@Z 100415f0 f engine.obj
0001:00040620 ?pfnAlertMessage_Post@@YAXW4ALERT_TYPE@@PADZZ 10041620 f engine.obj
0001:00040630 ?pfnChangeLevel@@YAXPAD0@Z 10041630 f engine.obj
0001:000406b0 ?pfnClientCommand@@YAXPAUedict_s@@PADZZ 100416b0 f engine.obj
0001:00040700 ?pfnClientPrintf@@YAXPAUedict_s@@W4PRINT_TYPE@@PBD@Z 10041700 f engine.obj
0001:00040730 ?pfnCmd_Argc@@YAHXZ 10041730 f engine.obj
0001:00040760 ?pfnCmd_Args@@YAPBDXZ 10041760 f engine.obj
0001:000407d0 ?pfnCmd_Argv@@YAPBDH@Z 100417d0 f engine.obj
0001:00040810 ?pfnEmitSound@@YAXPAUedict_s@@HPBDMMHH@Z 10041810 f engine.obj
0001:00040840 ?pfnFindEntityByString@@YAPAUedict_s@@PAU1@PBD1@Z 10041840 f engine.obj
0001:00040890 ?pfnGetPlayerAuthId@@YAPBDPAUedict_s@@@Z 10041890 f engine.obj
0001:000408e0 ?pfnGetPlayerWONId@@YAIPAUedict_s@@@Z 100418e0 f engine.obj
0001:000409c0 ?pfnMessageBegin@@YAXHHPBMPAUedict_s@@@Z 100419c0 f engine.obj
0001:00041080 ?pfnMessageEnd@@YAXXZ 10042080 f engine.obj
0001:000410d0 ?pfnSetClientMaxspeed@@YAXPBUedict_s@@M@Z 100420d0 f engine.obj
0001:00041100 ?pfnWriteByte@@YAXH@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteCoord@@YAXM@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteEntity@@YAXH@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteLong@@YAXH@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteChar@@YAXH@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteAngle@@YAXM@Z 10042100 f engine.obj
0001:00041100 ?pfnWriteShort@@YAXH@Z 10042100 f engine.obj
0001:00041130 ?pfnWriteString@@YAXPBD@Z 10042130 f engine.obj
0001:00041160 _GetEngineFunctions 10042160 f engine.obj
0001:00041260 _GetEngineFunctions_Post 10042260 f engine.obj
0001:000412b0 ?BotHasNvg@@YA_NPAUbot_t@@@Z 100422b0 f util.obj
0001:000412d0 ?FBoxVisible@@YA_NPAUbot_t@@PAUedict_s@@PAVVector@@PAE@Z 100422d0 f util.obj
0001:00041b10 ?FInViewCone@@YA_NPAVVector@@PAUedict_s@@@Z 10042b10 f util.obj
0001:00041c20 ?FVisible@@YA_NABVVector@@PAUedict_s@@@Z 10042c20 f util.obj
0001:00041cd0 ?FixedSigned16@@YAFMM@Z 10042cd0 f util.obj
0001:00041d00 ?FixedUnsigned16@@YAGMM@Z 10042d00 f util.obj
0001:00041d30 ?GetGunPosition@@YA?AVVector@@PAUedict_s@@@Z 10042d30 f util.obj
0001:00041d80 ?GetShootingConeDeviation@@YAMPAUedict_s@@PAVVector@@@Z 10042d80 f util.obj
0001:00041ed0 ?IsAlive@@YA_NPAUedict_s@@@Z 10042ed0 f util.obj
0001:00041f10 ?IsShootableBreakable@@YA_NPAUedict_s@@@Z 10042f10 f util.obj
0001:00042020 ?UTIL_CheckCvars@@YAXXZ 10043020 f util.obj
0001:00042f80 ?UTIL_CheckHostages@@YAXXZ 10043f80 f util.obj
0001:00043650 ?UTIL_CheckSmokeGrenades@@YAXXZ 10044650 f util.obj
0001:00043a50 ?UTIL_DecalTrace@@YAXPAUTraceResult@@PAD@Z 10044a50 f util.obj
0001:00043b80 ?UTIL_DisplayWpMenuWelcomeMessage@@YAXXZ 10044b80 f util.obj
0001:00043c70 ?UTIL_DrawBeam@@YAXVVector@@0HHHHHHHH@Z 10044c70 f util.obj
0001:00043d80 ?UTIL_GameStarted@@YAXXZ 10044d80 f util.obj
0001:00043db0 ?UTIL_GetBotPointer@@YAPAUbot_t@@PAUedict_s@@@Z 10044db0 f util.obj
0001:00043e10 ?UTIL_GetNearestPlayerIndex@@YAHVVector@@@Z 10044e10 f util.obj
0001:00043ec0 ?UTIL_GetTeam@@YAHPAUedict_s@@@Z 10044ec0 f util.obj
0001:00043ee0 ?UTIL_GetVectorsCone@@YAMVVector@@000@Z 10044ee0 f util.obj
0001:00044070 ?UTIL_HostPrint@@YAXPBDZZ 10045070 f util.obj
0001:00044150 ?UTIL_HudMessage@@YAXPAUedict_s@@ABUhudtextparms_s@@PAD@Z 10045150 f util.obj
0001:00044320 ?UTIL_IlluminationOf@@YAMPAUedict_s@@@Z 10045320 f util.obj
0001:00044400 ?UTIL_RoundEnd@@YAXXZ 10045400 f util.obj
0001:00044430 ?UTIL_RoundStart@@YAXXZ 10045430 f util.obj
0001:00044680 ?UTIL_SaveBreakableData@@YAXXZ 10045680 f util.obj
0001:000449c0 ?UTIL_SaveButtonsData@@YAXXZ 100459c0 f util.obj
0001:00044c20 ?UTIL_SaveHostagesData@@YAXXZ 10045c20 f util.obj
0001:00044e60 ?UTIL_ServerPrint@@YAXPBDZZ 10045e60 f util.obj
0001:00044ea0 ?UTIL_ShowMenu@@YAXPAUedict_s@@PAUmenutext_t@@@Z 10045ea0 f util.obj
0001:00045050 ?UTIL_TraceLine@@YAXABVVector@@0W4IGNORE_MONSTERS@@W4IGNORE_GLASS@@PAUedict_s@@PAUTraceResult@@@Z 10046050 f util.obj
0001:00045090 ?UTIL_VecToAngles@@YA?AVVector@@ABV1@@Z 10046090 f util.obj
0001:000451b0 ?VecBModelOrigin@@YA?AVVector@@PAUedict_s@@@Z 100461b0 f util.obj
0001:00045210 ??$_Allocate@$07U_Default_allocate_traits@std@@$0A@@std@@YAPAXI@Z 10046210 f i waypoint.obj
0001:00045240 ??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPAXI@Z 10046240 f i waypoint.obj
0001:00045270 ??$_Copy_memmove@PAHPAH@std@@YAPAHPAH00@Z 10046270 f i waypoint.obj
0001:000452a0 ??$_Deallocate@$07$0A@@std@@YAXPAXI@Z 100462a0 f i waypoint.obj
0001:000452e0 ??$_Emplace_reallocate@ABH@?$vector@HV?$allocator@H@std@@@std@@QAEPAHQAHABH@Z 100462e0 f i waypoint.obj
0001:000453e0 ??$_Uninitialized_move@PAHV?$allocator@H@std@@@std@@YAPAHQAH0PAHAAV?$allocator@H@0@@Z 100463e0 f i waypoint.obj
0001:00045410 ??0?$vector@HV?$allocator@H@std@@@std@@QAE@XZ 10046410 f i waypoint.obj
0001:00045430 ??0bad_alloc@std@@QAE@ABV01@@Z 10046430 f i waypoint.obj
0001:00045470 ??0bad_array_new_length@std@@QAE@ABV01@@Z 10046470 f i waypoint.obj
0001:000454b0 ??0bad_array_new_length@std@@QAE@XZ 100464b0 f i waypoint.obj
0001:000454d0 ??0exception@std@@QAE@ABV01@@Z 100464d0 f i waypoint.obj
0001:00045500 ??0path@@QAE@XZ 10046500 f i waypoint.obj
0001:000455e0 ??1?$vector@HV?$allocator@H@std@@@std@@QAE@XZ 100465e0 f i waypoint.obj
0001:00045620 ??1bad_array_new_length@std@@UAE@XZ 10046620 f i waypoint.obj
0001:00045620 ??1bad_alloc@std@@UAE@XZ 10046620 f i LIBCMT:throw_bad_alloc.obj
0001:00045620 ??1bad_exception@std@@UAE@XZ 10046620 f i libvcruntime:frame.obj
0001:00045620 ??1length_error@std@@UAE@XZ 10046620 f i libcpmt:xthrow.obj
0001:00045640 ??_Eexception@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045640 ??_Gbad_array_new_length@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045640 ??_Ebad_alloc@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045640 ??_Gbad_alloc@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045640 ??_Ebad_array_new_length@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045640 ??_Gexception@std@@UAEPAXI@Z 10046640 f i waypoint.obj
0001:00045670 ?CalculateWaypointWayzone@@YAXXZ 10046670 f waypoint.obj
0001:000459e0 ?ConnectedToWaypoint@@YA_NHH@Z 100469e0 f waypoint.obj
0001:00045a10 ?InitExperienceTab@@YAXXZ 10046a10 f waypoint.obj
0001:00045f20 ?InitPathMatrix@@YAXXZ 10046f20 f waypoint.obj
0001:000467a0 ?InitVisTab@@YAXXZ 100477a0 f waypoint.obj
0001:00046a00 ?InitWaypointTypes@@YAXXZ 10047a00 f waypoint.obj
0001:00046b20 ?SaveExperienceTab@@YAXXZ 10047b20 f waypoint.obj
0001:00046d50 ?SaveVisTab@@YAXXZ 10047d50 f waypoint.obj
0001:00046e90 ?WaypointAdd@@YAXH@Z 10047e90 f waypoint.obj
0001:000486c0 ?WaypointAddPath@@YAXFFM@Z 100496c0 f waypoint.obj
0001:000487f0 ?WaypointCache@@YAXXZ 100497f0 f waypoint.obj
0001:00048830 ?WaypointCalcVisibility@@YAXXZ 10049830 f waypoint.obj
0001:00048b50 ?WaypointChangeFlag@@YAXHD@Z 10049b50 f waypoint.obj
0001:00048bf0 ?WaypointChangeRadius@@YAXM@Z 10049bf0 f waypoint.obj
0001:00048c60 ?WaypointCleanUnnessPaths@@YAXH@Z 10049c60 f waypoint.obj
0001:0004a6c0 ?WaypointCreatePath@@YAXD@Z 1004b6c0 f waypoint.obj
0001:0004a810 ?WaypointDelete@@YAXXZ 1004b810 f waypoint.obj
0001:0004aa30 ?WaypointDeletePath@@YAXXZ 1004ba30 f waypoint.obj
0001:0004aba0 ?WaypointDrawBeam@@YAXVVector@@0HHHH@Z 1004bba0 f waypoint.obj
0001:0004acb0 ?WaypointFindNearest@@YAHXZ 1004bcb0 f waypoint.obj
0001:0004ad80 ?WaypointFixOldCampType@@YAXH@Z 1004bd80 f waypoint.obj
0001:0004af10 ?WaypointIsConnected@@YA_NH@Z 1004bf10 f waypoint.obj
0001:0004af60 ?WaypointLoad@@YA_NXZ 1004bf60 f waypoint.obj
0001:0004b960 ?WaypointLookAt@@YAHXZ 1004c960 f waypoint.obj
0001:0004bc80 ?WaypointMoveToPosition@@YAXXZ 1004cc80 f waypoint.obj
0001:0004bd70 ?WaypointNodeReachable@@YA_NHH@Z 1004cd70 f waypoint.obj
0001:0004c3f0 ?WaypointNodesValid@@YA_NXZ 1004d3f0 f waypoint.obj
0001:0004cca0 ?WaypointSave@@YAXXZ 1004dca0 f waypoint.obj
0001:0004ce30 ?WaypointThink@@YAXXZ 1004de30 f waypoint.obj
0001:0004e2d0 ?__scrt_throw_std_bad_array_new_length@@YAXXZ 1004f2d0 f i LIBCMT:throw_bad_alloc.obj
0001:0004e2d0 ?_Throw_bad_array_new_length@std@@YAXXZ 1004f2d0 f i waypoint.obj
0001:0004e2f0 ?_Xlength@?$vector@HV?$allocator@H@std@@@std@@CAXXZ 1004f2f0 f i waypoint.obj
0001:0004e300 ?what@exception@std@@UBEPBDXZ 1004f300 f i waypoint.obj
0001:0004e30e ??2@YAPAXI@Z 1004f30e f LIBCMT:new_scalar.obj
0001:0004e33e ??3@YAXPAXI@Z 1004f33e f LIBCMT:delete_scalar_size.obj
0001:0004e411 __Init_thread_abort 1004f411 f LIBCMT:thread_safe_statics.obj
0001:0004e435 __Init_thread_footer 1004f435 f LIBCMT:thread_safe_statics.obj
0001:0004e47f __Init_thread_header 1004f47f f LIBCMT:thread_safe_statics.obj
0001:0004e4d1 __Init_thread_notify 1004f4d1 f LIBCMT:thread_safe_statics.obj
0001:0004e507 __Init_thread_wait 1004f507 f LIBCMT:thread_safe_statics.obj
0001:0004e555 @__security_check_cookie@4 1004f555 f LIBCMT:secchk.obj
0001:0004e566 ___raise_securityfailure 1004f566 f LIBCMT:gs_report.obj
0001:0004e58e ___report_gsfailure 1004f58e f LIBCMT:gs_report.obj
0001:0004e687 ___report_rangecheckfailure 1004f687 f LIBCMT:gs_report.obj
0001:0004e693 ___report_securityfailure 1004f693 f LIBCMT:gs_report.obj
0001:0004e761 ??_U@YAPAXI@Z 1004f761 f LIBCMT:new_array.obj
0001:0004e76a ??_L@YGXPAXIIP6EX0@Z1@Z 1004f76a f LIBCMT:ehvecctr.obj
0001:0004e7de ??_M@YGXPAXIIP6EX0@Z@Z 1004f7de f LIBCMT:ehvecdtr.obj
0001:0004e863 ?__ArrayUnwind@@YGXPAXIIP6EX0@Z@Z 1004f863 f LIBCMT:ehvecdtr.obj
0001:0004e8f3 ??_V@YAXPAX@Z 1004f8f3 f LIBCMT:delete_array.obj
0001:0004e900 __alloca_probe 1004f900 f LIBCMT:chkstk.obj
0001:0004e900 __chkstk 1004f900 f LIBCMT:chkstk.obj
0001:0004e92d ??_Etype_info@@UAEPAXI@Z 1004f92d f i LIBCMT:std_type_info_static.obj
0001:0004e92d ??_Gtype_info@@UAEPAXI@Z 1004f92d f i LIBCMT:std_type_info_static.obj
0001:0004ec91 __DllMainCRTStartup@12 1004fc91 f LIBCMT:dll_dllmain.obj
0001:0004ecb4 ??0bad_alloc@std@@QAE@XZ 1004fcb4 f i LIBCMT:throw_bad_alloc.obj
0001:0004eccc ?__scrt_throw_std_bad_alloc@@YAXXZ 1004fccc f LIBCMT:throw_bad_alloc.obj
0001:0004ece9 ??3@YAXPAX@Z 1004fce9 f LIBCMT:delete_scalar.obj
0001:0004ed32 ___scrt_acquire_startup_lock 1004fd32 f LIBCMT:utility.obj
0001:0004ed64 ___scrt_dllmain_after_initialize_c 1004fd64 f LIBCMT:utility.obj
0001:0004ed8f ___scrt_dllmain_before_initialize_c 1004fd8f f LIBCMT:utility.obj
0001:0004ed9d ___scrt_dllmain_crt_thread_attach 1004fd9d f LIBCMT:utility.obj
0001:0004edbc ___scrt_dllmain_crt_thread_detach 1004fdbc f LIBCMT:utility.obj
0001:0004edc9 ___scrt_dllmain_exception_filter 1004fdc9 f LIBCMT:utility.obj
0001:0004edfd ___scrt_dllmain_uninitialize_c 1004fdfd f LIBCMT:utility.obj
0001:0004ee20 ___scrt_dllmain_uninitialize_critical 1004fe20 f LIBCMT:utility.obj
0001:0004ee2d ___scrt_initialize_crt 1004fe2d f LIBCMT:utility.obj
0001:0004ee66 ___scrt_initialize_onexit_tables 1004fe66 f LIBCMT:utility.obj
0001:0004eeed ___scrt_is_nonwritable_in_current_image 1004feed f LIBCMT:utility.obj
0001:0004ef81 ___scrt_release_startup_lock 1004ff81 f LIBCMT:utility.obj
0001:0004ef9e ___scrt_uninitialize_crt 1004ff9e f LIBCMT:utility.obj
0001:0004efc6 __onexit 1004ffc6 f LIBCMT:utility.obj
0001:0004eff3 _atexit 1004fff3 f LIBCMT:utility.obj
0001:0004f008 ___scrt_fastfail 10050008 f LIBCMT:utility_desktop.obj
0001:0004f122 __crt_debugger_hook 10050122 f LIBCMT:utility_desktop.obj
0001:0004f130 __SEH_prolog4 10050130 f LIBCMT:sehprolg4.obj
0001:0004f176 __SEH_epilog4 10050176 f LIBCMT:sehprolg4.obj
0001:0004f1d8 ___security_init_cookie 100501d8 f LIBCMT:gs_support.obj
0001:0004f223 ?__scrt_initialize_type_info@@YAXXZ 10050223 f LIBCMT:tncleanup.obj
0001:0004f22f ?__scrt_uninitialize_type_info@@YAXXZ 1005022f f LIBCMT:tncleanup.obj
0001:0004f23b ___scrt_initialize_default_local_stdio_options 1005023b f LIBCMT:default_local_stdio_options.obj
0001:0004f258 ___scrt_get_dyn_tls_init_callback 10050258 f LIBCMT:dyn_tls_init.obj
0001:0004f25e __RTC_Initialize 1005025e f LIBCMT:initsect.obj
0001:0004f28a __RTC_Terminate 1005028a f LIBCMT:initsect.obj
0001:0004f2b6 ___isa_available_init 100502b6 f LIBCMT:cpu_disp.obj
0001:0004f486 __get_startup_argv_mode 10050486 f LIBCMT:argv_mode.obj
0001:0004f48a ___scrt_is_ucrt_dll_in_use 1005048a f LIBCMT:ucrt_detection.obj
0001:0004f496 ??0exception@std@@QAE@QBD@Z 10050496 f i libcpmt:xthrow.obj
0001:0004f4cb ??0length_error@std@@QAE@ABV01@@Z 100504cb f i libcpmt:xthrow.obj
0001:0004f4e6 ??0length_error@std@@QAE@PBD@Z 100504e6 f i libcpmt:xthrow.obj
0001:0004f505 ??0logic_error@std@@QAE@ABV01@@Z 10050505 f i libcpmt:xthrow.obj
0001:0004f520 ??_Gbad_exception@std@@UAEPAXI@Z 10050520 f i libvcruntime:frame.obj
0001:0004f520 ??_Elength_error@std@@UAEPAXI@Z 10050520 f i libcpmt:xthrow.obj
0001:0004f520 ??_Glogic_error@std@@UAEPAXI@Z 10050520 f i libcpmt:xthrow.obj
0001:0004f520 ??_Elogic_error@std@@UAEPAXI@Z 10050520 f i libcpmt:xthrow.obj
0001:0004f520 ??_Ebad_exception@std@@UAEPAXI@Z 10050520 f i libvcruntime:frame.obj
0001:0004f520 ??_Glength_error@std@@UAEPAXI@Z 10050520 f i libcpmt:xthrow.obj
0001:0004f54d ?_Xlength_error@std@@YAXPBD@Z 1005054d f libcpmt:xthrow.obj
0001:0004f570 _strchr 10050570 f libvcruntime:strchr.obj
0001:0004f5de ___from_strstr_to_strchr 100505de libvcruntime:strchr.obj
0001:0004f6a0 _strstr 100506a0 f libvcruntime:strstr.obj
0001:0004f910 _memset 10050910 f libvcruntime:memset.obj
0001:0004fa6a ?GetRangeOfTrysToCheck@__FrameHandler3@@SA?AU?$pair@Viterator@TryBlockMap@__FrameHandler3@@V123@@std@@AAVTryBlockMap@1@HPAXPBU_s_FuncInfo@@H@Z 10050a6a f libvcruntime:trnsctrl.obj
0001:0004fada ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z 10050ada f libvcruntime:trnsctrl.obj
0001:0004fb38 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z 10050b38 f libvcruntime:trnsctrl.obj
0001:0004fc1e ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 10050c1e f libvcruntime:trnsctrl.obj
0001:0004fc4e ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 10050c4e f libvcruntime:trnsctrl.obj
0001:0004fca1 __CatchGuardHandler 10050ca1 f libvcruntime:trnsctrl.obj
0001:0004fcd2 __CreateFrameInfo 10050cd2 f libvcruntime:trnsctrl.obj
0001:0004fcf6 __FindAndUnlinkFrame 10050cf6 f libvcruntime:trnsctrl.obj
0001:0004fd3e __TranslatorGuardHandler 10050d3e f libvcruntime:trnsctrl.obj
0001:0004fddb ___CxxFrameHandler3 10050ddb f libvcruntime:trnsctrl.obj
0001:0004fe20 _memcpy 10050e20 f libvcruntime:memcpy.obj
0001:00050394 ___std_exception_copy 10051394 f libvcruntime:std_exception.obj
0001:000503f7 ___std_exception_destroy 100513f7 f libvcruntime:std_exception.obj
0001:00050416 __CxxThrowException@8 10051416 f libvcruntime:throw.obj
0001:00050490 _memmove 10051490 f libvcruntime:memmove.obj
0001:00050a50 __except_handler4 10051a50 f libvcruntime:chandler4.obj
0001:00050bae ___DestructExceptionObject 10051bae f libvcruntime:ehhelpers.obj
0001:00050c4f ?_CallMemberFunction0@@YGXQAX0@Z 10051c4f f i libvcruntime:ehhelpers.obj
0001:00050cb4 __IsExceptionObjectToBeDestroyed 10051cb4 f libvcruntime:ehhelpers.obj
0001:00050cda ___AdjustPointer 10051cda f libvcruntime:ehhelpers.obj
0001:00050cff ___FrameUnwindFilter 10051cff f libvcruntime:ehhelpers.obj
0001:00050d55 ___current_exception 10051d55 f libvcruntime:ehhelpers.obj
0001:00050d5e ___current_exception_context 10051d5e f libvcruntime:ehhelpers.obj
0001:00050d67 ___vcrt_initialize 10051d67 f libvcruntime:initialization.obj
0001:00050d86 ___vcrt_thread_attach 10051d86 f libvcruntime:initialization.obj
0001:00050d91 ___vcrt_thread_detach 10051d91 f libvcruntime:initialization.obj
0001:00050d9c ___vcrt_uninitialize 10051d9c f libvcruntime:initialization.obj
0001:00050db3 ___vcrt_uninitialize_critical 10051db3 f libvcruntime:initialization.obj
0001:00050dbb ___std_type_info_compare 10051dbb f libvcruntime:std_type_info.obj
0001:00050df7 ___std_type_info_destroy_list 10051df7 f libvcruntime:std_type_info.obj
0001:00050e1a ___vcrt_freefls@4 10051e1a f libvcruntime:per_thread_data.obj
0001:00050e36 ___vcrt_freeptd 10051e36 f libvcruntime:per_thread_data.obj
0001:00050e6c ___vcrt_getptd 10051e6c f libvcruntime:per_thread_data.obj
0001:00050e7a ___vcrt_getptd_noexit 10051e7a f libvcruntime:per_thread_data.obj
0001:00050f0c ___vcrt_initialize_ptd 10051f0c f libvcruntime:per_thread_data.obj
0001:00050f3f ___vcrt_uninitialize_ptd 10051f3f f libvcruntime:per_thread_data.obj
0001:0005169d ??$TypeMatchHelper@V__FrameHandler3@@@@YAHPBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_ThrowInfo@@@Z 1005269d f i libvcruntime:frame.obj
0001:0005172b ??$__InternalCxxFrameHandler@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 1005272b f i libvcruntime:frame.obj
0001:0005182d ??0bad_exception@std@@QAE@ABV01@@Z 1005282d f i libvcruntime:frame.obj
0001:00051848 ??0bad_exception@std@@QAE@XZ 10052848 f i libvcruntime:frame.obj
0001:00051860 ??8type_info@@QBE_NABV0@@Z 10052860 f i libvcruntime:frame.obj
0001:00051ac7 ?FrameUnwindToEmptyState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 10052ac7 f libvcruntime:frame.obj
0001:00051adf ?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 10052adf f libvcruntime:frame.obj
0001:00051c61 ?_CallMemberFunction1@@YGXQAX00@Z 10052c61 f i libvcruntime:frame.obj
0001:00051c71 ?_CallMemberFunction2@@YGXQAX00H@Z 10052c71 f i libvcruntime:frame.obj
0001:00051c84 ?getESTypes@__FrameHandler3@@SAPBU_s_ESTypeList@@PBU_s_FuncInfo@@@Z 10052c84 f i libvcruntime:frame.obj
0001:00051c90 __CallSettingFrame@12 10052c90 f libvcruntime:lowhelpr.obj
0001:00051cb7 __NLG_Return 10052cb7 libvcruntime:lowhelpr.obj
0001:00051cdc ___except_validate_context_record 10052cdc f libvcruntime:jbcxrval.obj
0001:00051d0c ___except_validate_jump_buffer 10052d0c f libvcruntime:jbcxrval.obj
0001:00051d40 __local_unwind4 10052d40 f libvcruntime:exsup4.obj
0001:00051e18 __seh_longjmp_unwind4@4 10052e18 f libvcruntime:exsup4.obj
0001:00051e40 @_EH4_CallFilterFunc@8 10052e40 f libvcruntime:exsup4.obj
0001:00051e58 @_EH4_TransferToHandler@8 10052e58 f libvcruntime:exsup4.obj
0001:00051e74 @_EH4_GlobalUnwind2@8 10052e74 f libvcruntime:exsup4.obj
0001:00051e90 @_EH4_LocalUnwind@16 10052e90 f libvcruntime:exsup4.obj
0001:00051ea7 ___vcrt_initialize_locks 10052ea7 f libvcruntime:locks.obj
0001:00051ee3 ___vcrt_uninitialize_locks 10052ee3 f libvcruntime:locks.obj
0001:00051ff5 ___vcrt_FlsAlloc 10052ff5 f libvcruntime:winapi_downlevel.obj
0001:00052030 ___vcrt_FlsFree 10053030 f libvcruntime:winapi_downlevel.obj
0001:0005206b ___vcrt_FlsGetValue 1005306b f libvcruntime:winapi_downlevel.obj
0001:000520a6 ___vcrt_FlsSetValue 100530a6 f libvcruntime:winapi_downlevel.obj
0001:000520e4 ___vcrt_InitializeCriticalSectionEx 100530e4 f libvcruntime:winapi_downlevel.obj
0001:0005212b _unexpected 1005312b f libvcruntime:unexpected.obj
0001:00052148 ?GetCurrentState@__FrameHandler3@@SAHPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 10053148 f libvcruntime:ehstate.obj
0001:00052165 ?SetState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@H@Z 10053165 f libvcruntime:ehstate.obj
0001:00052180 __global_unwind2 10053180 f libvcruntime:exsup.obj
0001:000521e6 __local_unwind2 100531e6 f libvcruntime:exsup.obj
0001:0005226a __abnormal_termination 1005326a f libvcruntime:exsup.obj
0001:00052290 __NLG_Notify1 10053290 f libvcruntime:exsup.obj
0001:0005229c __NLG_Notify 1005329c f libvcruntime:exsup.obj
0001:000522b3 __NLG_Dispatch 100532b3 libvcruntime:exsup.obj
0001:000522b3 __NLG_Dispatch2 100532b3 libvcruntime:exsup.obj
0001:000522bb __NLG_Call 100532bb f libvcruntime:exsup.obj
0001:000522bd __NLG_Return2 100532bd libvcruntime:exsup.obj
0001:000522c0 _strncmp 100532c0 f libucrt:strncmp.obj
0001:00052340 _strncpy 10053340 f libucrt:strncpy.obj
0001:000528c9 ??$count@D@formatting_buffer@__crt_stdio_output@@QBEIXZ 100538c9 f i libucrt:output.obj
0001:000528e1 ??$ensure_buffer_is_big_enough@D@formatting_buffer@__crt_stdio_output@@QAE_NI@Z 100538e1 f i libucrt:output.obj
0001:00052960 ??$is_wide_character_specifier@D@__crt_stdio_output@@YA_N_KDW4length_modifier@0@@Z 10053960 f i libucrt:output.obj
0001:00052991 ??$scratch_data@D@formatting_buffer@__crt_stdio_output@@QAEPADXZ 10053991 f i libucrt:output.obj
0001:000529af ??$type_case_integer_parse_into_buffer@I@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXII_N@Z 100539af f i libucrt:output.obj
0001:000529af ??$type_case_integer_parse_into_buffer@I@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXII_N@Z 100539af f i libucrt:output.obj
0001:00052a22 ??$type_case_integer_parse_into_buffer@_K@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_KI_N@Z 10053a22 f i libucrt:output.obj
0001:00052a22 ??$type_case_integer_parse_into_buffer@_K@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_KI_N@Z 10053a22 f i libucrt:output.obj
0001:00052ab2 ??$write_multiple_characters@V?$string_output_adapter@D@__crt_stdio_output@@D@__crt_stdio_output@@YAXABV?$string_output_adapter@D@0@DHQAH@Z 10053ab2 f i libucrt:output.obj
0001:00052ade ??0?$common_data@D@__crt_stdio_output@@IAE@XZ 10053ade f i libucrt:output.obj
0001:00052b25 ??0?$output_adapter_data@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IAE@ABV?$string_output_adapter@D@1@_KQBDQAU__crt_locale_pointers@@QAD@Z 10053b25 f i libucrt:output.obj
0001:00052b61 ??0_LocaleUpdate@@QAE@QAU__crt_locale_pointers@@@Z 10053b61 f i libucrt:output.obj
0001:00052be4 ??1formatting_buffer@__crt_stdio_output@@QAE@XZ 10053be4 f i libucrt:output.obj
0001:00052bfe ??4?$__crt_unique_heap_ptr@DU__crt_internal_free_policy@@@@QAEAAV0@$$QAV0@@Z 10053bfe f i libucrt:output.obj
0001:00052c22 ?crop_zeroes@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10053c22 f i libucrt:output.obj
0001:00052c82 ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10053c82 f i libucrt:output.obj
0001:00052cc4 ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10053cc4 f i libucrt:output.obj
0001:00052d03 ?force_decimal_point@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10053d03 f i libucrt:output.obj
0001:00052d5f ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10053d5f f i libucrt:output.obj
0001:00052d5f ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10053d5f f i libucrt:output.obj
0001:00052dd5 ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10053dd5 f i libucrt:output.obj
0001:00052ef9 ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10053ef9 f i libucrt:output.obj
0001:0005300d ?state_case_flag@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005400d f i libucrt:output.obj
0001:0005300d ?state_case_flag@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005400d f i libucrt:output.obj
0001:0005304a ?state_case_normal@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005404a f i libucrt:output.obj
0001:0005304a ?state_case_normal@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005404a f i libucrt:output.obj
0001:00053069 ?state_case_normal_common@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054069 f i libucrt:output.obj
0001:00053069 ?state_case_normal_common@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054069 f i libucrt:output.obj
0001:00053093 ?state_case_normal_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10054093 f i libucrt:output.obj
0001:00053093 ?state_case_normal_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10054093 f i libucrt:output.obj
0001:000530f7 ?state_case_precision@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100540f7 f i libucrt:output.obj
0001:000530f7 ?state_case_precision@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100540f7 f i libucrt:output.obj
0001:0005311d ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005411d f i libucrt:output.obj
0001:0005311d ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005411d f i libucrt:output.obj
0001:0005326b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005426b f i libucrt:output.obj
0001:0005326b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005426b f i libucrt:output.obj
0001:0005349f ?state_case_width@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005449f f i libucrt:output.obj
0001:0005349f ?state_case_width@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005449f f i libucrt:output.obj
0001:000534ca ?to_integer_size@__crt_stdio_output@@YAIW4length_modifier@1@@Z 100544ca f i libucrt:output.obj
0001:0005351e ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005451e f i libucrt:output.obj
0001:0005351e ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005451e f i libucrt:output.obj
0001:0005357a ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005457a f i libucrt:output.obj
0001:0005357a ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005457a f i libucrt:output.obj
0001:000536d3 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 100546d3 f i libucrt:output.obj
0001:000536d3 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 100546d3 f i libucrt:output.obj
0001:00053763 ?type_case_integer@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NI_N@Z 10054763 f i libucrt:output.obj
0001:00053763 ?type_case_integer@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NI_N@Z 10054763 f i libucrt:output.obj
0001:000538b6 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100548b6 f i libucrt:output.obj
0001:000538b6 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100548b6 f i libucrt:output.obj
0001:0005392a ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005492a f i libucrt:output.obj
0001:0005392a ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1005492a f i libucrt:output.obj
0001:00053949 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054949 f i libucrt:output.obj
0001:00053949 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054949 f i libucrt:output.obj
0001:00053961 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054961 f i libucrt:output.obj
0001:00053961 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10054961 f i libucrt:output.obj
0001:000539d2 ?validate@?$string_output_adapter@D@__crt_stdio_output@@QBE_NXZ 100549d2 f i libucrt:output.obj
0001:000539d2 ?validate@?$c_string_character_source@D@__crt_strtox@@QBE_NXZ 100549d2 f i libucrt:atof.obj
0001:000539ed ?validate_and_update_state_at_end_of_format_string@?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IBE_NXZ 100549ed f i libucrt:output.obj
0001:00053a0f ?validate_stream_is_ansi_if_required@?$__acrt_stdio_char_traits@D@@SA_NQAU_iobuf@@@Z 10054a0f f i libucrt:output.obj
0001:00053a96 ?write_character@?$string_output_adapter@D@__crt_stdio_output@@QBE_NDQAH@Z 10054a96 f i libucrt:output.obj
0001:00053ad8 ?write_stored_string_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10054ad8 f i libucrt:output.obj
0001:00053ad8 ?write_stored_string_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10054ad8 f i libucrt:output.obj
0001:00053b81 ?write_string@?$string_output_adapter@D@__crt_stdio_output@@QBEXQBDHQAHAAV__crt_deferred_errno_cache@@@Z 10054b81 f i libucrt:output.obj
0001:00053be8 ___acrt_locale_get_ctype_array_value 10054be8 f i libucrt:output.obj
0001:00053c0a ___stdio_common_vsnprintf_s 10054c0a f libucrt:output.obj
0001:00053c31 ___stdio_common_vsprintf 10054c31 f libucrt:output.obj
0001:00053c55 ___stdio_common_vsprintf_s 10054c55 f libucrt:output.obj
0001:00053c80 __libm_sse2_sqrt_precise 10054c80 f libucrt:sqrt_sse2_precise.obj
0001:00053d80 __libm_sse2_tan_precise 10054d80 f libucrt:tan_sse2_precise.obj
0001:000542b6 __chvalidchk_l 100552b6 f i libucrt:tolower_toupper.obj
0001:000542de __ischartype_l 100552de f i libucrt:tolower_toupper.obj
0001:00054311 __tolower_l 10055311 f libucrt:tolower_toupper.obj
0001:0005432b __toupper_l 1005532b f libucrt:tolower_toupper.obj
0001:00054345 _tolower 10055345 f libucrt:tolower_toupper.obj
0001:00054375 _toupper 10055375 f libucrt:tolower_toupper.obj
0001:000543a5 _strcpy_s 100553a5 f libucrt:strcpy_s.obj
0001:000543ff _strcat_s 100553ff f libucrt:strcat_s.obj
0001:00054538 _strncat_s 10055538 f libucrt:strncat_s.obj
0001:000545f6 _strncpy_s 100555f6 f libucrt:strncpy_s.obj
0001:000546ae _fopen_s 100556ae f libucrt:fopen.obj
0001:000546f5 __fclose_nolock 100556f5 f libucrt:fclose.obj
0001:0005476c _fclose 1005576c f libucrt:fclose.obj
0001:000547e6 ?LongLongSub@@YAJ_J0PA_J@Z 100557e6 f i libucrt:fseek.obj
0001:00054a98 _fseek 10055a98 f libucrt:fseek.obj
0001:00054b49 __fwrite_nolock 10055b49 f libucrt:fwrite.obj
0001:00054ccc _fwrite 10055ccc f libucrt:fwrite.obj
0001:00054d31 __fgetc_nolock 10055d31 f libucrt:fgetc.obj
0001:00054d6d __getc_nolock 10055d6d f libucrt:fgetc.obj
0001:00054d78 _fgetc 10055d78 f libucrt:fgetc.obj
0001:00054e76 _getc 10055e76 f libucrt:fgetc.obj
0001:00054e81 __fputc_nolock 10055e81 f libucrt:fputc.obj
0001:00054eaa _fputc 10055eaa f libucrt:fputc.obj
0001:00054faa _putc 10055faa f libucrt:fputc.obj
0001:00054fb5 _feof 10055fb5 f libucrt:feoferr.obj
0001:00055099 _fgets 10056099 f libucrt:fgets.obj
0001:000550a4 ??$assemble_floating_point_snan@N@__crt_strtox@@YAX_NAAN@Z 100560a4 f i libucrt:input.obj
0001:000550c5 ??$assemble_floating_point_value_t@M@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAM@Z 100560c5 f i libucrt:input.obj
0001:000550f5 ??$assemble_floating_point_value_t@N@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAN@Z 100560f5 f i libucrt:input.obj
0001:000551ed ??$convert_decimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 100561ed f i libucrt:input.obj
0001:00055210 ??$convert_decimal_string_to_floating_type@N@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAN@Z 10056210 f i libucrt:input.obj
0001:00055233 ??$convert_hexadecimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10056233 f i libucrt:input.obj
0001:00055256 ??$convert_hexadecimal_string_to_floating_type@N@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAN@Z 10056256 f i libucrt:input.obj
0001:00055279 ??$is_overflow_condition@_K@__crt_strtox@@YA_NI_K@Z 10056279 f i libucrt:input.obj
0001:000552ba ??$make_input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@YA?AV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@QAV?$string_input_adapter@D@__crt_stdio_input@@_KQA_N@Z 100562ba f i libucrt:input.obj
0001:000552d8 ??$parse_floating_point@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@M@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@QAM@Z 100562d8 f i libucrt:input.obj
0001:00055353 ??$parse_floating_point@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@N@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@QAN@Z 10056353 f i libucrt:input.obj
0001:000553ce ??$parse_floating_point_from_source@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@AAUfloating_point_string@0@@Z 100563ce f i libucrt:input.obj
0001:0005582d ??$parse_floating_point_possible_infinity@DV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@_K@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@_K@Z 1005682d f i libucrt:input.obj
0001:000558ee ??$parse_floating_point_possible_nan@DV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@_K@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@_K@Z 100568ee f i libucrt:input.obj
0001:00055a0b ??$parse_floating_point_possible_nan_is_ind@DV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@@Z 10056a0b f i libucrt:input.obj
0001:00055a45 ??$parse_floating_point_possible_nan_is_snan@DV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@@Z 10056a45 f i libucrt:input.obj
0001:00055a7f ??$parse_floating_point_write_result@M@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAM@Z 10056a7f f i libucrt:input.obj
0001:00055beb ??$parse_floating_point_write_result@N@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAN@Z 10056beb f i libucrt:input.obj
0001:00055d0f ??$parse_integer@_KV?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@@__crt_strtox@@YA_KQAU__crt_locale_pointers@@V?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@0@H_N@Z 10056d0f f i libucrt:input.obj
0001:00055fcf ??$process_floating_point_specifier_t@M@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 10056fcf f i libucrt:input.obj
0001:00056037 ??$process_floating_point_specifier_t@N@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 10057037 f i libucrt:input.obj
0001:0005609f ??$process_string_specifier_tchar@D@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NW4conversion_mode@1@D@Z 1005709f f i libucrt:input.obj
0001:000561fe ??$process_string_specifier_tchar@_W@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NW4conversion_mode@1@_W@Z 100571fe f i libucrt:input.obj
0001:00056367 ??$skip_whitespace@Vstring_input_adapter@__crt_stdio_input@@D@__crt_stdio_input@@YAHAAV?$string_input_adapter@D@0@QAU__crt_locale_pointers@@@Z 10057367 f i libucrt:input.obj
0001:00056396 ??$write_floating_point@M@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NABM@Z 10057396 f i libucrt:input.obj
0001:000563ca ??$write_floating_point@N@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NABN@Z 100573ca f i libucrt:input.obj
0001:00056404 ??0?$format_string_parser@D@__crt_stdio_input@@QAE@_KQBE@Z 10057404 f i libucrt:input.obj
0001:0005644e ??0?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@QAE@QAV?$string_input_adapter@D@__crt_stdio_input@@_KQA_N@Z 1005744e f i libucrt:input.obj
0001:0005647f ??0?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@QAE@ABV?$string_input_adapter@D@1@_KQBDQAU__crt_locale_pointers@@QAD@Z 1005747f f i libucrt:input.obj
0001:000564ed ?advance@?$format_string_parser@D@__crt_stdio_input@@QAE_NXZ 100574ed f i libucrt:input.obj
0001:00056605 ?as_double@floating_point_value@__crt_strtox@@QBEAANXZ 10057605 f i libucrt:input.obj
0001:0005662a ?as_float@floating_point_value@__crt_strtox@@QBEAAMXZ 1005762a f i libucrt:input.obj
0001:0005664f ?assemble_floating_point_infinity@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 1005764f f i libucrt:input.obj
0001:0005668f ?assemble_floating_point_value@__crt_strtox@@YA?AW4SLD_STATUS@@_KH_N1ABVfloating_point_value@1@@Z 1005768f f i libucrt:input.obj
0001:000569ce ?assemble_floating_point_value_from_big_integer@__crt_strtox@@YA?AW4SLD_STATUS@@ABUbig_integer@1@I_N1ABVfloating_point_value@1@@Z 100579ce f i libucrt:input.obj
0001:00056b64 ?assemble_floating_point_zero@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 10057b64 f i libucrt:input.obj
0001:00056b99 ?convert_decimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10057b99 f i libucrt:input.obj
0001:00058903 ?convert_hexadecimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10059903 f i libucrt:input.obj
0001:000589ab ?denormal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 100599ab f i libucrt:input.obj
0001:000589d0 ?divide@__crt_strtox@@YA_KAAUbig_integer@1@ABU21@@Z 100599d0 f i libucrt:input.obj
0001:00058e68 ?get@?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@QAEDXZ 10059e68 f i libucrt:input.obj
0001:00058e9f ?get@?$string_input_adapter@D@__crt_stdio_input@@QAEHXZ 10059e9f f i libucrt:input.obj
0001:00058eb5 ?invert@?$scanset_buffer@E@__crt_stdio_input@@QAEXXZ 10059eb5 f i libucrt:input.obj
0001:00058ed3 ?is_character_allowed_in_string@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@ABE_NW4conversion_mode@2@H@Z 10059ed3 f i libucrt:input.obj
0001:00058f23 ?length@?$format_string_parser@D@__crt_stdio_input@@QBEIXZ 10059f23 f i libucrt:input.obj
0001:00058f64 ?normal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10059f64 f i libucrt:input.obj
0001:00058f7b ?process@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@QAEHXZ 10059f7b f i libucrt:input.obj
0001:00058fff ?process_character_count_specifier@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 10059fff f i libucrt:input.obj
0001:00059017 ?process_conversion_specifier@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 1005a017 f i libucrt:input.obj
0001:0005908b ?process_floating_point_specifier@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 1005a08b f i libucrt:input.obj
0001:000590bb ?process_integer_specifier@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NI_N@Z 1005a0bb f i libucrt:input.obj
0001:0005911f ?process_literal_character@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 1005a11f f i libucrt:input.obj
0001:00059155 ?process_literal_character_tchar@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_ND@Z 1005a155 f i libucrt:input.obj
0001:000591a3 ?process_state@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 1005a1a3 f i libucrt:input.obj
0001:000591e5 ?process_string_specifier@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NW4conversion_mode@2@@Z 1005a1e5 f i libucrt:input.obj
0001:0005922d ?process_whitespace@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NXZ 1005a22d f i libucrt:input.obj
0001:0005924a ?restore_state@?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@QAE_N_K@Z 1005a24a f i libucrt:input.obj
0001:0005926f ?scan_conversion_specifier@?$format_string_parser@D@__crt_stdio_input@@AAE_NXZ 1005a26f f i libucrt:input.obj
0001:000593df ?scan_optional_field_width@?$format_string_parser@D@__crt_stdio_input@@AAE_NXZ 1005a3df f i libucrt:input.obj
0001:0005947e ?scan_optional_length_modifier@?$format_string_parser@D@__crt_stdio_input@@AAEXXZ 1005a47e f i libucrt:input.obj
0001:0005958d ?scan_optional_literal_character_trail_bytes_tchar@?$format_string_parser@D@__crt_stdio_input@@AAE_ND@Z 1005a58d f i libucrt:input.obj
0001:000595df ?scan_optional_wide_modifier@?$format_string_parser@D@__crt_stdio_input@@AAEXXZ 1005a5df f i libucrt:input.obj
0001:000595fd ?scan_scanset_range@?$format_string_parser@D@__crt_stdio_input@@AAE_NXZ 1005a5fd f i libucrt:input.obj
0001:00059737 ?set_wide_for_c_s_or_scanset@?$format_string_parser@D@__crt_stdio_input@@AAEXXZ 1005a737 f i libucrt:input.obj
0001:00059757 ?to_floating_point_length@__crt_stdio_input@@YAIW4length_modifier@1@@Z 1005a757 f i libucrt:input.obj
0001:0005977a ?to_integer_length@__crt_stdio_input@@YAIW4length_modifier@1@@Z 1005a77a f i libucrt:input.obj
0001:000597cd ?unget@?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@QAEXD@Z 1005a7cd f i libucrt:input.obj
0001:00059814 ?unget@?$string_input_adapter@D@__crt_stdio_input@@QAEXH@Z 1005a814 f i libucrt:input.obj
0001:00059833 ?validate@?$format_string_parser@D@__crt_stdio_input@@QBE_NXZ 1005a833 f i libucrt:input.obj
0001:0005984f ?validate@?$input_adapter_character_source@V?$string_input_adapter@D@__crt_stdio_input@@@__crt_strtox@@QBE_NXZ 1005a84f f i libucrt:input.obj
0001:00059870 ?validate@?$string_input_adapter@D@__crt_stdio_input@@QAE_NXZ 1005a870 f i libucrt:input.obj
0001:00059892 ?write_character@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_NQA_WIAAPA_WAAID@Z 1005a892 f i libucrt:input.obj
0001:00059901 ?write_integer@?$input_processor@DV?$string_input_adapter@D@__crt_stdio_input@@@__crt_stdio_input@@AAE_N_K@Z 1005a901 f i libucrt:input.obj
0001:0005996f ___stdio_common_vsscanf 1005a96f f libucrt:input.obj
0001:00059a7a ??$parse_floating_point@V?$c_string_character_source@D@__crt_strtox@@N@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$c_string_character_source@D@0@QAN@Z 1005aa7a f i libucrt:atof.obj
0001:00059af0 ??$parse_floating_point_from_source@V?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$c_string_character_source@D@0@AAUfloating_point_string@0@@Z 1005aaf0 f i libucrt:atof.obj
0001:00059ee7 ??$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 1005aee7 f i libucrt:atof.obj
0001:00059f8b ??$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 1005af8b f i libucrt:atof.obj
0001:0005a09c ??$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 1005b09c f i libucrt:atof.obj
0001:0005a0d8 ??$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 1005b0d8 f i libucrt:atof.obj
0001:0005a13a ?unget@?$c_string_character_source@D@__crt_strtox@@QAEXD@Z 1005b13a f i libucrt:atof.obj
0001:0005a163 _atof 1005b163 f libucrt:atof.obj
0001:0005a176 ??$is_overflow_condition@K@__crt_strtox@@YA_NIK@Z 1005b176 f i libucrt:atox.obj
0001:0005a1a7 ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YAKQAU__crt_locale_pointers@@V?$c_string_character_source@D@0@H_N@Z 1005b1a7 f i libucrt:atox.obj
0001:0005a3ce ??$parse_integer@_KV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_KQAU__crt_locale_pointers@@V?$c_string_character_source@D@0@H_N@Z 1005b3ce f i libucrt:atox.obj
0001:0005a676 _atoi 1005b676 f libucrt:atox.obj
0001:0005a6a0 __CIatan2 1005b6a0 f libucrt:87ctriga.obj
0001:0005a6b0 __libm_sse2_cos_precise 1005b6b0 f libucrt:cos_sse2_precise.obj
0001:0005a868 ___acrt_call_reportfault 1005b868 f libucrt:invalid_parameter.obj
0001:0005a9a3 ___acrt_initialize_invalid_parameter_handler 1005b9a3 f libucrt:invalid_parameter.obj
0001:0005a9b2 __invalid_parameter 1005b9b2 f libucrt:invalid_parameter.obj
0001:0005aa16 __invalid_parameter_noinfo 1005ba16 f libucrt:invalid_parameter.obj
0001:0005aa26 __invalid_parameter_noinfo_noreturn 1005ba26 f libucrt:invalid_parameter.obj
0001:0005aa43 __invoke_watson 1005ba43 f libucrt:invalid_parameter.obj
0001:0005aa77 __fread_nolock_s 1005ba77 f libucrt:fread.obj
0001:0005ac5f _fread 1005bc5f f libucrt:fread.obj
0001:0005ac7c _fread_s 1005bc7c f libucrt:fread.obj
0001:0005ad0f _free 1005bd0f f libucrt:free.obj
0001:0005ad2c _malloc 1005bd2c f libucrt:malloc.obj
0001:0005ad37 ___acrt_initialize_new_handler 1005bd37 f libucrt:new_handler.obj
0001:0005ad46 __callnewh 1005bd46 f libucrt:new_handler.obj
0001:0005ad73 __query_new_handler 1005bd73 f libucrt:new_handler.obj
0001:0005adc5 _terminate 1005bdc5 f libucrt:terminate.obj
0001:0005ae01 __initterm 1005be01 f libucrt:initterm.obj
0001:0005ae48 __initterm_e 1005be48 f libucrt:initterm.obj
0001:0005ae76 __seh_filter_dll 1005be76 f libucrt:exception_filter.obj
0001:0005ae96 __seh_filter_exe 1005be96 f libucrt:exception_filter.obj
0001:0005b256 ___acrt_initialize_thread_local_exit_callback 1005c256 f libucrt:exit.obj
0001:0005b265 __cexit 1005c265 f libucrt:exit.obj
0001:0005b274 __exit 1005c274 f libucrt:exit.obj
0001:0005b28a __is_c_termination_complete 1005c28a f libucrt:exit.obj
0001:0005b542 ___acrt_allocate_buffer_for_argv 1005c542 f libucrt:argv_parsing.obj
0001:0005b591 __configure_narrow_argv 1005c591 f libucrt:argv_parsing.obj
0001:0005b6f0 ??$uninitialize@A6AXAAPAPAD@Z@?$dual_state_global@PAPAD@__crt_state_management@@QAEXA6AXAAPAPAD@Z@Z 1005c6f0 f i libucrt:environment_initialization.obj
0001:0005b6f0 ??$uninitialize@A6AXAAPAPA_W@Z@?$dual_state_global@PAPA_W@__crt_state_management@@QAEXA6AXAAPAPA_W@Z@Z 1005c6f0 f i libucrt:environment_initialization.obj
0001:0005b74f ___dcrt_uninitialize_environments_nolock 1005c74f f libucrt:environment_initialization.obj
0001:0005b786 __initialize_narrow_environment 1005c786 f libucrt:environment_initialization.obj
0001:0005b82d ??$__crt_fast_encode_pointer@PAP6AXXZ@@YAPAP6AXXZQAP6AXXZ@Z 1005c82d f i libucrt:onexit.obj
0001:0005b82d ??$__crt_fast_encode_pointer@PAX@@YAPAXQAX@Z 1005c82d f i libucrt:initialization.obj
0001:0005b82d ??$__crt_fast_encode_pointer@P6AHXZ@@YAP6AHXZQ6AHXZ@Z 1005c82d f i libucrt:onexit.obj
0001:0005ba53 __crt_atexit 1005ca53 f libucrt:onexit.obj
0001:0005ba69 __execute_onexit_table 1005ca69 f libucrt:onexit.obj
0001:0005ba98 __initialize_onexit_table 1005ca98 f libucrt:onexit.obj
0001:0005bac1 __register_onexit_function 1005cac1 f libucrt:onexit.obj
0001:0005bb1d ___acrt_uninitialize_command_line 1005cb1d f libucrt:argv_data.obj
0001:0005bbf6 ___acrt_initialize 1005cbf6 f libucrt:initialization.obj
0001:0005bc08 ___acrt_thread_attach 1005cc08 f libucrt:initialization.obj
0001:0005bc13 ___acrt_thread_detach 1005cc13 f libucrt:initialization.obj
0001:0005bc1b ___acrt_uninitialize 1005cc1b f libucrt:initialization.obj
0001:0005bc4b ___acrt_uninitialize_critical 1005cc4b f libucrt:initialization.obj
0001:0005bc5d _abort 1005cc5d f libucrt:abort.obj
0001:0005bca1 _calloc 1005cca1 f libucrt:calloc.obj
0001:0005bcac _wcsncmp 1005ccac f libucrt:wcsncmp.obj
0001:0005bce6 __isdigit_l 1005cce6 f i libucrt:_ctype.obj
0001:0005bd1e __isspace_l 1005cd1e f i libucrt:_ctype.obj
0001:0005bd56 _isdigit 1005cd56 f i libucrt:_ctype.obj
0001:0005bd87 _isspace 1005cd87 f i libucrt:_ctype.obj
0001:0005bdb8 ___acrt_errno_from_os_error 1005cdb8 f libucrt:errno.obj
0001:0005bdfb ___acrt_errno_map_os_error 1005cdfb f libucrt:errno.obj
0001:0005be1e ___doserrno 1005ce1e f libucrt:errno.obj
0001:0005be31 __errno 1005ce31 f libucrt:errno.obj
0001:0005be44 __free_base 1005ce44 f libucrt:free_base.obj
0001:0005be7e __malloc_base 1005ce7e f libucrt:malloc_base.obj
0001:0005becc ??$make_c_string_character_source@DPAPAD@__crt_strtox@@YA?AV?$c_string_character_source@D@0@QBDQAPAD@Z 1005cecc f i libucrt:strtox.obj
0001:0005bee7 _strtol 1005cee7 f libucrt:strtox.obj
0001:0005bf13 _strtoull 1005cf13 f libucrt:strtox.obj
0001:0005bf3f __mbtowc_l 1005cf3f f libucrt:mbtowc.obj
0001:0005c083 _mbtowc 1005d083 f libucrt:mbtowc.obj
0001:0005c09d __wctomb_s_l 1005d09d f libucrt:wctomb.obj
0001:0005c1fa _wctomb_s 1005d1fa f libucrt:wctomb.obj
0001:0005c217 _strnlen 1005d217 f libucrt:strnlen.obj
0001:0005c339 _wcsnlen 1005d339 f libucrt:strnlen.obj
0001:0005c803 ___acrt_freeptd 1005d803 f libucrt:per_thread_data.obj
0001:0005c82f ___acrt_getptd 1005d82f f libucrt:per_thread_data.obj
0001:0005c8ec ___acrt_getptd_head 1005d8ec f libucrt:per_thread_data.obj
0001:0005c986 ___acrt_getptd_noexit 1005d986 f libucrt:per_thread_data.obj
0001:0005ca3b ___acrt_initialize_ptd 1005da3b f libucrt:per_thread_data.obj
0001:0005ca67 ___acrt_uninitialize_ptd 1005da67 f libucrt:per_thread_data.obj
0001:0005ca81 ___acrt_update_locale_info 1005da81 f libucrt:locale_update.obj
0001:0005caae ___acrt_update_multibyte_info 1005daae f libucrt:locale_update.obj
0001:0005cadb ?__acrt_fp_classify@@YA?AW4__acrt_fp_class@@ABN@Z 1005dadb f i libucrt:cvt.obj
0001:0005d392 ___acrt_fp_format 1005e392 f libucrt:cvt.obj
0001:0005d4cf __fileno 1005e4cf f libucrt:fileno.obj
0001:0005d4f6 ___acrt_initialize_stdio 1005e4f6 f libucrt:_file.obj
0001:0005d5be ___acrt_iob_func 1005e5be f libucrt:_file.obj
0001:0005d5ce ___acrt_uninitialize_stdio 1005e5ce f libucrt:_file.obj
0001:0005d61a __lock_file 1005e61a f libucrt:_file.obj
0001:0005d62e __unlock_file 1005e62e f libucrt:_file.obj
0001:0005d642 __get_printf_count_output 1005e642 f libucrt:printf_count_output.obj
0001:0005d657 ___acrt_stdio_begin_temporary_buffering_nolock 1005e657 f libucrt:_sftbuf.obj
0001:0005d70a ___acrt_stdio_end_temporary_buffering_nolock 1005e70a f libucrt:_sftbuf.obj
0001:0005d7a8 ___acrt_set_locale_changed 1005e7a8 f libucrt:wsetlocale.obj
0001:0005d7b3 ___acrt_uninitialize_locale 1005e7b3 f libucrt:wsetlocale.obj
0001:0005d948 ___acrt_initialize_lowio 1005e948 f libucrt:ioinit.obj
0001:0005d99e ___acrt_uninitialize_lowio 1005e99e f libucrt:ioinit.obj
0001:0005d9ca ___libm_error_support 1005e9ca f libucrt:libm_error.obj
0001:0005dbc0 _sqrt 1005ebc0 f libucrt:sqrt.obj
0001:0005dbd0 __CItan 1005ebd0 f libucrt:tan_impl.obj
0001:0005dc0b __CItan_default 1005ec0b f libucrt:tan_impl.obj
0001:0005dc1f __tan_default 1005ec1f libucrt:tan_impl.obj
0001:0005dcb6 ___pctype_func 1005ecb6 f libucrt:ctype.obj
0001:0005dcdc __isleadbyte_l 1005ecdc f i libucrt:_wctype.obj
0001:0005dd18 __isctype_l 1005ed18 f libucrt:isctype.obj
0001:0005dfd9 ___acrt_LCMapStringA 1005efd9 f libucrt:lcmapstringa.obj
0001:0005e024 __freea_crt 1005f024 f i libucrt:lcmapstringa.obj
0001:0005e044 ?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 1005f044 f libucrt:stream.obj
0001:0005e0a3 ?__acrt_stdio_free_stream@@YAXV__crt_stdio_stream@@@Z 1005f0a3 f libucrt:stream.obj
0001:0005e1a2 ??$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z 1005f1a2 f i libucrt:openfile.obj
0001:0005e456 ?__acrt_stdio_parse_mode_D@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1005f456 f i libucrt:openfile.obj
0001:0005e471 ?__acrt_stdio_parse_mode_T@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1005f471 f i libucrt:openfile.obj
0001:0005e490 ?__acrt_stdio_parse_mode_b@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1005f490 f i libucrt:openfile.obj
0001:0005e4b0 ?__acrt_stdio_parse_mode_c@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1005f4b0 f i libucrt:openfile.obj
0001:0005e4d2 ?__acrt_stdio_parse_mode_n@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1005f4d2 f i libucrt:openfile.obj
0001:0005e4f4 ?__acrt_stdio_parse_mode_plus@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1005f4f4 f i libucrt:openfile.obj
0001:0005e52a ?__acrt_stdio_parse_mode_t@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1005f52a f i libucrt:openfile.obj
0001:0005e54a ?__acrt_stdio_parse_mode_x@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1005f54a f i libucrt:openfile.obj
0001:0005e56a __openfile 1005f56a f libucrt:openfile.obj
0001:0005e5f7 __close 1005f5f7 f libucrt:close.obj
0001:0005e686 __close_nolock 1005f686 f libucrt:close.obj
0001:0005e722 ___acrt_stdio_free_buffer_nolock 1005f722 f libucrt:_freebuf.obj
0001:0005e92d ___acrt_stdio_flush_nolock 1005f92d f libucrt:fflush.obj
0001:0005e992 __fflush_nolock 1005f992 f libucrt:fflush.obj
0001:0005e9da __flushall 1005f9da f libucrt:fflush.obj
0001:0005ef46 __ftelli64_nolock 1005ff46 f libucrt:ftell.obj
0001:0005f0d1 __lseeki64 100600d1 f libucrt:lseek.obj
0001:0005f0ec __lseeki64_nolock 100600ec f libucrt:lseek.obj
0001:0005f88c __write 1006088c f libucrt:write.obj
0001:0005f974 __write_nolock 10060974 f libucrt:write.obj
0001:0005fdc0 ___acrt_stdio_flush_and_write_narrow_nolock 10060dc0 f libucrt:_flsbuf.obj
0001:0005ff55 ___acrt_stdio_refill_and_read_narrow_nolock 10060f55 f libucrt:_filbuf.obj
0001:0005ff60 __calloc_base 10060f60 f libucrt:calloc_base.obj
0001:0005ffbd _fegetround 10060fbd f libucrt:fegetround.obj
0001:0005fff0 __fFATN2 10060ff0 f libucrt:87triga.obj
0001:00060040 __rtpiby2 10061040 libucrt:87triga.obj
0001:00060050 __rtforatn20 10061050 f libucrt:87triga.obj
0001:00060080 __rtforatnby0 10061080 f libucrt:87triga.obj
0001:00060090 __cintrindisp2 10061090 f libucrt:87cdisp.obj
0001:000600e0 __cintrindisp1 100610e0 f libucrt:87cdisp.obj
0001:00060129 __ctrandisp2 10061129 f libucrt:87cdisp.obj
0001:000602b8 __ctrandisp1 100612b8 f libucrt:87cdisp.obj
0001:000602eb __fload 100612eb f libucrt:87cdisp.obj
0001:00060330 __CIcos 10061330 f libucrt:cos_impl.obj
0001:0006036b __CIcos_default 1006136b f libucrt:cos_impl.obj
0001:0006037f __cos_default 1006137f libucrt:cos_impl.obj
0001:0006090a __read 1006190a f libucrt:read.obj
0001:00060a14 __read_nolock 10061a14 f libucrt:read.obj
0001:00060dc6 ___acrt_initialize_locks 10061dc6 f libucrt:locks.obj
0001:00060e07 ___acrt_lock 10061e07 f libucrt:locks.obj
0001:00060e1e ___acrt_uninitialize_locks 10061e1e f libucrt:locks.obj
0001:00060e4f ___acrt_unlock 10061e4f f libucrt:locks.obj
0001:00060e66 ___acrt_get_process_end_policy 10061e66 f libucrt:win_policies.obj
0001:00061032 ??$__acrt_mbs_to_wcs_cp@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@I@Z 10062032 f i libucrt:argv_wildcards.obj
0001:0006154e ?__acrt_get_utf8_acp_compatibility_codepage@@YAIXZ 1006254e f i libucrt:argv_wildcards.obj
0001:0006158f ?_deallocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1006258f f i libucrt:argv_wildcards.obj
0001:0006158f ?_deallocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 1006258f f i libucrt:argv_wildcards.obj
0001:000615a9 ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 100625a9 f i libucrt:argv_wildcards.obj
0001:000615e5 ?allocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 100625e5 f i libucrt:argv_wildcards.obj
0001:00061624 ?allocate@__crt_win32_buffer_internal_dynamic_resizing@@SAHQAPAXIABV__crt_win32_buffer_empty_debug_info@@@Z 10062624 f i libucrt:argv_wildcards.obj
0001:000616ca ___acrt_expand_narrow_argv_wildcards 100626ca f libucrt:argv_wildcards.obj
0001:0006179c ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEHI@Z 1006279c f i libucrt:getmodulefilenamea.obj
0001:000617c3 ?set_to_nullptr@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEXXZ 100627c3 f i libucrt:getmodulefilenamea.obj
0001:000617d7 ___acrt_GetModuleFileNameA 100627d7 f libucrt:getmodulefilenamea.obj
0001:00061d8a ___acrt_initialize_multibyte 10062d8a f libucrt:mbctype.obj
0001:00061dd2 ___acrt_update_thread_multibyte_data 10062dd2 f libucrt:mbctype.obj
0001:00061de5 __setmbcp_nolock 10062de5 f libucrt:mbctype.obj
0001:00062033 __ismbblead 10063033 f libucrt:ismbbyte.obj
0001:0006204b ___acrt_initialize_command_line 1006304b f libucrt:argv_data.obj
0001:00062064 ___acrt_MultiByteToWideChar 10063064 f libucrt:multibytetowidechar.obj
0001:000620e0 ___acrt_WideCharToMultiByte 100630e0 f libucrt:widechartomultibyte.obj
0001:000621c4 ___dcrt_get_narrow_environment_from_os 100631c4 f libucrt:get_environment_from_os.obj
0001:0006224a __recalloc_base 1006324a f libucrt:recalloc.obj
0001:00062451 ___acrt_AppPolicyGetProcessTerminationMethodInternal@4 10063451 f libucrt:winapi_thunks.obj
0001:00062491 ___acrt_AreFileApisANSI@0 10063491 f libucrt:winapi_thunks.obj
0001:000624b0 ___acrt_FlsAlloc@4 100634b0 f libucrt:winapi_thunks.obj
0001:000624ef ___acrt_FlsFree@4 100634ef f libucrt:winapi_thunks.obj
0001:0006252e ___acrt_FlsGetValue@4 1006352e f libucrt:winapi_thunks.obj
0001:0006256d ___acrt_FlsSetValue@8 1006356d f libucrt:winapi_thunks.obj
0001:000625af ___acrt_InitializeCriticalSectionEx@12 100635af f libucrt:winapi_thunks.obj
0001:000625fa ___acrt_LCMapStringEx@36 100635fa f libucrt:winapi_thunks.obj
0001:00062657 ___acrt_LocaleNameToLCID@8 10063657 f libucrt:winapi_thunks.obj
0001:00062688 ___acrt_initialize_winapi_thunks 10063688 f libucrt:winapi_thunks.obj
0001:000626b3 ___acrt_uninitialize_winapi_thunks 100636b3 f libucrt:winapi_thunks.obj
0001:000626e9 ___acrt_initialize_heap 100636e9 f libucrt:heap_handle.obj
0001:000626fa ___acrt_uninitialize_heap 100636fa f libucrt:heap_handle.obj
0001:00062704 ___acrt_execute_initializers 10063704 f libucrt:shared_initialization.obj
0001:0006276c ___acrt_execute_uninitializers 1006376c f libucrt:shared_initialization.obj
0001:00062861 ___acrt_get_sigabrt_handler 10063861 f libucrt:signal.obj
0001:0006288a ___acrt_initialize_signal_handlers 1006388a f libucrt:signal.obj
0001:000628a8 ___fpecode 100638a8 f libucrt:signal.obj
0001:000628b1 _raise 100638b1 f libucrt:signal.obj
0001:00062a98 ___acrt_has_user_matherr 10063a98 f libucrt:matherr.obj
0001:00062ab0 ___acrt_initialize_user_matherr 10063ab0 f libucrt:matherr.obj
0001:00062abf ___acrt_invoke_user_matherr 10063abf f libucrt:matherr.obj
0001:00062af1 __query_new_mode 10063af1 f libucrt:new_mode.obj
0001:00062b24 ?__mbrtowc_utf8@__crt_mbstring@@YAIPA_WPBDIPAU_Mbstatet@@@Z 10063b24 f libucrt:mbrtowc.obj
0001:00062b66 ?__mbsrtowcs_utf8@__crt_mbstring@@YAIPA_WPAPBDIPAU_Mbstatet@@@Z 10063b66 f libucrt:mbrtowc.obj
0001:00062c63 ?__c32rtomb_utf8@__crt_mbstring@@YAIPAD_UPAU_Mbstatet@@@Z 10063c63 f libucrt:c32rtomb.obj
0001:00062d12 ?return_illegal_sequence@__crt_mbstring@@YAIPAU_Mbstatet@@@Z 10063d12 f i libucrt:c32rtomb.obj
0001:00062d31 ___acrt_add_locale_ref 10063d31 f libucrt:locale_refcounting.obj
0001:00062dae ___acrt_free_locale 10063dae f libucrt:locale_refcounting.obj
0001:00062ef8 ___acrt_locale_add_lc_time_reference 10063ef8 f libucrt:locale_refcounting.obj
0001:00062f21 ___acrt_locale_free_lc_time_if_unreferenced 10063f21 f libucrt:locale_refcounting.obj
0001:00062f52 ___acrt_locale_release_lc_time_reference 10063f52 f libucrt:locale_refcounting.obj
0001:00062f7b ___acrt_release_locale_ref 10063f7b f libucrt:locale_refcounting.obj
0001:00062ffc ___acrt_update_thread_locale_data 10063ffc f libucrt:locale_refcounting.obj
0001:00063073 __updatetlocinfoEx_nolock 10064073 f libucrt:locale_refcounting.obj
0001:000630c3 ___acrt_fp_strflt_to_string 100640c3 f libucrt:_fptostr.obj
0001:00063183 ___acrt_fltout 10064183 f libucrt:cfout.obj
0001:000644df __fcloseall 100654df f libucrt:closeall.obj
0001:00064580 __isatty 10065580 f libucrt:isatty.obj
0001:000645d6 ___acrt_locale_free_monetary 100655d6 f libucrt:initmon.obj
0001:000646d4 ___acrt_locale_free_numeric 100656d4 f libucrt:initnum.obj
0001:00064775 ___acrt_locale_free_time 10065775 f libucrt:inittime.obj
0001:00064859 ___acrt_GetStringTypeA 10065859 f libucrt:getstringtypea.obj
0001:0006495e ___acrt_lowio_create_handle_array 1006595e f libucrt:osfinfo.obj
0001:000649db ___acrt_lowio_destroy_handle_array 100659db f libucrt:osfinfo.obj
0001:00064a10 ___acrt_lowio_ensure_fh_exists 10065a10 f libucrt:osfinfo.obj
0001:00064aa4 ___acrt_lowio_lock_fh 10065aa4 f libucrt:osfinfo.obj
0001:00064ac7 ___acrt_lowio_set_os_handle 10065ac7 f libucrt:osfinfo.obj
0001:00064b5b ___acrt_lowio_unlock_fh 10065b5b f libucrt:osfinfo.obj
0001:00064b7e __alloc_osfhnd 10065b7e f libucrt:osfinfo.obj
0001:00064c87 __free_osfhnd 10065c87 f libucrt:osfinfo.obj
0001:00064d18 __get_osfhandle 10065d18 f libucrt:osfinfo.obj
0001:00064d90 __twoToTOS 10065d90 f libucrt:common.obj
0001:00064da5 __load_CW 10065da5 f libucrt:common.obj
0001:00064dbc __convertTOStoQNaN 10065dbc f libucrt:common.obj
0001:00064dd5 __fload_withFB 10065dd5 f libucrt:common.obj
0001:00064e18 __checkTOS_withFB 10065e18 f libucrt:common.obj
0001:00064e2e __fast_exit 10065e2e f libucrt:common.obj
0001:00064e3b __math_exit 10065e3b f libucrt:common.obj
0001:00064e65 __check_overflow_exit 10065e65 f libucrt:common.obj
0001:00064e79 __check_range_exit 10065e79 f libucrt:common.obj
0001:00064f20 __CIsqrt 10065f20 f libucrt:sqrt_impl.obj
0001:00064f34 __sqrt_common 10065f34 libucrt:sqrt_impl.obj
0001:00064fd1 ___acrt_initialize_sse2 10065fd1 f libucrt:mathfcns.obj
0001:00064ff0 __CItan_pentium4 10065ff0 f libucrt:tan_pentium4.obj
0001:00065008 __tan_pentium4 10066008 libucrt:tan_pentium4.obj
0001:00065250 __trandisp1 10066250 f libucrt:87disp.obj
0001:000652c5 __trandisp2 100662c5 f libucrt:87disp.obj
0001:0006535f __rttospopde 1006635f libucrt:87disp.obj
0001:00065364 __rttospop 10066364 libucrt:87disp.obj
0001:00065370 __rtnospop 10066370 f libucrt:87disp.obj
0001:00065380 __rttosnpop 10066380 f libucrt:87disp.obj
0001:00065381 __rtnospopde 10066381 libucrt:87disp.obj
0001:00065388 __rtzeropop 10066388 libucrt:87disp.obj
0001:0006538a __rtzeronpop 1006638a libucrt:87disp.obj
0001:00065390 __rtzerospop 10066390 f libucrt:87disp.obj
0001:0006539d __rtonepop 1006639d libucrt:87disp.obj
0001:000653a0 __rtonenpop 100663a0 f libucrt:87disp.obj
0001:000653b0 __tosnan1 100663b0 f libucrt:87disp.obj
0001:000653e0 __nosnan2 100663e0 f libucrt:87disp.obj
0001:000653f0 __tosnan2 100663f0 f libucrt:87disp.obj
0001:00065420 __nan2 10066420 f libucrt:87disp.obj
0001:00065460 __rtindfpop 10066460 f libucrt:87disp.obj
0001:00065462 __rtindfnpop 10066462 libucrt:87disp.obj
0001:00065473 __rttosnpopde 10066473 libucrt:87disp.obj