-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
1170 lines (1117 loc) · 116 KB
/
log.txt
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
URL: /
Timestamp: Mon Apr 17 2023 21:47:11 GMT+0200 (Central European Summer Time)
URL: /main.js
Timestamp: Mon Apr 17 2023 21:47:11 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:47:11 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:47:15 GMT+0200 (Central European Summer Time)
URL: /main.js
Timestamp: Mon Apr 17 2023 21:47:15 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:47:15 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:47:16 GMT+0200 (Central European Summer Time)
URL: /main.js
Timestamp: Mon Apr 17 2023 21:47:16 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:47:16 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:47:59 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:47:59 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:48:00 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:48:00 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:48:00 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:48:00 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Mon Apr 17 2023 21:48:03 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:48:03 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Mon Apr 17 2023 21:48:22 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:48:23 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:48:43 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:48:43 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 21:54:04 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:54:04 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Mon Apr 17 2023 21:54:06 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 21:54:06 GMT+0200 (Central European Summer Time)
<<<<<<< Updated upstream
URL: /documentation
Timestamp: Mon Apr 17 2023 22:02:00 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 22:02:00 GMT+0200 (Central European Summer Time)
=======
URL: /
Timestamp: Mon Apr 17 2023 22:01:36 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 22:01:36 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Mon Apr 17 2023 22:01:39 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Mon Apr 17 2023 22:01:40 GMT+0200 (Central European Summer Time)
>>>>>>> Stashed changes
URL: /
Timestamp: Tue Apr 18 2023 10:59:09 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 10:59:09 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Tue Apr 18 2023 10:59:13 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 10:59:13 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Tue Apr 18 2023 12:02:57 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:02:58 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Tue Apr 18 2023 12:02:59 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:02:59 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Tue Apr 18 2023 12:03:01 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:03:01 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Tue Apr 18 2023 12:03:02 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:03:02 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:03:08 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Tue Apr 18 2023 12:03:10 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:03:12 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Tue Apr 18 2023 12:16:38 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:16:38 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Tue Apr 18 2023 12:16:40 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Tue Apr 18 2023 12:16:40 GMT+0200 (Central European Summer Time)
URL: /
Timestamp: Wed Apr 19 2023 13:43:55 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Wed Apr 19 2023 13:43:55 GMT+0200 (Central European Summer Time)
URL: /documentation
Timestamp: Wed Apr 19 2023 13:43:58 GMT+0200 (Central European Summer Time)
URL: /favicon.ico
Timestamp: Wed Apr 19 2023 13:44:00 GMT+0200 (Central European Summer Time)
::1 - - [21/Apr/2023:12:33:01 +0000] "GET /movies HTTP/1.1" 200 748 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:34:13 +0000] "GET / HTTP/1.1" 200 24 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:34:16 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:34:18 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:36:06 +0000] "GET /index HTTP/1.1" 404 144 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:36:09 +0000] "GET / HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:36:11 +0000] "GET / HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:37:10 +0000] "GET / HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:37:16 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:37:18 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:38:19 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:38:20 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:38:49 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:38:50 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:32 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:33 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:34 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:41 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:42 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:43 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [21/Apr/2023:12:39:43 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:11:15:01 +0000] "GET /students/Ben%20Cohen HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [02/May/2023:11:15:16 +0000] "GET /students/Ben%20Cohen HTTP/1.1" 404 159 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:11:15:37 +0000] "GET / HTTP/1.1" 200 24 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:11:15:37 +0000] "GET /favicon.ico HTTP/1.1" 404 150 "http://localhost:8080/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:14:37:57 +0000] "GET / HTTP/1.1" 200 24 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:14:38:02 +0000] "GET /movies HTTP/1.1" 200 748 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [02/May/2023:14:39:05 +0000] "GET /movies HTTP/1.1" 200 748 "-" "PostmanRuntime/7.32.2"
::1 - - [02/May/2023:14:56:34 +0000] "GET /movies HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:09:40:49 +0000] "GET /movies/AIR HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:41:01 +0000] "GET /movies/ HTTP/1.1" 200 748 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:41:11 +0000] "GET /movies/65 HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:18 +0000] "GET /movies/65 HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:23 +0000] "GET /movies/ HTTP/1.1" 200 748 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:37 +0000] "GET /movies/Fight%20Club HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:39 +0000] "GET /movies/FightClub HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:41 +0000] "GET /movies/Fight HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:43 +0000] "GET /movies/ HTTP/1.1" 200 748 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:44:50 +0000] "GET /movies/65 HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:45:41 +0000] "GET /movies/65 HTTP/1.1" 200 64 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:09:46:04 +0000] "GET /movies/Fight%20Club HTTP/1.1" 200 61 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:25:04 +0000] "GET /movies/65 HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:10:25:24 +0000] "GET /movies/Lord20%Of20%The20%Rings HTTP/1.1" 400 1332 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:10:25:40 +0000] "GET /movies/Lord20%of20%the20%rings HTTP/1.1" 400 1332 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:10:27:55 +0000] "GET /movies/Genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:28:01 +0000] "GET /movies/henre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:28:03 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:28:19 +0000] "GET /movies/ HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:28:27 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 1216 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:28:52 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 1216 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:29:47 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 1216 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:30:27 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 195 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:34:34 +0000] "GET /movies/director HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:34:47 +0000] "GET /movies/director HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:35:17 +0000] "GET /movies/director/Peter20%Jackson HTTP/1.1" 400 1324 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:35:32 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 200 329 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:39:45 +0000] "POST /users HTTP/1.1" 201 108 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:40:43 +0000] "POST /users HTTP/1.1" 201 85 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:47:24 +0000] "PUT /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:47:50 +0000] "PUT /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:47:54 +0000] "PUT /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:47:57 +0000] "PUT /user/2 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:48:02 +0000] "PUT /users/2 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:48:05 +0000] "PUT /users/1 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:48:44 +0000] "PUT /users/1 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:48:48 +0000] "PUT /users/2 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:48:51 +0000] "PUT /users/1 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:49:57 +0000] "POST /users HTTP/1.1" 400 15 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:50:00 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:50:05 +0000] "PUT /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:51:05 +0000] "PUT /users/1 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:53:39 +0000] "PUT /users/1 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:53:42 +0000] "PUT /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:53:49 +0000] "GET /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:53:53 +0000] "GET /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:53:57 +0000] "GET /user/1 HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:55:33 +0000] "PATCH /users HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:55:38 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:55:42 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:55:46 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:55:52 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:10:56:58 +0000] "PUT /users/1 HTTP/1.1" 200 29 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:09 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:10 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:14 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:17 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:20 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:23 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:00:34 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:07:47 +0000] "POST /users/1/The%20lord%20of%20the%20rings HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:11:07 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:11:47 +0000] "GET /users/1 HTTP/1.1" 404 146 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:11:19:46 +0000] "POST /users3 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:19:48 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:19:53 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:19:54 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:19:54 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:20:00 +0000] "GET /users/2 HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:20:05 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:20:27 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:11:20:28 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:45:25 +0000] "GET /movies/Lord20%of20%the20%rings HTTP/1.1" 400 1332 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:13:46:24 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:25 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:29 +0000] "POST /movies HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:32 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:37 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:39 +0000] "GET /user HTTP/1.1" 404 143 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:43 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:46:46 +0000] "GET /movies/users HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:52:56 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:54:25 +0000] "GET /movies/The%20lord%20of%the%rings HTTP/1.1" 400 1334 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:54:36 +0000] "GET /movies/The%20lord%20of%20the%20rings HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:13:54:57 +0000] "GET /movies/AIR HTTP/1.1" 200 1235 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:02:28 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 195 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:03:13 +0000] "GET /movies/directors HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:03:20 +0000] "GET /movies/directors/Peter%20Jackson HTTP/1.1" 404 171 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:03:26 +0000] "GET /movies/directors/Peter20%Jackson HTTP/1.1" 404 173 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:03:32 +0000] "GET /movies/directors/Peter%20Jackson HTTP/1.1" 404 171 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:03:46 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 200 329 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:10:44 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:11:33 +0000] "POST /users HTTP/1.1" 201 79 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:12:34 +0000] "PUT /users/1 HTTP/1.1" 200 55 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:13:24 +0000] "PUT /users/1/AIR HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:13:34 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:13:55 +0000] "POST /users/1/65 HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:14:11 +0000] "POST /users/2/65 HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:14:14 +0000] "POST /users/1/65 HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:15:34 +0000] "POST /users/1/65 HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:15:42 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:17:15 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:17:17 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:17:18 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:17:23 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:00 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:04 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:08 +0000] "POST /users/12AIR HTTP/1.1" 404 151 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:10 +0000] "POST /users/2AIR HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:12 +0000] "POST /users/2/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:14 +0000] "POST /users/2/ HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:16 +0000] "POST /users/2 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:17 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:25 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:46 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:47 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:22:52 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:23:04 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:28:09 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:28:11 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:28:37 +0000] "PUT /users/1 HTTP/1.1" 200 55 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:28:45 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:29:12 +0000] "POST /users/1/Lord%20of%20the%20rings HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:29:16 +0000] "PUT /users/1/Lord%20of%20the%20rings HTTP/1.1" 404 170 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:29:19 +0000] "POST /users/1/Lord%20of%20the%20rings HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:29:27 +0000] "POST /users/1/Lord%20of%20the%20rings HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:31:30 +0000] "POST /users/1/Lord%20of%20the%20rings HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:32:00 +0000] "POST /users/1/Lord%20of%20the%20rings HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:32:11 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:34:17 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:34:27 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:34:32 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:34:57 +0000] "PUT /users/1 HTTP/1.1" 200 54 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:35:04 +0000] "POST /users/1/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:35:05 +0000] "POST /users/1/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:37:51 +0000] "POST /users/1/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:37:56 +0000] "POST /users/1/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:37:59 +0000] "POST /users/2/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:38:01 +0000] "POST /users/1/65 HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:38:07 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:48:07 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:48:11 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:14:48:19 +0000] "POST /users/1/AIR HTTP/1.1" 400 12 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:05:32 +0000] "PUT /users/1/AIR HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:13:12 +0000] "POST /users/1/AIR HTTP/1.1" 500 1374 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:17:31 +0000] "POST /users/1/AIR HTTP/1.1" 201 34 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:18:01 +0000] "POST /users/1/AIR HTTP/1.1" 201 34 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:18:05 +0000] "POST /users/1/65 HTTP/1.1" 201 34 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:30:53 +0000] "POST /users/2/The%20lord%20of%20%the%20rings HTTP/1.1" 400 1339 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:31:53 +0000] "DELETE /users/2/AIR HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:32:39 +0000] "DELETE /users/2/AIR HTTP/1.1" 200 38 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:15:33:19 +0000] "DELETE /users/2 HTTP/1.1" 200 23 "-" "PostmanRuntime/7.32.2"
::1 - - [03/May/2023:16:02:20 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [03/May/2023:16:02:25 +0000] "GET /documentation.html HTTP/1.1" 404 157 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [04/May/2023:09:45:08 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [04/May/2023:09:51:43 +0000] "PATCH /users/2/AIR/ HTTP/1.1" 201 34 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:20:33 +0000] "PATCH /users/2/AIR/ HTTP/1.1" 404 153 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:20:34 +0000] "PATCH /users/2/AIR/ HTTP/1.1" 404 153 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:20:45 +0000] "PATCH /users/2/favorites/AIR/ HTTP/1.1" 400 15 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:20:50 +0000] "PATCH /users/2/favorites/AIR HTTP/1.1" 400 15 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:21:01 +0000] "PATCH /users/2/favorites/65 HTTP/1.1" 400 15 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:21:05 +0000] "PATCH /users/2/favorites/help HTTP/1.1" 400 15 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:21:34 +0000] "PATCH /users/2/favorites/ HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:21:39 +0000] "PATCH /users/2/favorites/65 HTTP/1.1" 201 34 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:30:19 +0000] "PATCH /movies/title/directorName HTTP/1.1" 404 166 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:10:30:23 +0000] "PATCH /movies/65 HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:00 +0000] "PATCH /movies/ HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:02 +0000] "PATCH /movies HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:17 +0000] "PATCH /movie HTTP/1.1" 404 146 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:23 +0000] "PATCH /movies HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:33 +0000] "PATCH /movies HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:37 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:57 +0000] "GET /movies/title HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:17:59 +0000] "GET /movies/titles+ HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:18:00 +0000] "GET /movies/titles HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:18:10 +0000] "GET /movies/title HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:18:20 +0000] "GET /movies/title HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:18:28 +0000] "GET /movies/t65 HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:18:31 +0000] "GET /movies/65 HTTP/1.1" 200 966 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:19:06 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 195 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:19:24 +0000] "GET /movies/directors HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:19:38 +0000] "GET /movies/director HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:19:43 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 200 329 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:11:20:27 +0000] "POST /users HTTP/1.1" 500 1386 "-" "PostmanRuntime/7.32.2"
::1 - - [04/May/2023:13:06:55 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [05/May/2023:11:49:40 +0000] "POST //movies/65 HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [05/May/2023:11:49:46 +0000] "POST /movies/65 HTTP/1.1" 404 149 "-" "PostmanRuntime/7.32.2"
::1 - - [05/May/2023:11:50:11 +0000] "POST /movies/AIR HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [05/May/2023:11:50:19 +0000] "GET /movies/AIR HTTP/1.1" 200 1235 "-" "PostmanRuntime/7.32.2"
::1 - - [05/May/2023:11:52:31 +0000] "GET /movies/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [05/May/2023:11:52:42 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 195 "-" "PostmanRuntime/7.32.2"
::1 - - [16/May/2023:17:03:33 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 195 "-" "PostmanRuntime/7.32.2"
::1 - - [16/May/2023:17:03:41 +0000] "GET /movies/ HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [16/May/2023:17:03:54 +0000] "POST /movies/ HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [16/May/2023:17:04:01 +0000] "GET /movies/ HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:04:10 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:04:42 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:05:59 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:06:15 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:07:03 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:07:40 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:08:02 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:08:15 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:11:09 +0000] "GET /movies HTTP/1.1" 200 3571 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:12:38 +0000] "GET /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:13:49 +0000] "GET /users HTTP/1.1" 201 1425 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:14:50 +0000] "GET /users HTTP/1.1" 201 1425 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:14:57 +0000] "GET /users HTTP/1.1" 201 1425 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:15:24 +0000] "GET /users HTTP/1.1" 201 1425 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:19:14 +0000] "GET /users/jane_smith HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:19:23 +0000] "GET /users/jane_smith HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:19:26 +0000] "GET /users/jane_smith HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [17/May/2023:18:19:30 +0000] "GET /users/jonathan HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:06:40 +0000] "GET /users/jonathan HTTP/1.1" 500 83 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:14:45 +0000] "GET /mydatabase HTTP/1.1" 404 149 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [18/May/2023:14:15:00 +0000] "GET /movies HTTP/1.1" 500 81 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:22:18 +0000] "GET /movies HTTP/1.1" 500 81 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:23:53 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:23:59 +0000] "GET /users HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:32:53 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:40:17 +0000] "GET //movies/titles HTTP/1.1" 404 153 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:40:20 +0000] "GET //movies/title HTTP/1.1" 404 152 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:41:53 +0000] "GET //movies/Goodfellas HTTP/1.1" 404 157 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:41:58 +0000] "GET /movies/Goodfellas HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:42:37 +0000] "GET /movie/Goodfellas HTTP/1.1" 404 155 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:42:39 +0000] "GET /movies/Goodfellas HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:42:41 +0000] "GET /movies/ HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:42:55 +0000] "GET /movies/pulp20%fiction HTTP/1.1" 400 1323 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:43:10 +0000] "GET /movies/pulp%20fiction HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:43:21 +0000] "GET /movies/Pulp%20Fiction HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:43:25 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:43:38 +0000] "GET /movies/Inception HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:44:16 +0000] "GET /movies/inception HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:44:20 +0000] "GET /movies/ HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:44:25 +0000] "GET /movies/6463a8ddd49286e7854b657f HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:44:29 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:45:07 +0000] "GET /movies/AIR HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:45:09 +0000] "GET /movies/ HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:45:31 +0000] "GET /movies/Inception HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:47:09 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:48:02 +0000] "GET /movies/inception HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:48:06 +0000] "GET /movies/Inception HTTP/1.1" 200 541 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:33 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:40 +0000] "GET /movies/genre/Sci-Fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:43 +0000] "GET /movies/Genre/Sci-Fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:46 +0000] "GET /movies/genre/Sci-Fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:50 +0000] "GET /movies/genre/ HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:50:52 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:51:08 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:51:12 +0000] "GET /movies/genre/Sci-Fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:52:44 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:52:46 +0000] "GET /movies/genre/fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:17 +0000] "GET /movies/genre/fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:20 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:28 +0000] "GET /movies/genre/Sci-Fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:29 +0000] "GET /movies/genre/Sci-fi HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:32 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:53:40 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:54:11 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:56:28 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:14:57:26 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:00:04 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:00:07 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:00:12 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:00:14 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:00:15 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:01:05 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:01:45 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:01:51 +0000] "GET /movies/director/peter%20jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:01:55 +0000] "GET /movies/Director/peter%20jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:01:58 +0000] "GET /movies/Director/Peter%20Jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:02:17 +0000] "GET /movies/Director/Peter%20Jackson HTTP/1.1" 200 615 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:02:55 +0000] "GET /users HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:03:38 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:04:01 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:06:32 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:07:25 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:07:33 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:10:06 +0000] "POST /users HTTP/1.1" 500 1350 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:11:18 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:11:55 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:14:18 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:14:59 +0000] "GET /users HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:15:36 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:16:24 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:17:34 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:18:13 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:18:14 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:22:50 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:33:55 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:34:29 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:36:08 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:15:36:14 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:18:16 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:18:27 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:20:41 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:20:58 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:21:00 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:22:39 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:22:53 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [18/May/2023:16:51:15 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:03:33 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:03:42 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:04:07 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:39:09 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:39:31 +0000] "PUT /users/2 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:39:35 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:43:41 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:11:44:04 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:02:05 +0000] "POST /users/1 HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:02:18 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:03:17 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:03:34 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:04:16 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:04 +0000] "PUT /users/1 HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:13 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:16 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:20 +0000] "GET /users/1 HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:22 +0000] "GET /users/2 HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:25 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:39 +0000] "POST /users/jane_smith HTTP/1.1" 404 156 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:42 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:48 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:54 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:05:59 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:06:04 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:06:29 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:06:30 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:06:36 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:06:37 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:07:06 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:07:39 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:07:44 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:08:07 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:08:17 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:08:41 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:09:01 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:09:24 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:09:24 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:09:27 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:26:17 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:28:03 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:29:10 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:30:17 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:30:52 +0000] "POST /users/jane_smith HTTP/1.1" 404 156 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:30:57 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:31:00 +0000] "GET /users HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:32:39 +0000] "GET /users/Jane_Smith HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:32:45 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:34:15 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:35:02 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:35:13 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:36:52 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:36:59 +0000] "GET /users HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:37:18 +0000] "DELETE /users/david_wilson HTTP/1.1" 400 26 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:37:25 +0000] "DELETE /users/david HTTP/1.1" 400 19 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:37:32 +0000] "GET /users/ HTTP/1.1" 200 1452 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:39:25 +0000] "GET /users/jane_smith HTTP/1.1" 200 149 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:39:34 +0000] "GET /users/jane_smith/movies HTTP/1.1" 404 162 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:39:43 +0000] "POST /users/jane_smith/movies/6463a8ddd49286e7854b657f HTTP/1.1" 200 175 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:40:27 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 24 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:40:31 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 24 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:41:18 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 24 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:41:23 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 24 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:43:14 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 24 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:43:45 +0000] "GET /users/jane_smith HTTP/1.1" 200 175 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:44:54 +0000] "PUT /users/jane_smith HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:45:32 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:45:38 +0000] "DELETE /users/jane_smith HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:45:50 +0000] "DELETE /users/jane_smith HTTP/1.1" 200 23 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:46:29 +0000] "POST /users/jane_smith HTTP/1.1" 404 156 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:50:42 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:51:23 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:51:29 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:51:38 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:51:51 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:52:29 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:52:37 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:52:58 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:44 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:45 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:51 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:55 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:56 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:57 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:57 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:58 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:58 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:53:59 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:54:03 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:55:09 +0000] "GET /users HTTP/1.1" 200 1302 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:56:06 +0000] "POST /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 200 181 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:56:24 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:57:01 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:59:14 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:59:29 +0000] "GET /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 190 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:59:34 +0000] "GET /users/michael_brown HTTP/1.1" 200 181 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:12:59:42 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:13:00:36 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:13:00:52 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 193 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:13:26:51 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [19/May/2023:13:33:12 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:33:30 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:34:10 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:38:20 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:38:28 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:39:13 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:39:25 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:39:41 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:40:17 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:40:58 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:41:11 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:41:53 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:42:15 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:42:28 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:42:51 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:42:55 +0000] "PUT /users HTTP/1.1" 404 144 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:43:02 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:43:07 +0000] "POST /users HTTP/1.1" 500 1390 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:45:35 +0000] "POST /users HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:55:18 +0000] "POST /users HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:57:27 +0000] "POST /users HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:58:47 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:59:17 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:11:59:30 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:00:36 +0000] "POST /users HTTP/1.1" 201 178 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:19:38 +0000] "GET /users HTTP/1.1" 200 1507 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:21:11 +0000] "GET / HTTP/1.1" 404 139 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [20/May/2023:12:21:12 +0000] "GET / HTTP/1.1" 404 139 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [20/May/2023:12:21:17 +0000] "GET /documentation HTTP/1.1" 404 152 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [20/May/2023:12:21:21 +0000] "GET /documentation.html HTTP/1.1" 404 157 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [20/May/2023:12:43:26 +0000] "DELETE /users/6463ad13d49286e7854b658b/favorites/6463a8ddd49286e7854b657f HTTP/1.1" 400 1248 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:43:44 +0000] "GET /users/ HTTP/1.1" 400 1248 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:43:51 +0000] "GET /users HTTP/1.1" 400 1260 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:43:59 +0000] "GET /users HTTP/1.1" 200 1507 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:45:14 +0000] "DELETE /users/6463ad13d49286e7854b658b/favorites/6463a8ddd49286e7854b657f HTTP/1.1" 200 74 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:46:47 +0000] "GET /users/6463ad13d49286e7854b658b HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:46:54 +0000] "GET /users HTTP/1.1" 200 1507 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:12:47:03 +0000] "GET /users/michael_brown HTTP/1.1" 200 181 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:14:42:57 +0000] "GET /users HTTP/1.1" 200 1507 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:14:52:45 +0000] "PUT /users HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:14:52:50 +0000] "PUT /users HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:14:53:08 +0000] "PUT /users/michael_brown HTTP/1.1" 400 1202 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:14:53:29 +0000] "PUT /users/michael_brown HTTP/1.1" 200 181 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:15:33:38 +0000] "PUT /movies HTTP/1.1" 404 145 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:15:33:48 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:12:38 +0000] "GET /movies/genres/drma HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:12:41 +0000] "GET /movies/genres/drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:12:44 +0000] "GET /movies/genres/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:12:48 +0000] "GET /movies/genre/Drama HTTP/1.1" 404 157 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:12:54 +0000] "GET /movies/genre/drama HTTP/1.1" 404 157 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:13:06 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:13:12 +0000] "GET /movies/genre/fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:13:17 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:13:29 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:15:25 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:15:29 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:16:51 +0000] "GET /movies/genre/Drama HTTP/1.1" 404 49 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:20:53 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:20:58 +0000] "GET /movies/genre/rama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:21:00 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:21:04 +0000] "GET /movies/genre/Fanasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:21:05 +0000] "GET /movies/genre/Fanasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:22:34 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:26:03 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 400 16 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:28:56 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:29:00 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:29:28 +0000] "GET /movies/genre/drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:29:33 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:30:29 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:31 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:32 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:39 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:40 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:54 +0000] "GET /movies/genre/fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:32:57 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:33:51 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 70 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:34:16 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 70 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:36:21 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:37:14 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [20/May/2023:22:37:28 +0000] "GET /movies/genre/Drama HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:10:22 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:10:24 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:10:29 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:12:23 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:12:48 +0000] "GET /movies/genre/Ddrama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:12:58 +0000] "GET /movies/genre/ HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:13:00 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:13:02 +0000] "GET /movies/genres HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:13:06 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:13:55 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:13:59 +0000] "GET /movies/ HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:14:01 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:15:55 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:16:08 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 615 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:16:25 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:19:04 +0000] "GET /movies/directors/Robert%20Zemeckis HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:19:20 +0000] "GET /movies/directors/PETER%20JACKSON HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:19:29 +0000] "GET /movies/directors/PETER%20Jackson HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:19:35 +0000] "GET /movies/directors/Peter%20Jackson HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:19:52 +0000] "GET /movies/directors/Peter%20Jackson HTTP/1.1" 200 615 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:36:34 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:41:18 +0000] "GET /user HTTP/1.1" 404 143 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:41:21 +0000] "GET /users HTTP/1.1" 200 1507 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:41:55 +0000] "DELETE //users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 194 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:42:32 +0000] "DELETE //users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 194 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:44:14 +0000] "DELETE //users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 194 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:44:15 +0000] "DELETE //users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 404 194 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:08:44:24 +0000] "DELETE /users/michael_brown/movies/6463a8ddd49286e7854b657f HTTP/1.1" 200 178 "-" "PostmanRuntime/7.32.2"
::1 - - [22/May/2023:11:21:56 +0000] "GET / HTTP/1.1" 404 139 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [22/May/2023:11:21:59 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [22/May/2023:11:22:00 +0000] "GET /favicon.ico HTTP/1.1" 404 150 "http://localhost:8080/movies" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [22/May/2023:11:22:11 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"
::1 - - [22/May/2023:11:26:44 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [25/May/2023:10:33:18 +0000] "GET / HTTP/1.1" 404 139 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [25/May/2023:10:33:23 +0000] "GET /users HTTP/1.1" 200 1507 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [25/May/2023:10:33:23 +0000] "GET /favicon.ico HTTP/1.1" 404 150 "http://localhost:8080/users" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [25/May/2023:10:33:29 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [25/May/2023:10:45:18 +0000] "DELETE /movies/genre/:genrename HTTP/1.1" 404 165 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:45:25 +0000] "DELETE /movies/genre/Drama HTTP/1.1" 404 160 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:45:36 +0000] "DELETE /movies HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:45:42 +0000] "DELETE /movie HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:45:43 +0000] "DELETE /movies HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:45:52 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:46:07 +0000] "GET /movies/genrename/Drama HTTP/1.1" 404 161 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:46:11 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 1669 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:48:29 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:48:31 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:48:55 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:49:13 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:49:56 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:49:57 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:50:20 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:50:21 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:50:23 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:50:33 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:51:59 +0000] "GET /genre/Drama HTTP/1.1" 500 1338 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:52:43 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:52:47 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:54:10 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:54:26 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:10:55:16 +0000] "GET /genre/Drama HTTP/1.1" 500 1338 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:36:27 +0000] "GET /genre/Drama HTTP/1.1" 500 1338 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:36:35 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:38:42 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:44:42 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:44:58 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:47:23 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:52:15 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:53:25 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1373 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:53:45 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:53:59 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:05 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:32 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:33 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:38 +0000] "GET /genre/Drama HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:40 +0000] "GET /genres/Drama HTTP/1.1" 404 151 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:54:43 +0000] "GET /genre/Drama HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:55:47 +0000] "GET /genre/Drama HTTP/1.1" 404 150 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:56:40 +0000] "GET /genre/Drama HTTP/1.1" 404 49 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:56:49 +0000] "GET /genre/Drama HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:57:16 +0000] "GET /genre/Drama HTTP/1.1" 500 1372 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:57:26 +0000] "GET /genre/Drama HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:11:57:39 +0000] "GET /genre/Drama HTTP/1.1" 500 1375 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:00:05 +0000] "GET /genre/Drama HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:00:19 +0000] "GET /genre/Drama HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:01:21 +0000] "GET /genre/Drama HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:01:26 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:01:26 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:03:57 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:04:11 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:04:13 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:10:11 +0000] "GET /genre/Fantasy HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:10:16 +0000] "GET /genre/Drama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:10:19 +0000] "GET /genre/frama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:10:22 +0000] "GET /genre/drama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:11:42 +0000] "GET /genre/Drama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:11:47 +0000] "GET /genre/Drama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:13:31 +0000] "GET /genre/Drama HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:13:38 +0000] "GET /genre/Fantasy HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:13:46 +0000] "GET /Genre/Fantasy HTTP/1.1" 404 15 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:16:38 +0000] "GET /Genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:16:50 +0000] "GET /Genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:17:19 +0000] "GET /genre/Fantasy HTTP/1.1" 404 152 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:17:24 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:17:34 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:17:48 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:01 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:40 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:44 +0000] "GET /movies/genre/Drama HTTP/1.1" 404 157 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:47 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:51 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:18:55 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:20:48 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 404 159 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:20:58 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:21:18 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:22:19 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:22:20 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:22:37 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:24:26 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1373 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:12:26:11 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:21:01 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:23:57 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:24:16 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:24:24 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:24:25 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:24:45 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:25:07 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:25:27 +0000] "GET /genre/Fantasy HTTP/1.1" 500 43 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:25:36 +0000] "GET /genre/Fantasy HTTP/1.1" 500 72 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:25:47 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:26:07 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:26:13 +0000] "GET /genre/Fantasy HTTP/1.1" 500 1376 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:36:32 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:37:13 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:37:42 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:39:01 +0000] "GET /genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:39:26 +0000] "GET /genre/drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:39:31 +0000] "GET /genre/fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:39:34 +0000] "GET /genre/Fantasy HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:40:03 +0000] "GET /genre/Crime HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:41:55 +0000] "GET /genre/Crime HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:41:58 +0000] "GET /genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:45:20 +0000] "GET /genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:46:40 +0000] "GET /genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:46:44 +0000] "GET /genre/1 HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:46:46 +0000] "GET /genre/2 HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:46:51 +0000] "GET /genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:47:49 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:55:54 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:56:24 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:56:36 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:56:46 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:57:51 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:57:54 +0000] "GET /movies/genre/drama HTTP/1.1" 200 4 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:58:01 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:58:06 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:58:26 +0000] "GET /movies/genre HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:58:30 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:14:58:49 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:01:28 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:01:30 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:01:43 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 77 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:01:44 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 77 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:01:48 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 500 77 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:03 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:05 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:10 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:16 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:17 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:17 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:18 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:20 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:29 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:32 +0000] "GET /movies/genre/fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:02:34 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:06:18 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:06:19 +0000] "GET /movies/genre/Fantasy HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:06:22 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:08:24 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:08:25 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:16 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 77 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:24 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:25 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:25 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:26 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:09:42 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 490 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:12:19 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:12:35 +0000] "GET /movies/genre/Drama HTTP/1.1" 404 9 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:12:56 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:13:05 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:13:06 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:13:10 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:15:57 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:15:17:38 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:22:46 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 2 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:25:05 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:25:07 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:25:30 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:27:05 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:28:13 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:28:26 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:29:20 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 43 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:29:40 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:29:57 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:30:52 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:31:02 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:31:43 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:35:34 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:35:35 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:36:51 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 42 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:37:16 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:38:12 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:39:59 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:40:02 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:40:09 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:41:21 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:42:38 +0000] "GET /movies/genre/Drama HTTP/1.1" 500 66
::1 - - [25/May/2023:16:43:29 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 - "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:16:43:47 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 213 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:20:55:02 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [25/May/2023:21:02:10 +0000] "GET /directors HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:03:35 +0000] "GET /directors HTTP/1.1" 404 148 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:03:36 +0000] "GET /director HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:03:44 +0000] "GET /movies/director HTTP/1.1" 400 13 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:03:54 +0000] "GET /movies/director/Peter%20Jackson HTTP/1.1" 404 9 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:04:12 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:04:34 +0000] "GET /movies/director/Quentin%20Tarantino HTTP/1.1" 404 9 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:04:48 +0000] "GET /movies/director/Quentin%20Tarantino HTTP/1.1" 404 9 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:04:49 +0000] "GET /movies/director/Quentin%20Tarantino HTTP/1.1" 404 9 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:04:53 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:05:18 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:06:08 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [25/May/2023:21:06:15 +0000] "GET /movies/director/Quentin%20Tarantino HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:09:27:57 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [29/May/2023:09:27:59 +0000] "GET /movies HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
::1 - - [29/May/2023:09:44:44 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [29/May/2023:10:25:09 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [29/May/2023:12:53:56 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [29/May/2023:13:49:31 +0000] "GET /movies HTTP/1.1" 401 - "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:13:51:40 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [29/May/2023:14:08:18 +0000] "POST /users HTTP/1.1" 201 174 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:12:15 +0000] "POST /login HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:12:45 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:12:48 +0000] "POST /login?Username=Alex&Password=asdf HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:14:13 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:19:12 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:20:50 +0000] "POST /login?username=Alex&password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:20:51 +0000] "POST /login?username=Alex&password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:20:57 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:21:14 +0000] "POST /login?Username=new_smith&Password=password1 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:21:24 +0000] "POST /login?Username=new_smith&Password=password1 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:25:10 +0000] "POST /login?Username=new_smith&Password=password1 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:25:10 +0000] "POST /login?Username=new_smith&Password=password1 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:25:17 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:25:23 +0000] "POST /login?username=Alex&password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:25:25 +0000] "POST /login?username=Alex&password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:26:46 +0000] "POST /login?username=Alex&password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:26:54 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:27:20 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:27:30 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:29 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:31 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:31 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:32 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:32 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:33 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:33 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:34 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:34 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:34 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:35 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:35 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:31:36 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:34:25 +0000] "POST /login?Username=Alex&Password=1234 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:40:15 +0000] "POST /users HTTP/1.1" 400 1201 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:40:35 +0000] "POST /users HTTP/1.1" 400 1201 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:40:43 +0000] "POST /users HTTP/1.1" 400 1201 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:02 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:16 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:23 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:37 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:43 +0000] "POST /users HTTP/1.1" 400 23 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:49 +0000] "POST /users HTTP/1.1" 500 56 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:41:53 +0000] "POST /users HTTP/1.1" 201 163 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:42:18 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:48:06 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:48:08 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:48:46 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:49:57 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:50:22 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:51:45 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:14:51:46 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:00:26 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:24 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:25 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:26 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:27 +0000] "POST /login?Username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:44 +0000] "POST /login?username=adjei&Password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:50 +0000] "POST /login?username=adjei&password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:51 +0000] "POST /login?username=adjei&password=1111 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:01:59 +0000] "POST /login?username=%22adjei%22&password=%221111%22 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [29/May/2023:15:02:04 +0000] "POST /login?Username=%22adjei%22&Password=%221111%22 HTTP/1.1" 400 36 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:08:48:51 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:13:00 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [01/Jun/2023:09:31:19 +0000] "OPTIONS /verifications?market=from_token HTTP/1.1" 404 156 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.5414.87 Spotify/1.2.4.912 Safari/537.36"
::1 - - [01/Jun/2023:09:43:33 +0000] "GET /users HTTP/1.1" 200 1846 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:44:15 +0000] "GET /movies HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:44:40 +0000] "GET /movies/Goodfellas HTTP/1.1" 200 556 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:45:30 +0000] "GET /movies/Gdirector/Martin%20Scorsese HTTP/1.1" 404 173 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:45:36 +0000] "GET /movies/director/Martin%20Scorsese HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:45:58 +0000] "GET /movies/directors/Martin%20Scorsese HTTP/1.1" 404 173 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:45:59 +0000] "GET /movies/director/Martin%20Scorsese HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:46:25 +0000] "GET /movies/director/Christopher%20Nolan HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:46:27 +0000] "GET /movies/director/Christopher%20Nolan HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:46:27 +0000] "GET /movies/director/Christopher%20Nolan HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:46:45 +0000] "GET /movies/director/Frank%20Darabont HTTP/1.1" 200 91 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:47:08 +0000] "GET /movies/ HTTP/1.1" 200 5370 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:47:14 +0000] "GET /movies/genre/Drama HTTP/1.1" 200 213 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:47:47 +0000] "GET /user/adjei HTTP/1.1" 404 149 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:47:50 +0000] "GET /users/adjei HTTP/1.1" 200 163 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:48:16 +0000] "DELETE /users/alex HTTP/1.1" 400 18 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:48:21 +0000] "DELETE /users/Alex HTTP/1.1" 400 18 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:48:39 +0000] "DELETE /users/Alex HTTP/1.1" 400 18 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:48:44 +0000] "DELETE /users/jane_smith HTTP/1.1" 200 23 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:48:53 +0000] "DELETE /users HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"
::1 - - [01/Jun/2023:09:49:08 +0000] "DELETE /users HTTP/1.1" 404 147 "-" "PostmanRuntime/7.32.2"