[ create a new paste ] login | about

Link: http://codepad.org/rIapuaNT    [ raw code | fork ]

C, pasted on Nov 19:
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
Date: 11/18/12
Time: 21:14:27
--------------------------------------------------------------
Build 229
Steam initialized
Render Device: AMD Radeon HD 6900 Series (8.17.10.1140)
Sound Device: Speakers (Realtek High Definition Audio) stereo
Record Device: Microphone (Logitech Mic (Webcam 200))
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m667e471_1352494756
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m66a1a68_1352561627
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6670d9c_1352469801
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6739044_1352889189
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m664be7d_1352455818
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.027960s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
Loading config://ConsoleBindings.json
Loading config://FavoriteServers.json
                     } TOC05 0.652032s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000001s M4::ClientWorld::Startup sections 
                 } TOC04 0.680411s M4::ClientWorld::Startup 
             } TOC03 0.681272s M4::ClientWorld::Initialize sections 
         } TOC02 0.681344s M4::ClientWorld::Initialize 
Main Menu Initialized at Version: 229
Steam Id: 39842750
     } TOC01 4.655274s M4::ClientGame::StartWorld sections 
 } TOC00 4.655557s M4::ClientGame::StartWorld 
Network logging set to level 3
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000010s M4::World::UnloadMap sections 
 } TOC00 0.000085s M4::World::UnloadMap 
Connecting to server 108.61.71.50:27115
108.61.71.50: System packet sent (PacketType_Connect)
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.024040s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.101937s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000002s M4::ClientWorld::Startup sections 
                 } TOC04 0.126435s M4::ClientWorld::Startup 
             } TOC03 0.126528s M4::ClientWorld::Initialize sections 
         } TOC02 0.126606s M4::ClientWorld::Initialize 
     } TOC01 0.795465s M4::ClientGame::StartWorld sections 
 } TOC00 0.795614s M4::ClientGame::StartWorld 
