-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdump.sql
More file actions
1246 lines (1136 loc) · 99.7 KB
/
dump.sql
File metadata and controls
1246 lines (1136 loc) · 99.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.4
-- Dumped by pg_dump version 14.4
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;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: tags; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.tags (
id integer NOT NULL,
name character varying(40) NOT NULL,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE public.tags OWNER TO postgres;
--
-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.tags_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tags_id_seq OWNER TO postgres;
--
-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users (
id integer NOT NULL,
name character varying(240) NOT NULL,
email character varying(100) NOT NULL,
password character varying(240) NOT NULL,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE public.users OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: video_tags_bridge; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.video_tags_bridge (
id integer NOT NULL,
video_id integer,
tag_id integer,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE public.video_tags_bridge OWNER TO postgres;
--
-- Name: video_tags_bridge_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.video_tags_bridge_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.video_tags_bridge_id_seq OWNER TO postgres;
--
-- Name: video_tags_bridge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.video_tags_bridge_id_seq OWNED BY public.video_tags_bridge.id;
--
-- Name: videos; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.videos (
id integer NOT NULL,
title character varying(240) NOT NULL,
video_url character varying(240) NOT NULL,
user_id integer,
views bigint DEFAULT 0,
poster character varying(240) NOT NULL,
duration integer NOT NULL,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);
ALTER TABLE public.videos OWNER TO postgres;
--
-- Name: videos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.videos_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.videos_id_seq OWNER TO postgres;
--
-- Name: videos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.videos_id_seq OWNED BY public.videos.id;
--
-- Name: tags id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Name: video_tags_bridge id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.video_tags_bridge ALTER COLUMN id SET DEFAULT nextval('public.video_tags_bridge_id_seq'::regclass);
--
-- Name: videos id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.videos ALTER COLUMN id SET DEFAULT nextval('public.videos_id_seq'::regclass);
--
-- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.tags (id, name, created_at, updated_at) FROM stdin;
1 Comedy|Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
2 Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
3 Crime|Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
4 Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
5 Romance 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
6 Comedy|Drama|Romance 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
7 Action|Crime|Thriller 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
8 Action|Comedy 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
9 Comedy|Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
10 Comedy 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
11 Comedy|Romance 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
12 Comedy 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
13 Crime|Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
14 Action|Drama 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
15 Drama|Romance 2022-08-02 14:30:15.072648 2022-08-02 14:30:15.072648
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.users (id, name, email, password, created_at, updated_at) FROM stdin;
107 Siddhant Loya siddhantloya@outlook.com $2a$10$TJUwz33kfTZFKWLiOL1A/Otj2AO9UpK.xBDRu.hrQSU3Ribp78bGa 2022-09-08 23:48:59.12558 2022-09-08 23:48:59.12558
111 $2a$10$zQGRCL2ZdMNR8/K8mo7lIeDRzr4OVamo3bY0eKHjXRVqqRa3r34IK 2022-09-20 12:16:51.790091 2022-09-20 12:16:51.790091
114 bhow bhow@bhow.com $2a$10$4sDy5ctepB2eO851HpfJceYwY.Ugd1Gnaqi7Bvj5TskxlsxMwZWHa 2022-09-21 12:56:48.541582 2022-09-21 12:56:48.541582
1 Mikaela Kinnerley mkinnerley0@bravesites.com c2uJ4rEv 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
2 Patty Woolen pwoolen1@g.co hmMdNwjbXh 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
3 Gabriela Dackombe gdackombe2@phpbb.com zQaVPDBOvrq 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
4 Tiphany Ginglell tginglell3@xinhuanet.com fHWBNtd0cv 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
5 Lilyan Eunson leunson4@nbcnews.com khlvOpoqUqx 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
6 Anjela De Bruijn ade5@php.net v0SAjzjRtYf 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
7 Philbert Ickovicz pickovicz6@msu.edu tPOSnPGO1 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
8 Doralin Hardin dhardin7@wix.com NhrOr5KvD 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
9 Dulcy Do ddo8@fema.gov w6vADgB9 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
10 Ephrayim Marlow emarlow9@list-manage.com xkc9Io56x 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
11 Genni Wernham gwernhama@trellian.com hgoNbq 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
12 Mabelle Ousley mousleyb@aol.com tEHQkuh 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
13 Joleen Brunskill jbrunskillc@google.it INTG0En 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
14 Roddie Trematick rtrematickd@domainmarket.com CavHcQJnE8nx 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
15 Barth De Courtney bdee@parallels.com ZDSb5t 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
100 Carita Blazic cblazic2r@dion.ne.jp gsIvX4RDNU 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
99 Charis Aykroyd caykroyd2q@about.me UD7v3f4jv0 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
16 Waly Doogue wdooguef@jimdo.com 6y8fUYNape9x 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
17 Baillie Kopfen bkopfeng@twitpic.com jm2YCbzcqM 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
18 Adelind Gegg ageggh@rediff.com aPEzSEDNfoS 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
19 Bard Littley blittleyi@clickbank.net ithmdb7z 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
20 Britte Lambertson blambertsonj@usnews.com 3nHGQ5AeC 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
21 Stormi Fabbro sfabbrok@icio.us HucuYqN0R 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
22 Merry Mackett mmackettl@narod.ru bYwEuNDsZTP 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
23 Cassandre Norcutt cnorcuttm@wordpress.com N4691Jj9Ya7S 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
24 Stevie Shalliker sshallikern@github.com STZnWwHWID 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
25 Martguerita Reglar mreglaro@meetup.com vVVabd 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
26 Penrod Skedge pskedgep@geocities.com E2QgdZ 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
27 Dolores Craister dcraisterq@sciencedirect.com Lg38cfM 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
28 Shay Bebbington sbebbingtonr@exblog.jp 1nvmP4LDn 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
29 Dukie Hulles dhulless@wsj.com uTmhHg 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
30 Worden Swalteridge wswalteridget@jalbum.net ZAK1wnz9 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
31 Kissee Carnelley kcarnelleyu@fastcompany.com ONirgbWu 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
54 Ethan Couser ecouser1h@51.la 4GVR15O8 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
32 Codie Krolik ckrolikv@acquirethisname.com kwpB9mxjs3 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
33 Ted Filipson tfilipsonw@vinaora.com SIHJqCvgObGd 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
34 Karyl Maybery kmayberyx@pbs.org MOFnq8d3OH 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
35 Nadine Dovinson ndovinsony@home.pl yBkAOXD 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
36 Desi Penketh dpenkethz@goo.ne.jp UHSMOKBzqV 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
37 Bogey Kondrachenko bkondrachenko10@nymag.com P4Wq4YRkZD 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
38 Ibby Synan isynan11@uol.com.br 8A4hWpoQhxg 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
39 Ashil Fairs afairs12@dailymotion.com NX0gMINE 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
40 Ellyn Gaskell egaskell13@amazon.de 09mqb3D 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
41 Melva Huthart mhuthart14@youtu.be WAUYhmSBQ6DO 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
42 Nikita Slator nslator15@blogspot.com GjVAjB 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
43 Daryn Muslim dmuslim16@phoca.cz vO7oMB 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
44 Lonnard Lingner llingner17@so-net.ne.jp D6yOzphh 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
45 Fenelia Guiducci fguiducci18@thetimes.co.uk 7hJuNqexV0 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
46 Rand Bowart rbowart19@arstechnica.com 6IYdaEN 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
47 Elwin Swindall eswindall1a@w3.org LaAx711wB9Js 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
48 Cheston Shortland cshortland1b@intel.com HeFphQXGW 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
49 Kirby Soppett ksoppett1c@dropbox.com zxMqrFkT 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
50 Cecily Slimon cslimon1d@amazonaws.com KqpYiFQj0qDO 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
51 Allegra Tattoo atattoo1e@phpbb.com aH5ZQDDkcFH 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
52 Annmarie Cissell acissell1f@de.vu 6cVsDW7fFvN 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
53 Calypso Tibbotts ctibbotts1g@nba.com Nku2m21syt 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
55 Sabine Smartman ssmartman1i@freewebs.com pk95eHO69 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
56 Chas Domerc cdomerc1j@sakura.ne.jp S6OdX4X9u 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
57 Enrika Videan evidean1k@ebay.com Wz83ks 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
58 Sansone Marshall smarshall1l@youtube.com RxKVRd 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
59 Estevan Simoncini esimoncini1m@adobe.com Zcu81HjFFOk 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
60 Kathlin Lilywhite klilywhite1n@trellian.com H49vmzZ 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
61 Hermon Menghi hmenghi1o@mac.com JeS0zwvSsA 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
62 Rhiamon Spinke rspinke1p@paypal.com s3Ais72RIR 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
63 Major Corthes mcorthes1q@cam.ac.uk 5MmZX7w5s 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
64 Lanni Sargerson lsargerson1r@bbc.co.uk Us87pIa 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
65 Chrystel Grahlmans cgrahlmans1s@fema.gov zBDS1xDXSWD 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
66 Alverta Cicetti acicetti1t@noaa.gov DnDG5Bvp2eBy 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
67 Lane Sinncock lsinncock1u@msu.edu wcDLEUvR 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
68 Berri Pentelo bpentelo1v@globo.com neFUSw 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
69 Margalit Grinyer mgrinyer1w@house.gov qpYun93Wk 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
70 Judas Berlin jberlin1x@shop-pro.jp iX7De3moD30a 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
71 Edeline Skells eskells1y@msn.com kJxhZbmv9y 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
72 Erma Butchard ebutchard1z@hao123.com 1ugpzeMYu 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
73 Torry Currm tcurrm20@studiopress.com s70gaDiofM 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
74 Ignazio Gravenall igravenall21@google.com.hk jOfbPMaf2J 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
75 Worthy Goodband wgoodband22@de.vu i4rsBp2 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
76 Mildred Bloomfield mbloomfield23@blogger.com oEvlTVR 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
77 Kermie Legon klegon24@ibm.com LirmqwcyjqO 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
78 Ira Reolfo ireolfo25@baidu.com XhE1tymcIF4 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
79 Dallas Pulteneye dpulteneye26@wikia.com RuHIxs 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
80 Barbaraanne Biles bbiles27@godaddy.com jNgHA0AH 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
81 Stevy Asplen sasplen28@bandcamp.com Jv4Tep2aNUcS 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
82 Robenia Bolle rbolle29@comsenz.com ODcJnGqTJF8L 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
83 Daisie Drayn ddrayn2a@washington.edu 9nzmrnduXH 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
84 Falkner Covolini fcovolini2b@360.cn tuGn6pd5Xsd 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
85 Stanford Muslim smuslim2c@alexa.com vMI4YUqu 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
86 Burnaby Gostick bgostick2d@purevolume.com sPVbjcqjYe5 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
87 Adriena Caseri acaseri2e@ycombinator.com vG4WD20NMR 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
88 Duane Vaneev dvaneev2f@mayoclinic.com buXYzbNEVzh 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
89 Jessamine Amar jamar2g@drupal.org OiyWBiNuWl 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
90 Obadias Terrelly oterrelly2h@clickbank.net C6DbkYj2r 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
91 Christye Grimley cgrimley2i@goodreads.com xL1TtasDXKrX 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
92 Spencer Craggs scraggs2j@jalbum.net exMVLIrL 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
93 Ozzy Adamski oadamski2k@washingtonpost.com 2Fv40VJC 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
94 Wallache Keppin wkeppin2l@symantec.com 1rCGLj2eOwT5 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
95 Sergeant Coton scoton2m@sogou.com lAUceAMoV 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
96 Pandora Petrakov ppetrakov2n@rakuten.co.jp w6I5lWTIb3 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
97 Hew Girogetti hgirogetti2o@aol.com iRaX2KtdD 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
98 Osborne Haistwell ohaistwell2p@deliciousdays.com pskZMZzF4Q 2022-08-02 14:26:28.477822 2022-08-02 14:26:28.477822
\.
--
-- Data for Name: video_tags_bridge; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.video_tags_bridge (id, video_id, tag_id, created_at, updated_at) FROM stdin;
1 13 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
2 179 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
3 91 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
4 196 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
5 80 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
6 20 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
7 74 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
8 160 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
9 149 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
10 117 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
11 126 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
12 123 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
13 162 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
14 41 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
15 43 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
16 184 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
17 191 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
18 29 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
19 121 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
20 16 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
21 76 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
22 146 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
23 181 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
24 83 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
25 119 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
26 3 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
27 106 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
28 200 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
29 54 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
30 65 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
31 200 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
32 25 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
33 127 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
34 142 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
35 93 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
36 119 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
37 88 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
38 91 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
39 179 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
40 83 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
41 189 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
42 129 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
43 160 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
44 2 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
45 27 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
46 105 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
47 197 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
48 20 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
49 122 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
50 144 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
51 53 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
52 185 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
53 13 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
54 34 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
55 180 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
56 71 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
57 118 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
58 131 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
59 91 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
60 52 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
61 82 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
62 22 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
63 133 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
64 194 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
65 136 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
66 44 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
67 46 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
68 51 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
69 17 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
70 21 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
71 134 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
72 61 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
73 38 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
74 24 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
75 104 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
76 193 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
77 33 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
78 166 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
79 65 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
80 132 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
81 77 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
82 60 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
83 177 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
84 109 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
85 111 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
86 12 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
87 113 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
88 80 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
89 57 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
90 97 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
91 9 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
92 18 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
93 96 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
94 113 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
95 191 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
96 90 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
97 39 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
98 129 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
99 34 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
100 16 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
101 192 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
102 128 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
103 52 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
104 160 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
105 47 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
106 99 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
107 64 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
108 170 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
109 152 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
110 4 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
111 74 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
112 144 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
113 90 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
114 142 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
115 112 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
116 100 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
117 41 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
118 108 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
119 58 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
120 196 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
121 94 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
122 62 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
123 122 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
124 81 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
125 119 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
126 185 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
127 106 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
128 107 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
129 70 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
130 73 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
131 160 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
132 134 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
133 4 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
134 63 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
135 158 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
136 189 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
137 15 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
138 188 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
139 155 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
140 171 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
141 22 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
142 76 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
143 44 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
144 161 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
145 117 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
146 87 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
147 199 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
148 187 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
149 160 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
150 39 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
151 178 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
152 36 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
153 190 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
154 124 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
155 181 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
156 150 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
157 28 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
158 171 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
159 31 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
160 185 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
161 89 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
162 145 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
163 167 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
164 143 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
165 132 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
166 32 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
167 41 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
168 118 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
169 183 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
170 96 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
171 53 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
172 197 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
173 12 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
174 100 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
175 85 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
176 105 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
177 12 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
178 75 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
179 141 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
180 127 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
181 169 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
182 149 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
183 150 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
184 163 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
185 115 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
186 15 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
187 128 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
188 179 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
189 26 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
190 170 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
191 93 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
192 122 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
193 126 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
194 167 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
195 162 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
196 16 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
197 129 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
198 101 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
199 35 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
200 31 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
201 47 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
202 19 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
203 109 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
204 193 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
205 54 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
206 11 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
207 82 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
208 49 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
209 4 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
210 139 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
211 58 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
212 124 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
213 91 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
214 137 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
215 140 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
216 85 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
217 79 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
218 111 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
219 127 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
220 151 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
221 55 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
222 111 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
223 114 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
224 120 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
225 59 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
226 40 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
227 139 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
228 192 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
229 137 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
230 45 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
231 148 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
232 188 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
233 113 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
234 195 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
235 112 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
236 61 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
237 111 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
238 75 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
239 35 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
240 88 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
241 118 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
242 157 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
243 61 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
244 101 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
245 52 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
246 140 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
247 10 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
248 104 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
249 135 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
250 76 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
251 67 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
252 76 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
253 94 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
254 194 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
255 59 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
256 122 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
257 26 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
258 62 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
259 100 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
260 54 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
261 31 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
262 12 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
263 30 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
264 82 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
265 152 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
266 128 4 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
267 188 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
268 112 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
269 103 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
270 41 5 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
271 129 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
272 158 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
273 52 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
274 12 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
275 169 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
276 147 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
277 97 3 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
278 103 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
279 81 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
280 73 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
281 188 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
282 121 7 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
283 29 8 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
284 18 15 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
285 69 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
286 184 13 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
287 162 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
288 150 6 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
289 45 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
290 166 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
291 187 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
292 88 1 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
293 135 14 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
294 51 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
295 134 11 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
296 180 2 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
297 52 12 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
298 195 9 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
299 66 10 2022-08-02 14:30:55.14173 2022-08-02 14:30:55.14173
300 13 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
301 179 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
302 91 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
303 196 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
304 80 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
305 20 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
306 74 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
307 160 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
308 149 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
309 117 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
310 126 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
311 123 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
312 162 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
313 41 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
314 43 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
315 184 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
316 191 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
317 29 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
318 121 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
319 16 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
320 76 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
321 146 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
322 181 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
323 83 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
324 119 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
325 3 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
326 106 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
327 200 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
328 54 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
329 65 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
330 200 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
331 25 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
332 127 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
333 142 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
334 93 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
335 119 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
336 88 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
337 91 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
338 179 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
339 83 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
340 189 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
341 129 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
342 160 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
343 2 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
344 27 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
345 105 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
346 197 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
347 20 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
348 122 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
349 144 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
350 53 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
351 185 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
352 13 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
353 34 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
354 180 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
355 71 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
356 118 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
357 131 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
358 91 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
359 52 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
360 82 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
361 22 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
362 133 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
363 194 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
364 136 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
365 44 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
366 46 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
367 51 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
368 17 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
369 21 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
370 134 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
371 61 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
372 38 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
373 24 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
374 104 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
375 193 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
376 33 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
377 166 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
378 65 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
379 132 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
380 77 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
381 60 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
382 177 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
383 109 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
384 111 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
385 12 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
386 113 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
387 80 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
388 57 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
389 97 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
390 9 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
391 18 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
392 96 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
393 113 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
394 191 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
395 90 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
396 39 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
397 129 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
398 34 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
399 16 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
400 192 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
401 128 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
402 52 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
403 160 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
404 47 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
405 99 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
406 64 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
407 170 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
408 152 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
409 4 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
410 74 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
411 144 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
412 90 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
413 142 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
414 112 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
415 100 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
416 41 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
417 108 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
418 58 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
419 196 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
420 94 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
421 62 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
422 122 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
423 81 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
424 119 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
425 185 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
426 106 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
427 107 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
428 70 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
429 73 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
430 160 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
431 134 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
432 4 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
433 63 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
434 158 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
435 189 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
436 15 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
437 188 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
438 155 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
439 171 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
440 22 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
441 76 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
442 44 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
443 161 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
444 117 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
445 87 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
446 199 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
447 187 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
448 160 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
449 39 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
450 178 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
451 36 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
452 190 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
453 124 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
454 181 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
455 150 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
456 28 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
457 171 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
458 31 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
459 185 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
460 89 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
461 145 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
462 167 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
463 143 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
464 132 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
465 32 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
466 41 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
467 118 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
468 183 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
469 96 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
470 53 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
471 197 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
472 12 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
473 100 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
474 85 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
475 105 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
476 12 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
477 75 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
478 141 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
479 127 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
480 169 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
481 149 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
482 150 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
483 163 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
484 115 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
485 15 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
486 128 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
487 179 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
488 26 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
489 170 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
490 93 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
491 122 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
492 126 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
493 167 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
494 162 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
495 16 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
496 129 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
497 101 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
498 35 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
499 31 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
500 47 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
501 19 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
502 109 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
503 193 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
504 54 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
505 11 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
506 82 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
507 49 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
508 4 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
509 139 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
510 58 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
511 124 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
512 91 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
513 137 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
514 140 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
515 85 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
516 79 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
517 111 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
518 127 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
519 151 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
520 55 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
521 111 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
522 114 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
523 120 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
524 59 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
525 40 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
526 139 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
527 192 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
528 137 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
529 45 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
530 148 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
531 188 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
532 113 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
533 195 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
534 112 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
535 61 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
536 111 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
537 75 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
538 35 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
539 88 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
540 118 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
541 157 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
542 61 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
543 101 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
544 52 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
545 140 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
546 10 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
547 104 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
548 135 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
549 76 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
550 67 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
551 76 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
552 94 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
553 194 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
554 59 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
555 122 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
556 26 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
557 62 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
558 100 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
559 54 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
560 31 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
561 12 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
562 30 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
563 82 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
564 152 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
565 128 4 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
566 188 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
567 112 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
568 103 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
569 41 5 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
570 129 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
571 158 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
572 52 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
573 12 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
574 169 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
575 147 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
576 97 3 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
577 103 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
578 81 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
579 73 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
580 188 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
581 121 7 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
582 29 8 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
583 18 15 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
584 69 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
585 184 13 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
586 162 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
587 150 6 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
588 45 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
589 166 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
590 187 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
591 88 1 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
592 135 14 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
593 51 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
594 134 11 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
595 180 2 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
596 52 12 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
597 195 9 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
598 66 10 2022-08-02 14:31:04.619144 2022-08-02 14:31:04.619144
\.
--
-- Data for Name: videos; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.videos (id, title, video_url, user_id, views, poster, duration, created_at, updated_at) FROM stdin;
1 dis parturient montes nascetur ridiculus http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 53 91299 https://picsum.photos/350/200 235 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
2 donec ut dolor morbi http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 88 14869 https://picsum.photos/350/200 1045 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
3 enim in tempor turpis nec euismod scelerisque quam turpis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 6 47244 https://picsum.photos/350/200 514 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
4 nibh fusce lacus purus aliquet http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 76 16337 https://picsum.photos/350/200 962 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
5 nibh in hac habitasse platea dictumst aliquam augue quam http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 98 74508 https://picsum.photos/350/200 704 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
6 ipsum integer a nibh in quis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 63 68109 https://picsum.photos/350/200 711 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
7 justo pellentesque viverra http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 22 55462 https://picsum.photos/350/200 170 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
8 molestie sed justo pellentesque viverra pede ac http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 85 4771 https://picsum.photos/350/200 950 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
9 pellentesque ultrices phasellus id sapien in sapien http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 31 21736 https://picsum.photos/350/200 852 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
10 turpis elementum ligula vehicula consequat http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 30 47753 https://picsum.photos/350/200 282 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
11 etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 68 65605 https://picsum.photos/350/200 1045 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
12 duis ac nibh fusce lacus purus aliquet http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 20 26065 https://picsum.photos/350/200 666 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
13 est lacinia nisi venenatis tristique fusce congue diam id http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 58 11107 https://picsum.photos/350/200 229 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
14 magna ac consequat metus sapien http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 23 63218 https://picsum.photos/350/200 811 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
15 vitae quam suspendisse potenti nullam porttitor lacus at http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 70 32834 https://picsum.photos/350/200 237 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
16 nisi eu orci mauris lacinia sapien quis libero nullam sit http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 66 52776 https://picsum.photos/350/200 420 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
17 id sapien in sapien iaculis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 53 9675 https://picsum.photos/350/200 686 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
18 non pretium quis lectus suspendisse potenti in eleifend http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 62 64902 https://picsum.photos/350/200 459 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
19 nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 46 41865 https://picsum.photos/350/200 1105 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
20 ipsum primis in faucibus orci luctus et http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 11 47929 https://picsum.photos/350/200 500 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
21 pede malesuada in imperdiet et http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 1 3771 https://picsum.photos/350/200 951 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
22 vestibulum proin eu http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 62 98908 https://picsum.photos/350/200 146 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
23 sed lacus morbi sem mauris laoreet ut rhoncus aliquet http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 15 7102 https://picsum.photos/350/200 242 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
24 vel lectus in quam fringilla rhoncus http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 85 96887 https://picsum.photos/350/200 543 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
25 nibh ligula nec sem duis aliquam convallis nunc proin at http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 24 61131 https://picsum.photos/350/200 414 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
26 odio porttitor id http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 19 70976 https://picsum.photos/350/200 540 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
27 id consequat in consequat ut nulla sed accumsan http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 13 74168 https://picsum.photos/350/200 806 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
28 eget rutrum at http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 23 19740 https://picsum.photos/350/200 1174 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
29 eget orci vehicula condimentum curabitur in libero ut massa volutpat http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 21 33221 https://picsum.photos/350/200 805 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
30 nullam orci pede venenatis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 46 55777 https://picsum.photos/350/200 845 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
31 venenatis lacinia aenean sit http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 14 95983 https://picsum.photos/350/200 520 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
32 nisi at nibh in hac habitasse http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 57 37846 https://picsum.photos/350/200 681 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
33 posuere metus vitae ipsum aliquam http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 93 29204 https://picsum.photos/350/200 764 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
34 lacus purus aliquet at feugiat non http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 47 33306 https://picsum.photos/350/200 70 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
35 posuere felis sed lacus morbi sem mauris laoreet ut http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 99 79164 https://picsum.photos/350/200 742 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
36 rutrum rutrum neque aenean auctor gravida http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 70 75725 https://picsum.photos/350/200 582 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
37 ut blandit non interdum in ante http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 52 83756 https://picsum.photos/350/200 181 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
38 nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 48 97901 https://picsum.photos/350/200 804 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
39 eu interdum eu tincidunt in leo maecenas pulvinar lobortis est http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 45 41406 https://picsum.photos/350/200 608 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
40 amet consectetuer adipiscing elit proin http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 96 65772 https://picsum.photos/350/200 545 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
41 hac habitasse platea dictumst aliquam augue quam sollicitudin vitae http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 44 90161 https://picsum.photos/350/200 295 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
42 pretium quis lectus http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 33 4019 https://picsum.photos/350/200 303 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
43 libero non mattis pulvinar http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 62 66750 https://picsum.photos/350/200 1006 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
44 id consequat in consequat ut nulla sed accumsan felis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 22 90869 https://picsum.photos/350/200 767 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
45 donec ut mauris eget massa tempor convallis nulla neque libero http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 29 70224 https://picsum.photos/350/200 41 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
46 mauris eget massa tempor convallis http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 35 42451 https://picsum.photos/350/200 141 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
47 ligula pellentesque ultrices phasellus http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 24 21719 https://picsum.photos/350/200 128 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
48 enim leo rhoncus sed vestibulum sit http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 43 92959 https://picsum.photos/350/200 829 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
49 turpis sed ante vivamus tortor duis mattis egestas http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 13 13764 https://picsum.photos/350/200 1074 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
50 in felis donec semper sapien a libero nam http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 49 23536 https://picsum.photos/350/200 706 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
51 habitasse platea dictumst morbi vestibulum velit id http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 8 10902 https://picsum.photos/350/200 1146 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
52 maecenas tincidunt lacus at velit http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 100 84567 https://picsum.photos/350/200 551 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448
53 tincidunt in leo maecenas http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 12 45859 https://picsum.photos/350/200 982 2022-08-02 14:29:36.814448 2022-08-02 14:29:36.814448