-
Notifications
You must be signed in to change notification settings - Fork 0
/
discord_events.log
1547 lines (1546 loc) · 142 KB
/
discord_events.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
2024-01-21 08:06:09,618 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-21 08:06:09,618 - INFO - logging in using static token
2024-01-21 08:06:10,146 - INFO - Shard ID None has connected to Gateway (Session ID: 3d3701678d32edc6d43296196126bcaa).
2024-01-21 08:06:12,160 - INFO - Logged in as RMM-Helper#6590
2024-01-22 08:07:21,436 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-22 08:07:21,437 - INFO - logging in using static token
2024-01-22 08:07:22,184 - INFO - Shard ID None has connected to Gateway (Session ID: 2914b4907528718ae2c24cd487d7f3e2).
2024-01-22 08:07:24,195 - INFO - Logged in as RMM-Helper#6590
2024-01-23 08:06:47,314 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-23 08:06:47,314 - INFO - logging in using static token
2024-01-23 08:06:47,880 - INFO - Shard ID None has connected to Gateway (Session ID: 498012d11a52ed313b085dd6538fd7e6).
2024-01-23 08:06:49,895 - INFO - Logged in as RMM-Helper#6590
2024-01-24 08:06:40,505 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-24 08:06:40,506 - INFO - logging in using static token
2024-01-24 08:06:41,308 - INFO - Shard ID None has connected to Gateway (Session ID: 3fa592f34b537e191f4c96ff2ce024d7).
2024-01-24 08:06:43,318 - INFO - Logged in as RMM-Helper#6590
2024-01-24 08:06:43,318 - INFO - Event '**Free Event** Making a Makerspace', 5545117 already exists in Discord but was changed. Updating in Discord...
2024-01-25 08:06:38,292 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-25 08:06:38,292 - INFO - logging in using static token
2024-01-25 08:06:38,873 - INFO - Shard ID None has connected to Gateway (Session ID: 2b3359648ac6a5b610e6b93b2bcaaec8).
2024-01-25 08:06:40,884 - INFO - Logged in as RMM-Helper#6590
2024-01-26 08:06:14,881 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-26 08:06:14,882 - INFO - logging in using static token
2024-01-26 08:06:15,455 - INFO - Shard ID None has connected to Gateway (Session ID: e3d9ad8caf7505cb2fe7ce44550160ab).
2024-01-26 08:06:17,466 - INFO - Logged in as RMM-Helper#6590
2024-01-26 08:06:17,467 - INFO - Event 'Learn to Make a Drawstring Bag', 5559281 already exists in Discord but was changed. Updating in Discord...
2024-01-26 08:06:18,408 - INFO - Event https://redmountainmakers.org/event-5584755 created successfully.
2024-01-27 08:05:58,608 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-27 08:05:58,608 - INFO - logging in using static token
2024-01-27 08:05:59,144 - INFO - Shard ID None has connected to Gateway (Session ID: 2b0c811617acaac4b30a3dee52fe62ea).
2024-01-27 08:06:01,176 - INFO - Logged in as RMM-Helper#6590
2024-01-28 08:06:39,938 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-28 08:06:39,938 - INFO - logging in using static token
2024-01-28 08:06:40,614 - INFO - Shard ID None has connected to Gateway (Session ID: de04c53cfdfa2e607cce0937c389b05f).
2024-01-28 08:06:42,619 - INFO - Logged in as RMM-Helper#6590
2024-01-29 08:06:28,193 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-29 08:06:28,194 - INFO - logging in using static token
2024-01-29 08:06:28,734 - INFO - Shard ID None has connected to Gateway (Session ID: 8c9318e542a3cabba7178d63627be2c0).
2024-01-29 08:06:30,743 - INFO - Logged in as RMM-Helper#6590
2024-01-30 08:06:24,136 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-30 08:06:24,137 - INFO - logging in using static token
2024-01-30 08:06:24,837 - INFO - Shard ID None has connected to Gateway (Session ID: ce1b71bbe091cb3aa4a613c005641210).
2024-01-30 08:06:26,848 - INFO - Logged in as RMM-Helper#6590
2024-01-31 08:06:10,563 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-01-31 08:06:10,564 - INFO - logging in using static token
2024-01-31 08:06:11,365 - INFO - Shard ID None has connected to Gateway (Session ID: ac862cee3d0a7d9d04f9f37cbd6a39ee).
2024-01-31 08:06:13,430 - INFO - Logged in as RMM-Helper#6590
2024-02-01 08:06:25,530 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-01 08:06:25,531 - INFO - logging in using static token
2024-02-01 08:06:26,254 - INFO - Shard ID None has connected to Gateway (Session ID: 47bc4c97dbbcd8a221b5f51622dd048e).
2024-02-01 08:06:28,266 - INFO - Logged in as RMM-Helper#6590
2024-02-01 08:06:28,702 - INFO - Event https://redmountainmakers.org/event-5594190 created successfully.
2024-02-01 08:06:30,179 - INFO - Event https://redmountainmakers.org/event-5594187 created successfully.
2024-02-01 08:06:31,180 - INFO - Event 'Forging Nails - First Blacksmith Class', 5545120 already exists in Discord but was changed. Updating in Discord...
2024-02-01 08:06:33,307 - INFO - Event https://redmountainmakers.org/event-5594192 created successfully.
2024-02-01 08:06:35,440 - INFO - Event https://redmountainmakers.org/event-5594184 created successfully.
2024-02-02 08:06:10,422 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-02 08:06:10,422 - INFO - logging in using static token
2024-02-02 08:06:10,933 - INFO - Shard ID None has connected to Gateway (Session ID: 4c9cf38870148188a12c312d235b72c6).
2024-02-02 08:06:12,951 - INFO - Logged in as RMM-Helper#6590
2024-02-02 08:06:13,493 - INFO - Event https://redmountainmakers.org/event-5596802 created successfully.
2024-02-03 08:05:53,037 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-03 08:05:53,037 - INFO - logging in using static token
2024-02-03 08:05:53,602 - INFO - Shard ID None has connected to Gateway (Session ID: f6e3e1548669874cc28ab5ed40501db1).
2024-02-03 08:05:55,610 - INFO - Logged in as RMM-Helper#6590
2024-02-03 08:05:55,994 - INFO - Event https://redmountainmakers.org/event-5597806 created successfully.
2024-02-03 08:05:57,330 - INFO - Event https://redmountainmakers.org/event-5597804 created successfully.
2024-02-03 08:05:58,739 - INFO - Event https://redmountainmakers.org/event-5597803 created successfully.
2024-02-03 08:06:00,063 - INFO - Event https://redmountainmakers.org/event-5597754 created successfully.
2024-02-03 08:06:55,994 - INFO - Event https://redmountainmakers.org/event-5597765 created successfully.
2024-02-03 08:06:57,346 - INFO - Event https://redmountainmakers.org/event-5597761 created successfully.
2024-02-03 08:06:58,866 - INFO - Event https://redmountainmakers.org/event-5597738 created successfully.
2024-02-03 08:07:00,163 - INFO - Event https://redmountainmakers.org/event-5597735 created successfully.
2024-02-03 08:07:01,810 - INFO - Event https://redmountainmakers.org/event-5597727 created successfully.
2024-02-03 08:07:58,411 - INFO - Event https://redmountainmakers.org/event-5597723 created successfully.
2024-02-04 08:05:59,621 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-04 08:05:59,622 - INFO - logging in using static token
2024-02-04 08:06:00,490 - INFO - Shard ID None has connected to Gateway (Session ID: 49d83796704c8f989cd11197733f11d6).
2024-02-04 08:06:02,502 - INFO - Logged in as RMM-Helper#6590
2024-02-04 08:06:02,767 - INFO - Event with URL https://redmountainmakers.org/event-5596802 removed successfully.
2024-02-05 08:06:47,326 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-05 08:06:47,327 - INFO - logging in using static token
2024-02-05 08:06:47,918 - INFO - Shard ID None has connected to Gateway (Session ID: 0ce1ea13f61d13da1b536e1be431d63d).
2024-02-05 08:06:49,927 - INFO - Logged in as RMM-Helper#6590
2024-02-06 08:07:20,853 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-06 08:07:20,853 - INFO - logging in using static token
2024-02-06 08:07:21,399 - INFO - Shard ID None has connected to Gateway (Session ID: 8c58ca7d9702919c1f1aef51d7767230).
2024-02-06 08:07:23,411 - INFO - Logged in as RMM-Helper#6590
2024-02-07 08:06:20,822 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-07 08:06:20,822 - INFO - logging in using static token
2024-02-07 08:06:21,931 - INFO - Shard ID None has connected to Gateway (Session ID: c6542b0feb42c62da71f4e3c5c0659d2).
2024-02-07 08:06:23,942 - INFO - Logged in as RMM-Helper#6590
2024-02-08 08:06:26,598 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-08 08:06:26,598 - INFO - logging in using static token
2024-02-08 08:06:27,177 - INFO - Shard ID None has connected to Gateway (Session ID: ec51bcad4dfb66d532d5e97809ea0bde).
2024-02-08 08:06:29,187 - INFO - Logged in as RMM-Helper#6590
2024-02-09 08:06:16,542 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-09 08:06:16,542 - INFO - logging in using static token
2024-02-09 08:06:17,316 - INFO - Shard ID None has connected to Gateway (Session ID: 46e349b2065a86b2a990e6807dacc218).
2024-02-09 08:06:19,328 - INFO - Logged in as RMM-Helper#6590
2024-02-09 08:06:19,736 - INFO - Event https://redmountainmakers.org/event-5606947 created successfully.
2024-02-09 08:06:21,310 - INFO - Event https://redmountainmakers.org/event-5606902 created successfully.
2024-02-09 08:06:22,312 - INFO - Event 'Forging Hearts', 5597765 already exists in Discord but was changed. Updating in Discord...
2024-02-10 08:05:45,941 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-10 08:05:45,941 - INFO - logging in using static token
2024-02-10 08:05:46,560 - INFO - Shard ID None has connected to Gateway (Session ID: 6797abcc7099c8026023924d9ef9f301).
2024-02-10 08:05:48,573 - INFO - Logged in as RMM-Helper#6590
2024-02-10 08:05:48,754 - INFO - Event with URL https://redmountainmakers.org/event-5606947 removed successfully.
2024-02-11 08:05:51,803 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-11 08:05:51,804 - INFO - logging in using static token
2024-02-11 08:05:52,693 - INFO - Shard ID None has connected to Gateway (Session ID: da900b7c0606d71b43fe0ad72ef69ff2).
2024-02-11 08:05:54,704 - INFO - Logged in as RMM-Helper#6590
2024-02-12 08:07:01,668 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-12 08:07:01,668 - INFO - logging in using static token
2024-02-12 08:07:02,410 - INFO - Shard ID None has connected to Gateway (Session ID: d0b9ce263cda249282535a540de9fc47).
2024-02-12 08:07:04,456 - INFO - Logged in as RMM-Helper#6590
2024-02-13 08:07:17,144 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-13 08:07:17,145 - INFO - logging in using static token
2024-02-13 08:07:17,760 - INFO - Shard ID None has connected to Gateway (Session ID: e1f024117019bc35db9b2fc39416c8e5).
2024-02-13 08:07:19,772 - INFO - Logged in as RMM-Helper#6590
2024-02-14 08:06:36,539 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-14 08:06:36,539 - INFO - logging in using static token
2024-02-14 08:06:37,081 - INFO - Shard ID None has connected to Gateway (Session ID: bf43eca3c049492e37f82fc0fa594777).
2024-02-14 08:06:39,086 - INFO - Logged in as RMM-Helper#6590
2024-02-15 08:06:28,312 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-15 08:06:28,313 - INFO - logging in using static token
2024-02-15 08:06:29,237 - INFO - Shard ID None has connected to Gateway (Session ID: 7b41d9bf78aeb61f6989270447a1d29c).
2024-02-15 08:06:31,250 - INFO - Logged in as RMM-Helper#6590
2024-02-16 08:06:37,161 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-16 08:06:37,162 - INFO - logging in using static token
2024-02-16 08:06:37,774 - INFO - Shard ID None has connected to Gateway (Session ID: 0a566fc14f38a169fa4930c67602167e).
2024-02-16 08:06:39,784 - INFO - Logged in as RMM-Helper#6590
2024-02-17 08:06:02,783 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-17 08:06:02,783 - INFO - logging in using static token
2024-02-17 08:06:03,434 - INFO - Shard ID None has connected to Gateway (Session ID: 007e57756f8741ac0abee1871e69f6ac).
2024-02-17 08:06:05,443 - INFO - Logged in as RMM-Helper#6590
2024-02-18 08:05:49,774 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-18 08:05:49,774 - INFO - logging in using static token
2024-02-18 08:05:50,198 - INFO - Shard ID None has connected to Gateway (Session ID: 076a7a901b64b0624fc4a22458cd1d57).
2024-02-18 08:05:52,220 - INFO - Logged in as RMM-Helper#6590
2024-02-18 08:05:52,653 - INFO - Event https://redmountainmakers.org/event-5618892 created successfully.
2024-02-19 08:06:34,898 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-19 08:06:34,898 - INFO - logging in using static token
2024-02-19 08:06:35,530 - INFO - Shard ID None has connected to Gateway (Session ID: 8b2c31a52a5d32856a6c6969638063f8).
2024-02-19 08:06:37,540 - INFO - Logged in as RMM-Helper#6590
2024-02-20 08:06:20,903 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-20 08:06:20,903 - INFO - logging in using static token
2024-02-20 08:06:21,653 - INFO - Shard ID None has connected to Gateway (Session ID: 07892875444b809d3996df088f385e16).
2024-02-20 08:06:23,663 - INFO - Logged in as RMM-Helper#6590
2024-02-21 08:07:08,474 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-21 08:07:08,475 - INFO - logging in using static token
2024-02-21 08:07:08,925 - INFO - Shard ID None has connected to Gateway (Session ID: c271d596e581cab993c5584a70ed2f2a).
2024-02-21 08:07:10,961 - INFO - Logged in as RMM-Helper#6590
2024-02-22 08:06:19,258 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-22 08:06:19,258 - INFO - logging in using static token
2024-02-22 08:06:19,976 - INFO - Shard ID None has connected to Gateway (Session ID: a75ce187c357a590ab4111ef75beb5ed).
2024-02-22 08:06:21,987 - INFO - Logged in as RMM-Helper#6590
2024-02-28 01:38:14,121 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-28 01:38:14,122 - INFO - logging in using static token
2024-02-28 01:38:14,878 - INFO - Shard ID None has connected to Gateway (Session ID: 54d8183513ab83a18ca45020900022b1).
2024-02-28 01:38:16,882 - INFO - Logged in as RMM-Helper#6590
2024-02-28 08:06:33,728 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-28 08:06:33,729 - INFO - logging in using static token
2024-02-28 08:06:34,345 - INFO - Shard ID None has connected to Gateway (Session ID: a6bb87aa1cf4749fb700d9dfb27ce819).
2024-02-28 08:06:36,359 - INFO - Logged in as RMM-Helper#6590
2024-02-28 08:06:37,705 - INFO - Event https://redmountainmakers.org/event-5633714 created successfully.
2024-02-29 08:06:17,963 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-02-29 08:06:17,964 - INFO - logging in using static token
2024-02-29 08:06:18,561 - INFO - Shard ID None has connected to Gateway (Session ID: 20c80e1124e72d4b66583b387399a88d).
2024-02-29 08:06:20,567 - INFO - Logged in as RMM-Helper#6590
2024-03-01 08:06:16,145 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-01 08:06:16,146 - INFO - logging in using static token
2024-03-01 08:06:16,593 - INFO - Shard ID None has connected to Gateway (Session ID: 5ea93e8f96927dd5f2cfddd34f72fd83).
2024-03-01 08:06:18,604 - INFO - Logged in as RMM-Helper#6590
2024-03-02 08:05:39,467 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-02 08:05:39,468 - INFO - logging in using static token
2024-03-02 08:05:40,177 - INFO - Shard ID None has connected to Gateway (Session ID: 0ac630d9d105cea4431e85f3943f4daf).
2024-03-02 08:05:42,204 - INFO - Logged in as RMM-Helper#6590
2024-03-03 08:06:54,308 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-03 08:06:54,309 - INFO - logging in using static token
2024-03-03 08:06:54,888 - INFO - Shard ID None has connected to Gateway (Session ID: 31f11b0810920860da5f09d16da606a4).
2024-03-03 08:06:56,903 - INFO - Logged in as RMM-Helper#6590
2024-03-03 08:06:57,047 - INFO - Event with URL https://redmountainmakers.org/event-5594184 removed successfully.
2024-03-04 08:27:00,837 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-04 08:27:00,837 - INFO - logging in using static token
2024-03-04 08:27:01,332 - INFO - Shard ID None has connected to Gateway (Session ID: 159fcf7161d1dda189dc20db317d04c2).
2024-03-04 08:27:03,353 - INFO - Logged in as RMM-Helper#6590
2024-03-05 08:06:45,230 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-05 08:06:45,230 - INFO - logging in using static token
2024-03-05 08:06:46,124 - INFO - Shard ID None has connected to Gateway (Session ID: 3908b19943b98e242b15eb13f8a982d5).
2024-03-05 08:06:48,138 - INFO - Logged in as RMM-Helper#6590
2024-03-05 08:06:48,539 - INFO - Event https://redmountainmakers.org/event-5642566 created successfully.
2024-03-05 08:06:49,935 - INFO - Event https://redmountainmakers.org/event-5642565 created successfully.
2024-03-05 08:06:51,392 - INFO - Event https://redmountainmakers.org/event-5642479 created successfully.
2024-03-06 08:07:11,919 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-06 08:07:11,920 - INFO - logging in using static token
2024-03-06 08:07:12,493 - INFO - Shard ID None has connected to Gateway (Session ID: b9d151259211e39757c40a64e7630a96).
2024-03-06 08:07:14,504 - INFO - Logged in as RMM-Helper#6590
2024-03-06 08:07:14,851 - INFO - Event https://redmountainmakers.org/event-5633740 created successfully.
2024-03-07 08:05:48,081 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-07 08:05:48,081 - INFO - logging in using static token
2024-03-07 08:05:48,596 - INFO - Shard ID None has connected to Gateway (Session ID: 1aa84377426cf9011733c6ab2916d3bc).
2024-03-07 08:05:50,608 - INFO - Logged in as RMM-Helper#6590
2024-03-08 08:06:04,830 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-08 08:06:04,830 - INFO - logging in using static token
2024-03-08 08:06:05,697 - INFO - Shard ID None has connected to Gateway (Session ID: ff0e03c7e5cbf6f33c9d180a98468b01).
2024-03-08 08:06:07,705 - INFO - Logged in as RMM-Helper#6590
2024-03-09 08:06:02,329 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-09 08:06:02,329 - INFO - logging in using static token
2024-03-09 08:06:03,164 - INFO - Shard ID None has connected to Gateway (Session ID: d7de8c7a1afdaebf1bdb976b7ab06741).
2024-03-09 08:06:05,174 - INFO - Logged in as RMM-Helper#6590
2024-03-10 08:05:52,801 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-10 08:05:52,802 - INFO - logging in using static token
2024-03-10 08:05:53,393 - INFO - Shard ID None has connected to Gateway (Session ID: 4ab18227a74b277588c890c3e9d31a3f).
2024-03-10 08:05:55,404 - INFO - Logged in as RMM-Helper#6590
2024-03-11 08:06:54,502 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-11 08:06:54,502 - INFO - logging in using static token
2024-03-11 08:06:55,143 - INFO - Shard ID None has connected to Gateway (Session ID: 99abee2d43a21f08552b1351162dc833).
2024-03-11 08:06:57,154 - INFO - Logged in as RMM-Helper#6590
2024-03-12 08:06:20,296 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-12 08:06:20,297 - INFO - logging in using static token
2024-03-12 08:06:21,140 - INFO - Shard ID None has connected to Gateway (Session ID: 393561d89eea70b2d6d9d576e81cfde2).
2024-03-12 08:06:23,150 - INFO - Logged in as RMM-Helper#6590
2024-03-12 08:06:23,797 - INFO - Event https://redmountainmakers.org/event-5650972 created successfully.
2024-03-12 08:06:25,164 - INFO - Event https://redmountainmakers.org/event-5650969 created successfully.
2024-03-12 08:06:26,691 - INFO - Event https://redmountainmakers.org/event-5650977 created successfully.
2024-03-13 08:06:08,044 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-13 08:06:08,044 - INFO - logging in using static token
2024-03-13 08:06:08,718 - INFO - Shard ID None has connected to Gateway (Session ID: 60a3de21d6bbef981487c9d5f3914fe6).
2024-03-13 08:06:10,734 - INFO - Logged in as RMM-Helper#6590
2024-03-14 18:06:22,188 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-14 18:06:22,188 - INFO - logging in using static token
2024-03-14 18:06:22,765 - INFO - Shard ID None has connected to Gateway (Session ID: f7f8ce73ffc548e9f98e1e7d045dc63d).
2024-03-14 18:06:24,771 - INFO - Logged in as RMM-Helper#6590
2024-03-15 08:06:36,800 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-15 08:06:36,801 - INFO - logging in using static token
2024-03-15 08:06:37,456 - INFO - Shard ID None has connected to Gateway (Session ID: b4cb6186e88a7ab70354e173f9b7a12f).
2024-03-15 08:06:39,469 - INFO - Logged in as RMM-Helper#6590
2024-03-16 08:06:01,151 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-16 08:06:01,151 - INFO - logging in using static token
2024-03-16 08:06:01,674 - INFO - Shard ID None has connected to Gateway (Session ID: a2ce2772b8369d95b0e4e4b3950a355f).
2024-03-16 08:06:03,689 - INFO - Logged in as RMM-Helper#6590
2024-03-17 08:05:54,925 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-17 08:05:54,925 - INFO - logging in using static token
2024-03-17 08:05:55,574 - INFO - Shard ID None has connected to Gateway (Session ID: bdb2d131fd8018126d9269ce36cbd8c8).
2024-03-17 08:05:57,611 - INFO - Logged in as RMM-Helper#6590
2024-03-18 08:06:37,315 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-18 08:06:37,315 - INFO - logging in using static token
2024-03-18 08:06:38,012 - INFO - Shard ID None has connected to Gateway (Session ID: 2fee58237ad1991ee465dfb2c7ee2b39).
2024-03-18 08:06:40,021 - INFO - Logged in as RMM-Helper#6590
2024-03-19 08:06:21,989 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-19 08:06:21,990 - INFO - logging in using static token
2024-03-19 08:06:22,444 - INFO - Shard ID None has connected to Gateway (Session ID: e92489ead5a1e5ff04a2b3c2b50aa887).
2024-03-19 08:06:24,472 - INFO - Logged in as RMM-Helper#6590
2024-03-20 08:06:09,560 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-20 08:06:09,561 - INFO - logging in using static token
2024-03-20 08:06:10,247 - INFO - Shard ID None has connected to Gateway (Session ID: 06341d6f2f0e9de2d81541c8bd1c0718).
2024-03-20 08:06:12,257 - INFO - Logged in as RMM-Helper#6590
2024-03-20 08:06:12,588 - INFO - Event https://redmountainmakers.org/event-5663283 created successfully.
2024-03-20 08:06:13,590 - INFO - Event '*New Class* Ceramic Shell Bronze Casting 2 Day Course', 5594190 already exists in Discord but was changed. Updating in Discord...
2024-03-21 08:06:17,083 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-21 08:06:17,084 - INFO - logging in using static token
2024-03-21 08:06:18,217 - INFO - Shard ID None has connected to Gateway (Session ID: 664e32a1b78eab398bc5c9a3a41a7a5b).
2024-03-21 08:06:20,231 - INFO - Logged in as RMM-Helper#6590
2024-03-22 08:07:06,083 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-22 08:07:06,083 - INFO - logging in using static token
2024-03-22 08:07:06,646 - INFO - Shard ID None has connected to Gateway (Session ID: f06515939d7fd98093ca3cb7b4c98378).
2024-03-22 08:07:08,659 - INFO - Logged in as RMM-Helper#6590
2024-03-23 08:05:38,029 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-23 08:05:38,029 - INFO - logging in using static token
2024-03-23 08:05:38,832 - INFO - Shard ID None has connected to Gateway (Session ID: 85de36d558513d1882be4fe897adc737).
2024-03-23 08:05:40,880 - INFO - Logged in as RMM-Helper#6590
2024-03-24 08:05:52,485 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-24 08:05:52,486 - INFO - logging in using static token
2024-03-24 08:05:53,029 - INFO - Shard ID None has connected to Gateway (Session ID: 57f5dc66cacdded7663939559ba5e120).
2024-03-24 08:05:55,039 - INFO - Logged in as RMM-Helper#6590
2024-03-25 08:07:55,565 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-25 08:07:55,565 - INFO - logging in using static token
2024-03-25 08:07:56,104 - INFO - Shard ID None has connected to Gateway (Session ID: 18372b1319dcbbc84b5cc97648d5fb22).
2024-03-25 08:07:58,116 - INFO - Logged in as RMM-Helper#6590
2024-03-25 08:07:58,454 - INFO - Event https://redmountainmakers.org/event-5668490 created successfully.
2024-03-26 08:06:19,677 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-26 08:06:19,678 - INFO - logging in using static token
2024-03-26 08:06:20,274 - INFO - Shard ID None has connected to Gateway (Session ID: 2a859b81486ed245c9dc997ea1af590c).
2024-03-26 08:06:22,287 - INFO - Logged in as RMM-Helper#6590
2024-03-27 08:06:22,412 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-27 08:06:22,413 - INFO - logging in using static token
2024-03-27 08:06:23,080 - INFO - Shard ID None has connected to Gateway (Session ID: 17e13fcb18ada8d01960607db21eb548).
2024-03-27 08:06:25,113 - INFO - Logged in as RMM-Helper#6590
2024-03-28 08:06:18,867 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-28 08:06:18,867 - INFO - logging in using static token
2024-03-28 08:06:19,383 - INFO - Shard ID None has connected to Gateway (Session ID: 23d67e2ee86620081002d3f0f4153721).
2024-03-28 08:06:21,394 - INFO - Logged in as RMM-Helper#6590
2024-03-29 08:06:39,940 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-29 08:06:39,941 - INFO - logging in using static token
2024-03-29 08:06:40,771 - INFO - Shard ID None has connected to Gateway (Session ID: cea98df597accaeedd16b7b27ceed336).
2024-03-29 08:06:42,785 - INFO - Logged in as RMM-Helper#6590
2024-03-30 08:06:36,925 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-30 08:06:36,926 - INFO - logging in using static token
2024-03-30 08:06:37,436 - INFO - Shard ID None has connected to Gateway (Session ID: 892990286604094cee42cea864d2c39b).
2024-03-30 08:06:39,463 - INFO - Logged in as RMM-Helper#6590
2024-03-30 08:06:39,883 - INFO - Event https://redmountainmakers.org/event-5676476 created successfully.
2024-03-31 08:06:51,618 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-03-31 08:06:51,618 - INFO - logging in using static token
2024-03-31 08:06:52,106 - INFO - Shard ID None has connected to Gateway (Session ID: bb188f5bf1a19c0a49971d4027b6edec).
2024-03-31 08:06:54,138 - INFO - Logged in as RMM-Helper#6590
2024-03-31 08:06:54,567 - INFO - Event https://redmountainmakers.org/event-5668490 created successfully.
2024-03-31 08:06:55,708 - INFO - Event with URL https://redmountainmakers.org/event-5594190 removed successfully.
2024-04-01 08:08:17,171 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-01 08:08:17,172 - INFO - logging in using static token
2024-04-01 08:08:17,677 - INFO - Shard ID None has connected to Gateway (Session ID: 9047baa94f02d7e8b8e58b2b3745e78b).
2024-04-01 08:08:19,687 - INFO - Logged in as RMM-Helper#6590
2024-04-01 08:08:19,968 - INFO - Event https://redmountainmakers.org/event-5668490 created successfully.
2024-04-02 08:06:30,429 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-02 08:06:30,429 - INFO - logging in using static token
2024-04-02 08:06:31,022 - INFO - Shard ID None has connected to Gateway (Session ID: 81fe6815e10d6f701c5c94aefb235976).
2024-04-02 08:06:33,027 - INFO - Logged in as RMM-Helper#6590
2024-04-02 08:06:33,527 - INFO - Event https://redmountainmakers.org/event-5668490 created successfully.
2024-04-03 08:06:39,302 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-03 08:06:39,303 - INFO - logging in using static token
2024-04-03 08:06:40,020 - INFO - Shard ID None has connected to Gateway (Session ID: 66e53500b02b48de898ac56ee79945a8).
2024-04-03 08:06:42,030 - INFO - Logged in as RMM-Helper#6590
2024-04-03 08:06:42,496 - INFO - Event https://redmountainmakers.org/event-5668490 created successfully.
2024-04-04 08:07:03,452 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-04 08:07:03,452 - INFO - logging in using static token
2024-04-04 08:07:03,908 - INFO - Shard ID None has connected to Gateway (Session ID: 4d5f081b99856816937047c3944d9014).
2024-04-04 08:07:05,919 - INFO - Logged in as RMM-Helper#6590
2024-04-10 08:07:05,939 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-10 08:07:05,939 - INFO - logging in using static token
2024-04-10 08:07:06,653 - INFO - Shard ID None has connected to Gateway (Session ID: 9decb009aa04b7a8a44c3dd02ab7a2ed).
2024-04-10 08:07:08,666 - INFO - Logged in as RMM-Helper#6590
2024-04-10 08:07:09,119 - INFO - Event https://redmountainmakers.org/event-5688523 created successfully.
2024-04-10 08:07:10,490 - INFO - Event https://redmountainmakers.org/event-5689782 created successfully.
2024-04-10 08:07:11,865 - INFO - Event https://redmountainmakers.org/event-5689781 created successfully.
2024-04-10 08:07:13,258 - INFO - Event https://redmountainmakers.org/event-5689780 created successfully.
2024-04-10 08:08:09,204 - INFO - Event https://redmountainmakers.org/event-5689777 created successfully.
2024-04-10 08:08:10,629 - INFO - Event https://redmountainmakers.org/event-5689753 created successfully.
2024-04-10 08:08:12,020 - INFO - Event https://redmountainmakers.org/event-5689776 created successfully.
2024-04-11 08:06:37,241 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-11 08:06:37,242 - INFO - logging in using static token
2024-04-11 08:06:37,781 - INFO - Shard ID None has connected to Gateway (Session ID: 93267586c8f3bd2ff925cccb8414157a).
2024-04-11 08:06:39,790 - INFO - Logged in as RMM-Helper#6590
2024-04-11 08:06:40,155 - INFO - Event https://redmountainmakers.org/event-5691932 created successfully.
2024-04-12 08:06:24,425 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-12 08:06:24,426 - INFO - logging in using static token
2024-04-12 08:06:25,031 - INFO - Shard ID None has connected to Gateway (Session ID: 223d2de23f7d750dca5920596541d6bf).
2024-04-12 08:06:27,036 - INFO - Logged in as RMM-Helper#6590
2024-04-12 08:06:27,471 - INFO - Event https://redmountainmakers.org/event-5692589 created successfully.
2024-04-12 08:06:28,809 - INFO - Event https://redmountainmakers.org/event-5692587 created successfully.
2024-04-12 08:06:30,252 - INFO - Event https://redmountainmakers.org/event-5692585 created successfully.
2024-04-12 08:06:31,605 - INFO - Event https://redmountainmakers.org/event-5692584 created successfully.
2024-04-12 08:07:27,380 - INFO - Event https://redmountainmakers.org/event-5691932 created successfully.
2024-04-13 08:05:44,230 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-13 08:05:44,231 - INFO - logging in using static token
2024-04-13 08:05:45,163 - INFO - Shard ID None has connected to Gateway (Session ID: 8fad5789e56f05e4c773c5e453c13bf1).
2024-04-13 08:05:47,172 - INFO - Logged in as RMM-Helper#6590
2024-04-14 08:42:50,951 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-14 08:42:50,952 - INFO - logging in using static token
2024-04-14 08:42:51,592 - INFO - Shard ID None has connected to Gateway (Session ID: c3d9ea7b2d4a690a8b7d1685d743d065).
2024-04-14 08:42:53,604 - INFO - Logged in as RMM-Helper#6590
2024-04-15 08:05:47,232 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-15 08:05:47,232 - INFO - logging in using static token
2024-04-15 08:05:47,799 - INFO - Shard ID None has connected to Gateway (Session ID: 108e02f3cfae724f7d6f1efa2f06ec80).
2024-04-15 08:05:49,810 - INFO - Logged in as RMM-Helper#6590
2024-04-16 08:06:27,977 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-16 08:06:27,978 - INFO - logging in using static token
2024-04-16 08:06:28,629 - INFO - Shard ID None has connected to Gateway (Session ID: 95d26047d11b0251a9e58190c45f536e).
2024-04-16 08:06:30,640 - INFO - Logged in as RMM-Helper#6590
2024-04-16 08:06:31,050 - INFO - Event https://redmountainmakers.org/event-5697588 created successfully.
2024-04-16 08:06:32,409 - INFO - Event https://redmountainmakers.org/event-5697593 created successfully.
2024-04-16 08:06:33,937 - INFO - Event https://redmountainmakers.org/event-5697607 created successfully.
2024-04-16 08:06:35,321 - INFO - Event https://redmountainmakers.org/event-5697592 created successfully.
2024-04-16 08:07:31,147 - INFO - Event https://redmountainmakers.org/event-5697587 created successfully.
2024-04-16 08:07:32,641 - INFO - Event https://redmountainmakers.org/event-5697591 created successfully.
2024-04-16 08:07:33,971 - INFO - Event https://redmountainmakers.org/event-5697606 created successfully.
2024-04-17 08:06:32,038 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-17 08:06:32,039 - INFO - logging in using static token
2024-04-17 08:06:32,486 - INFO - Shard ID None has connected to Gateway (Session ID: d15f3a79ea1560d80431e88211e8002f).
2024-04-17 08:06:34,497 - INFO - Logged in as RMM-Helper#6590
2024-04-17 08:06:34,772 - INFO - Event https://redmountainmakers.org/event-5698662 created successfully.
2024-04-17 08:06:35,775 - INFO - Event 'Turn a Wooden Goblet', 5688523 already exists in Discord but was changed. Updating in Discord...
2024-04-18 08:07:22,281 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-18 08:07:22,282 - INFO - logging in using static token
2024-04-18 08:07:22,756 - INFO - Shard ID None has connected to Gateway (Session ID: aa2084fb7a6e964a3d1f2db5b99245ba).
2024-04-18 08:07:24,765 - INFO - Logged in as RMM-Helper#6590
2024-04-18 08:07:25,009 - INFO - Event with URL https://redmountainmakers.org/event-5692584 removed successfully.
2024-04-18 08:07:25,162 - INFO - Event with URL https://redmountainmakers.org/event-5692585 removed successfully.
2024-04-18 08:07:25,291 - INFO - Event with URL https://redmountainmakers.org/event-5698662 removed successfully.
2024-04-18 08:07:25,453 - INFO - Event with URL https://redmountainmakers.org/event-5691932 removed successfully.
2024-04-18 08:07:44,932 - INFO - Event with URL https://redmountainmakers.org/event-5692587 removed successfully.
2024-04-18 08:07:45,080 - INFO - Event with URL https://redmountainmakers.org/event-5692589 removed successfully.
2024-04-19 08:06:56,136 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-19 08:06:56,136 - INFO - logging in using static token
2024-04-19 08:06:56,699 - INFO - Shard ID None has connected to Gateway (Session ID: 5568f483b2d71290651e00ee2d5ccb17).
2024-04-19 08:06:58,711 - INFO - Logged in as RMM-Helper#6590
2024-04-19 08:06:59,005 - INFO - Event https://redmountainmakers.org/event-5702397 created successfully.
2024-04-20 08:06:05,875 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-20 08:06:05,875 - INFO - logging in using static token
2024-04-20 08:06:06,463 - INFO - Shard ID None has connected to Gateway (Session ID: eb9e46f752c575a4d8049e5e7a596ab8).
2024-04-20 08:06:08,475 - INFO - Logged in as RMM-Helper#6590
2024-04-20 08:06:09,016 - INFO - Event https://redmountainmakers.org/event-5703895 created successfully.
2024-04-21 08:06:05,830 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-21 08:06:05,831 - INFO - logging in using static token
2024-04-21 08:06:06,484 - INFO - Shard ID None has connected to Gateway (Session ID: 56c7d0619d40852a2dd55a371ef71b96).
2024-04-21 08:06:08,496 - INFO - Logged in as RMM-Helper#6590
2024-04-22 08:07:07,199 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-22 08:07:07,200 - INFO - logging in using static token
2024-04-22 08:07:07,675 - INFO - Shard ID None has connected to Gateway (Session ID: 6b5c103e7100d14fc0273ec382fe479c).
2024-04-22 08:07:09,704 - INFO - Logged in as RMM-Helper#6590
2024-04-22 08:07:10,072 - INFO - Event https://redmountainmakers.org/event-5705852 created successfully.
2024-04-23 08:06:50,140 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-23 08:06:50,140 - INFO - logging in using static token
2024-04-23 08:06:50,499 - INFO - Shard ID None has connected to Gateway (Session ID: 75e74fd759cc4f59cf986bb663aac373).
2024-04-23 08:06:52,510 - INFO - Logged in as RMM-Helper#6590
2024-04-23 08:06:52,978 - INFO - Event https://redmountainmakers.org/event-5707234 created successfully.
2024-04-23 08:06:54,323 - INFO - Event https://redmountainmakers.org/event-5706967 created successfully.
2024-04-24 08:07:11,705 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-24 08:07:11,706 - INFO - logging in using static token
2024-04-24 08:07:12,234 - INFO - Shard ID None has connected to Gateway (Session ID: 4df9939bc72f2b6c3a6c3bac008ad9e6).
2024-04-24 08:07:14,244 - INFO - Logged in as RMM-Helper#6590
2024-04-25 08:06:43,941 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-25 08:06:43,942 - INFO - logging in using static token
2024-04-25 08:06:44,405 - INFO - Shard ID None has connected to Gateway (Session ID: 8c00bceb5008703ded05dfe465eefc63).
2024-04-25 08:06:46,416 - INFO - Logged in as RMM-Helper#6590
2024-04-26 08:06:28,584 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-26 08:06:28,584 - INFO - logging in using static token
2024-04-26 08:06:28,910 - INFO - Shard ID None has connected to Gateway (Session ID: 0a8d53c1d2bf01caf4d3d3850aa7fc88).
2024-04-26 08:06:30,934 - INFO - Logged in as RMM-Helper#6590
2024-04-27 08:06:38,158 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-27 08:06:38,159 - INFO - logging in using static token
2024-04-27 08:06:39,607 - INFO - Shard ID None has connected to Gateway (Session ID: 895f2c2f636c8f38befe14e4706c9fca).
2024-04-27 08:06:41,619 - INFO - Logged in as RMM-Helper#6590
2024-04-27 08:06:41,883 - INFO - Event https://redmountainmakers.org/event-5712226 created successfully.
2024-04-27 08:06:43,146 - INFO - Event https://redmountainmakers.org/event-5712223 created successfully.
2024-04-28 08:06:09,144 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-28 08:06:09,144 - INFO - logging in using static token
2024-04-28 08:06:09,630 - INFO - Shard ID None has connected to Gateway (Session ID: 0530aa4b38cfb676d56a7b08497923b5).
2024-04-28 08:06:11,670 - INFO - Logged in as RMM-Helper#6590
2024-04-29 08:07:48,224 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-29 08:07:48,225 - INFO - logging in using static token
2024-04-29 08:07:48,724 - INFO - Shard ID None has connected to Gateway (Session ID: ca0f6eb898af0c150daa87e6540588f0).
2024-04-29 08:07:50,739 - INFO - Logged in as RMM-Helper#6590
2024-04-30 08:06:57,342 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-04-30 08:06:57,343 - INFO - logging in using static token
2024-04-30 08:06:58,081 - INFO - Shard ID None has connected to Gateway (Session ID: 8563e7a8551bc12d6747494e37b944e4).
2024-04-30 08:07:00,097 - INFO - Logged in as RMM-Helper#6590
2024-05-01 08:07:43,049 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-01 08:07:43,050 - INFO - logging in using static token
2024-05-01 08:07:43,856 - INFO - Shard ID None has connected to Gateway (Session ID: 9f6be0624ff2e3b5cd7804a4cb854d27).
2024-05-01 08:07:45,862 - INFO - Logged in as RMM-Helper#6590
2024-05-02 08:06:33,832 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-02 08:06:33,832 - INFO - logging in using static token
2024-05-02 08:06:34,462 - INFO - Shard ID None has connected to Gateway (Session ID: 294deda1eae43ccbb9f5b38c989f9151).
2024-05-02 08:06:36,471 - INFO - Logged in as RMM-Helper#6590
2024-05-03 08:06:31,681 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-03 08:06:31,682 - INFO - logging in using static token
2024-05-03 08:06:32,128 - INFO - Shard ID None has connected to Gateway (Session ID: 0c92921feb8537b40a068297694037ab).
2024-05-03 08:06:34,139 - INFO - Logged in as RMM-Helper#6590
2024-05-04 08:06:07,168 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-04 08:06:07,168 - INFO - logging in using static token
2024-05-04 08:06:07,929 - INFO - Shard ID None has connected to Gateway (Session ID: 837ff02e597336af54e069236c9bbe07).
2024-05-04 08:06:09,939 - INFO - Logged in as RMM-Helper#6590
2024-05-05 08:06:16,889 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-05 08:06:16,890 - INFO - logging in using static token
2024-05-05 08:06:17,382 - INFO - Shard ID None has connected to Gateway (Session ID: 3fcd11cd83699f604d39118e8fd3df50).
2024-05-05 08:06:19,418 - INFO - Logged in as RMM-Helper#6590
2024-05-06 08:07:09,050 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-06 08:07:09,051 - INFO - logging in using static token
2024-05-06 08:07:09,716 - INFO - Shard ID None has connected to Gateway (Session ID: 4b1ddc3c00eac4f0a109f9a4c5df1895).
2024-05-06 08:07:11,729 - INFO - Logged in as RMM-Helper#6590
2024-05-07 08:06:43,417 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-07 08:06:43,417 - INFO - logging in using static token
2024-05-07 08:06:43,958 - INFO - Shard ID None has connected to Gateway (Session ID: 084814de150ea21b52b831e7cd6a3c3e).
2024-05-07 08:06:45,971 - INFO - Logged in as RMM-Helper#6590
2024-05-08 08:06:28,497 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-08 08:06:28,497 - INFO - logging in using static token
2024-05-08 08:06:29,006 - INFO - Shard ID None has connected to Gateway (Session ID: 041e33f6a47f91afbd74f84797a37567).
2024-05-08 08:06:31,024 - INFO - Logged in as RMM-Helper#6590
2024-05-08 08:06:31,354 - INFO - Event https://redmountainmakers.org/event-5724737 created successfully.
2024-05-08 08:06:32,651 - INFO - Event https://redmountainmakers.org/event-5724731 created successfully.
2024-05-08 08:06:33,980 - INFO - Event https://redmountainmakers.org/event-5724727 created successfully.
2024-05-08 08:06:35,467 - INFO - Event https://redmountainmakers.org/event-5724744 created successfully.
2024-05-08 08:07:31,342 - INFO - Event https://redmountainmakers.org/event-5724725 created successfully.
2024-05-08 08:07:32,644 - INFO - Event https://redmountainmakers.org/event-5724722 created successfully.
2024-05-09 08:07:00,137 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-09 08:07:00,137 - INFO - logging in using static token
2024-05-09 08:07:01,004 - INFO - Shard ID None has connected to Gateway (Session ID: a420a53f3ea161741681365ff3763fb3).
2024-05-09 08:07:03,012 - INFO - Logged in as RMM-Helper#6590
2024-05-10 08:07:11,326 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-10 08:07:11,327 - INFO - logging in using static token
2024-05-10 08:07:11,688 - INFO - Shard ID None has connected to Gateway (Session ID: 0d22afd095be3b921331237942fa21a8).
2024-05-10 08:07:13,734 - INFO - Logged in as RMM-Helper#6590
2024-05-10 08:07:14,139 - INFO - Event https://redmountainmakers.org/event-5692589 created successfully.
2024-05-10 08:07:15,141 - INFO - Event 'Introduction to Welding', 5702397 already exists in Discord but was changed. Updating in Discord...
2024-05-11 08:06:10,201 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-11 08:06:10,201 - INFO - logging in using static token
2024-05-11 08:06:10,700 - INFO - Shard ID None has connected to Gateway (Session ID: 76e623fd51ea342c1982bfc3430857dc).
2024-05-11 08:06:12,713 - INFO - Logged in as RMM-Helper#6590
2024-05-11 08:06:12,713 - INFO - Event 'Learn to Sew: Make a Lumbar Pillow', 5703895 already exists in Discord but was changed. Updating in Discord...
2024-05-11 08:06:13,253 - INFO - Event with URL https://redmountainmakers.org/event-5692589 removed successfully.
2024-05-12 08:07:01,327 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-12 08:07:01,328 - INFO - logging in using static token
2024-05-12 08:07:01,749 - INFO - Shard ID None has connected to Gateway (Session ID: 247af6daae365372e5210a65f586c9b1).
2024-05-12 08:07:03,759 - INFO - Logged in as RMM-Helper#6590
2024-05-13 08:07:16,140 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-13 08:07:16,140 - INFO - logging in using static token
2024-05-13 08:07:16,651 - INFO - Shard ID None has connected to Gateway (Session ID: 67bb324c9dbde5b019fa751f6e19d598).
2024-05-13 08:07:18,661 - INFO - Logged in as RMM-Helper#6590
2024-05-14 08:07:34,895 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-14 08:07:34,895 - INFO - logging in using static token
2024-05-14 08:07:35,546 - INFO - Shard ID None has connected to Gateway (Session ID: 680655827f63c9537f560e12e5eaf635).
2024-05-14 08:07:37,577 - INFO - Logged in as RMM-Helper#6590
2024-05-15 08:06:44,735 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-15 08:06:44,735 - INFO - logging in using static token
2024-05-15 08:06:45,301 - INFO - Shard ID None has connected to Gateway (Session ID: 03d535ff7a74fae19c5a38796e5b0937).
2024-05-15 08:06:47,315 - INFO - Logged in as RMM-Helper#6590
2024-05-15 08:06:47,440 - ERROR - Error creating event https://redmountainmakers.org/event-5733422: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-16 08:06:05,817 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-16 08:06:05,818 - INFO - logging in using static token
2024-05-16 08:06:06,400 - INFO - Shard ID None has connected to Gateway (Session ID: 5d3357c2e8cf8257abf2997f19c91637).
2024-05-16 08:06:08,435 - INFO - Logged in as RMM-Helper#6590
2024-05-16 08:06:08,511 - ERROR - Error creating event https://redmountainmakers.org/event-5733422: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-17 08:07:21,745 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-17 08:07:21,746 - INFO - logging in using static token
2024-05-17 08:07:22,478 - INFO - Shard ID None has connected to Gateway (Session ID: ccd1db8996cc299db4a5a489db1b3930).
2024-05-17 08:07:24,496 - INFO - Logged in as RMM-Helper#6590
2024-05-17 08:07:24,625 - ERROR - Error creating event https://redmountainmakers.org/event-5733422: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-18 08:06:03,975 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-18 08:06:03,975 - INFO - logging in using static token
2024-05-18 08:06:04,484 - INFO - Shard ID None has connected to Gateway (Session ID: 3e69759c3c0db478e965230db97a3879).
2024-05-18 08:06:06,497 - INFO - Logged in as RMM-Helper#6590
2024-05-18 08:06:06,883 - INFO - Event https://redmountainmakers.org/event-5737271 created successfully.
2024-05-18 08:06:08,428 - INFO - Event https://redmountainmakers.org/event-5737249 created successfully.
2024-05-18 08:06:09,570 - ERROR - Error creating event https://redmountainmakers.org/event-5733422: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-18 08:06:10,883 - INFO - Event https://redmountainmakers.org/event-5737266 created successfully.
2024-05-19 08:06:04,239 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-19 08:06:04,240 - INFO - logging in using static token
2024-05-19 08:06:05,096 - INFO - Shard ID None has connected to Gateway (Session ID: 6a9c2075c30a27c1ee53628f3df04f24).
2024-05-19 08:06:07,125 - INFO - Logged in as RMM-Helper#6590
2024-05-19 08:06:07,477 - INFO - Event https://redmountainmakers.org/event-5737266 created successfully.
2024-05-20 08:07:20,937 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-20 08:07:20,938 - INFO - logging in using static token
2024-05-20 08:07:21,388 - INFO - Shard ID None has connected to Gateway (Session ID: a1641f3811923ef6ca3d07bb2e39dadf).
2024-05-20 08:07:23,403 - INFO - Logged in as RMM-Helper#6590
2024-05-20 08:07:23,516 - INFO - Event with URL https://redmountainmakers.org/event-5724737 removed successfully.
2024-05-21 08:07:14,552 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-21 08:07:14,553 - INFO - logging in using static token
2024-05-21 08:07:15,330 - INFO - Shard ID None has connected to Gateway (Session ID: ac08e3508d302546864068c61da57c59).
2024-05-21 08:07:17,362 - INFO - Logged in as RMM-Helper#6590
2024-05-21 08:07:17,433 - ERROR - Error creating event https://redmountainmakers.org/event-5739267: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-21 08:07:18,855 - INFO - Event https://redmountainmakers.org/event-5739435 created successfully.
2024-05-21 08:07:20,151 - INFO - Event https://redmountainmakers.org/event-5739432 created successfully.
2024-05-21 08:07:21,586 - INFO - Event https://redmountainmakers.org/event-5739971 created successfully.
2024-05-22 08:07:13,307 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-22 08:07:13,308 - INFO - logging in using static token
2024-05-22 08:07:13,860 - INFO - Shard ID None has connected to Gateway (Session ID: e17ba7be2a449de75d25c31c4123182e).
2024-05-22 08:07:15,871 - INFO - Logged in as RMM-Helper#6590
2024-05-22 08:07:15,958 - ERROR - Error creating event https://redmountainmakers.org/event-5739267: 400 Bad Request (error code: 50035): Invalid Form Body
In scheduled_end_time: Cannot schedule event to end before starting.
2024-05-22 08:07:17,372 - INFO - Event https://redmountainmakers.org/event-5740167 created successfully.
2024-05-22 08:07:18,669 - INFO - Event https://redmountainmakers.org/event-5740166 created successfully.
2024-05-22 08:07:20,266 - INFO - Event https://redmountainmakers.org/event-5740165 created successfully.
2024-05-22 08:08:16,315 - INFO - Event https://redmountainmakers.org/event-5740164 created successfully.
2024-05-23 08:07:00,903 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-23 08:07:00,904 - INFO - logging in using static token
2024-05-23 08:07:01,374 - INFO - Shard ID None has connected to Gateway (Session ID: 55482a9955578881040cc7d183801c39).
2024-05-23 08:07:03,402 - INFO - Logged in as RMM-Helper#6590
2024-05-23 08:07:03,946 - INFO - Event https://redmountainmakers.org/event-5742228 created successfully.
2024-05-23 08:07:05,267 - INFO - Event https://redmountainmakers.org/event-5741678 created successfully.
2024-05-23 08:07:07,206 - INFO - Event https://redmountainmakers.org/event-5741668 created successfully.
2024-05-23 08:07:08,547 - INFO - Event https://redmountainmakers.org/event-5741675 created successfully.
2024-05-23 08:08:03,838 - INFO - Event https://redmountainmakers.org/event-5741667 created successfully.
2024-05-23 08:08:05,300 - INFO - Event https://redmountainmakers.org/event-5741666 created successfully.
2024-05-23 08:08:06,704 - INFO - Event https://redmountainmakers.org/event-5741665 created successfully.
2024-05-23 08:08:08,089 - INFO - Event https://redmountainmakers.org/event-5741672 created successfully.
2024-05-23 08:08:09,862 - INFO - Event https://redmountainmakers.org/event-5741670 created successfully.
2024-05-24 08:06:57,911 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-24 08:06:57,911 - INFO - logging in using static token
2024-05-24 08:06:58,675 - INFO - Shard ID None has connected to Gateway (Session ID: 349450b989dd601f820f5d9f85ead84f).
2024-05-24 08:07:00,750 - INFO - Logged in as RMM-Helper#6590
2024-05-24 08:07:00,751 - INFO - Event 'Intro to Stained Glass - Coasters', 5740165 already exists in Discord but was changed. Updating in Discord...
2024-05-25 08:06:22,830 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-25 08:06:22,831 - INFO - logging in using static token
2024-05-25 08:06:23,177 - INFO - Shard ID None has connected to Gateway (Session ID: 976d8a4f7efa3d9cefdf6f5e8430cf26).
2024-05-25 08:06:25,188 - INFO - Logged in as RMM-Helper#6590
2024-05-26 08:06:12,602 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-26 08:06:12,603 - INFO - logging in using static token
2024-05-26 08:06:13,275 - INFO - Shard ID None has connected to Gateway (Session ID: 4b9b24d653443a6b1d84452a01d557f5).
2024-05-26 08:06:15,287 - INFO - Logged in as RMM-Helper#6590
2024-05-26 08:06:15,287 - INFO - Event 'You Blew It! 1 hour glass blowing sessions', 5742228 already exists in Discord but was changed. Updating in Discord...
2024-05-26 08:06:16,322 - INFO - Event https://redmountainmakers.org/event-5745693 created successfully.
2024-05-26 08:06:17,324 - INFO - Event 'Free Stained Glass Tour', 5741670 already exists in Discord but was changed. Updating in Discord...
2024-05-27 08:07:19,620 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-27 08:07:19,620 - INFO - logging in using static token
2024-05-27 08:07:20,288 - INFO - Shard ID None has connected to Gateway (Session ID: 00375beba4aecf293835af5d85bf846e).
2024-05-27 08:07:22,296 - INFO - Logged in as RMM-Helper#6590
2024-05-28 08:07:11,652 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-28 08:07:11,653 - INFO - logging in using static token
2024-05-28 08:07:12,252 - INFO - Shard ID None has connected to Gateway (Session ID: 80830a87974cbb6416c1d06cae6a799c).
2024-05-28 08:07:14,263 - INFO - Logged in as RMM-Helper#6590
2024-05-28 08:07:14,264 - INFO - Event '*New Class* Canister Damascus', 5740167 already exists in Discord but was changed. Updating in Discord...
2024-05-29 08:07:36,984 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-29 08:07:36,985 - INFO - logging in using static token
2024-05-29 08:07:38,002 - INFO - Shard ID None has connected to Gateway (Session ID: 6097670d175c9731e98b8077ddc45ecb).
2024-05-29 08:07:40,015 - INFO - Logged in as RMM-Helper#6590
2024-05-30 08:07:50,399 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-30 08:07:50,400 - INFO - logging in using static token
2024-05-30 08:07:51,154 - INFO - Shard ID None has connected to Gateway (Session ID: 05904acd5ff98bc49663a6d327908efa).
2024-05-30 08:07:53,162 - INFO - Logged in as RMM-Helper#6590
2024-05-30 08:07:53,537 - INFO - Event https://redmountainmakers.org/event-5749075 created successfully.
2024-05-30 08:07:54,855 - INFO - Event https://redmountainmakers.org/event-5749109 created successfully.
2024-05-30 08:07:56,244 - INFO - Event https://redmountainmakers.org/event-5749108 created successfully.
2024-05-30 08:07:57,748 - INFO - Event https://redmountainmakers.org/event-5749074 created successfully.
2024-05-30 08:08:53,599 - INFO - Event https://redmountainmakers.org/event-5749107 created successfully.
2024-05-30 08:08:55,008 - INFO - Event https://redmountainmakers.org/event-5749106 created successfully.
2024-05-30 08:08:56,010 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5742228 already exists in Discord but was changed. Updating in Discord...
2024-05-30 08:08:57,366 - INFO - Event https://redmountainmakers.org/event-5749073 created successfully.
2024-05-30 08:08:58,704 - INFO - Event https://redmountainmakers.org/event-5749105 created successfully.
2024-05-30 08:09:00,322 - INFO - Event https://redmountainmakers.org/event-5749104 created successfully.
2024-05-30 08:09:54,984 - INFO - Event https://redmountainmakers.org/event-5749103 created successfully.
2024-05-30 08:09:56,393 - INFO - Event https://redmountainmakers.org/event-5749100 created successfully.
2024-05-31 08:07:25,386 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-05-31 08:07:25,387 - INFO - logging in using static token
2024-05-31 08:07:25,821 - INFO - Shard ID None has connected to Gateway (Session ID: edbfde28974d1086cb45c486aaf1557b).
2024-05-31 08:07:27,839 - INFO - Logged in as RMM-Helper#6590
2024-05-31 08:07:28,300 - INFO - Event https://redmountainmakers.org/event-5737248 created successfully.
2024-05-31 08:07:29,796 - INFO - Event https://redmountainmakers.org/event-5750986 created successfully.
2024-05-31 08:07:31,256 - INFO - Event https://redmountainmakers.org/event-5750987 created successfully.
2024-05-31 08:07:32,588 - INFO - Event https://redmountainmakers.org/event-5750989 created successfully.
2024-05-31 08:08:28,199 - INFO - Event https://redmountainmakers.org/event-5750897 created successfully.
2024-06-01 08:06:14,160 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-01 08:06:14,160 - INFO - logging in using static token
2024-06-01 08:06:14,651 - INFO - Shard ID None has connected to Gateway (Session ID: 52293aebb751b1fb4a283fc724f78fb2).
2024-06-01 08:06:16,664 - INFO - Logged in as RMM-Helper#6590
2024-06-01 08:06:17,026 - INFO - Event https://redmountainmakers.org/event-5751696 created successfully.
2024-06-01 08:06:18,156 - INFO - Event with URL https://redmountainmakers.org/event-5749073 removed successfully.
2024-06-02 08:06:08,224 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-02 08:06:08,225 - INFO - logging in using static token
2024-06-02 08:06:08,877 - INFO - Shard ID None has connected to Gateway (Session ID: d9111d9befb462fd28c8489b4c54e558).
2024-06-02 08:06:10,894 - INFO - Logged in as RMM-Helper#6590
2024-06-03 08:07:39,357 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-03 08:07:39,358 - INFO - logging in using static token
2024-06-03 08:07:40,009 - INFO - Shard ID None has connected to Gateway (Session ID: c6037e64e4c2868b13229ff7150415e0).
2024-06-03 08:07:42,049 - INFO - Logged in as RMM-Helper#6590
2024-06-04 08:07:13,115 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-04 08:07:13,116 - INFO - logging in using static token
2024-06-04 08:07:14,044 - INFO - Shard ID None has connected to Gateway (Session ID: dc2b521220a00644591cc1a355a449ed).
2024-06-04 08:07:16,054 - INFO - Logged in as RMM-Helper#6590
2024-06-04 08:07:16,055 - INFO - Event 'Stained Glass - Liminal Glass *New Class*', 5740166 already exists in Discord but was changed. Updating in Discord...
2024-06-05 08:06:56,411 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-05 08:06:56,411 - INFO - logging in using static token
2024-06-05 08:06:56,817 - INFO - Shard ID None has connected to Gateway (Session ID: 0e141c593cfbf2afc4906ec0efa5a1c5).
2024-06-05 08:06:58,857 - INFO - Logged in as RMM-Helper#6590
2024-06-06 08:07:28,755 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-06 08:07:28,756 - INFO - logging in using static token
2024-06-06 08:07:29,299 - INFO - Shard ID None has connected to Gateway (Session ID: f45339c91402289a16904042a977dca8).
2024-06-06 08:07:31,319 - INFO - Logged in as RMM-Helper#6590
2024-06-06 08:07:31,745 - INFO - Event https://redmountainmakers.org/event-5741676 created successfully.
2024-06-07 08:07:08,223 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-07 08:07:08,224 - INFO - logging in using static token
2024-06-07 08:07:08,621 - INFO - Shard ID None has connected to Gateway (Session ID: 15d70aeec72b2176aa36d310f9ffc396).
2024-06-07 08:07:10,644 - INFO - Logged in as RMM-Helper#6590
2024-06-08 08:06:08,409 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-08 08:06:08,409 - INFO - logging in using static token
2024-06-08 08:06:08,904 - INFO - Shard ID None has connected to Gateway (Session ID: 0fde61630e9fe27e19552881e5a105cc).
2024-06-08 08:06:10,917 - INFO - Logged in as RMM-Helper#6590
2024-06-08 08:06:11,420 - INFO - Event https://redmountainmakers.org/event-5692587 created successfully.
2024-06-08 08:06:12,734 - INFO - Event https://redmountainmakers.org/event-5692585 created successfully.
2024-06-08 08:06:14,026 - INFO - Event https://redmountainmakers.org/event-5692584 created successfully.
2024-06-08 08:06:15,388 - INFO - Event https://redmountainmakers.org/event-5691932 created successfully.
2024-06-08 08:07:11,244 - INFO - Event https://redmountainmakers.org/event-5760617 created successfully.
2024-06-08 08:07:12,536 - INFO - Event https://redmountainmakers.org/event-5760615 created successfully.
2024-06-08 08:07:13,919 - INFO - Event https://redmountainmakers.org/event-5760612 created successfully.
2024-06-08 08:07:15,218 - INFO - Event https://redmountainmakers.org/event-5760611 created successfully.
2024-06-08 08:07:16,806 - INFO - Event https://redmountainmakers.org/event-5760609 created successfully.
2024-06-08 08:07:17,808 - INFO - Event 'Cutting Boards for Beginners 101', 5737248 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:07:18,162 - INFO - Event 'Introduction to Welding', 5739435 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:12,787 - INFO - Event https://redmountainmakers.org/event-5760607 created successfully.
2024-06-08 08:08:13,788 - INFO - Event 'Introduction to Welding', 5739432 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:14,251 - INFO - Event 'Cutting Boards for Beginners 101', 5697588 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:14,635 - INFO - Event 'Learn to Make an Elegant Hand-crafted “Baron” Fountain Pen', 5741678 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:15,190 - INFO - Event 'Turn a Wooden Pen', 5697593 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:15,697 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749075 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:34,534 - INFO - Event https://redmountainmakers.org/event-5760594 created successfully.
2024-06-08 08:08:35,536 - INFO - Event 'Forging Railroad Spike Knives', 5741668 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:35,888 - INFO - Event 'Glass Fusing: Plates', 5741675 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:36,364 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749109 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:36,800 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749108 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:38,610 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749074 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:55,891 - INFO - Event 'Forging Roses', 5750986 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:56,319 - INFO - Event 'Forging a Penannular Brooch', 5750987 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:56,672 - INFO - Event 'Forging Nails - First Blacksmith Class', 5750989 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:57,063 - INFO - Event 'Learn to Make an Elegant Hand-crafted “Baron” Fountain Pen', 5697607 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:08:58,307 - INFO - Event 'Sip & Stitch', 5750897 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:16,288 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749107 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:16,727 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749106 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:17,323 - INFO - Event 'Turn a Wooden Pen', 5697592 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:18,220 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5742228 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:18,558 - INFO - Event 'Stained Glass Ornament - 3-D Moravian Star', 5741667 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:36,967 - INFO - Event 'Cutting Boards for Beginners 101', 5697587 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:37,346 - INFO - Event 'Intro To Glassblowing', 5751696 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:37,649 - INFO - Event 'Stained Glass - Mushroom Ornament', 5741666 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:37,985 - INFO - Event 'Stained Glass Jewelry -Creating a Stained Glass Pendant/Broach', 5741665 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:38,310 - INFO - Event 'Introduction to Welding', 5702397 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:57,425 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749105 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:57,815 - INFO - Event 'RMM Board Meeting', 5745693 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:58,131 - INFO - Event 'You Blew It! 1 Hour Glass Blowing Sessions', 5749104 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:58,581 - INFO - Event '*New Class* Canister Damascus', 5740167 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:09:58,898 - INFO - Event 'Glass Fusing: Plates', 5741672 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:10:18,014 - INFO - Event 'Stained Glass - Liminal Glass', 5740166 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:10:18,800 - INFO - Event 'AWA Class Series: Turn a Pen in Acrylic', 5741676 already exists in Discord but was changed. Updating in Discord...
2024-06-08 08:10:19,154 - INFO - Event 'Intro to Stained Glass - Coasters', 5740165 already exists in Discord but was changed. Updating in Discord...
2024-06-09 08:06:16,629 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-09 08:06:16,630 - INFO - logging in using static token
2024-06-09 08:06:17,117 - INFO - Shard ID None has connected to Gateway (Session ID: 37f12f7bb6335bd558aa712b980d3c2f).
2024-06-09 08:06:19,144 - INFO - Logged in as RMM-Helper#6590
2024-06-10 08:07:39,893 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-10 08:07:39,893 - INFO - logging in using static token
2024-06-10 08:07:40,442 - INFO - Shard ID None has connected to Gateway (Session ID: d0d4416461523f7f620bf8a7902073fe).
2024-06-10 08:07:42,451 - INFO - Logged in as RMM-Helper#6590
2024-06-11 08:07:31,631 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-11 08:07:31,631 - INFO - logging in using static token
2024-06-11 08:07:32,379 - INFO - Shard ID None has connected to Gateway (Session ID: 02937e03c8eba90b47b8dca28e3755bd).
2024-06-11 08:07:34,389 - INFO - Logged in as RMM-Helper#6590
2024-06-11 08:07:34,866 - INFO - Event https://redmountainmakers.org/event-5762978 created successfully.
2024-06-12 08:07:08,521 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-12 08:07:08,521 - INFO - logging in using static token
2024-06-12 08:07:09,181 - INFO - Shard ID None has connected to Gateway (Session ID: 2d5d2dc74f84509553aba485a4a8e4e9).
2024-06-12 08:07:11,192 - INFO - Logged in as RMM-Helper#6590
2024-06-12 08:07:11,627 - INFO - Event https://redmountainmakers.org/event-5764627 created successfully.
2024-06-13 08:07:07,297 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-13 08:07:07,297 - INFO - logging in using static token
2024-06-13 08:07:08,201 - INFO - Shard ID None has connected to Gateway (Session ID: 05dc7fab8eef32fff8c0b313cfa6e082).
2024-06-13 08:07:10,211 - INFO - Logged in as RMM-Helper#6590
2024-06-14 08:06:51,273 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-14 08:06:51,273 - INFO - logging in using static token
2024-06-14 08:06:52,217 - INFO - Shard ID None has connected to Gateway (Session ID: 64585953c2f210a8621e3853fd699e4c).
2024-06-14 08:06:54,230 - INFO - Logged in as RMM-Helper#6590
2024-06-15 08:06:51,281 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-15 08:06:51,282 - INFO - logging in using static token
2024-06-15 08:06:51,978 - INFO - Shard ID None has connected to Gateway (Session ID: 6c98a5709cbb3e6c9e874b27fb5e537c).
2024-06-15 08:06:53,991 - INFO - Logged in as RMM-Helper#6590
2024-06-16 08:06:20,219 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-16 08:06:20,220 - INFO - logging in using static token
2024-06-16 08:06:20,993 - INFO - Shard ID None has connected to Gateway (Session ID: 20d64d08d0780ae8a9984f5b746ff055).
2024-06-16 08:06:23,027 - INFO - Logged in as RMM-Helper#6590
2024-06-17 08:08:13,274 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-17 08:08:13,274 - INFO - logging in using static token
2024-06-17 08:08:14,107 - INFO - Shard ID None has connected to Gateway (Session ID: 4ccec77620bb286d2f607ee9370f5004).
2024-06-17 08:08:16,113 - INFO - Logged in as RMM-Helper#6590
2024-06-18 08:07:12,229 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-18 08:07:12,230 - INFO - logging in using static token
2024-06-18 08:07:12,675 - INFO - Shard ID None has connected to Gateway (Session ID: 62a6008a917f2c7cf8336ed93fa84bbf).
2024-06-18 08:07:14,685 - INFO - Logged in as RMM-Helper#6590
2024-06-19 08:06:56,020 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-19 08:06:56,021 - INFO - logging in using static token
2024-06-19 08:06:56,733 - INFO - Shard ID None has connected to Gateway (Session ID: 25cc36e0b60c99ace0089db9074d13ec).
2024-06-19 08:06:58,739 - INFO - Logged in as RMM-Helper#6590
2024-06-19 08:06:59,449 - INFO - Event https://redmountainmakers.org/event-5441555 created successfully.
2024-06-19 08:07:00,821 - INFO - Event https://redmountainmakers.org/event-5772515 created successfully.
2024-06-19 08:07:02,230 - INFO - Event https://redmountainmakers.org/event-5427337 created successfully.
2024-06-19 08:07:03,638 - INFO - Event https://redmountainmakers.org/event-5772474 created successfully.
2024-06-19 08:07:59,168 - INFO - Event https://redmountainmakers.org/event-5772448 created successfully.
2024-06-19 08:08:00,451 - INFO - Event https://redmountainmakers.org/event-5772445 created successfully.
2024-06-19 08:08:01,935 - INFO - Event https://redmountainmakers.org/event-5772437 created successfully.
2024-06-20 08:07:33,301 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-20 08:07:33,302 - INFO - logging in using static token
2024-06-20 08:07:33,964 - INFO - Shard ID None has connected to Gateway (Session ID: 9ee32339fe747694fa0d400c2ee36d6c).
2024-06-20 08:07:35,975 - INFO - Logged in as RMM-Helper#6590
2024-06-21 08:07:38,345 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-21 08:07:38,346 - INFO - logging in using static token
2024-06-21 08:07:38,985 - INFO - Shard ID None has connected to Gateway (Session ID: 1dc7b65e86a7b82d7e0ad7623e0c4a9d).
2024-06-21 08:07:40,992 - INFO - Logged in as RMM-Helper#6590
2024-06-22 08:07:26,752 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-22 08:07:26,752 - INFO - logging in using static token
2024-06-22 08:07:28,911 - INFO - Shard ID None has connected to Gateway (Session ID: 1dda0b060a6e0246b41097401019a8ad).
2024-06-22 08:07:30,924 - INFO - Logged in as RMM-Helper#6590
2024-06-23 08:06:20,158 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-23 08:06:20,159 - INFO - logging in using static token
2024-06-23 08:06:20,566 - INFO - Shard ID None has connected to Gateway (Session ID: 91711e75d5ecb4f2f76298dac8477355).
2024-06-23 08:06:22,595 - INFO - Logged in as RMM-Helper#6590
2024-06-24 08:07:31,327 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-24 08:07:31,328 - INFO - logging in using static token
2024-06-24 08:07:32,006 - INFO - Shard ID None has connected to Gateway (Session ID: 6160903448f077f0ed0f804035ca08ca).
2024-06-24 08:07:34,028 - INFO - Logged in as RMM-Helper#6590
2024-06-24 08:07:34,535 - INFO - Event https://redmountainmakers.org/event-5778190 created successfully.
2024-06-24 08:07:37,583 - INFO - Event https://redmountainmakers.org/event-5778188 created successfully.
2024-06-24 08:07:39,046 - INFO - Event https://redmountainmakers.org/event-5778186 created successfully.
2024-06-24 08:07:40,804 - INFO - Event https://redmountainmakers.org/event-5778185 created successfully.
2024-06-24 08:08:34,503 - INFO - Event https://redmountainmakers.org/event-5778184 created successfully.
2024-06-24 08:08:35,991 - INFO - Event https://redmountainmakers.org/event-5778183 created successfully.
2024-06-24 08:08:37,395 - INFO - Event https://redmountainmakers.org/event-5778181 created successfully.
2024-06-24 08:08:38,915 - INFO - Event https://redmountainmakers.org/event-5778180 created successfully.
2024-06-24 08:08:40,356 - INFO - Event https://redmountainmakers.org/event-5778179 created successfully.
2024-06-24 08:09:35,920 - INFO - Event https://redmountainmakers.org/event-5778178 created successfully.
2024-06-24 08:09:37,538 - INFO - Event https://redmountainmakers.org/event-5778177 created successfully.
2024-06-24 08:09:38,928 - INFO - Event https://redmountainmakers.org/event-5778176 created successfully.
2024-06-25 08:08:15,733 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-25 08:08:15,734 - INFO - logging in using static token
2024-06-25 08:08:16,487 - INFO - Shard ID None has connected to Gateway (Session ID: 88fc2c26fcb5724b0fe690163932b6d7).
2024-06-25 08:08:18,508 - INFO - Logged in as RMM-Helper#6590
2024-06-26 08:07:08,270 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-26 08:07:08,270 - INFO - logging in using static token
2024-06-26 08:07:08,878 - INFO - Shard ID None has connected to Gateway (Session ID: 8b95d41573d37d60f5867dbdfd4f424f).
2024-06-26 08:07:10,919 - INFO - Logged in as RMM-Helper#6590
2024-06-27 08:07:10,442 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-27 08:07:10,443 - INFO - logging in using static token
2024-06-27 08:07:11,194 - INFO - Shard ID None has connected to Gateway (Session ID: 8dd0b62e9ffb31d85aab8e0193c1c558).
2024-06-27 08:07:13,225 - INFO - Logged in as RMM-Helper#6590
2024-06-27 08:07:13,425 - INFO - Event with URL https://redmountainmakers.org/event-5741675 removed successfully.
2024-06-28 08:07:05,971 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-28 08:07:05,972 - INFO - logging in using static token
2024-06-28 08:07:06,430 - INFO - Shard ID None has connected to Gateway (Session ID: 00f9ade180c15fc0271f34028253e29c).
2024-06-28 08:07:08,448 - INFO - Logged in as RMM-Helper#6590
2024-06-29 08:07:07,267 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-29 08:07:07,267 - INFO - logging in using static token
2024-06-29 08:07:07,735 - INFO - Shard ID None has connected to Gateway (Session ID: f06dff0ba82d47252913c22860402263).
2024-06-29 08:07:09,758 - INFO - Logged in as RMM-Helper#6590
2024-06-30 08:06:33,180 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-06-30 08:06:33,180 - INFO - logging in using static token
2024-06-30 08:06:33,711 - INFO - Shard ID None has connected to Gateway (Session ID: 4abab45e4f28d214d78e46ad1bcb85a9).
2024-06-30 08:06:35,732 - INFO - Logged in as RMM-Helper#6590
2024-07-01 08:07:58,296 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-01 08:07:58,296 - INFO - logging in using static token
2024-07-01 08:07:59,163 - INFO - Shard ID None has connected to Gateway (Session ID: d07ef8ce1ba010378c4a0fecba9aac68).
2024-07-01 08:08:01,184 - INFO - Logged in as RMM-Helper#6590
2024-07-02 08:07:27,049 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-02 08:07:27,049 - INFO - logging in using static token
2024-07-02 08:07:28,160 - INFO - Shard ID None has connected to Gateway (Session ID: 844a9114510be3116a244a2a6603ba03).
2024-07-02 08:07:30,174 - INFO - Logged in as RMM-Helper#6590
2024-07-03 08:07:26,708 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-03 08:07:26,709 - INFO - logging in using static token
2024-07-03 08:07:27,276 - INFO - Shard ID None has connected to Gateway (Session ID: 105b0d3e0ebbc4f737a3127605187878).
2024-07-03 08:07:29,285 - INFO - Logged in as RMM-Helper#6590
2024-07-04 08:07:22,085 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-04 08:07:22,086 - INFO - logging in using static token
2024-07-04 08:07:22,772 - INFO - Shard ID None has connected to Gateway (Session ID: 56024961b18d855a5538fc6565179f2c).
2024-07-04 08:07:24,783 - INFO - Logged in as RMM-Helper#6590
2024-07-05 08:07:09,182 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-05 08:07:09,182 - INFO - logging in using static token
2024-07-05 08:07:10,011 - INFO - Shard ID None has connected to Gateway (Session ID: a761828c6cf3310a4c12608d3d869c03).
2024-07-05 08:07:12,026 - INFO - Logged in as RMM-Helper#6590
2024-07-06 08:07:49,975 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-06 08:07:49,976 - INFO - logging in using static token
2024-07-06 08:07:50,642 - INFO - Shard ID None has connected to Gateway (Session ID: 7cf4d43083b8787d47407b15f40f099b).
2024-07-06 08:07:52,670 - INFO - Logged in as RMM-Helper#6590
2024-07-07 08:06:31,630 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-07 08:06:31,630 - INFO - logging in using static token
2024-07-07 08:06:32,404 - INFO - Shard ID None has connected to Gateway (Session ID: a810f49c8439413ba744c800877d6f3b).
2024-07-07 08:06:34,412 - INFO - Logged in as RMM-Helper#6590
2024-07-08 08:07:41,271 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-08 08:07:41,271 - INFO - logging in using static token
2024-07-08 08:07:42,055 - INFO - Shard ID None has connected to Gateway (Session ID: 97c4b390cb3e127330129674319dac34).
2024-07-08 08:07:44,065 - INFO - Logged in as RMM-Helper#6590
2024-07-17 08:07:07,232 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-17 08:07:07,233 - INFO - logging in using static token
2024-07-17 08:07:07,663 - INFO - Shard ID None has connected to Gateway (Session ID: 4bd67a8cde684c228d550acfabdbcd5c).
2024-07-17 08:07:09,678 - INFO - Logged in as RMM-Helper#6590
2024-07-17 08:07:10,061 - INFO - Event https://redmountainmakers.org/event-5800049 created successfully.
2024-07-17 08:07:11,438 - INFO - Event https://redmountainmakers.org/event-5797322 created successfully.
2024-07-17 08:07:12,767 - INFO - Event https://redmountainmakers.org/event-5800377 created successfully.
2024-07-17 08:07:14,070 - INFO - Event https://redmountainmakers.org/event-5797283 created successfully.
2024-07-17 08:08:10,015 - INFO - Event https://redmountainmakers.org/event-5797273 created successfully.
2024-07-17 08:08:11,290 - INFO - Event https://redmountainmakers.org/event-5797262 created successfully.
2024-07-17 08:08:12,582 - INFO - Event https://redmountainmakers.org/event-5778193 created successfully.
2024-07-17 08:08:13,969 - INFO - Event https://redmountainmakers.org/event-5797257 created successfully.
2024-07-17 08:08:15,273 - INFO - Event https://redmountainmakers.org/event-5797099 created successfully.
2024-07-17 08:09:11,309 - INFO - Event https://redmountainmakers.org/event-5797229 created successfully.
2024-07-17 08:09:12,749 - INFO - Event https://redmountainmakers.org/event-5797377 created successfully.
2024-07-17 08:09:14,261 - INFO - Event https://redmountainmakers.org/event-5801575 created successfully.
2024-07-17 08:09:15,785 - INFO - Event https://redmountainmakers.org/event-5799111 created successfully.
2024-07-17 08:09:17,142 - INFO - Event https://redmountainmakers.org/event-5797204 created successfully.
2024-07-17 08:10:12,709 - INFO - Event https://redmountainmakers.org/event-5797184 created successfully.
2024-07-17 08:10:14,019 - INFO - Event https://redmountainmakers.org/event-5800052 created successfully.
2024-07-17 08:10:15,418 - INFO - Event https://redmountainmakers.org/event-5797178 created successfully.
2024-07-17 08:10:16,419 - INFO - Event 'Stained Glass Sun Catcher 1', 5772515 already exists in Discord but was changed. Updating in Discord...
2024-07-17 08:10:17,023 - INFO - Event with URL https://redmountainmakers.org/event-5692585 removed successfully.
2024-07-17 08:10:17,151 - INFO - Event with URL https://redmountainmakers.org/event-5692584 removed successfully.
2024-07-17 08:10:17,259 - INFO - Event with URL https://redmountainmakers.org/event-5692587 removed successfully.
2024-07-17 08:10:17,395 - INFO - Event with URL https://redmountainmakers.org/event-5691932 removed successfully.
2024-07-18 08:07:08,530 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-18 08:07:08,530 - INFO - logging in using static token
2024-07-18 08:07:08,954 - INFO - Shard ID None has connected to Gateway (Session ID: 376d98044b89db80b4b5d2003ca9b096).
2024-07-18 08:07:10,964 - INFO - Logged in as RMM-Helper#6590
2024-07-18 08:07:11,277 - INFO - Event https://redmountainmakers.org/event-5803616 created successfully.
2024-07-18 08:07:12,668 - INFO - Event https://redmountainmakers.org/event-5803610 created successfully.
2024-07-19 08:07:06,024 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-19 08:07:06,025 - INFO - logging in using static token
2024-07-19 08:07:06,628 - INFO - Shard ID None has connected to Gateway (Session ID: 7ba0417dcbedc9296c9ed5842f985ae1).
2024-07-19 08:07:08,650 - INFO - Logged in as RMM-Helper#6590
2024-07-20 08:06:21,219 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-20 08:06:21,219 - INFO - logging in using static token
2024-07-20 08:06:21,978 - INFO - Shard ID None has connected to Gateway (Session ID: 0ced902b7daab68a8a74bd2483700519).
2024-07-20 08:06:23,987 - INFO - Logged in as RMM-Helper#6590
2024-07-21 08:06:22,368 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-21 08:06:22,369 - INFO - logging in using static token
2024-07-21 08:06:22,921 - INFO - Shard ID None has connected to Gateway (Session ID: 12e6fde0193eaf83a4be358d8d5fdf9a).
2024-07-21 08:06:24,951 - INFO - Logged in as RMM-Helper#6590
2024-07-22 08:07:59,470 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-22 08:07:59,471 - INFO - logging in using static token
2024-07-22 08:07:59,992 - INFO - Shard ID None has connected to Gateway (Session ID: ce2310edca5025f688b6436c98b1b821).
2024-07-22 08:08:02,003 - INFO - Logged in as RMM-Helper#6590
2024-07-22 08:08:02,459 - INFO - Event https://redmountainmakers.org/event-5806929 created successfully.
2024-07-22 08:08:03,810 - INFO - Event https://redmountainmakers.org/event-5806931 created successfully.
2024-07-22 08:08:05,265 - INFO - Event https://redmountainmakers.org/event-5806923 created successfully.
2024-07-22 08:08:06,641 - INFO - Event https://redmountainmakers.org/event-5806947 created successfully.
2024-07-22 08:09:02,387 - INFO - Event https://redmountainmakers.org/event-5806916 created successfully.
2024-07-22 08:09:03,869 - INFO - Event https://redmountainmakers.org/event-5806911 created successfully.
2024-07-23 08:07:59,076 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-23 08:07:59,077 - INFO - logging in using static token
2024-07-23 08:07:59,644 - INFO - Shard ID None has connected to Gateway (Session ID: 9611fbd8ba20f2e4f181443fd741cae8).
2024-07-23 08:08:01,685 - INFO - Logged in as RMM-Helper#6590
2024-07-24 08:07:03,282 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-24 08:07:03,282 - INFO - logging in using static token
2024-07-24 08:07:03,793 - INFO - Shard ID None has connected to Gateway (Session ID: 313b79959f2730ab474cca3fa59c307b).
2024-07-24 08:07:05,806 - INFO - Logged in as RMM-Helper#6590
2024-07-25 08:07:51,436 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-25 08:07:51,436 - INFO - logging in using static token
2024-07-25 08:07:51,966 - INFO - Shard ID None has connected to Gateway (Session ID: ef5e7e7b3e1fb3a424babd3ecb89cc99).
2024-07-25 08:07:54,022 - INFO - Logged in as RMM-Helper#6590
2024-07-26 08:06:54,775 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-26 08:06:54,776 - INFO - logging in using static token
2024-07-26 08:06:55,336 - INFO - Shard ID None has connected to Gateway (Session ID: 16ff85d8810ab533d61976ab71b05cc0).
2024-07-26 08:06:57,370 - INFO - Logged in as RMM-Helper#6590
2024-07-27 08:06:22,969 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-27 08:06:22,969 - INFO - logging in using static token
2024-07-27 08:06:23,588 - INFO - Shard ID None has connected to Gateway (Session ID: 5396d12c585c8d9ca2b862c17131ec36).
2024-07-27 08:06:25,599 - INFO - Logged in as RMM-Helper#6590
2024-07-28 08:06:21,723 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-28 08:06:21,723 - INFO - logging in using static token
2024-07-28 08:06:22,552 - INFO - Shard ID None has connected to Gateway (Session ID: 0056ad146b1366824f03cca4e0d34e0b).
2024-07-28 08:06:24,565 - INFO - Logged in as RMM-Helper#6590
2024-07-29 08:07:39,138 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-29 08:07:39,139 - INFO - logging in using static token
2024-07-29 08:07:39,536 - INFO - Shard ID None has connected to Gateway (Session ID: 5d3d0bf187194023e7fd90dfee6159fa).
2024-07-29 08:07:41,549 - INFO - Logged in as RMM-Helper#6590
2024-07-29 08:07:41,722 - INFO - Event with URL https://redmountainmakers.org/event-5797204 removed successfully.
2024-07-30 08:07:32,651 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-30 08:07:32,652 - INFO - logging in using static token
2024-07-30 08:07:33,346 - INFO - Shard ID None has connected to Gateway (Session ID: 9809d7188e725105343d1f658dfe37ff).
2024-07-30 08:07:35,355 - INFO - Logged in as RMM-Helper#6590
2024-07-30 08:07:35,705 - INFO - Event https://redmountainmakers.org/event-5815945 created successfully.
2024-07-30 08:07:37,091 - INFO - Event https://redmountainmakers.org/event-5815810 created successfully.
2024-07-30 08:07:39,473 - INFO - Event https://redmountainmakers.org/event-5815961 created successfully.
2024-07-31 08:07:35,374 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-07-31 08:07:35,375 - INFO - logging in using static token
2024-07-31 08:07:35,943 - INFO - Shard ID None has connected to Gateway (Session ID: d03d7e0e328d98e2112bcbc10293a639).
2024-07-31 08:07:37,959 - INFO - Logged in as RMM-Helper#6590
2024-07-31 08:07:37,961 - INFO - Event 'Intro to Woodworking: Build a Carpenters Tool Tote', 5815961 already exists in Discord but was changed. Updating in Discord...
2024-08-01 08:07:18,941 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-01 08:07:18,942 - INFO - logging in using static token
2024-08-01 08:07:19,598 - INFO - Shard ID None has connected to Gateway (Session ID: 4fa150f99b2a937ea001ef809887f037).
2024-08-01 08:07:21,610 - INFO - Logged in as RMM-Helper#6590
2024-08-01 08:07:21,933 - INFO - Event https://redmountainmakers.org/event-5819126 created successfully.
2024-08-02 08:07:13,607 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-02 08:07:13,608 - INFO - logging in using static token
2024-08-02 08:07:14,091 - INFO - Shard ID None has connected to Gateway (Session ID: 85c6305954dd887a7dfa3143cd9960ce).
2024-08-02 08:07:16,102 - INFO - Logged in as RMM-Helper#6590
2024-08-02 08:07:16,104 - INFO - Event 'Intro to Glass Fusing: Make a Fused Plate', 5800377 already exists in Discord but was changed. Updating in Discord...
2024-08-02 08:07:16,538 - INFO - Event 'Casting metal 101: Aluminum Ingots', 5797229 already exists in Discord but was changed. Updating in Discord...
2024-08-03 08:06:27,905 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-03 08:06:27,906 - INFO - logging in using static token
2024-08-03 08:06:28,590 - INFO - Shard ID None has connected to Gateway (Session ID: f6eb84c7c340d987bee153decbefb926).
2024-08-03 08:06:30,601 - INFO - Logged in as RMM-Helper#6590
2024-08-04 08:06:20,868 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-04 08:06:20,868 - INFO - logging in using static token
2024-08-04 08:06:21,405 - INFO - Shard ID None has connected to Gateway (Session ID: 1552cfc09cfa7dff2c2dc20d55b6c581).
2024-08-04 08:06:23,416 - INFO - Logged in as RMM-Helper#6590
2024-08-05 08:08:03,164 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-05 08:08:03,164 - INFO - logging in using static token
2024-08-05 08:08:03,589 - INFO - Shard ID None has connected to Gateway (Session ID: 6e942fd7a192ea6a2d73b41a2a6abc8f).
2024-08-05 08:08:05,601 - INFO - Logged in as RMM-Helper#6590
2024-08-07 15:15:30,030 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-07 15:15:30,031 - INFO - logging in using static token
2024-08-07 15:15:30,988 - INFO - Shard ID None has connected to Gateway (Session ID: 5b38cfe4c039ae20e8f70331573199e7).
2024-08-07 15:15:33,006 - INFO - Logged in as RMM-Helper#6590
2024-08-07 15:15:33,440 - INFO - Event https://redmountainmakers.org/event-5825281 created successfully.
2024-08-07 15:15:34,986 - INFO - Event https://redmountainmakers.org/event-5741677 created successfully.
2024-08-07 15:15:36,527 - INFO - Event https://redmountainmakers.org/event-5826066 created successfully.
2024-08-07 15:15:37,528 - INFO - Event 'Stained Glass Sun Catcher II', 5797257 already exists in Discord but was changed. Updating in Discord...
2024-08-08 08:07:29,828 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-08 08:07:29,828 - INFO - logging in using static token
2024-08-08 08:07:30,585 - INFO - Shard ID None has connected to Gateway (Session ID: 2952ecd1cef7df1d9ebb3ad253914414).
2024-08-08 08:07:32,599 - INFO - Logged in as RMM-Helper#6590
2024-08-08 08:07:32,995 - INFO - Event https://redmountainmakers.org/event-5828388 created successfully.
2024-08-09 08:07:34,792 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-09 08:07:34,793 - INFO - logging in using static token
2024-08-09 08:07:35,419 - INFO - Shard ID None has connected to Gateway (Session ID: 6b17575c4dbc4fffaf18ed4693ab6730).
2024-08-09 08:07:37,429 - INFO - Logged in as RMM-Helper#6590
2024-08-09 08:07:37,945 - INFO - Event with URL https://redmountainmakers.org/event-5825281 removed successfully.
2024-08-10 08:06:45,157 - WARNING - PyNaCl is not installed, voice will NOT be supported
2024-08-10 08:06:45,157 - INFO - logging in using static token
2024-08-10 08:06:45,795 - INFO - Shard ID None has connected to Gateway (Session ID: 6ceccdf10095232b42f8d061dcfdc1f8).
2024-08-10 08:06:47,808 - INFO - Logged in as RMM-Helper#6590