108.61.71.50 Client: Sending reliable 0
108.61.71.50 Client: Processing acknowledgement 0
108.61.71.50 Client: Ping updated 95 ms
108.61.71.50 Client: Processing acknowledgement 0
108.61.71.50 Client: Processing reliable 0
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 0
108.61.71.50 Client: System packet received (PacketType_ConnectAck)
108.61.71.50 Client: Sending reliable 1
108.61.71.50 Client: Processing acknowledgement 1
108.61.71.50 Client: Ping updated 89 ms
108.61.71.50 Client: Processing acknowledgement 1
108.61.71.50 Client: Processing reliable 1
108.61.71.50 Client: Started receiving a new packet of 31 bytes
108.61.71.50 Client: Sending ack 1
108.61.71.50 Client: Sending reliable 2
108.61.71.50 Client: Resending reliable 2 (send 139 ms ago)
108.61.71.50 Client: Resending reliable 2 (send 139 ms ago)
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Ping updated 128 ms
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing reliable 2
108.61.71.50 Client: Started receiving a new packet of 5 bytes
108.61.71.50 Client: Started receiving a new packet of 64664 bytes
108.61.71.50 Client: Sending ack 2
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000007s M4::World::UnloadMap sections 
 } TOC00 0.000077s M4::World::UnloadMap 
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.027431s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.030267s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000001s M4::ClientWorld::Startup sections 
                 } TOC04 0.058200s M4::ClientWorld::Startup 
             } TOC03 0.058306s M4::ClientWorld::Initialize sections 
         } TOC02 0.058406s M4::ClientWorld::Initialize 
     } TOC01 0.634876s M4::ClientGame::StartWorld sections 
 } TOC00 0.635048s M4::ClientGame::StartWorld 
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing reliable 3
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing reliable 4
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing reliable 5
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Discarding reliable 3 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Discarding reliable 4 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Discarding reliable 5 (outside sequence window)
108.61.71.50 Client: Sending ack 5
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Discarding reliable 4 (outside sequence window)
108.61.71.50 Client: Sending ack 5
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 3
108.61.71.50 Client: Processing acknowledgement 2
108.61.71.50 Client: Processing reliable 6
108.61.71.50 Client: Sending ack 6
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Ping updated 120 ms
108.61.71.50 Client: Processing reliable 7
108.61.71.50 Client: Sending ack 7
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 8
108.61.71.50 Client: Sending ack 8
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 9
108.61.71.50 Client: Sending ack 9
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 10
108.61.71.50 Client: Sending ack 10
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 11
108.61.71.50 Client: Sending ack 11
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 12
108.61.71.50 Client: Sending ack 12
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 13
108.61.71.50 Client: Sending ack 13
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 14
108.61.71.50 Client: Sending ack 14
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 15
108.61.71.50 Client: Sending ack 15
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 16
108.61.71.50 Client: Sending ack 16
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 17
108.61.71.50 Client: Sending ack 17
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 18
108.61.71.50 Client: Sending ack 18
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 19
108.61.71.50 Client: Sending ack 19
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 20
108.61.71.50 Client: Sending ack 20
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 4
108.61.71.50 Client: Processing acknowledgement 3
108.61.71.50 Client: Processing reliable 21
108.61.71.50 Client: Sending ack 21
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Ping updated 114 ms
108.61.71.50 Client: Processing reliable 22
108.61.71.50 Client: Sending ack 22
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 23
108.61.71.50 Client: Sending ack 23
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 24
108.61.71.50 Client: Sending ack 24
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 25
108.61.71.50 Client: Sending ack 25
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 26
108.61.71.50 Client: Sending ack 26
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 27
108.61.71.50 Client: Sending ack 27
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 28
108.61.71.50 Client: Sending ack 28
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 29
108.61.71.50 Client: Sending ack 29
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 30
108.61.71.50 Client: Sending ack 30
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 31
108.61.71.50 Client: Sending ack 31
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 32
108.61.71.50 Client: Sending ack 32
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 33
108.61.71.50 Client: Sending ack 33
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 34
108.61.71.50 Client: Sending ack 34
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 35
108.61.71.50 Client: Sending ack 35
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 5
108.61.71.50 Client: Processing acknowledgement 4
108.61.71.50 Client: Processing reliable 36
108.61.71.50 Client: Sending ack 36
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Ping updated 111 ms
108.61.71.50 Client: Processing reliable 37
108.61.71.50 Client: Sending ack 37
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 38
108.61.71.50 Client: Sending ack 38
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 39
108.61.71.50 Client: Sending ack 39
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 40
108.61.71.50 Client: Sending ack 40
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 41
108.61.71.50 Client: Sending ack 41
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 42
108.61.71.50 Client: Sending ack 42
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 43
108.61.71.50 Client: Sending ack 43
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 44
108.61.71.50 Client: Sending ack 44
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 45
108.61.71.50 Client: Sending ack 45
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 46
108.61.71.50 Client: Sending ack 46
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 47
108.61.71.50 Client: Sending ack 47
108.61.71.50 Client: Processing acknowledgement 5
108.61.71.50 Client: Processing reliable 48
108.61.71.50 Client: Sending ack 48
 { TIC00 M4::ClientWorld::Initialize
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000875s M4::ClientWorld::Initialize sections Loading
     { TIC01 M4::ClientWorld::Initialize sections
Downloading mods
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 6
108.61.71.50 Client: Processing acknowledgement 6
108.61.71.50 Client: Ping updated 102 ms
Finished downloading and installing mods
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m667e471_1352494756
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m66a1a68_1352561627
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6670d9c_1352469801
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6739044_1352889189
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m664be7d_1352455818
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m667e471_1352494756
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m66a1a68_1352561627
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6670d9c_1352469801
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m6739044_1352889189
Mounting mod from C:/Users/Matt/AppData/Roaming/Natural Selection 2/Workshop/m664be7d_1352455818
     } TOC01 0.508848s M4::ClientWorld::Initialize sections Mod stuff
     { TIC01 M4::ClientWorld::Initialize sections
         { TIC02 M4::ClientWorld::Startup
             { TIC03 M4::ClientWorld::Startup sections
             } TOC03 0.029485s M4::ClientWorld::Startup sections Before LoadScript
             { TIC03 M4::ClientWorld::Startup sections
108.61.71.50 Client: Processing acknowledgement 6
108.61.71.50 Client: Processing reliable 49
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 49
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 7
108.61.71.50 Client: Processing acknowledgement 7
108.61.71.50 Client: Ping updated 94 ms
108.61.71.50 Client: Processing acknowledgement 7
108.61.71.50 Client: Processing reliable 50
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 50
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 8
108.61.71.50 Client: Processing acknowledgement 8
108.61.71.50 Client: Ping updated 96 ms
108.61.71.50 Client: Processing acknowledgement 8
108.61.71.50 Client: Processing reliable 51
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 51
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 9
108.61.71.50 Client: Processing acknowledgement 9
108.61.71.50 Client: Ping updated 90 ms
108.61.71.50 Client: Processing acknowledgement 9
108.61.71.50 Client: Processing reliable 52
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 52
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 10
108.61.71.50 Client: Processing acknowledgement 10
108.61.71.50 Client: Ping updated 85 ms
108.61.71.50 Client: Processing acknowledgement 10
108.61.71.50 Client: Processing reliable 53
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 53
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 11
108.61.71.50 Client: Processing acknowledgement 11
108.61.71.50 Client: Ping updated 81 ms
Loading config://ConsoleBindings.json
108.61.71.50 Client: Processing acknowledgement 11
108.61.71.50 Client: Processing reliable 54
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 54
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 12
108.61.71.50 Client: Processing acknowledgement 12
108.61.71.50 Client: Ping updated 83 ms
108.61.71.50 Client: Processing acknowledgement 12
108.61.71.50 Client: Processing reliable 55
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 55
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 13
108.61.71.50 Client: Processing acknowledgement 13
108.61.71.50 Client: Ping updated 80 ms
108.61.71.50 Client: Processing acknowledgement 13
108.61.71.50 Client: Processing reliable 56
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 56
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 14
108.61.71.50 Client: Processing acknowledgement 14
108.61.71.50 Client: Ping updated 77 ms
Loading config://FavoriteServers.json
             } TOC03 7.975106s M4::ClientWorld::Startup sections LoadScript
             { TIC03 M4::ClientWorld::Startup sections
             } TOC03 0.000002s M4::ClientWorld::Startup sections 
         } TOC02 8.004964s M4::ClientWorld::Startup 
     } TOC01 8.005037s M4::ClientWorld::Initialize sections Startup
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.001070s M4::ClientWorld::Initialize sections InitializingGame
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.005117s M4::ClientWorld::Initialize sections LoadingAssets
     { TIC01 M4::ClientWorld::Initialize sections
         { TIC02 M4::World::LoadMap
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::UnloadMap
                     { TIC05 M4::World::UnloadMap sections
                     } TOC05 0.000004s M4::World::UnloadMap sections 
                 } TOC04 0.000072s M4::World::UnloadMap 
             } TOC03 0.000139s M4::World::LoadMap sections After Unload map
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::OnPreLoad
                     { TIC05 M4::World::OnPreLoad sections
                     } TOC05 0.000041s M4::World::OnPreLoad sections 
                 } TOC04 0.000111s M4::World::OnPreLoad 
