-
Notifications
You must be signed in to change notification settings - Fork 0
/
Graphics_group.json
3966 lines (3966 loc) · 82.6 KB
/
Graphics_group.json
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
[
{
"userId": 1,
"text": "huDSON"
},
{
"userId": 1,
"text": "fORTNITE"
},
{
"userId": 1,
"text": "FARTHUDSON"
},
{
"userId": 2,
"text": "ok i cant play for long tho"
},
{
"userId": 1,
"text": "hudson hates karl"
},
{
"userId": 3,
"text": "zander hats asains"
},
{
"userId": 1,
"text": "👒 👀 👃 👄"
},
{
"userId": 3,
"text": "White to move for mate in 2"
},
{
"userId": 4,
"text": "Is it Qd5? I’m actually really stumped on this one"
},
{
"userId": 4,
"text": "All I know is black is most definitely screwed"
},
{
"userId": 3,
"text": "Nope"
},
{
"userId": 3,
"text": "Black is very dead tho"
},
{
"userId": 4,
"text": "Ohh wait I found it"
},
{
"userId": 4,
"text": "ND5"
},
{
"userId": 4,
"text": "I mean F5"
},
{
"userId": 4,
"text": "Knight takes F5 so king is forced to capture rook and mate with the bishop on e5"
},
{
"userId": 3,
"text": "But they take the rook"
},
{
"userId": 4,
"text": "Yep"
},
{
"userId": 4,
"text": "Right?"
},
{
"userId": 4,
"text": "I don’t see a way out of it"
},
{
"userId": 5,
"text": "Qe4?"
},
{
"userId": 3,
"text": "No"
},
{
"userId": 3,
"text": "B4"
},
{
"userId": 4,
"text": "I definitely got it"
},
{
"userId": 6,
"text": "Just go Rxb3 and forget the mate"
},
{
"userId": 6,
"text": "Not worth"
},
{
"userId": 4,
"text": "B4 does not work"
},
{
"userId": 3,
"text": "What guards it?"
},
{
"userId": 4,
"text": "Nothing lol that’s the point"
},
{
"userId": 4,
"text": "Queen just takes"
},
{
"userId": 4,
"text": "It’s knight f5"
},
{
"userId": 3,
"text": "No"
},
{
"userId": 4,
"text": "The white pawn does"
},
{
"userId": 4,
"text": "The pawn on a3"
},
{
"userId": 3,
"text": "Wrong side"
},
{
"userId": 3,
"text": "Ur backwards"
},
{
"userId": 4,
"text": "No it’s not"
},
{
"userId": 3,
"text": "Oh"
},
{
"userId": 4,
"text": "Yeah white is going up"
},
{
"userId": 6,
"text": "Nah they’re back to back pawns"
},
{
"userId": 3,
"text": "*kc4"
},
{
"userId": 4,
"text": "Knight guards c4"
},
{
"userId": 4,
"text": "Wait"
},
{
"userId": 4,
"text": "Yeah I guess not"
},
{
"userId": 3,
"text": "It moved"
},
{
"userId": 4,
"text": "Do you know the solution?"
},
{
"userId": 3,
"text": "Unless it pulled a magic dou and duplicated itselfb"
},
{
"userId": 3,
"text": "Yah"
},
{
"userId": 3,
"text": "But I won't tell u"
},
{
"userId": 3,
"text": "I should get it"
},
{
"userId": 3,
"text": "U*"
},
{
"userId": 3,
"text": "It's only mate in 2"
},
{
"userId": 3,
"text": "So anyone rated 2 or higher should know it automatically"
},
{
"userId": 6,
"text": "Anyone rated 3 or higher would just go Rxb3 and not try to show off"
},
{
"userId": 6,
"text": "Finding the mate would just be poor sportsmanship"
},
{
"userId": 5,
"text": "Qe2"
},
{
"userId": 5,
"text": "nvm"
},
{
"userId": 4,
"text": "Nah queen takes then king has d5"
},
{
"userId": 4,
"text": "Bishop h4"
},
{
"userId": 4,
"text": "Is that right Karl?"
},
{
"userId": 5,
"text": "Bf2"
},
{
"userId": 3,
"text": "No"
},
{
"userId": 3,
"text": "Wrong"
},
{
"userId": 3,
"text": "Ur all wrong"
},
{
"userId": 5,
"text": "whoops"
},
{
"userId": 1,
"text": "ps4 then xbx 1"
},
{
"userId": 4,
"text": "I have a feeling this doesn’t have a solution"
},
{
"userId": 1,
"text": "i got it"
},
{
"userId": 3,
"text": "It actually does"
},
{
"userId": 3,
"text": "At least one"
},
{
"userId": 5,
"text": "is the first move Knight to e6"
},
{
"userId": 7,
"text": "I got it <:Checkmate:821635166170120202>"
},
{
"userId": 4,
"text": "Bishop f4"
},
{
"userId": 3,
"text": "Nope"
},
{
"userId": 4,
"text": "Bruhhh yes it is"
},
{
"userId": 4,
"text": "Give me a counter to that"
},
{
"userId": 5,
"text": "so like Bf4 then Qe4"
},
{
"userId": 6,
"text": "I’m pretty sure Xander already solved it"
},
{
"userId": 5,
"text": "<:Checkmate:821635166170120202>"
},
{
"userId": 6,
"text": "No one could find a counter"
},
{
"userId": 4,
"text": "I was thinking queen g7 after that"
},
{
"userId": 4,
"text": "If he takes with the queen"
},
{
"userId": 3,
"text": "Knight takes rook"
},
{
"userId": 4,
"text": "And if he takes with queen then bishop e5"
},
{
"userId": 7,
"text": "It's gotta be Ka4"
},
{
"userId": 7,
"text": "K as in knight"
},
{
"userId": 5,
"text": "actually K as in kRook"
},
{
"userId": 5,
"text": "the k is silent"
},
{
"userId": 4,
"text": "Queen d2 if knight takes"
},
{
"userId": 6,
"text": "N as in kiNg"
},
{
"userId": 4,
"text": "Still mate"
},
{
"userId": 7,
"text": "That doesn't stop it"
},
{
"userId": 7,
"text": "Next move is Qe4"
},
{
"userId": 4,
"text": "Karl my sequence can’t be stopped"
},
{
"userId": 7,
"text": "Oh but c2 stops it"
},
{
"userId": 4,
"text": "Bishop f4"
},
{
"userId": 4,
"text": "What c2"
},
{
"userId": 7,
"text": "Queen"
},
{
"userId": 3,
"text": "Yah"
},
{
"userId": 4,
"text": "Then I go queen g7"
},
{
"userId": 7,
"text": "Black queen stops Qe4 mate"
},
{
"userId": 3,
"text": "Qc2"
},
{
"userId": 1,
"text": "joker"
},
{
"userId": 4,
"text": "I promise I’ve got it"
},
{
"userId": 3,
"text": "Kd5"
},
{
"userId": 1,
"text": "i make an incredible amount of moneu"
},
{
"userId": 4,
"text": "Qc2 is just stupid that’ll just be mate the next turn if I take with the queen"
},
{
"userId": 5,
"text": "Still the most viable option^^"
},
{
"userId": 4,
"text": "I was trying to go to bed early I’m gonna put it into the computer in the morning"
},
{
"userId": 7,
"text": "Nah"
},
{
"userId": 7,
"text": "For white"
},
{
"userId": 4,
"text": "😴"
},
{
"userId": 5,
"text": "https://tenor.com/view/aight-imma-head-out-im-out-this-bitch-bye-gif-15194343"
},
{
"userId": 5,
"text": "gnight"
},
{
"userId": 3,
"text": "Josiah lost"
},
{
"userId": 3,
"text": "HE can't even find mate in two"
},
{
"userId": 7,
"text": "is it Qf3"
},
{
"userId": 7,
"text": "then after the rook is take"
},
{
"userId": 7,
"text": "n"
},
{
"userId": 3,
"text": "No"
},
{
"userId": 3,
"text": "They don't need to take the rook"
},
{
"userId": 7,
"text": "what do they do"
},
{
"userId": 7,
"text": "either qc2 or nd2 right"
},
{
"userId": 7,
"text": "and only qc2 stops mate"
},
{
"userId": 3,
"text": "Qc2 works"
},
{
"userId": 7,
"text": "but then you go nf5"
},
{
"userId": 7,
"text": "wait nvm"
},
{
"userId": 7,
"text": "queen takes"
},
{
"userId": 3,
"text": "U guys lose"
},
{
"userId": 3,
"text": "8t can't be that hard to look at every move for 2 moves in the future"
},
{
"userId": 7,
"text": "i mean it can be when ther r thousands of possibilities"
},
{
"userId": 3,
"text": "Nope"
},
{
"userId": 3,
"text": "Bad cuase bad"
},
{
"userId": 5,
"text": "https://www.athletic.net/TrackAndField/meet/427016/results/m/1/3200m"
},
{
"userId": 5,
"text": "The ppl who run sub 5 on both miles are kinda crazy"
},
{
"userId": 1,
"text": "school dead"
},
{
"userId": 5,
"text": "Yesterday def felt like a Friday"
},
{
"userId": 1,
"text": "<@&819077402310213652>"
},
{
"userId": 4,
"text": "I’m just trying to play a quick solo during class while we’re not doing anything"
},
{
"userId": 4,
"text": "I’ll play later tonight tho"
},
{
"userId": 1,
"text": "Dont do that i think"
},
{
"userId": 1,
"text": "<@!565249393050124542>"
},
{
"userId": 1,
"text": "<@&819077402310213652> GET MATS"
},
{
"userId": 4,
"text": "Haha thanks for the in game tips"
},
{
"userId": 4,
"text": "I kinda failed tho I couldn’t figure out how to switch to brick"
},
{
"userId": 1,
"text": "ok"
},
{
"userId": 3,
"text": "y josiahg leave"
},
{
"userId": 1,
"text": "idk join vc"
},
{
"userId": 1,
"text": "he was playing in class"
},
{
"userId": 1,
"text": "why are you not joining vc"
},
{
"userId": 1,
"text": "<@&716115930043908168>"
},
{
"userId": 1,
"text": "<@!565249393050124542>"
},
{
"userId": 3,
"text": "@everyone especially <@!743323795477102623> and <@!694634096965451856> do you want to play Fortnite?"
},
{
"userId": 3,
"text": "how do you have time during cladd but not after"
},
{
"userId": 7,
"text": "I think he's at basketball"
},
{
"userId": 3,
"text": "he still never solved the puzzle"
},
{
"userId": 3,
"text": "im sure hell get it eventually"
},
{
"userId": 7,
"text": "Like u said yesterday"
},
{
"userId": 3,
"text": "hudson doesnt play baketball"
},
{
"userId": 7,
"text": "But he's on the tennis team"
},
{
"userId": 3,
"text": "tennis is too long"
},
{
"userId": 3,
"text": "how does he play so long"
},
{
"userId": 3,
"text": "and still suck"
},
{
"userId": 3,
"text": "only joking"
},
{
"userId": 7,
"text": "either 530 or 6"
},
{
"userId": 2,
"text": "<@!565249393050124542> fortnite?"
},
{
"userId": 4,
"text": "I was at basketball practice we’re on our way to a game now"
},
{
"userId": 5,
"text": "Nice"
},
{
"userId": 5,
"text": "https://comicbook.com/gaming/amp/news/rocket-league-dlc-cross-platform-update/"
},
{
"userId": 5,
"text": "Looks like Dexter will be able to use his Nissan Skyline now"
},
{
"userId": 7,
"text": "only have to wait 3 days"
},
{
"userId": 3,
"text": "hudosn?"
},
{
"userId": 3,
"text": "<@!694634096965451856>"
},
{
"userId": 3,
"text": "<@!694634096965451856>"
},
{
"userId": 3,
"text": "<@!708168956082389014>"
},
{
"userId": 4,
"text": "I am very tempted to get one of the basketball skins"
},
{
"userId": 1,
"text": "ok"
},
{
"userId": 3,
"text": "r u tepted to go to sleep tho"
},
{
"userId": 1,
"text": "y keyboard broke on my pc"
},
{
"userId": 1,
"text": "so i cant log in"
},
{
"userId": 4,
"text": "Nah I’m not tired"
},
{
"userId": 1,
"text": "and i cant access the software"
},
{
"userId": 1,
"text": "idk what to do"
},
{
"userId": 3,
"text": "or would you rather solve that puzzle"
},
{
"userId": 4,
"text": "I’m still working on that"
},
{
"userId": 1,
"text": "its like even the same problem when i plug it into a different computer"
},
{
"userId": 4,
"text": "I swear it’s gonna end up having no solution"
},
{
"userId": 3,
"text": "it does"
},
{
"userId": 3,
"text": "if u need a hint i can gie it to u"
},
{
"userId": 4,
"text": "I’ve narrowed it down that the first move has to be a check of some sort or else the queen could just take the pawn and check the king and it’ll be more than two moves"
},
{
"userId": 4,
"text": "No hints for me"
},
{
"userId": 3,
"text": "u sure"
},
{
"userId": 4,
"text": "Yep"
},
{
"userId": 3,
"text": "im sure u shouldnt be sure"
},
{
"userId": 4,
"text": "Im definitely sure"
},
{
"userId": 3,
"text": "after 3 days u should ask for help"
},
{
"userId": 1,
"text": "(if ur a loser)"
},
{
"userId": 4,
"text": "Just saying there’s no way you solved this without looking it up Karl"
},
{
"userId": 1,
"text": "i know what it is"
},
{
"userId": 1,
"text": "u r going for mate in 2?"
},
{
"userId": 4,
"text": "Yep"
},
{
"userId": 1,
"text": "yeah i got it"
},
{
"userId": 4,
"text": "I’m sure you did"
},
{
"userId": 1,
"text": "u r white right"
},
{
"userId": 3,
"text": "yah"
},
{
"userId": 1,
"text": "ok yeah i got it"
},
{
"userId": 3,
"text": "but he doesnt want to know"
},
{
"userId": 4,
"text": "I just absolutely demolished everyone with a gold infantry rifle"
},
{
"userId": 4,
"text": "Zander was kinda right about how good they are"
},
{
"userId": 1,
"text": "im right about everything"
},
{
"userId": 3,
"text": "fortnite time"
},
{
"userId": 3,
"text": "<@!743323795477102623> u want that rematch?"
},
{
"userId": 4,
"text": "Sorry not rn I’m about to have my trombone lesson"
},
{
"userId": 4,
"text": "Later tonight for sure"
},
{
"userId": 3,
"text": "lol"
},
{
"userId": 3,
"text": "u play trombone?"
},
{
"userId": 4,
"text": "Yes I do"
},
{
"userId": 4,
"text": "I was in the jazz band with Ethan until the director left last year and now it’s not really jazz band"
},
{
"userId": 4,
"text": "I’m in vocal jazz this year"
},
{
"userId": 5,
"text": "I thought you gave up trombone to do vocal jazz"
},
{
"userId": 4,
"text": "No I’m still doing trombone"
},
{
"userId": 3,
"text": "ok"
},
{
"userId": 3,
"text": "wel tell me when you want to play"
},
{
"userId": 3,
"text": "is avery playing?"
},
{
"userId": 2,
"text": "Karl"
},
{
"userId": 3,
"text": "sure"
},
{
"userId": 2,
"text": "Alright gimme one sec"
},
{
"userId": 4,
"text": "Fortnite anyone?"
},
{
"userId": 3,
"text": "<@!694634096965451856>"
},
{
"userId": 3,
"text": "<@!743323795477102623>"
},
{
"userId": 3,
"text": "or i guess anyone else"
},
{
"userId": 3,
"text": "but i do think jpsiah was dodgin that rematch by playing the exact hour i was unavaulable today"
},
{
"userId": 3,
"text": "kind of a scam"
},
{
"userId": 3,
"text": "<@!694634096965451856>"
},
{
"userId": 3,
"text": "or dexte"
},
{
"userId": 3,
"text": "ror anyone"
},
{
"userId": 5,
"text": "It's funny because we've been doing a bazillion theory assignments and stuff"
},
{
"userId": 5,
"text": "So we are learning a lot"
},
{
"userId": 3,
"text": "music theory kinda bad"
},
{
"userId": 3,
"text": "music doesnt need explaning"
},
{
"userId": 3,
"text": "zander"
},
{
"userId": 3,
"text": "<@!527626328975867905>"
},
{
"userId": 3,
"text": "nvm"
},
{
"userId": 1,
"text": "sorry im here now"
},
{
"userId": 1,
"text": "<@&819077402310213652>"
},
{
"userId": 4,
"text": "Sorry gtg have dinner now"
},
{
"userId": 4,
"text": "I know but music theory is totally useless to me who’s been doing music my whole life it would literally just be busy work which I hate"
},
{
"userId": 4,
"text": "I was forced to take a short music theory class freshman year in choir and I already knew everything"
},
{
"userId": 2,
"text": "@everyone Fortnite"
},
{
"userId": 1,
"text": "yes join vc"