forked from Crystalwarrior/KFO-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlin_start_output.log
2143 lines (2110 loc) · 171 KB
/
lin_start_output.log
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
Starting up server...
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting aiohttp==3.9.0
Downloading https://www.piwheels.org/simple/aiohttp/aiohttp-3.9.0-cp311-cp311-linux_armv7l.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 1.8 MB/s eta 0:00:00
Collecting aiosignal==1.3.1
Using cached https://www.piwheels.org/simple/aiosignal/aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
Collecting arrow==1.3.0
Downloading https://www.piwheels.org/simple/arrow/arrow-1.3.0-py3-none-any.whl (66 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.4/66.4 kB 128.7 kB/s eta 0:00:00
Collecting async-timeout==4.0.3
Downloading https://www.piwheels.org/simple/async-timeout/async_timeout-4.0.3-py3-none-any.whl (5.7 kB)
Collecting attrs==23.1.0
Downloading https://www.piwheels.org/simple/attrs/attrs-23.1.0-py3-none-any.whl (61 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 253.1 kB/s eta 0:00:00
Collecting certifi==2023.7.22
Downloading https://www.piwheels.org/simple/certifi/certifi-2023.7.22-py3-none-any.whl (158 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 158.3/158.3 kB 402.2 kB/s eta 0:00:00
Collecting charset-normalizer==3.3.2
Downloading https://www.piwheels.org/simple/charset-normalizer/charset_normalizer-3.3.2-py3-none-any.whl (48 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 48.5/48.5 kB 214.8 kB/s eta 0:00:00
Collecting discord==2.3.2
Downloading https://www.piwheels.org/simple/discord/discord-2.3.2-py3-none-any.whl (1.1 kB)
Collecting discord.py==2.3.2
Downloading https://www.piwheels.org/simple/discord-py/discord.py-2.3.2-py3-none-any.whl (1.1 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 1.9 MB/s eta 0:00:00
Collecting frozenlist==1.4.0
Downloading https://www.piwheels.org/simple/frozenlist/frozenlist-1.4.0-cp311-cp311-linux_armv7l.whl (193 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 193.1/193.1 kB 856.4 kB/s eta 0:00:00
Collecting geoip2==4.7.0
Downloading https://www.piwheels.org/simple/geoip2/geoip2-4.7.0-py2.py3-none-any.whl (26 kB)
Collecting idna==3.4
Using cached https://www.piwheels.org/simple/idna/idna-3.4-py3-none-any.whl (61 kB)
Collecting maxminddb==2.5.1
Downloading https://www.piwheels.org/simple/maxminddb/maxminddb-2.5.1-cp311-cp311-linux_armv7l.whl (79 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.8/79.8 kB 480.5 kB/s eta 0:00:00
Collecting multidict==6.0.4
Downloading https://www.piwheels.org/simple/multidict/multidict-6.0.4-cp311-cp311-linux_armv7l.whl (115 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 115.8/115.8 kB 571.5 kB/s eta 0:00:00
Collecting oyaml==1.0
Using cached https://www.piwheels.org/simple/oyaml/oyaml-1.0-py2.py3-none-any.whl (3.0 kB)
Collecting pystun3==1.0.0
Downloading https://www.piwheels.org/simple/pystun3/pystun3-1.0.0-py3-none-any.whl (8.8 kB)
Collecting python-dateutil==2.8.2
Using cached https://www.piwheels.org/simple/python-dateutil/python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
Collecting PyYAML==6.0.1
Downloading https://www.piwheels.org/simple/pyyaml/PyYAML-6.0.1-cp311-cp311-linux_armv7l.whl (45 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.4/45.4 kB 56.0 kB/s eta 0:00:00
Collecting requests==2.31.0
Downloading https://www.piwheels.org/simple/requests/requests-2.31.0-py3-none-any.whl (62 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.6/62.6 kB 345.7 kB/s eta 0:00:00
Collecting six==1.16.0
Using cached https://www.piwheels.org/simple/six/six-1.16.0-py2.py3-none-any.whl (11 kB)
Collecting timeparse-plus==1.2.0
Using cached https://www.piwheels.org/simple/timeparse-plus/timeparse_plus-1.2.0-py2.py3-none-any.whl (9.0 kB)
Collecting types-python-dateutil==2.8.19.14
Downloading https://www.piwheels.org/simple/types-python-dateutil/types_python_dateutil-2.8.19.14-py3-none-any.whl (9.4 kB)
Collecting urllib3==2.1.0
Downloading https://www.piwheels.org/simple/urllib3/urllib3-2.1.0-py3-none-any.whl (104 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.6/104.6 kB 348.2 kB/s eta 0:00:00
Collecting websockets==12.0
Downloading https://www.piwheels.org/simple/websockets/websockets-12.0-cp311-cp311-linux_armv7l.whl (129 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 129.1/129.1 kB 629.4 kB/s eta 0:00:00
Collecting yarl==1.9.2
Downloading https://www.piwheels.org/simple/yarl/yarl-1.9.2-cp311-cp311-linux_armv7l.whl (216 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 216.7/216.7 kB 886.5 kB/s eta 0:00:00
Collecting setuptools>=68.2.2
Downloading https://www.piwheels.org/simple/setuptools/setuptools-75.6.0-py3-none-any.whl (1.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 2.8 MB/s eta 0:00:00
Installing collected packages: types-python-dateutil, timeparse-plus, pystun3, websockets, urllib3, six, setuptools, PyYAML, multidict, idna, frozenlist, charset-normalizer, certifi, attrs, async-timeout, yarl, requests, python-dateutil, oyaml, maxminddb, aiosignal, arrow, aiohttp, geoip2, discord.py, discord
WARNING: The script pystun3 is installed in '/root/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
WARNING: The script normalizer is installed in '/root/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed PyYAML-6.0.1 aiohttp-3.9.0 aiosignal-1.3.1 arrow-1.3.0 async-timeout-4.0.3 attrs-23.1.0 certifi-2023.7.22 charset-normalizer-3.3.2 discord-2.3.2 discord.py-2.3.2 frozenlist-1.4.0 geoip2-4.7.0 idna-3.4 maxminddb-2.5.1 multidict-6.0.4 oyaml-1.0 pystun3-1.0.0 python-dateutil-2.8.2 requests-2.31.0 setuptools-75.6.0 six-1.16.0 timeparse-plus-1.2.0 types-python-dateutil-2.8.19.14 urllib3-2.1.0 websockets-12.0 yarl-1.9.2
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
[notice] A new release of pip available: 22.3.1 -> 24.3.1
[notice] To update, run: pip install --upgrade pip
tsuserver3 - an Attorney Online server
Installing dependencies for you...
If an import error occurs after the installation, try restarting the server.
Traceback (most recent call last):
File "/home/redpi/Documents/d9_server/updated/start_server.py", line 61, in <module>
main()
File "/home/redpi/Documents/d9_server/updated/start_server.py", line 51, in main
from server.tsuserver import TsuServer3
File "/home/redpi/Documents/d9_server/updated/server/tsuserver.py", line 7, in <module>
import websockets
ModuleNotFoundError: No module named 'websockets'
Server has shut down. Will restart in 2 seconds (use CTRL-C to cancel)
Starting up server...
tsuserver3 - an Attorney Online server
[2024-12-19 21:47:48,364][main][INFO] Starting server
[2024-12-19 21:47:48,368][asyncio][DEBUG] Using selector: EpollSelector
[2024-12-19 21:47:48,408][database][INFO] start (None onto None): None
Server started and is listening on port 27016
[2024-12-19 21:47:48,430][websockets.server][INFO] server listening on 0.0.0.0:11837
[2024-12-19 21:47:49,421][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:47:51,132][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:47:51,134][websockets.server][DEBUG] < GET / HTTP/1.1
[2024-12-19 21:47:51,135][websockets.server][DEBUG] < Host: localhost:11837
[2024-12-19 21:47:51,135][websockets.server][DEBUG] < Upgrade: websocket
[2024-12-19 21:47:51,136][websockets.server][DEBUG] < Connection: Upgrade
[2024-12-19 21:47:51,136][websockets.server][DEBUG] < Sec-WebSocket-Key: ZgaAZzCyZfn0+fUF6QbdyQ==
[2024-12-19 21:47:51,136][websockets.server][DEBUG] < Sec-WebSocket-Version: 13
[2024-12-19 21:47:51,137][websockets.server][DEBUG] < Sec-WebSocket-Extensions: permessage-deflate; client_max_window_bits
[2024-12-19 21:47:51,137][websockets.server][DEBUG] < User-Agent: Python/3.11 websockets/12.0
[2024-12-19 21:47:51,139][websockets.server][DEBUG] > HTTP/1.1 101 Switching Protocols
[2024-12-19 21:47:51,139][websockets.server][DEBUG] > Upgrade: websocket
[2024-12-19 21:47:51,140][websockets.server][DEBUG] > Connection: Upgrade
[2024-12-19 21:47:51,140][websockets.server][DEBUG] > Sec-WebSocket-Accept: 3g9P9Zzou+tlJvILlUMjFOiCT78=
[2024-12-19 21:47:51,140][websockets.server][DEBUG] > Sec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=12; client_max_window_bits=12
[2024-12-19 21:47:51,141][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:47:51 GMT
[2024-12-19 21:47:51,141][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:47:51,142][websockets.server][INFO] connection open
[2024-12-19 21:47:51,142][websockets.server][DEBUG] = connection is OPEN
[2024-12-19 21:47:51,149][websockets.server][DEBUG] > TEXT 'decryptor#NOENCRYPT#%' [21 bytes]
[2024-12-19 21:47:51,151][websockets.server][DEBUG] < TEXT 'HI#🤖D9BoT#%' [14 bytes]
[2024-12-19 21:47:51,152][websockets.server][DEBUG] < TEXT 'ID#webAO#webAO#%' [16 bytes]
[2024-12-19 21:47:51,153][websockets.server][DEBUG] < TEXT 'RD#%' [4 bytes]
[2024-12-19 21:47:51,154][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
Handshake: 127.0.0.1:37180 - 1 / 🤖D9BoT
[2024-12-19 21:47:51,158][database][INFO] 1 (HDID: 🤖D9BoT) connected.
[2024-12-19 21:47:51,169][websockets.server][DEBUG] > TEXT 'ID#0#KFO-Server#3.3.0#%' [23 bytes]
[2024-12-19 21:47:51,170][websockets.server][DEBUG] > TEXT 'PN#1#150#%' [10 bytes]
[2024-12-19 21:47:51,171][websockets.server][DEBUG] > TEXT 'FL#yellowtext#customobjections#prezoom#flipping...ed_desk_mods#y_offset#%' [198 bytes]
[2024-12-19 21:47:51,173][websockets.server][DEBUG] > TEXT 'ASS#https://d9c.redjstone.com/#%' [32 bytes]
[2024-12-19 21:47:51,175][websockets.server][DEBUG] > TEXT 'CharsCheck#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#...0#0#0#0#0#0#0#0#0#0#0#%' [138 bytes]
[2024-12-19 21:47:51,176][websockets.server][DEBUG] > TEXT 'HP#1#10#%' [9 bytes]
[2024-12-19 21:47:51,177][websockets.server][DEBUG] > TEXT 'HP#2#10#%' [9 bytes]
[2024-12-19 21:47:51,178][websockets.server][DEBUG] > TEXT 'BN#gs4##%' [9 bytes]
[2024-12-19 21:47:51,179][websockets.server][DEBUG] > TEXT 'LE#%' [4 bytes]
[2024-12-19 21:47:51,180][websockets.server][DEBUG] > TEXT 'MM#1#%' [6 bytes]
[2024-12-19 21:47:51,181][websockets.server][DEBUG] > TEXT 'ARUP#0#-1#%' [11 bytes]
[2024-12-19 21:47:51,182][websockets.server][DEBUG] > TEXT 'ARUP#1#GAMING#%' [15 bytes]
[2024-12-19 21:47:51,183][websockets.server][DEBUG] > TEXT 'ARUP#2#Double-Click for Hubs#%' [30 bytes]
[2024-12-19 21:47:51,184][websockets.server][DEBUG] > TEXT 'ARUP#3##%' [9 bytes]
[2024-12-19 21:47:51,185][websockets.server][DEBUG] > TEXT 'DONE#%' [6 bytes]
[2024-12-19 21:47:51,185][websockets.server][DEBUG] > TEXT "CT#<dollar>D9#📟MOTD📟\r\nBienvenido al Tribunal ...cord.gg/Bg5Pakn\r\n#1#%" [424 bytes]
[2024-12-19 21:47:51,187][websockets.server][DEBUG] > TEXT 'CT#<dollar>D9#🌍HUB [0] Español INFO🌍\r\nBienven...de la estancia!\r\n#1#%' [121 bytes]
[2024-12-19 21:47:51,188][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:47:52,135][websockets.server][DEBUG] < TEXT 'CC#0#-1#web#%' [13 bytes]
[2024-12-19 21:47:52,137][database][INFO] [H0 A0 'Lobby'] Spectator/ (1): event char.change ({"from": "Spectator", "to": "Spectator"})
[2024-12-19 21:47:52,151][websockets.server][DEBUG] < TEXT 'CC#0#6#web#%' [12 bytes]
[2024-12-19 21:47:52,151][websockets.server][DEBUG] > TEXT 'PV#0#CID#-1#%' [13 bytes]
[2024-12-19 21:47:52,153][database][INFO] [H0 A0 'Lobby'] iniswap7/ (1): event char.change ({"from": "Spectator", "to": "iniswap7"})
[2024-12-19 21:47:52,160][websockets.server][DEBUG] > TEXT 'PV#0#CID#6#%' [12 bytes]
[2024-12-19 21:47:52,161][websockets.server][DEBUG] > TEXT 'ARUP#0#-1#%' [11 bytes]
[2024-12-19 21:47:52,522][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:47:52,524][websockets.server][DEBUG] < GET / HTTP/1.1
[2024-12-19 21:47:52,524][websockets.server][DEBUG] < Host: d9.redjstone.com:11837
[2024-12-19 21:47:52,525][websockets.server][DEBUG] < User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0
[2024-12-19 21:47:52,525][websockets.server][DEBUG] < Accept: */*
[2024-12-19 21:47:52,525][websockets.server][DEBUG] < Accept-Language: es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3
[2024-12-19 21:47:52,526][websockets.server][DEBUG] < Accept-Encoding: gzip, deflate
[2024-12-19 21:47:52,526][websockets.server][DEBUG] < Sec-WebSocket-Version: 13
[2024-12-19 21:47:52,526][websockets.server][DEBUG] < Origin: http://d9.redjstone.com:11037
[2024-12-19 21:47:52,527][websockets.server][DEBUG] < Sec-WebSocket-Extensions: permessage-deflate
[2024-12-19 21:47:52,527][websockets.server][DEBUG] < Sec-WebSocket-Key: NwfVSTtKFlObtgzfx+4pLQ==
[2024-12-19 21:47:52,527][websockets.server][DEBUG] < Connection: keep-alive, Upgrade
[2024-12-19 21:47:52,528][websockets.server][DEBUG] < Cookie: theme=default; chatbox=dynamic; sfxVolume=0.5; shoutVolume=0.5; testimonyVolume=0.5; showname=true; ic_chat_name=
[2024-12-19 21:47:52,528][websockets.server][DEBUG] < Pragma: no-cache
[2024-12-19 21:47:52,528][websockets.server][DEBUG] < Cache-Control: no-cache
[2024-12-19 21:47:52,528][websockets.server][DEBUG] < Upgrade: websocket
[2024-12-19 21:47:52,529][websockets.server][DEBUG] > HTTP/1.1 101 Switching Protocols
[2024-12-19 21:47:52,530][websockets.server][DEBUG] > Upgrade: websocket
[2024-12-19 21:47:52,530][websockets.server][DEBUG] > Connection: Upgrade
[2024-12-19 21:47:52,530][websockets.server][DEBUG] > Sec-WebSocket-Accept: +hrFAQEnRBN9PBxGoY/HrbqpfCA=
[2024-12-19 21:47:52,531][websockets.server][DEBUG] > Sec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=12
[2024-12-19 21:47:52,531][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:47:52 GMT
[2024-12-19 21:47:52,531][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:47:52,532][websockets.server][INFO] connection open
[2024-12-19 21:47:52,532][websockets.server][DEBUG] = connection is OPEN
[2024-12-19 21:47:52,544][websockets.server][DEBUG] > TEXT 'decryptor#NOENCRYPT#%' [21 bytes]
[2024-12-19 21:47:52,545][websockets.server][DEBUG] < TEXT 'HI#a7baef0899fc4699662fd062c3b079ce#%' [37 bytes]
Handshake: 81.43.184.187:59839 - 59545 / a7baef0899fc4699662fd062c3b079ce
[2024-12-19 21:47:52,555][database][INFO] 59545 (HDID: a7baef0899fc4699662fd062c3b079ce) connected.
[2024-12-19 21:47:52,563][websockets.server][DEBUG] > TEXT 'ID#1#KFO-Server#3.3.0#%' [23 bytes]
[2024-12-19 21:47:52,564][websockets.server][DEBUG] > TEXT 'PN#2#150#%' [10 bytes]
[2024-12-19 21:47:52,567][websockets.server][DEBUG] < TEXT 'ID#webAO#2.8.0#%' [16 bytes]
[2024-12-19 21:47:52,567][websockets.server][DEBUG] < TEXT 'askchaa#%' [9 bytes]
[2024-12-19 21:47:52,568][websockets.server][DEBUG] > TEXT 'FL#yellowtext#customobjections#prezoom#flipping...ed_desk_mods#y_offset#%' [198 bytes]
[2024-12-19 21:47:52,569][websockets.server][DEBUG] > TEXT 'ASS#https://d9c.redjstone.com/#%' [32 bytes]
[2024-12-19 21:47:52,570][websockets.server][DEBUG] > TEXT 'SI#63#0#0#%' [11 bytes]
[2024-12-19 21:47:52,572][websockets.server][DEBUG] < TEXT 'RC#%' [4 bytes]
[2024-12-19 21:47:52,573][websockets.server][DEBUG] > TEXT "SC#iniswap1#iniswap2#iniswap3#iniswap4#iniswap5...asquez#Wellington#Zak#%" [501 bytes]
[2024-12-19 21:47:52,579][websockets.server][DEBUG] < TEXT 'RM#%' [4 bytes]
[2024-12-19 21:47:52,585][websockets.server][DEBUG] > TEXT "SM#🌍[0] Español#Lobby#Sala de juegos#Prueba o V...D Gigibyte Remix.opus#%" [61794 bytes]
[2024-12-19 21:47:52,605][websockets.server][DEBUG] < TEXT 'RD#%' [4 bytes]
[2024-12-19 21:47:52,607][websockets.server][DEBUG] > TEXT 'CharsCheck#0#0#0#0#0#0#-1#0#0#0#0#0#0#0#0#0#0#0...0#0#0#0#0#0#0#0#0#0#0#%' [139 bytes]
[2024-12-19 21:47:52,608][websockets.server][DEBUG] > TEXT 'HP#1#10#%' [9 bytes]
[2024-12-19 21:47:52,608][websockets.server][DEBUG] > TEXT 'HP#2#10#%' [9 bytes]
[2024-12-19 21:47:52,609][websockets.server][DEBUG] > TEXT 'BN#gs4##%' [9 bytes]
[2024-12-19 21:47:52,609][websockets.server][DEBUG] > TEXT 'LE#%' [4 bytes]
[2024-12-19 21:47:52,610][websockets.server][DEBUG] > TEXT 'MM#1#%' [6 bytes]
[2024-12-19 21:47:52,611][websockets.server][DEBUG] > TEXT 'ARUP#0#1#1#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#%' [58 bytes]
[2024-12-19 21:47:52,611][websockets.server][DEBUG] > TEXT 'ARUP#1#GAMING#########################%' [39 bytes]
[2024-12-19 21:47:52,612][websockets.server][DEBUG] > TEXT 'ARUP#2#Double-Click for Hubs#########################%' [54 bytes]
[2024-12-19 21:47:52,612][websockets.server][DEBUG] > TEXT 'ARUP#3##########################%' [33 bytes]
[2024-12-19 21:47:52,613][websockets.server][DEBUG] > TEXT 'DONE#%' [6 bytes]
[2024-12-19 21:47:52,613][websockets.server][DEBUG] > TEXT "CT#<dollar>D9#📟MOTD📟\r\nBienvenido al Tribunal ...cord.gg/Bg5Pakn\r\n#1#%" [424 bytes]
[2024-12-19 21:47:52,614][websockets.server][DEBUG] > TEXT 'CT#<dollar>D9#🌍HUB [0] Español INFO🌍\r\nBienven...de la estancia!\r\n#1#%' [121 bytes]
[2024-12-19 21:47:56,150][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:47:56,152][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:47:57,540][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:47:57,542][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:01,175][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:01,176][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:02,554][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:02,556][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:06,181][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:06,182][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:07,557][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:07,558][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:11,167][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:11,168][websockets.server][DEBUG] > PING 51 23 7e e8 [binary, 4 bytes]
[2024-12-19 21:48:11,170][websockets.server][DEBUG] < PONG 51 23 7e e8 [binary, 4 bytes]
[2024-12-19 21:48:11,170][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:11,182][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:11,183][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:12,551][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:12,552][websockets.server][DEBUG] > PING c0 09 bd f5 [binary, 4 bytes]
[2024-12-19 21:48:12,555][websockets.server][DEBUG] < PONG c0 09 bd f5 [binary, 4 bytes]
[2024-12-19 21:48:12,556][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:12,560][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:12,561][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:16,204][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:16,406][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:17,564][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:17,566][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:21,210][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:21,211][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:22,572][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:22,573][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:26,218][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:26,219][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:27,577][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:27,578][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:31,176][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:31,176][websockets.server][DEBUG] > PING 66 13 8a 8a [binary, 4 bytes]
[2024-12-19 21:48:31,178][websockets.server][DEBUG] < PONG 66 13 8a 8a [binary, 4 bytes]
[2024-12-19 21:48:31,179][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:31,219][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:31,220][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:32,562][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:32,563][websockets.server][DEBUG] > PING a9 8b e5 7a [binary, 4 bytes]
[2024-12-19 21:48:32,566][websockets.server][DEBUG] < PONG a9 8b e5 7a [binary, 4 bytes]
[2024-12-19 21:48:32,567][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:32,586][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:32,586][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:36,226][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:36,228][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:37,597][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:37,598][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:41,229][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:41,231][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:42,609][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:42,610][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:46,239][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:46,241][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:47,615][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:47,617][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:51,184][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:51,185][websockets.server][DEBUG] > PING 05 46 d9 06 [binary, 4 bytes]
[2024-12-19 21:48:51,188][websockets.server][DEBUG] < PONG 05 46 d9 06 [binary, 4 bytes]
[2024-12-19 21:48:51,189][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:51,242][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:51,245][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:51,892][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:48:52,571][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:48:52,572][websockets.server][DEBUG] > PING 'XſL' [text, 4 bytes]
[2024-12-19 21:48:52,575][websockets.server][DEBUG] < PONG 'XſL' [text, 4 bytes]
[2024-12-19 21:48:52,575][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:48:52,624][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:52,625][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:56,244][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:48:56,248][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:48:57,758][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:48:57,759][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:01,250][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:01,252][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:02,773][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:02,774][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:06,260][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:06,263][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:07,823][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:07,824][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:11,208][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:11,209][websockets.server][DEBUG] > PING 2f 7e 48 f7 [binary, 4 bytes]
[2024-12-19 21:49:11,210][websockets.server][DEBUG] < PONG 2f 7e 48 f7 [binary, 4 bytes]
[2024-12-19 21:49:11,211][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:11,261][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:11,263][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:12,583][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:12,584][websockets.server][DEBUG] > PING 42 9f 96 5c [binary, 4 bytes]
[2024-12-19 21:49:12,587][websockets.server][DEBUG] < PONG 42 9f 96 5c [binary, 4 bytes]
[2024-12-19 21:49:12,587][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:12,826][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:12,827][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:16,267][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:16,302][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:17,888][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:17,889][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:21,284][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:21,288][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:22,903][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:22,904][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:26,310][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:26,312][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:27,969][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:27,971][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:31,228][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:31,228][websockets.server][DEBUG] > PING 4c da 1c be [binary, 4 bytes]
[2024-12-19 21:49:31,230][websockets.server][DEBUG] < PONG 4c da 1c be [binary, 4 bytes]
[2024-12-19 21:49:31,230][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:31,311][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:31,313][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:32,595][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:32,596][websockets.server][DEBUG] > PING 45 3e 4c cb [binary, 4 bytes]
[2024-12-19 21:49:32,600][websockets.server][DEBUG] < PONG 45 3e 4c cb [binary, 4 bytes]
[2024-12-19 21:49:32,602][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:32,976][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:32,977][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:36,325][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:36,329][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:38,034][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:38,036][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:41,329][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:41,331][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:43,049][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:43,050][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:46,332][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:46,335][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:48,097][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:48,098][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:51,247][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:51,247][websockets.server][DEBUG] > PING ad 0d 94 dc [binary, 4 bytes]
[2024-12-19 21:49:51,249][websockets.server][DEBUG] < PONG ad 0d 94 dc [binary, 4 bytes]
[2024-12-19 21:49:51,249][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:51,334][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:51,336][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:52,607][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:49:52,608][websockets.server][DEBUG] > PING 23 98 08 63 [binary, 4 bytes]
[2024-12-19 21:49:52,611][websockets.server][DEBUG] < PONG 23 98 08 63 [binary, 4 bytes]
[2024-12-19 21:49:52,612][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:49:53,109][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:53,110][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:54,476][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:49:56,359][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:49:56,362][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:49:58,175][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:49:58,176][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:01,364][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:01,367][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:03,187][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:03,188][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:06,381][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:06,385][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:08,233][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:08,234][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:11,255][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:11,256][websockets.server][DEBUG] > PING 'dП\x03' [text, 4 bytes]
[2024-12-19 21:50:11,257][websockets.server][DEBUG] < PONG 'dП\x03' [text, 4 bytes]
[2024-12-19 21:50:11,258][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:11,383][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:11,386][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:12,616][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:12,616][websockets.server][DEBUG] > PING 87 d3 ce 9e [binary, 4 bytes]
[2024-12-19 21:50:12,620][websockets.server][DEBUG] < PONG 87 d3 ce 9e [binary, 4 bytes]
[2024-12-19 21:50:12,621][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:13,249][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:13,250][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:16,387][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:16,391][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:18,296][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:18,297][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:21,391][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:21,393][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:23,298][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:23,299][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:26,416][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:26,419][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:28,361][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:28,362][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:30,658][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:50:30,659][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:50:30,663][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:50:30,663][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:50:30 GMT
[2024-12-19 21:50:30,663][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:50:30,664][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:50:30,664][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:50:30,664][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:50:30,665][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:50:30,665][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:50:30,666][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:50:30,666][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:50:30,667][websockets.server][INFO] connection closed
[2024-12-19 21:50:31,263][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:31,263][websockets.server][DEBUG] > PING 0e 2f e2 11 [binary, 4 bytes]
[2024-12-19 21:50:31,265][websockets.server][DEBUG] < PONG 0e 2f e2 11 [binary, 4 bytes]
[2024-12-19 21:50:31,265][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:31,418][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:31,420][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:32,628][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:32,628][websockets.server][DEBUG] > PING fc 88 9e 6b [binary, 4 bytes]
[2024-12-19 21:50:32,632][websockets.server][DEBUG] < PONG fc 88 9e 6b [binary, 4 bytes]
[2024-12-19 21:50:32,633][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:33,374][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:33,375][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:36,437][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:36,440][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:38,152][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:50:38,154][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:50:38,156][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:50:38,157][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:50:38 GMT
[2024-12-19 21:50:38,158][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:50:38,158][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:50:38,159][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:50:38,160][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:50:38,160][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:50:38,161][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:50:38,161][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:50:38,162][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:50:38,163][websockets.server][INFO] connection closed
[2024-12-19 21:50:38,420][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:38,421][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:41,441][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:41,443][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:43,422][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:43,423][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:46,467][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:46,470][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:48,483][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:48,484][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:51,280][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:51,281][websockets.server][DEBUG] > PING fc 40 50 7b [binary, 4 bytes]
[2024-12-19 21:50:51,284][websockets.server][DEBUG] < PONG fc 40 50 7b [binary, 4 bytes]
[2024-12-19 21:50:51,285][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:51,470][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:51,472][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:52,640][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:50:52,640][websockets.server][DEBUG] > PING 53 a2 0c dc [binary, 4 bytes]
[2024-12-19 21:50:52,643][websockets.server][DEBUG] < PONG 53 a2 0c dc [binary, 4 bytes]
[2024-12-19 21:50:52,644][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:50:53,498][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:53,499][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:53,946][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:50:53,947][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:50:53,949][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:50:53,949][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:50:53 GMT
[2024-12-19 21:50:53,950][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:50:53,950][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:50:53,950][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:50:53,950][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:50:53,951][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:50:53,951][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:50:53,952][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:50:53,952][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:50:53,953][websockets.server][INFO] connection closed
[2024-12-19 21:50:56,472][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:50:56,473][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:50:57,021][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:50:58,539][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:50:58,540][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:01,498][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:01,499][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:03,548][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:03,549][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:06,500][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:06,501][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:08,588][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:08,590][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:08,685][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:51:08,688][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:51:08,693][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:51:08,694][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:51:08 GMT
[2024-12-19 21:51:08,695][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:51:08,697][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:51:08,698][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:51:08,699][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:51:08,700][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:51:08,701][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:51:08,703][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:51:08,704][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:51:08,706][websockets.server][INFO] connection closed
[2024-12-19 21:51:11,299][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:11,301][websockets.server][DEBUG] > PING ca e5 20 76 [binary, 4 bytes]
[2024-12-19 21:51:11,302][websockets.server][DEBUG] < PONG ca e5 20 76 [binary, 4 bytes]
[2024-12-19 21:51:11,303][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:11,501][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:11,502][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:12,646][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:12,647][websockets.server][DEBUG] > PING 28 a4 c8 9e [binary, 4 bytes]
[2024-12-19 21:51:12,650][websockets.server][DEBUG] < PONG 28 a4 c8 9e [binary, 4 bytes]
[2024-12-19 21:51:12,651][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:13,597][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:13,598][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:16,514][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:16,532][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:18,648][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:18,649][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:21,525][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:21,559][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:23,659][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:23,661][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:26,288][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:51:26,290][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:51:26,292][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:51:26,292][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:51:26 GMT
[2024-12-19 21:51:26,293][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:51:26,293][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:51:26,293][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:51:26,294][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:51:26,294][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:51:26,295][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:51:26,296][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:51:26,296][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:51:26,297][websockets.server][INFO] connection closed
[2024-12-19 21:51:26,544][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:26,546][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:28,700][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:28,701][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:31,318][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:31,319][websockets.server][DEBUG] > PING 17 bd a6 92 [binary, 4 bytes]
[2024-12-19 21:51:31,322][websockets.server][DEBUG] < PONG 17 bd a6 92 [binary, 4 bytes]
[2024-12-19 21:51:31,324][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:31,546][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:31,549][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:32,658][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:32,658][websockets.server][DEBUG] > PING f7 e5 a8 63 [binary, 4 bytes]
[2024-12-19 21:51:32,661][websockets.server][DEBUG] < PONG f7 e5 a8 63 [binary, 4 bytes]
[2024-12-19 21:51:32,662][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:33,709][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:33,710][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:36,548][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:36,552][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:38,772][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:38,773][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:41,553][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:41,555][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:43,776][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:43,777][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:46,557][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:46,559][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:48,830][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:48,832][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:51,339][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:51,340][websockets.server][DEBUG] > PING 47 87 da b4 [binary, 4 bytes]
[2024-12-19 21:51:51,341][websockets.server][DEBUG] < PONG 47 87 da b4 [binary, 4 bytes]
[2024-12-19 21:51:51,342][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:51,560][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:51,563][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:51,794][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:51:51,797][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:51:51,800][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:51:51,800][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:51:51 GMT
[2024-12-19 21:51:51,801][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:51:51,801][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:51:51,802][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:51:51,802][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:51:51,803][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:51:51,803][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:51:51,804][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:51:51,804][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:51:51,805][websockets.server][INFO] connection closed
[2024-12-19 21:51:52,667][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:51:52,668][websockets.server][DEBUG] > PING f9 1b 23 1b [binary, 4 bytes]
[2024-12-19 21:51:52,671][websockets.server][DEBUG] < PONG f9 1b 23 1b [binary, 4 bytes]
[2024-12-19 21:51:52,671][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:51:53,840][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:53,842][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:54,777][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:51:54,779][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:51:54,780][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:51:54,781][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:51:54 GMT
[2024-12-19 21:51:54,781][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:51:54,781][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:51:54,782][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:51:54,782][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:51:54,782][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:51:54,783][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:51:54,783][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:51:54,784][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:51:54,784][websockets.server][INFO] connection closed
[2024-12-19 21:51:56,563][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:51:56,566][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:58,886][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:51:58,887][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:51:59,230][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:51:59,233][websockets.server][DEBUG] ! invalid handshake
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 74, in read_request
request_line = await read_line(stream)
^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 200, in read_line
raise EOFError("line without CRLF")
EOFError: line without CRLF
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 279, in read_http_request
path, headers = await read_request(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/http.py", line 76, in read_request
raise EOFError("connection closed while reading HTTP request line") from exc
EOFError: connection closed while reading HTTP request line
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 167, in handler
await self.handshake(
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 581, in handshake
path, request_headers = await self.read_http_request()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/root/.local/lib/python3.11/site-packages/websockets/legacy/server.py", line 283, in read_http_request
raise InvalidMessage("did not receive a valid HTTP request") from exc
websockets.exceptions.InvalidMessage: did not receive a valid HTTP request
[2024-12-19 21:51:59,238][websockets.server][DEBUG] > HTTP/1.1 400 Bad Request
[2024-12-19 21:51:59,239][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:51:59 GMT
[2024-12-19 21:51:59,240][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:51:59,241][websockets.server][DEBUG] > Content-Length: 77
[2024-12-19 21:51:59,242][websockets.server][DEBUG] > Content-Type: text/plain
[2024-12-19 21:51:59,242][websockets.server][DEBUG] > Connection: close
[2024-12-19 21:51:59,243][websockets.server][DEBUG] > [body] (77 bytes)
[2024-12-19 21:51:59,245][websockets.server][INFO] connection rejected (400 Bad Request)
[2024-12-19 21:51:59,246][websockets.server][DEBUG] x closing TCP connection
[2024-12-19 21:51:59,248][websockets.server][DEBUG] = connection is CLOSED
[2024-12-19 21:51:59,249][websockets.server][INFO] connection closed
[2024-12-19 21:51:59,589][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:52:01,572][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:01,573][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:03,898][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:03,899][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:06,598][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:06,599][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:08,937][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:08,938][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:11,355][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:11,356][websockets.server][DEBUG] > PING 06 32 ea 0d [binary, 4 bytes]
[2024-12-19 21:52:11,357][websockets.server][DEBUG] < PONG 06 32 ea 0d [binary, 4 bytes]
[2024-12-19 21:52:11,358][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:11,600][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:11,601][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:12,678][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:12,679][websockets.server][DEBUG] > PING c2 c1 83 3e [binary, 4 bytes]
[2024-12-19 21:52:12,683][websockets.server][DEBUG] < PONG c2 c1 83 3e [binary, 4 bytes]
[2024-12-19 21:52:12,683][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:13,943][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:13,944][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:16,602][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:16,603][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:18,983][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:18,984][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:21,616][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:21,618][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:23,997][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:23,998][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:26,628][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:26,631][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:29,038][websockets.server][DEBUG] = connection is CONNECTING
[2024-12-19 21:52:29,039][websockets.server][DEBUG] < GET / HTTP/1.1
[2024-12-19 21:52:29,040][websockets.server][DEBUG] < Host: d9.redjstone.com:11837
[2024-12-19 21:52:29,040][websockets.server][DEBUG] < Connection: Upgrade
[2024-12-19 21:52:29,040][websockets.server][DEBUG] < Pragma: no-cache
[2024-12-19 21:52:29,041][websockets.server][DEBUG] < Cache-Control: no-cache
[2024-12-19 21:52:29,041][websockets.server][DEBUG] < User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0 (Edition std-2)
[2024-12-19 21:52:29,041][websockets.server][DEBUG] < Upgrade: websocket
[2024-12-19 21:52:29,042][websockets.server][DEBUG] < Origin: http://web.aceattorneyonline.com
[2024-12-19 21:52:29,042][websockets.server][DEBUG] < Sec-WebSocket-Version: 13
[2024-12-19 21:52:29,042][websockets.server][DEBUG] < Accept-Encoding: gzip, deflate
[2024-12-19 21:52:29,043][websockets.server][DEBUG] < Accept-Language: es-ES,es;q=0.9
[2024-12-19 21:52:29,043][websockets.server][DEBUG] < Sec-WebSocket-Key: AhAGRx2YU7bED4Kbu3HMag==
[2024-12-19 21:52:29,043][websockets.server][DEBUG] < Sec-WebSocket-Extensions: permessage-deflate; client_max_window_bits
[2024-12-19 21:52:29,044][websockets.server][DEBUG] > HTTP/1.1 101 Switching Protocols
[2024-12-19 21:52:29,044][websockets.server][DEBUG] > Upgrade: websocket
[2024-12-19 21:52:29,045][websockets.server][DEBUG] > Connection: Upgrade
[2024-12-19 21:52:29,045][websockets.server][DEBUG] > Sec-WebSocket-Accept: xd+qKE8/WJ+NbJngMXAUxYdqTNI=
[2024-12-19 21:52:29,045][websockets.server][DEBUG] > Sec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=12; client_max_window_bits=12
[2024-12-19 21:52:29,045][websockets.server][DEBUG] > Date: Thu, 19 Dec 2024 21:52:29 GMT
[2024-12-19 21:52:29,046][websockets.server][DEBUG] > Server: Python/3.11 websockets/12.0
[2024-12-19 21:52:29,046][websockets.server][INFO] connection open
[2024-12-19 21:52:29,047][websockets.server][DEBUG] = connection is OPEN
[2024-12-19 21:52:29,057][websockets.server][DEBUG] > TEXT 'decryptor#NOENCRYPT#%' [21 bytes]
[2024-12-19 21:52:29,058][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:29,058][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:29,070][websockets.server][DEBUG] < TEXT 'HI#1128aa769af9b1c4450e88444214c028#%' [37 bytes]
[2024-12-19 21:52:29,070][websockets.server][DEBUG] < TEXT '' [0 bytes]
Handshake: 89.7.82.215:50392 - 59546 / 1128aa769af9b1c4450e88444214c028
[2024-12-19 21:52:29,081][database][INFO] 59546 (HDID: 1128aa769af9b1c4450e88444214c028) connected.
[2024-12-19 21:52:29,089][websockets.server][DEBUG] > TEXT 'ID#2#KFO-Server#3.3.0#%' [23 bytes]
[2024-12-19 21:52:29,090][websockets.server][DEBUG] > TEXT 'PN#2#150#%' [10 bytes]
[2024-12-19 21:52:29,111][websockets.server][DEBUG] < TEXT 'ID#webAO#2.8.0#%' [16 bytes]
[2024-12-19 21:52:29,112][websockets.server][DEBUG] < TEXT 'askchaa#%' [9 bytes]
[2024-12-19 21:52:29,113][websockets.server][DEBUG] > TEXT 'FL#yellowtext#customobjections#prezoom#flipping...ed_desk_mods#y_offset#%' [198 bytes]
[2024-12-19 21:52:29,113][websockets.server][DEBUG] > TEXT 'ASS#https://d9c.redjstone.com/#%' [32 bytes]
[2024-12-19 21:52:29,114][websockets.server][DEBUG] > TEXT 'SI#63#0#0#%' [11 bytes]
[2024-12-19 21:52:31,371][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:31,372][websockets.server][DEBUG] > PING fa 1b c9 85 [binary, 4 bytes]
[2024-12-19 21:52:31,373][websockets.server][DEBUG] < PONG fa 1b c9 85 [binary, 4 bytes]
[2024-12-19 21:52:31,373][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:31,631][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:31,632][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:32,690][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:32,691][websockets.server][DEBUG] > PING 59 3d 11 aa [binary, 4 bytes]
[2024-12-19 21:52:32,694][websockets.server][DEBUG] < PONG 59 3d 11 aa [binary, 4 bytes]
[2024-12-19 21:52:32,695][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:34,049][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:34,050][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:34,080][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:34,081][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:36,632][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:36,633][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:39,085][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:39,086][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:39,093][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:39,094][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:41,644][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:41,645][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:44,072][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:44,073][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:44,105][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:44,107][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:46,645][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:46,648][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:49,071][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:49,071][websockets.server][DEBUG] > PING 73 0b 88 a2 [binary, 4 bytes]
[2024-12-19 21:52:49,072][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:49,073][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:49,090][websockets.server][DEBUG] < PONG 73 0b 88 a2 [binary, 4 bytes]
[2024-12-19 21:52:49,091][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:49,107][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:49,108][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:51,386][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:51,387][websockets.server][DEBUG] > PING 5d fc c8 63 [binary, 4 bytes]
[2024-12-19 21:52:51,388][websockets.server][DEBUG] < PONG 5d fc c8 63 [binary, 4 bytes]
[2024-12-19 21:52:51,388][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:51,648][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:51,651][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:52,701][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:52:52,702][websockets.server][DEBUG] > PING 46 b6 90 49 [binary, 4 bytes]
[2024-12-19 21:52:52,705][websockets.server][DEBUG] < PONG 46 b6 90 49 [binary, 4 bytes]
[2024-12-19 21:52:52,705][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:52:54,085][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:54,086][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:54,117][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:54,118][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:56,649][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:52:56,651][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:59,084][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:59,085][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:52:59,605][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:52:59,606][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:01,660][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:53:01,664][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:02,275][debug][DEBUG] Heartbeat to https://servers.aceattorneyonline.com/servers
[2024-12-19 21:53:04,073][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:04,074][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:04,621][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:04,622][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:06,677][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:53:06,681][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:09,074][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:09,075][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:09,092][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:53:09,093][websockets.server][DEBUG] > PING "\x0c'Bk" [text, 4 bytes]
[2024-12-19 21:53:09,120][websockets.server][DEBUG] < PONG "\x0c'Bk" [text, 4 bytes]
[2024-12-19 21:53:09,120][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:53:09,635][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:09,636][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:11,398][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:53:11,399][websockets.server][DEBUG] > PING e4 fe cf 30 [binary, 4 bytes]
[2024-12-19 21:53:11,400][websockets.server][DEBUG] < PONG e4 fe cf 30 [binary, 4 bytes]
[2024-12-19 21:53:11,401][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:53:11,679][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:53:11,681][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:12,712][websockets.server][DEBUG] % sending keepalive ping
[2024-12-19 21:53:12,713][websockets.server][DEBUG] > PING f0 bf a0 6d [binary, 4 bytes]
[2024-12-19 21:53:12,717][websockets.server][DEBUG] < PONG f0 bf a0 6d [binary, 4 bytes]
[2024-12-19 21:53:12,720][websockets.server][DEBUG] % received keepalive pong
[2024-12-19 21:53:14,074][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:14,076][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:14,641][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:14,642][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:16,681][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:53:16,684][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:19,076][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:19,078][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:19,656][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:19,657][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:21,688][websockets.server][DEBUG] < TEXT 'CH#6#%' [6 bytes]
[2024-12-19 21:53:21,691][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:24,080][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]
[2024-12-19 21:53:24,081][websockets.server][DEBUG] > TEXT 'CHECK#%' [7 bytes]
[2024-12-19 21:53:24,664][websockets.server][DEBUG] < TEXT 'CH#-1#%' [7 bytes]