Loading 'maps/ns2_tram.level'
             } TOC03 0.000208s M4::World::LoadMap sections After OnPreLoad
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::GameLevel::Load
                     { TIC05 M4::GameLevel::Load sections
108.61.71.50 Client: Processing acknowledgement 14
108.61.71.50 Client: Processing reliable 57
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 57
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 15
108.61.71.50 Client: Processing acknowledgement 15
108.61.71.50 Client: Ping updated 74 ms
                     } TOC05 1.382440s M4::GameLevel::Load sections 
                 } TOC04 1.382749s M4::GameLevel::Load 
             } TOC03 1.382827s M4::World::LoadMap sections after level load
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::CreateMapEntities
                     { TIC05 M4::World::CreateMapEntities sections
108.61.71.50 Client: Processing acknowledgement 15
108.61.71.50 Client: Processing reliable 58
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 58
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 16
108.61.71.50 Client: Processing acknowledgement 16
108.61.71.50 Client: Ping updated 84 ms
108.61.71.50 Client: Processing acknowledgement 16
108.61.71.50 Client: Processing reliable 59
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 59
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 17
108.61.71.50 Client: Processing acknowledgement 17
108.61.71.50 Client: Ping updated 81 ms
108.61.71.50 Client: Processing acknowledgement 17
108.61.71.50 Client: Processing reliable 60
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 60
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 18
108.61.71.50 Client: Resending reliable 18 (send 131 ms ago)
108.61.71.50 Client: Processing acknowledgement 18
108.61.71.50 Client: Ping updated 91 ms
108.61.71.50 Client: Processing acknowledgement 18
108.61.71.50 Client: Processing acknowledgement 18
108.61.71.50 Client: Processing reliable 61
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 61
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 19
108.61.71.50 Client: Processing acknowledgement 19
108.61.71.50 Client: Ping updated 94 ms
108.61.71.50 Client: Processing acknowledgement 19
108.61.71.50 Client: Processing reliable 62
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 62
108.61.71.50 Client: Processing acknowledgement 19
108.61.71.50 Client: Discarding reliable 62 (outside sequence window)
108.61.71.50 Client: Sending ack 62
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 20
108.61.71.50 Client: Processing acknowledgement 20
108.61.71.50 Client: Ping updated 89 ms
108.61.71.50 Client: Processing acknowledgement 20
108.61.71.50 Client: Processing reliable 63
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 63
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 21
108.61.71.50 Client: Processing acknowledgement 21
108.61.71.50 Client: Ping updated 84 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 22
108.61.71.50 Client: Processing acknowledgement 21
108.61.71.50 Client: Processing reliable 64
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 64
108.61.71.50 Client: Processing acknowledgement 22
108.61.71.50 Client: Ping updated 81 ms
108.61.71.50 Client: Processing acknowledgement 22
108.61.71.50 Client: Discarding reliable 64 (outside sequence window)
108.61.71.50 Client: Sending ack 64
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 23
108.61.71.50 Client: Processing acknowledgement 23
108.61.71.50 Client: Ping updated 78 ms
108.61.71.50 Client: Processing acknowledgement 23
108.61.71.50 Client: Processing reliable 65
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 65
                     } TOC05 8.001814s M4::World::CreateMapEntities sections 
                 } TOC04 8.002020s M4::World::CreateMapEntities 
             } TOC03 8.002184s M4::World::LoadMap sections after CreateMapEntities
             { TIC03 M4::World::LoadMap sections
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 24
108.61.71.50 Client: Processing acknowledgement 24
108.61.71.50 Client: Ping updated 76 ms
108.61.71.50 Client: Processing acknowledgement 24
108.61.71.50 Client: Processing reliable 66
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 66
108.61.71.50 Client: System packet received (PacketType_Ping)
             } TOC03 0.710806s M4::World::LoadMap sections after CreatePhysics
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.015610s M4::World::LoadMap sections after CreatePathingGeometry
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.000018s M4::World::LoadMap sections after Script_RegisterHeapObject
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::ClientWorld::OnPostLoad
                     { TIC05 M4::ClientWorld::OnPostLoad sections
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 25
108.61.71.50 Client: Resending reliable 25 (send 126 ms ago)
108.61.71.50 Client: Processing acknowledgement 25
108.61.71.50 Client: Ping updated 91 ms
108.61.71.50 Client: Processing acknowledgement 25
108.61.71.50 Client: Processing reliable 67
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 67
108.61.71.50 Client: Processing acknowledgement 25
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 26
108.61.71.50 Client: Processing acknowledgement 25
108.61.71.50 Client: Processing reliable 68
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 68
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 26
108.61.71.50 Client: Ping updated 90 ms
108.61.71.50 Client: Processing acknowledgement 26
108.61.71.50 Client: Processing reliable 69
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 69
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 27
108.61.71.50 Client: Processing acknowledgement 27
108.61.71.50 Client: Ping updated 92 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 28
108.61.71.50 Client: Processing acknowledgement 27
108.61.71.50 Client: Processing reliable 70
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 70
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 28
108.61.71.50 Client: Ping updated 90 ms
                     } TOC05 4.477851s M4::ClientWorld::OnPostLoad sections After CreateRenderObjectsFromLevel
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                     } TOC05 0.023670s M4::ClientWorld::OnPostLoad sections After LoadSoundGeometry
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                         { TIC06 M4::World::OnPostLoad
                             { TIC07 M4::World::OnPostLoad sections
Building pathing mesh for level maps/ns2_tram.level
                                 { TIC08 M4::PathingMesh::BuildMesh
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.029036s M4::PathingMesh::BuildMesh sections After build normals
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.003290s M4::PathingMesh::BuildMesh sections After rcCalcBounds
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000058s M4::PathingMesh::BuildMesh sections After InitMeshConfig
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000033s M4::PathingMesh::BuildMesh sections After nav mesh init
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000011s M4::PathingMesh::BuildMesh sections After set area costs
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                         { TIC10 M4::PathingMesh::BuildMesh:md5Timer
                                         } TOC10 0.009152s M4::PathingMesh::BuildMesh:md5Timer 
OK! Loaded tile cache grid from maps/ns2_tram.level-client.tile_cache_grid
                                         { TIC10 M4::PathingMesh::PreProcessTiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
                                             } TOC11 0.000147s M4::PathingMesh::PreProcessTiles sections After adding tiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
108.61.71.50 Client: Processing acknowledgement 28
108.61.71.50 Client: Processing reliable 71
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 71
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 29
108.61.71.50 Client: Processing acknowledgement 29
108.61.71.50 Client: Ping updated 89 ms
108.61.71.50 Client: Processing acknowledgement 29
108.61.71.50 Client: Processing reliable 72
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 30
108.61.71.50 Client: Processing acknowledgement 30
108.61.71.50 Client: Ping updated 86 ms
                                             } TOC11 1.807790s M4::PathingMesh::PreProcessTiles sections After build navmesh tiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
                                             } TOC11 0.000002s M4::PathingMesh::PreProcessTiles sections 
                                         } TOC10 1.808322s M4::PathingMesh::PreProcessTiles 
                                     } TOC09 1.844888s M4::PathingMesh::BuildMesh sections After preprocess tiles
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000025s M4::PathingMesh::BuildMesh sections End
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000012s M4::PathingMesh::BuildMesh sections 
                                 } TOC08 1.878309s M4::PathingMesh::BuildMesh 
