-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbzip_crc32_lowercase.csv
We can't make this file beautiful and searchable because it's too large.
16040 lines (16040 loc) · 709 KB
/
bzip_crc32_lowercase.csv
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
HASH,HASH_W_LEADING_ZEROS,API_NAME
0x6436c98c,0x6436c98c,$I10_OUTPUT
0x561772b8,0x561772b8,1-1-0.AddDllDirectory
0xdb9b6240,0xdb9b6240,1-1-0.CreateRemoteThreadEx
0x9e8f95bc,0x9e8f95bc,1-1-0.DeleteProc
0x62660187,0x62660187,1-1-0.GetLogical
0xc3e6f5d6,0xc3e6f5d6,1-1-0.I_Query
0x7be4b220,0x7be4b220,1-1-0.I_Sc
0xf5986c1,0x0f5986c1,1-1-0.I_ScValidate
0x15cc7c8b,0x15cc7c8b,1-1-0.InitializeProcThreadAttributeList
0xe8526cef,0xe8526cef,1-1-0.OpenProcessToken
0x2f9b2469,0x2f9b2469,1-1-0.OpenThreadToken
0xdbbdd89,0x0dbbdd89,1-1-0.RemoveDllDirectory
0x72414996,0x72414996,1-1-0.SetDefaultDllDirectories
0xfa9924fd,0xfa9924fd,1-1-0.SetThreadToken
0xdb54ff51,0xdb54ff51,1-1-0.SetWaitableTimerEx
0x4984ee09,0x4984ee09,1-1-0.UpdateProcThreadAttribute
0x29d764c2,0x29d764c2,??$AddMarker@UTextMarker@markers@baseprofiler@mozilla@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@ABV?$ProfilerStringView@D@1@ABVMarkerCategory@1@$$QAVMarkerOptions@1@UTextMarker@mark
0xe65d7ad4,0xe65d7ad4,??$AddMarker@UTextMarker@markers@baseprofiler@mozilla@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@AEBV?$ProfilerStringView@D@1@AEBVMarkerCategory@1@$$QEAVMarkerOptions@1@UTextMarker@markers@01@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
0x7a4eca7f,0x7a4eca7f,??$AddMarkerToBuffer@UNoPayload@markers@baseprofiler@mozilla@@$$V@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@AAVProfileChunkedBuffer@1@ABV?$ProfilerStringView@D@1@ABVMarkerCategory@1@$$QAVMarkerOptions@1@UNoPayload@markers@01@@Z
0xa2bebd88,0xa2bebd88,??$AddMarkerToBuffer@UNoPayload@markers@baseprofiler@mozilla@@$$V@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@AEAVProfileChunkedBuffer@1@AEBV?$ProfilerStringView@D@1@AEBVMarkerCategory@1@$$QEAVMarkerOptions@1@UNoPayload@markers@01@@Z
0x82efe0e2,0x82efe0e2,??$AddMarkerToBuffer@UTextMarker@markers@baseprofiler@mozilla@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@AAVProfileChunkedBuffer@1@ABV?$ProfilerStringView@D@1@ABVMarkerCategory@1@$$Q
0xcb4eb44f,0xcb4eb44f,??$AddMarkerToBuffer@UTextMarker@markers@baseprofiler@mozilla@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@baseprofiler@mozilla@@YA?AVProfileBufferBlockIndex@1@AEAVProfileChunkedBuffer@1@AEBV?$ProfilerStringView@D@1@AEBVMarkerCategory@1@$$QEAVMarkerOptions@1@UTextMarker@markers@01@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
0x5b941a4e,0x5b941a4e,??0AutoSuppressStackWalking@@QEAA@XZ
0x4cc50db9,0x4cc50db9,??0AwakeTimeDuration@mozilla@@QAE@XZ
0xc079e1fb,0xc079e1fb,??0ConditionVariableImpl@detail@mozilla@@QAE@XZ
0x26acdffd,0x26acdffd,??0ConditionVariableImpl@detail@mozilla@@QEAA@XZ
0x95d686ba,0x95d686ba,??0Decimal@blink@@QAE@ABV01@@Z
0xc189d0c,0x0c189d0c,??0Decimal@blink@@QAE@ABVEncodedData@01@@Z
0x2686d6b6,0x2686d6b6,??0Decimal@blink@@QAE@H@Z
0x1e8e3517,0x1e8e3517,??0Decimal@blink@@QAE@W4Sign@01@H_K@Z
0x51b0d60e,0x51b0d60e,??0Decimal@blink@@QEAA@AEBV01@@Z
0x3a9c04c0,0x3a9c04c0,??0Decimal@blink@@QEAA@AEBVEncodedData@01@@Z
0xa5f8c981,0xa5f8c981,??0Decimal@blink@@QEAA@H@Z
0xf4695330,0xf4695330,??0Decimal@blink@@QEAA@W4Sign@01@H_K@Z
0x1d25d3e3,0x1d25d3e3,??0LZ4FrameCompressionContext@Compression@mozilla@@QAE@HI_N0@Z
0xfab73089,0xfab73089,??0LZ4FrameCompressionContext@Compression@mozilla@@QEAA@H_K_N1@Z
0xf37ed682,0xf37ed682,??0LZ4FrameDecompressionContext@Compression@mozilla@@QAE@_N@Z
0x603f3d0b,0x603f3d0b,??0LZ4FrameDecompressionContext@Compression@mozilla@@QEAA@_N@Z
0x7611b891,0x7611b891,??0MutexImpl@detail@mozilla@@QAE@XZ
0x8b7d3fe2,0x8b7d3fe2,??0MutexImpl@detail@mozilla@@QEAA@XZ
0xcc9e485e,0xcc9e485e,??0PrintfTarget@mozilla@@IAE@XZ
0x801c6f33,0x801c6f33,??0PrintfTarget@mozilla@@IEAA@XZ
0x7630f980,0x7630f980,??0RLBoxSoundTouch@mozilla@@QEAA@XZ
0xa8cf01da,0xa8cf01da,??0RWLockImpl@detail@mozilla@@QAE@XZ
0x743fa192,0x743fa192,??0SHA1Sum@mozilla@@QAE@XZ
0x12764041,0x12764041,??0SHA1Sum@mozilla@@QEAA@XZ
0x357cb710,0x357cb710,??0SoundTouch@soundtouch@@QAE@ABV01@@Z
0xac9a24b4,0xac9a24b4,??0SoundTouch@soundtouch@@QAE@XZ
0x8145101a,0x8145101a,??0TimeStampValue@mozilla@@AAE@_K0_N@Z
0xb54775ce,0xb54775ce,??0TimeStampValue@mozilla@@AEAA@_K0_N1@Z
0xf3fe3721,0xf3fe3721,??0UniqueJSONStrings@baseprofiler@mozilla@@QAE@ABV012@VProgressLogger@2@W4CollectionStyle@JSONWriter@2@@Z
0xa30ae8da,0xa30ae8da,??0UniqueJSONStrings@baseprofiler@mozilla@@QAE@W4CollectionStyle@JSONWriter@2@@Z
0x94e44462,0x94e44462,??0UniqueJSONStrings@baseprofiler@mozilla@@QEAA@AEBV012@W4CollectionStyle@JSONWriter@2@@Z
0x97fc8265,0x97fc8265,??0UniqueJSONStrings@baseprofiler@mozilla@@QEAA@W4CollectionStyle@JSONWriter@2@@Z
0x3c455afa,0x3c455afa,??0__non_rtti_object@@QAE@ABV0@@Z
0x19672ce8,0x19672ce8,??0__non_rtti_object@@QAE@PBD@Z
0x55fd21b,0x055fd21b,??0bad_cast@@AAE@PBQBD@Z
0x6a0081aa,0x6a0081aa,??0bad_cast@@QAE@ABQBD@Z
0x866074af,0x866074af,??0bad_cast@@QAE@ABV0@@Z
0xef38fbf,0x0ef38fbf,??0bad_cast@@QAE@PBD@Z
0xa04af0aa,0xa04af0aa,??0bad_typeid@@QAE@ABV0@@Z
0x32bf7ad,0x032bf7ad,??0bad_typeid@@QAE@PBD@Z
0xb9595c28,0xb9595c28,??0exception@@QAE@ABQBD@Z
0x5539a92d,0x5539a92d,??0exception@@QAE@ABV0@@Z
0xdc4dcb29,0xdc4dcb29,??0exception@@QAE@XZ
0x7f164b78,0x7f164b78,??1AutoSuppressStackWalking@@QEAA@XZ
0x63efc9b7,0x63efc9b7,??1ConditionVariableImpl@detail@mozilla@@QAE@XZ
0x5965446e,0x5965446e,??1ConditionVariableImpl@detail@mozilla@@QEAA@XZ
0xd8e44df8,0xd8e44df8,??1LZ4FrameCompressionContext@Compression@mozilla@@QAE@XZ
0xbfbd13eb,0xbfbd13eb,??1LZ4FrameCompressionContext@Compression@mozilla@@QEAA@XZ
0xcd340a28,0xcd340a28,??1LZ4FrameDecompressionContext@Compression@mozilla@@QAE@XZ
0x397b1178,0x397b1178,??1LZ4FrameDecompressionContext@Compression@mozilla@@QEAA@XZ
0x40e32862,0x40e32862,??1MutexImpl@detail@mozilla@@QAE@XZ
0xafff6ed4,0xafff6ed4,??1MutexImpl@detail@mozilla@@QEAA@XZ
0x726dd471,0x726dd471,??1ProfilingStack@baseprofiler@mozilla@@QAE@XZ
0x2b73a1f6,0x2b73a1f6,??1ProfilingStack@baseprofiler@mozilla@@QEAA@XZ
0x40c26973,0x40c26973,??1RLBoxSoundTouch@mozilla@@QEAA@XZ
0x8c4d50ec,0x8c4d50ec,??1RWLockImpl@detail@mozilla@@QAE@XZ
0xb6b85aa,0x0b6b85aa,??1SoundTouch@soundtouch@@UAE@XZ
0x85a643a1,0x85a643a1,??1UniqueJSONStrings@baseprofiler@mozilla@@QAE@XZ
0xad57b8b5,0xad57b8b5,??1UniqueJSONStrings@baseprofiler@mozilla@@QEAA@XZ
0xdc380bfb,0xdc380bfb,??1__non_rtti_object@@UAE@XZ
0xaee829d6,0xaee829d6,??1bad_cast@@UAE@XZ
0xcae87871,0xcae87871,??1bad_typeid@@UAE@XZ
0xa88e3fde,0xa88e3fde,??1exception@@UAE@XZ
0x7e2519f,0x07e2519f,??1type_info@@UAE@XZ
0x8ce4b0ef,0x8ce4b0ef,??2@YAPAXI@Z
0xe7d25a9,0x0e7d25a9,??2@YAPAXIABUnothrow_t@std@@@Z
0xe20036dc,0xe20036dc,??3@YAXPAX@Z
0x94661161,0x94661161,??3@YAXPAXABUnothrow_t@std@@@Z
0xff604a70,0xff604a70,??3@YAXPAXI@Z
0xa0b4add4,0xa0b4add4,??4Decimal@blink@@QAEAAV01@ABV01@@Z
0xe8904c0c,0xe8904c0c,??4Decimal@blink@@QEAAAEAV01@AEBV01@@Z
0x652adcb2,0x652adcb2,??4SoundTouch@soundtouch@@QAEAAV01@ABV01@@Z
0x9009296,0x09009296,??4__non_rtti_object@@QAEAAV0@ABV0@@Z
0xa64949e5,0xa64949e5,??4bad_cast@@QAEAAV0@ABV0@@Z
0xe68e21f4,0xe68e21f4,??4bad_typeid@@QAEAAV0@ABV0@@Z
0x5b3e09de,0x5b3e09de,??4exception@@QAEAAV0@ABV0@@Z
0xeb70a57,0x0eb70a57,??8AwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0x7ad20417,0x7ad20417,??8AwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0x96f89f22,0x96f89f22,??8Decimal@blink@@QBE_NABV01@@Z
0x55389231,0x55389231,??8Decimal@blink@@QEBA_NAEBV01@@Z
0x421c4b40,0x421c4b40,??8type_info@@QBEHABV0@@Z
0xe6a09af6,0xe6a09af6,??9AwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0xf75af9f5,0xf75af9f5,??9AwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0xf5ff4606,0xf5ff4606,??9Decimal@blink@@QBE_NABV01@@Z
0x5bdf7ae0,0x5bdf7ae0,??9Decimal@blink@@QEBA_NAEBV01@@Z
0xd96fa194,0xd96fa194,??9type_info@@QBEHABV0@@Z
0x6de986c3,0x6de986c3,??DDecimal@blink@@QBE?AV01@ABV01@@Z
0xdb734051,0xdb734051,??DDecimal@blink@@QEBA?AV01@AEBV01@@Z
0xe2d78d90,0xe2d78d90,??GAwakeTimeDuration@mozilla@@QBE?AV01@ABV01@@Z
0x9087ca00,0x9087ca00,??GAwakeTimeStamp@mozilla@@QBE?AVAwakeTimeDuration@1@ABV01@@Z
0x36fe37d6,0x36fe37d6,??GDecimal@blink@@QBE?AV01@ABV01@@Z
0xa50bdb42,0xa50bdb42,??GDecimal@blink@@QBE?AV01@XZ
0x50a07e48,0x50a07e48,??GDecimal@blink@@QEBA?AV01@AEBV01@@Z
0x46ab5af0,0x46ab5af0,??GDecimal@blink@@QEBA?AV01@XZ
0xaacc3e38,0xaacc3e38,??GTimeStampValue@mozilla@@QBE_KABV01@@Z
0xd3baa0a6,0xd3baa0a6,??GTimeStampValue@mozilla@@QEBA_KAEBV01@@Z
0x22310951,0x22310951,??HAwakeTimeDuration@mozilla@@QBE?AV01@ABV01@@Z
0x90bf09e5,0x90bf09e5,??HAwakeTimeStamp@mozilla@@QBE?AV01@ABVAwakeTimeDuration@1@@Z
0xdac644d6,0xdac644d6,??HDecimal@blink@@QBE?AV01@ABV01@@Z
0x99acb2f6,0x99acb2f6,??HDecimal@blink@@QEBA?AV01@AEBV01@@Z
0x81d1f5c3,0x81d1f5c3,??KDecimal@blink@@QBE?AV01@ABV01@@Z
0x127f8cef,0x127f8cef,??KDecimal@blink@@QEBA?AV01@AEBV01@@Z
0x1a580ac9,0x1a580ac9,??MAwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0xa20030a4,0xa20030a4,??MAwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0x52e89705,0x52e89705,??MDecimal@blink@@QBE_NABV01@@Z
0x81266c76,0x81266c76,??MDecimal@blink@@QEBA_NAEBV01@@Z
0xf911bd6b,0xf911bd6b,??NAwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0xefe830c3,0xefe830c3,??NAwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0xf7e0fc69,0xf7e0fc69,??NDecimal@blink@@QBE_NABV01@@Z
0x920e5505,0x920e5505,??NDecimal@blink@@QEBA_NAEBV01@@Z
0x11062dca,0x11062dca,??OAwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0x6260cd21,0x6260cd21,??OAwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0x94e7254d,0x94e7254d,??ODecimal@blink@@QBE_NABV01@@Z
0x9ce9bdd4,0x9ce9bdd4,??ODecimal@blink@@QEBA_NAEBV01@@Z
0x937a707a,0x937a707a,??PAwakeTimeDuration@mozilla@@QBE_NABV01@@Z
0x76eb39f6,0x76eb39f6,??PAwakeTimeStamp@mozilla@@QBE_NABV01@@Z
0x4e956457,0x4e956457,??PDecimal@blink@@QBE_NABV01@@Z
0x2d1fec7b,0x2d1fec7b,??PDecimal@blink@@QEBA_NAEBV01@@Z
0xaf2618e1,0xaf2618e1,??RFileHandleDeleter@detail@mozilla@@QAEXUFileHandleHelper@12@@Z
0x480c501,0x0480c501,??RFileHandleDeleter@detail@mozilla@@QEAAXUFileHandleHelper@12@@Z
0xd9c7989d,0xd9c7989d,??RProfilerBacktraceDestructor@baseprofiler@mozilla@@QAEXPAVProfilerBacktrace@12@@Z
0xe363630c,0xe363630c,??RProfilerBacktraceDestructor@baseprofiler@mozilla@@QEAAXPEAVProfilerBacktrace@12@@Z
0xc6556d8b,0xc6556d8b,??XDecimal@blink@@QAEAAV01@ABV01@@Z
0x93872047,0x93872047,??XDecimal@blink@@QEAAAEAV01@AEBV01@@Z
0x5a1f54e7,0x5a1f54e7,??YAwakeTimeDuration@mozilla@@QAEXABV01@@Z
0x7b35f286,0x7b35f286,??YAwakeTimeStamp@mozilla@@QAEXABVAwakeTimeDuration@1@@Z
0xf0a7fd78,0xf0a7fd78,??YDecimal@blink@@QAEAAV01@ABV01@@Z
0x6f7f4d2,0x06f7f4d2,??YDecimal@blink@@QEAAAEAV01@AEBV01@@Z
0x60dd8459,0x60dd8459,??YTimeStampValue@mozilla@@QAEAAV01@_J@Z
0x929a289b,0x929a289b,??YTimeStampValue@mozilla@@QEAAAEAV01@_J@Z
0x70a3e46f,0x70a3e46f,??ZAwakeTimeDuration@mozilla@@QAEXABV01@@Z
0x79db085c,0x79db085c,??ZAwakeTimeStamp@mozilla@@QAEXABVAwakeTimeDuration@1@@Z
0xabb04c6d,0xabb04c6d,??ZDecimal@blink@@QAEAAV01@ABV01@@Z
0x62178f2c,0x62178f2c,??ZDecimal@blink@@QEAAAEAV01@AEBV01@@Z
0x2d35843e,0x2d35843e,??ZTimeStampValue@mozilla@@QAEAAV01@_J@Z
0xb8269813,0xb8269813,??ZTimeStampValue@mozilla@@QEAAAEAV01@_J@Z
0x11266cd2,0x11266cd2,??_0Decimal@blink@@QAEAAV01@ABV01@@Z
0x20fd2468,0x20fd2468,??_0Decimal@blink@@QEAAAEAV01@AEBV01@@Z
0xc8d332b3,0xc8d332b3,??_7SoundTouch@soundtouch@@6B@
0xadef4135,0xadef4135,??_7__non_rtti_object@@6B@
0xdea7bc26,0xdea7bc26,??_7bad_cast@@6B@
0xb122b81d,0xb122b81d,??_7bad_typeid@@6B@
0x8396f3f1,0x8396f3f1,??_7exception@@6B@
0xa031f10b,0xa031f10b,??_FDecimal@blink@@QAEXXZ
0x84960197,0x84960197,??_FDecimal@blink@@QEAAXXZ
0x9f71163b,0x9f71163b,??_FLZ4FrameDecompressionContext@Compression@mozilla@@QAEXXZ
0xa27071dc,0xa27071dc,??_FLZ4FrameDecompressionContext@Compression@mozilla@@QEAAXXZ
0x97b47c28,0x97b47c28,??_FUniqueJSONStrings@baseprofiler@mozilla@@QAEXXZ
0x26c6f568,0x26c6f568,??_FUniqueJSONStrings@baseprofiler@mozilla@@QEAAXXZ
0xc1374e97,0xc1374e97,??_Fbad_cast@@QAEXXZ
0x54ae9692,0x54ae9692,??_Fbad_typeid@@QAEXXZ
0xf4fe82f9,0xf4fe82f9,??_U@YAPAXI@Z
0x182d6ced,0x182d6ced,??_U@YAPAXIABUnothrow_t@std@@@Z
0x9eefd4f7,0x9eefd4f7,??_V@YAXPAX@Z
0x815da21f,0x815da21f,??_V@YAXPAXABUnothrow_t@std@@@Z
0x53a05cd2,0x53a05cd2,??_V@YAXPAXI@Z
0xf19d18a4,0xf19d18a4,?AddRef@PageInformation@baseprofiler@mozilla@@QBEXXZ
0x39a1b79,0x039a1b79,?AddRef@PageInformation@baseprofiler@mozilla@@QEBAXXZ
0xa3bed1a6,0xa3bed1a6,?AddRef@ThreadInfo@baseprofiler@mozilla@@QBEXXZ
0xedc6599c,0xedc6599c,?AddRef@ThreadInfo@baseprofiler@mozilla@@QEBAXXZ
0x93bfd41a,0x93bfd41a,?BeginCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QAE?AV?$Result@V?$Span@$$CBD$0PPPPPPPP@@mozilla@@I@3@V?$Span@D$0PPPPPPPP@@3@@Z
0xb65e9615,0xb65e9615,?BeginCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QEAA?AV?$Result@V?$Span@$$CBD$0?0@mozilla@@_K@3@V?$Span@D$0?0@3@@Z
0x6ba6743a,0x6ba6743a,?BeginProcessRuntimeInit@detail@mscom@mozilla@@YAAAW4ProcessInitState@123@XZ
0x86400777,0x86400777,?BeginProcessRuntimeInit@detail@mscom@mozilla@@YAAEA_NXZ
0x2a790cf3,0x2a790cf3,?CacheNtDllThunk@mozilla@@YAXXZ
0xdb8aec0e,0xdb8aec0e,?CheckQPC@TimeStampValue@mozilla@@ABE_KABV12@@Z
0x3d4d0c29,0x3d4d0c29,?CheckQPC@TimeStampValue@mozilla@@AEBA_KAEBV12@@Z
0xd573669b,0xd573669b,?CleanupProcessRuntime@mozilla@@YAXXZ
0xe4000f59,0xe4000f59,?ComputeProcessUptime@TimeStamp@mozilla@@CA_KXZ
0xee4104bd,0xee4104bd,?ConsumePreXULSkeletonUIHandle@mozilla@@YAPAUHWND__@@XZ
0x6ab5d995,0x6ab5d995,?ConsumePreXULSkeletonUIHandle@mozilla@@YAPEAUHWND__@@XZ
0x8759676,0x08759676,?ContinueCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QAE?AV?$Result@V?$Span@$$CBD$0PPPPPPPP@@mozilla@@I@3@V?$Span@$$CBD$0PPPPPPPP@@3@@Z
0x234484d5,0x234484d5,?ContinueCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QEAA?AV?$Result@V?$Span@$$CBD$0?0@mozilla@@_K@3@V?$Span@$$CBD$0?0@3@@Z
0x948719e2,0x948719e2,?CreateAndStorePreXULSkeletonUI@mozilla@@YAXPAUHINSTANCE__@@HPAPAD@Z
0xb1d3fa92,0xb1d3fa92,?CreateAndStorePreXULSkeletonUI@mozilla@@YAXPEAUHINSTANCE__@@HPEAPEAD@Z
0xd17b90fb,0xd17b90fb,?CreateDecimalRepresentation@DoubleToStringConverter@double_conversion@@ABEXPBDHHHPAVStringBuilder@2@@Z
0x518ee5eb,0x518ee5eb,?CreateDecimalRepresentation@DoubleToStringConverter@double_conversion@@AEBAXPEBDHHHPEAVStringBuilder@2@@Z
0xf6616a5f,0xf6616a5f,?CreateExponentialRepresentation@DoubleToStringConverter@double_conversion@@ABEXPBDHHPAVStringBuilder@2@@Z
0x816aa73c,0x816aa73c,?CreateExponentialRepresentation@DoubleToStringConverter@double_conversion@@AEBAXPEBDHHPEAVStringBuilder@2@@Z
0x1c08c4ba,0x1c08c4ba,?Decompress@LZ4FrameDecompressionContext@Compression@mozilla@@QAE?AV?$Result@ULZ4FrameDecompressionResult@Compression@mozilla@@I@3@V?$Span@D$0PPPPPPPP@@3@V?$Span@$$CBD$0PPPPPPPP@@3@@Z
0xd52c24ce,0xd52c24ce,?Decompress@LZ4FrameDecompressionContext@Compression@mozilla@@QEAA?AV?$Result@ULZ4FrameDecompressionResult@Compression@mozilla@@_K@3@V?$Span@D$0?0@3@V?$Span@$$CBD$0?0@3@@Z
0x40f5d7c6,0x40f5d7c6,?DeserializerForTag@Streaming@base_profiler_markers_detail@mozilla@@SAP6AXAAVProfileBufferEntryReader@3@AAVSpliceableJSONWriter@baseprofiler@3@@ZE@Z
0x9aa564d4,0x9aa564d4,?DeserializerForTag@Streaming@base_profiler_markers_detail@mozilla@@SAP6AXAEAVProfileBufferEntryReader@3@AEAVSpliceableJSONWriter@baseprofiler@3@@ZE@Z
0xd83560ff,0xd83560ff,?DllBlocklist_CheckStatus@@YA_NXZ
0x5d638cd8,0x5d638cd8,?DllBlocklist_Initialize@@YAXI@Z
0x108f7fce,0x108f7fce,?DllBlocklist_SetBasicDllServices@@YAXPAVDllServicesBase@detail@glue@mozilla@@@Z
0xfd0f580d,0xfd0f580d,?DllBlocklist_SetBasicDllServices@@YAXPEAVDllServicesBase@detail@glue@mozilla@@@Z
0xff0c5ed7,0xff0c5ed7,?DllBlocklist_SetFullDllServices@@YAXPAVDllServicesBase@detail@glue@mozilla@@@Z
0x998b73ec,0x998b73ec,?DllBlocklist_SetFullDllServices@@YAXPEAVDllServicesBase@detail@glue@mozilla@@@Z
0xd09838fb,0xd09838fb,?DllBlocklist_WriteNotes@@YAXAAVAnnotationWriter@CrashReporter@@@Z
0x8a2a99,0x008a2a99,?DllBlocklist_WriteNotes@@YAXAEAVAnnotationWriter@CrashReporter@@@Z
0x8b36ddc1,0x8b36ddc1,?DoubleToAscii@DoubleToStringConverter@double_conversion@@SAXNW4DtoaMode@12@HPADHPA_NPAH3@Z
0x718f87e6,0x718f87e6,?DoubleToAscii@DoubleToStringConverter@double_conversion@@SAXNW4DtoaMode@12@HPEADHPEA_NPEAH3@Z
0xe9ff94ff,0xe9ff94ff,?EcmaScriptConverter@DoubleToStringConverter@double_conversion@@SAABV12@XZ
0x5ae828cb,0x5ae828cb,?EcmaScriptConverter@DoubleToStringConverter@double_conversion@@SAAEBV12@XZ
0x22948cbd,0x22948cbd,?EndCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QAE?AV?$Result@V?$Span@$$CBD$0PPPPPPPP@@mozilla@@I@3@XZ
0x62091d0f,0x62091d0f,?EndCompressing@LZ4FrameCompressionContext@Compression@mozilla@@QEAA?AV?$Result@V?$Span@$$CBD$0?0@mozilla@@_K@3@XZ
0x117e78a5,0x117e78a5,?EndProcessRuntimeInit@detail@mscom@mozilla@@YAXXZ
0x4abdf8d2,0x4abdf8d2,?EnsureBufferForMainThreadAddMarker@base_profiler_markers_detail@mozilla@@YAXXZ
0xdfdfa92c,0xdfdfa92c,?ExtractBaseProfilerChunkManager@detail@baseprofiler@mozilla@@YA?AV?$UniquePtr@VProfileBufferChunkManagerWithLocalLimit@mozilla@@V?$DefaultDelete@VProfileBufferChunkManagerWithLocalLimit@mozilla@@@2@@3@XZ
0x195b8e6f,0x195b8e6f,?FilterHasPid@detail@profiler@mozilla@@YA_NPBDVBaseProfilerProcessId@baseprofiler@3@@Z
0x23e7d39a,0x23e7d39a,?FiltersExcludePid@detail@profiler@mozilla@@YA_NV?$Span@QBD$0PPPPPPPP@@3@VBaseProfilerProcessId@baseprofiler@3@@Z
0x72e55e63,0x72e55e63,?FirstTimeStamp@TimeStamp@mozilla@@SA?AV12@XZ
0xd1e41d99,0xd1e41d99,?FormatToStringSpan@MarkerSchema@mozilla@@CA?AV?$Span@$$CBD$0?0@2@W4Format@12@@Z
0x2ee9e41f,0x2ee9e41f,?FormatToStringSpan@MarkerSchema@mozilla@@CA?AV?$Span@$$CBD$0PPPPPPPP@@2@W4Format@12@@Z
0xc948304e,0xc948304e,?FramePointerStackWalk@mozilla@@YAXP6AXIPAX00@ZI0PAPAX0@Z
0xd48dd49b,0xd48dd49b,?FramePointerStackWalk@mozilla@@YAXP6AXIPEAX00@ZI0PEAPEAX0@Z
0xf2cd15f5,0xf2cd15f5,?GenerateRandomBytesFromOS@mozilla@@YA_NPAXI@Z
0xb996d5a6,0xb996d5a6,?GetAccessibilityResource@ActCtxResource@mscom@mozilla@@SA?AU123@XZ
0xb81b6fe1,0xb81b6fe1,?GetAccessibilityResourceId@ActCtxResource@mscom@mozilla@@SAGXZ
0x4318bab3,0x4318bab3,?GetCachedNtDllThunk@mozilla@@YAPAV?$Buffer@U_IMAGE_THUNK_DATA32@@@1@XZ
0xff1f6f91,0xff1f6f91,?GetClearedBufferForMainThreadAddMarker@base_profiler_markers_detail@mozilla@@YAPAVProfileChunkedBuffer@2@XZ
0xa4e0d36a,0xa4e0d36a,?GetFuzzyfoxEnabled@TimeStamp@mozilla@@SA_NXZ
0x2c0f9eeb,0x2c0f9eeb,?GetOrAddIndex@UniqueJSONStrings@baseprofiler@mozilla@@AAEIABV?$Span@$$CBD$0PPPPPPPP@@3@@Z
0xf392ac60,0xf392ac60,?GetOrAddIndex@UniqueJSONStrings@baseprofiler@mozilla@@AEAAIAEBV?$Span@$$CBD$0?0@3@@Z
0x3ad57c17,0x3ad57c17,?GetPreXULSkeletonUIEnabled@mozilla@@YA_NXZ
0x3cbe73aa,0x3cbe73aa,?GetPreXULSkeletonUIErrorReason@mozilla@@YA?AV?$Maybe@W4PreXULSkeletonUIError@mozilla@@@1@XZ
0xf135d8d2,0xf135d8d2,?GetPreXULSkeletonUIWasShown@mozilla@@YA_NXZ
0x4030df89,0x4030df89,?GetProfilerEnvVarsForChildProcess@baseprofiler@mozilla@@YAX$$QAV?$function@$$A6AXPBD0@Z@std@@@Z
0xd761db29,0xd761db29,?GetProfilerEnvVarsForChildProcess@baseprofiler@mozilla@@YAX$$QEAV?$function@$$A6AXPEBD0@Z@std@@@Z
0x78951f4f,0x78951f4f,?GetProfilingCategoryPairInfo@baseprofiler@mozilla@@YAABUProfilingCategoryPairInfo@12@W4ProfilingCategoryPair@12@@Z
0x3567bba,0x03567bba,?GetProfilingCategoryPairInfo@baseprofiler@mozilla@@YAAEBUProfilingCategoryPairInfo@12@W4ProfilingCategoryPair@12@@Z
0xe0aeeddc,0xe0aeeddc,?GetProfilingStack@AutoProfilerLabel@baseprofiler@mozilla@@SAPAVProfilingStack@23@XZ
0x61fd2986,0x61fd2986,?GetProfilingStack@AutoProfilerLabel@baseprofiler@mozilla@@SAPEAVProfilingStack@23@XZ
0x21c3dfae,0x21c3dfae,?GetProfilingStartTime@detail@baseprofiler@mozilla@@YA?AVTimeStamp@3@XZ
0x1cc49f6d,0x1cc49f6d,?GetQueryPerformanceFrequencyPerSec@mozilla@@YA_KXZ
0x713b379a,0x713b379a,?GetThreadRegistrationTime@detail@baseprofiler@mozilla@@YA?AVTimeStamp@3@XZ
0xfbbdbfc,0x0fbbdbfc,?HandleSpecialValues@DoubleToStringConverter@double_conversion@@ABE_NNPAVStringBuilder@2@@Z
0xc52c5ef5,0xc52c5ef5,?HandleSpecialValues@DoubleToStringConverter@double_conversion@@AEBA_NNPEAVStringBuilder@2@@Z
0x9544fb9e,0x9544fb9e,?HashBytes@mozilla@@YAIPBXI@Z
0xeb29f353,0xeb29f353,?HashBytes@mozilla@@YAIPEBX_K@Z
0xb0220006,0xb0220006,?Init@RLBoxSoundTouch@mozilla@@QEAA_NXZ
0x7b8007cc,0x7b8007cc,?InitializeUptime@mozilla@@YAXXZ
0xa515510b,0xa515510b,?InitializeWin64ProfilerHooks@baseprofiler@mozilla@@YAXXZ
0x58e9f546,0x58e9f546,?InvalidArrayIndex_CRASH@detail@mozilla@@YAXII@Z
0xfcbd9aab,0xfcbd9aab,?IsActive@RacyFeatures@detail@baseprofiler@mozilla@@SA_NXZ
0xbff5d2ba,0xbff5d2ba,?IsActiveAndSamplingUnpaused@RacyFeatures@detail@baseprofiler@mozilla@@SA_NXZ
0x44b8749,0x044b8749,?IsActiveAndUnpaused@RacyFeatures@detail@baseprofiler@mozilla@@SA_NXZ
0xa83ddad2,0xa83ddad2,?IsActiveWithFeature@RacyFeatures@detail@baseprofiler@mozilla@@SA_NI@Z
0x2c1b021c,0x2c1b021c,?IsDynamicCodeDisabled@mozilla@@YA_NXZ
0xe2d3f54a,0xe2d3f54a,?IsEafPlusEnabled@mozilla@@YA_NXZ
0x6e8d07,0x006e8d07,?IsFloat32Representable@mozilla@@YA_NN@Z
0xc1ca4ade,0xc1ca4ade,?IsThreadBeingProfiled@detail@baseprofiler@mozilla@@YA_NXZ
0x7508ff22,0x7508ff22,?IsValidUtf8@detail@mozilla@@YA_NPBXI@Z
0xa43436b2,0xa43436b2,?IsValidUtf8@detail@mozilla@@YA_NPEBX_K@Z
0x8b0daf3c,0x8b0daf3c,?IsWin32kLockedDown@mozilla@@YA_NXZ
0x46882221,0x46882221,?LocationToStringSpan@MarkerSchema@mozilla@@CA?AV?$Span@$$CBD$0?0@2@W4Location@12@@Z
0x85e4f68,0x085e4f68,?LocationToStringSpan@MarkerSchema@mozilla@@CA?AV?$Span@$$CBD$0PPPPPPPP@@2@W4Location@12@@Z
0x6ae3da5d,0x6ae3da5d,?MapRemoteViewOfFile@mozilla@@YAPAXPAX0_K0KKK@Z
0xd57d47e3,0xd57d47e3,?MapRemoteViewOfFile@mozilla@@YAPEAXPEAX0_K01KK@Z
0x79086fce,0x79086fce,?MarkerTypeFunctionsArray@Streaming@base_profiler_markers_detail@mozilla@@SA?AV?$Span@$$CBUMarkerTypeFunctions@Streaming@base_profiler_markers_detail@mozilla@@$0?0@3@XZ
0x1392b603,0x1392b603,?MarkerTypeFunctionsArray@Streaming@base_profiler_markers_detail@mozilla@@SA?AV?$Span@$$CBUMarkerTypeFunctions@Streaming@base_profiler_markers_detail@mozilla@@$0PPPPPPPP@@3@XZ
0x6982528b,0x6982528b,?MozDescribeCodeAddress@@YA_NPEAXPEAUMozCodeAddressDetails@@@Z
0x68c4b9b7,0x68c4b9b7,?MozFormatCodeAddress@@YAXPEADIIPEBXPEBD2_J2I@Z
0xb27d5d37,0xb27d5d37,?MozFormatCodeAddressDetails@@YAXPEADIIPEAXPEBUMozCodeAddressDetails@@@Z
0x56561d36,0x56561d36,?MozStackWalk@@YAXP6AXIPEAX00@ZII0@Z
0x61719038,0x61719038,?MozStackWalkThread@@YAXP6AXIPAX00@ZI00PAU_CONTEXT@@@Z
0x74784ccd,0x74784ccd,?MozStackWalkThread@@YAXP6AXIPEAX00@ZI00PEAU_CONTEXT@@@Z
0xb57b999e,0xb57b999e,?NotePreXULSkeletonUIRestarting@mozilla@@YA?AV?$Result@UOk@mozilla@@W4PreXULSkeletonUIError@2@@1@XZ
0x7085b703,0x7085b703,?Now@TimeStamp@mozilla@@CA?AV12@_N@Z
0xf0d01fb9,0xf0d01fb9,?NowFuzzy@TimeStamp@mozilla@@CA?AV12@VTimeStampValue@2@@Z
0xe7453bf1,0xe7453bf1,?NowFuzzyTime@TimeStamp@mozilla@@SA_JXZ
0x4dbbcb71,0x4dbbcb71,?NowLoRes@AwakeTimeStamp@mozilla@@SA?AV12@XZ
0xf703abeb,0xf703abeb,?NowUnfuzzed@TimeStamp@mozilla@@CA?AV12@_N@Z
0x290a490,0x0290a490,?PersistPreXULSkeletonUIValues@mozilla@@YA?AV?$Result@UOk@mozilla@@W4PreXULSkeletonUIError@2@@1@ABUSkeletonUISettings@1@@Z
0x74d17b1e,0x74d17b1e,?PersistPreXULSkeletonUIValues@mozilla@@YA?AV?$Result@UOk@mozilla@@W4PreXULSkeletonUIError@2@@1@AEBUSkeletonUISettings@1@@Z
0x512eaf53,0x512eaf53,?PollPreXULSkeletonUIEvents@mozilla@@YAXXZ
0xf18b463d,0xf18b463d,?ProcessCreation@TimeStamp@mozilla@@SA?AV12@PEA_N@Z
0x1a93dba9,0x1a93dba9,?ProcessCreation@TimeStamp@mozilla@@SA?AV12@XZ
0xd772c971,0xd772c971,?ProcessUptimeExcludingSuspendMs@mozilla@@YA?AV?$Maybe@_K@1@XZ
0xebe97a2b,0xebe97a2b,?ProcessUptimeMs@mozilla@@YA?AV?$Maybe@_K@1@XZ
0xb654d7f0,0xb654d7f0,?RandomUint64@mozilla@@YA?AV?$Maybe@_K@1@XZ
0x371cd337,0x371cd337,?RandomUint64OrDie@mozilla@@YA_KXZ
0x621e6d48,0x621e6d48,?RecordProcessRestart@TimeStamp@mozilla@@SAXXZ
0x375b8fc0,0x375b8fc0,?RegisterJitCodeRegion@@YAXPEAE_K@Z
0xa027aa03,0xa027aa03,?RegisterProfilerLabelEnterExit@mozilla@@YAXP6APAXPBD0PAX@ZP6AX1@Z@Z
0x8d0e5fe9,0x8d0e5fe9,?RegisterProfilerLabelEnterExit@mozilla@@YAXP6APEAXPEBD0PEAX@ZP6AX1@Z@Z
0x15ddbbe7,0x15ddbbe7,?Release@PageInformation@baseprofiler@mozilla@@QBEXXZ
0xecab4bf0,0xecab4bf0,?Release@PageInformation@baseprofiler@mozilla@@QEBAXXZ
0x1bed17a2,0x1bed17a2,?Release@ThreadInfo@baseprofiler@mozilla@@QBEXXZ
0xea13ce43,0xea13ce43,?Release@ThreadInfo@baseprofiler@mozilla@@QEBAXXZ
0x2b460493,0x2b460493,?ReleaseBufferForMainThreadAddMarker@base_profiler_markers_detail@mozilla@@YAXXZ
0xb7739a9d,0xb7739a9d,?ResolutionInTicks@BaseTimeDurationPlatformUtils@mozilla@@SA_JXZ
0x1d13d0e5,0x1d13d0e5,?SetAccessibilityResourceId@ActCtxResource@mscom@mozilla@@SAXG@Z
0xb6e10fd7,0xb6e10fd7,?SetActive@RacyFeatures@detail@baseprofiler@mozilla@@SAXI@Z
0x13627aec,0x13627aec,?SetFuzzyfoxEnabled@TimeStamp@mozilla@@SAX_N@Z
0x9319e0db,0x9319e0db,?SetInactive@RacyFeatures@detail@baseprofiler@mozilla@@SAXXZ
0xd9f31cc5,0xd9f31cc5,?SetPaused@RacyFeatures@detail@baseprofiler@mozilla@@SAXXZ
0x220c0479,0x220c0479,?SetPreXULSkeletonUIEnabledIfAllowed@mozilla@@YA?AV?$Result@UOk@mozilla@@W4PreXULSkeletonUIError@2@@1@_N@Z
0xf0f3d0e4,0xf0f3d0e4,?SetPreXULSkeletonUIThemeId@mozilla@@YA?AV?$Result@UOk@mozilla@@W4PreXULSkeletonUIError@2@@1@W4ThemeMode@1@@Z
0xf36bd345,0xf36bd345,?SetSamplingPaused@RacyFeatures@detail@baseprofiler@mozilla@@SAXXZ
0xfff31bf8,0xfff31bf8,?SetSamplingUnpaused@RacyFeatures@detail@baseprofiler@mozilla@@SAXXZ
0xcfab760a,0xcfab760a,?SetUnpaused@RacyFeatures@detail@baseprofiler@mozilla@@SAXXZ
0x48b67cd,0x048b67cd,?SetWin32kLockedDownInPolicy@mozilla@@YAXXZ
0xde115cd1,0xde115cd1,?Shutdown@TimeStamp@mozilla@@SAXXZ
0xd0e5832d,0xd0e5832d,?SpliceStringTableElements@UniqueJSONStrings@baseprofiler@mozilla@@QAEXAAVSpliceableJSONWriter@23@@Z
0x653c3cf5,0x653c3cf5,?SpliceStringTableElements@UniqueJSONStrings@baseprofiler@mozilla@@QEAAXAEAVSpliceableJSONWriter@23@@Z
0x774bcf32,0x774bcf32,?Startup@TimeStamp@mozilla@@SAXXZ
0x80c9a396,0x80c9a396,?Stream@MarkerSchema@mozilla@@QEHAAXAEAVJSONWriter@2@AEBV?$Span@$$CBD$0?0@2@@Z
0x83e55aa8,0x83e55aa8,?Stream@MarkerSchema@mozilla@@QHAEXAAVJSONWriter@2@ABV?$Span@$$CBD$0PPPPPPPP@@2@@Z
0x977e7dc7,0x977e7dc7,?StringToDouble@StringToDoubleConverter@double_conversion@@QBENPBDHPAH@Z
0xa696675a,0xa696675a,?StringToDouble@StringToDoubleConverter@double_conversion@@QBENPBGHPAH@Z
0xb0a39b9,0x0b0a39b9,?TagForMarkerTypeFunctions@Streaming@base_profiler_markers_detail@mozilla@@SAEP6AXAAVProfileBufferEntryReader@3@AAVSpliceableJSONWriter@baseprofiler@3@@ZP6A?AV?$Span@$$CBD$0PPPPPPPP@@3@XZP6A?AVMarkerSchema@3@XZ@Z
0xd075cef,0x0d075cef,?TagForMarkerTypeFunctions@Streaming@base_profiler_markers_detail@mozilla@@SAEP6AXAEAVProfileBufferEntryReader@3@AEAVSpliceableJSONWriter@baseprofiler@3@@ZP6A?AV?$Span@$$CBD$0?0@3@XZP6A?AVMarkerSchema@3@XZ@Z
0x236312c7,0x236312c7,?TicksFromMilliseconds@BaseTimeDurationPlatformUtils@mozilla@@SA_JN@Z
0x5e66bc38,0x5e66bc38,?ToExponential@DoubleToStringConverter@double_conversion@@QBE_NNHPAVStringBuilder@2@@Z
0x98365f1c,0x98365f1c,?ToExponential@DoubleToStringConverter@double_conversion@@QEBA_NNHPEAVStringBuilder@2@@Z
0xc39ff65,0x0c39ff65,?ToFixed@DoubleToStringConverter@double_conversion@@QBE_NNHPAVStringBuilder@2@@Z
0x78f63e70,0x78f63e70,?ToFixed@DoubleToStringConverter@double_conversion@@QEBA_NNHPEAVStringBuilder@2@@Z
0xbd2ae9a3,0xbd2ae9a3,?ToMicroseconds@AwakeTimeDuration@mozilla@@QBENXZ
0x27b9644c,0x27b9644c,?ToMilliseconds@AwakeTimeDuration@mozilla@@QBENXZ
0xd4a816e6,0xd4a816e6,?ToPrecision@DoubleToStringConverter@double_conversion@@QBE_NNHPAVStringBuilder@2@@Z
0xb18e77b5,0xb18e77b5,?ToPrecision@DoubleToStringConverter@double_conversion@@QEBA_NNHPEAVStringBuilder@2@@Z
0xb0f3dfa6,0xb0f3dfa6,?ToSeconds@AwakeTimeDuration@mozilla@@QBENXZ
0xbf009c11,0xbf009c11,?ToSeconds@BaseTimeDurationPlatformUtils@mozilla@@SAN_J@Z
0x8383be30,0x8383be30,?ToSecondsSigDigits@BaseTimeDurationPlatformUtils@mozilla@@SAN_J@Z
0x2b4dc601,0x2b4dc601,?ToShortestIeeeNumber@DoubleToStringConverter@double_conversion@@ABE_NNPAVStringBuilder@2@W4DtoaMode@12@@Z
0xcb06ca25,0xcb06ca25,?ToShortestIeeeNumber@DoubleToStringConverter@double_conversion@@AEBA_NNPEAVStringBuilder@2@W4DtoaMode@12@@Z
0xf02ae4eb,0xf02ae4eb,?UnmapRemoteViewOfFile@mozilla@@YA_NPAX0@Z
0x8c6317a5,0x8c6317a5,?UnmapRemoteViewOfFile@mozilla@@YA_NPEAX0@Z
0x562b6b4e,0x562b6b4e,?UnregisterJitCodeRegion@@YAXPEAE_K@Z
0x5053c91e,0x5053c91e,?Unused@mozilla@@3Uunused_t@1@B
0x5dcb59be,0x5dcb59be,?UpdateFuzzyTime@TimeStamp@mozilla@@CAX_J@Z
0xa74f3c74,0xa74f3c74,?UpdateFuzzyTimeStamp@TimeStamp@mozilla@@CAXV12@@Z
0xea96adf7,0xea96adf7,?WasPreXULSkeletonUIMaximized@mozilla@@YA_NXZ
0x5f58749e,0x5f58749e,?WerNotifyProc@CrashReporter@@YAKPEAX@Z
0x55393cb,0x055393cb,?WindowsDpiInitialization@mozilla@@YA?AW4WindowsDpiInitializationResult@1@XZ
0xed766d2c,0xed766d2c,?_query_new_handler@@YAP6AHI@ZXZ
0x10ca1e50,0x10ca1e50,?_query_new_mode@@YAHXZ
0x663947e7,0x663947e7,?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
0xb2ee1f38,0xb2ee1f38,?_set_new_mode@@YAHH@Z
0xd784547c,0xd784547c,?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z
0xf9779274,0xf9779274,?abs@Decimal@blink@@QBE?AV12@XZ
0x2a649c0b,0x2a649c0b,?abs@Decimal@blink@@QEBA?AV12@XZ
0x233a8d73,0x233a8d73,?aes_enabled@sse_private@mozilla@@3_NA
0x18fea1d8,0x18fea1d8,?alignOperands@Decimal@blink@@CA?AUAlignedOperands@12@ABV12@0@Z
0xe81f1db3,0xe81f1db3,?alignOperands@Decimal@blink@@CA?AUAlignedOperands@12@AEBV12@0@Z
0x74f78f6a,0x74f78f6a,?appendIntDec@PrintfTarget@mozilla@@QAE_NH@Z
0x7535e55d,0x7535e55d,?appendIntDec@PrintfTarget@mozilla@@QAE_NI@Z
0xb24ed531,0xb24ed531,?appendIntDec@PrintfTarget@mozilla@@QAE_N_J@Z
0xb38cbf06,0xb38cbf06,?appendIntDec@PrintfTarget@mozilla@@QAE_N_K@Z
0x2b694399,0x2b694399,?appendIntDec@PrintfTarget@mozilla@@QEAA_NH@Z
0x2aab29ae,0x2aab29ae,?appendIntDec@PrintfTarget@mozilla@@QEAA_NI@Z
0x96a5e85b,0x96a5e85b,?appendIntDec@PrintfTarget@mozilla@@QEAA_N_J@Z
0x9767826c,0x9767826c,?appendIntDec@PrintfTarget@mozilla@@QEAA_N_K@Z
0x2f0d7c76,0x2f0d7c76,?appendIntHex@PrintfTarget@mozilla@@QAE_NI@Z
0x1f6a7edf,0x1f6a7edf,?appendIntHex@PrintfTarget@mozilla@@QAE_N_K@Z
0x864de877,0x864de877,?appendIntHex@PrintfTarget@mozilla@@QEAA_NI@Z
0x68c40edd,0x68c40edd,?appendIntHex@PrintfTarget@mozilla@@QEAA_N_K@Z
0xf43387a0,0xf43387a0,?appendIntOct@PrintfTarget@mozilla@@QAE_NI@Z
0x700137c5,0x700137c5,?appendIntOct@PrintfTarget@mozilla@@QAE_N_K@Z
0xe926a16d,0xe926a16d,?appendIntOct@PrintfTarget@mozilla@@QEAA_NI@Z
0x95c99cee,0x95c99cee,?appendIntOct@PrintfTarget@mozilla@@QEAA_N_K@Z
0x276dd4ba,0x276dd4ba,?avx2_enabled@sse_private@mozilla@@3_NA
0xe70d0bcd,0xe70d0bcd,?avx_enabled@sse_private@mozilla@@3_NA
0xa2164cfe,0xa2164cfe,?baseprofiler_save_profile_to_file@baseprofiler@mozilla@@YAXPBD@Z
0xcc74c44d,0xcc74c44d,?before@type_info@@QBEHABV1@@Z
0xf9799fd2,0xf9799fd2,?calcEffectiveRateAndTempo@SoundTouch@soundtouch@@AAEXXZ
0xb0764608,0xb0764608,?ceil@Decimal@blink@@QBE?AV12@XZ
0x739ea0c8,0x739ea0c8,?ceil@Decimal@blink@@QEBA?AV12@XZ
0xa8d099f7,0xa8d099f7,?clear@SoundTouch@soundtouch@@UAEXXZ
0x3c33ff54,0x3c33ff54,?compareTo@Decimal@blink@@ABE?AV12@ABV12@@Z
0x6bd31a91,0x6bd31a91,?compareTo@Decimal@blink@@AEBA?AV12@AEBV12@@Z
0xf839a99e,0xf839a99e,?compress@LZ4@Compression@mozilla@@SAIPBDIPAD@Z
0x33039847,0x33039847,?compress@LZ4@Compression@mozilla@@SA_KPEBD_KPEAD@Z
0x115c71ff,0x115c71ff,?compressLimitedOutput@LZ4@Compression@mozilla@@SAIPBDIPADI@Z
0xf01b899,0x0f01b899,?compressLimitedOutput@LZ4@Compression@mozilla@@SA_KPEBD_KPEAD1@Z
0x35e53ccc,0x35e53ccc,?createSoundTouchObj@soundtouch@@YAPAVSoundTouch@1@XZ
0xd6754cce,0xd6754cce,?decompress@LZ4@Compression@mozilla@@SA_NPBDIPADIPAI@Z
0x82f7e7f6,0x82f7e7f6,?decompress@LZ4@Compression@mozilla@@SA_NPEBD_KPEAD1PEA_K@Z
0xe1fdd0c4,0xe1fdd0c4,?decompressPartial@LZ4@Compression@mozilla@@SA_NPBDIPADIPAI@Z
0x40f04b47,0x40f04b47,?decompressPartial@LZ4@Compression@mozilla@@SA_NPEBD_KPEAD1PEA_K@Z
0x1dd5cd1a,0x1dd5cd1a,?destroySoundTouchObj@soundtouch@@YAXPAVSoundTouch@1@@Z
0x5b80f50a,0x5b80f50a,?ensureCapacitySlow@ProfilingStack@baseprofiler@mozilla@@AAEXXZ
0xf36a8005,0xf36a8005,?ensureCapacitySlow@ProfilingStack@baseprofiler@mozilla@@AEAAXXZ
0xc4c94016,0xc4c94016,?finish@SHA1Sum@mozilla@@QAEXAAY0BE@E@Z
0xf5efb3f,0x0f5efb3f,?finish@SHA1Sum@mozilla@@QEAAXAEAY0BE@E@Z
0x69f45f4d,0x69f45f4d,?floor@Decimal@blink@@QBE?AV12@XZ
0x75f197ce,0x75f197ce,?floor@Decimal@blink@@QEBA?AV12@XZ
0xf32ce9d3,0xf32ce9d3,?flush@RLBoxSoundTouch@mozilla@@QEAAXXZ
0xc9ce5ff,0x0c9ce5ff,?flush@SoundTouch@soundtouch@@QAEXXZ
0xe20c2145,0xe20c2145,?fromDouble@Decimal@blink@@SA?AV12@N@Z
0x5c8f2f0c,0x5c8f2f0c,?fromString@Decimal@blink@@SA?AV12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
0x5be9bed0,0x5be9bed0,?fromString@Decimal@blink@@SA?AV12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
0xfcd5b04a,0xfcd5b04a,?gChaosFeatures@detail@mozilla@@3W4ChaosFeature@2@A
0x1883971e,0x1883971e,?gChaosModeCounter@detail@mozilla@@3V?$Atomic@I$01X@2@A
0x7219d365,0x7219d365,?gOOMAllocationSize@@3IA
0x96e2ff60,0x96e2ff60,?gTwoCharEscapes@detail@mozilla@@3QBDB
0x3e1c22ab,0x3e1c22ab,?getInputOutputSampleRatio@SoundTouch@soundtouch@@QAENXZ
0x34a53b89,0x34a53b89,?getSetting@SoundTouch@soundtouch@@QBEHH@Z
0xfa8fa3ba,0xfa8fa3ba,?getVersionId@SoundTouch@soundtouch@@SAIXZ
0xf74cec7b,0xf74cec7b,?getVersionString@SoundTouch@soundtouch@@SAPBDXZ
0x2b42cec5,0x2b42cec5,?has_constant_tsc@sse_private@mozilla@@3_NA
0x34fb34df,0x34fb34df,?infinity@Decimal@blink@@SA?AV12@W4Sign@12@@Z
0xd432d6e,0x0d432d6e,?lock@MutexImpl@detail@mozilla@@IAEXXZ
0xb9e3e69c,0xb9e3e69c,?lock@MutexImpl@detail@mozilla@@IEAAXXZ
0x52bce4c0,0x52bce4c0,?memchr16@SIMD@mozilla@@SAPB_SPB_S_SI@Z
0x2fbdf321,0x2fbdf321,?memchr2x16@SIMD@mozilla@@SAPB_SPB_S_S1I@Z
0x27c3ed78,0x27c3ed78,?memchr2x8@SIMD@mozilla@@SAPBDPBDDDI@Z
0x63fca21c,0x63fca21c,?memchr8@SIMD@mozilla@@SAPBDPBDDI@Z
0xa0f95880,0xa0f95880,?mmx_enabled@sse_private@mozilla@@3_NA
0x395f5895,0x395f5895,?mozalloc_handle_oom@@YAXI@Z
0x267f9f39,0x267f9f39,?mozalloc_handle_oom@@YAX_K@Z
0x3f1707d,0x03f1707d,?mozalloc_set_oom_abort_handler@@YAXP6AX_K@Z@Z
0x3558a7e7,0x3558a7e7,?name@type_info@@QBEPBDXZ
0xce5d4442,0xce5d4442,?nan@Decimal@blink@@SA?AV12@XZ
0xd4a397c,0x0d4a397c,?notify_all@ConditionVariableImpl@detail@mozilla@@QAEXXZ
0x4a5a9ec0,0x4a5a9ec0,?notify_all@ConditionVariableImpl@detail@mozilla@@QEAAXXZ
0x53856e56,0x53856e56,?notify_one@ConditionVariableImpl@detail@mozilla@@QAEXXZ
0x91bf9841,0x91bf9841,?notify_one@ConditionVariableImpl@detail@mozilla@@QEAAXXZ
0x3e924d36,0x3e924d36,?numChannels@RLBoxSoundTouch@mozilla@@QEAAIXZ
0x3317a81f,0x3317a81f,?numChannels@SoundTouch@soundtouch@@QBEIXZ
0x11c1c0c4,0x11c1c0c4,?numSamples@RLBoxSoundTouch@mozilla@@QEAA?AV?$tainted@IVrlbox_wasm2c_sandbox@rlbox@@@rlbox@@XZ
0x24c14128,0x24c14128,?numUnprocessedSamples@RLBoxSoundTouch@mozilla@@QEAA?AV?$tainted@IVrlbox_wasm2c_sandbox@rlbox@@@rlbox@@XZ
0xff083d18,0xff083d18,?numUnprocessedSamples@SoundTouch@soundtouch@@UBEIXZ
0xa4ecfda6,0xa4ecfda6,?print@PrintfTarget@mozilla@@QAA_NPBDZZ
0xc74f8d1b,0xc74f8d1b,?print@PrintfTarget@mozilla@@QEAA_NPEBDZZ
0xacf5f85d,0xacf5f85d,?profiler_add_js_marker@baseprofiler@mozilla@@YAXPBD0@Z
0xd0d644da,0xd0d644da,?profiler_add_js_marker@baseprofiler@mozilla@@YAXPEBD0@Z
0x1d42acf6,0x1d42acf6,?profiler_add_sampled_counter@baseprofiler@mozilla@@YAXPAVBaseProfilerCount@12@@Z
0x5895cfb1,0x5895cfb1,?profiler_add_sampled_counter@baseprofiler@mozilla@@YAXPEAVBaseProfilerCount@12@@Z
0x15744ae1,0x15744ae1,?profiler_capture_backtrace@baseprofiler@mozilla@@YA?AV?$UniquePtr@VProfileChunkedBuffer@mozilla@@V?$DefaultDelete@VProfileChunkedBuffer@mozilla@@@2@@2@XZ
0xf12948f7,0xf12948f7,?profiler_capture_backtrace_into@baseprofiler@mozilla@@YA_NAAVProfileChunkedBuffer@2@W4StackCaptureOptions@2@@Z
0x4a50440d,0x4a50440d,?profiler_capture_backtrace_into@baseprofiler@mozilla@@YA_NAEAVProfileChunkedBuffer@2@W4StackCaptureOptions@2@@Z
0xadf07d29,0xadf07d29,?profiler_current_process_id@baseprofiler@mozilla@@YA?AVBaseProfilerProcessId@12@XZ
0xf7032709,0xf7032709,?profiler_current_process_id@baseprofiler@mozilla@@YAHXZ
0x3892a422,0x3892a422,?profiler_current_thread_id@baseprofiler@mozilla@@YA?AVBaseProfilerThreadId@12@XZ
0x432c5d61,0x432c5d61,?profiler_current_thread_id@baseprofiler@mozilla@@YAHXZ
0x7e576fe0,0x7e576fe0,?profiler_ensure_started@baseprofiler@mozilla@@YAXV?$PowerOfTwo@I@2@NIPAPBDIABV?$Maybe@N@2@@Z
0xbb555496,0xbb555496,?profiler_ensure_started@baseprofiler@mozilla@@YAXV?$PowerOfTwo@I@2@NIPEAPEBDIAEBV?$Maybe@N@2@@Z
0x4a195459,0x4a195459,?profiler_feature_active@baseprofiler@mozilla@@YA_NI@Z
0xc635edbb,0xc635edbb,?profiler_get_available_features@baseprofiler@mozilla@@YAIXZ
0xec6205b5,0xec6205b5,?profiler_get_backtrace@baseprofiler@mozilla@@YA?AV?$UniquePtr@VProfilerBacktrace@baseprofiler@mozilla@@UProfilerBacktraceDestructor@23@@2@XZ
0xad9f70f,0x0ad9f70f,?profiler_get_buffer_info@baseprofiler@mozilla@@YA?AV?$Maybe@UProfilerBufferInfo@baseprofiler@mozilla@@@2@XZ
0x8e4b2ba0,0x8e4b2ba0,?profiler_get_core_buffer@baseprofiler@mozilla@@YAAAVProfileChunkedBuffer@2@XZ
0x811b3b54,0x811b3b54,?profiler_get_core_buffer@baseprofiler@mozilla@@YAAEAVProfileChunkedBuffer@2@XZ
0xfcd29364,0xfcd29364,?profiler_get_profile@baseprofiler@mozilla@@YA?AV?$UniquePtr@$$BY0A@DV?$DefaultDelete@$$BY0A@D@mozilla@@@2@N_N0@Z
0xfd2cdd11,0xfd2cdd11,?profiler_get_start_params@baseprofiler@mozilla@@YAXPAHPAV?$Maybe@N@2@PANPAIPAV?$Vector@PBD$0A@VMallocAllocPolicy@mozilla@@@2@@Z
0xa7ba8e0,0x0a7ba8e0,?profiler_get_start_params@baseprofiler@mozilla@@YAXPEAHPEAV?$Maybe@N@2@PEANPEAIPEAV?$Vector@PEBD$0A@VMallocAllocPolicy@mozilla@@@2@@Z
0x1301fe6e,0x1301fe6e,?profiler_init@baseprofiler@mozilla@@YAXPAX@Z
0x1f8bee8a,0x1f8bee8a,?profiler_init@baseprofiler@mozilla@@YAXPEAX@Z
0x192df1be,0x192df1be,?profiler_init_main_thread_id@baseprofiler@mozilla@@YAXXZ
0xc54ce34e,0xc54ce34e,?profiler_is_main_thread@baseprofiler@mozilla@@YA_NXZ
0xdc43bff7,0xdc43bff7,?profiler_is_paused@baseprofiler@mozilla@@YA_NXZ
0xcf5f8588,0xcf5f8588,?profiler_is_sampling_paused@baseprofiler@mozilla@@YA_NXZ
0xe88ba92f,0xe88ba92f,?profiler_main_thread_id@baseprofiler@mozilla@@YA?AVBaseProfilerThreadId@12@XZ
0x4e033022,0x4e033022,?profiler_pause@baseprofiler@mozilla@@YAXXZ
0x7cefb872,0x7cefb872,?profiler_pause_sampling@baseprofiler@mozilla@@YAXXZ
0xf3d04abb,0xf3d04abb,?profiler_register_page@baseprofiler@mozilla@@YAX_K0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z
0xcaeec2ac,0xcaeec2ac,?profiler_register_page@baseprofiler@mozilla@@YAX_K0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z
0x338ba86a,0x338ba86a,?profiler_register_thread@baseprofiler@mozilla@@YAPAVProfilingStack@12@PBDPAX@Z
0x700341be,0x700341be,?profiler_register_thread@baseprofiler@mozilla@@YAPEAVProfilingStack@12@PEBDPEAX@Z
0x43b8fcf5,0x43b8fcf5,?profiler_remove_sampled_counter@baseprofiler@mozilla@@YAXPEAVBaseProfilerCount@12@@Z
0x64ed7aa8,0x64ed7aa8,?profiler_resume@baseprofiler@mozilla@@YAXXZ
0xc261179c,0xc261179c,?profiler_resume_sampling@baseprofiler@mozilla@@YAXXZ
0xb2455594,0xb2455594,?profiler_save_profile_to_file@baseprofiler@mozilla@@YAXPEBD@Z
0x1c48a027,0x1c48a027,?profiler_set_process_name@baseprofiler@mozilla@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBV34@@Z
0x2b7a7d24,0x2b7a7d24,?profiler_shutdown@baseprofiler@mozilla@@YAXXZ
0xe19331fe,0xe19331fe,?profiler_start@baseprofiler@mozilla@@YAXV?$PowerOfTwo@I@2@NIPEAPEBDIAEBV?$Maybe@N@2@@Z
0x5589a924,0x5589a924,?profiler_stop@baseprofiler@mozilla@@YAXXZ
0xeb0e5a70,0xeb0e5a70,?profiler_stream_json_for_this_process@baseprofiler@mozilla@@YA_NAEAVSpliceableJSONWriter@12@N_N1@Z
0x672affb0,0x672affb0,?profiler_suspend_and_sample_thread@baseprofiler@mozilla@@YAXHIAEAVProfilerStackCollector@12@_N@Z
0xc5423061,0xc5423061,?profiler_thread_is_sleeping@baseprofiler@mozilla@@YA_NXZ
0x5a52b5e5,0x5a52b5e5,?profiler_thread_sleep@baseprofiler@mozilla@@YAXXZ
0x1cdefbc2,0x1cdefbc2,?profiler_thread_wake@baseprofiler@mozilla@@YAXXZ
0x93ee149e,0x93ee149e,?profiler_time@baseprofiler@mozilla@@YANXZ
0xd8962a6e,0xd8962a6e,?profiler_unregister_page@baseprofiler@mozilla@@YAX_K@Z
0x4d09c256,0x4d09c256,?profiler_unregister_thread@baseprofiler@mozilla@@YAXXZ
0x1e491115,0x1e491115,?putSamples@RLBoxSoundTouch@mozilla@@QEAAXPEBMI@Z
0x23717bf9,0x23717bf9,?putSamples@SoundTouch@soundtouch@@UAEXPBMI@Z
0xdafe3a02,0xdafe3a02,?raw_name@type_info@@QBEPBDXZ
0x454d3ed4,0x454d3ed4,?receiveSamples@RLBoxSoundTouch@mozilla@@QEAAIPEAMI@Z
0x309d3885,0x309d3885,?receiveSamples@SoundTouch@soundtouch@@UAEII@Z
0x93874e02,0x93874e02,?receiveSamples@SoundTouch@soundtouch@@UAEIPAMI@Z
0x16aad5f9,0x16aad5f9,?remainder@Decimal@blink@@QEBA?AV12@AEBV12@@Z
0x3e39fddd,0x3e39fddd,?resizeSampleBuffer@RLBoxSoundTouch@mozilla@@AEAAXI@Z
0x11a87ba1,0x11a87ba1,?round@Decimal@blink@@QEBA?AV12@XZ
0xb3de80de,0xb3de80de,?scProfilerMainThreadId@baseprofiler@mozilla@@3HA
0x6fdf9bdc,0x6fdf9bdc,?setChannels@RLBoxSoundTouch@mozilla@@QEAAXI@Z
0x9055d08a,0x9055d08a,?setChannels@SoundTouch@soundtouch@@QAEXI@Z
0x584db63a,0x584db63a,?setPitch@RLBoxSoundTouch@mozilla@@QEAAXN@Z
0x2a90247b,0x2a90247b,?setPitch@SoundTouch@soundtouch@@QAEXN@Z
0x733edf45,0x733edf45,?setPitchOctaves@SoundTouch@soundtouch@@QAEXN@Z
0x6babc583,0x6babc583,?setPitchSemiTones@SoundTouch@soundtouch@@QAEXH@Z
0x6f26b931,0x6f26b931,?setPitchSemiTones@SoundTouch@soundtouch@@QAEXN@Z
0x983116be,0x983116be,?setRate@RLBoxSoundTouch@mozilla@@QEAAXN@Z
0x6031b304,0x6031b304,?setRate@SoundTouch@soundtouch@@QAEXN@Z
0x55e971ec,0x55e971ec,?setRateChange@SoundTouch@soundtouch@@QAEXN@Z
0xdd8b41b0,0xdd8b41b0,?setSampleRate@RLBoxSoundTouch@mozilla@@QEAAXI@Z
0xccd2fe33,0xccd2fe33,?setSampleRate@SoundTouch@soundtouch@@QAEXI@Z
0xdf6a074d,0xdf6a074d,?setSetting@RLBoxSoundTouch@mozilla@@QEAAXHH@Z
0x5589a959,0x5589a959,?setSetting@SoundTouch@soundtouch@@QAE_NHH@Z
0xed4b0bc7,0xed4b0bc7,?setTempo@RLBoxSoundTouch@mozilla@@QEAAXN@Z
0x9401e91d,0x9401e91d,?setTempo@SoundTouch@soundtouch@@QAEXN@Z
0x4175d678,0x4175d678,?setTempoChange@SoundTouch@soundtouch@@QAEXN@Z
0x796bceed,0x796bceed,?set_new_handler@@YAP6AXXZP6AXXZ@Z
0xef926db6,0xef926db6,?set_terminate@@YAP6AXXZP6AXXZ@Z
0x898b351b,0x898b351b,?set_unexpected@@YAP6AXXZP6AXXZ@Z
0x4f43d34a,0x4f43d34a,?sse3_enabled@sse_private@mozilla@@3_NA
0x5d73813f,0x5d73813f,?sse4_1_enabled@sse_private@mozilla@@3_NA
0xd6a0bf26,0xd6a0bf26,?sse4_2_enabled@sse_private@mozilla@@3_NA
0x2818c2b7,0x2818c2b7,?sse4a_enabled@sse_private@mozilla@@3_NA
0x561fa906,0x561fa906,?ssse3_enabled@sse_private@mozilla@@3_NA
0xcab1a623,0xcab1a623,?swprintf@@YAHPAGIPBGZZ
0xb291d8dd,0xb291d8dd,?swprintf@@YAHPA_WIPB_WZZ
0x834827c7,0x834827c7,?terminate@@YAXXZ
0x17d854e5,0x17d854e5,?toDouble@Decimal@blink@@QEBANXZ
0x79bb3b39,0x79bb3b39,?toString@Decimal@blink@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ
0x59b0ca1d,0x59b0ca1d,?toString@Decimal@blink@@QEBA_NPEAD_K@Z
0x179ae8d0,0x179ae8d0,?tryLock@MutexImpl@detail@mozilla@@IEAA_NXZ
0x8ccc67d1,0x8ccc67d1,?unexpected@@YAXXZ
0xf0477d0,0x0f0477d0,?unlock@MutexImpl@detail@mozilla@@IEAAXXZ
0x713f6be3,0x713f6be3,?update@SHA1Sum@mozilla@@QEAAXPEBXI@Z
0xeb1f1d23,0xeb1f1d23,?vprint@PrintfTarget@mozilla@@QEAA_NPEBDPEAD@Z
0x721ca88a,0x721ca88a,?vswprintf@@YAHPAGIPBGPAD@Z
0x90f552c9,0x90f552c9,?vswprintf@@YAHPA_WIPB_WPAD@Z
0xd1029e5f,0xd1029e5f,?wait@ConditionVariableImpl@detail@mozilla@@QEAAXAEAVMutexImpl@23@@Z
0x10ff5206,0x10ff5206,?wait_for@ConditionVariableImpl@detail@mozilla@@QEAA?AW4CVStatus@3@AEAVMutexImpl@23@AEBV?$BaseTimeDuration@VTimeDurationValueCalculator@mozilla@@@3@@Z
0x742f9f4e,0x742f9f4e,?what@exception@@UBEPBDXZ
0xc866ac3c,0xc866ac3c,?xgetbv@mozilla@@YA_KI@Z
0x53afc94c,0x53afc94c,?zero@Decimal@blink@@SA?AV12@W4Sign@12@@Z
0x7b6038f4,0x7b6038f4,@$xp$21Actitlebar@TsTitleBar
0x846a711c,0x846a711c,@$xp$22Actitlebar@TacBtnStyle
0x108392d5,0x108392d5,@$xp$22Actitlebar@TacFontData
0xaf1c4631,0xaf1c4631,@$xp$23Actitlebar@TacItemAlign
0xc43d7f29,0xc43d7f29,@$xp$24Actitlebar@TacTitleItems
0xcb5fb2c4,0xcb5fb2c4,@$xp$25Actinyjpg@TacTinyJPGImage
0x3a459c93,0x3a459c93,@$xp$26Actitlebar@TacTitleBarItem
0x3a7af4c5,0x3a7af4c5,@$xp$27Actitlebar@TacDrawItemEvent
0x31d7e963,0x31d7e963,@$xp$27Actitlebar@TacItemAnimation
0x3c69301f,0x3c69301f,@@Form_main@Finalize
0xf4ceb36e,0xf4ceb36e,@@Form_main@Initialize
0x9e10ee74,0x9e10ee74,@@Myfunction@Finalize
0x13ac5ca8,0x13ac5ca8,@@Myfunction@Initialize
0xe8f2367c,0xe8f2367c,@Actinyjpg@Finalization$qqrv
0x3a3ad7c0,0x3a3ad7c0,@Actinyjpg@TacTinyJPGImage@
0xad5a73fc,0xad5a73fc,@Actinyjpg@TacTinyJPGImage@LoadFromFile$qqrx20System@UnicodeString
0x2acc0a1c,0x2acc0a1c,@Actinyjpg@TacTinyJPGImage@LoadFromStream$qqrp22System@Classes@TStream
0x939fec64,0x939fec64,@Actinyjpg@initialization$qqrv
0xce9327df,0xce9327df,@Actitlebar@Finalization$qqrv
0xfda40753,0xfda40753,@Actitlebar@HideHintWnd$qqrp26Actitlebar@TacTitleBarItem
0x7ba45d47,0x7ba45d47,@Actitlebar@PaintItemNoAlpha$qqrxp20Vcl@Graphics@TBitmapt1rx18System@Types@TRectt3t3
0xe1e05063,0xe1e05063,@Actitlebar@ShowHintWnd$qqrp26Actitlebar@TacTitleBarItem
0x1539631b,0x1539631b,@Actitlebar@StartItemAnimation$qqrxp26Actitlebar@TacTitleBarItemxixop15Vcl@Forms@TForm
0xc6b722dd,0xc6b722dd,@Actitlebar@TacFontData@
0xb488c5a0,0xb488c5a0,@Actitlebar@TacFontData@$bctr$qqrv
0xbe4dccb9,0xbe4dccb9,@Actitlebar@TacFontData@$bdtr$qqrv
0x87cd5350,0x87cd5350,@Actitlebar@TacFontData@GetBool$qqrxi
0x44aed3a2,0x44aed3a2,@Actitlebar@TacFontData@Invalidate$qqrv
0xfdf5bd33,0xfdf5bd33,@Actitlebar@TacFontData@SetBool$qqrxixo
0xe8c37108,0xe8c37108,@Actitlebar@TacFontData@SetFont$qqrxp18Vcl@Graphics@TFont
0xe6ba1fe,0x0e6ba1fe,@Actitlebar@TacFontData@SetGlowColor$qqrx21System@Uitypes@TColor
0x96bd860d,0x96bd860d,@Actitlebar@TacFontData@SetGlowSize$qqrxi
0x1095a978,0x1095a978,@Actitlebar@TacItemAnimation@
0x7a134c2d,0x7a134c2d,@Actitlebar@TacItemAnimation@$bctr$qqrp25System@Classes@TComponent
0x667cc0ea,0x667cc0ea,@Actitlebar@TacItemAnimation@$bdtr$qqrv
0x58b98a,0x0058b98a,@Actitlebar@TacItemAnimation@ChangeState$qqrio
0x5fa98cc2,0x5fa98cc2,@Actitlebar@TacItemAnimation@CheckMouseLeave$qqrv
0x27ab4193,0x27ab4193,@Actitlebar@TacItemAnimation@GetFormBounds$qqrv
0xc490eb8b,0xc490eb8b,@Actitlebar@TacItemAnimation@MakeForm$qqrv
0x661f8176,0x661f8176,@Actitlebar@TacItemAnimation@MakeImg$qqrv
0xcb42c23d,0xcb42c23d,@Actitlebar@TacItemAnimation@Offset$qqrv
0x96231d81,0x96231d81,@Actitlebar@TacItemAnimation@OnAnimTimer$qqrp14System@TObject
0x74db7c27,0x74db7c27,@Actitlebar@TacItemAnimation@StartAnimation$qqrio
0x83505f1a,0x83505f1a,@Actitlebar@TacItemAnimation@Step$qqrv
0x52981071,0x52981071,@Actitlebar@TacItemAnimation@UpdateForm$qqri
0xbd396ffd,0xbd396ffd,@Actitlebar@TacTitleBarItem@
0xf2b833e1,0xf2b833e1,@Actitlebar@TacTitleBarItem@$bctr$qqrp26System@Classes@TCollection
0x76133800,0x76133800,@Actitlebar@TacTitleBarItem@$bdtr$qqrv
0x8390e40d,0x8390e40d,@Actitlebar@TacTitleBarItem@AssignTo$qqrp26System@Classes@TPersistent
0xd6123d25,0xd6123d25,@Actitlebar@TacTitleBarItem@Changed$qqrv
0x26beac4f,0x26beac4f,@Actitlebar@TacTitleBarItem@DoClick$qqrv
0xe326f1f4,0xe326f1f4,@Actitlebar@TacTitleBarItem@DoMouseDown$qqr27System@Uitypes@TMouseButton60System@%Set$32System@Classes@System_Classes__1t1$i0$t1$i10$%ii
0x8e4205ee,0x8e4205ee,@Actitlebar@TacTitleBarItem@DoMouseUp$qqr27System@Uitypes@TMouseButton60System@%Set$32System@Classes@System_Classes__1t1$i0$t1$i10$%ii
0xb822ad2b,0xb822ad2b,@Actitlebar@TacTitleBarItem@GetDisplayName$qqrv
0x5755faf8,0x5755faf8,@Actitlebar@TacTitleBarItem@GetState$qqrv
0xc707aa88,0xc707aa88,@Actitlebar@TacTitleBarItem@InitFont$qqrv
0x63b3a468,0x63b3a468,@Actitlebar@TacTitleBarItem@IntXMargin$qqrv
0x5117ce0b,0x5117ce0b,@Actitlebar@TacTitleBarItem@Invalidate$qqro
0xc9db3272,0xc9db3272,@Actitlebar@TacTitleBarItem@OnGlyphChange$qqrp14System@TObject
0x54d86389,0x54d86389,@Actitlebar@TacTitleBarItem@SetAlign$qqrx23Actitlebar@TacItemAlign
0xd2054eff,0xd2054eff,@Actitlebar@TacTitleBarItem@SetAutoSize$qqrxo
0xae0aa35c,0xae0aa35c,@Actitlebar@TacTitleBarItem@SetCaption$qqrx20System@UnicodeString
0x1943ecc4,0x1943ecc4,@Actitlebar@TacTitleBarItem@SetDown$qqrxo
0x50201d9f,0x50201d9f,@Actitlebar@TacTitleBarItem@SetGlyph$qqrxp20Vcl@Graphics@TBitmap
0xb3492622,0xb3492622,@Actitlebar@TacTitleBarItem@SetGroupIndex$qqrxi
0xb805eb9a,0xb805eb9a,@Actitlebar@TacTitleBarItem@SetHeight$qqrxi
0x1677a3c,0x01677a3c,@Actitlebar@TacTitleBarItem@SetImageIndex$qqrxixi
0x553e06b6,0x553e06b6,@Actitlebar@TacTitleBarItem@SetName$qqrx20System@UnicodeString
0x1eb10b9a,0x1eb10b9a,@Actitlebar@TacTitleBarItem@SetNumGlyphs$qqrxi
0xace81552,0xace81552,@Actitlebar@TacTitleBarItem@SetSkinSection$qqrx20System@UnicodeString
0x1d084d42,0x1d084d42,@Actitlebar@TacTitleBarItem@SetSpacing$qqrxi
0xb4c0875c,0xb4c0875c,@Actitlebar@TacTitleBarItem@SetState$qqrxi
0x4806bfec,0x4806bfec,@Actitlebar@TacTitleBarItem@SetStyle$qqrx22Actitlebar@TacBtnStyle
0xcea2e943,0xcea2e943,@Actitlebar@TacTitleBarItem@SetVisible$qqrxo
0xfd09da09,0xfd09da09,@Actitlebar@TacTitleBarItem@SetWidth$qqrxi
0x6c80088d,0x6c80088d,@Actitlebar@TacTitleBarItem@UpdateSize$qqro
0x4a06615a,0x4a06615a,@Actitlebar@TacTitleItems@
0x3b3dc0d8,0x3b3dc0d8,@Actitlebar@TacTitleItems@$bctr$qqrp26System@Classes@TPersistent
0x861b7bc,0x0861b7bc,@Actitlebar@TacTitleItems@$bdtr$qqrv
0xae5cd27b,0xae5cd27b,@Actitlebar@TacTitleItems@Add$qqrv
0xd62207ba,0xd62207ba,@Actitlebar@TacTitleItems@GetItem$qqri
0x9b448330,0x9b448330,@Actitlebar@TacTitleItems@GetOwner$qqrv
0xc1b4311b,0xc1b4311b,@Actitlebar@TacTitleItems@Insert$qqri
0x91137d7f,0x91137d7f,@Actitlebar@TacTitleItems@SetItem$qqrip26Actitlebar@TacTitleBarItem
0xcc824c94,0xcc824c94,@Actitlebar@TsTitleBar@
0x7c93050b,0x7c93050b,@Actitlebar@TsTitleBar@$bctr$qqrp25System@Classes@TComponent
0x211eb8b2,0x211eb8b2,@Actitlebar@TsTitleBar@$bdtr$qqrv
0x78912165,0x78912165,@Actitlebar@TsTitleBar@CalcSizes$qqrv
0x734026c6,0x734026c6,@Actitlebar@TsTitleBar@ImageListChange$qqrp14System@TObject
0x4f00d344,0x4f00d344,@Actitlebar@TsTitleBar@Invalidate$qqrv
0xda8b6328,0xda8b6328,@Actitlebar@TsTitleBar@Loaded$qqrv
0x8fc9fe46,0x8fc9fe46,@Actitlebar@TsTitleBar@Notification$qqrp25System@Classes@TComponent25System@Classes@TOperation
0x2a931c35,0x2a931c35,@Actitlebar@TsTitleBar@SetImages$qqrxp28Vcl@Imglist@TCustomImageList
0x871f6162,0x871f6162,@Actitlebar@TsTitleBar@SetItems$qqrxp24Actitlebar@TacTitleItems
0xeb6f989e,0xeb6f989e,@Actitlebar@TsTitleBar@SetItemsMargin$qqrxi
0x73c8116b,0x73c8116b,@Actitlebar@TsTitleBar@SetItemsSpacing$qqrxi
0x68385f3a,0x68385f3a,@Actitlebar@TsTitleBar@SetShowCaption$qqrxo
0x7c0505dd,0x7c0505dd,@Actitlebar@initialization$qqrv
0xb8ef3f6f,0xb8ef3f6f,ADVANCEDSETUPDIALOG
0x329d82ab,0x329d82ab,ATOB_AsciiToData
0xdb5f6d5d,0xdb5f6d5d,ATOB_AsciiToData_Util
0x73432871,0x73432871,ATOB_ConvertAsciiToItem
0x54b995ba,0x54b995ba,ATOB_ConvertAsciiToItem_Util
0x39d6a4a,0x039d6a4a,A_SHAFinal
0x5b524237,0x5b524237,A_SHAInit
0x7cc4b245,0x7cc4b245,A_SHAUpdate
0x82a73f1d,0x82a73f1d,AbortDoc
0x2289a455,0x2289a455,AbortPath
0x61944a6,0x061944a6,AbortPrinter
0xfd54490d,0xfd54490d,AbortSystemShutdownA
0x980fc5c,0x0980fc5c,AbortSystemShutdownW
0x621caa01,0x621caa01,AcceptEx
0x6300802b,0x6300802b,AcceptSecurityContext
0x9772ba0e,0x9772ba0e,AccessCheck
0x87f720c8,0x87f720c8,AccessCheckAndAuditAlarmA
0x73239599,0x73239599,AccessCheckAndAuditAlarmW
0xf4b1b2de,0xf4b1b2de,AccessCheckByType
0x97802d03,0x97802d03,AccessCheckByTypeAndAuditAlarmA
0x63549852,0x63549852,AccessCheckByTypeAndAuditAlarmW
0x2082a1ff,0x2082a1ff,AccessCheckByTypeResultList
0xaf82541e,0xaf82541e,AccessCheckByTypeResultListAndAuditAlarm
0x12170174,0x12170174,AccessCheckByTypeResultListAndAuditAlarmA
0xe6c3b425,0xe6c3b425,AccessCheckByTypeResultListAndAuditAlarmW
0x1b24ce19,0x1b24ce19,AccessibleChildren
0x4294a58a,0x4294a58a,AccessibleObjectFromEvent
0xce9f5c09,0xce9f5c09,AccessibleObjectFromPoint
0xce429f07,0xce429f07,AccessibleObjectFromWindow
0x991055ee,0x991055ee,AcquireCredentialsHandleA
0x6dc4e0bf,0x6dc4e0bf,AcquireCredentialsHandleW
0xecfde973,0xecfde973,AcquireDDThreadLock
0xdbd801d9,0xdbd801d9,AcquireDPCache
0x267010cb,0x267010cb,AcquireSRWLockExclusive
0x5c1e4db0,0x5c1e4db0,AcquireSRWLockShared
0x9825f902,0x9825f902,ActivateActCtx
0x885c3e4d,0x885c3e4d,ActivateKeyboardLayout
0xbc158b4b,0xbc158b4b,ActivityIdControl
0x2e9216eb,0x2e9216eb,AddAccessAllowedAce
0x4ed3c5f7,0x4ed3c5f7,AddAccessAllowedAceEx
0xadb069fb,0xadb069fb,AddAccessAllowedObjectAce
0x426d10b5,0x426d10b5,AddAccessDeniedAce
0x83887ce7,0x83887ce7,AddAccessDeniedAceEx
0x8bbcc169,0x8bbcc169,AddAccessDeniedObjectAce
0x9081c021,0x9081c021,AddAce
0x7c9dfbf9,0x7c9dfbf9,AddAtomA
0x88494ea8,0x88494ea8,AddAtomW
0x5b069477,0x5b069477,AddAuditAccessAce
0x90919779,0x90919779,AddAuditAccessAceEx
0x6c2a8079,0x6c2a8079,AddAuditAccessObjectAce
0x8544982f,0x8544982f,AddClipboardFormatListener
0xf693d72,0x0f693d72,AddConditionalAce
0xa3640da8,0xa3640da8,AddConsoleAliasA
0x57b0b8f9,0x57b0b8f9,AddConsoleAliasW
0x30d7d15,0x030d7d15,AddCredentialsA
0xf7d9c844,0xf7d9c844,AddCredentialsW
0x6d1dca14,0x6d1dca14,AddDllDirectory
0x34e4ea0c,0x34e4ea0c,AddFontMemResourceEx
0xd5a7979f,0xd5a7979f,AddFontResourceA
0x3315d86,0x03315d86,AddFontResourceExA
0xf7e5e8d7,0xf7e5e8d7,AddFontResourceExW
0x861de82d,0x861de82d,AddFontResourceTracking
0x217322ce,0x217322ce,AddFontResourceW
0x5d5bc754,0x5d5bc754,AddFormA
0xa98f7205,0xa98f7205,AddFormW
0xd293fde,0x0d293fde,AddIntegrityLabelToBoundaryDescriptor
0x3514c77f,0x3514c77f,AddJobA
0xc1c0722e,0xc1c0722e,AddJobW
0x2de30f8,0x02de30f8,AddLocalAlternateComputerNameA
0xf60a85a9,0xf60a85a9,AddLocalAlternateComputerNameW
0x272f7d61,0x272f7d61,AddMRUStringW
0xccd754ec,0xccd754ec,AddMandatoryAce
0x33f88faa,0x33f88faa,AddMonitorA
0xc72c3afb,0xc72c3afb,AddMonitorW
0xd1b2a22d,0xd1b2a22d,AddPersonalTrustDBPages
0x29fb0c6e,0x29fb0c6e,AddPortA
0x694b3bea,0x694b3bea,AddPortExA
0x9d9f8ebb,0x9d9f8ebb,AddPortExW
0xdd2fb93f,0xdd2fb93f,AddPortW
0xe9c3a42f,0xe9c3a42f,AddPrintProcessorA
0x1d17117e,0x1d17117e,AddPrintProcessorW
0x9aa00c98,0x9aa00c98,AddPrintProvidorA
0x6e74b9c9,0x6e74b9c9,AddPrintProvidorW
0x70fd3f20,0x70fd3f20,AddPrinterA
0x1b9f66cb,0x1b9f66cb,AddPrinterConnection2A
0xef4bd39a,0xef4bd39a,AddPrinterConnection2W
0x63cbc05c,0x63cbc05c,AddPrinterConnectionA
0x971f750d,0x971f750d,AddPrinterConnectionW
0x12e60788,0x12e60788,AddPrinterDriverA
0xf6bd8d15,0xf6bd8d15,AddPrinterDriverExA
0x2693844,0x02693844,AddPrinterDriverExW
0xe632b2d9,0xe632b2d9,AddPrinterDriverW
0x84298a71,0x84298a71,AddPrinterW
0xf8604dc7,0xf8604dc7,AddRefActCtx
0xb0bad974,0xb0bad974,AddSIDToBoundaryDescriptor
0xe9c5ae64,0xe9c5ae64,AddSecureMemoryCacheCallback
0x17fcac46,0x17fcac46,AddSecurityPackageA
0xe3281917,0xe3281917,AddSecurityPackageW
0x35e08867,0x35e08867,AddUsersToEncryptedFile
0xce52b781,0xce52b781,AddUsersToEncryptedFileEx
0x252fb89b,0x252fb89b,AddVectoredContinueHandler
0xbcbbd50,0x0bcbbd50,AddVectoredExceptionHandler
0x19449861,0x19449861,AdjustCalendarDate
0x95f83ad,0x095f83ad,AdjustTokenGroups
0x5db3fd59,0x5db3fd59,AdjustTokenPrivileges
0x2dc1813f,0x2dc1813f,AdjustWindowRect
0xc5ecc058,0xc5ecc058,AdjustWindowRectEx
0x81617edc,0x81617edc,AdvancedDocumentPropertiesA
0x75b5cb8d,0x75b5cb8d,AdvancedDocumentPropertiesW
0xb8ef3f6f,0xb8ef3f6f,AdvancedSetupDialog
0x93978fca,0x93978fca,AlignRects
0x2fe6ffec,0x2fe6ffec,AllocConsole
0xa5e9f0c4,0xa5e9f0c4,AllocateAndInitializeSid
0xf2a52626,0xf2a52626,AllocateLocallyUniqueId
0x77b60095,0x77b60095,AllocateUserPhysicalPages
0xb4014d84,0xb4014d84,AllocateUserPhysicalPagesNuma
0xfd52d217,0xfd52d217,AllowForegroundActivation
0x10e16c82,0x10e16c82,AllowSetForegroundWindow
0xf369375b,0xf369375b,AlpcAdjustCompletionListConcurrencyCount
0x6a12fca1,0x6a12fca1,AlpcFreeCompletionListMessage
0x480a37d7,0x480a37d7,AlpcGetCompletionListLastMessageInformation
0xe5250b27,0xe5250b27,AlpcGetCompletionListMessageAttributes
0x62763b02,0x62763b02,AlpcGetHeaderSize
0xe5b76c8d,0xe5b76c8d,AlpcGetMessageAttribute
0xf62f317f,0xf62f317f,AlpcGetMessageFromCompletionList
0x5f29a0ab,0x5f29a0ab,AlpcGetOutstandingCompletionListMessageCount
0x7d213701,0x7d213701,AlpcInitializeMessageAttribute
0x7bc2d35f,0x7bc2d35f,AlpcMaxAllowedMessageLength
0x4054fcc7,0x4054fcc7,AlpcRegisterCompletionList
0x6e37e5ca,0x6e37e5ca,AlpcRegisterCompletionListWorkerThread
0x9a030c0a,0x9a030c0a,AlpcRundownCompletionList
0x54950d78,0x54950d78,AlpcUnregisterCompletionList
0x4651ed11,0x4651ed11,AlpcUnregisterCompletionListWorkerThread
0xdde6bc50,0xdde6bc50,AlphaBlend
0xc24bb486,0xc24bb486,AmdPowerXpressRequestHighPerformance
0x678660ea,0x678660ea,AngleArc
0x4b2f6798,0x4b2f6798,AnimatePalette
0x9258ec83,0x9258ec83,AnimateWindow
0x42ec87b8,0x42ec87b8,AnyPopup
0xfd6f8d27,0xfd6f8d27,AppCacheCheckManifest
0x6e6fb86e,0x6e6fb86e,AppCacheCloseHandle
0x9e71e80,0x09e71e80,AppCacheCreateAndCommitFile
0x2a28b97f,0x2a28b97f,AppCacheDeleteGroup
0xadbf7402,0xadbf7402,AppCacheDeleteIEGroup
0x70d1ffe6,0x70d1ffe6,AppCacheDuplicateHandle
0xca65f469,0xca65f469,AppCacheFinalize
0x7d027634,0x7d027634,AppCacheFreeDownloadList
0x7aa7fe8b,0x7aa7fe8b,AppCacheFreeGroupList
0x592e5485,0x592e5485,AppCacheFreeIESpace
0xeab10e92,0xeab10e92,AppCacheFreeSpace
0x39184f47,0x39184f47,AppCacheGetDownloadList
0x41dca099,0x41dca099,AppCacheGetFallbackUrl
0x528e25d6,0x528e25d6,AppCacheGetGroupList
0x6ce74e44,0x6ce74e44,AppCacheGetIEGroupList
0x7ccd3fb,0x07ccd3fb,AppCacheGetInfo
0x3afb771,0x03afb771,AppCacheGetManifestUrl
0x57740014,0x57740014,AppCacheLookup
0x9ea0844c,0x9ea0844c,AppCompat_RunDLLW
0x6b3ee4e8,0x6b3ee4e8,AppendMenuA
0x9fea51b9,0x9fea51b9,AppendMenuW
0xc0bbd1d0,0xc0bbd1d0,ApplicationRecoveryFinished
0x5fe172e3,0x5fe172e3,ApplicationRecoveryInProgress
0xf4f625d7,0xf4f625d7,ApplyControlToken
0x7fe65393,0x7fe65393,Arc
0x7f8974b5,0x7f8974b5,ArcTo
0xad23306c,0xad23306c,AreAllAccessesGranted
0xe5614323,0xe5614323,AreAnyAccessesGranted
0x951df30f,0x951df30f,AreFileApisANSI
0x1aec2451,0x1aec2451,Arecv
0xb336b637,0xb336b637,ArrangeIconicWindows
0xe4474c31,0xe4474c31,Asend
0xdaf35202,0xdaf35202,AssignProcessToJobObject
0xa30c9ca8,0xa30c9ca8,AssocCreate
0x7a9f42d1,0x7a9f42d1,AssocCreateForClasses
0xb6d29cbb,0xb6d29cbb,AssocGetDetailsOfPropKey
0x286fa3c1,0x286fa3c1,AssocGetPerceivedType
0x21889f68,0x21889f68,AssocIsDangerous
0x63c266b7,0x63c266b7,AssocQueryKeyA
0x9716d3e6,0x9716d3e6,AssocQueryKeyW
0x5020eb4,0x05020eb4,AssocQueryStringA
0xa96c1479,0xa96c1479,AssocQueryStringByKeyA
0x5db8a128,0x5db8a128,AssocQueryStringByKeyW
0xf1d6bbe5,0xf1d6bbe5,AssocQueryStringW
0x77ae8606,0x77ae8606,AsyncIoOperation
0x460ca74a,0x460ca74a,AttachConsole
0x5c550036,0x5c550036,AttachThreadInput
0xce6a5645,0xce6a5645,AuditComputeEffectivePolicyBySid
0x60488458,0x60488458,AuditComputeEffectivePolicyByToken
0x5c580205,0x5c580205,AuditEnumerateCategories
0x4d2c18fc,0x4d2c18fc,AuditEnumeratePerUserPolicy
0xf07c09bf,0xf07c09bf,AuditEnumerateSubCategories
0x799b7002,0x799b7002,AuditFree
0x98f4fb9b,0x98f4fb9b,AuditLookupCategoryGuidFromCategoryId
0xd7d1c99a,0xd7d1c99a,AuditLookupCategoryIdFromCategoryGuid
0x6a3a84f9,0x6a3a84f9,AuditLookupCategoryNameA
0x9eee31a8,0x9eee31a8,AuditLookupCategoryNameW
0x1ebafd7c,0x1ebafd7c,AuditLookupSubCategoryNameA
0xea6e482d,0xea6e482d,AuditLookupSubCategoryNameW
0x899cd266,0x899cd266,AuditQueryGlobalSaclA
0x7d486737,0x7d486737,AuditQueryGlobalSaclW
0xb1008be7,0xb1008be7,AuditQueryPerUserPolicy
0x216a7fcd,0x216a7fcd,AuditQuerySecurity
0x1a73e383,0x1a73e383,AuditQuerySystemPolicy
0xf4ce2348,0xf4ce2348,AuditSetGlobalSaclA
0x1a9619,0x001a9619,AuditSetGlobalSaclW
0x70bd3d13,0x70bd3d13,AuditSetPerUserPolicy
0x28ea3adc,0x28ea3adc,AuditSetSecurity
0xc6d8bcbd,0xc6d8bcbd,AuditSetSystemPolicy
0xa34408ba,0xa34408ba,BCryptAddContextFunction
0x45535aa8,0x45535aa8,BCryptAddContextFunctionProvider
0x8e5b3288,0x8e5b3288,BCryptCloseAlgorithmProvider
0xabbeab56,0xabbeab56,BCryptConfigureContext
0x3b7cb76a,0x3b7cb76a,BCryptConfigureContextFunction
0xa1ecdfd8,0xa1ecdfd8,BCryptCreateContext
0x3d1adaca,0x3d1adaca,BCryptCreateHash
0x640dcc43,0x640dcc43,BCryptCreateMultiHash
0x51af8229,0x51af8229,BCryptDecrypt
0xd6b9430c,0xd6b9430c,BCryptDeleteContext
0x6d2fd9de,0x6d2fd9de,BCryptDeriveKey
0x3f5f6371,0x3f5f6371,BCryptDeriveKeyCapi
0x1514817c,0x1514817c,BCryptDeriveKeyPBKDF2
0xb978e755,0xb978e755,BCryptDestroyHash
0x97a6be7b,0x97a6be7b,BCryptDestroyKey
0x2aa07a2b,0x2aa07a2b,BCryptDestroySecret
0x7ad56888,0x7ad56888,BCryptDuplicateHash
0x36a7c286,0x36a7c286,BCryptDuplicateKey
0x9d1f795e,0x9d1f795e,BCryptEncrypt
0x29530bd2,0x29530bd2,BCryptEnumAlgorithms
0x4f974f8e,0x4f974f8e,BCryptEnumContextFunctionProviders
0xdf0d232c,0xdf0d232c,BCryptEnumContextFunctions
0xdbdd012f,0xdbdd012f,BCryptEnumContexts
0xf2882282,0xf2882282,BCryptEnumProviders
0x341a5c49,0x341a5c49,BCryptEnumRegisteredProviders
0xc1098d69,0xc1098d69,BCryptExportKey
0x96f5159a,0x96f5159a,BCryptFinalizeKeyPair
0x7eb66b1a,0x7eb66b1a,BCryptFinishHash
0x9e796e82,0x9e796e82,BCryptFreeBuffer
0x736556a0,0x736556a0,BCryptGenRandom
0x2168108b,0x2168108b,BCryptGenerateKeyPair
0xd472b5e,0x0d472b5e,BCryptGenerateSymmetricKey
0x99c498d1,0x99c498d1,BCryptGetFipsAlgorithmMode
0x45af3d7,0x045af3d7,BCryptGetProperty
0x337ff425,0x337ff425,BCryptHash
0x9fa5734c,0x9fa5734c,BCryptHashData
0x13664132,0x13664132,BCryptImportKey
0x9539444b,0x9539444b,BCryptImportKeyPair
0xff6de4ca,0xff6de4ca,BCryptKeyDerivation
0x7d8b5cd9,0x7d8b5cd9,BCryptOpenAlgorithmProvider
0x7c74128,0x07c74128,BCryptProcessMultiOperations
0x63ce617,0x063ce617,BCryptQueryContextConfiguration
0xdaf2df76,0xdaf2df76,BCryptQueryContextFunctionConfiguration
0x3a170694,0x3a170694,BCryptQueryContextFunctionProperty
0x621ffec0,0x621ffec0,BCryptQueryProviderRegistration
0x26194905,0x26194905,BCryptRegisterConfigChangeNotify
0xeb912daf,0xeb912daf,BCryptRegisterProvider
0x7f1066e8,0x7f1066e8,BCryptRemoveContextFunction
0x52c34112,0x52c34112,BCryptRemoveContextFunctionProvider
0x3f150d56,0x3f150d56,BCryptResolveProviders
0x66eca2ff,0x66eca2ff,BCryptSecretAgreement
0x9d52b337,0x9d52b337,BCryptSetAuditingInterface
0x399dcace,0x399dcace,BCryptSetContextFunctionProperty
0x1a75449e,0x1a75449e,BCryptSetProperty
0xe6d734a0,0xe6d734a0,BCryptSignHash
0x35c3bbfe,0x35c3bbfe,BCryptUnregisterConfigChangeNotify
0x8fc523ec,0x8fc523ec,BCryptUnregisterProvider
0xad819c0d,0xad819c0d,BCryptVerifySignature
0x587de9e6,0x587de9e6,BTOA_ConvertItemToAscii
0xa1ebd22a,0xa1ebd22a,BTOA_ConvertItemToAscii_Util
0x27d5c,0x00027d5c,BTOA_DataToAscii
0xe4714c5d,0xe4714c5d,BTOA_DataToAscii_Util
0x6e7e3e6,0x06e7e3e6,BackupEventLogA
0xf23356b7,0xf23356b7,BackupEventLogW
0xb17b745d,0xb17b745d,BackupRead
0xfd14cbad,0xfd14cbad,BackupSeek
0xbb4e8fd8,0xbb4e8fd8,BackupWrite
0xf428ab32,0xf428ab32,BaseCheckAppcompatCache
0xabf9ae2a,0xabf9ae2a,BaseCheckAppcompatCacheEx
0xcb5fb711,0xcb5fb711,BaseCheckRunApp
0x97348a6,0x097348a6,BaseCleanupAppcompatCacheSupport
0x8724e62,0x08724e62,BaseDllReadWriteIniFile
0x1ac55488,0x1ac55488,BaseDumpAppcompatCache
0x21013c14,0x21013c14,BaseFlushAppcompatCache
0xb6cf1c57,0xb6cf1c57,BaseFormatObjectAttributes
0xefe8499a,0xefe8499a,BaseFormatTimeOut
0x57d67551,0x57d67551,BaseGenerateAppCompatData
0xfc64d58a,0xfc64d58a,BaseGetNamedObjectDirectory
0x690b44fb,0x690b44fb,BaseInitAppcompatCacheSupport
0x4ae3a730,0x4ae3a730,BaseIsAppcompatInfrastructureDisabled
0xd957a352,0xd957a352,BaseQueryModuleData
0x1d471c0,0x01d471c0,BaseSetLastNTError
0x93ecf1b6,0x93ecf1b6,BaseThreadInitThunk
0xa16db69d,0xa16db69d,BaseUpdateAppcompatCache
0x5aa91bbd,0x5aa91bbd,BaseVerifyUnicodeString
0x16e7b714,0x16e7b714,Basep8BitStringToDynamicUnicodeString
0x6a3b8873,0x6a3b8873,BasepAllocateActivationContextActivationBlock
0xc93a12a,0x0c93a12a,BasepAnsiStringToDynamicUnicodeString
0x635e62c7,0x635e62c7,BasepCheckAppCompat
0xa125f5a9,0xa125f5a9,BasepCheckBadapp
0x75532ba6,0x75532ba6,BasepCheckWinSaferRestrictions
0xb5097322,0xb5097322,BasepFreeActivationContextActivationBlock
0x654229ab,0x654229ab,BasepFreeAppCompatData
0x51c519b9,0x51c519b9,BasepMapModuleHandle
0xb6f80781,0xb6f80781,Beep
0xcd64eea8,0xcd64eea8,BeginDeferWindowPos
0x47cac564,0x47cac564,BeginPaint
0x616fa295,0x616fa295,BeginPath
0x93864791,0x93864791,BeginUpdateResourceA
0x6752f2c0,0x6752f2c0,BeginUpdateResourceW
0xa6c7a1d7,0xa6c7a1d7,BindIoCompletionCallback
0x1f210fe4,0x1f210fe4,BindMoniker
0x51f2a3c5,0x51f2a3c5,BitBlt
0x436310b7,0x436310b7,BlockInput
0xd103555c,0xd103555c,BoundaryDescriptor
0xa96951c6,0xa96951c6,BringWindowToTop
0x8f78f7a,0x08f78f7a,BroadcastSystemMessage
0x586fd1ee,0x586fd1ee,BroadcastSystemMessageA
0xaaaa7c5c,0xaaaa7c5c,BroadcastSystemMessageExA
0x5e7ec90d,0x5e7ec90d,BroadcastSystemMessageExW
0xacbb64bf,0xacbb64bf,BroadcastSystemMessageW
0x59063a72,0x59063a72,BuildCommDCBA
0xabaa51bc,0xabaa51bc,BuildCommDCBAndTimeoutsA
0x5f7ee4ed,0x5f7ee4ed,BuildCommDCBAndTimeoutsW
0xadd28f23,0xadd28f23,BuildCommDCBW
0xaaf7bf14,0xaaf7bf14,BuildExplicitAccessWithNameA
0x5e230a45,0x5e230a45,BuildExplicitAccessWithNameW
0xa7348ce,0x0a7348ce,BuildImpersonateExplicitAccessWithNameA
0xfea7fd9f,0xfea7fd9f,BuildImpersonateExplicitAccessWithNameW
0xf6c68499,0xf6c68499,BuildImpersonateTrusteeA
0x21231c8,0x021231c8,BuildImpersonateTrusteeW
0x2a7eaf33,0x2a7eaf33,BuildReasonArray
0x99d8f15c,0x99d8f15c,BuildSecurityDescriptorA
0x6d0c440d,0x6d0c440d,BuildSecurityDescriptorW
0xf1815410,0xf1815410,BuildTrusteeWithNameA
0x555e141,0x0555e141,BuildTrusteeWithNameW
0xf30ec351,0xf30ec351,BuildTrusteeWithObjectsAndNameA
0x7da7600,0x07da7600,BuildTrusteeWithObjectsAndNameW
0xc217c8ff,0xc217c8ff,BuildTrusteeWithObjectsAndSidA
0x36c37dae,0x36c37dae,BuildTrusteeWithObjectsAndSidW
0x2013833c,0x2013833c,BuildTrusteeWithSidA
0xd4c7366d,0xd4c7366d,BuildTrusteeWithSidW
0xadc6bc5a,0xadc6bc5a,ByHandleA
0x5912090b,0x5912090b,ByHandleW
0x3b6cd551,0x3b6cd551,ByeByeGDI
0x4b92aef9,0x4b92aef9,CDefFolderMenu_Create2
0x1d0a3655,0x1d0a3655,CERTAltNameTemplate
0xb7e0cae4,0xb7e0cae4,CERTAuthInfoAccessItemTemplate
0x831651ea,0x831651ea,CERTAuthInfoAccessTemplate
0xf3441a33,0xf3441a33,CERTAuthKeyIDTemplate
0xf22316b6,0xf22316b6,CERTCRLDistributionPointsTemplate
0xc9aa4eb9,0xc9aa4eb9,CERTSignedDataTemplate
0xa7362009,0xa7362009,CERT_AddAVA
0x9dab0c05,0x9dab0c05,CERT_AddCertToListHead
0xbdd2776e,0xbdd2776e,CERT_AddCertToListHeadWithData
0x1a66bc61,0x1a66bc61,CERT_AddCertToListSorted
0x466f4ec4,0x466f4ec4,CERT_AddCertToListTail
0xac16467d,0xac16467d,CERT_AddCertToListTailWithData
0x2b23508f,0x2b23508f,CERT_AddExtension
0x3a4ce8a5,0x3a4ce8a5,CERT_AddExtensionByOID