-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver_profile.txt
More file actions
1101 lines (1099 loc) · 85.8 KB
/
server_profile.txt
File metadata and controls
1101 lines (1099 loc) · 85.8 KB
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
1193848004 function calls (1193720612 primitive calls) in 1033.031 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
2/1 0.318 0.159 1030.551 1030.551 threading.py:1030(_bootstrap)
39229 0.707 0.000 839.074 0.021 wod_server.py:1064(game_logic)
39229 0.338 0.000 800.249 0.020 wod_server.py:492(update_troops)
78458 3.153 0.000 570.170 0.007 wod_server.py:522(_update_player_troops)
1338611 7.903 0.000 568.418 0.000 wod_server.py:547(_update_troop)
5042490 364.299 0.000 497.987 0.000 wod_server.py:162(apply)
1338611 2.017 0.000 227.537 0.000 wod_server.py:794(_update_troop_vision_and_border)
78458 1.202 0.000 220.746 0.003 wod_server.py:505(_update_player_vision_and_border)
39863/14212 0.952 0.000 186.151 0.013 simple_socket.py:117(rcv)
1338611 22.416 0.000 113.434 0.000 wod_server.py:729(_check_collisions)
688385 4.058 0.000 110.051 0.000 wod_server.py:630(_move_troop_to_target)
39867/25664 0.460 0.000 108.323 0.004 simple_socket.py:103(send)
15742 103.567 0.007 103.567 0.007 {built-in method time.sleep}
75697595 54.982 0.000 96.468 0.000 wod_server.py:77(xy_to_dir_dis)
1338611 20.744 0.000 93.827 0.000 wod_server.py:576(_update_troop_health)
650226 1.056 0.000 87.210 0.000 wod_server.py:670(_move_troop_idle)
1338611 26.717 0.000 72.206 0.000 wod_server.py:696(_avoid_allies)
268081183 57.533 0.000 71.228 0.000 {built-in method builtins.min}
17071721 44.142 0.000 49.439 0.000 wod_server.py:90(get_grid_value)
233969970 47.606 0.000 47.606 0.000 {built-in method builtins.max}
8/4 0.000 0.000 41.469 10.367 threading.py:651(wait)
216844376 40.144 0.000 40.144 0.000 {built-in method math.sqrt}
10661625 16.172 0.000 31.136 0.000 wod_server.py:61(dir_dis_to_xy)
1338611 9.933 0.000 26.786 0.000 wod_server.py:810(_check_troop_in_city)
78458 8.181 0.000 21.136 0.000 wod_server.py:416(draw_info)
75697595 16.214 0.000 16.214 0.000 {built-in method math.atan2}
8/4 0.000 0.000 14.877 3.719 threading.py:337(wait)
75697595 14.744 0.000 14.744 0.000 {built-in method math.hypot}
6710350 4.779 0.000 13.550 0.000 wod_server.py:591(<lambda>)
3/1 0.000 0.000 11.714 11.714 simple_socket.py:96(accept)
3/1 0.000 0.000 11.714 11.714 socket.py:291(accept)
3/1 26.590 8.863 11.714 11.714 {method '_accept' of '_socket.socket' objects}
75697595 10.540 0.000 10.540 0.000 {built-in method math.degrees}
14297460 5.145 0.000 9.472 0.000 <string>:1(<lambda>)
39869 6.905 0.000 6.905 0.000 {orjson.dumps}
28927735 6.864 0.000 6.864 0.000 <string>:11(__eq__)
14298517/14298503 4.329 0.000 4.330 0.000 {built-in method __new__ of type object at 0x00007FF81EC24D90}
21323250 3.233 0.000 3.233 0.000 {built-in method math.radians}
79733/47389 4.691 0.000 3.192 0.000 {method 'sendall' of '_socket.socket' objects}
2677222 2.772 0.000 2.772 0.000 wod_server.py:477(get_terrain)
235376 2.486 0.000 2.486 0.000 {method 'copy' of 'numpy.ndarray' objects}
10661625 2.380 0.000 2.380 0.000 {built-in method math.cos}
39229 1.701 0.000 2.262 0.000 wod_server.py:824(update_cities)
119/1 0.002 0.000 2.167 2.167 {built-in method builtins.exec}
10661625 2.090 0.000 2.090 0.000 {built-in method math.sin}
2 2.065 1.032 2.065 1.032 {built-in method builtins.input}
4297236 1.947 0.000 1.947 0.000 {method 'index' of 'list' objects}
2697679 1.619 0.000 1.619 0.000 {built-in method builtins.sum}
79726/26872 68.473 0.001 1.610 0.000 {method 'recv' of '_socket.socket' objects}
1338611 1.147 0.000 1.535 0.000 wod_server.py:779(_apply_combat)
2/1 0.000 0.000 1.325 1.325 wod_server.py:1(<module>)
2/1 0.000 0.000 1.325 1.325 wod_server.py:949(run_game)
3806644 1.036 0.000 1.036 0.000 {method 'append' of 'list' objects}
4193250/4193158 0.903 0.000 0.903 0.000 {built-in method builtins.len}
1731037 0.527 0.000 0.527 0.000 {built-in method builtins.id}
12 0.001 0.000 0.425 0.035 __init__.py:1(<module>)
39862 0.351 0.000 0.351 0.000 {orjson.loads}
1 0.000 0.000 0.222 0.222 wod_server.py:916(__init__)
1 0.000 0.000 0.210 0.210 wod_server.py:207(__init__)
1 0.008 0.008 0.207 0.207 wod_server.py:302(generate_terrain)
134/8 0.001 0.000 0.195 0.024 <frozen importlib._bootstrap>:1360(_find_and_load)
134/8 0.001 0.000 0.195 0.024 <frozen importlib._bootstrap>:1308(_find_and_load_unlocked)
132/8 0.000 0.000 0.191 0.024 <frozen importlib._bootstrap>:914(_load_unlocked)
4080 0.002 0.000 0.191 0.000 perlin_noise.py:43(__call__)
115/8 0.000 0.000 0.191 0.024 <frozen importlib._bootstrap_external>:753(exec_module)
4080 0.020 0.000 0.189 0.000 perlin_noise.py:59(noise)
405/16 0.000 0.000 0.186 0.012 <frozen importlib._bootstrap>:483(_call_with_frames_removed)
16320 0.014 0.000 0.162 0.000 rand_vec.py:51(get_weighted_val)
483/18 0.000 0.000 0.154 0.009 {built-in method builtins.__import__}
149/22 0.000 0.000 0.144 0.007 <frozen importlib._bootstrap>:1401(_handle_fromlist)
39863 0.099 0.000 0.099 0.000 {method 'decode' of 'bytes' objects}
16320 0.024 0.000 0.097 0.000 rand_vec.py:37(weight_to)
1 0.000 0.000 0.079 0.079 __config__.py:1(<module>)
427489 0.075 0.000 0.075 0.000 wod_server.py:790(<lambda>)
115 0.001 0.000 0.065 0.001 <frozen importlib._bootstrap_external>:826(get_code)
39949 0.057 0.000 0.057 0.000 {method 'strip' of 'str' objects}
32640 0.035 0.000 0.048 0.000 rand_vec.py:23(dists_to)
79867 0.046 0.000 0.046 0.000 {method 'extend' of 'list' objects}
115 0.000 0.000 0.044 0.000 <frozen importlib._bootstrap_external>:947(get_data)
39862 0.043 0.000 0.043 0.000 {method 'join' of 'bytes' objects}
78458 0.043 0.000 0.043 0.000 {method 'reverse' of 'list' objects}
32640 0.023 0.000 0.041 0.000 tools.py:50(fade)
39270 0.040 0.000 0.040 0.000 {built-in method builtins.all}
1 0.000 0.000 0.040 0.040 _arraypad_impl.py:1(<module>)
1 0.000 0.000 0.039 0.039 _index_tricks_impl.py:1(<module>)
78460 0.037 0.000 0.037 0.000 {built-in method time.perf_counter}
39868 0.034 0.000 0.034 0.000 {method 'encode' of 'str' objects}
1 0.000 0.000 0.034 0.034 defmatrix.py:1(<module>)
115 0.034 0.000 0.034 0.000 {built-in method _io.open_code}
1 0.000 0.000 0.032 0.032 _linalg.py:1(<module>)
133 0.001 0.000 0.029 0.000 <frozen importlib._bootstrap>:1243(_find_spec)
124 0.000 0.000 0.027 0.000 <frozen importlib._bootstrap_external>:1284(find_spec)
124 0.000 0.000 0.026 0.000 <frozen importlib._bootstrap_external>:1255(_get_spec)
16377 0.017 0.000 0.026 0.000 tools.py:8(dot)
212 0.002 0.000 0.025 0.000 <frozen importlib._bootstrap_external>:1357(find_spec)
78542 0.019 0.000 0.019 0.000 threading.py:615(is_set)
8/7 0.000 0.000 0.019 0.003 <frozen importlib._bootstrap_external>:1059(exec_module)
8/7 0.005 0.001 0.019 0.003 {built-in method _imp.exec_dynamic}
97920 0.018 0.000 0.018 0.000 {built-in method math.pow}
1 0.000 0.000 0.017 0.017 _add_newdocs.py:1(<module>)
132 0.000 0.000 0.017 0.000 <frozen importlib._bootstrap>:809(module_from_spec)
1 0.000 0.000 0.017 0.017 multiarray.py:1(<module>)
496 0.000 0.000 0.016 0.000 <frozen importlib._bootstrap_external>:145(_path_stat)
496 0.016 0.000 0.016 0.000 {built-in method nt.stat}
1 0.000 0.000 0.014 0.014 einsumfunc.py:1(<module>)
350 0.001 0.000 0.014 0.000 function_base.py:490(add_newdoc)
1 0.000 0.000 0.013 0.013 numeric.py:1(<module>)
97920 0.013 0.000 0.013 0.000 rand_vec.py:33(<genexpr>)
373 0.007 0.000 0.013 0.000 inspect.py:790(cleandoc)
115 0.002 0.000 0.013 0.000 <frozen importlib._bootstrap_external>:509(_compile_bytecode)
8 0.000 0.000 0.012 0.002 <frozen importlib._bootstrap_external>:1051(create_module)
8 0.012 0.002 0.012 0.002 {built-in method _imp.create_dynamic}
1 0.006 0.006 0.012 0.012 {built-in method _socket.gethostbyname}
350 0.000 0.000 0.012 0.000 function_base.py:474(_add_docstring)
2 0.000 0.000 0.012 0.006 simple_socket.py:143(close)
159/142 0.000 0.000 0.011 0.000 typing.py:396(inner)
1 0.000 0.000 0.011 0.011 _internal.py:1(<module>)
115 0.011 0.000 0.011 0.000 {built-in method marshal.loads}
251/250 0.004 0.000 0.010 0.000 {built-in method builtins.__build_class__}
1045 0.006 0.000 0.009 0.000 <frozen importlib._bootstrap_external>:101(_path_join)
1 0.000 0.000 0.009 0.009 perlin_noise.py:1(<module>)
264 0.001 0.000 0.009 0.000 overrides.py:145(decorator)
1 0.000 0.000 0.009 0.009 shape_base.py:1(<module>)
1 0.000 0.000 0.008 0.008 _npyio_impl.py:1(<module>)
115 0.008 0.000 0.008 0.000 {method 'read' of '_io.BufferedReader' objects}
1 0.000 0.000 0.008 0.008 _array_like.py:1(<module>)
1 0.000 0.000 0.007 0.007 _char_codes.py:1(<module>)
50 0.000 0.000 0.007 0.000 typing.py:570(__getitem__)
1 0.000 0.000 0.007 0.007 fromnumeric.py:1(<module>)
135 0.001 0.000 0.007 0.000 typing.py:1341(__init__)
50 0.001 0.000 0.007 0.000 typing.py:749(Literal)
376 0.000 0.000 0.007 0.000 <frozen importlib._bootstrap>:466(_lock_unlock_module)
510 0.002 0.000 0.006 0.000 <frozen importlib._bootstrap>:304(acquire)
1 0.000 0.000 0.006 0.006 __init__.py:71(search_function)
1 0.000 0.000 0.005 0.005 _methods.py:1(<module>)
18 0.000 0.000 0.005 0.000 __init__.py:287(compile)
1 0.000 0.000 0.005 0.005 format.py:1(<module>)
18 0.000 0.000 0.005 0.000 __init__.py:330(_compile)
158 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:155(_path_is_mode_type)
48/47 0.005 0.000 0.005 0.000 {built-in method builtins.print}
147 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:164(_path_isfile)
37465 0.005 0.000 0.005 0.000 {built-in method builtins.abs}
18 0.000 0.000 0.005 0.000 _compiler.py:757(compile)
2040 0.003 0.000 0.005 0.000 wod_server.py:307(coastal_elevation_bias)
230 0.001 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:239(cache_from_source)
1 0.000 0.000 0.005 0.005 idna.py:1(<module>)
1 0.000 0.000 0.005 0.005 socket.py:1(<module>)
53 0.000 0.000 0.004 0.000 _add_newdocs.py:3381(_array_method_doc)
1 0.000 0.000 0.004 0.004 _format_impl.py:1(<module>)
144 0.002 0.000 0.004 0.000 typing.py:260(_collect_type_parameters)
1 0.000 0.000 0.004 0.004 _dtype_like.py:1(<module>)
1 0.000 0.000 0.004 0.004 numerictypes.py:1(<module>)
22428 0.004 0.000 0.004 0.000 {built-in method builtins.isinstance}
16320 0.004 0.000 0.004 0.000 {built-in method _functools.reduce}
132 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap>:736(_init_module_attrs)
115 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:966(path_stats)
23 0.000 0.000 0.004 0.000 overrides.py:184(decorator)
1 0.000 0.000 0.003 0.003 _utils_impl.py:1(<module>)
70 0.000 0.000 0.003 0.000 typing.py:1370(__getitem__)
510 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap>:162(__enter__)
238 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap>:635(cached)
229 0.001 0.000 0.003 0.000 overrides.py:86(verify_matching_signatures)
134 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap>:419(__enter__)
1 0.000 0.000 0.003 0.003 typing.py:1(<module>)
1 0.002 0.002 0.003 0.003 wod_server.py:405(generate_default_vision)
123 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:369(_get_cached)
57 0.000 0.000 0.003 0.000 perlin_noise.py:113(get_from_cache_of_create_new)
18 0.000 0.000 0.003 0.000 _parser.py:963(parse)
1 0.000 0.000 0.003 0.003 pickle.py:1(<module>)
43/18 0.000 0.000 0.002 0.000 _parser.py:452(_parse_sub)
1 0.000 0.000 0.002 0.002 _polynomial_impl.py:1(<module>)
16320 0.002 0.000 0.002 0.000 {built-in method math.floor}
51/18 0.001 0.000 0.002 0.000 _parser.py:512(_parse)
510 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:124(setdefault)
57 0.000 0.000 0.002 0.000 rand_vec.py:13(__init__)
1 0.000 0.000 0.002 0.002 platform.py:1(<module>)
18 0.000 0.000 0.002 0.000 _compiler.py:590(_code)
1 0.000 0.000 0.002 0.002 _globals.py:1(<module>)
1 0.000 0.000 0.002 0.002 decoder.py:1(<module>)
115 0.002 0.000 0.002 0.000 {method '__exit__' of '_io._IOBase' objects}
1 0.000 0.000 0.002 0.002 stringprep.py:1(<module>)
2 0.000 0.000 0.002 0.001 socket.py:507(close)
8023 0.002 0.000 0.002 0.000 {built-in method builtins.getattr}
1201 0.001 0.000 0.002 0.000 typing.py:1286(__setattr__)
4 0.000 0.000 0.002 0.000 enum.py:880(_convert_)
287 0.001 0.000 0.002 0.000 functools.py:35(update_wrapper)
458 0.000 0.000 0.002 0.000 _inspect.py:97(getargspec)
510 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap>:372(release)
11 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1408(_fill_cache)
8 0.000 0.000 0.002 0.000 typing.py:2965(__new__)
57 0.000 0.000 0.002 0.000 tools.py:29(sample_vector)
9114 0.002 0.000 0.002 0.000 {method 'lstrip' of 'str' objects}
1 0.000 0.000 0.002 0.002 _function_base_impl.py:1(<module>)
70 0.000 0.000 0.002 0.000 typing.py:1492(copy_with)
2752 0.002 0.000 0.002 0.000 {method 'pop' of 'list' objects}
1 0.000 0.000 0.002 0.002 _add_newdocs_scalars.py:1(<module>)
1 0.000 0.000 0.002 0.002 textwrap.py:1(<module>)
13 0.001 0.000 0.002 0.000 __init__.py:361(namedtuple)
1 0.000 0.000 0.002 0.002 textwrap.py:17(TextWrapper)
1 0.000 0.000 0.002 0.002 uuid.py:1(<module>)
90 0.001 0.000 0.002 0.000 typing.py:1727(__hash__)
123 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1352(_get_spec)
277 0.001 0.000 0.001 0.000 typing.py:184(_type_check)
1831 0.001 0.000 0.001 0.000 typing.py:1026(_is_unpacked_typevartuple)
85/18 0.000 0.000 0.001 0.000 _compiler.py:39(_compile)
1 0.000 0.000 0.001 0.001 _twodim_base_impl.py:1(<module>)
241 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1233(_path_importer_cache)
35 0.000 0.000 0.001 0.000 <frozen abc>:105(__new__)
53 0.001 0.000 0.001 0.000 textwrap.py:416(dedent)
1 0.000 0.000 0.001 0.001 warnings.py:1(<module>)
171 0.000 0.000 0.001 0.000 typing.py:1225(__init__)
510 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:429(_get_module_lock)
1 0.000 0.000 0.001 0.001 random.py:1(<module>)
123 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:560(spec_from_file_location)
11 0.001 0.000 0.001 0.000 {built-in method nt.listdir}
1 0.000 0.000 0.001 0.001 _type_check_impl.py:1(<module>)
200 0.000 0.000 0.001 0.000 random.py:294(randrange)
5224 0.001 0.000 0.001 0.000 typing.py:1717(<genexpr>)
1452 0.001 0.000 0.001 0.000 typing.py:1212(_is_dunder)
230 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:137(_path_split)
11 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1220(_path_hooks)
70 0.000 0.000 0.001 0.000 typing.py:1401(_determine_new_args)
24 0.000 0.000 0.001 0.000 inspect.py:3319(signature)
24 0.000 0.000 0.001 0.000 inspect.py:3032(from_callable)
1 0.000 0.000 0.001 0.001 overrides.py:1(<module>)
24 0.000 0.000 0.001 0.000 inspect.py:2413(_signature_from_callable)
5164 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects}
1 0.000 0.000 0.001 0.001 scimath.py:1(<module>)
1 0.000 0.000 0.001 0.001 _arraysetops_impl.py:1(<module>)
4897 0.001 0.000 0.001 0.000 {method 'endswith' of 'str' objects}
1 0.000 0.000 0.001 0.001 array_utils.py:1(<module>)
458 0.001 0.000 0.001 0.000 _inspect.py:66(getargs)
14 0.000 0.000 0.001 0.000 typing.py:1977(__new__)
1 0.000 0.000 0.001 0.001 printoptions.py:1(<module>)
43 0.001 0.000 0.001 0.000 _compiler.py:248(_optimize_charset)
8 0.000 0.000 0.001 0.000 typing.py:2934(_make_nmtuple)
2 0.000 0.000 0.001 0.000 dataclasses.py:1414(dataclass)
2 0.000 0.000 0.001 0.000 dataclasses.py:1431(wrap)
5 0.000 0.000 0.001 0.000 enum.py:1740(convert_class)
2 0.000 0.000 0.001 0.000 dataclasses.py:986(_process_class)
586 0.001 0.000 0.001 0.000 random.py:245(_randbelow_with_getrandbits)
1 0.000 0.000 0.001 0.001 scanner.py:1(<module>)
1784 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects}
13 0.001 0.000 0.001 0.000 {built-in method builtins.eval}
1 0.000 0.000 0.001 0.001 rand_vec.py:1(<module>)
27 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:76(add_newdoc_for_scalar_type)
70 0.000 0.000 0.001 0.000 typing.py:1430(_make_substitution)
24 0.000 0.000 0.001 0.000 inspect.py:2307(_signature_from_function)
510 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:74(__new__)
386 0.000 0.000 0.001 0.000 random.py:335(randint)
3368 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects}
134 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:190(_path_abspath)
134 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:423(__exit__)
2839 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr}
3 0.000 0.000 0.001 0.000 __init__.py:188(_safe_realpath)
3 0.000 0.000 0.001 0.000 <frozen ntpath>:661(realpath)
433 0.001 0.000 0.001 0.000 {method 'split' of 'str' objects}
18 0.000 0.000 0.001 0.000 _compiler.py:525(_compile_info)
134 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:177(_path_isabs)
1903 0.001 0.000 0.001 0.000 {built-in method builtins.setattr}
115 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:424(_classify_pyc)
8 0.001 0.000 0.001 0.000 {built-in method nt._getfinalpathname}
2 0.000 0.000 0.001 0.000 dataclasses.py:478(add_fns_to_class)
1 0.000 0.000 0.001 0.001 simple_socket.py:79(start)
11 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1449(path_hook_for_FileFinder)
3 0.000 0.000 0.001 0.000 _py_warnings.py:254(filterwarnings)
58 0.000 0.000 0.001 0.000 random.py:128(seed)
57 0.000 0.000 0.001 0.000 random.py:176(getstate)
13 0.000 0.000 0.001 0.000 typing.py:2128(__init_subclass__)
510 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:82(remove)
25 0.000 0.000 0.001 0.000 dtypes.py:30(_add_dtype_helper)
11 0.000 0.000 0.000 0.000 <frozen zipimport>:67(__init__)
373 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects}
1 0.000 0.000 0.000 0.000 encoder.py:1(<module>)
570 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
13 0.000 0.000 0.000 0.000 typing.py:1113(_generic_class_getitem)
510 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:79(__init__)
345 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:89(_unpack_uint32)
251 0.000 0.000 0.000 0.000 typing.py:1276(__getattr__)
36 0.000 0.000 0.000 0.000 typing.py:1541(__init__)
57 0.000 0.000 0.000 0.000 {function Random.getstate at 0x00000267DD673D70}
10 0.000 0.000 0.000 0.000 annotationlib.py:697(call_annotate_function)
3 0.000 0.000 0.000 0.000 socket.py:224(__init__)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:457(_validate_timestamp_pyc)
13 0.000 0.000 0.000 0.000 {method '__init_subclass__' of 'object' objects}
1 0.000 0.000 0.000 0.000 _nanfunctions_impl.py:1(<module>)
50 0.000 0.000 0.000 0.000 typing.py:365(_flatten_literal_params)
978 0.000 0.000 0.000 0.000 typing.py:1355(__eq__)
104 0.000 0.000 0.000 0.000 typing.py:1037(_typevar_subst)
7 0.000 0.000 0.000 0.000 enum.py:480(__new__)
133 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:985(find_spec)
1 0.000 0.000 0.000 0.000 threading.py:1(<module>)
690 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:139(<genexpr>)
133 0.000 0.000 0.000 0.000 __init__.py:101(find_spec)
1 0.000 0.000 0.000 0.000 contextlib.py:1(<module>)
1 0.000 0.000 0.000 0.000 arrayprint.py:1(<module>)
1 0.000 0.000 0.000 0.000 _shape_base_impl.py:1(<module>)
688 0.000 0.000 0.000 0.000 _parser.py:261(get)
510 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:173(__exit__)
58 0.000 0.000 0.000 0.000 {function Random.seed at 0x00000267DD673CC0}
2403 0.000 0.000 0.000 0.000 {method 'isspace' of 'str' objects}
350 0.000 0.000 0.000 0.000 function_base.py:456(_needs_add_docstring)
853 0.000 0.000 0.000 0.000 {method 'rpartition' of 'str' objects}
1 0.000 0.000 0.000 0.000 _type_aliases.py:1(<module>)
10 0.000 0.000 0.000 0.000 threading.py:630(set)
57 0.000 0.000 0.000 0.000 random.py:180(setstate)
1025 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.RLock' objects}
11 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:169(_path_isdir)
437 0.000 0.000 0.000 0.000 wod_server.py:385(<genexpr>)
57 0.000 0.000 0.000 0.000 tools.py:71(hasher)
1 0.000 0.000 0.000 0.000 _scimath_impl.py:1(<module>)
1 0.000 0.000 0.000 0.000 _nested_sequence.py:1(<module>)
509 0.000 0.000 0.000 0.000 _parser.py:168(__getitem__)
57 0.000 0.000 0.000 0.000 {function Random.setstate at 0x00000267DD673B60}
133 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:448(cb)
1025 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.RLock' objects}
540/521 0.000 0.000 0.000 0.000 typing.py:1361(__hash__)
514 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1229(__exit__)
901 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects}
133 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
1372 0.000 0.000 0.000 0.000 {built-in method _operator.index}
75 0.000 0.000 0.000 0.000 inspect.py:2680(__init__)
2 0.000 0.000 0.000 0.000 socket.py:503(_real_close)
343/1 0.000 0.000 0.000 0.000 __config__.py:19(_cleanup)
1145 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:494(_verbose_message)
2 0.000 0.000 0.000 0.000 typing.py:3139(__new__)
514 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1225(__enter__)
2 0.000 0.000 0.000 0.000 {function socket.close at 0x00000267DD6BD0C0}
1 0.000 0.000 0.000 0.000 _distributor_init.py:1(<module>)
35/20 0.001 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects}
218 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects}
17 0.000 0.000 0.000 0.000 typing.py:1174(_generic_init_subclass)
458 0.000 0.000 0.000 0.000 _inspect.py:13(ismethod)
1906 0.000 0.000 0.000 0.000 typing.py:1345(<genexpr>)
236 0.000 0.000 0.000 0.000 socket.py:91(<lambda>)
259 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:648(parent)
124 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1131(find_spec)
1 0.000 0.000 0.000 0.000 numbers.py:1(<module>)
1736 0.000 0.000 0.000 0.000 typing.py:777(<genexpr>)
101 0.000 0.000 0.000 0.000 enum.py:677(__call__)
1 0.000 0.000 0.000 0.000 _ufunclike_impl.py:1(<module>)
1157 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
1024 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
10 0.000 0.000 0.000 0.000 threading.py:438(notify_all)
1157 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
2 0.000 0.000 0.000 0.000 {built-in method _thread.start_joinable_thread}
682 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
1 0.000 0.000 0.000 0.000 _endian.py:1(<module>)
360 0.000 0.000 0.000 0.000 typing.py:175(_type_convert)
850 0.000 0.000 0.000 0.000 {method 'getrandbits' of '_random.Random' objects}
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1000(exec_module)
133 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:232(__init__)
1047 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects}
134 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot}
458 0.000 0.000 0.000 0.000 _inspect.py:26(isfunction)
11 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1331(__init__)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:401(_check_name_wrapper)
458 0.000 0.000 0.000 0.000 _inspect.py:41(iscode)
14 0.000 0.000 0.000 0.000 typing.py:1996(__init__)
830 0.000 0.000 0.000 0.000 _parser.py:240(__next)
8 0.000 0.000 0.000 0.000 typing.py:385(decorator)
1 0.000 0.000 0.000 0.000 constants.py:1(<module>)
9 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin}
1 0.000 0.000 0.000 0.000 <frozen ntpath>:605(_getfinalpathname_nonstrict)
1 0.000 0.000 0.000 0.000 function_base.py:1(<module>)
1 0.000 0.000 0.000 0.000 _iotools.py:1(<module>)
1 0.000 0.000 0.000 0.000 _nbit_base.py:1(<module>)
1 0.000 0.000 0.000 0.000 _stride_tricks_impl.py:1(<module>)
90/35 0.000 0.000 0.000 0.000 _parser.py:178(getwidth)
1 0.000 0.000 0.000 0.000 typing.py:2912(<generic parameters of SupportsAbs>)
4/2 0.000 0.000 0.000 0.000 threading.py:975(start)
234 0.000 0.000 0.000 0.000 socket.py:81(<lambda>)
1 0.000 0.000 0.000 0.000 records.py:1(<module>)
235 0.000 0.000 0.000 0.000 socket.py:86(<lambda>)
237 0.000 0.000 0.000 0.000 socket.py:96(<lambda>)
375 0.000 0.000 0.000 0.000 {built-in method numpy._core._multiarray_umath.add_docstring}
10 0.000 0.000 0.000 0.000 threading.py:408(notify)
35 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
88 0.000 0.000 0.000 0.000 {built-in method fromkeys}
1 0.000 0.000 0.000 0.000 typing.py:2923(<generic parameters of SupportsRound>)
510 0.000 0.000 0.000 0.000 {built-in method _weakref._remove_dead_weakref}
200 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects}
1 0.000 0.000 0.000 0.000 struct.py:1(<module>)
50 0.000 0.000 0.000 0.000 typing.py:351(_deduplicate)
14 0.000 0.000 0.000 0.000 typing.py:1842(_get_protocol_attrs)
460 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
115 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
8 0.000 0.000 0.000 0.000 typing.py:380(_tp_cache)
114 0.000 0.000 0.000 0.000 random.py:500(uniform)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:48(_new_module)
18 0.000 0.000 0.000 0.000 enum.py:1594(__and__)
1 0.000 0.000 0.000 0.000 _py_warnings.py:1(<module>)
1 0.000 0.000 0.000 0.000 _exceptions.py:1(<module>)
24 0.000 0.000 0.000 0.000 {method '__typing_subst__' of 'typing.TypeVar' objects}
1 0.000 0.000 0.000 0.000 _histograms_impl.py:1(<module>)
588 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects}
1 0.000 0.000 0.000 0.000 _compat_pickle.py:1(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:91(_delvewheel_patch_1_11_2)
1 0.000 0.000 0.000 0.000 datetime.py:1(<module>)
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:992(create_module)
24 0.000 0.000 0.000 0.000 inspect.py:2972(__init__)
301 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects}
630/611 0.000 0.000 0.000 0.000 {built-in method builtins.hash}
102 0.000 0.000 0.000 0.000 wod_server.py:877(__post_init__)
1 0.000 0.000 0.000 0.000 getlimits.py:1(<module>)
13 0.000 0.000 0.000 0.000 _compiler.py:400(_mk_bitmap)
101 0.000 0.000 0.000 0.000 enum.py:1146(__new__)
212 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:67(_relax_case)
1 0.000 0.000 0.000 0.000 exceptions.py:1(<module>)
101 0.000 0.000 0.000 0.000 {method 'copy' of 'list' objects}
59 0.000 0.000 0.000 0.000 _parser.py:312(_class_escape)
18 0.000 0.000 0.000 0.000 enum.py:342(__setitem__)
1 0.000 0.000 0.000 0.000 __init__.py:886(blas_fpe_check)
12 0.000 0.000 0.000 0.000 functools.py:593(decorating_function)
1 0.000 0.000 0.000 0.000 simple_socket.py:85(lsn)
4 0.000 0.000 0.000 0.000 enum.py:1583(__or__)
58 0.000 0.000 0.000 0.000 enum.py:811(__setattr__)
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
345 0.000 0.000 0.000 0.000 {built-in method from_bytes}
1 0.000 0.000 0.000 0.000 {method 'bind' of '_socket.socket' objects}
9 0.000 0.000 0.000 0.000 {built-in method _imp.create_builtin}
13 0.000 0.000 0.000 0.000 _parser.py:98(closegroup)
1 0.000 0.000 0.000 0.000 {method 'listen' of '_socket.socket' objects}
5 0.000 0.000 0.000 0.000 enum.py:239(__set_name__)
6 0.000 0.000 0.000 0.000 numeric.py:2750(extend_all)
70 0.000 0.000 0.000 0.000 typing.py:341(_unpack_args)
509 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects}
8 0.000 0.000 0.000 0.000 <frozen abc>:110(register)
115 0.000 0.000 0.000 0.000 {method '__enter__' of '_io._IOBase' objects}
1 0.000 0.000 0.000 0.000 umath.py:1(<module>)
1 0.000 0.000 0.000 0.000 bisect.py:1(<module>)
325 0.000 0.000 0.000 0.000 _parser.py:256(match)
264 0.000 0.000 0.000 0.000 overrides.py:108(array_function_dispatch)
43 0.000 0.000 0.000 0.000 _compiler.py:221(_compile_charset)
510 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:158(__init__)
21 0.000 0.000 0.000 0.000 overrides.py:25(get_array_function_like_doc)
8 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register}
109 0.000 0.000 0.000 0.000 __init__.py:28(decorator)
372 0.000 0.000 0.000 0.000 {built-in method nt.fspath}
40 0.000 0.000 0.000 0.000 {built-in method builtins.locals}
26 0.000 0.000 0.000 0.000 annotationlib.py:907(get_annotations)
1 0.000 0.000 0.000 0.000 mixins.py:1(<module>)
167 0.000 0.000 0.000 0.000 _parser.py:176(append)
3 0.000 0.000 0.000 0.000 typing.py:1364(__or__)
1 0.000 0.000 0.000 0.000 __init__.py:822(_sanity_check)
160 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
140 0.000 0.000 0.000 0.000 typing.py:1396(<genexpr>)
23/8 0.000 0.000 0.000 0.000 <frozen abc>:121(__subclasscheck__)
114 0.000 0.000 0.000 0.000 {method 'random' of '_random.Random' objects}
22 0.000 0.000 0.000 0.000 threading.py:313(__enter__)
23/8 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck}
7 0.000 0.000 0.000 0.000 dataclasses.py:825(_get_field)
173 0.000 0.000 0.000 0.000 _parser.py:164(__len__)
1 0.000 0.000 0.000 0.000 memmap.py:1(<module>)
73 0.000 0.000 0.000 0.000 pickle.py:190(<genexpr>)
260 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
12 0.000 0.000 0.000 0.000 {method 'release' of '_thread.lock' objects}
6 0.000 0.000 0.000 0.000 {built-in method builtins.sorted}
136 0.000 0.000 0.000 0.000 _parser.py:293(tell)
1 0.000 0.000 0.000 0.000 _datasource.py:1(<module>)
124 0.000 0.000 0.000 0.000 {built-in method _imp.find_frozen}
2 0.000 0.000 0.000 0.000 enum.py:466(__prepare__)
6 0.000 0.000 0.000 0.000 threading.py:641(clear)
1 0.000 0.000 0.000 0.000 _globals.py:66(_CopyMode)
2 0.000 0.000 0.000 0.000 enum.py:1446(_missing_)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:1(<module>)
405 0.000 0.000 0.000 0.000 {built-in method builtins.globals}
66 0.000 0.000 0.000 0.000 enum.py:1576(_get_value)
3 0.000 0.000 0.000 0.000 threading.py:880(__init__)
1 0.000 0.000 0.000 0.000 mixins.py:60(NDArrayOperatorsMixin)
32 0.000 0.000 0.000 0.000 _compiler.py:412(_simple)
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:665(spec_from_loader)
1 0.000 0.000 0.000 0.000 threading.py:1393(__init__)
34 0.000 0.000 0.000 0.000 {built-in method nt.getcwd}
36 0.000 0.000 0.000 0.000 _parser.py:449(_uniq)
1 0.000 0.000 0.000 0.000 contextvars.py:1(<module>)
24 0.000 0.000 0.000 0.000 inspect.py:663(unwrap)
2 0.000 0.000 0.000 0.000 __init__.py:417(__init__)
26 0.000 0.000 0.000 0.000 annotationlib.py:1131(_get_dunder_annotations)
2 0.000 0.000 0.000 0.000 socket.py:523(family)
9 0.000 0.000 0.000 0.000 overrides.py:30(finalize_array_function_like)
133 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:602(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:222(is_python_build)
22/16 0.000 0.000 0.000 0.000 _compiler.py:450(_get_literal_prefix)
1 0.000 0.000 0.000 0.000 {built-in method _socket.gethostname}
2 0.000 0.000 0.000 0.000 dataclasses.py:670(_init_fn)
22 0.000 0.000 0.000 0.000 threading.py:316(__exit__)
139 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock}
79 0.000 0.000 0.000 0.000 {method '__typing_prepare_subst__' of 'typing.TypeVar' objects}
4 0.000 0.000 0.000 0.000 _py_warnings.py:320(_add_filter)
2 0.000 0.000 0.000 0.000 numeric.py:170(ones)
9 0.000 0.000 0.000 0.000 wod_server.py:52(nd_zeros)
52 0.000 0.000 0.000 0.000 enum.py:77(_is_private)
153 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
1 0.000 0.000 0.000 0.000 <frozen os>:44(_get_exports_list)
1 0.000 0.000 0.000 0.000 <frozen os>:1161(add_dll_directory)
39 0.000 0.000 0.000 0.000 enum.py:36(_is_descriptor)
10 0.000 0.000 0.000 0.000 typing.py:2258(runtime_checkable)
1 0.000 0.000 0.000 0.000 __init__.py:346(_reset_cache)
140 0.000 0.000 0.000 0.000 typing.py:1716(_value_and_type_iter)
4 0.000 0.000 0.000 0.000 socket.py:102(_intenum_converter)
14 0.000 0.000 0.000 0.000 typing.py:3827(__getattr__)
4 0.000 0.000 0.000 0.000 __init__.py:603(PYFUNCTYPE)
62 0.000 0.000 0.000 0.000 enum.py:46(_is_dunder)
9 0.000 0.000 0.000 0.000 <frozen os>:704(__getitem__)
1 0.000 0.000 0.000 0.000 _scalars.py:1(<module>)
1 0.000 0.000 0.000 0.000 _array_api_info.py:1(<module>)
2 0.000 0.000 0.000 0.000 wod_server.py:901(__init__)
10 0.000 0.000 0.000 0.000 annotationlib.py:853(_build_closure)
112 0.000 0.000 0.000 0.000 typing.py:1721(__eq__)
99 0.000 0.000 0.000 0.000 inspect.py:3027(<genexpr>)
10 0.000 0.000 0.000 0.000 annotationlib.py:652(__init__)
1 0.000 0.000 0.000 0.000 typing.py:526(_SpecialForm)
1 0.000 0.000 0.000 0.000 simple_socket.py:1(<module>)
2 0.000 0.000 0.000 0.000 __init__.py:76(CFUNCTYPE)
1 0.000 0.000 0.000 0.000 numerictypes.py:626(_register_types)
1 0.000 0.000 0.000 0.000 _arrayterator_impl.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method nt._add_dll_directory}
1 0.000 0.000 0.000 0.000 __config__.py:14(DisplayModes)
7 0.000 0.000 0.000 0.000 enum.py:1436(_iter_member_by_def_)
2 0.000 0.000 0.000 0.000 {built-in method nt._path_isfile}
9 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects}
1 0.000 0.000 0.000 0.000 <frozen ntpath>:563(_readlink_deep)
2 0.000 0.000 0.000 0.000 _linalg.py:84(__annotate__)
132 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects}
201 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass}
16 0.000 0.000 0.000 0.000 threading.py:328(_is_owned)
2 0.000 0.000 0.000 0.000 __init__.py:271(POINTER)
7 0.000 0.000 0.000 0.000 <frozen _collections_abc>:792(get)
109 0.000 0.000 0.000 0.000 __init__.py:17(set_module)
2 0.000 0.000 0.000 0.000 {built-in method builtins.dir}
8 0.000 0.000 0.000 0.000 threading.py:602(__init__)
14 0.000 0.000 0.000 0.000 __init__.py:148(_check_size)
1 0.000 0.000 0.000 0.000 {built-in method nt._path_isdir}
1 0.000 0.000 0.000 0.000 __init__.py:114(_getuserbase)
6 0.000 0.000 0.000 0.000 uuid.py:178(__init__)
2 0.000 0.000 0.000 0.000 perlin_noise.py:19(__init__)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:917(__init__)
1 0.000 0.000 0.000 0.000 _dtype.py:1(<module>)
13 0.000 0.000 0.000 0.000 _parser.py:86(opengroup)
1 0.000 0.000 0.000 0.000 __init__.py:538(__getattr__)
1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases)
1 0.000 0.000 0.000 0.000 wod_server.py:123(__init__)
18 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
13 0.000 0.000 0.000 0.000 mixins.py:45(_numeric_methods)
18 0.000 0.000 0.000 0.000 _parser.py:231(__init__)
2 0.000 0.000 0.000 0.000 {method 'setsockopt' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 random.py:119(__init__)
2 0.000 0.000 0.000 0.000 _linalg.py:100(__annotate__)
101 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects}
1 0.000 0.000 0.000 0.000 _asarray.py:1(<module>)
1 0.000 0.000 0.000 0.000 pickle.py:1250(_Unpickler)
9 0.000 0.000 0.000 0.000 {built-in method numpy.zeros}
52 0.000 0.000 0.000 0.000 enum.py:57(_is_sunder)
2 0.000 0.000 0.000 0.000 wod_server.py:463(get_terrain_info)
22 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects}
17 0.000 0.000 0.000 0.000 {built-in method builtins.delattr}
66 0.000 0.000 0.000 0.000 _parser.py:83(groups)
196 0.000 0.000 0.000 0.000 {built-in method builtins.ord}
134 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:415(__init__)
1 0.000 0.000 0.000 0.000 _py_warnings.py:294(simplefilter)
1 0.000 0.000 0.000 0.000 _ufunc.py:1(<module>)
128 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects}
1 0.000 0.000 0.000 0.000 typing.py:1315(_GenericAlias)
5 0.000 0.000 0.000 0.000 enum.py:1041(_add_member_)
1 0.000 0.000 0.000 0.000 multiarray.py:81(_override___module__)
16 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen)
1 0.000 0.000 0.000 0.000 wod_server.py:132(calculate_size)
1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1(<module>)
4 0.000 0.000 0.000 0.000 enum.py:928(_get_mixins_)
2 0.000 0.000 0.000 0.000 _compiler.py:405(_bytes_to_codes)
1 0.000 0.000 0.000 0.000 typing.py:3493(IO)
2 0.000 0.000 0.000 0.000 threading.py:1057(_set_os_name)
15 0.000 0.000 0.000 0.000 _compiler.py:481(_get_charset_prefix)
5 0.000 0.000 0.000 0.000 <frozen ntpath>:99(join)
46 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:89(<genexpr>)
1 0.000 0.000 0.000 0.000 {built-in method nt.readlink}
1 0.000 0.000 0.000 0.000 _version.py:1(<module>)
3 0.000 0.000 0.000 0.000 <frozen ntpath>:222(split)
2 0.000 0.000 0.000 0.000 <frozen ntpath>:261(dirname)
35 0.000 0.000 0.000 0.000 _parser.py:172(__setitem__)
87 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
1 0.000 0.000 0.000 0.000 _iotools.py:452(StringConverter)
1 0.000 0.000 0.000 0.000 _inspect.py:1(<module>)
79 0.000 0.000 0.000 0.000 <frozen abc>:7(abstractmethod)
2 0.000 0.000 0.000 0.000 _linalg.py:88(__annotate__)
48 0.000 0.000 0.000 0.000 inspect.py:267(isfunction)
12 0.000 0.000 0.000 0.000 _parser.py:372(_escape)
8 0.000 0.000 0.000 0.000 threading.py:290(__init__)
24 0.000 0.000 0.000 0.000 numerictypes.py:594(_scalar_type_key)
2 0.000 0.000 0.000 0.000 <frozen _collections_abc>:799(__contains__)
1 0.000 0.000 0.000 0.000 typing.py:1632(_CallableType)
144 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:656(has_location)
13 0.000 0.000 0.000 0.000 typing.py:2483(get_origin)
2 0.000 0.000 0.000 0.000 socket.py:529(type)
5 0.000 0.000 0.000 0.000 <frozen ntpath>:50(normcase)
1 0.000 0.000 0.000 0.000 _pytesttester.py:1(<module>)
9 0.000 0.000 0.000 0.000 <frozen os>:778(encodekey)
2 0.000 0.000 0.000 0.000 _linalg.py:92(__annotate__)
2 0.000 0.000 0.000 0.000 _linalg.py:96(__annotate__)
1 0.000 0.000 0.000 0.000 typing.py:1540(_SpecialGenericAlias)
6 0.000 0.000 0.000 0.000 dataclasses.py:446(add_fn)
1 0.000 0.000 0.000 0.000 __init__.py:43(normalize_encoding)
1 0.000 0.000 0.000 0.000 {built-in method nt.putenv}
36 0.000 0.000 0.000 0.000 _compiler.py:587(isstring)
26 0.000 0.000 0.000 0.000 typing.py:1127(<genexpr>)
1 0.000 0.000 0.000 0.000 idna.py:378(getregentry)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:942(get_filename)
89 0.000 0.000 0.000 0.000 _parser.py:113(__init__)
10 0.000 0.000 0.000 0.000 annotationlib.py:895(get_annotate_from_class_namespace)
1 0.000 0.000 0.000 0.000 _string_helpers.py:1(<module>)
59 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
2 0.000 0.000 0.000 0.000 arrayprint.py:577(decorating_function)
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:504(_requires_builtin_wrapper)
17 0.000 0.000 0.000 0.000 enum.py:746(__delattr__)
1 0.000 0.000 0.000 0.000 getlimits.py:60(finfo)
1 0.000 0.000 0.000 0.000 typing.py:1665(_TupleType)
1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine)
7 0.000 0.000 0.000 0.000 dataclasses.py:751(_is_classvar)
7 0.000 0.000 0.000 0.000 enum.py:1426(_iter_member_by_value_)
1 0.000 0.000 0.000 0.000 _array_utils_impl.py:1(<module>)
1 0.000 0.000 0.000 0.000 perlin_noise.py:13(PerlinNoise)
1 0.000 0.000 0.000 0.000 typing.py:1601(__init__)
2 0.000 0.000 0.000 0.000 {built-in method numpy.empty}
53 0.000 0.000 0.000 0.000 {built-in method sys.intern}
10 0.000 0.000 0.000 0.000 <string>:2(__init__)
1 0.000 0.000 0.000 0.000 _nbit.py:1(<module>)
4 0.000 0.000 0.000 0.000 _parser.py:274(getuntil)
88 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1337(<genexpr>)
53 0.000 0.000 0.000 0.000 __init__.py:435(<genexpr>)
2 0.000 0.000 0.000 0.000 {built-in method _thread.set_name}
1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects}
9 0.000 0.000 0.000 0.000 typing.py:1517(__mro_entries__)
1 0.000 0.000 0.000 0.000 numbers.py:57(Complex)
6 0.000 0.000 0.000 0.000 typing.py:3116(_get_typeddict_qualifiers)
1 0.000 0.000 0.000 0.000 pickle.py:418(_Pickler)
115 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:750(create_module)
1 0.000 0.000 0.000 0.000 {built-in method nt.unsetenv}
1 0.000 0.000 0.000 0.000 _polynomial_impl.py:1093(poly1d)
1 0.000 0.000 0.000 0.000 defmatrix.py:73(matrix)
4 0.000 0.000 0.000 0.000 enum.py:969(_find_data_type_)
1 0.000 0.000 0.000 0.000 __init__.py:125(joinuser)
12 0.000 0.000 0.000 0.000 functools.py:553(lru_cache)
1 0.000 0.000 0.000 0.000 idna.py:179(encode)
1 0.000 0.000 0.000 0.000 uuid.py:114(UUID)
1 0.000 0.000 0.000 0.000 _shape.py:1(<module>)
1 0.000 0.000 0.000 0.000 typing.py:1791(_UnpackGenericAlias)
1 0.000 0.000 0.000 0.000 functools.py:726(cache)
6 0.000 0.000 0.000 0.000 threading.py:325(_acquire_restore)
1 0.000 0.000 0.000 0.000 contextlib.py:276(contextmanager)
2 0.000 0.000 0.000 0.000 __init__.py:436(_load_library)
2 0.000 0.000 0.000 0.000 enum.py:996(_find_new_)
1 0.000 0.000 0.000 0.000 tools.py:1(<module>)
10 0.000 0.000 0.000 0.000 dataclasses.py:922(_set_new_attribute)
1 0.000 0.000 0.000 0.000 __init__.py:481(__getattr__)
1 0.000 0.000 0.000 0.000 wod_server.py:204(Environment)
1 0.000 0.000 0.000 0.000 contextlib.py:17(AbstractContextManager)
3 0.000 0.000 0.000 0.000 getlimits.py:412(__init__)
1 0.000 0.000 0.000 0.000 numbers.py:328(Integral)
1 0.000 0.000 0.000 0.000 _internal.py:253(_missing_ctypes)
18 0.000 0.000 0.000 0.000 _parser.py:947(fix_flags)
18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize}
26 0.000 0.000 0.000 0.000 typing.py:2133(<genexpr>)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:488(__exit__)
77 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased}
7 0.000 0.000 0.000 0.000 dataclasses.py:391(field)
1 0.000 0.000 0.000 0.000 socket.py:218(socket)
86 0.000 0.000 0.000 0.000 _compat_pickle.py:166(<genexpr>)
22 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects}
1 0.000 0.000 0.000 0.000 random.py:103(Random)
18 0.000 0.000 0.000 0.000 _parser.py:77(__init__)
1 0.000 0.000 0.000 0.000 threading.py:869(Thread)
4 0.000 0.000 0.000 0.000 _py_warnings.py:111(_get_filters)
22 0.000 0.000 0.000 0.000 _type_aliases.py:128(<lambda>)
7 0.000 0.000 0.000 0.000 dataclasses.py:591(_field_init)
1 0.000 0.000 0.000 0.000 __init__.py:903(hugepage_setup)
10 0.000 0.000 0.000 0.000 wod_server.py:238(<lambda>)
10 0.000 0.000 0.000 0.000 enum.py:187(__get__)
9 0.000 0.000 0.000 0.000 typing.py:310(_check_generic_specialization)
75 0.000 0.000 0.000 0.000 inspect.py:2733(name)
6 0.000 0.000 0.000 0.000 _nbit_base.py:57(__init_subclass__)
1 0.000 0.000 0.000 0.000 numbers.py:172(Real)
1 0.000 0.000 0.000 0.000 __init__.py:488(__getitem__)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:472(__enter__)
11 0.000 0.000 0.000 0.000 functools.py:65(wraps)
6 0.000 0.000 0.000 0.000 threading.py:322(_release_save)
2 0.000 0.000 0.000 0.000 dataclasses.py:415(_fields_in_init_order)
37 0.000 0.000 0.000 0.000 _compiler.py:442(_get_iscased)
2 0.000 0.000 0.000 0.000 reprlib.py:12(decorating_function)
1 0.000 0.000 0.000 0.000 <frozen ntpath>:529(abspath)
46 0.000 0.000 0.000 0.000 {built-in method builtins.callable}
14 0.000 0.000 0.000 0.000 mixins.py:27(_reflected_binary_method)
13 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects}
23 0.000 0.000 0.000 0.000 overrides.py:180(array_function_from_dispatcher)
1 0.000 0.000 0.000 0.000 npyio.py:1(<module>)
65 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower}
1 0.000 0.000 0.000 0.000 {built-in method _ctypes.LoadLibrary}
31 0.000 0.000 0.000 0.000 wod_server.py:357(within_edges)
3 0.000 0.000 0.000 0.000 <frozen ntpath>:80(isabs)
16 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot_ex}
4 0.000 0.000 0.000 0.000 _parser.py:265(getwhile)
10 0.000 0.000 0.000 0.000 wod_server.py:224(<lambda>)
6 0.000 0.000 0.000 0.000 _exceptions.py:16(_display_as_base)
2 0.000 0.000 0.000 0.000 threading.py:1050(_set_ident)
40 0.000 0.000 0.000 0.000 __init__.py:108(<lambda>)
10 0.000 0.000 0.000 0.000 wod_server.py:892(__post_init__)
1 0.000 0.000 0.000 0.000 typing.py:3606(TextIO)
2 0.000 0.000 0.000 0.000 __init__.py:322(get_default_scheme)
1 0.000 0.000 0.000 0.000 {method 'reset' of '_contextvars.ContextVar' objects}
17 0.000 0.000 0.000 0.000 typing.py:529(__init__)
42 0.000 0.000 0.000 0.000 _compat_pickle.py:164(<genexpr>)
20 0.000 0.000 0.000 0.000 mixins.py:17(_binary_method)
8 0.000 0.000 0.000 0.000 typing.py:1136(<genexpr>)
6 0.000 0.000 0.000 0.000 {built-in method nt._path_normpath}
5 0.000 0.000 0.000 0.000 {built-in method _winapi.LCMapStringEx}
1 0.000 0.000 0.000 0.000 _expired_attrs_2_0.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method math.exp}
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:325(AxisConcatenator)
1 0.000 0.000 0.000 0.000 platform.py:938(uname_result)
31 0.000 0.000 0.000 0.000 enum.py:903(<lambda>)
3 0.000 0.000 0.000 0.000 threading.py:1054(_set_native_id)
4 0.000 0.000 0.000 0.000 copyreg.py:12(pickle)
3 0.000 0.000 0.000 0.000 _weakrefset.py:45(add)
1 0.000 0.000 0.000 0.000 _internal.py:262(_ctypes)
2 0.000 0.000 0.000 0.000 enum.py:918(_check_for_existing_members_)
38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof}
9 0.000 0.000 0.000 0.000 <frozen os>:772(check_str)
10 0.000 0.000 0.000 0.000 wod_server.py:229(<lambda>)
1 0.000 0.000 0.000 0.000 __init__.py:160(py_object)
1 0.000 0.000 0.000 0.000 <string>:1(__create_fn__)
1 0.000 0.000 0.000 0.000 _npyio_impl.py:115(NpzFile)
2 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects}
1 0.000 0.000 0.000 0.000 decoder.py:292(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:305(escape)
1 0.000 0.000 0.000 0.000 platform.py:882(_Processor)
1 0.000 0.000 0.000 0.000 stride_tricks.py:1(<module>)
4 0.000 0.000 0.000 0.000 warnings.py:80(__enter__)
4 0.000 0.000 0.000 0.000 warnings.py:84(__exit__)
6 0.000 0.000 0.000 0.000 {method 'remove' of 'collections.deque' objects}
1 0.000 0.000 0.000 0.000 version.py:1(<module>)
1 0.000 0.000 0.000 0.000 <frozen codecs>:94(__new__)
1 0.000 0.000 0.000 0.000 typing.py:2912(SupportsAbs)
16 0.000 0.000 0.000 0.000 typing.py:2974(<genexpr>)
1 0.000 0.000 0.000 0.000 simple_socket.py:7(Client)
8 0.000 0.000 0.000 0.000 functools.py:1095(__init__)
2 0.000 0.000 0.000 0.000 __init__.py:310(get_preferred_scheme)
24 0.000 0.000 0.000 0.000 _compiler.py:33(_combine_flags)
4 0.000 0.000 0.000 0.000 _parser.py:304(checkgroupname)
7 0.000 0.000 0.000 0.000 enum.py:114(_iter_bits_lsb)
4 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
1 0.000 0.000 0.000 0.000 contextlib.py:41(AbstractAsyncContextManager)
1 0.000 0.000 0.000 0.000 getlimits.py:354(iinfo)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:266(__init__)
1 0.000 0.000 0.000 0.000 contextlib.py:631(AsyncExitStack)
1 0.000 0.000 0.000 0.000 _nested_sequence.py:13(_NestedSequence)
1 0.000 0.000 0.000 0.000 _version.py:13(NumpyVersion)
14 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects}
24 0.000 0.000 0.000 0.000 {built-in method sys.getrecursionlimit}
1 0.000 0.000 0.000 0.000 socket.py:683(SocketIO)
1 0.000 0.000 0.000 0.000 typing.py:2144(_AnnotatedAlias)
32 0.000 0.000 0.000 0.000 {built-in method builtins.chr}
16 0.000 0.000 0.000 0.000 enum.py:90(_is_single_bit)
1 0.000 0.000 0.000 0.000 contextlib.py:472(_BaseExitStack)
10 0.000 0.000 0.000 0.000 annotationlib.py:673(transmogrify)
1 0.000 0.000 0.000 0.000 _exceptions.py:108(_ArrayMemoryError)
2 0.000 0.000 0.000 0.000 __init__.py:421(_FuncPtr)
10 0.000 0.000 0.000 0.000 enum.py:1324(value)
18 0.000 0.000 0.000 0.000 enum.py:781(<genexpr>)
1 0.000 0.000 0.000 0.000 _datasource.py:532(Repository)
2 0.000 0.000 0.000 0.000 {built-in method math.log}
3 0.000 0.000 0.000 0.000 threading.py:1308(_make_invoke_excepthook)
1 0.000 0.000 0.000 0.000 threading.py:685(Barrier)
8 0.000 0.000 0.000 0.000 typing.py:3109(_namedtuple_mro_entries)
1 0.000 0.000 0.000 0.000 typing.py:3138(_TypedDictMeta)
1 0.000 0.000 0.000 0.000 __init__.py:534(LibraryLoader)
13 0.000 0.000 0.000 0.000 mixins.py:37(_inplace_binary_method)
11 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects}
4 0.000 0.000 0.000 0.000 enum.py:789(__members__)
1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator)
2 0.000 0.000 0.000 0.000 enum.py:334(__init__)
2 0.000 0.000 0.000 0.000 threading.py:854(_newname)
10 0.000 0.000 0.000 0.000 wod_server.py:221(<lambda>)
1 0.000 0.000 0.000 0.000 random.py:888(SystemRandom)
1 0.000 0.000 0.000 0.000 records.py:279(recarray)
9 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects}
1 0.000 0.000 0.000 0.000 _py_warnings.py:681(deprecated)
2 0.000 0.000 0.000 0.000 _dtype_like.py:29(__annotate__)
1 0.000 0.000 0.000 0.000 typing.py:3641(<generic parameters of reveal_type>)
1 0.000 0.000 0.000 0.000 _arraysetops_impl.py:426(UniqueCountsResult)
1 0.000 0.000 0.000 0.000 _arrayterator_impl.py:16(Arrayterator)
6 0.000 0.000 0.000 0.000 {method 'append' of 'collections.deque' objects}
14 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects}
7 0.000 0.000 0.000 0.000 dataclasses.py:651(_init_param)
13 0.000 0.000 0.000 0.000 typing.py:501(__init_subclass__)
5 0.000 0.000 0.000 0.000 enum.py:68(_is_internal_class)
2 0.000 0.000 0.000 0.000 <frozen abc>:146(update_abstractmethods)
1 0.000 0.000 0.000 0.000 typing.py:3592(BinaryIO)
4 0.000 0.000 0.000 0.000 __init__.py:604(CFunctionType)
5 0.000 0.000 0.000 0.000 _pytesttester.py:75(__init__)
1 0.000 0.000 0.000 0.000 _datasource.py:72(_FileOpeners)
3 0.000 0.000 0.000 0.000 <frozen ntpath>:34(_get_bothseps)
10 0.000 0.000 0.000 0.000 wod_server.py:220(<lambda>)
4 0.000 0.000 0.000 0.000 typing.py:1033(_is_typevar_like)
7 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects}
7 0.000 0.000 0.000 0.000 dataclasses.py:756(_is_initvar)
2 0.000 0.000 0.000 0.000 threading.py:126(RLock)
7 0.000 0.000 0.000 0.000 typing.py:2709(final)
1 0.000 0.000 0.000 0.000 {built-in method numpy._core._multiarray_umath._make_extobj}
1 0.000 0.000 0.000 0.000 _compiler.py:421(_generate_overlap_table)
1 0.000 0.000 0.000 0.000 random.py:225(__init_subclass__)
4 0.000 0.000 0.000 0.000 threading.py:1188(daemon)
1 0.000 0.000 0.000 0.000 numbers.py:292(Rational)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1040(__init__)
1 0.000 0.000 0.000 0.000 <frozen ntpath>:343(expanduser)
2 0.000 0.000 0.000 0.000 threading.py:1470(current_thread)
1 0.000 0.000 0.000 0.000 typing.py:2857(SupportsInt)
1 0.000 0.000 0.000 0.000 contextlib.py:367(aclosing)
1 0.000 0.000 0.000 0.000 __init__.py:396(CDLL)
1 0.000 0.000 0.000 0.000 _weakrefset.py:12(__init__)
1 0.000 0.000 0.000 0.000 _exceptions.py:92(_UFuncOutputCastingError)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:549(__init__)
2 0.000 0.000 0.000 0.000 _dtype_like.py:35(__annotate__)
4 0.000 0.000 0.000 0.000 mixins.py:52(_unary_method)
1 0.000 0.000 0.000 0.000 threading.py:278(Condition)
1 0.000 0.000 0.000 0.000 typing.py:3660(_IdentityCallable)
1 0.000 0.000 0.000 0.000 arrayprint.py:1429(SubArrayFormat)
1 0.000 0.000 0.000 0.000 _function_base_impl.py:2267(vectorize)
1 0.000 0.000 0.000 0.000 _datasource.py:195(DataSource)
1 0.000 0.000 0.000 0.000 simple_socket.py:63(Server)
12 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects}
1 0.000 0.000 0.000 0.000 {built-in method numpy._core._multiarray_umath._reload_guard}
7 0.000 0.000 0.000 0.000 dataclasses.py:294(__init__)
1 0.000 0.000 0.000 0.000 wod_server.py:915(Game)
1 0.000 0.000 0.000 0.000 encoder.py:74(JSONEncoder)
1 0.000 0.000 0.000 0.000 threading.py:146(_RLock)
1 0.000 0.000 0.000 0.000 typing.py:2923(SupportsRound)
1 0.000 0.000 0.000 0.000 _globals.py:53(__new__)
1 0.000 0.000 0.000 0.000 {built-in method nt._getfullpathname}
2 0.000 0.000 0.000 0.000 enum.py:947(_find_data_repr_)
7 0.000 0.000 0.000 0.000 dataclasses.py:579(_field_assign)
10 0.000 0.000 0.000 0.000 wod_server.py:232(<lambda>)
4 0.000 0.000 0.000 0.000 typing.py:3152(<genexpr>)
1 0.000 0.000 0.000 0.000 rand_vec.py:10(RandVec)
1 0.000 0.000 0.000 0.000 arrayprint.py:1455(StructuredVoidFormat)
1 0.000 0.000 0.000 0.000 _internal.py:591(_Stream)
5 0.000 0.000 0.000 0.000 constants.py:17(__init__)
1 0.000 0.000 0.000 0.000 simple_socket.py:68(__init__)
2 0.000 0.000 0.000 0.000 enum.py:777(__iter__)
1 0.000 0.000 0.000 0.000 idna.py:178(Codec)
8 0.000 0.000 0.000 0.000 {method 'removeprefix' of 'str' objects}
5 0.000 0.000 0.000 0.000 enum.py:1724(_simple_enum)
1 0.000 0.000 0.000 0.000 wod_server.py:119(WorldInfo)
10 0.000 0.000 0.000 0.000 wod_server.py:233(<lambda>)
1 0.000 0.000 0.000 0.000 decoder.py:262(JSONDecoder)
1 0.000 0.000 0.000 0.000 typing.py:2868(SupportsFloat)
1 0.000 0.000 0.000 0.000 typing.py:2901(SupportsIndex)
1 0.000 0.000 0.000 0.000 memmap.py:23(memmap)
2 0.000 0.000 0.000 0.000 __init__.py:105(CFunctionType)
1 0.000 0.000 0.000 0.000 _internal.py:211(dummy_ctype)
2 0.000 0.000 0.000 0.000 _arraysetops_impl.py:419(__annotate__)
1 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects}
7 0.000 0.000 0.000 0.000 <frozen _collections_abc>:439(__subclasshook__)
2 0.000 0.000 0.000 0.000 dataclasses.py:536(_make_annotate_function)
1 0.000 0.000 0.000 0.000 typing.py:1215(_BaseGenericAlias)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:386(errstate)
1 0.000 0.000 0.000 0.000 _dtype_like.py:44(_HasDType)
1 0.000 0.000 0.000 0.000 _array_api_info.py:30(__array_namespace_info__)
1 0.000 0.000 0.000 0.000 wod_server.py:884(City)
1 0.000 0.000 0.000 0.000 threading.py:459(Semaphore)
1 0.000 0.000 0.000 0.000 records.py:196(record)
6 0.000 0.000 0.000 0.000 {method 'count' of 'list' objects}
5 0.000 0.000 0.000 0.000 {built-in method sys._getframemodulename}
2 0.000 0.000 0.000 0.000 {built-in method _socket.getdefaulttimeout}
8 0.000 0.000 0.000 0.000 functools.py:1101(__set_name__)
4 0.000 0.000 0.000 0.000 wod_server.py:148(__init__)
5 0.000 0.000 0.000 0.000 enum.py:1443(<lambda>)
1 0.000 0.000 0.000 0.000 wod_server.py:145(Brush)
1 0.000 0.000 0.000 0.000 typing.py:166(__getattr__)
1 0.000 0.000 0.000 0.000 typing.py:2879(SupportsComplex)
1 0.000 0.000 0.000 0.000 typing.py:2890(SupportsBytes)
1 0.000 0.000 0.000 0.000 pickle.py:193(_Framer)
1 0.000 0.000 0.000 0.000 _array_like.py:31(_SupportsArray)
2 0.000 0.000 0.000 0.000 _arraysetops_impl.py:426(__annotate__)
2 0.000 0.000 0.000 0.000 _arraysetops_impl.py:431(__annotate__)
9 0.000 0.000 0.000 0.000 dataclasses.py:1233(<genexpr>)
10 0.000 0.000 0.000 0.000 wod_server.py:234(<lambda>)
1 0.000 0.000 0.000 0.000 wod_server.py:868(Troop)
1 0.000 0.000 0.000 0.000 _dtype_like.py:49(_HasNumPyDType)
6 0.000 0.000 0.000 0.000 {method 'has_default' of 'typing.TypeVar' objects}
4 0.000 0.000 0.000 0.000 {method 'isalnum' of 'str' objects}
4 0.000 0.000 0.000 0.000 _py_warnings.py:89(_get_context)
1 0.000 0.000 0.000 0.000 typing.py:3423(NewType)
1 0.000 0.000 0.000 0.000 _py_warnings.py:67(_GlobalContext)
1 0.000 0.000 0.000 0.000 _globals.py:32(_NoValueType)
1 0.000 0.000 0.000 0.000 _ufunc_config.py:462(__init__)
1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter)
2 0.000 0.000 0.000 0.000 dataclasses.py:705(<genexpr>)
9 0.000 0.000 0.000 0.000 dataclasses.py:419(<genexpr>)
1 0.000 0.000 0.000 0.000 wod_server.py:898(Player)
1 0.000 0.000 0.000 0.000 threading.py:591(Event)
1 0.000 0.000 0.000 0.000 __init__.py:307(_PointerTypeCache)
2 0.000 0.000 0.000 0.000 {method 'gettimeout' of '_socket.socket' objects}
2 0.000 0.000 0.000 0.000 dataclasses.py:936(_hash_set_none)
1 0.000 0.000 0.000 0.000 wod_server.py:868(__annotate__)
1 0.000 0.000 0.000 0.000 _py_warnings.py:596(catch_warnings)
1 0.000 0.000 0.000 0.000 records.py:56(format_parser)
1 0.000 0.000 0.000 0.000 _nbit_base.py:7(NBitBase)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:318(__init__)
1 0.000 0.000 0.000 0.000 _npyio_impl.py:50(BagObj)
1 0.000 0.000 0.000 0.000 idna.py:272(IncrementalEncoder)
3 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id}
10 0.000 0.000 0.000 0.000 wod_server.py:235(<lambda>)
1 0.000 0.000 0.000 0.000 typing.py:1679(_UnionGenericAliasMeta)
1 0.000 0.000 0.000 0.000 _convertions.py:1(<module>)
1 0.000 0.000 0.000 0.000 arrayprint.py:977(FloatingFormat)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:107(nd_grid)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:583(__init__)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:590(ndenumerate)
1 0.000 0.000 0.000 0.000 _arraysetops_impl.py:431(UniqueInverseResult)
1 0.000 0.000 0.000 0.000 wod_server.py:884(__annotate__)
1 0.000 0.000 0.000 0.000 threading.py:546(BoundedSemaphore)
1 0.000 0.000 0.000 0.000 _exceptions.py:37(_UFuncNoLoopError)
1 0.000 0.000 0.000 0.000 pickle.py:256(_Unframer)
1 0.000 0.000 0.000 0.000 contextlib.py:775(nullcontext)
2 0.000 0.000 0.000 0.000 _index_tricks_impl.py:337(__init__)
1 0.000 0.000 0.000 0.000 _linalg.py:84(EigResult)
1 0.000 0.000 0.000 0.000 idna.py:316(IncrementalDecoder)
5 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
3 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects}
2 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects}
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:1017(is_package)
1 0.000 0.000 0.000 0.000 encoder.py:105(__init__)
1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError)
1 0.000 0.000 0.000 0.000 typing.py:165(_LazyAnnotationLib)
1 0.000 0.000 0.000 0.000 typing.py:1615(_CallableGenericAlias)
1 0.000 0.000 0.000 0.000 typing.py:2964(NamedTupleMeta)
1 0.000 0.000 0.000 0.000 _py_warnings.py:52(_Context)
1 0.000 0.000 0.000 0.000 __init__.py:257(c_char_p)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:211(MGridClass)
2 0.000 0.000 0.000 0.000 _index_tricks_impl.py:143(__init__)
1 0.000 0.000 0.000 0.000 _linalg.py:88(EighResult)
1 0.000 0.000 0.000 0.000 _utils_impl.py:126(_Deprecate)
1 0.000 0.000 0.000 0.000 _datasource.py:97(__init__)
4 0.000 0.000 0.000 0.000 {method 'isascii' of 'str' objects}
1 0.000 0.000 0.000 0.000 {method 'set' of '_contextvars.ContextVar' objects}
9 0.000 0.000 0.000 0.000 dataclasses.py:1169(<genexpr>)
7 0.000 0.000 0.000 0.000 dataclasses.py:762(_is_kw_only)
1 0.000 0.000 0.000 0.000 threading.py:1409(_DeleteDummyThreadOnDel)
1 0.000 0.000 0.000 0.000 threading.py:1438(_DummyThread)
1 0.000 0.000 0.000 0.000 typing.py:1974(_ProtocolMeta)
1 0.000 0.000 0.000 0.000 _exceptions.py:31(UFuncTypeError)
1 0.000 0.000 0.000 0.000 exceptions.py:108(AxisError)
1 0.000 0.000 0.000 0.000 arrayprint.py:1392(DatetimeFormat)
1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta)
1 0.000 0.000 0.000 0.000 _pytesttester.py:45(PytestTester)
2 0.000 0.000 0.000 0.000 __init__.py:289(_get_preferred_schemes)
4 0.000 0.000 0.000 0.000 __init__.py:535(__init__)
1 0.000 0.000 0.000 0.000 _linalg.py:100(SVDResult)
1 0.000 0.000 0.000 0.000 _dtype_like.py:29(_DTypeDictBase)
1 0.000 0.000 0.000 0.000 _array_like.py:36(_SupportsArrayFunc)
4 0.000 0.000 0.000 0.000 {method 'update' of 'set' objects}
4 0.000 0.000 0.000 0.000 {built-in method _warnings._acquire_lock}
1 0.000 0.000 0.000 0.000 threading.py:1361(Timer)
1 0.000 0.000 0.000 0.000 typing.py:576(_AnyMeta)
1 0.000 0.000 0.000 0.000 typing.py:2091(Protocol)
4 0.000 0.000 0.000 0.000 _py_warnings.py:71(_filters)
1 0.000 0.000 0.000 0.000 typing.py:3752(<generic parameters of override>)
1 0.000 0.000 0.000 0.000 _globals.py:99(_SignatureDescriptor)
1 0.000 0.000 0.000 0.000 _exceptions.py:52(_UFuncBinaryResolutionError)
1 0.000 0.000 0.000 0.000 contextlib.py:89(AsyncContextDecorator)
1 0.000 0.000 0.000 0.000 _internal.py:257(c_void_p)
1 0.000 0.000 0.000 0.000 __init__.py:494(PyDLL)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:273(OGridClass)
1 0.000 0.000 0.000 0.000 _index_tricks_impl.py:640(ndindex)
1 0.000 0.000 0.000 0.000 _linalg.py:96(SlogdetResult)
1 0.000 0.000 0.000 0.000 _stride_tricks_impl.py:14(DummyArray)
1 0.000 0.000 0.000 0.000 typing.py:496(_Final)
1 0.000 0.000 0.000 0.000 warnings.py:79(_Lock)
1 0.000 0.000 0.000 0.000 _py_warnings.py:571(WarningMessage)
1 0.000 0.000 0.000 0.000 contextlib.py:66(ContextDecorator)
2 0.000 0.000 0.000 0.000 arrayprint.py:567(_recursive_guard)
1 0.000 0.000 0.000 0.000 contextlib.py:557(ExitStack)
1 0.000 0.000 0.000 0.000 __init__.py:338(c_wchar_p)
1 0.000 0.000 0.000 0.000 __init__.py:525(OleDLL)
1 0.000 0.000 0.000 0.000 _linalg.py:92(QRResult)
1 0.000 0.000 0.000 0.000 _dtype_like.py:35(_DTypeDict)
1 0.000 0.000 0.000 0.000 _arraysetops_impl.py:419(UniqueAllResult)
1 0.000 0.000 0.000 0.000 idna.py:370(StreamWriter)
4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated_lock_held}
4 0.000 0.000 0.000 0.000 {built-in method _warnings._release_lock}
1 0.000 0.000 0.000 0.000 <frozen os>:1145(__init__)
2 0.000 0.000 0.000 0.000 reprlib.py:9(recursive_repr)
1 0.000 0.000 0.000 0.000 uuid.py:94(SafeUUID)
1 0.000 0.000 0.000 0.000 typing.py:424(_Sentinel)
1 0.000 0.000 0.000 0.000 typing.py:588(Any)