Client  : 0.000000 : TIME ..2.000000s InitPathing
Client  : 0.000000 : TIME ..0.000000s CreateDSPs
Client  : 0.000000 : TIME ..0.000000s Scoreboard_Clear
Client  : 0.000000 : TIME ..0.000000s CheckRules
                             } TOC07 1.939897s M4::World::OnPostLoad sections 
                         } TOC06 1.940045s M4::World::OnPostLoad 
                     } TOC05 1.940144s M4::ClientWorld::OnPostLoad sections After World::OnPostLoad
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                     } TOC05 0.000001s M4::ClientWorld::OnPostLoad sections 
                 } TOC04 6.442395s M4::ClientWorld::OnPostLoad 
Finished loading 'maps/ns2_tram.level'
             } TOC03 6.442537s M4::World::LoadMap sections after OnPostLoad
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.000001s M4::World::LoadMap sections 
         } TOC02 16.555815s M4::World::LoadMap 
     } TOC01 16.555886s M4::ClientWorld::Initialize sections LoadingMap
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000001s M4::ClientWorld::Initialize sections Before PredictWorld init
     { TIC01 M4::ClientWorld::Initialize sections
108.61.71.50 Client: Processing acknowledgement 30
108.61.71.50 Client: Processing reliable 73
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 73
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 31
108.61.71.50 Client: Processing acknowledgement 31
108.61.71.50 Client: Ping updated 84 ms
108.61.71.50 Client: Processing acknowledgement 31
108.61.71.50 Client: Processing reliable 74
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 74
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 32
108.61.71.50 Client: Processing acknowledgement 32
108.61.71.50 Client: Ping updated 80 ms
         { TIC02 M4::World::CreateMapEntities
             { TIC03 M4::World::CreateMapEntities sections
             } TOC03 0.168618s M4::World::CreateMapEntities sections 
         } TOC02 0.168823s M4::World::CreateMapEntities 
     } TOC01 2.251163s M4::ClientWorld::Initialize sections PredictWorld init
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000005s M4::ClientWorld::Initialize sections 
 } TOC00 27.328764s M4::ClientWorld::Initialize 
