forked from Gon1782/Batman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1507 lines (1507 loc) · 41.7 KB
/
Copy pathdb.json
File metadata and controls
1507 lines (1507 loc) · 41.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"EPL": [
{
"id": 1000,
"title": "Premier League",
"league": "Premier League",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/eng.png",
"nation": "ENG",
"home": "Liverpool",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8650.png",
"homebet": 5500,
"drawbet": 3000,
"awaybet": 1500,
"away": "Leicester",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8197.png",
"time": "2022 12.31 05:00",
"hour": "05:00",
"homeplace": "Anfield"
},
{
"id": 1001,
"league": "Premier League",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/eng.png",
"nation": "ENG",
"home": "Brighten",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/10204.png",
"away": "Arsenal",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9825.png",
"time": "2023 01.01 02:30",
"hour": "02:0",
"homeplace": "American Express Community Stadium",
"drawbet": 2500,
"homebet": 3000,
"awaybet": 4500
},
{
"id": 1002,
"league": "Premier League",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/eng.png",
"nation": "ENG",
"home": "Tottenham",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8586.png",
"away": "Aston Villa",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/10252.png",
"time": "2023 01.01 23:00",
"hour": "23:00",
"homeplace": "Tottenham Hotspur Stadium",
"drawbet": 3000,
"homebet": 5500,
"awaybet": 1500
},
{
"id": 1003,
"league": "Premier League",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/eng.png",
"nation": "ENG",
"home": "Brentford",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9937.png",
"away": "Liverpool",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8650.png",
"time": "2023 01.03 02:30",
"hour": "02:30",
"homeplace": "Brentford Community Stadium",
"drawbet": 3000,
"homebet": 1500,
"awaybet": 5500
},
{
"id": 1004,
"league": "Premier League",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/eng.png",
"nation": "ENG",
"home": "Arsenal",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9825.png",
"away": "Newcastle United",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/10261.png",
"time": "2023 01.04 04:45",
"hour": "04:45",
"homeplace": "Emirates Stadium",
"drawbet": 3500,
"homebet": 4000,
"awaybet": 2500
}
],
"EPL_LanKing_title": [
{
"id": 1100,
"title": "Premier League",
"text": "England",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/47.png"
}
],
"EPL_Lanking": [
{
"id": 1200,
"name": "Arsenal",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/9825.png",
"num": "1"
},
{
"id": 1201,
"name": "Manchester City",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8456.png",
"num": "2"
},
{
"id": 1202,
"name": "Newcastle United",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/10261.png",
"num": "3"
},
{
"id": 1203,
"name": "Tottenham Hotspur",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8586.png",
"num": "4"
},
{
"id": 1204,
"name": "Manchester United",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/10260.png",
"num": "5"
}
],
"Laliga": [
{
"id": 2000,
"title": "Laliga",
"league": "Laliga",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/87.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/6720.png",
"nation": "ESP",
"home": "Barcelona",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8634.png",
"away": "Espanyol",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8558.png",
"time": "2022 12.31 22:00",
"hour": "22:00",
"homeplace": "Camp Nou",
"drawbet": 3000,
"homebet": 5000,
"awaybet": 2000
},
{
"id": 2001,
"league": "Laliga",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/87.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/6720.png",
"nation": "ESP",
"home": "Getafe",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8305.png",
"away": "Mallorca",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8661.png",
"time": "2023 12.31 01:00",
"hour": "01:00",
"homeplace": "Coliseum Alfonso",
"drawbet": 3000,
"homebet": 2500,
"awaybet": 4500
},
{
"id": 2002,
"league": "Laliga",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/87.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/6720.png",
"nation": "ESP",
"home": "Valencia",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/10267.png",
"away": "Cadiz",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8385.png",
"time": "2023 01.07 05:00",
"hour": "05:00",
"homeplace": "Mestalla",
"drawbet": 3000,
"homebet": 4500,
"awaybet": 2500
},
{
"id": 2003,
"league": "Laliga",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/87.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/6720.png",
"nation": "ESP",
"home": "Atletico Madrid",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9906.png",
"away": "Barcelona",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8634.png",
"time": "2023 01.09 05:00",
"hour": "05:00",
"homeplace": "Estadio Wanda Metropolitano",
"drawbet": 3500,
"homebet": 2500,
"awaybet": 4000
},
{
"id": 2004,
"league": "Laliga",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/87.png",
"nationlogo": "https://images.fotmob.com/image_resources/logo/teamlogo/6720.png",
"nation": "ESP",
"home": "Athletic Club",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8315.png",
"away": "Osasuna",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8371.png",
"time": "2023 01.10 05:00",
"hour": "05:00",
"homeplace": "San Mames Barria",
"drawbet": 3800,
"homebet": 3200,
"awaybet": 3000
}
],
"Laliga_LanKing_title": [
{
"id": 2100,
"title": "Laliga",
"text": "Spain",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/87.png"
}
],
"Laliga_Lanking": [
{
"id": 2200,
"name": "Barcelona",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8634.png",
"num": "1"
},
{
"id": 2201,
"name": "Real Madrid",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8633.png",
"num": "2"
},
{
"id": 2202,
"name": "Real Sociedad",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8560.png",
"num": "3"
},
{
"id": 2203,
"name": "Athletic Club",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8315.png",
"num": "4"
},
{
"id": 2204,
"name": "Atletico Madrid",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/9906.png",
"num": "5"
}
],
"SerieA": [
{
"id": 3000,
"title": "SerieA",
"league": "SerieA",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png",
"nationlogo": "https://static5.depositphotos.com/1048784/510/v/950/depositphotos_5100649-stock-illustration-italy-flag-icon.jpg",
"nation": "ITA",
"home": "Torino",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9804.png",
"away": "Hellas Verona",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9876.png",
"time": "2023 01.04 22:30",
"hour": "22:30",
"homeplace": "Stadio Olimpico Grande Torino",
"drawbet": 3500,
"homebet": 4500,
"awaybet": 2000
},
{
"id": 3001,
"league": "SerieA",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png",
"nationlogo": "https://static5.depositphotos.com/1048784/510/v/950/depositphotos_5100649-stock-illustration-italy-flag-icon.jpg",
"nation": "ITA",
"home": "Roma",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8686.png",
"away": "Bologna",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9857.png",
"time": "2023 01.05 00:30",
"hour": "00:30",
"homeplace": "Stadio Olimpico, Rome",
"drawbet": 3500,
"homebet": 4000,
"awaybet": 2500
},
{
"id": 3002,
"league": "SerieA",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png",
"nationlogo": "https://static5.depositphotos.com/1048784/510/v/950/depositphotos_5100649-stock-illustration-italy-flag-icon.jpg",
"nation": "ITA",
"home": "Inter",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8636.png",
"away": "Napoli",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9875.png",
"time": "2023 01.05 04:45",
"hour": "04:45",
"homeplace": "Giuseppe Meazza",
"drawbet": 3200,
"homebet": 2800,
"awaybet": 4000
},
{
"id": 3003,
"league": "SerieA",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png",
"nationlogo": "https://static5.depositphotos.com/1048784/510/v/950/depositphotos_5100649-stock-illustration-italy-flag-icon.jpg",
"nation": "ITA",
"home": "Juventus",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/9885.png",
"away": "Udinese",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8600.png",
"time": "2023 01.08 02:00",
"hour": "02:00",
"homeplace": "Alianz Stadium",
"drawbet": 3500,
"homebet": 4000,
"awaybet": 2500
},
{
"id": 3004,
"league": "SerieA",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png",
"nationlogo": "https://static5.depositphotos.com/1048784/510/v/950/depositphotos_5100649-stock-illustration-italy-flag-icon.jpg",
"nation": "ITA",
"home": "Milan",
"homeimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8564.png",
"away": "Roma",
"awayimg": "https://images.fotmob.com/image_resources/logo/teamlogo/8686.png",
"time": "2023 01.09 04:45",
"hour": "04:45",
"homeplace": "San Siro",
"drawbet": 3000,
"homebet": 4500,
"awaybet": 2500
}
],
"SerieA_LanKing_title": [
{
"id": 3100,
"title": "SerieA",
"text": "Italy",
"logo": "https://images.fotmob.com/image_resources/logo/leaguelogo/dark/55.png"
}
],
"SerieA_Lanking": [
{
"id": 3200,
"name": "Napoli",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/9875.png",
"num": "1"
},
{
"id": 3201,
"name": "AC Milan",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8564.png",
"num": "2"
},
{
"id": 3202,
"name": "Juventus",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/9885.png",
"num": "3"
},
{
"id": 3203,
"name": "Lazio",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8543.png",
"num": "4"
},
{
"id": 3204,
"name": "Inter",
"img": "https://images.fotmob.com/image_resources/logo/teamlogo/8636.png",
"num": "5"
}
],
"comments": [
{
"id": 15,
"param": "EPL0",
"writer": "토쟁이태웅",
"password": "1234",
"comment": "리밥 승",
"date": "2022.12.27 19:24",
"likes": 0,
"dislikes": 0
},
{
"id": 16,
"param": "EPL0",
"writer": "프로패셔널 박",
"password": "1234",
"comment": "리밥이, 개밥이 됐다.... 바디 믿고 레스터 간다",
"date": "2022.12.27 19:25",
"likes": 0,
"dislikes": 0
},
{
"id": 17,
"param": "EPL0",
"writer": "인생무쌍",
"password": "1234",
"comment": "리밥 승~~~~ 레스터 수비 자동문~~~",
"date": "2022.12.27 19:25",
"likes": 0,
"dislikes": 0
},
{
"id": 18,
"param": "EPL0",
"writer": "사이DaE",
"password": "1234",
"comment": "왜 레스터가 이길거 같지?? 나 좀 심하게 이상한듯..",
"date": "2022.12.27 19:26",
"likes": 0,
"dislikes": 0
},
{
"id": 19,
"param": "EPL0",
"writer": "태왕전설",
"password": "1234",
"comment": "리밥풀 휴식기간동안 개강해졌더만 리밥승",
"date": "2022.12.27 19:26",
"likes": 0,
"dislikes": 0
},
{
"id": 20,
"param": "EPL0",
"writer": "사촌형님",
"password": "1234",
"comment": "호벤 각포 선발로 나오려나,,",
"date": "2022.12.27 19:26",
"likes": 0,
"dislikes": 0
},
{
"id": 21,
"param": "EPL0",
"writer": "쏘쏘한날",
"password": "1234",
"comment": "누네즈 이xx 영점잡아서 내보내라",
"date": "2022.12.27 19:27",
"likes": 0,
"dislikes": 0
},
{
"id": 22,
"param": "EPL0",
"writer": "오지환",
"password": "1234",
"comment": "긱포야 헤트트릭 박아라",
"date": "2022.12.27 19:27",
"likes": 0,
"dislikes": 0
},
{
"id": 23,
"param": "EPL0",
"writer": "닉닉네네임임",
"password": "1234",
"comment": "리버풀이 레스터 상대로 11승 3무 5패로 가고 있습니다. 리버풀 우세 봅니다.",
"date": "2022.12.27 19:28",
"likes": 0,
"dislikes": 0
},
{
"id": 24,
"param": "EPL1",
"writer": "적중왕123",
"password": "0613",
"comment": "아스널 이번 시즌 1등 목표다.",
"date": "2022.12.27 19:30",
"likes": 0,
"dislikes": 0
},
{
"id": 25,
"param": "EPL1",
"writer": "정답이뭐냐",
"password": "1234",
"comment": "아스널 요즘 잘하긴 하더라",
"date": "2022.12.27 19:31",
"likes": 0,
"dislikes": 0
},
{
"id": 26,
"param": "EPL1",
"writer": "완전초초",
"password": "1234",
"comment": "이번 시즌 아스널 일 낼거 같긴해~",
"date": "2022.12.27 19:31",
"likes": 0,
"dislikes": 0
},
{
"id": 27,
"param": "EPL1",
"writer": "토쟁이태웅",
"password": "1234",
"comment": "스날아 고마워서 다시왔다 ㅎㅎ",
"date": "2022.12.27 19:31",
"likes": 0,
"dislikes": 0
},
{
"id": 28,
"param": "EPL1",
"writer": "호롱롱잉",
"password": "1234",
"comment": "전반 아스널 0.5오버 갔드만 골취 쳐당해가지고 30배 한폴 날라갔네 에휴",
"date": "2022.12.27 19:32",
"likes": 0,
"dislikes": 0
},
{
"id": 29,
"param": "EPL1",
"writer": "막폴방지시스템",
"password": "1234",
"comment": "프리미어 올오버 ㅅㅅㅅㅅ",
"date": "2022.12.27 19:32",
"likes": 0,
"dislikes": 0
},
{
"id": 30,
"param": "EPL1",
"writer": "초점흔들",
"password": "0613",
"comment": "3오바 갔다 제발 득점 터져라 ~~~~~~",
"date": "2022.12.27 19:33",
"likes": 0,
"dislikes": 0
},
{
"id": 31,
"param": "EPL2",
"writer": "사랑하고 싶어요",
"password": "0613",
"comment": "진짜 토트넘 오늘은 이기냐?",
"date": "2022.12.27 19:35",
"likes": 0,
"dislikes": 0
},
{
"id": 32,
"param": "EPL2",
"writer": "허 재",
"password": "1234",
"comment": "닭집 떄문에 승무패 맨날 나가리네 ㅡㅡ",
"date": "2022.12.27 19:36",
"likes": 0,
"dislikes": 0
},
{
"id": 33,
"param": "EPL2",
"writer": "개같은 토토접어",
"password": "1234",
"comment": "토트넘 원정은 걸러라 똥배일때 뺴고는",
"date": "2022.12.27 19:36",
"likes": 0,
"dislikes": 0
},
{
"id": 34,
"param": "EPL2",
"writer": "초인",
"password": "1234",
"comment": "다이어 떄문에 토트넘 절대 다신 안간다",
"date": "2022.12.27 19:37",
"likes": 0,
"dislikes": 0
},
{
"id": 35,
"param": "EPL2",
"writer": "기브미유",
"password": "1234",
"comment": "흥민이형 제발 해트트릭 해주세요",
"date": "2022.12.27 19:37",
"likes": 0,
"dislikes": 0
},
{
"id": 36,
"param": "EPL2",
"writer": "정이수",
"password": "1234",
"comment": "이 경기 무조건 3오버 나온다 전재산 걸어라",
"date": "2022.12.27 19:38",
"likes": 0,
"dislikes": 0
},
{
"id": 37,
"param": "EPL2",
"writer": "무필로",
"password": "1234",
"comment": "토트넘 마핸 나만 보이냐? ",
"date": "2022.12.27 19:38",
"likes": 0,
"dislikes": 0
},
{
"id": 38,
"param": "EPL3",
"writer": "나나넘머나",
"password": "1234",
"comment": "꿀벌 무시하다가 큰코 다친다...",
"date": "2022.12.27 19:49",
"likes": 0,
"dislikes": 0
},
{
"id": 39,
"param": "EPL3",
"writer": "이현",
"password": "1234",
"comment": "이걸로 복구 해야겠다 진짜..",
"date": "2022.12.27 19:50",
"likes": 0,
"dislikes": 0
},
{
"id": 40,
"param": "EPL3",
"writer": "배팅게이지",
"password": "1234",
"comment": "리버풀 원정이긴 한대 요즘 폼 보면 리버풀 가야지",
"date": "2022.12.27 19:50",
"likes": 0,
"dislikes": 0
},
{
"id": 41,
"param": "EPL3",
"writer": "단폴괴물",
"password": "1234",
"comment": "이거 뭔가 3대1 나올거 같은데 당연히 리버풀이 3",
"date": "2022.12.27 19:51",
"likes": 0,
"dislikes": 0
},
{
"id": 42,
"param": "EPL3",
"writer": "사촌형님",
"password": "1234",
"comment": "누네스 괴벌레 이제 선발도 못하겠네",
"date": "2022.12.27 19:51",
"likes": 0,
"dislikes": 0
},
{
"id": 43,
"param": "EPL3",
"writer": "가자리가자",
"password": "1234",
"comment": "오바 적중한다 무조건 오바나온다 나믿고 걸어라",
"date": "2022.12.27 19:51",
"likes": 0,
"dislikes": 0
},
{
"id": 44,
"param": "EPL3",
"writer": "민하민호",
"password": "1234",
"comment": "제발 리밥형들 마핸 부탁드려요... 마핸좀 ㅜ",
"date": "2022.12.27 19:52",
"likes": 0,
"dislikes": 0
},
{
"id": 45,
"param": "EPL1",
"writer": "쏘액다폴묵자",
"password": "1234",
"comment": "브라이튼 무시하다가 큰코다친다... 이경기 무본다",
"date": "2022.12.27 19:53",
"likes": 0,
"dislikes": 0
},
{
"id": 46,
"param": "EPL4",
"writer": "빠삭빠삭",
"password": "1234",
"comment": "아스널 우승가자~~~~~~~~~~",
"date": "2022.12.27 19:55",
"likes": 0,
"dislikes": 0
},
{
"id": 47,
"param": "EPL4",
"writer": "토사장잡는똥사장",
"password": "1234",
"comment": "이 경기 진짜 재밌겠다 ㅋㅋㅋㅋㅋㅋㅋㅋ",
"date": "2022.12.27 19:55",
"likes": 0,
"dislikes": 0
},
{
"id": 48,
"param": "EPL4",
"writer": "꽃잎이떨어지는날",
"password": "1234",
"comment": "이번에 뉴캐슬이 우승한다 뉴캐승 가자~",
"date": "2022.12.27 19:55",
"likes": 0,
"dislikes": 0
},
{
"id": 49,
"param": "EPL4",
"writer": "응진동",
"password": "1234",
"comment": "뉴캐슬 진짜 산티아고뮤네즈 시절부터 팬이었다. 진짜 뉴캐슬 승옵간다",
"date": "2022.12.27 19:56",
"likes": 0,
"dislikes": 0
},
{
"id": 50,
"param": "EPL4",
"writer": "손나은이 최고",
"password": "1234",
"comment": "뉴캐슬에 30만원 인생배팅 한다 제발",
"date": "2022.12.27 19:57",
"likes": 0,
"dislikes": 0
},
{
"id": 51,
"param": "EPL4",
"writer": "옹동이3",
"password": "1234",
"comment": "이경기 오바못보는 얘들은 그냥 토토접어라 제발",
"date": "2022.12.27 19:57",
"likes": 0,
"dislikes": 0
},
{
"id": 52,
"param": "EPL4",
"writer": "관람하자",
"password": "1234",
"comment": "자고일어날테니 뉴캐슬 이겨놔라 믿는다.",
"date": "2022.12.27 19:58",
"likes": 0,
"dislikes": 0
},
{
"id": 53,
"param": "Laliga0",
"writer": "두꺼비",
"password": "1234",
"comment": "파놀승 언 십졷강승",
"date": "2022.12.27 20:00",
"likes": 0,
"dislikes": 0
},
{
"id": 54,
"param": "Laliga0",
"writer": "괴식물련뎀벌레",
"password": "1234",
"comment": "나만믿고 따라와라 이경기 바셀 마핸이다",
"date": "2022.12.27 20:00",
"likes": 0,
"dislikes": 0
},
{
"id": 55,
"param": "Laliga0",
"writer": "짜요짜요",
"password": "1234",
"comment": "이 경기 레반 못나오지않나?",
"date": "2022.12.27 20:00",
"likes": 0,
"dislikes": 0
},
{
"id": 56,
"param": "Laliga0",
"writer": "총난타",
"password": "1234",
"comment": "이 경기 오버오버오버 진짜 무조건 오버다",
"date": "2022.12.27 20:01",
"likes": 0,
"dislikes": 0
},
{
"id": 57,
"param": "Laliga0",
"writer": "가즈아앗",
"password": "1234",
"comment": "낭만있었다 바셀 합격 너흰 이겨라",
"date": "2022.12.27 20:02",
"likes": 0,
"dislikes": 0
},
{
"id": 58,
"param": "Laliga0",
"writer": "찐따개구리",
"password": "1234",
"comment": "와 바셀 13경기 4실점 미쳤다... 폼 찾나",
"date": "2022.12.27 20:02",
"likes": 0,
"dislikes": 0
},
{
"id": 59,
"param": "Laliga0",
"writer": "갱상도훈남아재",
"password": "1234",
"comment": "더비전이다. 에스파뇰 플핸도 추천한다. 데용 말고는 딱히 골 넣을놈이 없네",
"date": "2022.12.27 20:03",
"likes": 0,
"dislikes": 0
},
{
"id": 60,
"param": "Laliga1",
"writer": "우검사",
"password": "1234",
"comment": "여기가 이강인 소속팀??",
"date": "2022.12.27 20:06",
"likes": 0,
"dislikes": 0
},
{
"id": 61,
"param": "Laliga1",
"writer": "월 600 벌자",
"password": "1234",
"comment": "마요 승",
"date": "2022.12.27 20:06",
"likes": 0,
"dislikes": 0
},
{
"id": 62,
"param": "Laliga1",
"writer": "똥배 먹고 따볼",
"password": "1234",
"comment": "이강인, 해돋이 보러 정동진 갔다... 게타페 승",
"date": "2022.12.27 20:07",
"likes": 0,
"dislikes": 0
},
{
"id": 63,
"param": "Laliga1",
"writer": "호우호우호우",
"password": "1234",
"comment": "전반 막판 골취에 세모발 샏기들 주작했네 ㅡㅡ",
"date": "2022.12.27 20:07",
"likes": 0,
"dislikes": 0
},
{
"id": 64,
"param": "Laliga1",
"writer": "축레알 v 축구",
"password": "1234",
"comment": "마요 전반승 후반무 봅니다...",
"date": "2022.12.27 20:08",
"likes": 0,
"dislikes": 0
},
{
"id": 65,
"param": "Laliga1",
"writer": "승부는 올인으로",
"password": "1234",
"comment": "아니 마요 얘네는 세모발인가 1대1 찬스를 2번 쳐날리네",
"date": "2022.12.27 20:08",
"likes": 0,
"dislikes": 0
},
{
"id": 66,
"param": "Laliga1",
"writer": "봄도다리중",
"password": "1234",
"comment": "그냥 이경기 무찍는게 편한대 이강인 믿고 마요승 건다 이겨놔라",
"date": "2022.12.27 20:08",
"likes": 0,
"dislikes": 0
},
{
"id": 67,
"param": "Laliga2",
"writer": "토쟁이태웅",
"password": "1234",
"comment": "발렌시아 너네는 제발 져라",
"date": "2022.12.27 20:11",
"likes": 0,
"dislikes": 0
},
{
"id": 68,
"param": "Laliga2",
"writer": "toto 찍기",
"password": "1234",
"comment": "진심 ㅄ이네 발렌시아도",
"date": "2022.12.27 20:11",
"likes": 0,
"dislikes": 0
},
{
"id": 69,
"param": "Laliga2",
"writer": "매일픽게시형님",
"password": "1234",
"comment": "영국 외에 스페인 이탈은 언더중심 경기다 알아둬라",
"date": "2022.12.27 20:12",
"likes": 0,
"dislikes": 0
},
{
"id": 70,
"param": "Laliga2",
"writer": "감자봤어",
"password": "1234",
"comment": "발렌 경기보니 아무리 퇴장당해도 패스가 안되더라",
"date": "2022.12.27 20:12",
"likes": 0,
"dislikes": 0
},
{
"id": 71,
"param": "Laliga2",
"writer": "노란피카츄",
"password": "1234",
"comment": "진심 이경기 무찍고 잠자고와라 그냥 무가 답이다",
"date": "2022.12.27 20:13",
"likes": 0,
"dislikes": 0
},
{
"id": 72,
"param": "Laliga2",
"writer": "한폴낙피해자",
"password": "1234",
"comment": "구중이 진중된다 발렌골",
"date": "2022.12.27 20:13",
"likes": 0,
"dislikes": 0
},
{
"id": 73,
"param": "Laliga2",
"writer": "좀 잦자 좀",
"password": "1234",
"comment": "이번한번만 더 믿어본다 발렌승 건다 제발..",
"date": "2022.12.27 20:13",
"likes": 0,
"dislikes": 0
},
{
"id": 74,
"param": "Laliga3",
"writer": "구호동",
"password": "1234",
"comment": "이 경기 레반없다 알아둬라 ",
"date": "2022.12.27 20:16",
"likes": 0,
"dislikes": 0
},
{
"id": 75,
"param": "Laliga3",
"writer": "마린떙쵸",
"password": "1234",
"comment": "강등 에이티 못먹어도 에이티는 안간다",
"date": "2022.12.27 20:17",
"likes": 0,
"dislikes": 0
},
{
"id": 76,
"param": "Laliga3",
"writer": "두꺼비7",