-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmockup-data.sql
1411 lines (1147 loc) · 94.9 KB
/
mockup-data.sql
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 16.4 (Debian 16.4-1.pgdg120+2)
-- Dumped by pg_dump version 16.4 (Debian 16.4-1.pgdg120+2)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: badgehub; Type: SCHEMA; Schema: -; Owner: badgehub
--
CREATE SCHEMA badgehub;
ALTER SCHEMA badgehub OWNER TO badgehub;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: app_metadata_jsons; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.app_metadata_jsons (
id integer NOT NULL,
category text,
name text,
description text,
author text,
icon text,
license_file text,
is_library boolean,
is_hidden boolean,
semantic_version text,
interpreter text,
main_executable text,
main_executable_overrides jsonb,
file_mappings jsonb,
file_mappings_overrides jsonb,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.app_metadata_jsons OWNER TO badgehub;
--
-- Name: app_metadata_jsons_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.app_metadata_jsons_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.app_metadata_jsons_id_seq OWNER TO badgehub;
--
-- Name: app_metadata_jsons_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.app_metadata_jsons_id_seq OWNED BY badgehub.app_metadata_jsons.id;
--
-- Name: badges; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.badges (
slug text NOT NULL,
name text,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.badges OWNER TO badgehub;
--
-- Name: categories; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.categories (
slug text NOT NULL,
name text NOT NULL,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.categories OWNER TO badgehub;
--
-- Name: files; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.files (
id integer NOT NULL,
version_id integer NOT NULL,
dir text NOT NULL,
name text NOT NULL,
ext text NOT NULL,
confirmed_in_sync_on_disk boolean DEFAULT false,
mimetype text NOT NULL,
size_of_content bigint NOT NULL,
sha256 text NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.files OWNER TO badgehub;
--
-- Name: files_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.files_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.files_id_seq OWNER TO badgehub;
--
-- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.files_id_seq OWNED BY badgehub.files.id;
--
-- Name: migrations; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.migrations (
id integer NOT NULL,
name character varying(255) NOT NULL,
run_on timestamp without time zone NOT NULL
);
ALTER TABLE badgehub.migrations OWNER TO badgehub;
--
-- Name: migrations_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.migrations_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.migrations_id_seq OWNER TO badgehub;
--
-- Name: migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.migrations_id_seq OWNED BY badgehub.migrations.id;
--
-- Name: project_statuses_on_badges; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.project_statuses_on_badges (
id integer NOT NULL,
project_slug text NOT NULL,
badge_slug text NOT NULL,
status text,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.project_statuses_on_badges OWNER TO badgehub;
--
-- Name: project_statuses_on_badges_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.project_statuses_on_badges_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.project_statuses_on_badges_id_seq OWNER TO badgehub;
--
-- Name: project_statuses_on_badges_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.project_statuses_on_badges_id_seq OWNED BY badgehub.project_statuses_on_badges.id;
--
-- Name: projects; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.projects (
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
deleted_at timestamp with time zone,
version_id integer,
user_id integer NOT NULL,
slug text NOT NULL,
git text,
allow_team_fixes boolean
);
ALTER TABLE badgehub.projects OWNER TO badgehub;
--
-- Name: users; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.users (
id integer NOT NULL,
email text,
admin boolean,
name text NOT NULL,
password text NOT NULL,
remember_token text,
editor text,
public boolean,
show_projects boolean,
email_verified_at timestamp with time zone,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.users OWNER TO badgehub;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.users_id_seq OWNER TO badgehub;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.users_id_seq OWNED BY badgehub.users.id;
--
-- Name: versioned_dependencies; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.versioned_dependencies (
id integer NOT NULL,
project_slug text NOT NULL,
depends_on_project_slug text NOT NULL,
semantic_version_range text,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.versioned_dependencies OWNER TO badgehub;
--
-- Name: versioned_dependencies_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.versioned_dependencies_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.versioned_dependencies_id_seq OWNER TO badgehub;
--
-- Name: versioned_dependencies_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.versioned_dependencies_id_seq OWNED BY badgehub.versioned_dependencies.id;
--
-- Name: versions; Type: TABLE; Schema: badgehub; Owner: badgehub
--
CREATE TABLE badgehub.versions (
id integer NOT NULL,
project_slug text NOT NULL,
app_metadata_json_id integer NOT NULL,
revision integer DEFAULT 0 NOT NULL,
semantic_version text,
zip text,
size_of_zip bigint,
git_commit_id text,
published_at timestamp with time zone,
download_count bigint DEFAULT 0,
created_at timestamp with time zone DEFAULT now(),
updated_at timestamp with time zone DEFAULT now(),
deleted_at timestamp with time zone
);
ALTER TABLE badgehub.versions OWNER TO badgehub;
--
-- Name: versions_id_seq; Type: SEQUENCE; Schema: badgehub; Owner: badgehub
--
CREATE SEQUENCE badgehub.versions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE badgehub.versions_id_seq OWNER TO badgehub;
--
-- Name: versions_id_seq; Type: SEQUENCE OWNED BY; Schema: badgehub; Owner: badgehub
--
ALTER SEQUENCE badgehub.versions_id_seq OWNED BY badgehub.versions.id;
--
-- Name: app_metadata_jsons id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.app_metadata_jsons ALTER COLUMN id SET DEFAULT nextval('badgehub.app_metadata_jsons_id_seq'::regclass);
--
-- Name: files id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.files ALTER COLUMN id SET DEFAULT nextval('badgehub.files_id_seq'::regclass);
--
-- Name: migrations id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.migrations ALTER COLUMN id SET DEFAULT nextval('badgehub.migrations_id_seq'::regclass);
--
-- Name: project_statuses_on_badges id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.project_statuses_on_badges ALTER COLUMN id SET DEFAULT nextval('badgehub.project_statuses_on_badges_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.users ALTER COLUMN id SET DEFAULT nextval('badgehub.users_id_seq'::regclass);
--
-- Name: versioned_dependencies id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.versioned_dependencies ALTER COLUMN id SET DEFAULT nextval('badgehub.versioned_dependencies_id_seq'::regclass);
--
-- Name: versions id; Type: DEFAULT; Schema: badgehub; Owner: badgehub
--
ALTER TABLE ONLY badgehub.versions ALTER COLUMN id SET DEFAULT nextval('badgehub.versions_id_seq'::regclass);
--
-- Data for Name: app_metadata_jsons; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.app_metadata_jsons (id, category, name, description, author, icon, license_file, is_library, is_hidden, semantic_version, interpreter, main_executable, main_executable_overrides, file_mappings, file_mappings_overrides, created_at, updated_at, deleted_at) FROM stdin;
1 Uncategorised CodeCraft Use CodeCraft for some cool graphical effects. NanoNavigator \N MIT \N \N \N python \N \N \N \N 2024-11-01 13:12:19.376+00 2022-09-05 13:12:19.376+00 \N
2 Uncategorised PixelPulse Use PixelPulse for some cool graphical effects. NanoNavigator \N MIT \N \N \N python \N \N \N \N 2023-11-30 00:51:54.112+00 2022-04-21 00:51:54.112+00 \N
3 Uncategorised BitBlast Use BitBlast for some cool graphical effects. GameGuardian \N MIT \N \N \N python \N \N \N \N 2024-01-15 06:15:05.696+00 2021-10-25 06:15:05.696+00 \N
4 Uncategorised NanoGames Use NanoGames for some cool graphical effects. CircuitCaptain \N MIT \N \N \N python \N \N \N \N 2023-07-14 16:45:35.488+00 2023-07-14 16:45:35.488+00 \N
5 Uncategorised ElectraPlay Use ElectraPlay for some cool graphical effects. GameGazer \N MIT \N \N \N python \N \N \N \N 2024-03-30 14:40:52.96+00 2021-10-16 14:40:52.96+00 \N
6 Adult CircuitForge Use CircuitForge for some cool graphical effects. GameGladiator \N MIT \N \N \N python \N \N \N \N 2023-11-17 23:23:23.636+00 2023-02-26 23:23:23.636+00 \N
7 Silly ByteBash Use ByteBash for some cool graphical effects. TechTinker \N MIT \N \N \N python \N \N \N \N 2023-07-17 14:27:29.464+00 2023-07-17 14:27:29.464+00 \N
8 Uncategorised CodeCanvas Use CodeCanvas for some cool graphical effects. LogicLabyrinth \N MIT \N \N \N python \N \N \N \N 2023-12-13 15:53:56.304+00 2022-06-07 15:53:56.304+00 \N
9 Uncategorised SparkScript Use SparkScript for some cool graphical effects. GameGizmo \N MIT \N \N \N python \N \N \N \N 2024-05-18 00:02:21.456+00 2023-10-13 00:02:21.456+00 \N
10 Uncategorised LogicLand Use LogicLand for some cool graphical effects. ByteBlitz \N MIT \N \N \N python \N \N \N \N 2024-08-16 21:30:54.256+00 2022-11-23 21:30:54.256+00 \N
11 Adult MicroArcade Use MicroArcade for some cool graphical effects. PixelPaladin \N MIT \N \N \N python \N \N \N \N 2023-11-03 11:28:12.74+00 2023-11-03 11:28:12.74+00 \N
12 Uncategorised CodeCraze Use CodeCraze for some cool graphical effects. ElectronEcho \N MIT \N \N \N python \N \N \N \N 2024-10-30 02:46:51.36+00 2021-11-09 02:46:51.36+00 \N
13 Adult GameGenius Use GameGenius for some cool graphical effects. CodeCrafter \N MIT \N \N \N python \N \N \N \N 2023-06-07 06:49:56.772+00 2023-02-19 06:49:56.772+00 \N
14 Uncategorised PixelPal Use PixelPal for some cool graphical effects. LogicLuminary \N MIT \N \N \N python \N \N \N \N 2023-07-29 11:14:20.224+00 2023-07-29 11:14:20.224+00 \N
15 Adult Electronica Use Electronica for some cool graphical effects. CyberCraftsman \N MIT \N \N \N python \N \N \N \N 2023-11-24 22:55:24.164+00 2021-09-01 22:55:24.164+00 \N
16 Uncategorised CodeQuest Use CodeQuest for some cool graphical effects. TechTrailblazer \N MIT \N \N \N python \N \N \N \N 2024-02-02 22:52:43.168+00 2022-06-10 22:52:43.168+00 \N
17 Uncategorised CircuitCraft Use CircuitCraft for some cool graphical effects. PixelPulse \N MIT \N \N \N python \N \N \N \N 2023-09-29 03:29:47.696+00 2023-09-29 03:29:47.696+00 \N
18 Uncategorised ByteBeat Use ByteBeat for some cool graphical effects. ByteBlaze \N MIT \N \N \N python \N \N \N \N 2023-06-19 17:13:46.448+00 2023-06-19 17:13:46.448+00 \N
19 Uncategorised NanoNexus Use NanoNexus for some cool graphical effects. LogicLabyrinth \N MIT \N \N \N python \N \N \N \N 2024-10-21 16:26:33.936+00 2023-05-18 16:26:33.936+00 \N
20 Adult BitBox Use BitBox for some cool graphical effects. NanoNinja \N MIT \N \N \N python \N \N \N \N 2024-10-10 18:13:06.836+00 2022-04-16 18:13:06.836+00 \N
21 Hardware CircuitChaos Use CircuitChaos for some cool graphical effects. CircuitChamp \N MIT \N \N \N python \N \N \N \N 2024-08-16 03:07:57.756+00 2024-08-16 03:07:57.756+00 \N
22 Silly CodeCrafter Use CodeCrafter for some cool graphical effects. CodeCaptain \N MIT \N \N \N python \N \N \N \N 2024-11-12 18:51:09.944+00 2024-08-18 18:51:09.944+00 \N
23 SAO PixelPioneer Make some magic happen with PixelPioneer. DigitalDreamer \N MIT \N \N \N python \N \N \N \N 2024-11-07 01:09:31.666+00 2024-04-27 01:09:31.666+00 \N
24 Uncategorised LogicLab Use LogicLab for some cool graphical effects. PixelPilot \N MIT \N \N \N python \N \N \N \N 2024-10-22 09:43:30.528+00 2023-11-19 09:43:30.528+00 \N
25 Uncategorised ByteBlitz Use ByteBlitz for some cool graphical effects. GameGizmo \N MIT \N \N \N python \N \N \N \N 2024-05-07 06:19:17.712+00 2023-04-19 06:19:17.712+00 \N
26 Silly CodeWave Use CodeWave for some cool graphical effects. ByteBandit \N MIT \N \N \N python \N \N \N \N 2023-12-21 17:42:11.64+00 2022-09-21 17:42:11.64+00 \N
27 Adult NanoNet Use NanoNet for some cool graphical effects. PixelPro \N MIT \N \N \N python \N \N \N \N 2023-12-01 19:06:24.404+00 2021-11-19 19:06:24.404+00 \N
28 Uncategorised ElectraForge Use ElectraForge for some cool graphical effects. ElectronEmperor \N MIT \N \N \N python \N \N \N \N 2024-09-17 05:22:36.352+00 2023-05-18 05:22:36.352+00 \N
29 Uncategorised GameGrid Use GameGrid for some cool graphical effects. GameGlider \N MIT \N \N \N python \N \N \N \N 2023-06-14 14:37:26.096+00 2022-08-14 14:37:26.096+00 \N
30 Adult LogicLoom Use LogicLoom for some cool graphical effects. NanoNomad \N MIT \N \N \N python \N \N \N \N 2024-08-22 14:13:04.708+00 2023-10-15 14:13:04.708+00 \N
31 Hardware PixelPlaza Use PixelPlaza for some cool graphical effects. ElectronExpedition \N MIT \N \N \N python \N \N \N \N 2024-11-03 20:03:16.06+00 2023-01-31 20:03:16.06+00 \N
32 Silly CodeCity Use CodeCity for some cool graphical effects. PixelPulse \N MIT \N \N \N python \N \N \N \N 2024-01-25 11:02:05.24+00 2021-09-11 11:02:05.24+00 \N
33 Uncategorised NanoArcade Use NanoArcade for some cool graphical effects. TechTornado \N MIT \N \N \N python \N \N \N \N 2024-03-03 03:17:23.68+00 2024-03-03 03:17:23.68+00 \N
34 Silly ElectronEra Use ElectronEra for some cool graphical effects. GameGlobetrotter \N MIT \N \N \N python \N \N \N \N 2024-10-14 10:09:17.8+00 2024-10-14 10:09:17.8+00 \N
35 Uncategorised BitBazaar Use BitBazaar for some cool graphical effects. LogicLore \N MIT \N \N \N python \N \N \N \N 2023-11-03 05:05:47.504+00 2023-09-22 05:05:47.504+00 \N
36 Adult LogicLegends Use LogicLegends for some cool graphical effects. CircuitCommander \N MIT \N \N \N python \N \N \N \N 2023-10-19 20:19:20.66+00 2022-11-19 20:19:20.66+00 \N
37 Silly CodeClan Use CodeClan for some cool graphical effects. PixelPaladin \N MIT \N \N \N python \N \N \N \N 2024-09-21 04:03:11.048+00 2023-12-28 04:03:11.048+00 \N
38 Hardware PixelPortal Use PixelPortal for some cool graphical effects. CyberCraft \N MIT \N \N \N python \N \N \N \N 2024-05-23 17:26:04.668+00 2024-02-13 17:26:04.668+00 \N
39 Uncategorised CircuitCraze Use CircuitCraze for some cool graphical effects. PixelPulse \N MIT \N \N \N python \N \N \N \N 2023-07-04 20:36:02.72+00 2023-07-04 20:36:02.72+00 \N
40 Uncategorised ByteBuster Use ByteBuster for some cool graphical effects. LogicLionheart \N MIT \N \N \N python \N \N \N \N 2024-08-30 08:26:56.096+00 2021-09-05 08:26:56.096+00 \N
41 Silly NanoNovel Use NanoNovel for some cool graphical effects. PixelProdigy \N MIT \N \N \N python \N \N \N \N 2024-01-25 00:59:51.064+00 2022-06-04 00:59:51.064+00 \N
42 Silly ElectraEden Use ElectraEden for some cool graphical effects. ByteBlaze \N MIT \N \N \N python \N \N \N \N 2024-07-01 10:51:30.84+00 2022-05-21 10:51:30.84+00 \N
43 Uncategorised CodeComet Use CodeComet for some cool graphical effects. CircuitConnoisseur \N MIT \N \N \N python \N \N \N \N 2023-11-23 09:45:55.072+00 2023-11-23 09:45:55.072+00 \N
44 Uncategorised PixelPlayground Use PixelPlayground for some cool graphical effects. LogicLionheart \N MIT \N \N \N python \N \N \N \N 2024-12-31 18:26:24.784+00 2024-07-24 18:26:24.784+00 \N
45 Uncategorised LogicLandia Use LogicLandia for some cool graphical effects. GameGlobetrotter \N MIT \N \N \N python \N \N \N \N 2024-04-14 08:17:02.24+00 2022-10-10 08:17:02.24+00 \N
46 Silly ByteBounce Use ByteBounce for some cool graphical effects. CircuitConnoisseur \N MIT \N \N \N python \N \N \N \N 2024-05-21 07:52:12.792+00 2023-05-19 07:52:12.792+00 \N
47 Silly CircuitCarnival Use CircuitCarnival for some cool graphical effects. CircuitCraze \N MIT \N \N \N python \N \N \N \N 2024-02-05 07:45:38.824+00 2024-02-05 07:45:38.824+00 \N
48 Uncategorised CodeCove Use CodeCove for some cool graphical effects. ElectronEager \N MIT \N \N \N python \N \N \N \N 2024-03-12 09:05:08.976+00 2024-03-12 09:05:08.976+00 \N
49 Uncategorised NanoNest Use NanoNest for some cool graphical effects. CodeChampion \N MIT \N \N \N python \N \N \N \N 2023-11-13 08:24:15.072+00 2023-10-20 08:24:15.072+00 \N
50 Uncategorised ElectraEntertain Use ElectraEntertain for some cool graphical effects. DigitalDynamo \N MIT \N \N \N python \N \N \N \N 2023-12-22 05:37:15.504+00 2022-01-29 05:37:15.504+00 \N
51 Uncategorised GameGalaxy Use GameGalaxy for some cool graphical effects. DigitalDynamo \N MIT \N \N \N python \N \N \N \N 2024-10-28 19:46:23.904+00 2022-10-17 19:46:23.904+00 \N
52 Silly LogicLabyrinth Use LogicLabyrinth for some cool graphical effects. CodeChampion \N MIT \N \N \N python \N \N \N \N 2024-10-25 17:33:41.688+00 2021-12-14 17:33:41.688+00 \N
53 Silly ByteBlaster Use ByteBlaster for some cool graphical effects. CyberCraftsman \N MIT \N \N \N python \N \N \N \N 2024-05-30 11:28:58.68+00 2022-05-01 11:28:58.68+00 \N
54 Silly CodeCompass Use CodeCompass for some cool graphical effects. ElectronExplorer \N MIT \N \N \N python \N \N \N \N 2024-08-04 15:22:58.712+00 2023-01-26 15:22:58.712+00 \N
55 Uncategorised NanoNation Use NanoNation for some cool graphical effects. ElectronEmperor \N MIT \N \N \N python \N \N \N \N 2024-05-20 22:09:19.664+00 2022-02-22 22:09:19.664+00 \N
56 Silly ElectraEmpire Use ElectraEmpire for some cool graphical effects. LogicLion \N MIT \N \N \N python \N \N \N \N 2023-07-09 21:46:04.968+00 2023-07-09 21:46:04.968+00 \N
57 Uncategorised GameGarden Use GameGarden for some cool graphical effects. PixelPathfinder \N MIT \N \N \N python \N \N \N \N 2024-11-05 09:02:28.784+00 2024-07-04 09:02:28.784+00 \N
58 Hardware PixelPeak Use PixelPeak for some cool graphical effects. CircuitChampion \N MIT \N \N \N python \N \N \N \N 2024-02-09 16:13:44.876+00 2022-05-14 16:13:44.876+00 \N
59 Silly CircuitCelestial Use CircuitCelestial for some cool graphical effects. CodeCaptain \N MIT \N \N \N python \N \N \N \N 2023-09-02 22:18:08.44+00 2023-09-02 22:18:08.44+00 \N
60 Uncategorised CodeCrusade Use CodeCrusade for some cool graphical effects. LogicLion \N MIT \N \N \N python \N \N \N \N 2023-12-05 03:41:56.192+00 2022-04-28 03:41:56.192+00 \N
61 SAO NanoNebula Make some magic happen with NanoNebula. ElectronEnigma \N MIT \N \N \N python \N \N \N \N 2024-05-21 09:16:51.554+00 2022-10-07 09:16:51.554+00 \N
62 Silly ElectraEnclave Use ElectraEnclave for some cool graphical effects. TechTornado \N MIT \N \N \N python \N \N \N \N 2023-07-21 02:31:48.184+00 2023-07-21 02:31:48.184+00 \N
63 Uncategorised GameGizmo Use GameGizmo for some cool graphical effects. CodeCraftsman \N MIT \N \N \N python \N \N \N \N 2024-03-19 02:18:38.096+00 2021-08-18 02:18:38.096+00 \N
64 Games PixelPlanet Make some magic happen with PixelPlanet. CodeConqueror \N MIT \N \N \N python \N \N \N \N 2024-06-24 21:57:36.494+00 2022-05-14 21:57:36.494+00 \N
65 Silly LogicLounge Use LogicLounge for some cool graphical effects. CodeCaptain \N MIT \N \N \N python \N \N \N \N 2024-08-09 14:23:25.752+00 2021-12-03 14:23:25.752+00 \N
66 Uncategorised ByteBeacon Use ByteBeacon for some cool graphical effects. PixelPathfinder \N MIT \N \N \N python \N \N \N \N 2024-12-19 20:19:10.896+00 2023-01-01 20:19:10.896+00 \N
67 Adult CodeCircus Use CodeCircus for some cool graphical effects. DigitalDreamer \N MIT \N \N \N python \N \N \N \N 2024-09-11 19:49:28.324+00 2023-07-27 19:49:28.324+00 \N
68 Uncategorised NanoNook Use NanoNook for some cool graphical effects. NanoNinja \N MIT \N \N \N python \N \N \N \N 2024-02-12 20:46:28.112+00 2023-11-14 20:46:28.112+00 \N
69 Silly ElectraElysium Use ElectraElysium for some cool graphical effects. LogicLore \N MIT \N \N \N python \N \N \N \N 2023-12-03 07:30:33.208+00 2023-08-17 07:30:33.208+00 \N
70 Silly GameGlimpse Use GameGlimpse for some cool graphical effects. PixelPilot \N MIT \N \N \N python \N \N \N \N 2024-12-10 03:47:30.504+00 2022-10-02 03:47:30.504+00 \N
71 Silly PixelParadise Use PixelParadise for some cool graphical effects. CircuitCaptain \N MIT \N \N \N python \N \N \N \N 2023-10-30 00:09:40.376+00 2022-01-06 00:09:40.376+00 \N
72 Silly CodeCoast Use CodeCoast for some cool graphical effects. CircuitCommander \N MIT \N \N \N python \N \N \N \N 2024-03-21 13:24:49.528+00 2023-05-02 13:24:49.528+00 \N
73 Uncategorised NanoNirvana Use NanoNirvana for some cool graphical effects. ElectronExpedition \N MIT \N \N \N python \N \N \N \N 2024-09-17 15:44:08.672+00 2022-09-22 15:44:08.672+00 \N
74 Silly ElectraEdifice Use ElectraEdifice for some cool graphical effects. ElectronEagle \N MIT \N \N \N python \N \N \N \N 2024-02-06 15:06:27.832+00 2024-02-06 15:06:27.832+00 \N
75 Uncategorised GameGen Use GameGen for some cool graphical effects. GameGuru \N MIT \N \N \N python \N \N \N \N 2024-11-04 09:30:30.72+00 2021-11-16 09:30:30.72+00 \N
76 Uncategorised PixelPandemonium Use PixelPandemonium for some cool graphical effects. PixelPilot \N MIT \N \N \N python \N \N \N \N 2023-10-26 10:11:48.928+00 2023-07-22 10:11:48.928+00 \N
77 Wearable LogicLagoon Make some magic happen with LogicLagoon. GameGuru \N MIT \N \N \N python \N \N \N \N 2024-06-13 23:31:30.01+00 2022-01-23 23:31:30.01+00 \N
78 Hardware ByteBlaze Use ByteBlaze for some cool graphical effects. CircuitChamp \N MIT \N \N \N python \N \N \N \N 2024-08-21 00:04:19.212+00 2023-11-19 00:04:19.212+00 \N
79 Uncategorised CodeCorridor Use CodeCorridor for some cool graphical effects. TechTrailblazer \N MIT \N \N \N python \N \N \N \N 2024-11-08 06:16:09.328+00 2024-04-30 06:16:09.328+00 \N
80 Adult HackSimulator Use HackSimulator for some cool graphical effects. CodeCraftsman \N MIT \N \N \N python \N \N \N \N 2023-07-25 16:37:02.9+00 2022-12-09 16:37:02.9+00 \N
81 Uncategorised CodeCrunch Use CodeCrunch for some cool graphical effects. CyberSavvy \N MIT \N \N \N python \N \N \N \N 2024-02-08 21:20:39.392+00 2021-12-30 21:20:39.392+00 \N
82 Uncategorised SecureCraft Use SecureCraft for some cool graphical effects. ElectronEcho \N MIT \N \N \N python \N \N \N \N 2024-07-03 00:30:41.76+00 2022-11-17 00:30:41.76+00 \N
83 Uncategorised CryptoPulse Use CryptoPulse for some cool graphical effects. ByteBuddy \N MIT \N \N \N python \N \N \N \N 2024-08-28 13:28:10.656+00 2024-08-02 13:28:10.656+00 \N
84 Silly DataForge Use DataForge for some cool graphical effects. ByteBuddy \N MIT \N \N \N python \N \N \N \N 2023-05-19 23:17:49.24+00 2023-05-19 23:17:49.24+00 \N
85 Uncategorised CipherQuest Use CipherQuest for some cool graphical effects. CodeCrafter \N MIT \N \N \N python \N \N \N \N 2023-11-14 01:27:48.624+00 2022-11-11 01:27:48.624+00 \N
86 Uncategorised HackQuest Use HackQuest for some cool graphical effects. CodeCrusader \N MIT \N \N \N python \N \N \N \N 2023-05-28 22:05:38.88+00 2022-11-09 22:05:38.88+00 \N
87 Uncategorised SecureSphere Use SecureSphere for some cool graphical effects. CodeCrusader \N MIT \N \N \N python \N \N \N \N 2024-12-02 15:18:25.584+00 2023-09-13 15:18:25.584+00 \N
\.
--
-- Data for Name: badges; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.badges (slug, name, created_at, updated_at, deleted_at) FROM stdin;
mch2022 mch2022 2024-01-08 21:34:59.412+00 2023-10-30 21:34:59.412+00 \N
troopers23 troopers23 2024-11-08 09:48:56.8+00 2022-05-23 09:48:56.8+00 \N
why2025 WHY2025 2023-11-16 14:41:01.2+00 2023-11-16 14:41:01.2+00 \N
\.
--
-- Data for Name: categories; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.categories (slug, name, created_at, updated_at, deleted_at) FROM stdin;
uncategorised Uncategorised 2024-11-01 05:42:38.072+00 2023-05-01 05:42:38.072+00 \N
event_related Event related 2024-11-26 04:55:01.576+00 2024-04-04 04:55:01.576+00 \N
games Games 2024-05-27 08:37:07.472+00 2022-07-21 08:37:07.472+00 \N
graphics Graphics 2023-07-31 06:47:44.36+00 2023-07-31 06:47:44.36+00 \N
hardware Hardware 2023-09-20 23:25:53.776+00 2023-05-23 23:25:53.776+00 \N
utility Utility 2023-08-11 07:35:42.824+00 2021-09-18 07:35:42.824+00 \N
wearable Wearable 2024-07-30 08:37:30.432+00 2024-07-30 08:37:30.432+00 \N
data Data 2023-07-28 10:47:36.188+00 2023-07-28 10:47:36.188+00 \N
silly Silly 2023-11-14 13:15:52.592+00 2023-09-03 13:15:52.592+00 \N
hacking Hacking 2024-05-07 14:50:32.64+00 2023-11-19 14:50:32.64+00 \N
troll Troll 2024-01-19 15:37:58.72+00 2022-01-15 15:37:58.72+00 \N
unusable Unusable 2024-02-19 17:48:24.864+00 2023-10-24 17:48:24.864+00 \N
adult Adult 2023-07-05 00:41:46.808+00 2022-04-07 00:41:46.808+00 \N
virus Virus 2023-12-10 06:21:53.488+00 2023-02-27 06:21:53.488+00 \N
sao SAO 2023-05-26 00:13:02.68+00 2021-11-18 00:13:02.68+00 \N
interpreter Interpreter 2024-07-19 22:23:49.568+00 2024-07-19 22:23:49.568+00 \N
\.
--
-- Data for Name: files; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.files (id, version_id, dir, name, ext, confirmed_in_sync_on_disk, mimetype, size_of_content, sha256, created_at, updated_at, deleted_at) FROM stdin;
14 7 __init__ .py t text/x-python-script 42 c4b9c74fa92f14325701797e6a063ee0658a942a48b5130aedb64bb2b910b132 2023-07-17 14:27:29.464+00 2023-07-17 14:27:29.464+00 \N
1 1 metadata .json t application/json 259 d1010a609b51931a168bd38aedbdb952ca51b3f05505f3a4f5fd2ad604f66a23 2024-11-01 13:12:19.376+00 2022-09-05 13:12:19.376+00 \N
2 1 __init__ .py t text/x-python-script 43 4028201b6ebf876b3ee30462c4d170146a2d3d92c5aca9fefc5e3d1a0508f5df 2024-11-01 13:12:19.376+00 2022-09-05 13:12:19.376+00 \N
23 12 metadata .json t application/json 258 504aa1fda79f122cde8702e8b303e70f9ad1f322c6e1be768f3c36b7bf1c4a0c 2024-10-30 02:46:51.36+00 2021-11-09 02:46:51.36+00 \N
3 2 metadata .json t application/json 261 7e05683fdade2a6d33d4bebaabb8ccea1215dce6c6b9c9da89ffd2514a799384 2023-11-30 00:51:54.112+00 2022-04-21 00:51:54.112+00 \N
15 8 metadata .json t application/json 262 2de9fec337ea8de11e7b341bc87d6b087117f82260d0aa4d2d3d66680844d59b 2023-12-13 15:53:56.304+00 2022-06-07 15:53:56.304+00 \N
4 2 __init__ .py t text/x-python-script 44 9aa3814437e99d152b55e8d30785ae282f4ace6d5b47371690f27571174641ba 2023-11-30 00:51:54.112+00 2022-04-21 00:51:54.112+00 \N
5 3 metadata .json t application/json 256 28fe8a2b3715b7149ea57fea66cdb5a7afa902267a251e3a757427bd4d7ec1e8 2024-01-15 06:15:05.696+00 2021-10-25 06:15:05.696+00 \N
6 3 __init__ .py t text/x-python-script 42 49b72397cd8e216aaf79fe5588c549c3d0345a9a4a557116de55e25ff02261b7 2024-01-15 06:15:05.696+00 2021-10-25 06:15:05.696+00 \N
16 8 __init__ .py t text/x-python-script 44 96308cdc9e544da17073506cec8066e7dd19634f8544c38cae0b35b7f8071a01 2023-12-13 15:53:56.304+00 2022-06-07 15:53:56.304+00 \N
7 4 metadata .json t application/json 260 15b9100b8e870a99ae40cd64bd477d7786fa0304b1ae4cacfe169cee792dd047 2023-07-14 16:45:35.488+00 2023-07-14 16:45:35.488+00 \N
8 4 __init__ .py t text/x-python-script 43 5e785c38408783e0c19e21d247aed30e7756e473a8b717c8ed76987134781f9e 2023-07-14 16:45:35.488+00 2023-07-14 16:45:35.488+00 \N
29 15 metadata .json t application/json 256 08fed01b0a9713a266865ae255e2018dc972d14f133ceafb02f092bb1aed6215 2023-11-24 22:55:24.164+00 2021-09-01 22:55:24.164+00 \N
9 5 metadata .json t application/json 259 b898b75196f09feb0a92ea6eb1ef38647d8e86241c58125c10ca245ac2fcdcaa 2024-03-30 14:40:52.96+00 2021-10-16 14:40:52.96+00 \N
17 9 metadata .json t application/json 259 40632e6eabab00764f21b56c2b20fd3426f63eb2055819b98228d963f9c39cb8 2024-05-18 00:02:21.456+00 2023-10-13 00:02:21.456+00 \N
10 5 __init__ .py t text/x-python-script 45 a0cf3ab0dde63421421a47268941bf6dcbd2d5046a82edf532951b8619e04168 2024-03-30 14:40:52.96+00 2021-10-16 14:40:52.96+00 \N
11 6 metadata .json t application/json 257 5bee104781bcf61f6d196a3ab4d482c2810a6f11500dec7dee3855288b3022df 2023-11-17 23:23:23.636+00 2023-02-26 23:23:23.636+00 \N
24 12 __init__ .py t text/x-python-script 43 b82df97bdcc0b1cef23111b62764dc082145dbec8e6334a593c0170f6ef61857 2024-10-30 02:46:51.36+00 2021-11-09 02:46:51.36+00 \N
12 6 __init__ .py t text/x-python-script 46 3c374193e3ec95322be1d5e5c569c3a7514a4dbf169d9ae7d494bb6911dc2bf6 2023-11-17 23:23:23.636+00 2023-02-26 23:23:23.636+00 \N
18 9 __init__ .py t text/x-python-script 45 d9978aacdb1ac896d1842a76af206475750d37832758cbd4fb6d1f4a2a6ee2c7 2024-05-18 00:02:21.456+00 2023-10-13 00:02:21.456+00 \N
13 7 metadata .json t application/json 246 bf972080fed2dd169323b6f9919d7074c05d70be082da5865ff9ff92e762499a 2023-07-17 14:27:29.464+00 2023-07-17 14:27:29.464+00 \N
19 10 metadata .json t application/json 255 a0372510e24a324c461f8c23535877c350b7bd3bfe9a3d839ddccfe28b489b8c 2024-08-16 21:30:54.256+00 2022-11-23 21:30:54.256+00 \N
25 13 metadata .json t application/json 251 4c6afc488fcea9f59f151689d6e729c534f380298873518c4b347f6f06120d27 2023-06-07 06:49:56.772+00 2023-02-19 06:49:56.772+00 \N
20 10 __init__ .py t text/x-python-script 43 11e20b405e3d7a1ced041746672eb8b7a51dfe1f79f3403ab31e08c57c3311fa 2024-08-16 21:30:54.256+00 2022-11-23 21:30:54.256+00 \N
21 11 metadata .json t application/json 254 93d9864ef5b92c13da634f3437247a3e9e6ff0e97fb07ccc8f766a8c721dcbaa 2023-11-03 11:28:12.74+00 2023-11-03 11:28:12.74+00 \N
33 17 metadata .json t application/json 262 8b8d9d2d21930e1e9ea59937c199561489f91b2ee62e4823c183fbe51e5c5a4a 2023-09-29 03:29:47.696+00 2023-09-29 03:29:47.696+00 \N
22 11 __init__ .py t text/x-python-script 45 12b73cdd685d319fd31d2f22a2219cda722f172c53aa0a68933b57e4ffe55183 2023-11-03 11:28:12.74+00 2023-11-03 11:28:12.74+00 \N
30 15 __init__ .py t text/x-python-script 45 656e3f5da029c38e116fdb96451ee053f78bf8673dbf86d7ccfc87df62dfce64 2023-11-24 22:55:24.164+00 2021-09-01 22:55:24.164+00 \N
26 13 __init__ .py t text/x-python-script 44 89f2eab3a286770d3329b931085227c17964449ab1aed5a7d36ad6dcd5895d60 2023-06-07 06:49:56.772+00 2023-02-19 06:49:56.772+00 \N
27 14 metadata .json t application/json 257 a7bccba18283b69f823ec3362a484409aba960cbf121b8e78d06b86863b162c9 2023-07-29 11:14:20.224+00 2023-07-29 11:14:20.224+00 \N
28 14 __init__ .py t text/x-python-script 42 3c2a3ed74b13094a58bc12b16f806ccb4ad4d65f29d2c7cc9f988fb6d73e2118 2023-07-29 11:14:20.224+00 2023-07-29 11:14:20.224+00 \N
31 16 metadata .json t application/json 261 954ad6cbe60cce8b1f47027f49a540c0d2274584eef7873f171be5d20d49091e 2024-02-02 22:52:43.168+00 2022-06-10 22:52:43.168+00 \N
34 17 __init__ .py t text/x-python-script 46 9c5ad176a1421fb4518bda694005ffa8e8450eae6d497eeb30dfeb880a60f9e5 2023-09-29 03:29:47.696+00 2023-09-29 03:29:47.696+00 \N
32 16 __init__ .py t text/x-python-script 43 ea8e580ec6d0a25e8a646fdc234570c7f178eb783808766e6467a75b5666b72e 2024-02-02 22:52:43.168+00 2022-06-10 22:52:43.168+00 \N
36 18 __init__ .py t text/x-python-script 42 311fe9d1fa6e3b32dcbb1c00bf06cebd2c34e9a448dc1d0170f427ec7d9f14ba 2023-06-19 17:13:46.448+00 2023-06-19 17:13:46.448+00 \N
35 18 metadata .json t application/json 253 61fa2e9b4ba0ea304163f8fc84fbe6a5f6fd9cc85c3ac76524ed40f61ce0f62e 2023-06-19 17:13:46.448+00 2023-06-19 17:13:46.448+00 \N
38 19 __init__ .py t text/x-python-script 43 db0635cc4c7bc58a20f8112a63b3e0e4f8ade8c29b33a320a90e11a725240ed4 2024-10-21 16:26:33.936+00 2023-05-18 16:26:33.936+00 \N
37 19 metadata .json t application/json 260 3062c3944beb106bd36d8a5cafa587437f5b71bee3ae6d243bc94656c93e1677 2024-10-21 16:26:33.936+00 2023-05-18 16:26:33.936+00 \N
39 20 metadata .json t application/json 241 9ffcab2222e8e4a3cfca098a72160259fde76718fa154c9986f8621f051689e8 2024-10-10 18:13:06.836+00 2022-04-16 18:13:06.836+00 \N
40 20 __init__ .py t text/x-python-script 40 0be82bd8ab1b6926799dbb3ffbaa889c01f12c8be5e5cc06ec53b453399f4f6f 2024-10-10 18:13:06.836+00 2022-04-16 18:13:06.836+00 \N
41 21 metadata .json t application/json 259 6dc277a961260ccfe58d797da99ee9bce3063ec48a19ccd101c3afe80996926a 2024-08-16 03:07:57.756+00 2024-08-16 03:07:57.756+00 \N
42 21 __init__ .py t text/x-python-script 46 6f92441881943cf29cd88682b7bcfd77160a54086d26cc21e9bb8363b5f20f06 2024-08-16 03:07:57.756+00 2024-08-16 03:07:57.756+00 \N
43 22 metadata .json t application/json 253 0ffa6ab90673477becb1ba6ce41e32c60e91d52e5adc2e47df8d89c685521522 2024-11-12 18:51:09.944+00 2024-08-18 18:51:09.944+00 \N
57 29 metadata .json t application/json 254 70594d4ea26eb4b286c34c56d44f9874f025a32916478fd11e5708d110f0d013 2023-06-14 14:37:26.096+00 2022-08-14 14:37:26.096+00 \N
44 22 __init__ .py t text/x-python-script 45 3d1851a1085a775b2fac2ec8bf7d438c52c28afd1d7ede65b7156eb9097d26bb 2024-11-12 18:51:09.944+00 2024-08-18 18:51:09.944+00 \N
45 23 metadata .json t application/json 248 1cdecf846dc91ba93606b438f3e44d17d2e3c88483a893774ff040d24a37d5f2 2024-11-07 01:09:31.666+00 2024-04-27 01:09:31.666+00 \N
66 33 __init__ .py t text/x-python-script 44 f7bc3ef2e7f414f4f17b2cf67bd2610ea80ba047789243547e4e051cadac5b6a 2024-03-03 03:17:23.68+00 2024-03-03 03:17:23.68+00 \N
46 23 __init__ .py t text/x-python-script 46 8788d5a25c4df605562437cd2f4a345b5c9f5ef0624fc9dfc5f74f96d9a01565 2024-11-07 01:09:31.666+00 2024-04-27 01:09:31.666+00 \N
58 29 __init__ .py t text/x-python-script 42 918aae5ccf3988bcff6383167b4977c3038cea3a60da35c663c7f97333d53aaa 2023-06-14 14:37:26.096+00 2022-08-14 14:37:26.096+00 \N
47 24 metadata .json t application/json 254 4a7069707c46debeaa59d9a7fc87961af41027b334678fc5efef09f3db39d089 2024-10-22 09:43:30.528+00 2023-11-19 09:43:30.528+00 \N
48 24 __init__ .py t text/x-python-script 42 aa89bad5fd2e9a5a426f2f219e254b29f2f88373be02f46ca35036699300fb16 2024-10-22 09:43:30.528+00 2023-11-19 09:43:30.528+00 \N
49 25 metadata .json t application/json 255 0de3957fe34179f45dbede36d041758d89be2ac3e79cf969c13418a0dab8f62a 2024-05-07 06:19:17.712+00 2023-04-19 06:19:17.712+00 \N
59 30 metadata .json t application/json 247 712c3725923a54ccf312a9ed4b8d3195a3d066c2d4a8c97969a090a4ff6e4634 2024-08-22 14:13:04.708+00 2023-10-15 14:13:04.708+00 \N
50 25 __init__ .py t text/x-python-script 43 80adf6f9ad455acb1259c72fbc7732d11b8a303bf32a47baebad59a9862c8c5a 2024-05-07 06:19:17.712+00 2023-04-19 06:19:17.712+00 \N
51 26 metadata .json t application/json 246 94a9a2693feca91fb1b104f7162bc6774cc2cd3cdd6e8e4dd2dd9058a96152d1 2023-12-21 17:42:11.64+00 2022-09-21 17:42:11.64+00 \N
72 36 __init__ .py t text/x-python-script 46 ff81bb8a38d778b22ac126fb629a90090e89680f341d3ed2627ccbf18f2d1ac1 2023-10-19 20:19:20.66+00 2022-11-19 20:19:20.66+00 \N
52 26 __init__ .py t text/x-python-script 42 5d7aae0024b1997bb653822f25e8972ca2cde4a98621feaf5fcfac591c20dde9 2023-12-21 17:42:11.64+00 2022-09-21 17:42:11.64+00 \N
60 30 __init__ .py t text/x-python-script 43 7df619c50ac341c729bb865c642c15940de0ad496122d14f1051caefee8c4233 2024-08-22 14:13:04.708+00 2023-10-15 14:13:04.708+00 \N
53 27 metadata .json t application/json 242 f34cdee96c2e8ded06cf6bf0ca49dd2601aae7cbf6e68c78a2c3caa997879123 2023-12-01 19:06:24.404+00 2021-11-19 19:06:24.404+00 \N
54 27 __init__ .py t text/x-python-script 41 3071bf13cbdf540815345b2a9ef3d59d4439b0bb0456729b3df8af45c2c3802c 2023-12-01 19:06:24.404+00 2021-11-19 19:06:24.404+00 \N
67 34 metadata .json t application/json 258 b4f95d665780c254dab0be9185bb31ad5d6f47ed65172b97f2421713ba3973da 2024-10-14 10:09:17.8+00 2024-10-14 10:09:17.8+00 \N
55 28 metadata .json t application/json 267 e8724bc2bd817154f3fd8a5908c651cf9d48599c6c0c8f319e36d8238ac13ee4 2024-09-17 05:22:36.352+00 2023-05-18 05:22:36.352+00 \N
61 31 metadata .json t application/json 261 243a4a3e4adbcec8303d5b6b3b3425bc25979906696b7a05dead5d3b65366cd2 2024-11-03 20:03:16.06+00 2023-01-31 20:03:16.06+00 \N
56 28 __init__ .py t text/x-python-script 46 398b24b1f29327b0ec9dbf63c5d2673a02cc06dd741a3571d1ea72e43b6e3db8 2024-09-17 05:22:36.352+00 2023-05-18 05:22:36.352+00 \N
62 31 __init__ .py t text/x-python-script 44 b537c8a50136df4284723697305ba0f00e52f2541a9c8690abaaa0db98001d18 2024-11-03 20:03:16.06+00 2023-01-31 20:03:16.06+00 \N
68 34 __init__ .py t text/x-python-script 45 cb39a9e8828263ae885799354626520f13834032bc558ef163c91952192b3b3c 2024-10-14 10:09:17.8+00 2024-10-14 10:09:17.8+00 \N
63 32 metadata .json t application/json 246 ea43508b9af13edff59cebb86f0faf1837c742ad0307387e782f521dfa71dd95 2024-01-25 11:02:05.24+00 2021-09-11 11:02:05.24+00 \N
64 32 __init__ .py t text/x-python-script 42 760ea0d98cd8e3757c11d4ac73462be5064f4485119e916e4fbc005aa9326dad 2024-01-25 11:02:05.24+00 2021-09-11 11:02:05.24+00 \N
76 38 __init__ .py t text/x-python-script 45 11eceeb4781496e9741c97e6745a7c4eee1ff0135588902cbf3ecb1cf50385ef 2024-05-23 17:26:04.668+00 2024-02-13 17:26:04.668+00 \N
65 33 metadata .json t application/json 259 1c335ebcb09d8c75665b2a39b57c477e25689e3c8aeef49b5e0afa14bfe50376 2024-03-03 03:17:23.68+00 2024-03-03 03:17:23.68+00 \N
73 37 metadata .json t application/json 248 dc98a37ab06b38e985e9c6911e028bd47b39dead4335cc46ca7a8f691a12ce68 2024-09-21 04:03:11.048+00 2023-12-28 04:03:11.048+00 \N
69 35 metadata .json t application/json 255 ba7573140c57c73af42ba828742f8f8837b3438635f80d812504ba2d7335bcbe 2023-11-03 05:05:47.504+00 2023-09-22 05:05:47.504+00 \N
70 35 __init__ .py t text/x-python-script 43 ce63d83ead08212fd0cf698658dab22240a40bcbca0518cf7fd84375771ba978 2023-11-03 05:05:47.504+00 2023-09-22 05:05:47.504+00 \N
71 36 metadata .json t application/json 260 a0a564793f4f6748a8e5f8a0ffbff9e677f8db8cd537919b33f11557789d15a0 2023-10-19 20:19:20.66+00 2022-11-19 20:19:20.66+00 \N
74 37 __init__ .py t text/x-python-script 42 d02191d847a994ea25b7bd986b75ba4f03410a13fe5d4acddb69348551f96489 2024-09-21 04:03:11.048+00 2023-12-28 04:03:11.048+00 \N
77 39 metadata .json t application/json 262 6e93ba3f5fa225b9f0d99d1451bea6d8d8f783dde4fd8c348a8f01371b095a10 2023-07-04 20:36:02.72+00 2023-07-04 20:36:02.72+00 \N
75 38 metadata .json t application/json 255 afb7da0abc4d57c6d4b3b91aeb84b362c4d01fe5449403a5160d216696af9eba 2024-05-23 17:26:04.668+00 2024-02-13 17:26:04.668+00 \N
79 40 metadata .json t application/json 262 4efae41c8897a8f11923e8d0c7e1558ca84d1ef01e7f89e9f3887ebbb00ff886 2024-08-30 08:26:56.096+00 2021-09-05 08:26:56.096+00 \N
78 39 __init__ .py t text/x-python-script 46 b7976ad99a92849942b8e63e5f55d6779aaa55c5e2399d9af4efd69a236c2947 2023-07-04 20:36:02.72+00 2023-07-04 20:36:02.72+00 \N
81 41 metadata .json t application/json 250 84e2523314728a9d1d680ebb156e56c3f092b4a93d1dad7411e7dd1f8b065e44 2024-01-25 00:59:51.064+00 2022-06-04 00:59:51.064+00 \N
80 40 __init__ .py t text/x-python-script 44 6bbc5ee37b74e55bb30a8c02ece279acb2c7b1cf9411c758b5cfe3e37c5d014c 2024-08-30 08:26:56.096+00 2021-09-05 08:26:56.096+00 \N
82 41 __init__ .py t text/x-python-script 43 dd5b3e78ee8784eaa5cb2980b1239bc686f7d81f19f683afd4dba76b3fefcbbd 2024-01-25 00:59:51.064+00 2022-06-04 00:59:51.064+00 \N
83 42 metadata .json t application/json 251 6ee7fe69d30922aad1de55e931cf5f020455a23a87fffb1470cdb00b10ae4e0c 2024-07-01 10:51:30.84+00 2022-05-21 10:51:30.84+00 \N
84 42 __init__ .py t text/x-python-script 45 4ccae50446870c56e5690f1d28a84e5b7fb705ca6c60cee90e7c3b0c79adfd7b 2024-07-01 10:51:30.84+00 2022-05-21 10:51:30.84+00 \N
85 43 metadata .json t application/json 264 0aac1c808a8557b3aa9962553a605026cae4f0955987f64fc8a0ba17dbac4d02 2023-11-23 09:45:55.072+00 2023-11-23 09:45:55.072+00 \N
86 43 __init__ .py t text/x-python-script 43 0d79605e578a4b1047d2b25cd98f703f9f7222164b81525f4847e5e60b1b0ac0 2023-11-23 09:45:55.072+00 2023-11-23 09:45:55.072+00 \N
100 50 __init__ .py t text/x-python-script 50 c65110ef76cfbffc2bc3fe1e2251a337efc50b8f64be2b1e0a5cdffc0de63a5c 2023-12-22 05:37:15.504+00 2022-01-29 05:37:15.504+00 \N
87 44 metadata .json t application/json 272 6cbc90231e32d2b876b723dce9447ac2f1c237a1217191487b986ec9e484a84a 2024-12-31 18:26:24.784+00 2024-07-24 18:26:24.784+00 \N
88 44 __init__ .py t text/x-python-script 49 bf27c558940e1d2839f6be84c192caecc16431e88efb1dbbc234e4755e99e687 2024-12-31 18:26:24.784+00 2024-07-24 18:26:24.784+00 \N
109 55 metadata .json t application/json 263 8842d3e8e8c4ea639853d8347abf214b26a5fa919785d8193df6268f9f659f7f 2024-05-20 22:09:19.664+00 2022-02-22 22:09:19.664+00 \N
89 45 metadata .json t application/json 266 d890bb21eb6ccb1b93d0e158d5b4c67e596b4fb9b876591d8d3fd382ef4ee26f 2024-04-14 08:17:02.24+00 2022-10-10 08:17:02.24+00 \N
101 51 metadata .json t application/json 261 2907044868a7ebcad94f8d02bbdf95b3da44222f2adb10ec538023f4ab69ea95 2024-10-28 19:46:23.904+00 2022-10-17 19:46:23.904+00 \N
90 45 __init__ .py t text/x-python-script 45 0d13a0db9e75bd50aea04f83309d015f66a652977dd6d6875ca03f7a498993e3 2024-04-14 08:17:02.24+00 2022-10-10 08:17:02.24+00 \N
91 46 metadata .json t application/json 258 91256a2ff937d2f97c9f9576d33437c6097af65705eb68710603d7e6fd549fe0 2024-05-21 07:52:12.792+00 2023-05-19 07:52:12.792+00 \N
92 46 __init__ .py t text/x-python-script 44 f9eb1b945f387e09e98869ec7d2de4c19d72b66e5085796c64e0ce1bea83488b 2024-05-21 07:52:12.792+00 2023-05-19 07:52:12.792+00 \N
102 51 __init__ .py t text/x-python-script 44 b6194d9e4ba967dc71de7acf058b181ed085eb9cdb4e35f3a00f5d8302c81fb7 2024-10-28 19:46:23.904+00 2022-10-17 19:46:23.904+00 \N
93 47 metadata .json t application/json 262 97b42f86f44b6537da276d1f48f3487915352ad36fe638ad77233a22735fe200 2024-02-05 07:45:38.824+00 2024-02-05 07:45:38.824+00 \N
94 47 __init__ .py t text/x-python-script 49 09ff5b49da0828569ea5c49e18d163c2186763502bd4f7e440107cd46b55a915 2024-02-05 07:45:38.824+00 2024-02-05 07:45:38.824+00 \N
115 58 metadata .json t application/json 256 4c4d5eba6c3f1556d89ad870305cb8e11fd6632f56b4222cc5a83d1802af426f 2024-02-09 16:13:44.876+00 2022-05-14 16:13:44.876+00 \N
95 48 metadata .json t application/json 257 25a58de7b963488dbaaa21b7f5cbee5b8d43a4004a6f156a28d2971ca38bc97a 2024-03-12 09:05:08.976+00 2024-03-12 09:05:08.976+00 \N
103 52 metadata .json t application/json 260 508cfd732e3100ec14d893428144149aae26483dd1618048ecb671ffd86b36f2 2024-10-25 17:33:41.688+00 2021-12-14 17:33:41.688+00 \N
96 48 __init__ .py t text/x-python-script 42 df429492023867526959b63fe50a18b8e6361a8a270bc31f472934192ecbd102 2024-03-12 09:05:08.976+00 2024-03-12 09:05:08.976+00 \N
97 49 metadata .json t application/json 256 31e800b96b92e3472059a8455711e1c7196378732359daf9c18ef47aa54932de 2023-11-13 08:24:15.072+00 2023-10-20 08:24:15.072+00 \N
110 55 __init__ .py t text/x-python-script 44 367c213d7ce87ad07d70c732baf2477636f8710a7580ee6edfc22780e82b805b 2024-05-20 22:09:19.664+00 2022-02-22 22:09:19.664+00 \N
98 49 __init__ .py t text/x-python-script 42 eef072abc987a307e85cc0731e60917a6bf99c8e9f8541766cca3d6ef9088411 2023-11-13 08:24:15.072+00 2023-10-20 08:24:15.072+00 \N
104 52 __init__ .py t text/x-python-script 48 a3778a531b89ef556b00953336c8085cca9aaa0e4e49eaeb0e98240bedc6860d 2024-10-25 17:33:41.688+00 2021-12-14 17:33:41.688+00 \N
99 50 metadata .json t application/json 273 140ad61be45d50c3c213880ef6bd7d776e7663011dc5fe44afb2dd77c31795a8 2023-12-22 05:37:15.504+00 2022-01-29 05:37:15.504+00 \N
105 53 metadata .json t application/json 256 f9f2930cf1e6912bd708d2db43d99b6758d479801b4dc71940476ba0cf0c21f3 2024-05-30 11:28:58.68+00 2022-05-01 11:28:58.68+00 \N
111 56 metadata .json t application/json 255 8bbba5c7843f1391cd21bf62fd1394095f3e5630bd0894b69ea86f5068dd3950 2023-07-09 21:46:04.968+00 2023-07-09 21:46:04.968+00 \N
106 53 __init__ .py t text/x-python-script 45 bb489356808ea265850c04aa391a0736c784392cc4c9d4899b98391badada12e 2024-05-30 11:28:58.68+00 2022-05-01 11:28:58.68+00 \N
107 54 metadata .json t application/json 258 93665eabe60a0a9302154e99d769ca1a5081c5b273009cf9636b34282084f060 2024-08-04 15:22:58.712+00 2023-01-26 15:22:58.712+00 \N
119 60 metadata .json t application/json 259 392b730600f3c34f5b8006bb4fcb9e476284dd86fac47ee19217de6eeed22b6c 2023-12-05 03:41:56.192+00 2022-04-28 03:41:56.192+00 \N
108 54 __init__ .py t text/x-python-script 45 ff8b16479077c522308c3b2e96d40396c064a7da291d6ec3f691278183d650f6 2024-08-04 15:22:58.712+00 2023-01-26 15:22:58.712+00 \N
116 58 __init__ .py t text/x-python-script 43 e2a3dfea029502ade1cb5a130057fa4e3fc274553b40d6f5f341200423d81b4b 2024-02-09 16:13:44.876+00 2022-05-14 16:13:44.876+00 \N
112 56 __init__ .py t text/x-python-script 47 889360c69a1ab25536eb69b2bada125e0e21abe0138faaaca732b39666ce1c93 2023-07-09 21:46:04.968+00 2023-07-09 21:46:04.968+00 \N
113 57 metadata .json t application/json 263 d2a0af2cc0e2aba4358eee161bc2c9c968033bbcbb72843dbe24c70a939bd42f 2024-11-05 09:02:28.784+00 2024-07-04 09:02:28.784+00 \N
114 57 __init__ .py t text/x-python-script 44 d49bd8e9c65cb1e2d0e87e437a167472ffe8fa5d706b6541d4656dffebe61fea 2024-11-05 09:02:28.784+00 2024-07-04 09:02:28.784+00 \N
117 59 metadata .json t application/json 263 f3e9a5ea5ffd9de172c282c77a562fefe55f277611dfb7b81f76d6dde28aa964 2023-09-02 22:18:08.44+00 2023-09-02 22:18:08.44+00 \N
120 60 __init__ .py t text/x-python-script 45 b45bd0c4dff69bde68bc493e39c737e4156ba179179662fb959f4e558366f1a1 2023-12-05 03:41:56.192+00 2022-04-28 03:41:56.192+00 \N
118 59 __init__ .py t text/x-python-script 50 c8dbc7924e72eb2a83aa055ea974b17aa87118e3daf111a3f55ce66641304126 2023-09-02 22:18:08.44+00 2023-09-02 22:18:08.44+00 \N
122 61 __init__ .py t text/x-python-script 44 00428777642cb39830c51b7f26a943ff364fe97fc0c89660d263f1d1ff789d95 2024-05-21 09:16:51.554+00 2022-10-07 09:16:51.554+00 \N
121 61 metadata .json t application/json 244 9da105ff3401a9c20698d32bf0ee79ff81b03ed1169421a9599d6ab05ab721f3 2024-05-21 09:16:51.554+00 2022-10-07 09:16:51.554+00 \N
124 62 __init__ .py t text/x-python-script 48 0f6aa20a34aae328af3ddd39d34fb3a153a992dff42a97f1005e57f2e36916b6 2023-07-21 02:31:48.184+00 2023-07-21 02:31:48.184+00 \N
123 62 metadata .json t application/json 259 7d50e7f55e8f6bae1508493325f7f6ec1d0d5a8972b35a11d6e338a512a1f564 2023-07-21 02:31:48.184+00 2023-07-21 02:31:48.184+00 \N
125 63 metadata .json t application/json 259 40a4961d04c8844e8ef0dcfaf6bb3302fb5dfcef417d9e7ccd42a160278b5c96 2024-03-19 02:18:38.096+00 2021-08-18 02:18:38.096+00 \N
126 63 __init__ .py t text/x-python-script 43 f9f014ed3f4ea7605ef1b1d6d0ef07dea9a58e881ec0f52b159289415f7b08ce 2024-03-19 02:18:38.096+00 2021-08-18 02:18:38.096+00 \N
127 64 metadata .json t application/json 247 0bfcfc15c8bd90c3592f7577e70cb3ac6d9062a5d95a7b81939466e2860f3f38 2024-06-24 21:57:36.494+00 2022-05-14 21:57:36.494+00 \N
128 64 __init__ .py t text/x-python-script 45 9a963bf1d01609f2028433a80a4c1eefb3459672f10cfc58b519ea984ac010b6 2024-06-24 21:57:36.494+00 2022-05-14 21:57:36.494+00 \N
129 65 metadata .json t application/json 253 e512795311be3706e9dfe52c3abb9e8e20ea20771d0038510fe2e45beace3537 2024-08-09 14:23:25.752+00 2021-12-03 14:23:25.752+00 \N
143 72 metadata .json t application/json 254 1beb2cde9f5310d2ebeb5f4e0db9ef37b4e826bc4be9d4980bd6704b415d129b 2024-03-21 13:24:49.528+00 2023-05-02 13:24:49.528+00 \N
130 65 __init__ .py t text/x-python-script 45 6bb37c106cc14e53fb51ed81f698f45239c8f3b1c7acc245ada72dc18e0f011d 2024-08-09 14:23:25.752+00 2021-12-03 14:23:25.752+00 \N
131 66 metadata .json t application/json 263 50e6e72c7c26fd453b5d77019784ba0c3328c18ee2654ea0e50b9d25b6ec1d25 2024-12-19 20:19:10.896+00 2023-01-01 20:19:10.896+00 \N
152 76 __init__ .py t text/x-python-script 50 936a2c7790fbe46763b8b28c662ddb4da6a375a263dea71473a1c5501b939569 2023-10-26 10:11:48.928+00 2023-07-22 10:11:48.928+00 \N
132 66 __init__ .py t text/x-python-script 44 18af3a74174426196a58c0222acf937ac7d30d2fdae4ac597ceeba38f989b5a5 2024-12-19 20:19:10.896+00 2023-01-01 20:19:10.896+00 \N
144 72 __init__ .py t text/x-python-script 43 28b64f0ce701ddf289d03b5a3ef0674bbd50a6e6fffc55e3c5b45f3f3715f273 2024-03-21 13:24:49.528+00 2023-05-02 13:24:49.528+00 \N
133 67 metadata .json t application/json 254 c267c974784e7ecff27d3255c7f24b7c6cfacf28203ed819bdff62cb72046c57 2024-09-11 19:49:28.324+00 2023-07-27 19:49:28.324+00 \N
134 67 __init__ .py t text/x-python-script 44 4181a072cf3ac464f32d6155bce4ab9672ff4c24a939d3af9c0dbf815d6885ce 2024-09-11 19:49:28.324+00 2023-07-27 19:49:28.324+00 \N
135 68 metadata .json t application/json 253 bef48c39781e98db0492f2cd0993d3042ff5c76f7cb094ad3cee4a55146c79d2 2024-02-12 20:46:28.112+00 2023-11-14 20:46:28.112+00 \N
145 73 metadata .json t application/json 268 209bbc910ec3dcb0aabd4befd3a3613fbc65e7ee2eb9c0d5d319ea7cf3dcb5aa 2024-09-17 15:44:08.672+00 2022-09-22 15:44:08.672+00 \N
136 68 __init__ .py t text/x-python-script 42 595601465bd3833f10707800b5fc56925d2dbc0d71f9455c38384c7b16a650f4 2024-02-12 20:46:28.112+00 2023-11-14 20:46:28.112+00 \N
137 69 metadata .json t application/json 257 24bea9765cb1f5285b52abb325af8e791beba962ae596871c766fa2ed2be0585 2023-12-03 07:30:33.208+00 2023-08-17 07:30:33.208+00 \N
158 79 __init__ .py t text/x-python-script 46 1df62b4ba6be0d38231cfd284df235ea5b82f836e36a9aad4f1a2a2e09967c3e 2024-11-08 06:16:09.328+00 2024-04-30 06:16:09.328+00 \N
138 69 __init__ .py t text/x-python-script 48 81072032b736af0ab4262580b7f01f77bdd3d78ac31a38dc223cff8bd4605e23 2023-12-03 07:30:33.208+00 2023-08-17 07:30:33.208+00 \N
146 73 __init__ .py t text/x-python-script 45 f9e8c7db9f201b98aa2b79a4254c25723f9db416497e0a5b2d7a6b1ddd9df91e 2024-09-17 15:44:08.672+00 2022-09-22 15:44:08.672+00 \N
139 70 metadata .json t application/json 252 54fa606b0116ba89f88bfb563627f0b2eeca61a5fb3f0dfd09a046128fac57c8 2024-12-10 03:47:30.504+00 2022-10-02 03:47:30.504+00 \N
140 70 __init__ .py t text/x-python-script 45 8696676a5eb919fe6a9b64614214886dc4352ff0d62975ee78ea821ba41d2d7f 2024-12-10 03:47:30.504+00 2022-10-02 03:47:30.504+00 \N
153 77 metadata .json t application/json 245 5fa165e2823a38176d730263acfb83b0d4c9c6c3e8b78fee78da95c1b3fa5dbd 2024-06-13 23:31:30.01+00 2022-01-23 23:31:30.01+00 \N
141 71 metadata .json t application/json 260 1162ad57f708ed97e44c27d8aaff01a39c9f21ba6bb489e38cb6ff9515fbf268 2023-10-30 00:09:40.376+00 2022-01-06 00:09:40.376+00 \N
147 74 metadata .json t application/json 261 8cc00818e64140db9ef0dd3bc20bba7908f62f956ca933b4b20603f077e23661 2024-02-06 15:06:27.832+00 2024-02-06 15:06:27.832+00 \N
142 71 __init__ .py t text/x-python-script 47 7938a97199eee293bf5cac71e31dcdbdc7e321d98059351225d260ac5fddc088 2023-10-30 00:09:40.376+00 2022-01-06 00:09:40.376+00 \N
148 74 __init__ .py t text/x-python-script 48 6a7087ed5f4a1b8d1a1e1fdfc9dc6aee880c437ab802dced59b2847823e7892e 2024-02-06 15:06:27.832+00 2024-02-06 15:06:27.832+00 \N
154 77 __init__ .py t text/x-python-script 45 fca41a7f0aa6a83fd44c8aa67414841f5bb7f1b7b7b4b2c0c3fa92668c49dae5 2024-06-13 23:31:30.01+00 2022-01-23 23:31:30.01+00 \N
149 75 metadata .json t application/json 250 bf24270c9379705fa556cf94a89c78c436d1d80cb88c1e8d005e3e09490d5ca1 2024-11-04 09:30:30.72+00 2021-11-16 09:30:30.72+00 \N
150 75 __init__ .py t text/x-python-script 41 4dba8d670aa18bfafd092ed9bdb05b84bf2e3d7893cde361df931fc4f2d46359 2024-11-04 09:30:30.72+00 2021-11-16 09:30:30.72+00 \N
162 81 __init__ .py t text/x-python-script 44 f208c9f2d6dcc003fb3a896c8e66377e92ca86ea6fd8e9bac021989f615888e5 2024-02-08 21:20:39.392+00 2021-12-30 21:20:39.392+00 \N
151 76 metadata .json t application/json 270 2e8ba44c34500c7ae5c25d0cd728fa4b256a1d80fe92da614a94f282b7c70795 2023-10-26 10:11:48.928+00 2023-07-22 10:11:48.928+00 \N
159 80 metadata .json t application/json 259 6089a874b7d34ace9e310ed96b5987f2d5c70f5edc9d41feda864dc25af0c328 2023-07-25 16:37:02.9+00 2022-12-09 16:37:02.9+00 \N
155 78 metadata .json t application/json 253 fcab64060f9c15b31f7443323c61d841adbfd5dff9e9bd1b0a44d5174f9bf7da 2024-08-21 00:04:19.212+00 2023-11-19 00:04:19.212+00 \N
156 78 __init__ .py t text/x-python-script 43 1a5f59cfb4f864a6aaf638f94834ed1e33d810617fb85524fb6555d29cd1e87d 2024-08-21 00:04:19.212+00 2023-11-19 00:04:19.212+00 \N
157 79 metadata .json t application/json 267 ba6452719a39c861e03817263cf19aa41362ed2e13d07d4a9c43dad3461c4945 2024-11-08 06:16:09.328+00 2024-04-30 06:16:09.328+00 \N
160 80 __init__ .py t text/x-python-script 47 4348b45e8dda4ab0f6195f1840e2765771fa2d6b51f0355b93f432d4df118fa3 2023-07-25 16:37:02.9+00 2022-12-09 16:37:02.9+00 \N
163 82 metadata .json t application/json 262 70986c09bbe77b58b78df1c91b11ef98974a44d78b8fab1a52e5dff5224728b2 2024-07-03 00:30:41.76+00 2022-11-17 00:30:41.76+00 \N
161 81 metadata .json t application/json 258 a7bbd9ff8c7bfb4841892bac567418ebd6de8dac220cab594be9cbd3b542a21d 2024-02-08 21:20:39.392+00 2021-12-30 21:20:39.392+00 \N
165 83 metadata .json t application/json 259 5c35248dc48491e17dc138238435456254b281793fcf34dee5308a64ef2e1612 2024-08-28 13:28:10.656+00 2024-08-02 13:28:10.656+00 \N
164 82 __init__ .py t text/x-python-script 45 fae3aefade81eb10b9ea0374dc66853a5005aadb179139934f9e5294c4d91aab 2024-07-03 00:30:41.76+00 2022-11-17 00:30:41.76+00 \N
167 84 metadata .json t application/json 247 55ff02068bb494ed1910cee8899844d91846117e5aced13c7cf2c7d07f26fa08 2023-05-19 23:17:49.24+00 2023-05-19 23:17:49.24+00 \N
166 83 __init__ .py t text/x-python-script 45 2ee69c2783edeaa28e5f02d6869c5dca87858160de785647a370b97cffe1defc 2024-08-28 13:28:10.656+00 2024-08-02 13:28:10.656+00 \N
168 84 __init__ .py t text/x-python-script 43 0192c9c46c8e325d5b3e14ee04ae44fd95479d2aeb3af2bd571839796c49b8de 2023-05-19 23:17:49.24+00 2023-05-19 23:17:49.24+00 \N
169 85 metadata .json t application/json 261 8a6de6d6cbe580f9fa63dd24d545a8bd1a7e2204b4588e4f010daac6b90f221e 2023-11-14 01:27:48.624+00 2022-11-11 01:27:48.624+00 \N
170 85 __init__ .py t text/x-python-script 45 7d67ad149f3a761bb8469e50c44920b0de2be3570a46f806aa6cec210950fb82 2023-11-14 01:27:48.624+00 2022-11-11 01:27:48.624+00 \N
171 86 metadata .json t application/json 258 636b6b0bb15bbae9e036e485dc387a399a9047be3703160a9a1bc768c281952b 2023-05-28 22:05:38.88+00 2022-11-09 22:05:38.88+00 \N
172 86 __init__ .py t text/x-python-script 43 77b01f39a2edefccd41f8fb2fbb0a4ea7fa5cfbcbf9530ee81b4119970d41759 2023-05-28 22:05:38.88+00 2022-11-09 22:05:38.88+00 \N
173 87 metadata .json t application/json 264 37eb7545346e3008a3c380080a3fd953927212594b1d38e33007ab8d43b4ca94 2024-12-02 15:18:25.584+00 2023-09-13 15:18:25.584+00 \N
174 87 __init__ .py t text/x-python-script 46 0372f6128e21d37905c799ccc3247caab8e32f894901fe246f187622001b9318 2024-12-02 15:18:25.584+00 2023-09-13 15:18:25.584+00 \N
\.
--
-- Data for Name: migrations; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.migrations (id, name, run_on) FROM stdin;
1 /20241116085102-initialize 2025-01-19 18:31:41.991
2 /20250113193413-files-table 2025-01-19 18:31:41.996
\.
--
-- Data for Name: project_statuses_on_badges; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.project_statuses_on_badges (id, project_slug, badge_slug, status, created_at, updated_at, deleted_at) FROM stdin;
1 codecraft why2025 \N 2024-11-07 20:01:14.388+00 2022-05-18 20:01:14.388+00 \N
2 pixelpulse troopers23 \N 2023-12-10 10:43:55.368+00 2023-08-14 10:43:55.368+00 \N
3 bitblast why2025 \N 2024-07-25 06:33:51.392+00 2023-02-07 06:33:51.392+00 \N
4 nanogames why2025 \N 2024-08-05 08:59:47.656+00 2024-08-05 08:59:47.656+00 \N
5 electraplay mch2022 \N 2023-06-09 19:55:48.12+00 2023-06-09 19:55:48.12+00 \N
6 circuitforge mch2022 \N 2023-06-15 12:00:26.696+00 2023-06-15 12:00:26.696+00 \N
7 bytebash mch2022 \N 2023-12-11 12:03:17.632+00 2021-09-10 12:03:17.632+00 \N
8 codecanvas troopers23 \N 2024-06-11 23:48:14.539+00 2022-08-07 23:48:14.539+00 \N
9 sparkscript troopers23 \N 2024-04-13 20:12:45.59+00 2023-05-05 20:12:45.59+00 \N
10 logicland mch2022 \N 2023-12-11 04:19:14.792+00 2023-12-11 04:19:14.792+00 \N
11 microarcade troopers23 \N 2024-01-30 20:04:11.248+00 2023-08-21 20:04:11.248+00 \N
12 codecraze mch2022 \N 2024-09-21 01:22:30.832+00 2024-06-19 01:22:30.832+00 \N
13 gamegenius troopers23 \N 2024-04-17 03:54:00.902+00 2024-04-17 03:54:00.902+00 \N
14 pixelpal why2025 \N 2023-09-29 06:43:43.152+00 2023-09-29 06:43:43.152+00 \N
15 electronica mch2022 \N 2023-06-17 18:50:17.408+00 2022-11-11 18:50:17.408+00 \N
16 codequest mch2022 \N 2024-03-10 03:12:04.579+00 2022-06-17 03:12:04.579+00 \N
17 circuitcraft troopers23 \N 2024-09-08 18:29:58.832+00 2024-04-21 18:29:58.832+00 \N
18 bytebeat troopers23 \N 2024-12-19 05:39:43.208+00 2023-02-10 05:39:43.208+00 \N
19 nanonexus mch2022 \N 2023-12-28 14:52:17.408+00 2023-02-01 14:52:17.408+00 \N
20 bitbox troopers23 \N 2024-04-10 16:50:34.478+00 2023-02-19 16:50:34.478+00 \N
21 circuitchaos troopers23 \N 2024-06-01 02:20:39.728+00 2024-06-01 02:20:39.728+00 \N
22 codecrafter why2025 \N 2024-04-02 08:12:55.4+00 2023-12-22 08:12:55.4+00 \N
23 pixelpioneer why2025 \N 2024-11-18 21:19:06.592+00 2024-11-18 21:19:06.592+00 \N
24 logiclab why2025 \N 2024-07-20 03:27:57.68+00 2022-03-05 03:27:57.68+00 \N
25 byteblitz why2025 \N 2024-12-29 13:14:11.264+00 2022-01-12 13:14:11.264+00 \N
26 codewave mch2022 \N 2023-07-03 18:29:30.064+00 2023-03-13 18:29:30.064+00 \N
27 nanonet why2025 \N 2023-11-14 14:04:15.904+00 2022-09-16 14:04:15.904+00 \N
28 electraforge troopers23 \N 2023-12-27 23:09:16.064+00 2022-03-25 23:09:16.064+00 \N
29 gamegrid why2025 \N 2023-12-12 01:57:31.408+00 2023-03-15 01:57:31.408+00 \N
30 logicloom mch2022 \N 2023-07-06 21:00:46.512+00 2022-12-02 21:00:46.512+00 \N
31 pixelplaza mch2022 \N 2024-09-07 03:30:31.748+00 2022-11-05 03:30:31.748+00 \N
32 codecity troopers23 \N 2023-12-04 16:58:11.922+00 2021-09-19 16:58:11.922+00 \N
33 nanoarcade mch2022 \N 2024-12-04 16:56:56.28+00 2022-03-30 16:56:56.28+00 \N
34 electronera troopers23 \N 2024-04-12 13:13:14.032+00 2023-12-12 13:13:14.032+00 \N
35 bitbazaar mch2022 \N 2023-08-29 08:16:32.216+00 2021-12-15 08:16:32.216+00 \N
36 logiclegends mch2022 \N 2023-05-29 06:01:08.68+00 2023-05-29 06:01:08.68+00 \N
37 codeclan troopers23 \N 2024-02-29 23:41:42.936+00 2023-03-16 23:41:42.936+00 \N
38 pixelportal troopers23 \N 2024-08-18 17:15:06.796+00 2022-10-22 17:15:06.796+00 \N
39 circuitcraze mch2022 \N 2024-11-26 02:48:17.168+00 2022-11-17 02:48:17.168+00 \N
40 bytebuster mch2022 \N 2024-03-07 23:04:32.056+00 2024-03-07 23:04:32.056+00 \N
41 nanonovel mch2022 \N 2024-10-31 14:27:21.008+00 2023-08-12 14:27:21.008+00 \N
42 electraeden why2025 \N 2024-04-12 14:05:40.384+00 2023-06-29 14:05:40.384+00 \N
43 codecomet troopers23 \N 2023-05-31 06:49:10.1+00 2023-05-31 06:49:10.1+00 \N
44 pixelplayground mch2022 \N 2023-09-02 17:47:37.36+00 2023-08-05 17:47:37.36+00 \N
45 logiclandia troopers23 \N 2024-03-03 20:57:31.089+00 2024-03-03 20:57:31.089+00 \N
46 bytebounce why2025 \N 2024-04-29 23:26:06.16+00 2022-12-08 23:26:06.16+00 \N
47 circuitcarnival mch2022 \N 2024-01-25 18:23:29.568+00 2022-03-04 18:23:29.568+00 \N
48 codecove troopers23 \N 2023-10-24 05:12:26.596+00 2022-05-26 05:12:26.596+00 \N
49 nanonest mch2022 \N 2023-05-23 14:44:11.008+00 2023-01-23 14:44:11.008+00 \N
50 electraentertain troopers23 \N 2024-05-25 23:22:46.863+00 2022-07-09 23:22:46.863+00 \N
51 gamegalaxy why2025 \N 2024-03-01 03:17:17.016+00 2023-02-05 03:17:17.016+00 \N
52 logiclabyrinth mch2022 \N 2024-10-18 14:25:10.464+00 2023-07-04 14:25:10.464+00 \N
53 byteblaster why2025 \N 2023-10-25 21:03:03.235+00 2022-07-02 21:03:03.235+00 \N
54 codecompass troopers23 \N 2024-11-22 04:55:43.36+00 2023-04-24 04:55:43.36+00 \N
55 nanonation mch2022 \N 2024-01-27 21:20:11.08+00 2023-01-30 21:20:11.08+00 \N
56 electraempire mch2022 \N 2023-07-21 21:29:11.92+00 2022-05-11 21:29:11.92+00 \N
57 gamegarden why2025 \N 2023-12-16 17:35:05.576+00 2023-10-31 17:35:05.576+00 \N
58 pixelpeak mch2022 \N 2024-02-24 22:18:34.504+00 2023-08-24 22:18:34.504+00 \N
59 circuitcelestial troopers23 \N 2023-06-17 08:27:24.68+00 2023-06-17 08:27:24.68+00 \N
60 codecrusade mch2022 \N 2024-04-26 12:39:35.448+00 2023-02-19 12:39:35.448+00 \N
61 nanonebula mch2022 \N 2024-09-26 10:13:37.032+00 2024-09-26 10:13:37.032+00 \N
62 electraenclave why2025 \N 2024-12-01 08:15:50.832+00 2024-01-24 08:15:50.832+00 \N
63 gamegizmo troopers23 \N 2023-11-22 09:22:44.216+00 2023-02-01 09:22:44.216+00 \N
64 pixelplanet troopers23 \N 2024-09-22 13:39:03.864+00 2022-03-11 13:39:03.864+00 \N
65 logiclounge why2025 \N 2023-08-10 21:03:30.104+00 2022-11-01 21:03:30.104+00 \N
66 bytebeacon why2025 \N 2023-12-26 11:52:34.192+00 2023-12-26 11:52:34.192+00 \N
67 codecircus why2025 \N 2023-09-09 05:56:05.296+00 2022-02-28 05:56:05.296+00 \N
68 nanonook mch2022 \N 2024-07-14 02:11:15.752+00 2023-07-30 02:11:15.752+00 \N
69 electraelysium why2025 \N 2023-10-22 19:28:44.032+00 2023-10-04 19:28:44.032+00 \N
70 gameglimpse troopers23 \N 2024-03-28 04:53:31.368+00 2024-03-28 04:53:31.368+00 \N
71 pixelparadise mch2022 \N 2023-11-20 13:17:16.312+00 2023-11-20 13:17:16.312+00 \N
72 codecoast mch2022 \N 2023-10-15 07:25:47.224+00 2022-10-26 07:25:47.224+00 \N
73 nanonirvana why2025 \N 2023-09-13 05:15:34.664+00 2023-09-13 05:15:34.664+00 \N
74 electraedifice troopers23 \N 2024-06-05 16:47:24.008+00 2024-01-19 16:47:24.008+00 \N
75 gamegen troopers23 \N 2024-10-01 12:10:29.672+00 2024-02-14 12:10:29.672+00 \N
76 pixelpandemonium mch2022 \N 2023-10-26 19:28:52.784+00 2022-05-22 19:28:52.784+00 \N
77 logiclagoon mch2022 \N 2024-10-15 04:58:56.68+00 2024-04-24 04:58:56.68+00 \N
78 byteblaze mch2022 \N 2024-06-16 21:39:16.968+00 2024-03-08 21:39:16.968+00 \N
79 codecorridor mch2022 \N 2023-12-03 20:29:53.224+00 2023-12-03 20:29:53.224+00 \N
80 hacksimulator why2025 \N 2024-05-08 11:29:05.864+00 2023-09-15 11:29:05.864+00 \N
81 codecrunch mch2022 \N 2023-06-04 17:17:03.48+00 2023-06-04 17:17:03.48+00 \N
82 securecraft troopers23 \N 2023-12-27 08:04:32.152+00 2023-12-01 08:04:32.152+00 \N
83 cryptopulse troopers23 \N 2023-07-15 13:58:07.04+00 2023-07-15 13:58:07.04+00 \N
84 dataforge why2025 \N 2023-10-27 16:42:58.4+00 2023-03-09 16:42:58.4+00 \N
85 cipherquest troopers23 \N 2023-06-06 06:43:53.32+00 2021-08-17 06:43:53.32+00 \N
86 hackquest why2025 \N 2023-08-14 16:53:58.984+00 2023-08-14 16:53:58.984+00 \N
87 securesphere troopers23 \N 2024-07-16 15:58:59.816+00 2022-06-29 15:58:59.816+00 \N
\.
--
-- Data for Name: projects; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.projects (created_at, updated_at, deleted_at, version_id, user_id, slug, git, allow_team_fixes) FROM stdin;
2024-11-01 13:12:19.376+00 2022-09-05 13:12:19.376+00 \N 1 24 codecraft \N \N
2023-11-30 00:51:54.112+00 2022-04-21 00:51:54.112+00 \N 2 24 pixelpulse \N \N
2024-01-15 06:15:05.696+00 2021-10-25 06:15:05.696+00 \N 3 43 bitblast \N \N
2023-07-14 16:45:35.488+00 2023-07-14 16:45:35.488+00 \N 4 34 nanogames \N \N
2024-03-30 14:40:52.96+00 2021-10-16 14:40:52.96+00 \N 5 17 electraplay \N \N
2023-11-17 23:23:23.636+00 2023-02-26 23:23:23.636+00 \N 6 50 circuitforge \N \N
2023-07-17 14:27:29.464+00 2023-07-17 14:27:29.464+00 \N 7 45 bytebash \N \N
2023-12-13 15:53:56.304+00 2022-06-07 15:53:56.304+00 \N 8 22 codecanvas \N \N
2024-05-18 00:02:21.456+00 2023-10-13 00:02:21.456+00 \N 9 58 sparkscript \N \N
2024-08-16 21:30:54.256+00 2022-11-23 21:30:54.256+00 \N 10 51 logicland \N \N
2023-11-03 11:28:12.74+00 2023-11-03 11:28:12.74+00 \N 11 39 microarcade \N \N
2024-10-30 02:46:51.36+00 2021-11-09 02:46:51.36+00 \N 12 14 codecraze \N \N
2023-06-07 06:49:56.772+00 2023-02-19 06:49:56.772+00 \N 13 1 gamegenius \N \N
2023-07-29 11:14:20.224+00 2023-07-29 11:14:20.224+00 \N 14 13 pixelpal \N \N
2023-11-24 22:55:24.164+00 2021-09-01 22:55:24.164+00 \N 15 69 electronica \N \N
2024-02-02 22:52:43.168+00 2022-06-10 22:52:43.168+00 \N 16 60 codequest \N \N
2023-09-29 03:29:47.696+00 2023-09-29 03:29:47.696+00 \N 17 12 circuitcraft \N \N
2023-06-19 17:13:46.448+00 2023-06-19 17:13:46.448+00 \N 18 27 bytebeat \N \N
2024-10-21 16:26:33.936+00 2023-05-18 16:26:33.936+00 \N 19 22 nanonexus \N \N
2024-10-10 18:13:06.836+00 2022-04-16 18:13:06.836+00 \N 20 15 bitbox \N \N
2024-08-16 03:07:57.756+00 2024-08-16 03:07:57.756+00 \N 21 57 circuitchaos \N \N
2024-11-12 18:51:09.944+00 2024-08-18 18:51:09.944+00 \N 22 61 codecrafter \N \N
2024-11-07 01:09:31.666+00 2024-04-27 01:09:31.666+00 \N 23 28 pixelpioneer \N \N
2024-10-22 09:43:30.528+00 2023-11-19 09:43:30.528+00 \N 24 2 logiclab \N \N
2024-05-07 06:19:17.712+00 2023-04-19 06:19:17.712+00 \N 25 58 byteblitz \N \N
2023-12-21 17:42:11.64+00 2022-09-21 17:42:11.64+00 \N 26 44 codewave \N \N
2023-12-01 19:06:24.404+00 2021-11-19 19:06:24.404+00 \N 27 54 nanonet \N \N
2024-09-17 05:22:36.352+00 2023-05-18 05:22:36.352+00 \N 28 56 electraforge \N \N
2023-06-14 14:37:26.096+00 2022-08-14 14:37:26.096+00 \N 29 7 gamegrid \N \N
2024-08-22 14:13:04.708+00 2023-10-15 14:13:04.708+00 \N 30 5 logicloom \N \N
2024-11-03 20:03:16.06+00 2023-01-31 20:03:16.06+00 \N 31 64 pixelplaza \N \N
2024-01-25 11:02:05.24+00 2021-09-11 11:02:05.24+00 \N 32 12 codecity \N \N
2024-03-03 03:17:23.68+00 2024-03-03 03:17:23.68+00 \N 33 19 nanoarcade \N \N
2024-10-14 10:09:17.8+00 2024-10-14 10:09:17.8+00 \N 34 67 electronera \N \N
2023-11-03 05:05:47.504+00 2023-09-22 05:05:47.504+00 \N 35 40 bitbazaar \N \N
2023-10-19 20:19:20.66+00 2022-11-19 20:19:20.66+00 \N 36 66 logiclegends \N \N
2024-09-21 04:03:11.048+00 2023-12-28 04:03:11.048+00 \N 37 39 codeclan \N \N
2024-05-23 17:26:04.668+00 2024-02-13 17:26:04.668+00 \N 38 9 pixelportal \N \N
2023-07-04 20:36:02.72+00 2023-07-04 20:36:02.72+00 \N 39 12 circuitcraze \N \N
2024-08-30 08:26:56.096+00 2021-09-05 08:26:56.096+00 \N 40 63 bytebuster \N \N
2024-01-25 00:59:51.064+00 2022-06-04 00:59:51.064+00 \N 41 21 nanonovel \N \N
2024-07-01 10:51:30.84+00 2022-05-21 10:51:30.84+00 \N 42 27 electraeden \N \N
2023-11-23 09:45:55.072+00 2023-11-23 09:45:55.072+00 \N 43 42 codecomet \N \N
2024-12-31 18:26:24.784+00 2024-07-24 18:26:24.784+00 \N 44 63 pixelplayground \N \N
2024-04-14 08:17:02.24+00 2022-10-10 08:17:02.24+00 \N 45 67 logiclandia \N \N
2024-05-21 07:52:12.792+00 2023-05-19 07:52:12.792+00 \N 46 42 bytebounce \N \N
2024-02-05 07:45:38.824+00 2024-02-05 07:45:38.824+00 \N 47 6 circuitcarnival \N \N
2024-03-12 09:05:08.976+00 2024-03-12 09:05:08.976+00 \N 48 4 codecove \N \N
2023-11-13 08:24:15.072+00 2023-10-20 08:24:15.072+00 \N 49 20 nanonest \N \N
2023-12-22 05:37:15.504+00 2022-01-29 05:37:15.504+00 \N 50 10 electraentertain \N \N
2024-10-28 19:46:23.904+00 2022-10-17 19:46:23.904+00 \N 51 10 gamegalaxy \N \N
2024-10-25 17:33:41.688+00 2021-12-14 17:33:41.688+00 \N 52 20 logiclabyrinth \N \N
2024-05-30 11:28:58.68+00 2022-05-01 11:28:58.68+00 \N 53 69 byteblaster \N \N
2024-08-04 15:22:58.712+00 2023-01-26 15:22:58.712+00 \N 54 23 codecompass \N \N
2024-05-20 22:09:19.664+00 2022-02-22 22:09:19.664+00 \N 55 56 nanonation \N \N
2023-07-09 21:46:04.968+00 2023-07-09 21:46:04.968+00 \N 56 3 electraempire \N \N
2024-11-05 09:02:28.784+00 2024-07-04 09:02:28.784+00 \N 57 62 gamegarden \N \N
2024-02-09 16:13:44.876+00 2022-05-14 16:13:44.876+00 \N 58 16 pixelpeak \N \N
2023-09-02 22:18:08.44+00 2023-09-02 22:18:08.44+00 \N 59 61 circuitcelestial \N \N
2023-12-05 03:41:56.192+00 2022-04-28 03:41:56.192+00 \N 60 3 codecrusade \N \N
2024-05-21 09:16:51.554+00 2022-10-07 09:16:51.554+00 \N 61 41 nanonebula \N \N
2023-07-21 02:31:48.184+00 2023-07-21 02:31:48.184+00 \N 62 19 electraenclave \N \N
2024-03-19 02:18:38.096+00 2021-08-18 02:18:38.096+00 \N 63 53 gamegizmo \N \N
2024-06-24 21:57:36.494+00 2022-05-14 21:57:36.494+00 \N 64 38 pixelplanet \N \N
2024-08-09 14:23:25.752+00 2021-12-03 14:23:25.752+00 \N 65 61 logiclounge \N \N
2024-12-19 20:19:10.896+00 2023-01-01 20:19:10.896+00 \N 66 62 bytebeacon \N \N
2024-09-11 19:49:28.324+00 2023-07-27 19:49:28.324+00 \N 67 28 codecircus \N \N
2024-02-12 20:46:28.112+00 2023-11-14 20:46:28.112+00 \N 68 15 nanonook \N \N
2023-12-03 07:30:33.208+00 2023-08-17 07:30:33.208+00 \N 69 40 electraelysium \N \N
2024-12-10 03:47:30.504+00 2022-10-02 03:47:30.504+00 \N 70 2 gameglimpse \N \N
2023-10-30 00:09:40.376+00 2022-01-06 00:09:40.376+00 \N 71 34 pixelparadise \N \N
2024-03-21 13:24:49.528+00 2023-05-02 13:24:49.528+00 \N 72 66 codecoast \N \N
2024-09-17 15:44:08.672+00 2022-09-22 15:44:08.672+00 \N 73 64 nanonirvana \N \N
2024-02-06 15:06:27.832+00 2024-02-06 15:06:27.832+00 \N 74 48 electraedifice \N \N
2024-11-04 09:30:30.72+00 2021-11-16 09:30:30.72+00 \N 75 26 gamegen \N \N
2023-10-26 10:11:48.928+00 2023-07-22 10:11:48.928+00 \N 76 2 pixelpandemonium \N \N
2024-06-13 23:31:30.01+00 2022-01-23 23:31:30.01+00 \N 77 26 logiclagoon \N \N
2024-08-21 00:04:19.212+00 2023-11-19 00:04:19.212+00 \N 78 57 byteblaze \N \N
2024-11-08 06:16:09.328+00 2024-04-30 06:16:09.328+00 \N 79 60 codecorridor \N \N
2023-07-25 16:37:02.9+00 2022-12-09 16:37:02.9+00 \N 80 53 hacksimulator \N \N
2024-02-08 21:20:39.392+00 2021-12-30 21:20:39.392+00 \N 81 52 codecrunch \N \N
2024-07-03 00:30:41.76+00 2022-11-17 00:30:41.76+00 \N 82 14 securecraft \N \N
2024-08-28 13:28:10.656+00 2024-08-02 13:28:10.656+00 \N 83 18 cryptopulse \N \N
2023-05-19 23:17:49.24+00 2023-05-19 23:17:49.24+00 \N 84 18 dataforge \N \N
2023-11-14 01:27:48.624+00 2022-11-11 01:27:48.624+00 \N 85 1 cipherquest \N \N
2023-05-28 22:05:38.88+00 2022-11-09 22:05:38.88+00 \N 86 46 hackquest \N \N
2024-12-02 15:18:25.584+00 2023-09-13 15:18:25.584+00 \N 87 46 securesphere \N \N
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: badgehub; Owner: badgehub
--
COPY badgehub.users (id, email, admin, name, password, remember_token, editor, public, show_projects, email_verified_at, created_at, updated_at, deleted_at) FROM stdin;
0 techtinkerer@gmail.com t TechTinkerer **** \N \N f f \N 2023-11-10 22:39:37.16+00 2023-04-24 22:39:37.16+00 \N
1 codecrafter@gmail.com f CodeCrafter **** \N \N t t \N 2024-11-12 18:51:09.944+00 2024-08-18 18:51:09.944+00 \N
2 pixelpilot@gmail.com f PixelPilot **** \N \N t t \N 2023-07-27 02:44:53.144+00 2022-12-27 02:44:53.144+00 \N
3 logiclion@techinc.nl f LogicLion **** \N \N t t \N 2023-07-17 21:36:27.784+00 2022-04-09 21:36:27.784+00 \N
4 electroneager@gmail.com f ElectronEager **** \N \N t t \N 2024-11-02 00:56:37.988+00 2022-02-28 00:56:37.988+00 \N
5 nanonomad@techinc.nl f NanoNomad **** \N \N t t \N 2023-12-20 16:31:10.504+00 2023-12-20 16:31:10.504+00 \N
6 circuitcraze@gmail.com t CircuitCraze **** \N \N f f \N 2023-07-04 20:36:02.72+00 2023-07-04 20:36:02.72+00 \N
7 gameglider@gmail.com f GameGlider **** \N \N t t \N 2024-09-01 01:27:11.744+00 2023-04-18 01:27:11.744+00 \N
8 byteblast@bitlair.nl f ByteBlast **** \N \N t t \N 2023-09-29 21:34:30.864+00 2021-11-26 21:34:30.864+00 \N
9 cybercraft@techinc.nl f CyberCraft **** \N \N t t \N 2023-06-25 06:39:28.432+00 2023-06-25 06:39:28.432+00 \N
10 digitaldynamo@gmail.com t DigitalDynamo **** \N \N f f \N 2023-07-07 03:27:55.52+00 2023-06-21 03:27:55.52+00 \N
11 codecreator@bitlair.nl f CodeCreator **** \N \N t t \N 2023-11-03 03:32:27.984+00 2023-03-06 03:32:27.984+00 \N
12 pixelpulse@techinc.nl f PixelPulse **** \N \N t t \N 2023-11-30 00:51:54.112+00 2022-04-21 00:51:54.112+00 \N
13 logicluminary@gmail.com f LogicLuminary **** \N \N t t \N 2024-09-27 12:43:50.288+00 2024-08-26 12:43:50.288+00 \N
14 electronecho@bitlair.nl f ElectronEcho **** \N \N t t \N 2023-09-11 04:20:16.056+00 2022-12-05 04:20:16.056+00 \N
15 nanoninja@gmail.com f NanoNinja **** \N \N t t \N 2024-12-08 19:38:28.424+00 2022-11-07 19:38:28.424+00 \N
16 circuitchampion@techinc.nl f CircuitChampion **** \N \N t t \N 2023-07-15 03:32:48.088+00 2023-06-11 03:32:48.088+00 \N
17 gamegazer@bitlair.nl t GameGazer **** \N \N f f \N 2023-08-26 19:55:28.08+00 2023-08-26 19:55:28.08+00 \N
18 bytebuddy@bitlair.nl f ByteBuddy **** \N \N t t \N 2024-10-18 20:33:42.684+00 2024-10-18 20:33:42.684+00 \N
19 techtornado@bitlair.nl f TechTornado **** \N \N t t \N 2023-10-30 19:39:23.076+00 2023-10-30 19:39:23.076+00 \N
20 codechampion@techinc.nl f CodeChampion **** \N \N t t \N 2024-01-04 02:28:46.516+00 2023-08-27 02:28:46.516+00 \N
21 pixelprodigy@bitlair.nl f PixelProdigy **** \N \N t t \N 2023-07-14 06:00:35.178+00 2023-07-14 06:00:35.178+00 \N
22 logiclabyrinth@bitlair.nl f LogicLabyrinth **** \N \N t t \N 2024-10-25 17:33:41.688+00 2021-12-14 17:33:41.688+00 \N
23 electronexplorer@gmail.com f ElectronExplorer **** \N \N t t \N 2024-04-24 20:05:20.372+00 2022-02-22 20:05:20.372+00 \N
24 nanonavigator@bitlair.nl f NanoNavigator **** \N \N t t \N 2023-10-06 07:13:10.212+00 2023-10-06 07:13:10.212+00 \N
25 circuitcatalyst@gmail.com f CircuitCatalyst **** \N \N t t \N 2023-11-15 05:57:47.936+00 2022-01-02 05:57:47.936+00 \N
26 gameguru@bitlair.nl f GameGuru **** \N \N t t \N 2024-08-13 13:29:52.872+00 2024-04-21 13:29:52.872+00 \N
27 byteblaze@bitlair.nl f ByteBlaze **** \N \N t t \N 2024-08-21 00:04:19.212+00 2023-11-19 00:04:19.212+00 \N
28 digitaldreamer@bitlair.nl f DigitalDreamer **** \N \N t t \N 2023-07-17 16:22:09.456+00 2022-04-11 16:22:09.456+00 \N
29 codecommander@techinc.nl f CodeCommander **** \N \N t t \N 2023-09-21 21:35:31.546+00 2023-09-21 21:35:31.546+00 \N
30 pixelpioneer@techinc.nl f PixelPioneer **** \N \N t t \N 2024-11-07 01:09:31.666+00 2024-04-27 01:09:31.666+00 \N
31 logiclegend@bitlair.nl t LogicLegend **** \N \N f f \N 2024-07-17 02:47:49.62+00 2022-05-11 02:47:49.62+00 \N
32 electronelite@bitlair.nl t ElectronElite **** \N \N f f \N 2024-12-23 13:47:16.68+00 2022-02-13 13:47:16.68+00 \N
33 nanonerd@bitlair.nl f NanoNerd **** \N \N t t \N 2024-12-21 23:57:32.604+00 2023-04-05 23:57:32.604+00 \N
34 circuitcaptain@techinc.nl f CircuitCaptain **** \N \N t t \N 2024-11-06 13:34:48.784+00 2024-11-06 13:34:48.784+00 \N
35 gamegenius@bitlair.nl f GameGenius **** \N \N t t \N 2023-06-07 06:49:56.772+00 2023-02-19 06:49:56.772+00 \N
36 bytebolt@bitlair.nl f ByteBolt **** \N \N t t \N 2023-07-24 14:10:39.648+00 2022-06-03 14:10:39.648+00 \N
37 cybercipher@techinc.nl f CyberCipher **** \N \N t t \N 2024-08-24 04:44:29.368+00 2023-03-01 04:44:29.368+00 \N
38 codeconqueror@techinc.nl f CodeConqueror **** \N \N t t \N 2023-10-30 11:09:57.184+00 2022-06-13 11:09:57.184+00 \N
39 pixelpaladin@gmail.com f PixelPaladin **** \N \N t t \N 2024-01-27 15:50:06.452+00 2022-02-14 15:50:06.452+00 \N
40 logiclore@bitlair.nl t LogicLore **** \N \N f f \N 2024-05-08 06:54:41.88+00 2023-08-30 06:54:41.88+00 \N
41 electronenigma@bitlair.nl f ElectronEnigma **** \N \N t t \N 2024-05-29 09:57:04.146+00 2023-02-24 09:57:04.146+00 \N
42 circuitconnoisseur@gmail.com t CircuitConnoisseur **** \N \N f f \N 2024-05-06 04:05:57.44+00 2024-05-06 04:05:57.44+00 \N
43 gameguardian@gmail.com f GameGuardian **** \N \N t t \N 2024-02-19 09:10:38.072+00 2024-02-19 09:10:38.072+00 \N
44 bytebandit@gmail.com f ByteBandit **** \N \N t t \N 2023-11-04 10:35:51.764+00 2021-10-21 10:35:51.764+00 \N
45 techtinker@gmail.com t TechTinker **** \N \N f f \N 2024-08-08 04:24:20+00 2022-02-06 04:24:20+00 \N
46 codecrusader@gmail.com t CodeCrusader **** \N \N f f \N 2024-07-21 14:48:48.68+00 2023-11-24 14:48:48.68+00 \N
47 pixelpirate@gmail.com f PixelPirate **** \N \N t t \N 2024-12-26 12:38:16.664+00 2021-12-22 12:38:16.664+00 \N
48 electroneagle@techinc.nl f ElectronEagle **** \N \N t t \N 2024-11-05 18:29:02.128+00 2023-04-07 18:29:02.128+00 \N
49 circuitsavant@bitlair.nl f CircuitSavant **** \N \N t t \N 2023-07-04 03:01:41.916+00 2023-07-04 03:01:41.916+00 \N
50 gamegladiator@bitlair.nl f GameGladiator **** \N \N t t \N 2024-08-02 12:33:41.892+00 2022-12-11 12:33:41.892+00 \N
51 byteblitz@bitlair.nl f ByteBlitz **** \N \N t t \N 2024-05-07 06:19:17.712+00 2023-04-19 06:19:17.712+00 \N
52 cybersavvy@bitlair.nl f CyberSavvy **** \N \N t t \N 2023-10-05 03:07:37.896+00 2023-10-05 03:07:37.896+00 \N
53 codecraftsman@gmail.com f CodeCraftsman **** \N \N t t \N 2024-10-13 10:03:12.416+00 2022-03-08 10:03:12.416+00 \N
54 pixelpro@techinc.nl f PixelPro **** \N \N t t \N 2023-12-22 14:05:04.864+00 2023-11-12 14:05:04.864+00 \N
55 logicloremaster@gmail.com f LogicLoreMaster **** \N \N t t \N 2024-07-17 15:38:02.816+00 2021-09-21 15:38:02.816+00 \N
56 electronemperor@techinc.nl f ElectronEmperor **** \N \N t t \N 2023-05-15 01:22:53.968+00 2023-05-15 01:22:53.968+00 \N
57 circuitchamp@gmail.com f CircuitChamp **** \N \N t t \N 2023-05-20 04:55:53.192+00 2023-05-20 04:55:53.192+00 \N