108.61.71.50 Client: Processing acknowledgement 32
108.61.71.50 Client: Processing reliable 75
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 75
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 33
108.61.71.50 Client: Processing acknowledgement 33
108.61.71.50 Client: Ping updated 78 ms
108.61.71.50 Client: Processing acknowledgement 33
108.61.71.50 Client: Processing reliable 76
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 76
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 34
108.61.71.50 Client: Processing acknowledgement 34
108.61.71.50 Client: Ping updated 75 ms
108.61.71.50 Client: Processing acknowledgement 34
108.61.71.50 Client: Processing reliable 77
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 77
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 35
108.61.71.50 Client: Processing acknowledgement 35
108.61.71.50 Client: Ping updated 73 ms
108.61.71.50 Client: Processing acknowledgement 35
108.61.71.50 Client: Processing reliable 78
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 78
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 36
108.61.71.50 Client: Processing acknowledgement 36
108.61.71.50 Client: Ping updated 71 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 37
108.61.71.50 Client: Processing acknowledgement 36
108.61.71.50 Client: Processing reliable 79
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 79
108.61.71.50 Client: Processing acknowledgement 37
108.61.71.50 Client: Ping updated 76 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 38
108.61.71.50 Client: Processing acknowledgement 37
108.61.71.50 Client: Processing reliable 80
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 80
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 38
108.61.71.50 Client: Ping updated 74 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 39
108.61.71.50 Client: Processing acknowledgement 38
108.61.71.50 Client: Processing reliable 81
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 81
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 39
108.61.71.50 Client: Ping updated 74 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 40
108.61.71.50 Client: Processing acknowledgement 39
108.61.71.50 Client: Processing reliable 82
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 82
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Resending reliable 40 (send 124 ms ago)
108.61.71.50 Client: Processing acknowledgement 39
108.61.71.50 Client: Discarding reliable 82 (outside sequence window)
108.61.71.50 Client: Sending ack 82
108.61.71.50 Client: Resending reliable 40 (send 124 ms ago)
108.61.71.50 Client: Processing acknowledgement 39
108.61.71.50 Client: Discarding reliable 82 (outside sequence window)
108.61.71.50 Client: Sending ack 82
108.61.71.50 Client: Resending reliable 40 (send 125 ms ago)
108.61.71.50 Client: Processing acknowledgement 39
108.61.71.50 Client: Discarding reliable 82 (outside sequence window)
108.61.71.50 Client: Sending ack 82
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Ping updated 155 ms
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 41
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Processing reliable 83
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 83
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Resending reliable 41 (send 205 ms ago)
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Discarding reliable 83 (outside sequence window)
108.61.71.50 Client: Sending ack 83
108.61.71.50 Client: Resending reliable 41 (send 205 ms ago)
108.61.71.50 Client: Processing acknowledgement 40
108.61.71.50 Client: Discarding reliable 83 (outside sequence window)
108.61.71.50 Client: Sending ack 83
108.61.71.50 Client: Processing acknowledgement 41
108.61.71.50 Client: Ping updated 232 ms
108.61.71.50 Client: Processing acknowledgement 41
108.61.71.50 Client: Processing acknowledgement 41
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 42
108.61.71.50 Client: Processing acknowledgement 41
108.61.71.50 Client: Processing reliable 84
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 84
108.61.71.50 Client: Processing acknowledgement 42
108.61.71.50 Client: Ping updated 238 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 43
108.61.71.50 Client: Processing acknowledgement 42
108.61.71.50 Client: Processing reliable 85
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 85
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Resending reliable 43 (send 289 ms ago)
108.61.71.50 Client: Processing acknowledgement 42
108.61.71.50 Client: Discarding reliable 85 (outside sequence window)
108.61.71.50 Client: Sending ack 85
108.61.71.50 Client: Processing acknowledgement 43
108.61.71.50 Client: Ping updated 267 ms
108.61.71.50 Client: Processing acknowledgement 43
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 44
108.61.71.50 Client: Processing acknowledgement 43
108.61.71.50 Client: Processing reliable 86
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 86
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 44
108.61.71.50 Client: Ping updated 228 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 45
108.61.71.50 Client: Processing acknowledgement 44
108.61.71.50 Client: Processing reliable 87
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 87
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 45
108.61.71.50 Client: Ping updated 200 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 46
108.61.71.50 Client: Processing acknowledgement 45
108.61.71.50 Client: Processing reliable 88
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 88
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 46
108.61.71.50 Client: Ping updated 176 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 47
108.61.71.50 Client: Processing acknowledgement 46
108.61.71.50 Client: Processing reliable 89
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 89
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Resending reliable 47 (send 226 ms ago)
108.61.71.50 Client: Processing acknowledgement 46
108.61.71.50 Client: Discarding reliable 89 (outside sequence window)
108.61.71.50 Client: Sending ack 89
108.61.71.50 Client: Processing acknowledgement 47
108.61.71.50 Client: Ping updated 208 ms
108.61.71.50 Client: Processing acknowledgement 47
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 48
108.61.71.50 Client: Processing acknowledgement 47
108.61.71.50 Client: Processing reliable 90
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 90
108.61.71.50 Client: Resending reliable 48 (send 258 ms ago)
108.61.71.50 Client: Processing acknowledgement 47
108.61.71.50 Client: Discarding reliable 90 (outside sequence window)
108.61.71.50 Client: Sending ack 90
108.61.71.50 Client: Processing acknowledgement 48
108.61.71.50 Client: Ping updated 241 ms
108.61.71.50 Client: Processing acknowledgement 48
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 49
108.61.71.50 Client: Processing acknowledgement 49
108.61.71.50 Client: Ping updated 207 ms
108.61.71.50 Client: Processing acknowledgement 49
108.61.71.50 Client: Processing reliable 91
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 91
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 50
108.61.71.50 Client: Processing acknowledgement 50
108.61.71.50 Client: Ping updated 179 ms
108.61.71.50 Client: Processing acknowledgement 50
108.61.71.50 Client: Processing reliable 92
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 92
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 51
108.61.71.50 Client: Processing acknowledgement 51
108.61.71.50 Client: Ping updated 157 ms
108.61.71.50 Client: Processing acknowledgement 51
108.61.71.50 Client: Processing reliable 93
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 93
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 52
108.61.71.50 Client: Processing acknowledgement 52
108.61.71.50 Client: Ping updated 153 ms
108.61.71.50 Client: Processing acknowledgement 52
108.61.71.50 Client: Processing reliable 94
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 94
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 53
108.61.71.50 Client: Processing acknowledgement 53
108.61.71.50 Client: Ping updated 143 ms
108.61.71.50 Client: Processing acknowledgement 53
108.61.71.50 Client: Processing reliable 95
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 95
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 54
108.61.71.50 Client: Processing acknowledgement 54
108.61.71.50 Client: Ping updated 135 ms
108.61.71.50 Client: Processing acknowledgement 54
108.61.71.50 Client: Processing reliable 96
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 96
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 55
108.61.71.50 Client: Processing acknowledgement 55
108.61.71.50 Client: Ping updated 127 ms
108.61.71.50 Client: Processing acknowledgement 55
108.61.71.50 Client: Processing reliable 97
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 97
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 56
108.61.71.50 Client: Processing acknowledgement 56
108.61.71.50 Client: Ping updated 115 ms
108.61.71.50 Client: Processing acknowledgement 56
108.61.71.50 Client: Processing reliable 98
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 98
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 57
108.61.71.50 Client: Processing acknowledgement 57
108.61.71.50 Client: Ping updated 112 ms
108.61.71.50 Client: Processing acknowledgement 57
108.61.71.50 Client: Processing reliable 99
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 99
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 58
108.61.71.50 Client: Processing acknowledgement 58
108.61.71.50 Client: Ping updated 102 ms
108.61.71.50 Client: Processing acknowledgement 58
108.61.71.50 Client: Processing reliable 100
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 100
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 59
108.61.71.50 Client: Processing acknowledgement 59
108.61.71.50 Client: Ping updated 102 ms
108.61.71.50 Client: Processing acknowledgement 59
108.61.71.50 Client: Processing reliable 101
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 101
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 59
108.61.71.50 Client: Discarding reliable 101 (outside sequence window)
108.61.71.50 Client: Sending ack 101
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 60
108.61.71.50 Client: Processing acknowledgement 60
108.61.71.50 Client: Ping updated 96 ms
108.61.71.50 Client: Processing acknowledgement 60
108.61.71.50 Client: Processing reliable 102
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 102
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 61
108.61.71.50 Client: Resending reliable 61 (send 146 ms ago)
108.61.71.50 Client: Processing acknowledgement 61
108.61.71.50 Client: Ping updated 107 ms
108.61.71.50 Client: Processing acknowledgement 61
108.61.71.50 Client: Processing acknowledgement 61
108.61.71.50 Client: Processing reliable 103
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 103
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 62
108.61.71.50 Client: Processing acknowledgement 62
108.61.71.50 Client: Ping updated 99 ms
108.61.71.50 Client: Processing acknowledgement 62
108.61.71.50 Client: Processing reliable 104
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 104
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 63
108.61.71.50 Client: Processing acknowledgement 63
108.61.71.50 Client: Ping updated 93 ms
108.61.71.50 Client: Processing acknowledgement 63
108.61.71.50 Client: Processing reliable 105
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 105
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 64
108.61.71.50 Client: Resending reliable 64 (send 143 ms ago)
108.61.71.50 Client: Processing acknowledgement 64
108.61.71.50 Client: Ping updated 113 ms
108.61.71.50 Client: Processing acknowledgement 64
108.61.71.50 Client: Processing reliable 106
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 106
108.61.71.50 Client: Processing acknowledgement 64
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 65
108.61.71.50 Client: Processing acknowledgement 64
108.61.71.50 Client: Processing reliable 107
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Processing acknowledgement 65
108.61.71.50 Client: Ping updated 104 ms
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 107
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 66
108.61.71.50 Client: Processing acknowledgement 65
108.61.71.50 Client: Processing reliable 108
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 108
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 66
108.61.71.50 Client: Ping updated 100 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 67
108.61.71.50 Client: Processing acknowledgement 66
108.61.71.50 Client: Processing reliable 109
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 109
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 67
108.61.71.50 Client: Ping updated 93 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 68
108.61.71.50 Client: Processing acknowledgement 67
108.61.71.50 Client: Processing reliable 110
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Processing acknowledgement 68
108.61.71.50 Client: Ping updated 91 ms
108.61.71.50 Client: Sending ack 110
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 69
108.61.71.50 Client: Processing acknowledgement 68
108.61.71.50 Client: Processing reliable 111
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 111
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 69
108.61.71.50 Client: Ping updated 89 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 70
108.61.71.50 Client: Processing acknowledgement 69
108.61.71.50 Client: Processing reliable 112
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 112
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 70
108.61.71.50 Client: Ping updated 92 ms
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 71
108.61.71.50 Client: Processing acknowledgement 70
108.61.71.50 Client: Processing reliable 113
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Processing acknowledgement 71
108.61.71.50 Client: Ping updated 87 ms
108.61.71.50 Client: Sending ack 113
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 72
108.61.71.50 Client: Processing acknowledgement 72
108.61.71.50 Client: Ping updated 91 ms
108.61.71.50 Client: Processing reliable 114
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 114
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 73
108.61.71.50 Client: Processing acknowledgement 73
108.61.71.50 Client: Ping updated 86 ms
108.61.71.50 Client: Processing acknowledgement 73
108.61.71.50 Client: Processing reliable 115
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 115
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 74
108.61.71.50 Client: Processing acknowledgement 74
108.61.71.50 Client: Ping updated 82 ms
108.61.71.50 Client: Processing acknowledgement 74
108.61.71.50 Client: Processing reliable 116
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Sending ack 116
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 75
108.61.71.50 Client: Processing acknowledgement 75
108.61.71.50 Client: Ping updated 81 ms
108.61.71.50 Client: Processing reliable 117
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 117
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: System packet sent (PacketType_Ping)
108.61.71.50 Client: Sending reliable 76
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Ping updated 84 ms
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Processing reliable 118
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Sending ack 118
108.61.71.50 Client: System packet received (PacketType_Ping)
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000008s M4::World::UnloadMap sections 
 } TOC00 0.000126s M4::World::UnloadMap 
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Processing reliable 119
108.61.71.50 Client: Started receiving a new packet of 1 bytes
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Processing acknowledgement 76
108.61.71.50 Client: Discarding reliable 119 (outside sequence window)
108.61.71.50 Client: Sending reliable 77
108.61.71.50 Client: System packet received (PacketType_Ping)
108.61.71.50 Client: Processing acknowledgement 77
108.61.71.50 Client: Ping updated 85 ms
108.61.71.50 Client: Sending reliable 78
108.61.71.50 Client: Processing acknowledgement 77
108.61.71.50 Client: Processing reliable 120
108.61.71.50 Client: Started receiving a new packet of 8 bytes
108.61.71.50 Client: Sending ack 120
108.61.71.50 Client: Processing unreliable 0
108.61.71.50 Client: Started receiving a new packet of 5531 bytes
108.61.71.50 Client: Processing acknowledgement 78
108.61.71.50 Client: Ping updated 93 ms
108.61.71.50 Client: Processing unreliable 1
108.61.71.50 Client: Processing acknowledgement 78
108.61.71.50 Client: Processing reliable 121
108.61.71.50 Client: Started receiving a new packet of 10 bytes
108.61.71.50 Client: Started receiving a new packet of 10 bytes
108.61.71.50 Client: Sending ack 121
108.61.71.50 Client: Processing unreliable 2
108.61.71.50 Client: Processing unreliable 3
108.61.71.50 Client: Processing unreliable 4
108.61.71.50 Client: Started receiving a new packet of 5531 bytes
108.61.71.50 Client: Sending unreliable 0
108.61.71.50 Client: Processing unreliable 5
108.61.71.50 Client: Processing unreliable 6
108.61.71.50 Client: Processing unreliable 7
108.61.71.50 Client: Processing unreliable 8
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 9
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 10
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 11
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 12
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 13
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 14
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 15
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing acknowledgement 78
108.61.71.50 Client: Processing reliable 122
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Started receiving a new packet of 39 bytes
108.61.71.50 Client: Processing unreliable 16
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 17
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 18
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 19
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Started receiving a new packet of 13 bytes
108.61.71.50 Client: Processing unreliable 20
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 21
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Processing unreliable 22
108.61.71.50 Client: Started receiving a new packet of 72 bytes
108.61.71.50 Client: Sending reliable 79
108.61.71.50 Client: Sending unreliable 1
108.61.71.50 Client: Processing acknowledgement 78
108.61.71.50 Client: Discarding reliable 122 (outside sequence window)
108.61.71.50 Client: Processing unreliable 23
108.61.71.50 Client: Started receiving a new packet of 77 bytes
108.61.71.50 Client: Processing acknowledgement 79
108.61.71.50 Client: Ping updated 136 ms
108.61.71.50 Client: Processing unreliable 24
108.61.71.50 Client: Started receiving a new packet of 77 bytes
108.61.71.50 Client: Processing acknowledgement 79
108.61.71.50 Client: Processing reliable 123
108.61.71.50 Client: Started receiving a new packet of 263 bytes
108.61.71.50 Client: Processing unreliable 25
108.61.71.50 Client: Started receiving a new packet of 89 bytes
108.61.71.50 Client: Processing unreliable 26
108.61.71.50 Client: Started receiving a new packet of 89 bytes
108.61.71.50 Client: Processing unreliable 27
108.61.71.50 Client: Started receiving a new packet of 84 bytes
108.61.71.50 Client: Sending ack 123
108.61.71.50 Client: Sending unreliable 2
108.61.71.50 Client: Processing unreliable 28
108.61.71.50 Client: Started receiving a new packet of 84 bytes
108.61.71.50 Client: Sending unreliable 3
108.61.71.50 Client: Sending unreliable 4
108.61.71.50 Client: Processing unreliable 29
108.61.71.50 Client: Started receiving a new packet of 84 bytes
108.61.71.50 Client: Sending unreliable 5
108.61.71.50 Client: Sending unreliable 6
108.61.71.50 Client: Processing unreliable 30
108.61.71.50 Client: Started receiving a new packet of 80 bytes
108.61.71.50 Client: Sending unreliable 7
108.61.71.50 Client: Processing unreliable 31
108.61.71.50 Client: Started receiving a new packet of 80 bytes
108.61.71.50 Client: Sending unreliable 8
108.61.71.50 Client: Processing unreliable 32
108.61.71.50 Client: Started receiving a new packet of 80 bytes
108.61.71.50 Client: Sending unreliable 9
108.61.71.50 Client: Processing unreliable 33
108.61.71.50 Client: Started receiving a new packet of 51 bytes
108.61.71.50 Client: Sending unreliable 10
108.61.71.50 Client: Processing unreliable 34
108.61.71.50 Client: Started receiving a new packet of 51 bytes
108.61


Create a new paste based on this one


Comments: