forked from LagoLunatic/wwrando
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprofileresults.txt
1554 lines (1550 loc) · 120 KB
/
profileresults.txt
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
Randomization failed with error:
list indices must be integers or slices, not str
Traceback (most recent call last):
File "D:\Desktop\betterww src cos upd\wwr_ui\randomizer_window.py", line 1247, in run
next_option_description, options_finished = next(randomizer_generator)
File "D:\Desktop\betterww src cos upd\randomizer.py", line 142, in randomize
self.apply_necessary_tweaks()
File "D:\Desktop\betterww src cos upd\randomizer.py", line 203, in apply_necessary_tweaks
patcher.apply_patch(self, "custom_funcs")
File "D:\Desktop\betterww src cos upd\asm\patcher.py", line 30, in apply_patch
new_bytes = patchlet["Data"]
TypeError: list indices must be integers or slices, not str
8433937 function calls (8384113 primitive calls) in 11.682 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
157/1 0.001 0.000 11.682 11.682 {built-in method builtins.exec}
1 0.046 0.046 11.682 11.682 wwrando.py:3(<module>)
1 4.273 4.273 7.045 7.045 {built-in method exec_}
107 0.009 0.000 3.293 0.031 __init__.py:65(load)
107 0.000 0.000 3.278 0.031 constructor.py:33(get_single_data)
107 0.000 0.000 3.158 0.030 composer.py:29(get_single_node)
107 0.000 0.000 3.141 0.029 composer.py:50(compose_document)
27806/107 0.111 0.000 3.140 0.029 composer.py:63(compose_node)
2838/188 0.038 0.000 3.124 0.017 composer.py:117(compose_mapping_node)
79754 0.071 0.000 2.782 0.000 parser.py:94(check_event)
186/10 0.002 0.000 2.556 0.256 <frozen importlib._bootstrap>:978(_find_and_load)
186/10 0.001 0.000 2.556 0.256 <frozen importlib._bootstrap>:948(_find_and_load_unlocked)
178/12 0.001 0.000 2.548 0.212 <frozen importlib._bootstrap>:663(_load_unlocked)
279/16 0.000 0.000 2.546 0.159 <frozen importlib._bootstrap>:211(_call_with_frames_removed)
213110 0.185 0.000 2.237 0.000 scanner.py:113(check_token)
143/11 0.001 0.000 2.178 0.198 <frozen importlib._bootstrap_external>:722(exec_module)
1 0.000 0.000 2.108 2.108 randomizer_window.py:2(<module>)
1 0.000 0.000 2.082 2.082 update_checker.py:2(<module>)
1 0.178 0.178 2.076 2.076 randomizer_window.py:38(__init__)
9 0.000 0.000 2.047 0.227 __init__.py:88(safe_load)
1 0.000 0.000 1.887 1.887 randomizer.py:2(<module>)
1 0.000 0.000 1.762 1.762 rarc.py:2(<module>)
512 0.006 0.000 1.702 0.003 {built-in method builtins.__build_class__}
1 0.000 0.000 1.681 1.681 dzx.py:2(<module>)
1 0.000 0.000 1.679 1.679 data_tables.py:2(<module>)
1 0.000 0.000 1.678 1.678 data_tables.py:36(DataTables)
39340 0.131 0.000 1.658 0.000 scanner.py:153(fetch_more_tokens)
1 0.000 0.000 1.489 1.489 randomizer_window.py:146(randomize)
1 0.000 0.000 1.354 1.354 randomizer.py:73(__init__)
1 0.000 0.000 1.281 1.281 randomizer_window.py:242(randomization_failed)
1 1.278 1.278 1.278 1.278 {built-in method critical}
13353 0.027 0.000 1.268 0.000 parser.py:446(parse_block_mapping_value)
16090 0.043 0.000 1.250 0.000 parser.py:427(parse_block_mapping_key)
97 0.048 0.000 1.118 0.012 customizer.py:26(get_model_metadata)
1 0.001 0.001 1.110 1.110 data_tables.py:7(read_actor_info)
91 0.002 0.000 1.068 0.012 randomizer_window.py:1114(get_current_model_metadata_and_prefix)
1 0.001 0.001 1.051 1.051 randomizer_window.py:294(load_settings)
89 0.000 0.000 1.019 0.011 randomizer_window.py:1129(get_default_custom_colors_for_current_model)
24050 0.032 0.000 1.015 0.000 scanner.py:665(fetch_plain)
2 0.000 0.000 0.896 0.448 rarc.py:471(get_file)
1 0.002 0.002 0.893 0.893 bmg.py:9(__init__)
24050 0.265 0.000 0.890 0.000 scanner.py:1266(scan_plain)
4411 0.295 0.000 0.797 0.000 bmg.py:218(read_string)
1 0.004 0.004 0.622 0.622 randomizer_window.py:639(reload_custom_model)
27806 0.140 0.000 0.591 0.000 parser.py:273(parse_node)
26706 0.022 0.000 0.591 0.000 parser.py:270(parse_block_node_or_indentless_sequence)
1 0.001 0.001 0.567 0.567 data_tables.py:21(read_actor_params)
178/171 0.000 0.000 0.527 0.003 <frozen importlib._bootstrap>:576(module_from_spec)
13/12 0.000 0.000 0.520 0.043 <frozen importlib._bootstrap_external>:1040(create_module)
13/12 0.511 0.039 0.520 0.043 {built-in method _imp.create_dynamic}
36 0.002 0.000 0.503 0.014 randomizer_window.py:925(set_color)
1 0.000 0.000 0.503 0.503 logic.py:583(load_and_parse_item_locations)
577840 0.276 0.000 0.493 0.000 fs_helpers.py:118(read_u8)
342816 0.238 0.000 0.464 0.000 scanner.py:142(need_more_tokens)
48 0.001 0.000 0.463 0.010 randomizer_window.py:903(get_color)
2 0.000 0.000 0.373 0.186 randomizer_window.py:602(update_color_presets_list)
1 0.001 0.001 0.366 0.366 randomizer.py:245(read_text_file_lists)
534/319 0.003 0.000 0.336 0.001 composer.py:99(compose_sequence_node)
1 0.000 0.000 0.323 0.323 randomizer_window.py:769(reload_colors)
183648 0.284 0.000 0.301 0.000 reader.py:99(forward)
37225 0.109 0.000 0.261 0.000 scanner.py:1313(scan_plain_spaces)
1 0.007 0.007 0.258 0.258 ui_randomizer_window.py:14(setupUi)
2 0.249 0.125 0.249 0.125 {method 'addTab' of 'PySide2.QtWidgets.QTabWidget' objects}
39340 0.091 0.000 0.231 0.000 scanner.py:749(scan_to_next_token)
143 0.002 0.000 0.230 0.002 <frozen importlib._bootstrap_external>:793(get_code)
28308 0.070 0.000 0.215 0.000 ntpath.py:75(join)
24434 0.054 0.000 0.193 0.000 composer.py:88(compose_scalar_node)
1 0.000 0.000 0.181 0.181 randomizer_window.py:1138(update_model_preview)
355606 0.180 0.000 0.180 0.000 scanner.py:276(stale_possible_simple_keys)
1 0.000 0.000 0.176 0.176 request.py:68(<module>)
13353 0.080 0.000 0.170 0.000 scanner.py:542(fetch_value)
771598 0.158 0.000 0.161 0.000 reader.py:87(peek)
109729 0.093 0.000 0.149 0.000 reader.py:114(get_mark)
58962 0.052 0.000 0.148 0.000 scanner.py:132(get_token)
76119 0.102 0.000 0.138 0.000 ntpath.py:122(splitdrive)
40/26 0.000 0.000 0.124 0.005 {built-in method builtins.__import__}
28262 0.054 0.000 0.122 0.000 resolver.py:143(resolve)
107 0.001 0.000 0.120 0.001 constructor.py:40(construct_document)
972 0.002 0.000 0.118 0.000 parser.py:381(parse_block_sequence_entry)
398/305 0.000 0.000 0.108 0.000 <frozen importlib._bootstrap>:1009(_handle_fromlist)
613207 0.096 0.000 0.096 0.000 {built-in method _struct.unpack}
27806/15206 0.039 0.000 0.095 0.000 constructor.py:53(construct_object)
2 0.000 0.000 0.094 0.047 bmg.py:72(__init__)
1 0.007 0.007 0.093 0.093 bmg.py:95(read_inf1)
2737 0.004 0.000 0.092 0.000 parser.py:422(parse_block_mapping_first_key)
55130 0.046 0.000 0.091 0.000 scanner.py:1418(scan_line_break)
37 0.000 0.000 0.091 0.002 <frozen importlib._bootstrap_external>:785(source_to_code)
37 0.091 0.002 0.091 0.002 {built-in method builtins.compile}
1 0.000 0.000 0.089 0.089 client.py:69(<module>)
180 0.037 0.000 0.083 0.000 <frozen importlib._bootstrap_external>:914(get_data)
1 0.001 0.001 0.083 0.083 gcm.py:18(read_entire_disc)
4411 0.019 0.000 0.082 0.000 bmg.py:166(read)
1 0.003 0.003 0.081 0.081 gcm.py:35(read_filesystem)
24713 0.041 0.000 0.080 0.000 scanner.py:292(save_possible_simple_key)
101703 0.066 0.000 0.077 0.000 reader.py:94(prefix)
2391 0.005 0.000 0.076 0.000 gcm.py:396(read)
559653 0.071 0.000 0.074 0.000 {built-in method builtins.isinstance}
316266 0.071 0.000 0.071 0.000 scanner.py:261(next_possible_simple_key)
960 0.071 0.000 0.071 0.000 {built-in method nt.stat}
184 0.001 0.000 0.071 0.000 <frozen importlib._bootstrap>:882(_find_spec)
2216 0.001 0.000 0.069 0.000 customizer.py:131(parse_hex_color)
607559 0.069 0.000 0.069 0.000 {method 'seek' of '_io.BytesIO' objects}
167 0.000 0.000 0.069 0.000 <frozen importlib._bootstrap_external>:1272(find_spec)
167 0.001 0.000 0.068 0.000 <frozen importlib._bootstrap_external>:1240(_get_spec)
2112 0.052 0.000 0.068 0.000 customizer.py:143(parse_hex_color_old_format)
607446 0.067 0.000 0.067 0.000 {method 'read' of '_io.BytesIO' objects}
387 0.004 0.000 0.064 0.000 <frozen importlib._bootstrap_external>:1356(find_spec)
4170/2087 0.002 0.000 0.063 0.000 constructor.py:395(construct_yaml_map)
2085 0.002 0.000 0.061 0.000 constructor.py:201(construct_mapping)
855 0.001 0.000 0.060 0.000 <frozen importlib._bootstrap_external>:74(_path_stat)
15835 0.060 0.000 0.060 0.000 {method 'match' of 're.Pattern' objects}
109729 0.056 0.000 0.056 0.000 error.py:6(__init__)
1 0.000 0.000 0.053 0.053 parser.py:5(<module>)
2085 0.006 0.000 0.053 0.000 constructor.py:118(construct_mapping)
1 0.000 0.000 0.052 0.052 feedparser.py:20(<module>)
6 0.051 0.008 0.051 0.009 {method 'show' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.051 0.051 j3d.py:2(<module>)
753/235 0.007 0.000 0.050 0.000 constructor.py:133(construct_pairs)
2488 0.013 0.000 0.049 0.000 fs_helpers.py:60(read_str_until_null_character)
2 0.000 0.000 0.049 0.025 randomizer_window.py:1134(get_color_presets_for_current_model)
1 0.000 0.000 0.049 0.049 _policybase.py:4(<module>)
31404 0.013 0.000 0.048 0.000 scanner.py:125(peek_token)
1 0.000 0.000 0.048 0.048 bti.py:2(<module>)
1 0.000 0.000 0.047 0.047 customizer.py:514(get_model_preview_image)
476785 0.047 0.000 0.047 0.000 {built-in method builtins.chr}
143 0.046 0.000 0.046 0.000 {method 'read' of '_io.FileIO' objects}
1 0.000 0.000 0.039 0.039 hashlib.py:54(<module>)
1 0.000 0.000 0.038 0.038 utils.py:5(<module>)
1 0.000 0.000 0.038 0.038 Image.py:2549(open)
1 0.000 0.000 0.038 0.038 texture_utils.py:2(<module>)
1 0.000 0.000 0.038 0.038 Image.py:370(preinit)
1 0.000 0.000 0.037 0.037 __init__.py:2(<module>)
401096/400724 0.036 0.000 0.036 0.000 {built-in method builtins.len}
183176 0.033 0.000 0.033 0.000 {method 'append' of 'list' objects}
344 0.001 0.000 0.033 0.000 parser.py:376(parse_block_sequence_first_entry)
94179 0.032 0.000 0.032 0.000 {method 'pop' of 'list' objects}
2711 0.006 0.000 0.032 0.000 re.py:271(_compile)
2 0.000 0.000 0.031 0.015 randomizer_window.py:345(update_settings)
37 0.000 0.000 0.030 0.001 <frozen importlib._bootstrap_external>:956(_cache_bytecode)
288 0.000 0.000 0.030 0.000 <frozen importlib._bootstrap_external>:84(_path_is_mode_type)
1 0.000 0.000 0.030 0.030 tempfile.py:24(<module>)
1 0.000 0.000 0.029 0.029 shutil.py:5(<module>)
226 0.000 0.000 0.028 0.000 <frozen importlib._bootstrap_external>:93(_path_isfile)
37 0.000 0.000 0.028 0.001 <frozen importlib._bootstrap_external>:961(set_data)
12013 0.007 0.000 0.028 0.000 fs_helpers.py:126(read_u32)
3 0.000 0.000 0.027 0.009 randomizer_window.py:888(disable_invalid_cosmetic_options)
1 0.000 0.000 0.027 0.027 Image.py:30(<module>)
1 0.000 0.000 0.026 0.026 ssl.py:91(<module>)
19189 0.006 0.000 0.026 0.000 constructor.py:387(construct_yaml_str)
37 0.003 0.000 0.026 0.001 <frozen importlib._bootstrap_external>:105(_write_atomic)
507 0.001 0.000 0.025 0.000 parser.py:476(parse_flow_sequence_entry)
39447 0.019 0.000 0.025 0.000 scanner.py:322(unwind_indent)
307/97 0.002 0.000 0.025 0.000 customizer.py:573(<lambda>)
38047 0.025 0.000 0.025 0.000 {method 'read' of '_io.BufferedReader' objects}
24434 0.015 0.000 0.025 0.000 constructor.py:159(construct_scalar)
40365 0.025 0.000 0.025 0.000 {method 'seek' of '_io.BufferedReader' objects}
1 0.000 0.000 0.025 0.025 randomizer_window.py:596(initialize_color_presets_list)
1 0.000 0.000 0.024 0.024 socket.py:47(<module>)
122 0.022 0.000 0.023 0.000 {built-in method io.open}
1 0.000 0.000 0.023 0.023 JpegImagePlugin.py:35(<module>)
53 0.000 0.000 0.022 0.000 sre_compile.py:759(compile)
34421 0.022 0.000 0.022 0.000 tokens.py:3(__init__)
23231 0.012 0.000 0.022 0.000 fs_helpers.py:122(read_u16)
46 0.000 0.000 0.021 0.000 re.py:232(compile)
1 0.000 0.000 0.020 0.020 TiffImagePlugin.py:42(<module>)
24050 0.012 0.000 0.019 0.000 scanner.py:728(check_plain)
771 0.001 0.000 0.018 0.000 parser.py:264(parse_block_node)
2356 0.002 0.000 0.018 0.000 re.py:180(search)
1 0.000 0.000 0.018 0.018 loader.py:2(<module>)
24648 0.015 0.000 0.015 0.000 events.py:65(__init__)
4 0.000 0.000 0.015 0.004 __init__.py:1(<module>)
4854 0.007 0.000 0.014 0.000 constructor.py:223(construct_yaml_int)
306/1 0.001 0.000 0.014 0.014 logic.py:966(<lambda>)
1 0.000 0.000 0.014 0.014 bz2.py:5(<module>)
2 0.000 0.000 0.014 0.007 randomizer_window.py:341(save_settings)
81171 0.013 0.000 0.013 0.000 {method 'replace' of 'str' objects}
1 0.000 0.000 0.013 0.013 fractions.py:4(<module>)
2 0.000 0.000 0.013 0.006 __init__.py:195(dump)
2 0.000 0.000 0.013 0.006 __init__.py:162(dump_all)
24434 0.013 0.000 0.013 0.000 tokens.py:98(__init__)
1 0.001 0.001 0.013 0.013 randomizer_window.py:1220(__init__)
2 0.000 0.000 0.013 0.006 representer.py:25(represent)
24648 0.012 0.000 0.012 0.000 nodes.py:27(__init__)
104 0.000 0.000 0.012 0.000 genericpath.py:27(isfile)
140/137 0.001 0.000 0.012 0.000 randomizer_window.py:1269(<lambda>)
37 0.012 0.000 0.012 0.000 {built-in method nt.replace}
53 0.000 0.000 0.012 0.000 sre_compile.py:598(_code)
2 0.000 0.000 0.011 0.006 serializer.py:46(serialize)
107 0.001 0.000 0.011 0.000 parser.py:139(parse_implicit_document_start)
31606 0.009 0.000 0.011 0.000 parser.py:114(get_event)
13353 0.008 0.000 0.011 0.000 scanner.py:718(check_value)
106 0.000 0.000 0.011 0.000 <frozen importlib._bootstrap_external>:523(_compile_bytecode)
105025 0.011 0.000 0.011 0.000 {built-in method nt.fspath}
242/2 0.001 0.000 0.011 0.005 serializer.py:78(serialize_node)
1 0.000 0.000 0.011 0.011 decimal.py:2(<module>)
14449 0.011 0.000 0.011 0.000 scanner.py:38(__init__)
1 0.000 0.000 0.011 0.011 selectors.py:5(<module>)
106 0.010 0.000 0.010 0.000 {built-in method marshal.loads}
1068/853 0.001 0.000 0.010 0.000 constructor.py:390(construct_yaml_seq)
1 0.000 0.000 0.010 0.010 tweaks.py:2(<module>)
1 0.000 0.000 0.010 0.010 cyaml.py:2(<module>)
534 0.000 0.000 0.010 0.000 constructor.py:110(construct_sequence)
278 0.000 0.000 0.010 0.000 emitter.py:111(emit)
1 0.000 0.000 0.010 0.010 lzma.py:9(<module>)
534 0.000 0.000 0.009 0.000 constructor.py:115(<listcomp>)
53 0.000 0.000 0.009 0.000 sre_parse.py:919(parse)
178 0.000 0.000 0.009 0.000 parser.py:471(parse_flow_sequence_first_entry)
384 0.000 0.000 0.009 0.000 scanner.py:651(fetch_double)
2536 0.009 0.000 0.009 0.000 {method 'search' of 're.Pattern' objects}
153/53 0.001 0.000 0.009 0.000 sre_parse.py:417(_parse_sub)
1 0.000 0.000 0.009 0.009 header.py:5(<module>)
384 0.001 0.000 0.008 0.000 scanner.py:654(fetch_flow_scalar)
189 0.007 0.000 0.008 0.000 {method 'read' of '_io.TextIOWrapper' objects}
213/56 0.003 0.000 0.008 0.000 sre_parse.py:475(_parse)
1 0.000 0.000 0.008 0.008 logic.py:2(<module>)
49326 0.008 0.000 0.008 0.000 {method 'get' of 'dict' objects}
2527 0.005 0.000 0.008 0.000 {method 'decode' of 'bytes' objects}
24434 0.006 0.000 0.008 0.000 constructor.py:103(construct_scalar)
14017 0.007 0.000 0.008 0.000 scanner.py:346(add_indent)
180 0.007 0.000 0.008 0.000 sre_compile.py:276(_optimize_charset)
384 0.001 0.000 0.008 0.000 scanner.py:1131(scan_flow_scalar)
37 0.008 0.000 0.008 0.000 {built-in method nt.open}
1 0.000 0.000 0.008 0.008 pyscript:1(<module>)
143 0.000 0.000 0.007 0.000 <frozen importlib._bootstrap_external>:951(path_stats)
323/53 0.002 0.000 0.007 0.000 sre_compile.py:71(_compile)
28048 0.007 0.000 0.007 0.000 resolver.py:91(descend_resolver)
1 0.000 0.000 0.007 0.007 BmpImagePlugin.py:27(<module>)
664 0.003 0.000 0.007 0.000 scanner.py:481(fetch_block_entry)
48791 0.007 0.000 0.007 0.000 {method 'extend' of 'list' objects}
15 0.000 0.000 0.007 0.000 <frozen importlib._bootstrap_external>:1404(_fill_cache)
16098 0.007 0.000 0.007 0.000 {method 'insert' of 'list' objects}
1 0.000 0.000 0.006 0.006 reader.py:18(<module>)
1 0.000 0.000 0.006 0.006 reader.py:45(Reader)
107 0.001 0.000 0.006 0.000 loader.py:23(__init__)
15 0.006 0.000 0.006 0.000 {built-in method nt.listdir}
27806 0.006 0.000 0.006 0.000 parser.py:107(peek_event)
1 0.000 0.000 0.006 0.006 Image.py:709(tobytes)
2085 0.005 0.000 0.006 0.000 constructor.py:166(flatten_mapping)
26878 0.006 0.000 0.006 0.000 {method 'join' of 'str' objects}
28048 0.005 0.000 0.005 0.000 resolver.py:114(ascend_resolver)
333 0.001 0.000 0.005 0.000 reader.py:146(update)
24 0.002 0.000 0.005 0.000 enum.py:135(__new__)
15723 0.005 0.000 0.005 0.000 scanner.py:309(remove_possible_simple_key)
329 0.000 0.000 0.005 0.000 parser.py:267(parse_flow_node)
1 0.000 0.000 0.005 0.005 traceback.py:1(<module>)
53 0.000 0.000 0.005 0.000 sre_compile.py:536(_compile_info)
242 0.000 0.000 0.005 0.000 emitter.py:232(expect_node)
37 0.005 0.000 0.005 0.000 {method 'setStyleSheet' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.005 0.005 ImagePalette.py:19(<module>)
1 0.000 0.000 0.004 0.004 __init__.py:97(<module>)
1002 0.001 0.000 0.004 0.000 enum.py:284(__call__)
1 0.000 0.000 0.004 0.004 message.py:5(<module>)
1 0.000 0.000 0.004 0.004 randomizer_window.py:583(initialize_custom_player_model_list)
1 0.000 0.000 0.004 0.004 ImageFile.py:135(load)
4411 0.004 0.000 0.004 0.000 bmg.py:139(__init__)
88 0.000 0.000 0.004 0.000 emitter.py:395(expect_block_mapping_key)
1 0.000 0.000 0.004 0.004 customizer.py:157(get_all_custom_model_names)
178 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap>:504(_init_module_attrs)
2 0.000 0.000 0.004 0.002 randomizer.py:326(get_arc)
1964 0.002 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:56(_path_join)
1 0.000 0.000 0.004 0.004 resolver.py:2(<module>)
12 0.000 0.000 0.004 0.000 enum.py:633(_convert)
16 0.004 0.000 0.004 0.000 {method 'decode' of 'ImagingDecoder' objects}
384 0.001 0.000 0.004 0.000 scanner.py:1181(scan_flow_scalar_non_spaces)
1 0.000 0.000 0.004 0.004 glob.py:9(glob)
102/49 0.000 0.000 0.004 0.000 glob.py:39(_iglob)
1 0.000 0.000 0.003 0.003 charts.py:8(__init__)
1 0.000 0.000 0.003 0.003 dumper.py:2(<module>)
1 0.000 0.000 0.003 0.003 linecache.py:6(<module>)
48 0.000 0.000 0.003 0.000 parser.py:402(parse_indentless_sequence_entry)
101 0.000 0.000 0.003 0.000 parser.py:537(parse_flow_mapping_first_key)
1 0.000 0.000 0.003 0.003 disassemble.py:2(<module>)
7053 0.002 0.000 0.003 0.000 abc.py:137(__instancecheck__)
1 0.000 0.000 0.003 0.003 randomizer.py:222(verify_supported_version)
87 0.000 0.000 0.003 0.000 reader.py:177(update_raw)
107 0.001 0.000 0.003 0.000 reader.py:59(__init__)
2 0.000 0.000 0.003 0.002 rarc.py:44(read)
186 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap>:147(__enter__)
15 0.000 0.000 0.003 0.000 fs_helpers.py:43(read_str)
5 0.000 0.000 0.003 0.001 fs_helpers.py:52(try_read_str)
2463 0.002 0.000 0.003 0.000 types.py:164(__get__)
37 0.003 0.000 0.003 0.000 {method 'write' of '_io.FileIO' objects}
328 0.001 0.000 0.003 0.000 randomizer_window.py:524(get_option_value)
1 0.003 0.003 0.003 0.003 {method 'reset' of 'PySide2.QtWidgets.QProgressDialog' objects}
286 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:271(cache_from_source)
1 0.000 0.000 0.003 0.003 __init__.py:71(search_function)
37 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:536(_code_to_timestamp_pyc)
101 0.000 0.000 0.003 0.000 parser.py:542(parse_flow_mapping_key)
1 0.000 0.000 0.003 0.003 _parseaddr.py:7(<module>)
1 0.000 0.000 0.003 0.003 quoprimime.py:27(<module>)
174 0.000 0.000 0.003 0.000 reader.py:138(check_printable)
1 0.000 0.000 0.003 0.003 __init__.py:15(<module>)
12 0.000 0.000 0.003 0.000 enum.py:389(_create_)
100 0.003 0.000 0.003 0.000 {method 'connect' of 'PySide2.QtCore.SignalInstance' objects}
37 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:381(_calc_mode)
17 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap>:740(create_module)
17 0.003 0.000 0.003 0.000 {built-in method _imp.create_builtin}
214 0.000 0.000 0.003 0.000 emitter.py:266(expect_scalar)
93 0.000 0.000 0.002 0.000 rarc.py:570(read)
192 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:157(_get_module_lock)
3400 0.002 0.000 0.002 0.000 events.py:22(__init__)
299 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:403(cached)
453 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1203(_path_importer_cache)
305 0.001 0.000 0.002 0.000 logic.py:781(parse_logic_expression)
62 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:98(_path_isdir)
1 0.000 0.000 0.002 0.002 tokenize.py:21(<module>)
52 0.000 0.000 0.002 0.000 glob.py:85(_glob0)
3 0.000 0.000 0.002 0.001 gcm.py:110(read_file_data)
61 0.000 0.000 0.002 0.000 charts.py:38(__init__)
214 0.002 0.000 0.002 0.000 emitter.py:626(analyze_scalar)
84 0.000 0.000 0.002 0.000 emitter.py:437(check_simple_key)
37 0.002 0.000 0.002 0.000 {built-in method marshal.dumps}
156 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:369(_get_cached)
214 0.000 0.000 0.002 0.000 emitter.py:515(process_scalar)
11815 0.002 0.000 0.002 0.000 {method 'startswith' of 'str' objects}
54 0.002 0.000 0.002 0.000 {method 'setText' of 'PySide2.QtWidgets.QLineEdit' objects}
206 0.001 0.000 0.002 0.000 enum.py:830(__or__)
52 0.000 0.000 0.002 0.000 ntpath.py:238(lexists)
52 0.002 0.000 0.002 0.000 {built-in method nt.lstat}
279 0.001 0.000 0.002 0.000 scanner.py:450(fetch_flow_collection_end)
96 0.000 0.000 0.002 0.000 emitter.py:376(expect_block_sequence_item)
84 0.000 0.000 0.002 0.000 emitter.py:409(expect_block_mapping_simple_value)
1 0.000 0.000 0.002 0.002 jpc.py:2(<module>)
214 0.001 0.000 0.002 0.000 emitter.py:1079(write_plain)
1 0.000 0.000 0.002 0.002 decoder.py:2(<module>)
178/1 0.002 0.000 0.002 0.002 gcm.py:49(read_directory)
1 0.000 0.000 0.002 0.002 charset.py:6(<module>)
15 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1190(_path_hooks)
7053 0.002 0.000 0.002 0.000 {built-in method _abc._abc_instancecheck}
1 0.000 0.000 0.002 0.002 subprocess.py:42(<module>)
279 0.001 0.000 0.002 0.000 scanner.py:427(fetch_flow_collection_start)
3400 0.002 0.000 0.002 0.000 nodes.py:36(__init__)
3 0.000 0.000 0.002 0.001 fs_helpers.py:23(read_bytes)
13 0.001 0.000 0.002 0.000 __init__.py:316(namedtuple)
1964 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:58(<listcomp>)
107 0.001 0.000 0.002 0.000 scanner.py:48(__init__)
1 0.000 0.000 0.002 0.002 GifImagePlugin.py:27(<module>)
2742 0.001 0.000 0.002 0.000 sre_parse.py:254(get)
244 0.001 0.000 0.002 0.000 charts.py:94(__init__)
186 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:58(__init__)
107 0.000 0.000 0.001 0.000 parser.py:127(parse_stream_start)
1 0.000 0.000 0.001 0.001 datetime.py:5(<module>)
4 0.000 0.000 0.001 0.000 re.py:215(findall)
169 0.000 0.000 0.001 0.000 cp1252.py:22(decode)
2339 0.001 0.000 0.001 0.000 enum.py:628(value)
10 0.000 0.000 0.001 0.000 reader.py:122(determine_encoding)
323 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:62(_path_split)
1 0.000 0.000 0.001 0.001 message.py:105(Message)
224 0.001 0.000 0.001 0.000 scanner.py:467(fetch_flow_entry)
242 0.000 0.000 0.001 0.000 emitter.py:469(process_tag)
1 0.000 0.000 0.001 0.001 constructor.py:2(<module>)
1958 0.001 0.000 0.001 0.000 {built-in method builtins.getattr}
242/2 0.000 0.000 0.001 0.001 representer.py:32(represent_data)
156 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1351(_get_spec)
6386 0.001 0.000 0.001 0.000 {method 'group' of 're.Match' objects}
4/2 0.000 0.000 0.001 0.001 randomizer_window.py:1273(<lambda>)
4/2 0.000 0.000 0.001 0.001 representer.py:204(represent_dict)
4/2 0.000 0.000 0.001 0.001 representer.py:102(represent_mapping)
178 0.000 0.000 0.001 0.000 scanner.py:444(fetch_flow_sequence_end)
3509 0.001 0.000 0.001 0.000 events.py:5(__init__)
178 0.000 0.000 0.001 0.000 scanner.py:421(fetch_flow_sequence_start)
1 0.000 0.000 0.001 0.001 constructor.py:157(SafeConstructor)
1 0.000 0.000 0.001 0.001 rarc.py:606(decompress_data_if_necessary)
1 0.000 0.000 0.001 0.001 string.py:15(<module>)
1 0.000 0.000 0.001 0.001 calendar.py:6(<module>)
376 0.001 0.000 0.001 0.000 {built-in method _thread.allocate_lock}
166 0.001 0.000 0.001 0.000 {method 'itemText' of 'PySide2.QtWidgets.QComboBox' objects}
301 0.001 0.000 0.001 0.000 enum.py:70(__setitem__)
1 0.000 0.000 0.001 0.001 randomizer_window.py:226(update_progress_dialog)
2619 0.001 0.000 0.001 0.000 {built-in method builtins.next}
169 0.001 0.000 0.001 0.000 {built-in method _codecs.charmap_decode}
247 0.000 0.000 0.001 0.000 randomizer_window.py:506(eventFilter)
214 0.000 0.000 0.001 0.000 emitter.py:494(choose_scalar_style)
3362 0.001 0.000 0.001 0.000 sre_parse.py:233(__next)
1 0.001 0.001 0.001 0.001 yaz0.py:21(decompress)
1 0.001 0.001 0.001 0.001 {method 'setValue' of 'PySide2.QtWidgets.QProgressDialog' objects}
1 0.000 0.000 0.001 0.001 base64.py:3(<module>)
107 0.000 0.000 0.001 0.000 scanner.py:368(fetch_stream_end)
1995 0.001 0.000 0.001 0.000 sre_parse.py:164(__getitem__)
107 0.000 0.000 0.001 0.000 scanner.py:356(fetch_stream_start)
1 0.000 0.000 0.001 0.001 encoders.py:5(<module>)
116 0.000 0.000 0.001 0.000 _bootlocale.py:11(getpreferredencoding)
1 0.000 0.000 0.001 0.001 shift_jis.py:7(<module>)
1 0.000 0.000 0.001 0.001 error.py:12(<module>)
474 0.001 0.000 0.001 0.000 {built-in method __new__ of type object at 0x00007FFF303659A0}
20 0.001 0.000 0.001 0.000 {method 'encode' of 'ImagingEncoder' objects}
305 0.000 0.000 0.001 0.000 re.py:205(split)
1 0.000 0.000 0.001 0.001 string.py:65(__init__)
990 0.001 0.000 0.001 0.000 enum.py:526(__new__)
2213 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr}
241 0.000 0.000 0.001 0.000 enum.py:836(__and__)
1 0.001 0.001 0.001 0.001 calendar.py:69(_localized_day)
824 0.000 0.000 0.001 0.000 {method 'write' of '_io.TextIOWrapper' objects}
1 0.000 0.000 0.001 0.001 threading.py:1(<module>)
2115 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:222(_verbose_message)
378/113 0.001 0.000 0.001 0.000 sre_parse.py:174(getwidth)
101 0.000 0.000 0.001 0.000 scanner.py:447(fetch_flow_mapping_end)
178 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:318(__exit__)
186 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:151(__exit__)
1 0.000 0.000 0.001 0.001 parse.py:28(<module>)
12 0.000 0.000 0.001 0.000 enum.py:654(<listcomp>)
156 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:574(spec_from_file_location)
15 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1445(path_hook_for_FileFinder)
1 0.000 0.000 0.001 0.001 version.py:27(<module>)
4 0.000 0.000 0.001 0.000 ssl.py:367(__new__)
4 0.001 0.000 0.001 0.000 {built-in method _ssl.txt2obj}
2391 0.001 0.000 0.001 0.000 gcm.py:390(__init__)
24 0.000 0.000 0.001 0.000 emitter.py:373(expect_first_block_sequence_item)
1 0.000 0.000 0.001 0.001 scanner.py:2(<module>)
101 0.000 0.000 0.001 0.000 scanner.py:424(fetch_flow_mapping_start)
20 0.001 0.000 0.001 0.000 {method 'addLayout' of 'PySide2.QtWidgets.QBoxLayout' objects}
1 0.000 0.000 0.001 0.001 threading.py:1186(__init__)
305 0.000 0.000 0.001 0.000 constructor.py:219(construct_yaml_bool)
4 0.001 0.000 0.001 0.000 {method 'findall' of 're.Pattern' objects}
2102 0.001 0.000 0.001 0.000 {method 'update' of 'dict' objects}
192 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:103(release)
24 0.000 0.000 0.001 0.000 enum.py:177(<setcomp>)
24 0.000 0.000 0.001 0.000 abc.py:125(__new__)
186 0.000 0.000 0.001 0.000 rarc.py:595(is_dir)
116 0.001 0.000 0.001 0.000 {built-in method _locale._getdefaultlocale}
106 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:438(_classify_pyc)
158 0.000 0.000 0.001 0.000 emitter.py:813(write_indent)
1 0.000 0.000 0.001 0.001 glob.py:79(_glob1)
377 0.000 0.000 0.001 0.000 enum.py:376(__setattr__)
394 0.000 0.000 0.001 0.000 {built-in method builtins.setattr}
1 0.001 0.001 0.001 0.001 {method 'setCurrentIndex' of 'PySide2.QtWidgets.QTabWidget' objects}
556 0.000 0.000 0.001 0.000 emitter.py:120(need_more_events)
1 0.001 0.001 0.001 0.001 {method 'scaled' of 'PySide2.QtGui.QPixmap' objects}
84 0.000 0.000 0.001 0.000 emitter.py:580(prepare_tag)
107 0.000 0.000 0.001 0.000 parser.py:159(parse_document_start)
1 0.001 0.001 0.001 0.001 {method 'setWidget' of 'PySide2.QtWidgets.QScrollArea' objects}
1 0.000 0.000 0.001 0.001 random.py:38(<module>)
826 0.000 0.000 0.000 0.000 cp1252.py:18(encode)
1 0.000 0.000 0.000 0.000 copy.py:49(<module>)
1 0.000 0.000 0.000 0.000 pathlib.py:1(<module>)
107 0.000 0.000 0.000 0.000 parser.py:190(parse_document_end)
1 0.000 0.000 0.000 0.000 version.py:93(StrictVersion)
4329 0.000 0.000 0.000 0.000 {method 'rstrip' of 'str' objects}
1 0.000 0.000 0.000 0.000 signal.py:1(<module>)
192 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:78(acquire)
1 0.000 0.000 0.000 0.000 encoder.py:2(<module>)
24 0.000 0.000 0.000 0.000 representer.py:189(represent_list)
664 0.000 0.000 0.000 0.000 scanner.py:703(check_block_entry)
24 0.000 0.000 0.000 0.000 representer.py:84(represent_sequence)
27 0.000 0.000 0.000 0.000 {method 'setText' of 'PySide2.QtWidgets.QLabel' objects}
494 0.000 0.000 0.000 0.000 {method 'type' of 'PySide2.QtCore.QEvent' objects}
4734 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects}
1 0.000 0.000 0.000 0.000 {built-in method fromImage}
53 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__)
1 0.000 0.000 0.000 0.000 glob.py:1(<module>)
100 0.000 0.000 0.000 0.000 ntpath.py:178(split)
305 0.000 0.000 0.000 0.000 logic.py:783(<listcomp>)
186 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:176(cb)
1 0.000 0.000 0.000 0.000 bisect.py:1(<module>)
1010 0.000 0.000 0.000 0.000 sre_parse.py:249(match)
1 0.000 0.000 0.000 0.000 request.py:940(AbstractBasicAuthHandler)
1 0.000 0.000 0.000 0.000 _encoded_words.py:6(<module>)
11 0.000 0.000 0.000 0.000 enum.py:793(_missing_)
184 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:719(find_spec)
61/48 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix)
66 0.000 0.000 0.000 0.000 {method 'setText' of 'PySide2.QtWidgets.QAbstractButton' objects}
1 0.000 0.000 0.000 0.000 __init__.py:15(_setupQtDirectories)
111 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:46(_w_long)
11 0.000 0.000 0.000 0.000 enum.py:800(_create_pseudo_member_)
60 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup)
1 0.000 0.000 0.000 0.000 __init__.py:24(<module>)
1 0.000 0.000 0.000 0.000 TiffTags.py:20(<module>)
216 0.000 0.000 0.000 0.000 {built-in method builtins.any}
1 0.000 0.000 0.000 0.000 rel.py:2(<module>)
156 0.000 0.000 0.000 0.000 emitter.py:826(write_line_break)
1 0.000 0.000 0.000 0.000 entrances.py:2(<module>)
1 0.000 0.000 0.000 0.000 threading.py:899(_set_tstate_lock)
1 0.000 0.000 0.000 0.000 PngImagePlugin.py:34(<module>)
305 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects}
1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel}
16 0.000 0.000 0.000 0.000 PngImagePlugin.py:612(load_read)
518 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:859(__exit__)
4 0.000 0.000 0.000 0.000 emitter.py:392(expect_first_block_mapping_key)
414 0.000 0.000 0.000 0.000 {method 'readline' of '_io.TextIOWrapper' objects}
1 0.000 0.000 0.000 0.000 {method 'join' of 'bytes' objects}
11 0.000 0.000 0.000 0.000 enum.py:872(_decompose)
156 0.000 0.000 0.000 0.000 emitter.py:799(write_indicator)
151 0.000 0.000 0.000 0.000 {method 'currentIndex' of 'PySide2.QtWidgets.QComboBox' objects}
167 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:792(find_spec)
1 0.000 0.000 0.000 0.000 fnmatch.py:48(filter)
60 0.000 0.000 0.000 0.000 {method 'addItem' of 'PySide2.QtWidgets.QComboBox' objects}
24 0.000 0.000 0.000 0.000 enum.py:125(__prepare__)
271 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:416(parent)
1233 0.000 0.000 0.000 0.000 {method 'rpartition' of 'str' objects}
1 0.000 0.000 0.000 0.000 threading.py:763(__init__)
318 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:51(_r_long)
180 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset)
109 0.000 0.000 0.000 0.000 events.py:37(__init__)
50 0.000 0.000 0.000 0.000 ntpath.py:219(dirname)
1 0.000 0.000 0.000 0.000 ui_randomizer_window.py:268(retranslateUi)
1 0.000 0.000 0.000 0.000 threading.py:499(__init__)
558 0.000 0.000 0.000 0.000 sre_parse.py:172(append)
1 0.000 0.000 0.000 0.000 errors.py:5(<module>)
26 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap)
1 0.000 0.000 0.000 0.000 version.py:267(LooseVersion)
1 0.000 0.000 0.000 0.000 __init__.py:5(HTTPStatus)
1 0.000 0.000 0.000 0.000 threading.py:216(__init__)
14 0.000 0.000 0.000 0.000 hashlib.py:116(__get_openssl_constructor)
46 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased}
194 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:369(__init__)
242 0.000 0.000 0.000 0.000 representer.py:134(ignore_aliases)
1 0.000 0.000 0.000 0.000 Image.py:2593(_open_core)
53 0.000 0.000 0.000 0.000 glob.py:114(_iterdir)
1 0.000 0.000 0.000 0.000 {built-in method _codecs_jp.getcodec}
816 0.000 0.000 0.000 0.000 {built-in method builtins.min}
107 0.000 0.000 0.000 0.000 tokens.py:33(__init__)
122 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple)
664 0.000 0.000 0.000 0.000 scanner.py:687(check_document_start)
1 0.000 0.000 0.000 0.000 ImageFile.py:78(__init__)
360 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__)
214 0.000 0.000 0.000 0.000 representer.py:76(represent_scalar)
24 0.000 0.000 0.000 0.000 enum.py:474(_find_new_)
143 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:401(_check_name_wrapper)
522 0.000 0.000 0.000 0.000 sre_parse.py:286(tell)
3 0.000 0.000 0.000 0.000 {method 'setWindowTitle' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.000 0.000 PngImagePlugin.py:544(_open)
2 0.000 0.000 0.000 0.000 emitter.py:214(expect_document_end)
106 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:471(_validate_timestamp_pyc)
518 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:855(__enter__)
4 0.000 0.000 0.000 0.000 emitter.py:787(flush_stream)
242/2 0.000 0.000 0.000 0.000 serializer.py:60(anchor_node)
329 0.000 0.000 0.000 0.000 {method 'rsplit' of 'str' objects}
826 0.000 0.000 0.000 0.000 {built-in method _codecs.charmap_encode}
2381 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects}
1 0.000 0.000 0.000 0.000 genericpath.py:16(exists)
713 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__)
387 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:36(_relax_case)
471 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects}
36 0.000 0.000 0.000 0.000 colorsys.py:124(rgb_to_hsv)
107 0.000 0.000 0.000 0.000 parser.py:81(__init__)
4 0.000 0.000 0.000 0.000 {method 'flush' of '_io.TextIOWrapper' objects}
1 0.000 0.000 0.000 0.000 {method 'setWindowFlags' of 'PySide2.QtWidgets.QWidget' objects}
177 0.000 0.000 0.000 0.000 {method 'isChecked' of 'PySide2.QtWidgets.QAbstractButton' objects}
247 0.000 0.000 0.000 0.000 {function WWRandomizerWindow.eventFilter at 0x000001E71F439168}
48 0.000 0.000 0.000 0.000 ntpath.py:212(basename)
48 0.000 0.000 0.000 0.000 {method 'setVisible' of 'PySide2.QtWidgets.QWidget' objects}
80 0.000 0.000 0.000 0.000 {method 'addWidget' of 'PySide2.QtWidgets.QBoxLayout' objects}
25 0.000 0.000 0.000 0.000 PngImagePlugin.py:104(read)
60 0.000 0.000 0.000 0.000 enum.py:442(_get_mixins_)
28 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1114(__iter__)
8 0.000 0.000 0.000 0.000 hashlib.py:73(__get_builtin_constructor)
1 0.000 0.000 0.000 0.000 {built-in method math.sqrt}
228 0.000 0.000 0.000 0.000 enum.py:18(_is_descriptor)
107 0.000 0.000 0.000 0.000 constructor.py:18(__init__)
668 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
301 0.000 0.000 0.000 0.000 enum.py:26(_is_dunder)
522 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects}
147 0.000 0.000 0.000 0.000 sre_parse.py:408(_uniq)
89 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
1 0.000 0.000 0.000 0.000 {method 'setCancelButton' of 'PySide2.QtWidgets.QProgressDialog' objects}
148 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:35(_new_module)
1 0.000 0.000 0.000 0.000 randomizer.py:527(convert_string_to_integer_md5)
178 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:311(__enter__)
301 0.000 0.000 0.000 0.000 enum.py:34(_is_sunder)
40 0.000 0.000 0.000 0.000 {method 'setChecked' of 'PySide2.QtWidgets.QAbstractButton' objects}
9 0.000 0.000 0.000 0.000 enum.py:890(<listcomp>)
24 0.000 0.000 0.000 0.000 randomizer_window.py:542(set_option_value)
167 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen}
1 0.000 0.000 0.000 0.000 TiffTags.py:348(_populate)
1 0.000 0.000 0.000 0.000 numbers.py:6(<module>)
2 0.000 0.000 0.000 0.000 {method 'setLabelText' of 'PySide2.QtWidgets.QProgressDialog' objects}
1 0.000 0.000 0.000 0.000 logic.py:13(Logic)
1 0.000 0.000 0.000 0.000 {method 'hexdigest' of '_hashlib.HASH' objects}
2 0.000 0.000 0.000 0.000 {method 'start' of 'PySide2.QtCore.QThread' objects}
24 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
60 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup)
896 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
242 0.000 0.000 0.000 0.000 emitter.py:146(increase_indent)
90 0.000 0.000 0.000 0.000 emitter.py:133(need_events)
1 0.000 0.000 0.000 0.000 randomizer_window.py:575(set_option_description)
118 0.000 0.000 0.000 0.000 {method 'setObjectName' of 'PySide2.QtCore.QObject' objects}
92 0.000 0.000 0.000 0.000 representer.py:145(represent_str)
1 0.000 0.000 0.000 0.000 paths.py:2(<module>)
1 0.000 0.000 0.000 0.000 randomizer_window.py:267(preserve_default_settings)
1 0.000 0.000 0.000 0.000 representer.py:2(<module>)
9 0.000 0.000 0.000 0.000 datetime.py:473(__new__)
143 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:884(__init__)
1 0.000 0.000 0.000 0.000 fnmatch.py:38(_compile_pattern)
712 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:321(<genexpr>)
1 0.000 0.000 0.000 0.000 tokens.py:2(<module>)
148 0.000 0.000 0.000 0.000 {method 'extend' of 'bytearray' objects}
1 0.000 0.000 0.000 0.000 datetime.py:454(timedelta)
896 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
72 0.000 0.000 0.000 0.000 {built-in method nt.getcwd}
15 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1319(__init__)
180 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects}
28 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1101(_recalculate)
318 0.000 0.000 0.000 0.000 {built-in method from_bytes}
109 0.000 0.000 0.000 0.000 events.py:46(__init__)
1 0.000 0.000 0.000 0.000 {built-in method sys.getwindowsversion}
17 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:433(spec_from_loader)
1 0.000 0.000 0.000 0.000 events.py:4(<module>)
1 0.000 0.000 0.000 0.000 {built-in method nt.scandir}
36 0.000 0.000 0.000 0.000 {method 'setFixedWidth' of 'PySide2.QtWidgets.QWidget' objects}
72 0.000 0.000 0.000 0.000 representer.py:162(represent_int)
1 0.000 0.000 0.000 0.000 ImageFile.py:30(<module>)
26 0.000 0.000 0.000 0.000 sre_compile.py:413(<listcomp>)
637 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
305 0.000 0.000 0.000 0.000 logic.py:598(<listcomp>)
1 0.000 0.000 0.000 0.000 customizer.py:2(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:259(_reset_cache)
1 0.000 0.000 0.000 0.000 struct.py:3(<module>)
122 0.000 0.000 0.000 0.000 fs_helpers.py:135(read_s8)
1 0.000 0.000 0.000 0.000 dol.py:17(read)
305 0.000 0.000 0.000 0.000 logic.py:784(<listcomp>)
106 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
42 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix)
15 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1433(<setcomp>)
1 0.000 0.000 0.000 0.000 {built-in method _struct.pack}
214 0.000 0.000 0.000 0.000 emitter.py:18(__init__)
60 0.000 0.000 0.000 0.000 enum.py:453(_find_data_type)
175 0.000 0.000 0.000 0.000 socket.py:86(<lambda>)
67 0.000 0.000 0.000 0.000 sre_parse.py:343(_escape)
50 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape)
1 0.000 0.000 0.000 0.000 _compression.py:1(<module>)
1 0.000 0.000 0.000 0.000 gcm.py:74(read_system_data)
174 0.000 0.000 0.000 0.000 socket.py:81(<lambda>)
3 0.000 0.000 0.000 0.000 __init__.py:340(__init__)
86 0.000 0.000 0.000 0.000 constructor.py:206(construct_yaml_null)
228 0.000 0.000 0.000 0.000 sre_parse.py:81(groups)
178 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:307(__init__)
2 0.000 0.000 0.000 0.000 os.py:681(__setitem__)
186 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:143(__init__)
25 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil)
543 0.000 0.000 0.000 0.000 {method 'items' of 'collections.OrderedDict' objects}
3 0.000 0.000 0.000 0.000 random.py:97(seed)
141 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__)
377 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects}
10 0.000 0.000 0.000 0.000 PngImagePlugin.py:136(call)
103 0.000 0.000 0.000 0.000 TiffTags.py:26(__new__)
114 0.000 0.000 0.000 0.000 codecs.py:260(__init__)
107 0.000 0.000 0.000 0.000 parser.py:89(dispose)
53 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
385 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
1 0.000 0.000 0.000 0.000 fs_helpers.py:31(read_and_unpack_bytes)
33 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1097(_get_parent_path)
173 0.000 0.000 0.000 0.000 socket.py:76(<lambda>)
1 0.000 0.000 0.000 0.000 randomizer.py:530(get_new_rng)
17 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:748(exec_module)
25 0.000 0.000 0.000 0.000 {method 'tell' of '_io.BufferedReader' objects}
2 0.000 0.000 0.000 0.000 {built-in method nt.putenv}
29 0.000 0.000 0.000 0.000 {method 'addWidget' of 'PySide2.QtWidgets.QGridLayout' objects}
24 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects}
5 0.000 0.000 0.000 0.000 rarc.py:533(read)
109 0.000 0.000 0.000 0.000 resolver.py:21(__init__)
117 0.000 0.000 0.000 0.000 {built-in method builtins.max}
3 0.000 0.000 0.000 0.000 tokenize.py:132(_all_string_prefixes)
1 0.000 0.000 0.000 0.000 events.py:2(<module>)
103 0.000 0.000 0.000 0.000 {built-in method _stat.S_ISREG}
2 0.000 0.000 0.000 0.000 random.py:88(__init__)
2 0.000 0.000 0.000 0.000 dumper.py:47(__init__)
1 0.000 0.000 0.000 0.000 TiffImagePlugin.py:408(ImageFileDirectory_v2)
1 0.000 0.000 0.000 0.000 {built-in method connectSlotsByName}
1 0.000 0.000 0.000 0.000 _endian.py:1(<module>)
7 0.000 0.000 0.000 0.000 {method 'removeItem' of 'PySide2.QtWidgets.QComboBox' objects}
1 0.000 0.000 0.000 0.000 scanner.py:27(<module>)
1 0.000 0.000 0.000 0.000 rel.py:420(RELRelocationType)
38 0.000 0.000 0.000 0.000 {built-in method translate}
2 0.000 0.000 0.000 0.000 enum.py:850(__invert__)
176 0.000 0.000 0.000 0.000 socket.py:91(<lambda>)
54 0.000 0.000 0.000 0.000 ntpath.py:44(normcase)
58 0.000 0.000 0.000 0.000 __init__.py:20(__new__)
53 0.000 0.000 0.000 0.000 sre_parse.py:903(fix_flags)
1 0.000 0.000 0.000 0.000 texture_utils.py:24(ImageFormat)
1 0.000 0.000 0.000 0.000 bmg.py:2(<module>)
106 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring)
1 0.000 0.000 0.000 0.000 socket.py:133(socket)
1 0.000 0.000 0.000 0.000 emitter.py:9(<module>)
1 0.000 0.000 0.000 0.000 quoprimime.py:55(<listcomp>)
2 0.000 0.000 0.000 0.000 {method 'close' of '_io.BufferedReader' objects}
726 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects}
242 0.000 0.000 0.000 0.000 emitter.py:459(process_anchor)
1 0.000 0.000 0.000 0.000 PpmImagePlugin.py:18(<module>)
24 0.000 0.000 0.000 0.000 enum.py:335(__getattr__)
2 0.000 0.000 0.000 0.000 ntpath.py:523(abspath)
397 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
6 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:194(_lock_unlock_module)
1 0.000 0.000 0.000 0.000 response.py:7(<module>)
9 0.000 0.000 0.000 0.000 PngImagePlugin.py:142(crc)
109 0.000 0.000 0.000 0.000 events.py:55(__init__)
540 0.000 0.000 0.000 0.000 {built-in method builtins.ord}
50 0.000 0.000 0.000 0.000 representer.py:155(represent_bool)
14 0.000 0.000 0.000 0.000 __init__.py:139(_check_size)
1 0.000 0.000 0.000 0.000 nodes.py:2(<module>)
1 0.000 0.000 0.000 0.000 parser.py:62(<module>)
3 0.000 0.000 0.000 0.000 __init__.py:73(CFUNCTYPE)
13 0.000 0.000 0.000 0.000 {built-in method sys.intern}
143 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:909(get_filename)
8 0.000 0.000 0.000 0.000 resolver.py:25(add_implicit_resolver)
111 0.000 0.000 0.000 0.000 {method 'to_bytes' of 'int' objects}
3 0.000 0.000 0.000 0.000 {function Random.seed at 0x000001E71EA30A68}
1 0.000 0.000 0.000 0.000 gcm.py:2(<module>)
2 0.000 0.000 0.000 0.000 ntpath.py:450(normpath)
2 0.000 0.000 0.000 0.000 __init__.py:431(__getattr__)
2 0.000 0.000 0.000 0.000 charts.py:2(<module>)
1 0.000 0.000 0.000 0.000 token.py:1(<module>)
53 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__)
28 0.000 0.000 0.000 0.000 enum.py:907(_power_of_two)
1 0.000 0.000 0.000 0.000 string.py:78(Template)
1 0.000 0.000 0.000 0.000 items.py:2(<module>)
107 0.000 0.000 0.000 0.000 composer.py:13(__init__)
4 0.000 0.000 0.000 0.000 {method 'addLayout' of 'PySide2.QtWidgets.QGridLayout' objects}
1 0.000 0.000 0.000 0.000 serializer.py:2(<module>)
1 0.000 0.000 0.000 0.000 error.py:2(<module>)
17 0.000 0.000 0.000 0.000 {built-in method builtins.repr}
1 0.000 0.000 0.000 0.000 composer.py:2(<module>)
85 0.000 0.000 0.000 0.000 {built-in method builtins.sorted}
1 0.000 0.000 0.000 0.000 PngImagePlugin.py:604(load_prepare)
5 0.000 0.000 0.000 0.000 abc.py:130(register)
13 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1048(exec_module)
1 0.000 0.000 0.000 0.000 _policybase.py:99(_extend_docstrings)
1 0.000 0.000 0.000 0.000 ImageFile.py:258(load_prepare)
503 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
122 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
2 0.000 0.000 0.000 0.000 serializer.py:27(open)
1 0.000 0.000 0.000 0.000 yaz0_decomp.py:2(<module>)
2 0.000 0.000 0.000 0.000 __init__.py:1925(getLogger)
1 0.000 0.000 0.000 0.000 GimpGradientFile.py:16(<module>)
1 0.000 0.000 0.000 0.000 {built-in method PIL._imaging.new}
38 0.000 0.000 0.000 0.000 _binary.py:76(i32be)
1 0.000 0.000 0.000 0.000 threading.py:744(Thread)
2 0.000 0.000 0.000 0.000 emitter.py:38(__init__)
2 0.000 0.000 0.000 0.000 {built-in method _ctypes.POINTER}
24 0.000 0.000 0.000 0.000 enum.py:152(<dictcomp>)
10/6 0.000 0.000 0.000 0.000 abc.py:141(__subclasscheck__)
5 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register}
1 0.000 0.000 0.000 0.000 yaz0.py:2(<module>)
86 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags)
2 0.000 0.000 0.000 0.000 __init__.py:1216(getLogger)
17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin}
28 0.000 0.000 0.000 0.000 constructor.py:145(add_constructor)
1 0.000 0.000 0.000 0.000 os.py:40(_get_exports_list)
1 0.000 0.000 0.000 0.000 fractions.py:60(Fraction)
1 0.000 0.000 0.000 0.000 dol.py:2(<module>)
18 0.000 0.000 0.000 0.000 PngImagePlugin.py:90(_crc32)
2 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes)
2 0.000 0.000 0.000 0.000 {method 'setMinimumSize' of 'PySide2.QtWidgets.QWidget' objects}
10/6 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck}
1 0.000 0.000 0.000 0.000 fs_helpers.py:2(<module>)
124 0.000 0.000 0.000 0.000 ssl.py:129(<lambda>)
1 0.000 0.000 0.000 0.000 __init__.py:42(__getattr__)
1 0.000 0.000 0.000 0.000 signal.py:45(signal)
12 0.000 0.000 0.000 0.000 {method 'sizePolicy' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.000 0.000 ssl.py:801(SSLSocket)
1 0.000 0.000 0.000 0.000 token.py:78(<dictcomp>)
124 0.000 0.000 0.000 0.000 ssl.py:124(<lambda>)
162 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass}
4 0.000 0.000 0.000 0.000 functools.py:37(update_wrapper)
7 0.000 0.000 0.000 0.000 PngImagePlugin.py:430(chunk_tEXt)
1 0.000 0.000 0.000 0.000 j3d.py:738(LoopMode)
50 0.000 0.000 0.000 0.000 wwrando.py:42(<lambda>)
100 0.000 0.000 0.000 0.000 ntpath.py:34(_get_bothseps)
112 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects}
1 0.000 0.000 0.000 0.000 ssl.py:158(TLSVersion)
178 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:424(has_location)
24 0.000 0.000 0.000 0.000 enum.py:64(__init__)
124 0.000 0.000 0.000 0.000 ssl.py:139(<lambda>)
1 0.000 0.000 0.000 0.000 Image.py:452(_getencoder)
1 0.000 0.000 0.000 0.000 {method 'setWindowIcon' of 'PySide2.QtWidgets.QWidget' objects}
33 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1087(_find_parent_path_names)
124 0.000 0.000 0.000 0.000 ssl.py:134(<lambda>)
2 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5}
124 0.000 0.000 0.000 0.000 ssl.py:144(<lambda>)
104 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects}
93 0.000 0.000 0.000 0.000 rarc.py:563(__init__)
17 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:232(_requires_builtin_wrapper)
1 0.000 0.000 0.000 0.000 GimpPaletteFile.py:17(<module>)
2 0.000 0.000 0.000 0.000 {built-in method nt._isdir}
1 0.000 0.000 0.000 0.000 randomizer_window.py:257(show_update_check_results)
124 0.000 0.000 0.000 0.000 ssl.py:149(<lambda>)
18 0.000 0.000 0.000 0.000 {built-in method zlib.crc32}
124 0.000 0.000 0.000 0.000 enum.py:623(name)
1 0.000 0.000 0.000 0.000 rarc.py:648(RARCFileAttrType)
7 0.000 0.000 0.000 0.000 TiffImagePlugin.py:628(_register_basic)
103 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased)
24 0.000 0.000 0.000 0.000 emitter.py:368(expect_block_sequence)
12 0.000 0.000 0.000 0.000 {method 'setSizePolicy' of 'PySide2.QtWidgets.QWidget' objects}
143 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:719(create_module)
1 0.000 0.000 0.000 0.000 {built-in method _warnings.warn}
1 0.000 0.000 0.000 0.000 randomizer_window.py:1237(__init__)
3 0.000 0.000 0.000 0.000 {method 'setEnabled' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.000 0.000 representer.py:132(SafeRepresenter)
2 0.000 0.000 0.000 0.000 __init__.py:374(__getattr__)
3 0.000 0.000 0.000 0.000 __init__.py:489(PYFUNCTYPE)
1 0.000 0.000 0.000 0.000 options.py:2(<module>)
6 0.000 0.000 0.000 0.000 Image.py:2726(register_open)
1 0.000 0.000 0.000 0.000 packedbits.py:2(<module>)
1 0.000 0.000 0.000 0.000 datetime.py:2136(timezone)
3 0.000 0.000 0.000 0.000 datetime.py:1517(__new__)
1 0.000 0.000 0.000 0.000 uu.py:31(<module>)
1 0.000 0.000 0.000 0.000 bti.py:14(FilterMode)
30 0.000 0.000 0.000 0.000 enum.py:855(_high_bit)
1 0.000 0.000 0.000 0.000 ui_randomizer_window.py:11(<module>)
1 0.000 0.000 0.000 0.000 {built-in method sys.exit}
1 0.000 0.000 0.000 0.000 {built-in method builtins.print}
2 0.000 0.000 0.000 0.000 functools.py:492(decorating_function)
5 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1081(__init__)
28 0.000 0.000 0.000 0.000 signal.py:10(<lambda>)
1 0.000 0.000 0.000 0.000 __init__.py:1140(__init__)
1 0.000 0.000 0.000 0.000 __future__.py:48(<module>)
2 0.000 0.000 0.000 0.000 serializer.py:36(close)
53 0.000 0.000 0.000 0.000 glob.py:82(<genexpr>)
1 0.000 0.000 0.000 0.000 {built-in method PIL._imaging.raw_encoder}
1 0.000 0.000 0.000 0.000 Image.py:430(_getdecoder)
2 0.000 0.000 0.000 0.000 __init__.py:381(__getitem__)
1 0.000 0.000 0.000 0.000 patcher.py:2(<module>)
38 0.000 0.000 0.000 0.000 {built-in method _struct.unpack_from}
1 0.000 0.000 0.000 0.000 __init__.py:802(__init__)
1 0.000 0.000 0.000 0.000 fnmatch.py:11(<module>)
2 0.000 0.000 0.000 0.000 emitter.py:226(expect_document_root)
1 0.000 0.000 0.000 0.000 _util.py:1(<module>)
1 0.000 0.000 0.000 0.000 randomizer_window.py:1194(closeEvent)
1 0.000 0.000 0.000 0.000 signal.py:25(_int_to_enum)
120 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1325(<genexpr>)
10 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile)
1 0.000 0.000 0.000 0.000 stage_searcher.py:2(<module>)
25 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize}
1 0.000 0.000 0.000 0.000 calendar.py:50(_localized_month)
1 0.000 0.000 0.000 0.000 pathlib.py:119(_WindowsFlavour)
1 0.000 0.000 0.000 0.000 threading.py:513(set)
1 0.000 0.000 0.000 0.000 PaletteFile.py:16(<module>)
4 0.000 0.000 0.000 0.000 emitter.py:178(expect_document_start)
5 0.000 0.000 0.000 0.000 TiffImagePlugin.py:614(decorator)
1 0.000 0.000 0.000 0.000 pathlib.py:611(PurePath)
1 0.000 0.000 0.000 0.000 {built-in method builtins.dir}
1 0.000 0.000 0.000 0.000 item_types.py:59(<module>)
1 0.000 0.000 0.000 0.000 calendar.py:148(Calendar)
24 0.000 0.000 0.000 0.000 emitter.py:422(check_empty_sequence)
1 0.000 0.000 0.000 0.000 Image.py:2897(_apply_env_variables)
1 0.000 0.000 0.000 0.000 {built-in method PIL._imaging.zip_decoder}
1 0.000 0.000 0.000 0.000 ImageSequence.py:19(<module>)
1 0.000 0.000 0.000 0.000 {method 'setPixmap' of 'PySide2.QtWidgets.QLabel' objects}
1 0.000 0.000 0.000 0.000 ssl.py:383(Purpose)
5 0.000 0.000 0.000 0.000 os.py:673(__getitem__)
2 0.000 0.000 0.000 0.000 enum.py:883(<listcomp>)
1 0.000 0.000 0.000 0.000 Image.py:516(Image)
1 0.000 0.000 0.000 0.000 {method 'start' of 'PySide2.QtCore.QTimer' objects}
1 0.000 0.000 0.000 0.000 ssl.py:390(SSLContext)
2 0.000 0.000 0.000 0.000 {method 'setTabText' of 'PySide2.QtWidgets.QTabWidget' objects}
1 0.000 0.000 0.000 0.000 j3d.py:368(MDLCommandType)
26 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects}
103 0.000 0.000 0.000 0.000 enum.py:659(<lambda>)
79 0.000 0.000 0.000 0.000 __init__.py:388(<genexpr>)
1 0.000 0.000 0.000 0.000 texture_utils.py:37(PaletteFormat)
1 0.000 0.000 0.000 0.000 bti.py:9(WrapMode)
1 0.000 0.000 0.000 0.000 ImageMode.py:17(<module>)
6 0.000 0.000 0.000 0.000 _policybase.py:94(_append_doc)
1 0.000 0.000 0.000 0.000 {method 'setCentralWidget' of 'PySide2.QtWidgets.QMainWindow' objects}
23 0.000 0.000 0.000 0.000 {method 'installEventFilter' of 'PySide2.QtCore.QObject' objects}
96 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
67 0.000 0.000 0.000 0.000 codecs.py:281(getstate)
1 0.000 0.000 0.000 0.000 rarc.py:560(FileEntry)
1 0.000 0.000 0.000 0.000 ImageColor.py:20(<module>)
1 0.000 0.000 0.000 0.000 TiffImagePlugin.py:291(IFDRational)
79 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects}
2 0.000 0.000 0.000 0.000 __init__.py:1267(_fixupParents)
2 0.000 0.000 0.000 0.000 threading.py:75(RLock)
1 0.000 0.000 0.000 0.000 j3d.py:745(TangentType)
1 0.000 0.000 0.000 0.000 _binary.py:14(<module>)
2 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects}
50 0.000 0.000 0.000 0.000 enum.py:198(<genexpr>)
1 0.000 0.000 0.000 0.000 abc.py:1(<module>)
1 0.000 0.000 0.000 0.000 {method 'values' of 'mappingproxy' objects}
1 0.000 0.000 0.000 0.000 randomizer_window.py:139(sanitize_seed)
1 0.000 0.000 0.000 0.000 os.py:44(<listcomp>)
1 0.000 0.000 0.000 0.000 posixpath.py:11(<module>)
5 0.000 0.000 0.000 0.000 datetime.py:396(_check_date_fields)
25 0.000 0.000 0.000 0.000 <string>:1(__new__)
3 0.000 0.000 0.000 0.000 __init__.py:1336(__init__)
65 0.000 0.000 0.000 0.000 {built-in method builtins.id}
36 0.000 0.000 0.000 0.000 enum.py:610(__hash__)
2 0.000 0.000 0.000 0.000 rarc.py:17(__init__)
10 0.000 0.000 0.000 0.000 __init__.py:1356(debug)
1 0.000 0.000 0.000 0.000 {built-in method time.time}
1 0.000 0.000 0.000 0.000 calendar.py:52(<listcomp>)
2 0.000 0.000 0.000 0.000 emitter.py:175(expect_first_document_start)
2 0.000 0.000 0.000 0.000 datetime.py:1187(__new__)
1 0.000 0.000 0.000 0.000 datetime.py:1092(tzinfo)
7 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects}
3 0.000 0.000 0.000 0.000 Image.py:2786(register_extensions)
1 0.000 0.000 0.000 0.000 __init__.py:43(normalize_encoding)
12 0.000 0.000 0.000 0.000 {method 'setRetainSizeWhenHidden' of 'PySide2.QtWidgets.QSizePolicy' objects}
3 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__)
1 0.000 0.000 0.000 0.000 randomizer_window.py:34(WWRandomizerWindow)
6 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table)
1 0.000 0.000 0.000 0.000 numbers.py:32(Complex)
20 0.000 0.000 0.000 0.000 tokenize.py:107(group)
21 0.000 0.000 0.000 0.000 representer.py:64(add_representer)
54 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
12 0.000 0.000 0.000 0.000 Image.py:2775(register_extension)
24 0.000 0.000 0.000 0.000 tokenize.py:143(<listcomp>)
1 0.000 0.000 0.000 0.000 base64mime.py:25(<module>)
1 0.000 0.000 0.000 0.000 datetime.py:1509(datetime)
24 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
1 0.000 0.000 0.000 0.000 threading.py:358(notify_all)
7 0.000 0.000 0.000 0.000 os.py:743(encodekey)
13 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1029(__init__)
30 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects}
5 0.000 0.000 0.000 0.000 datetime.py:409(_check_time_fields)
1 0.000 0.000 0.000 0.000 weakref.py:102(__init__)
15 0.000 0.000 0.000 0.000 enum.py:360(__members__)
1 0.000 0.000 0.000 0.000 shift_jis.py:30(getregentry)
1 0.000 0.000 0.000 0.000 decoder.py:284(__init__)
1 0.000 0.000 0.000 0.000 threading.py:567(Barrier)
1 0.000 0.000 0.000 0.000 ImageChops.py:18(<module>)
1 0.000 0.000 0.000 0.000 iterators.py:5(<module>)
51 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod)
1 0.000 0.000 0.000 0.000 client.py:106(<dictcomp>)
5 0.000 0.000 0.000 0.000 {method 'count' of 'PySide2.QtWidgets.QComboBox' objects}
2 0.000 0.000 0.000 0.000 Image.py:807(load)
35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field)
2 0.000 0.000 0.000 0.000 charset.py:211(__init__)
2 0.000 0.000 0.000 0.000 datetime.py:804(__new__)
2 0.000 0.000 0.000 0.000 {built-in method maketrans}
53 0.000 0.000 0.000 0.000 glob.py:152(_ishidden)
1 0.000 0.000 0.000 0.000 {built-in method _signal.signal}
15 0.000 0.000 0.000 0.000 ssl.py:795(_sslcopydoc)
1 0.000 0.000 0.000 0.000 __init__.py:783(_addHandlerRef)
6 0.000 0.000 0.000 0.000 glob.py:145(has_magic)
4 0.000 0.000 0.000 0.000 {method 'addItem' of 'PySide2.QtWidgets.QBoxLayout' objects}
1 0.000 0.000 0.000 0.000 request.py:323(Request)
6 0.000 0.000 0.000 0.000 {method 'text' of 'PySide2.QtWidgets.QLineEdit' objects}
2 0.000 0.000 0.000 0.000 {built-in method _ctypes.LoadLibrary}
1 0.000 0.000 0.000 0.000 subprocess.py:608(Popen)
1 0.000 0.000 0.000 0.000 datetime.py:646(__neg__)
74 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects}
29 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects}
1 0.000 0.000 0.000 0.000 threading.py:335(notify)
10 0.000 0.000 0.000 0.000 __init__.py:1614(isEnabledFor)
4 0.000 0.000 0.000 0.000 __init__.py:212(_acquireLock)
1 0.000 0.000 0.000 0.000 {built-in method math.exp}
1 0.000 0.000 0.000 0.000 {method 'setMaximumSize' of 'PySide2.QtWidgets.QWidget' objects}
9 0.000 0.000 0.000 0.000 {built-in method builtins.round}
1 0.000 0.000 0.000 0.000 JpegPresets.py:67(<module>)
3 0.000 0.000 0.000 0.000 sre_parse.py:843(_parse_flags)
28 0.000 0.000 0.000 0.000 {built-in method builtins.iter}
1 0.000 0.000 0.000 0.000 datetime.py:1162(time)
1 0.000 0.000 0.000 0.000 pathlib.py:993(Path)
1 0.000 0.000 0.000 0.000 client.py:227(HTTPResponse)
1 0.000 0.000 0.000 0.000 client.py:789(HTTPConnection)
1 0.000 0.000 0.000 0.000 message.py:945(MIMEPart)
1 0.000 0.000 0.000 0.000 bz2.py:28(BZ2File)
1 0.000 0.000 0.000 0.000 scanner.py:46(Scanner)
13 0.000 0.000 0.000 0.000 {built-in method _imp.exec_dynamic}
1 0.000 0.000 0.000 0.000 ssl.py:642(SSLObject)
1 0.000 0.000 0.000 0.000 PngImagePlugin.py:335(chunk_IHDR)
38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof}
1 0.000 0.000 0.000 0.000 request.py:1663(URLopener)
1 0.000 0.000 0.000 0.000 __init__.py:9(<module>)
1 0.000 0.000 0.000 0.000 {method 'quit' of 'PySide2.QtCore.QThread' objects}
1 0.000 0.000 0.000 0.000 datetime.py:774(date)
4 0.000 0.000 0.000 0.000 emitter.py:388(expect_block_mapping)
1 0.000 0.000 0.000 0.000 {method 'setFrameShape' of 'PySide2.QtWidgets.QFrame' objects}
1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects}
1 0.000 0.000 0.000 0.000 quopri.py:3(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:1679(LoggerAdapter)
1 0.000 0.000 0.000 0.000 emitter.py:31(Emitter)
4 0.000 0.000 0.000 0.000 {method 'blockSignals' of 'PySide2.QtCore.QObject' objects}
72 0.000 0.000 0.000 0.000 {built-in method builtins.abs}
45 0.000 0.000 0.000 0.000 {built-in method builtins.divmod}
1 0.000 0.000 0.000 0.000 bmg.py:8(BMG)
1 0.000 0.000 0.000 0.000 random.py:72(Random)
1 0.000 0.000 0.000 0.000 calendar.py:72(<listcomp>)
2 0.000 0.000 0.000 0.000 serializer.py:15(__init__)
1 0.000 0.000 0.000 0.000 {method 'setGeometry' of 'PySide2.QtWidgets.QWidget' objects}
1 0.000 0.000 0.000 0.000 tempfile.py:627(SpooledTemporaryFile)
1 0.000 0.000 0.000 0.000 numbers.py:147(Real)
32 0.000 0.000 0.000 0.000 enum.py:901(<lambda>)
1 0.000 0.000 0.000 0.000 __init__.py:831(createLock)
1 0.000 0.000 0.000 0.000 TiffImagePlugin.py:1558(AppendingTiffWriter)
1 0.000 0.000 0.000 0.000 numbers.py:294(Integral)
1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile)
1 0.000 0.000 0.000 0.000 _policybase.py:112(Policy)
4 0.000 0.000 0.000 0.000 fractions.py:294(_operator_fallbacks)
6 0.000 0.000 0.000 0.000 Image.py:2752(register_save)
1 0.000 0.000 0.000 0.000 PngImagePlugin.py:417(chunk_pHYs)