-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabtv_full.sql
More file actions
4411 lines (4325 loc) · 368 KB
/
labtv_full.sql
File metadata and controls
4411 lines (4325 loc) · 368 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Creato il: Lug 09, 2022 alle 18:50
-- Versione del server: 10.4.24-MariaDB
-- Versione PHP: 8.1.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `labtv`
--
/* CREATE DATABASE */
CREATE DATABASE IF NOT EXISTS labtv;
/* SELECT DATABASE */
USE labtv;
-- --------------------------------------------------------
--
-- Struttura della tabella `director`
--
CREATE TABLE `director` (
`ID_DIRECTOR` int(10) UNSIGNED NOT NULL,
`id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dump dei dati per la tabella `director`
--
INSERT INTO `director` (`ID_DIRECTOR`, `id`, `name`) VALUES
(1, 'nm1372836', 'Tomasz Mandes'),
(2, 'nm1705578', 'Barbara Bialowas'),
(3, 'nm0000127', 'Wes Craven'),
(4, 'nm0568018', 'Stuart McDonald'),
(5, 'nm0000881', 'Michael Bay'),
(6, 'nm1025280', 'Anubhav Sinha'),
(7, 'nm1490123', 'James Wan'),
(8, 'nm0000116', 'James Cameron'),
(9, 'nm0751577', 'Anthony Russo'),
(10, 'nm0751648', 'Joe Russo'),
(11, 'nm0000318', 'Tim Burton'),
(12, 'nm0500610', 'David Leitch'),
(13, 'nm1676223', 'Akiva Schaffer'),
(14, 'nm0000343', 'David Cronenberg'),
(15, 'nm0000110', 'Kenneth Branagh'),
(16, 'nm2024774', 'Albert Shin'),
(17, 'nm0000600', 'Sam Raimi'),
(18, 'nm0193508', 'Simon Curtis'),
(19, 'nm0898288', 'Denis Villeneuve'),
(20, 'nm0525303', 'Baz Luhrmann'),
(21, 'nm3656210', 'Carey Williams'),
(22, 'nm4146781', 'Charise Castro Smith'),
(23, 'nm0397174', 'Byron Howard'),
(24, 'nm1158544', 'Jared Bush'),
(25, 'nm2125482', 'Chloé Zhao'),
(26, 'nm3453283', 'Dan Kwan'),
(27, 'nm3215397', 'Daniel Scheinert'),
(28, 'nm0946734', 'David Yates'),
(29, 'nm6793979', 'Rosalind Ross'),
(30, 'nm3821224', 'Andrew Ahn'),
(31, 'nm8928699', 'Keith Thomas'),
(32, 'nm0000709', 'Robert Zemeckis'),
(33, 'nm0506613', 'Shawn Levy'),
(34, 'nm0718646', 'Jason Reitman'),
(35, 'nm0000217', 'Martin Scorsese'),
(36, 'nm0348993', 'Mark Gustafson'),
(37, 'nm0868219', 'Guillermo del Toro'),
(38, 'nm0001060', 'Chris Columbus'),
(39, 'nm1476102', 'Jeremiah Zagar'),
(40, 'nm2318689', 'Matthew Reilly'),
(41, 'nm0000229', 'Steven Spielberg'),
(42, 'nm1119880', 'Colin Trevorrow'),
(43, 'nm0329023', 'Brian Goodman'),
(44, 'nm0000759', 'Paul Thomas Anderson'),
(45, 'nm0533691', 'Angus MacLane'),
(46, 'nm3810122', 'Mathew Cullen'),
(47, 'nm0637615', 'Gaspar Noé'),
(48, 'nm0132709', 'Martin Campbell'),
(49, 'nm0307497', 'Alex Garland'),
(50, 'nm0003160', 'Christopher McQuarrie'),
(51, 'nm0000386', 'Roland Emmerich'),
(52, 'nm1174251', 'Daniel Espinosa'),
(53, 'nm1560977', 'Cary Joji Fukunaga'),
(54, 'nm0796117', 'M. Night Shyamalan'),
(55, 'nm0000233', 'Quentin Tarantino'),
(56, 'nm0006960', 'John Madden'),
(57, 'nm1650283', 'Espen Sandberg'),
(58, 'nm1461392', 'Joachim Rønning'),
(59, 'nm0893659', 'Gore Verbinski'),
(60, 'nm5679126', 'Ninja Thyberg'),
(61, 'nm2284484', 'Gareth Edwards'),
(62, 'nm1442514', 'S.S. Rajamouli'),
(63, 'nm1420377', 'Alex Hardcastle'),
(64, 'nm2888554', 'Christophe Lourdelet'),
(65, 'nm1134029', 'Garth Jennings'),
(66, 'nm1733778', 'Jeff Fowler'),
(67, 'nm1218281', 'Jon Watts'),
(68, 'nm0000184', 'George Lucas'),
(69, 'nm2010048', 'Pierre Perifel'),
(70, 'nm0716257', 'Matt Reeves'),
(71, 'nm0220600', 'Scott Derrickson'),
(72, 'nm0098908', 'Loren Bouchard'),
(73, 'nm0220615', 'Bernard Derriman'),
(74, 'nm0757975', 'Tarik Saleh'),
(75, 'nm0005363', 'Guy Ritchie'),
(76, 'nm0000338', 'Francis Ford Coppola'),
(77, 'nm1026778', 'Brad Furman'),
(78, 'nm1887480', 'Aaron Nee'),
(79, 'nm1519639', 'Adam Nee'),
(80, 'nm0905154', 'Lana Wachowski'),
(81, 'nm0617042', 'Mark Mylod'),
(82, 'nm3211470', 'Robert Eggers'),
(83, 'nm2441699', 'Graham Moore'),
(84, 'nm0732430', 'Bruce Robinson'),
(85, 'nm0001104', 'Frank Darabont'),
(86, 'nm3230448', 'Tom Gormican'),
(87, 'nm1471372', 'Richard Wong'),
(88, 'nm0169806', 'Taika Waititi'),
(89, 'nm0001716', 'Tony Scott'),
(90, 'nm2676052', 'Joseph Kosinski'),
(91, 'nm6995804', 'Mehdi Avaz'),
(92, 'nm1128037', 'Ruben Östlund'),
(93, 'nm0281508', 'Ruben Fleischer'),
(94, 'nm7992231', 'Lokesh Kanagaraj'),
(95, 'nm3013234', 'Chloe Okuno'),
(96, 'nm0000165', 'Ron Howard'),
(97, 'nm1488800', 'Ti West');
-- --------------------------------------------------------
--
-- Struttura della tabella `director_film`
--
CREATE TABLE `director_film` (
`p_id_film` varchar(100) NOT NULL,
`p_id_director` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dump dei dati per la tabella `director_film`
--
INSERT INTO `director_film` (`p_id_film`, `p_id_director`) VALUES
('tt0068646', 76),
('tt0076759', 68),
('tt0087800', 3),
('tt0092099', 89),
('tt0096446', 96),
('tt0099685', 35),
('tt0107290', 41),
('tt0109830', 32),
('tt0111161', 85),
('tt0120915', 68),
('tt0121766', 68),
('tt0241527', 38),
('tt0325980', 59),
('tt0367594', 11),
('tt0369610', 42),
('tt0376136', 84),
('tt10298810', 45),
('tt10323676', 74),
('tt10648342', 88),
('tt10838180', 80),
('tt10872600', 67),
('tt10886166', 1),
('tt10886166', 2),
('tt10954652', 54),
('tt11138512', 82),
('tt11271038', 44),
('tt11291274', 86),
('tt1160419', 19),
('tt11703710', 18),
('tt11827628', 48),
('tt1189340', 77),
('tt12004038', 95),
('tt12412888', 66),
('tt12593682', 12),
('tt1273221', 46),
('tt12996154', 1),
('tt12996154', 2),
('tt13276352', 91),
('tt13320622', 78),
('tt13320622', 79),
('tt13560574', 97),
('tt13650600', 21),
('tt13841850', 49),
('tt13919802', 6),
('tt14114802', 83),
('tt14174940', 40),
('tt14439896', 29),
('tt14549466', 14),
('tt1464335', 93),
('tt1477834', 7),
('tt1488589', 36),
('tt1488589', 37),
('tt15004136', 43),
('tt15215512', 4),
('tt15218000', 30),
('tt1630029', 8),
('tt1649418', 9),
('tt1649418', 10),
('tt1745960', 90),
('tt1790809', 57),
('tt1790809', 58),
('tt1798632', 31),
('tt1877830', 70),
('tt1879016', 56),
('tt2049403', 11),
('tt2382320', 53),
('tt2463208', 33),
('tt2953050', 22),
('tt2953050', 23),
('tt2953050', 24),
('tt3183660', 28),
('tt3513500', 13),
('tt3704428', 20),
('tt3748528', 61),
('tt3774694', 47),
('tt3794354', 66),
('tt4081630', 87),
('tt4123430', 28),
('tt4123432', 28),
('tt4154796', 9),
('tt4154796', 10),
('tt4513678', 34),
('tt4593060', 32),
('tt4998632', 5),
('tt5108870', 52),
('tt5315212', 63),
('tt5834426', 51),
('tt5919756', 16),
('tt6264654', 33),
('tt6467266', 64),
('tt6467266', 65),
('tt6710474', 26),
('tt6710474', 27),
('tt7131622', 55),
('tt7144666', 71),
('tt7322224', 92),
('tt7466442', 72),
('tt7466442', 73),
('tt7657566', 15),
('tt8009428', 39),
('tt8041270', 42),
('tt8115900', 69),
('tt8178634', 62),
('tt8367814', 75),
('tt8550054', 60),
('tt9032400', 25),
('tt9179430', 94),
('tt9419884', 17),
('tt9603212', 50),
('tt9663764', 7),
('tt9764362', 81);
-- --------------------------------------------------------
--
-- Struttura della tabella `evidenza`
--
CREATE TABLE `evidenza` (
`id` varchar(100) NOT NULL,
`rank` double DEFAULT NULL,
`rankUpDown` double DEFAULT NULL,
`title` varchar(100) DEFAULT NULL,
`fullTitle` varchar(100) DEFAULT NULL,
`year` double DEFAULT NULL,
`image` varchar(200) DEFAULT NULL,
`crew` varchar(100) DEFAULT NULL,
`imDbRating` varchar(100) DEFAULT NULL,
`imDbRatingCount` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dump dei dati per la tabella `evidenza`
--
INSERT INTO `evidenza` (`id`, `rank`, `rankUpDown`, `title`, `fullTitle`, `year`, `image`, `crew`, `imDbRating`, `imDbRatingCount`) VALUES
('tt0032910', NULL, NULL, 'Pinocchio', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU4Mzk3ODIyOF5BMl5BanBnXkFtZTgwODgyNzk2NjE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt0049471', NULL, NULL, 'The Man Who Never Was', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDY1ZDlmMWUtMTdlZC00ZmM4LTkwYmMtY2JmZTFhYjJiYzU0XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt0065591', NULL, NULL, 'Crimes of the Future', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGVkNWEwNTQtZjcyNS00NmUyLTllNDctZDNiMWYzMzNmMzA1XkEyXkFqcGdeQXVyNDQ2MTMzODA@._V1_Ratio0.6860_AL_.jpg', NULL, '4.8', NULL),
('tt0067992', NULL, NULL, 'Willy Wonka & the Chocolate Factory', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTllNDU0ZTItYTYxMC00OTI4LThlNDAtZjNiNzdhMWZiYjNmXkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt0068646', 30, 9, 'The Godfather', 'The Godfather (1972)', 1972, 'https://imdb-api.com/images/original/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.7015_AL_.jpg', '\"Francis Ford Coppola (dir.), Marlon Brando, Al Pacino\"', '9.2', '1790386'),
('tt0071562', NULL, NULL, 'The Godfather Part II', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.7053_AL_.jpg', NULL, '9.0', NULL),
('tt0072271', NULL, NULL, 'The Texas Chain Saw Massacre', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDI3OWE0ZWMtNGJjOS00N2E4LWFiOTAtZjQ4OTNiNzIwN2NkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt0073486', NULL, NULL, 'One Flew Over the Cuckoo\'s Nest', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.7', NULL),
('tt0076759', 64, 35, 'Star Wars', 'Star Wars (1977)', 1977, 'https://imdb-api.com/images/original/MV5BNzg4MjQxNTQtZmI5My00YjMwLWJlMjUtMmJlY2U2ZWFlNzY1XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6716_AL_.jpg', '\"George Lucas (dir.), Mark Hamill, Harrison Ford\"', '8.6', '1327004'),
('tt0077651', NULL, NULL, 'Halloween', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzk1OGU2NmMtNTdhZC00NjdlLWE5YTMtZTQ0MGExZTQzOGQyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0079103', NULL, NULL, 'Elvis', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTNlZTRiNjYtNGM4MS00NTQ2LWE5YTMtYjFmY2FkMzYxNDZjXkEyXkFqcGdeQXVyMjUyNDk2ODc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt0080684', NULL, NULL, 'Star Wars: Episode V - The Empire Strikes Back', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.7', NULL),
('tt0080761', NULL, NULL, 'Friday the 13th', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWMxYTYzYWQtNGZmNy00MTg5LTk1N2MtNzQ5NjQxYjQ5NTJhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt0082198', NULL, NULL, 'Conan the Barbarian', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWYwZGU1N2UtNTU5My00ZTVkLThjZDktZTQzZmEyMzZjMTdmXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt0086190', NULL, NULL, 'Star Wars: Episode VI - Return of the Jedi', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWZlMjFiYzgtMTUzNC00Y2IzLTk1NTMtZmNhMTczNTk0ODk1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt0086250', NULL, NULL, 'Scarface', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjdjNGQ4NDEtNTEwYS00MTgxLTliYzQtYzE2ZDRiZjFhZmNlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt0087182', NULL, NULL, 'Dune', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTAzYzNlMDMtMGRjYS00M2UxLTk0MmEtYmE4YWZiYmEwOTIwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt0087262', NULL, NULL, 'Firestarter', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzFiZTQ4ZjQtNjgyZi00Yjc0LWI2Y2YtNjk0YzM3NWEwYjYzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt0087291', NULL, NULL, 'Frankenweenie', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDMxODAyNjQ0MV5BMl5BanBnXkFtZTgwMzY0ODk1MDE@._V1_Ratio0.7536_AL_.jpg', NULL, '7.2', NULL),
('tt0087332', NULL, NULL, 'Ghostbusters', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTkxMjYyNzgwMl5BMl5BanBnXkFtZTgwMTE3MjYyMTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt0087597', NULL, NULL, 'The Last Starfighter', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjIzMWIzMmUtM2E0MC00OTExLWIzYzEtNWIzNzg3M2VjZmQ5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt0087800', 99, 155, 'A Nightmare on Elm Street', 'A Nightmare on Elm Street (1984)', 1984, 'https://imdb-api.com/images/original/MV5BNzFjZmM1ODgtMDBkMS00NWFlLTg2YmUtZjc3ZTgxMjE1OTI2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6716_AL_.jpg', '\"Wes Craven (dir.), Heather Langenkamp, Johnny Depp\"', '7.4', '231715'),
('tt0088763', NULL, NULL, 'Back to the Future', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.5', NULL),
('tt0089457', NULL, NULL, 'Ladyhawke', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjhkMmFmMGMtZTIwMy00NGE0LThkZWQtOWNjMDQ1NTY4MmNjXkEyXkFqcGdeQXVyMTY2MzYyNzA@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt0089469', NULL, NULL, 'Legend', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmE3ZDc2MWYtNmJiMC00ZjhlLWEzODUtMzE0NzMwMTU4NmQxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt0089686', NULL, NULL, 'A Nightmare on Elm Street 2: Freddy\'s Revenge', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjBmNWNiN2ItYzM0ZC00MWQyLWFmZjctMmZkNTVhMjE1ZjFhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '5.4', NULL),
('tt0092099', 2, 0, 'Top Gun', 'Top Gun (1986)', 1986, 'https://imdb-api.com/images/original/MV5BZjQxYTA3ODItNzgxMy00N2Y2LWJlZGMtMTRlM2JkZjI1ZDhhXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6716_AL_.jpg', '\"Tony Scott (dir.), Tom Cruise, Tim Robbins\"', '6.9', '360465'),
('tt0093629', NULL, NULL, 'A Nightmare on Elm Street 3: Dream Warriors', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjFkYTEwNjAtYWU1YS00NTMyLTkwYmUtZjEyMjZjMDg5Njc5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0094721', NULL, NULL, 'Beetlejuice', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDdmNjBlYTctNWU0MC00ODQxLWEzNDQtZGY1NmRhYjNmNDczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt0094964', NULL, NULL, 'Dead Ringers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTY4MTVhZGEtNGUyMS00Y2ZhLTlmN2EtMWI1YTYxMGYyN2I1XkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt0095742', NULL, NULL, 'A Nightmare on Elm Street 4: The Dream Master', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2IwODlmN2ItOGU5NC00ZTBhLWJhZjItMTdkOTI1NTU4YzdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '5.6', NULL),
('tt0096438', NULL, NULL, 'Who Framed Roger Rabbit', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDhiOTM2OTctODk3Ny00NWI4LThhZDgtNGQ4NjRiYjFkZGQzXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0096446', 43, 9, 'Willow', 'Willow (1988)', 1988, 'https://imdb-api.com/images/original/MV5BZWIyMTA2M2ItOGI5MC00OTY0LWFmZTItN2NkOWQ0MGQ5NDkyL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6716_AL_.jpg', '\"Ron Howard (dir.), Val Kilmer, Joanne Whalley\"', '7.2', '111825'),
('tt0096557', NULL, NULL, 'Chip \'n\' Dale Rescue Rangers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTE4MDllZjktMzM3ZC00NWE1LTg5ODQtZjEzOTFmZDVjZWY5XkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_Ratio0.6860_AL_.jpg', NULL, '7.6', NULL),
('tt0097428', NULL, NULL, 'Ghostbusters II', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ2NTk4MjE5Ml5BMl5BanBnXkFtZTgwODIwNjYxMTE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0097576', NULL, NULL, 'Indiana Jones and the Last Crusade', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2Q0ODg4ZmItNDZiYi00ZWY5LTg2NzctNmYwZjA5OThmNzE1XkEyXkFqcGdeQXVyMjM4MzQ4OTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt0097981', NULL, NULL, 'A Nightmare on Elm Street 5: The Dream Child', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmMzNzc1ZTItMDJiOS00Y2UxLWEzZmEtMzBiNGNkYzNiNDBkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '5.0', NULL),
('tt0099371', NULL, NULL, 'Days of Thunder', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmU0MjU5ODEtODRkOC00MzdlLTk5YmEtMmY0MWM4MzM2MDMxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt0099487', NULL, NULL, 'Edward Scissorhands', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWY2MGRkNjgtZDczNi00YWJjLTkwNmUtMTY0NTE5ZDhkZjgwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt0099674', NULL, NULL, 'The Godfather: Part III', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWFlYWY2YjYtNjdhNi00MzVlLTg2MTMtMWExNzg4NmM5NmEzXkEyXkFqcGdeQXVyMDk5Mzc5MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt0099685', 44, -19, 'Goodfellas', 'Goodfellas (1990)', 1990, 'https://imdb-api.com/images/original/MV5BY2NkZjEzMDgtN2RjYy00YzM1LWI4ZmQtMjIwYjFjNmI3ZGEwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6716_AL_.jpg', '\"Martin Scorsese (dir.), Robert De Niro, Ray Liotta\"', '8.7', '1121248'),
('tt0099785', NULL, NULL, 'Home Alone', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzFkM2YwOTQtYzk2Mi00N2VlLWE3NTItN2YwNDg1YmY0ZDNmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0101917', NULL, NULL, 'Freddy\'s Dead: The Final Nightmare', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGQ3MTdiYjQtZmU1NC00NmQ5LTg2YTMtYWI0NjA5MzUwZTFkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '4.7', NULL),
('tt0102511', NULL, NULL, 'Naked Lunch', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTRiOTQ2ZWQtMmIwYy00Y2Y3LWFmMzgtNzgzZWU1MDhlOGJhXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt0102926', NULL, NULL, 'The Silence of the Lambs', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.6', NULL),
('tt0104257', NULL, NULL, 'A Few Good Men', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmRlZDQ1MmUtMzE2Yi00YTkxLTk1MGMtYmIyYWQwODcxYzRlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0104431', NULL, NULL, 'Home Alone 2: Lost in New York', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDI1MzM0Y2YtYmIyMS00ODE3LTlhZjEtZTUyNmEzMTNhZWU5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt0105236', NULL, NULL, 'Reservoir Dogs', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmExNmEwYWItYmQzOS00YjA5LTk2MjktZjEyZDE1Y2QxNjA1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt0105488', NULL, NULL, 'Strictly Ballroom', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjY2MWI2YWYtOGUyZS00ZGZjLTkyYjAtYWYxZDJmMzlkZjE0XkEyXkFqcGdeQXVyNTE1NjY5Mg@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt0106140', NULL, NULL, 'Sonic the Hedgehog', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjYwOGVmNzUtMjNhYi00M2FjLTlmYTAtMGM4N2E4YjMxZWFkXkEyXkFqcGdeQXVyODEzNjM5OTQ@._V1_Ratio0.7246_AL_.jpg', NULL, '6.8', NULL),
('tt0107290', 53, 1, 'Jurassic Park', 'Jurassic Park (1993)', 1993, 'https://imdb-api.com/images/original/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_Ratio0.6716_AL_.jpg', '\"Steven Spielberg (dir.), Sam Neill, Laura Dern\"', '8.2', '950065'),
('tt0108052', NULL, NULL, 'Schindler\'s List', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '9.0', NULL),
('tt0109707', NULL, NULL, 'Ed Wood', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTA5ZjdjNWUtZGUwNy00N2RhLWJiZmItYzFhYjU1NmYxNjY4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt0109830', 71, 81, 'Forrest Gump', 'Forrest Gump (1994)', 1994, 'https://imdb-api.com/images/original/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6716_AL_.jpg', '\"Robert Zemeckis (dir.), Tom Hanks, Robin Wright\"', '8.8', '2003798'),
('tt0109951', NULL, NULL, 'Guarding Tess', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzFkM2RiNWQtOWQxNy00ZWNmLWIyZTktNmJjZmY1ZTliZjU1XkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt0110912', NULL, NULL, 'Pulp Fiction', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6860_AL_.jpg', NULL, '8.9', NULL),
('tt0111161', 65, 11, 'The Shawshank Redemption', 'The Shawshank Redemption (1994)', 1994, 'https://imdb-api.com/images/original/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6716_AL_.jpg', '\"Frank Darabont (dir.), Tim Robbins, Morgan Freeman\"', '9.3', '2595057'),
('tt0111686', NULL, NULL, 'New Nightmare', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzcxYjI5OTgtMmYyYS00ZTFhLWI3NzktOTBmMzQyNWNkNTk5XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt0112641', NULL, NULL, 'Casino', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTcxOWYzNDYtYmM4YS00N2NkLTk0NTAtNjg1ODgwZjAxYzI3XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt0112883', NULL, NULL, 'Don Juan DeMarco', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzRiMGM2ODgtN2Y1Zi00ODk5LThhOTItOWVkODM0YjAyZTI2XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt0114369', NULL, NULL, 'Se7en', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTUwODM5MTctZjczMi00OTk4LTg3NWUtNmVhMTAzNTNjYjcyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.6', NULL),
('tt0114709', NULL, NULL, 'Toy Story', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDU2ZWJlMjktMTRhMy00ZTA5LWEzNDgtYmNmZTEwZTViZWJkXkEyXkFqcGdeQXVyNDQ2OTk4MzI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt0115472', NULL, NULL, 'The Adventures of Pinocchio', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDdiZWM4ZDAtYTM2Yi00MDg3LTk4MTItZjc3Y2Y2YzI0ZTcyXkEyXkFqcGdeQXVyMTk5MjAyMjM@._V1_Ratio0.7536_AL_.jpg', NULL, '5.2', NULL),
('tt0115818', NULL, NULL, 'Cannes Man', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTg1MDcwMzEyM15BMl5BanBnXkFtZTcwMzg2MDg4OQ@@._V1_Ratio0.7633_AL_.jpg', NULL, '5.2', NULL),
('tt0115964', NULL, NULL, 'Crash', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjlhMDBlNDQtMjZkZi00NzJmLWI4MTgtZDdkMzZmZDcyZGNmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6860_AL_.jpg', NULL, '6.4', NULL),
('tt0116695', NULL, NULL, 'Jerry Maguire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTM0ZWNmZTUtOTVkZS00MTZiLTg3M2QtZjA0Y2RmOWM1NWEyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0117060', NULL, NULL, 'Mission: Impossible', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc3NjI2MjU0Nl5BMl5BanBnXkFtZTgwNDk3ODYxMTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt0117571', NULL, NULL, 'Scream', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjA2NjU5MTg5OF5BMl5BanBnXkFtZTgwOTkyMzQxMDE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0117913', NULL, NULL, 'A Time to Kill', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWExZTg4ZWYtOTQxMi00YWZkLTkxYzgtOTg1MTUxNzNiNDcxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt0119094', NULL, NULL, 'Face/Off', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzFjNzIxMmEtMzY5NS00YTgzLTkwYWEtN2FjMmY0NmNkZWY3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0119567', NULL, NULL, 'The Lost World: Jurassic Park', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDFlMmM4Y2QtNDg1ZS00MWVlLTlmODgtZDdhYjY5YjdhN2M0XkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_Ratio0.6860_AL_.jpg', NULL, '6.5', NULL),
('tt0120669', NULL, NULL, 'Fear and Loathing in Las Vegas', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2RkY2M2N2QtZGY5ZS00YmVjLThmNTItY2ZkM2JlYmFhZWQyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt0120681', NULL, NULL, 'From Hell', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTM1MjkxNTQxMV5BMl5BanBnXkFtZTYwMDMxNDg2._V1_Ratio0.6860_AL_.jpg', NULL, '6.8', NULL),
('tt0120689', NULL, NULL, 'The Green Mile', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_Ratio0.6763_AL_.jpg', NULL, '8.6', NULL),
('tt0120735', NULL, NULL, 'Lock, Stock and Two Smoking Barrels', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTAyN2JmZmEtNjAyMy00NzYwLThmY2MtYWQ3OGNhNjExMmM4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt0120737', NULL, NULL, 'The Lord of the Rings: The Fellowship of the Ring', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2EyZjM3NzUtNWUzMi00MTgxLWI0NTctMzY4M2VlOTdjZWRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.8', NULL),
('tt0120755', NULL, NULL, 'Mission: Impossible II', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2RkYWVkZDQtNTMxMi00NWQ4LWE2ODctNmQzOWM2NjQzYzdlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt0120815', NULL, NULL, 'Saving Private Ryan', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_Ratio0.6860_AL_.jpg', NULL, '8.6', NULL),
('tt0120907', NULL, NULL, 'eXistenZ', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmU1MTJkYWItMzM5Ny00NDgxLTgxOGEtNTkzNDdkZjkwNGI0XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6957_AL_.jpg', NULL, '6.8', NULL),
('tt0120915', 62, 57, 'Star Wars: Episode I - The Phantom Menace', 'Star Wars: Episode I - The Phantom Menace (1999)', 1999, 'https://imdb-api.com/images/original/MV5BYTRhNjcwNWQtMGJmMi00NmQyLWE2YzItODVmMTdjNWI0ZDA2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6716_AL_.jpg', '\"George Lucas (dir.), Ewan McGregor, Liam Neeson\"', '6.5', '784271'),
('tt0121164', NULL, NULL, 'Corpse Bride', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTk1MTY1NjU4MF5BMl5BanBnXkFtZTcwNjIzMTEzMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0121765', NULL, NULL, 'Star Wars: Episode II - Attack of the Clones', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDAzM2M0Y2UtZjRmZi00MzVlLTg4MjEtOTE3NzU5ZDVlMTU5XkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0121766', 66, 54, 'Star Wars: Episode III - Revenge of the Sith', 'Star Wars: Episode III - Revenge of the Sith (2005)', 2005, 'https://imdb-api.com/images/original/MV5BNTc4MTc3NTQ5OF5BMl5BanBnXkFtZTcwOTg0NjI4NA@@._V1_Ratio0.7313_AL_.jpg', '\"George Lucas (dir.), Hayden Christensen, Natalie Portman\"', '7.6', '767962'),
('tt0133093', NULL, NULL, 'The Matrix', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.7', NULL),
('tt0137523', NULL, NULL, 'Fight Club', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDIzNDU0YzEtYzE5Ni00ZjlkLTk5ZjgtNjM3NWE4YzA3Nzk3XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '8.8', NULL),
('tt0157016', NULL, NULL, 'I Stand Alone', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmMyYzRjYjMtYzFkNy00Njc3LWIzOTQtNzIzNzE4YzM4NDNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0163025', NULL, NULL, 'Jurassic Park III', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDMyZGJjOGItYjJkZC00MDVlLWE0Y2YtZGIwMDExYWE3MGQ3XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_Ratio0.6763_AL_.jpg', NULL, '5.9', NULL),
('tt0167260', NULL, NULL, 'The Lord of the Rings: The Return of the King', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '9.0', NULL),
('tt0167261', NULL, NULL, 'The Lord of the Rings: The Two Towers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGMxZTdjZmYtMmE2Ni00ZTdkLWI5NTgtNjlmMjBiNzU2MmI5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.8', NULL),
('tt0181196', NULL, NULL, 'Buzz Lightyear of Star Command: The Adventure Begins', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDI3MWEyMzgtN2JmZi00N2IzLThkZmUtZGY4ZjM2YmMwN2RmXkEyXkFqcGdeQXVyNTA4NzExMDg@._V1_Ratio0.7053_AL_.jpg', NULL, '6.1', NULL),
('tt0208092', NULL, NULL, 'Snatch', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTA2NDYxOGYtYjU1Mi00Y2QzLTgxMTQtMWI1MGI0ZGQ5MmU4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6860_AL_.jpg', NULL, '8.3', NULL),
('tt0234215', NULL, NULL, 'The Matrix Reloaded', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODE0MzZhZTgtYzkwYi00YmI5LThlZWYtOWRmNWE5ODk0NzMxXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt0241527', 76, 55, 'Harry Potter and the Sorcerer\'s Stone', 'Harry Potter and the Sorcerer\'s Stone (2001)', 2001, 'https://imdb-api.com/images/original/MV5BMzkyZGFlOWQtZjFlMi00N2YwLWE2OWQtYTgxY2NkNmM1NjMwXkEyXkFqcGdeQXVyNjY1NTM1MzA@._V1_Ratio0.6716_AL_.jpg', '\"Chris Columbus (dir.), Daniel Radcliffe, Rupert Grint\"', '7.6', '754674'),
('tt0242653', NULL, NULL, 'The Matrix Revolutions', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzNlZTZjMDctZjYwNi00NzljLWIwN2QtZWZmYmJiYzQ0MTk2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt0255477', NULL, NULL, 'Pinocchio', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTZmM2E0OTItM2I5MC00MzRjLWI4M2EtNDAxYjU1MTQwZjE1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '4.3', NULL),
('tt0260602', NULL, NULL, 'Buzz Lightyear of Star Command', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjExNWVlY2ItMWZiNi00NmJmLWE3NWUtYjU5YmQ1NWNiM2Y1XkEyXkFqcGdeQXVyODk1MjAxNzQ@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0266697', NULL, NULL, 'Kill Bill: Vol. 1', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzM3NDFhYTAtYmU5Mi00NGRmLTljYjgtMDkyODQ4MjNkMGY2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt0290673', NULL, NULL, 'Irreversible', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTdhM2FhOWItM2NiNC00YjYwLTkxZGEtYzNhYWM3YzU2NDQzXkEyXkFqcGdeQXVyMTYzMDM0NTU@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0295297', NULL, NULL, 'Harry Potter and the Chamber of Secrets', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjE0YjUzNDUtMjc5OS00MTU3LTgxMmUtODhkOThkMzdjNWI4XkEyXkFqcGdeQXVyMTA3MzQ4MTc0._V1_Ratio0.6957_AL_.jpg', NULL, '7.4', NULL),
('tt0304141', NULL, NULL, 'Harry Potter and the Prisoner of Azkaban', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY4NTIwODg0N15BMl5BanBnXkFtZTcwOTc0MjEzMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt0309987', NULL, NULL, 'The Dreamers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2JlNDM0YjQtNjg3NC00MWY0LTk0MmMtMTVkMmU0MDQ4MGMzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt0317919', NULL, NULL, 'Mission: Impossible III', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOThhNTA1YjItYzk2Ny00M2Y1LWJlYWUtZDQyZDU0YmY5Y2M5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt0320736', NULL, NULL, 'Vikram', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTkwMTMyZWYtY2E5Yy00NGUyLTkxOWMtYjgzN2M0YTYwNjM0XkEyXkFqcGdeQXVyOTA0NTIzNzU@._V1_Ratio0.7729_AL_.jpg', NULL, '7.3', NULL),
('tt0325980', 51, -5, 'Pirates of the Caribbean: The Curse of the Black Pearl', 'Pirates of the Caribbean: The Curse of the Black Pearl (2003)', 2003, 'https://imdb-api.com/images/original/MV5BNGYyZGM5MGMtYTY2Ni00M2Y1LWIzNjQtYWUzM2VlNGVhMDNhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6716_AL_.jpg', '\"Gore Verbinski (dir.), Johnny Depp, Geoffrey Rush\"', '8.0', '1093866'),
('tt0328832', NULL, NULL, 'The Animatrix', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWRiODljNzUtZDkwOC00N2EwLTllMDAtOGQ4MmQ2YWY2MTBiXkEyXkFqcGdeQXVyNDQ0MTYzMDA@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0329101', NULL, NULL, 'Freddy vs. Jason', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODNlNWVjOTMtZjVjYy00MzRjLTg2MmQtNTM3MWVmZjFjYzgwXkEyXkFqcGdeQXVyMzM4MjM0Nzg@._V1_Ratio0.7150_AL_.jpg', NULL, '5.7', NULL),
('tt0330373', NULL, NULL, 'Harry Potter and the Goblet of Fire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTI1NDMyMjExOF5BMl5BanBnXkFtZTcwOTc4MjQzMQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0361748', NULL, NULL, 'Inglourious Basterds', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTJiNDEzOWYtMTVjOC00ZjlmLWE0NGMtZmE1OWVmZDQ2OWJhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt0363771', NULL, NULL, 'The Chronicles of Narnia: The Lion, the Witch and the Wardrobe', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc0NTUwMTU5OV5BMl5BanBnXkFtZTcwNjAwNzQzMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt0363988', NULL, NULL, 'Secret Window', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmI5MWNlMjYtZTAxNy00N2Q3LTkwZDgtMWRjOWQ1ZjJiN2Y4XkEyXkFqcGdeQXVyNDQ2MTMzODA@._V1_Ratio0.7246_AL_.jpg', NULL, '6.5', NULL),
('tt0366179', NULL, NULL, 'The Second Renaissance Part I', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGY0OGM3NDctYWZhNy00OWM4LWEzZDEtYWVlOTRlNjg2N2ZkXkEyXkFqcGdeQXVyNjI2OTgxNzY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt0367413', NULL, NULL, 'Sonic X', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzE3NmQ5ZmQtZTU0ZS00YjEyLWJiOTItMTAzNzNkYWYyZDcyXkEyXkFqcGdeQXVyNTUxMTQwOTg@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt0367594', 72, 15, 'Charlie and the Chocolate Factory', 'Charlie and the Chocolate Factory (2005)', 2005, 'https://imdb-api.com/images/original/MV5BNjcxMjg1Njg2NF5BMl5BanBnXkFtZTcwMjQ4NzMzMw@@._V1_Ratio0.6716_AL_.jpg', '\"Tim Burton (dir.), Johnny Depp, Freddie Highmore\"', '6.7', '468838'),
('tt0368447', NULL, NULL, 'The Village', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWExMWYxN2MtYmU1YS00Mjk5LWI3OTEtYTg3NDIwZTA2MTE2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0369610', 80, -2, 'Jurassic World', 'Jurassic World (2015)', 2015, 'https://imdb-api.com/images/original/MV5BNzQ3OTY4NjAtNzM5OS00N2ZhLWJlOWUtYzYwZjNmOWRiMzcyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6716_AL_.jpg', '\"Colin Trevorrow (dir.), Chris Pratt, Bryce Dallas Howard\"', '6.9', '622914'),
('tt0372784', NULL, NULL, 'Batman Begins', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTY4YjI2N2MtYmFlMC00ZjcyLTg3YjEtMDQyM2ZjYzQ5YWFkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt0373889', NULL, NULL, 'Harry Potter and the Order of the Phoenix', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTM0NTczMTUzOV5BMl5BanBnXkFtZTYwMzIxNTg3._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt0374345', NULL, NULL, 'The Memory of a Killer', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTEyODk0MjYwMl5BMl5BanBnXkFtZTcwNzUxMTEzMQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt0375920', NULL, NULL, 'The Libertine', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTE5MTQ4ODQzNl5BMl5BanBnXkFtZTYwMDIxNTQ3._V1_Ratio0.6860_AL_.jpg', NULL, '6.2', NULL),
('tt0376136', 35, 5, 'The Rum Diary', 'The Rum Diary (2011)', 2011, 'https://imdb-api.com/images/original/MV5BMTM5ODA4MjYxM15BMl5BanBnXkFtZTcwMTM3NTE5Ng@@._V1_Ratio0.6716_AL_.jpg', '\"Bruce Robinson (dir.), Johnny Depp, Giovanni Ribisi\"', '6.1', '104247'),
('tt0378194', NULL, NULL, 'Kill Bill: Vol. 2', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmFiYmJmN2QtNWQwMi00MzliLThiOWMtZjQxNGRhZTQ1MjgyXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt0381061', NULL, NULL, 'Casino Royale', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDI5ZWJhOWItYTlhOC00YWNhLTlkNzctNDU5YTI1M2E1MWZhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt0383574', NULL, NULL, 'Pirates of the Caribbean: Dead Man\'s Chest', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTcwODc1MTMxM15BMl5BanBnXkFtZTYwMDg1NzY3._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0400156', NULL, NULL, 'Ambulance', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQzMDk3Nzc1MF5BMl5BanBnXkFtZTcwNzQxMDY2OQ@@._V1_Ratio0.7343_AL_.jpg', NULL, '5.3', NULL),
('tt0407887', NULL, NULL, 'The Departed', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_Ratio0.6763_AL_.jpg', NULL, '8.5', NULL),
('tt0408236', NULL, NULL, 'Sweeney Todd: The Demon Barber of Fleet Street', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTg3NjUxMzM5NV5BMl5BanBnXkFtZTcwMzQ1NjQzMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt0417741', NULL, NULL, 'Harry Potter and the Half-Blood Prince', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt0418832', NULL, NULL, 'Lie with Me', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjEwODI3OTI5MV5BMl5BanBnXkFtZTcwMjcwNzA0MQ@@._V1_Ratio0.7053_AL_.jpg', NULL, '5.2', NULL),
('tt0436623', NULL, NULL, 'Naked in the 21st Century', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjE1NDgwMTcyMF5BMl5BanBnXkFtZTgwMzExMjkwOTE@._V1_Ratio0.7536_AL_.jpg', NULL, '6.8', NULL),
('tt0437714', NULL, NULL, 'Elvis', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTY2MzQ5MTAtMzNkNy00ZDNlLTkwZWQtZjE1MjZkYWNhMTFjXkEyXkFqcGdeQXVyMjgyMDk1MzY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt0439572', NULL, NULL, 'The Flash', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWNhMGU5MjEtMGVkYi00M2RiLWE5NjUtY2U5NDAxZTcwNDY0XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt0448115', NULL, NULL, 'Shazam!', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWZhZjE4NGQtODg5Ni00MjQ1LWJmMzAtNzQ2N2M1NzYzMDJkXkEyXkFqcGdeQXVyMjMwNDgzNjc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt0449088', NULL, NULL, 'Pirates of the Caribbean: At World\'s End', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjIyNjkxNzEyMl5BMl5BanBnXkFtZTYwMjc3MDE3._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt0449851', NULL, NULL, 'The Valet', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTkzZWZkZDItYTMyOC00ZTkzLWFhNGMtYzk1NWUzODdjN2MxXkEyXkFqcGdeQXVyNzM1MDEyNjM@._V1_Ratio0.7536_AL_.jpg', NULL, '6.6', NULL),
('tt0451279', NULL, NULL, 'Wonder Woman', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTYzODQzYjQtNTczNC00MzZhLTg1ZWYtZDUxYmQ3ZTY4NzA1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt0452637', NULL, NULL, 'Lady in the Water', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjEyNTc0NTk5M15BMl5BanBnXkFtZTcwMDE5NzkyMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.5', NULL),
('tt0458290', NULL, NULL, 'Star Wars: The Clone Wars', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWFlNzRmOTItZjY1Ni00ZjZkLTk5MDgtOGFhOTYzNWFhYzhmXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt0468569', NULL, NULL, 'The Dark Knight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_Ratio0.6763_AL_.jpg', NULL, '9.0', NULL),
('tt0477347', NULL, NULL, 'Night at the Museum', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQyOTM4MDMxN15BMl5BanBnXkFtZTcwODg5NTQzMw@@._V1_Ratio0.6860_AL_.jpg', NULL, '6.4', NULL),
('tt0498318', NULL, NULL, 'Aquaman', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDhmM2M4NTgtZWU1Mi00ZGQ4LTk5OTEtYWVmYjUyNDFlNWExXkEyXkFqcGdeQXVyMTEyNzgwMDUw._V1_Ratio0.7150_AL_.jpg', NULL, '7.0', NULL),
('tt0499549', NULL, NULL, 'Avatar', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDA0OGQxNTItMDZkMC00N2UyLTg3MzMtYTJmNjg3Nzk5MzRiXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt0770806', NULL, NULL, 'The Contractor', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjAzOTQ5NjYzNF5BMl5BanBnXkFtZTgwNjc3NjAwNzE@._V1_Ratio0.6957_AL_.jpg', NULL, '5.4', NULL),
('tt0800369', NULL, NULL, 'Thor', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGE4NzU1YTAtNzA3Mi00ZTA2LTg2YmYtMDJmMThiMjlkYjg2XkEyXkFqcGdeQXVyNTgzMDMzMTg@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt0816692', NULL, NULL, 'Interstellar', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjdkOTU3MDktN2IxOS00OGEyLWFmMjktY2FiMmZkNWIyODZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6763_AL_.jpg', NULL, '8.6', NULL),
('tt0830515', NULL, NULL, 'Quantum of Solace', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzhjYzlmYjQtYmU0Yy00NjNkLWFmOTQtZjQxZWU4NjY1Y2M4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt0848228', NULL, NULL, 'The Avengers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDYxNjQyMjAtNTdiOS00NGYwLWFmNTAtNThmYjU5ZGI2YTI1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt0896798', NULL, NULL, 'Cleaner', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmNiYTFkZWEtMWFiOC00MzU1LTkyZGQtNTQ0YmIwYTU2ODM4XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt0926084', NULL, NULL, 'Harry Potter and the Deathly Hallows: Part 1', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ2OTE1Mjk0N15BMl5BanBnXkFtZTcwODE3MDAwNA@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt0949731', NULL, NULL, 'The Happening', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc2MjcwNjI0MF5BMl5BanBnXkFtZTcwMjM4NjM3MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.0', NULL),
('tt0993846', NULL, NULL, 'The Wolf of Wall Street', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjIxMjgxNTk0MF5BMl5BanBnXkFtZTgwNjIyOTg2MDE@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt10003008', NULL, NULL, 'The Rental', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjMwOGEyMTQtMDllMC00YTU3LTgyNzktYmEwY2Y4MjQzYmRkXkEyXkFqcGdeQXVyMjM4OTYzMTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '5.7', NULL),
('tt10083340', NULL, NULL, 'Gangubai Kathiawadi', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2M4NDM2NDItMzgzNy00OWRiLThhNjEtZDA2OWMyNTcwYzRjXkEyXkFqcGdeQXVyMTI1NDEyNTM5._V1_Ratio0.8019_AL_.jpg', NULL, '7.0', NULL),
('tt1014759', NULL, NULL, 'Alice in Wonderland', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTMwNjAxMTc0Nl5BMl5BanBnXkFtZTcwODc3ODk5Mg@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt10151854', NULL, NULL, 'Shazam! Fury of the Gods', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDIyNjc3YzItMjE5Mi00OGVkLWFmNGYtMGJlMWMyZmVkM2E5XkEyXkFqcGdeQXVyNTQ2MjM5MTg@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt10160804', NULL, NULL, 'Hawkeye', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGRjYjNmYmQtZTI4NS00ZGQwLTg1YzQtMzJkOWJmYTNkODJmXkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt10168312', NULL, NULL, 'What If...?', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGYwYTA5M2QtMTk3Zi00ZjdjLWFkNDUtYzg4MjM0ZGI0MGU1XkEyXkFqcGdeQXVyODIyOTEyMzY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt10189536', NULL, NULL, 'Barbarians', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQwYzZhNTMtYjI4ZS00YmIwLTk1YTgtNzNmMWU1MjBlMjcyXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6763_AL_.jpg', NULL, '4.6', NULL),
('tt10203880', NULL, NULL, 'The Pentaverate', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTAwMTc4M2EtOTY5NS00Y2RjLTk1ZjgtZTAxYTg2NjEzOWUzXkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt1023464', NULL, NULL, 'The Lost Girls', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjJiZmFiMjEtYjVlNS00ZmZhLWIyNWItNDk5MjhiYTc3ZjhiXkEyXkFqcGdeQXVyNTQ3MjE4NTU@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt10234724', NULL, NULL, 'Moon Knight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTc5OWNhYjktMThlOS00ODUxLTgwNDQtZjdjYjkyM2IwZTZlXkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt10272534', NULL, NULL, 'Lux Æterna', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2RmMzRkMTAtOGVhZS00OTA4LWE0MDctOTI1MDgzNzU2MjA4XkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.7053_AL_.jpg', NULL, '6.3', NULL),
('tt10278918', NULL, NULL, 'Willow', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjcwYjMwYTUtYjViNS00ODE1LTk3YmYtNjE0OGEwNTU0Zjk2XkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt10293406', NULL, NULL, 'The Power of the Dog', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGRhYjE2NWUtN2FkNy00NGI3LTkxYWMtMDk4Yjg5ZjI3MWI2XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt10298810', 59, 21, 'Lightyear', 'Lightyear (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYTg2Zjk0ZTctM2ZmMi00MDRmLWJjOGYtNWM0YjBmZTBjMjRkXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Angus MacLane (dir.), Chris Evans, Keke Palmer\"', '', '0'),
('tt10298840', NULL, NULL, 'Strange World', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTk1NzQwMWQtNzVmNS00MDc4LWE1MTktMmQyYzExYWMwZDQ4XkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt10304142', NULL, NULL, 'Amsterdam', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2YzODRmNmUtNjYxMS00YzYyLWFmYjEtNWYyZjVmNGRmMzAyXkEyXkFqcGdeQXVyNjA0NDE4MDk@._V1_Ratio1.5072_AL_.jpg', NULL, '', NULL),
('tt10323676', 93, 31, 'The Contractor', 'The Contractor (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOWQ3MDg1MTgtMmI4ZC00YjU3LWIyZGEtNmRkNzI0Y2QyN2ExXkEyXkFqcGdeQXVyNzgzODI1OTE@._V1_Ratio0.6716_AL_.jpg', '\"Tarik Saleh (dir.), Chris Pine, Gillian Jacobs\"', '5.8', '12770'),
('tt1032755', NULL, NULL, 'RocknRolla', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ0NTk5Mzk2OV5BMl5BanBnXkFtZTcwMDE3NTE4MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt10343028', NULL, NULL, 'Armageddon Time', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTNhMmFjMjktY2I1OS00MzZhLWJiMzktODViMjFiMjcyMDhkXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_Ratio2.3865_AL_.jpg', NULL, '7.0', NULL),
('tt10354106', NULL, NULL, 'Stars at Noon', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGNkOTI5OTgtZGM0Yi00ZmExLTgzMzctMDkxMDk4MjE4ZTZmXkEyXkFqcGdeQXVyMTAzMDg4NzU0._V1_Ratio2.4058_AL_.jpg', NULL, '5.3', NULL),
('tt10362466', NULL, NULL, 'After We Collided', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2UyNGM3MDUtMTIzZi00ZDdkLThlYTktYjk0ZDMzM2JiMjMyXkEyXkFqcGdeQXVyNzE0MjkxMzA@._V1_Ratio0.6763_AL_.jpg', NULL, '5.0', NULL),
('tt10370710', NULL, NULL, 'The Worst Person in the World', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmYwYTM0NDctZGI3Ny00ZmQ5LWE0ZDMtZWZhNzBiMWYxNzk3XkEyXkFqcGdeQXVyMzExODEzNDA@._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt1044569', NULL, NULL, 'The NBA on TNT', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODhkOTg2OWItYThmMi00MWI0LThmMDItOGVmZWQ5N2E4YmRiXkEyXkFqcGdeQXVyNzU5MjczMzE@._V1_Ratio1.0048_AL_.jpg', NULL, '7.4', NULL),
('tt1057576', NULL, NULL, 'Uncharted', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU2NDA0NDc0NF5BMl5BanBnXkFtZTcwMzk4MjA4Mg@@._V1_Ratio0.7053_AL_.jpg', NULL, '2.0', NULL),
('tt10579952', NULL, NULL, 'Master', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWQxODNlMjktNjU3Yi00OTFmLTgyOTgtZDVhNDY5NzMwMmYwXkEyXkFqcGdeQXVyMTIwNjE1MTk0._V1_Ratio0.7536_AL_.jpg', NULL, '7.3', NULL),
('tt10638036', NULL, NULL, 'Heartstopper', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU1NmYwMTAtNzNjOS00NDNkLWI0ZmMtMDYxYWEyYzIxYTNjXkEyXkFqcGdeQXVyNjA1MTI4NjA@._V1_Ratio0.8019_AL_.jpg', NULL, '8.8', NULL),
('tt10648342', 7, -3, 'Thor: Love and Thunder', 'Thor: Love and Thunder (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYmMxZWRiMTgtZjM0Ny00NDQxLWIxYWQtZDdlNDNkOTEzYTdlXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Taika Waititi (dir.), Natalie Portman, Taika Waititi\"', '', '0'),
('tt10698680', NULL, NULL, 'K.G.F: Chapter 2', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjMwMDgyOGQtMWZjNC00MDUwLTllZDYtZWM3NDBmN2YzNGZmXkEyXkFqcGdeQXVyMTQzNjkzMzEw._V1_Ratio0.6957_AL_.jpg', NULL, '8.6', NULL),
('tt10709484', NULL, NULL, 'Don', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzYyMGFlMDYtZmM0OS00ZDA0LTk5MmMtYzEwYTFlNzFiNjMzXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt10731256', NULL, NULL, 'Don\'t Worry Darling', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWIyNDA2YjEtZGNhNy00YjY1LTk5ZDctNmEyMzQxZTQyYjAwXkEyXkFqcGdeQXVyMTIzNDk1MDYz._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1074638', NULL, NULL, 'Skyfall', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWZiNjE2OWItMTkwNy00ZWQzLWI0NTgtMWE0NjNiYTljN2Q1XkEyXkFqcGdeQXVyNzAwMjYxMzA@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt10752004', NULL, NULL, 'Love Hard', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODIwNDIxN2YtMWU3ZS00MjU5LWIxMzctNmY1NDg5NDgwYmM0XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt1077368', NULL, NULL, 'Dark Shadows', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjc0NzAyMzI1MF5BMl5BanBnXkFtZTcwMTE0NDQ1Nw@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt10838180', 67, 4, 'The Matrix Resurrections', 'The Matrix Resurrections (2021)', 2021, 'https://imdb-api.com/images/original/MV5BMGJkNDJlZWUtOGM1Ny00YjNkLThiM2QtY2ZjMzQxMTIxNWNmXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6716_AL_.jpg', '\"Lana Wachowski (dir.), Keanu Reeves, Carrie-Anne Moss\"', '5.7', '228448'),
('tt10839422', NULL, NULL, 'Sex/Life', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2NlYjZiYjItNTljNy00MzU2LWJkYmMtMjNkMWVjYmYwMzExXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '5.4', NULL),
('tt10857164', NULL, NULL, 'Ms. Marvel', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmQ3OTZkNDUtNTU0Mi00ZjE4LTgyNTUtY2E4NWRmNDUxMzkyXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt10872600', 41, -3, 'Spider-Man: No Way Home', 'Spider-Man: No Way Home (2021)', 2021, 'https://imdb-api.com/images/original/MV5BZWMyYzFjYTYtNTRjYi00OGExLWE2YzgtOGRmYjAxZTU3NzBiXkEyXkFqcGdeQXVyMzQ0MzA0NTM@._V1_Ratio0.6716_AL_.jpg', '\"Jon Watts (dir.), Tom Holland, Zendaya\"', '8.3', '648270'),
('tt10886166', 56, -8, '365 Days', '365 Days (2020)', 2020, 'https://imdb-api.com/images/original/MV5BMDdhYzNkOWQtYWNlNi00NDdjLWJlZDMtMjJjZDYyNjAxM2U1XkEyXkFqcGdeQXVyMTQyMTMwOTk0._V1_Ratio0.7313_AL_.jpg', '\"Barbara Bialowas (dir.), Anna-Maria Sieklucka, Michele Morrone\"', '3.3', '82481'),
('tt10931784', NULL, NULL, 'Nanny', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTFlNTQyMzYtNjc2NC00ODE5LWI3ZGUtYWRhOGUwZDhlYzhiXkEyXkFqcGdeQXVyMTI0NTY0MTE0._V1_Ratio1.7778_AL_.jpg', NULL, '6.1', NULL),
('tt10942816', NULL, NULL, 'Battle at Big Rock', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWVlYjExMDgtZGQ4Ni00MjVlLWI1YTQtNTAyYWI0M2Y4YTE3XkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.8019_AL_.jpg', NULL, '6.9', NULL),
('tt10944760', NULL, NULL, 'Titane', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGJlMTVlYWQtYmM5OC00MDgwLTk3NzAtMGViY2VjOGU0YjlkXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.7343_AL_.jpg', NULL, '6.6', NULL),
('tt10954600', NULL, NULL, 'Ant-Man and the Wasp: Quantumania', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGYzYmU2YzMtODNiZC00ZDBmLWJmOGMtMmNkYmIxNTlmNDE1XkEyXkFqcGdeQXVyMTA1OTAyOTI@._V1_Ratio1.0048_AL_.jpg', NULL, '', NULL),
('tt10954652', 33, 2, 'Old', 'Old (2021)', 2021, 'https://imdb-api.com/images/original/MV5BMjJjZGRhM2YtNTU4NC00OWMwLThhYWUtMWUxNDNhMDZlOTNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6716_AL_.jpg', '\"M. Night Shyamalan (dir.), Gael García Bernal, Vicky Krieps\"', '5.8', '103432'),
('tt10954984', NULL, NULL, 'Nope', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGIyNTI3NWItNTJkOS00MGYyLWE4NjgtZDhjMWQ4Y2JkZTU5XkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt10986222', NULL, NULL, 'C\'mon C\'mon', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzkwZWJhOTUtZTJkMC00OWQ5LTljZDctYzgxNWFiYjEyZjZiXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt11003218', NULL, NULL, 'Pig', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTc2NjRmN2QtMGY1Ny00MTc2LWJmMWUtZmViOTkyNjk2NGExXkEyXkFqcGdeQXVyNzg5MzIyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt11083552', NULL, NULL, 'Wrath of Man', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGVkOTlhOTktNjZiNS00NDg3LWIxMDAtZTY5Y2E0YjllN2IxXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt11138512', 9, -1, 'The Northman', 'The Northman (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMzVlMmY2NTctODgwOC00NDMzLWEzMWYtM2RiYmIyNTNhMTI0XkEyXkFqcGdeQXVyNTAzNzgwNTg@._V1_Ratio0.6716_AL_.jpg', '\"Robert Eggers (dir.), Alexander Skarsgård, Nicole Kidman\"', '7.3', '111885'),
('tt11140488', NULL, NULL, 'The Wolf of Snow Hollow', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWZlMDBiMmItMWU0Ny00MGIzLWI1NTQtZDEwMjM0MzBiYjhkXkEyXkFqcGdeQXVyMzIxMjMyODY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt11155098', NULL, NULL, 'Betelgeuse', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGU4YjUyOTEtMjNmMS00ZTk1LTk4MTctNjViZGU5NjFjM2QxXkEyXkFqcGdeQXVyMTg1MTc3MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.8', NULL),
('tt11160650', NULL, NULL, 'On the Count of Three', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDJkNzZmNGUtNTI2MS00ZTc0LWI3MDAtNTAzZmFmOTZlNzFjXkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt11198330', NULL, NULL, 'House of the Dragon', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWE2OGQ1NGQtZDljMC00ZTMzLWFlM2MtNjk3NDNmMTk1ZDM4XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt11245972', NULL, NULL, 'Scream', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjExYTcwYmYtMWY2Zi00MGJlLTk3YjUtZTU1Zjg4MDc0Y2FjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt11252248', NULL, NULL, 'Dog', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjA2MDM2YjctYzNhNC00NGEzLWFmYWEtODExODFkNmUyOGE2XkEyXkFqcGdeQXVyODk2NDQ3MTA@._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt1125856', NULL, NULL, 'Anastasia', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmUyNmE5NjEtZGZhMS00Zjk3LTkyNGYtZTg0MWUxZDkwNDI0XkEyXkFqcGdeQXVyNTM3MDMyMDQ@._V1_Ratio0.7536_AL_.jpg', NULL, '5.5', NULL),
('tt1125865', NULL, NULL, 'The Hunchback of Notre Dame', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTM5NjM3MDkxNV5BMl5BanBnXkFtZTcwMjgyOTQ1MQ@@._V1_Ratio0.7053_AL_.jpg', NULL, '5.2', NULL),
('tt1126590', NULL, NULL, 'Big Eyes', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjA2ODM5MDE3N15BMl5BanBnXkFtZTgwOTIxNjc1MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt11271038', 98, -9, 'Licorice Pizza', 'Licorice Pizza (2021)', 2021, 'https://imdb-api.com/images/original/MV5BYjkwMzIxYzMtOTVkMS00NDQxLThkMjItNzgxN2RiNjdlNTliXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6716_AL_.jpg', '\"Paul Thomas Anderson (dir.), Alana Haim, Cooper Hoffman\"', '7.3', '84308'),
('tt11286314', NULL, NULL, 'Don\'t Look Up', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjcwZjY3NjAtNzkxZS00NmFjLTg1OGYtODJmMThhY2UwMTc5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.8019_AL_.jpg', NULL, '7.2', NULL),
('tt11291274', 96, -35, 'The Unbearable Weight of Massive Talent', 'The Unbearable Weight of Massive Talent (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNDM2ODNiMWItOWRkNS00ODE3LWE2OGYtNTZkMDJkOWI1ODMxXkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.6716_AL_.jpg', '\"Tom Gormican (dir.), Nicolas Cage, Pedro Pascal\"', '7.4', '23154'),
('tt11301946', NULL, NULL, 'Beast', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTViNTY5YTUtYzczOC00ZDA2LTk0NzItMjkzMDcyNjJkMDJhXkEyXkFqcGdeQXVyMTUwMDg3OTQy._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt11316680', NULL, NULL, 'Trees of Peace', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTI2Y2I5ZTQtY2E4Yi00MWU2LWE3MjQtYTFiMTkyNTA1MjFiXkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.8019_AL_.jpg', NULL, '6.5', NULL),
('tt11324406', NULL, NULL, 'The Staircase', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTNkNGYyMTYtZjQ3NC00YWRkLWFjMzctOWIzMjg1OTZlMzVmXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt11378426', NULL, NULL, 'The Righteous', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDVkNGExYjQtMTI2ZC00NTNlLTllNzYtNzQxMGJmYzhjMjk1XkEyXkFqcGdeQXVyMTQwNzU4NA@@._V1_Ratio0.6957_AL_.jpg', NULL, '6.3', NULL),
('tt11536424', NULL, NULL, 'Code M', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTEwZTc3ZGUtNDNmNy00ZWMxLTkxZTQtM2Y3YmE0MDYwZGQ1XkEyXkFqcGdeQXVyMTE0MzY0NjE1._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt11540726', NULL, NULL, 'Resurrection', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzg3Y2VhMTMtYTMzOS00YTJlLWFiOTAtMjMwNDBlMGM4MGUyXkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt11570434', NULL, NULL, 'Jurassic World: The Ride', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzY1ODI0ZjUtYmY0ZS00ZTdiLTg0MTMtMTc0YzUzZGE0MTUxXkEyXkFqcGdeQXVyOTEyNjIwMDk@._V1_Ratio1.5072_AL_.jpg', NULL, '6.7', NULL),
('tt1160419', 55, -5, 'Dune', 'Dune (2021)', 2021, 'https://imdb-api.com/images/original/MV5BN2FjNmEyNWMtYzM0ZS00NjIyLTg5YzYtYThlMGVjNzE1OGViXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Denis Villeneuve (dir.), Timothée Chalamet, Rebecca Ferguson\"', '8.0', '576128'),
('tt11636880', NULL, NULL, 'Attack on Finland', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjQyYWQ5YWQtNjUzNC00MDU2LTlmOGUtNmQ5ZDgwODZmNmZiXkEyXkFqcGdeQXVyMjE4NzUxNDA@._V1_Ratio0.6957_AL_.jpg', NULL, '5.7', NULL);
INSERT INTO `evidenza` (`id`, `rank`, `rankUpDown`, `title`, `fullTitle`, `year`, `image`, `crew`, `imDbRating`, `imDbRatingCount`) VALUES
('tt11671006', NULL, NULL, 'The Man from Toronto', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDM2YjA2ZjAtMmZmMy00NDhjLWJjYWYtYjc4ZGY0YzUzOTMyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt11686490', NULL, NULL, 'The Deep House', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTA0YzY3MjktYzdiMi00M2Y3LWEyN2QtNDZlZGY2NWFlNGQyXkEyXkFqcGdeQXVyMTM4MzU4OTE@._V1_Ratio0.7536_AL_.jpg', NULL, '5.4', NULL),
('tt1170358', NULL, NULL, 'The Hobbit: The Desolation of Smaug', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzU0NDY0NDEzNV5BMl5BanBnXkFtZTgwOTIxNDU1MDE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt11703710', 36, -14, 'Downton Abbey: A New Era', 'Downton Abbey: A New Era (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZDdjZjM1YWItNWRmOS00OTEzLWJmYjAtOGQzNTAyNmEwNDhjXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Simon Curtis (dir.), Hugh Bonneville, Jim Carter\"', '7.7', '7649'),
('tt11718696', NULL, NULL, 'Deep in the Forest', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzMwNDRiZjctZWQ1My00MjQ3LWEyMDAtMzU0MzU1YTlkMjYyXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '2.8', NULL),
('tt1172994', NULL, NULL, 'The House of the Devil', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTAxMDAxODg5ODReQTJeQWpwZ15BbWU3MDI5ODYxODI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt11742798', NULL, NULL, 'Afterlife of the Party', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2FlMGRlZTctY2Q5YS00ZWIzLThjYzQtNTZhYmEwYjU2MmI0XkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.6763_AL_.jpg', NULL, '5.8', NULL),
('tt1179056', NULL, NULL, 'A Nightmare on Elm Street', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODIxMTQ0NTIxM15BMl5BanBnXkFtZTcwMzY1NDAyMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt11827628', 50, -26, 'Memory', 'Memory (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOGI5N2FhNzktZjZlNi00MmRjLWE1MmUtNjRlNzQyOGMzYjNhXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6716_AL_.jpg', '\"Martin Campbell (dir.), Liam Neeson, Guy Pearce\"', '5.6', '8194'),
('tt11866324', NULL, NULL, 'Prey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWE2YjY4MGQtNjRkYy00ZTQxLTkyNTUtODI1Y2I3M2M3ODE2XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1189340', 61, -17, 'The Lincoln Lawyer', 'The Lincoln Lawyer (2011)', 2011, 'https://imdb-api.com/images/original/MV5BMTQ4NDE4NTY5MV5BMl5BanBnXkFtZTcwODQyMTkxNA@@._V1_Ratio0.6716_AL_.jpg', '\"Brad Furman (dir.), Matthew McConaughey, Marisa Tomei\"', '7.3', '234306'),
('tt1190634', NULL, NULL, 'The Boys', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTEyNDJhMDAtY2U5ZS00OTMzLTkwODktMjU3MjFkZWVlMGYyXkEyXkFqcGdeQXVyMjkwOTAyMDU@._V1_Ratio0.8019_AL_.jpg', NULL, '8.7', NULL),
('tt1191111', NULL, NULL, 'Enter the Void', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGQwMWRmODEtYzYwMy00MzFiLWJhYWUtNWNkNWM0NWZhODBiXkEyXkFqcGdeQXVyNjQyMjcwNDM@._V1_Ratio0.6860_AL_.jpg', NULL, '7.2', NULL),
('tt11924738', NULL, NULL, 'The Perfect Family', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDYxY2E1ZDctZTU5Zi00ZmJlLTkxNjgtNmFjMTY3MDA3MWVhXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_Ratio0.7053_AL_.jpg', NULL, '5.3', NULL),
('tt11976532', NULL, NULL, 'Vengeance', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTZhYmU1OWEtZTUxYi00ZWIyLWFhZWMtNDVlY2VhMmM0OGRjXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt12004038', 89, 163, 'Watcher', 'Watcher (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMTNkNjU4OGYtODM3NS00NzM1LWFkZWItZTExNzdjYTAwMmRlXkEyXkFqcGdeQXVyMTE1MzI2NzIz._V1_Ratio0.6716_AL_.jpg', '\"Chloe Okuno (dir.), Maika Monroe, Karl Glusman\"', '6.8', '615'),
('tt1201607', NULL, NULL, 'Harry Potter and the Deathly Hallows: Part 2', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGVmMWNiMDktYjQ0Mi00MWIxLTk0N2UtN2ZlYTdkN2IzNDNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '8.1', NULL),
('tt1210819', NULL, NULL, 'The Lone Ranger', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjI3Mjk5MTUxOV5BMl5BanBnXkFtZTcwNTMyNzY3OQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt1211837', NULL, NULL, 'Doctor Strange', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjgwNzAzNjk1Nl5BMl5BanBnXkFtZTgwMzQ2NjI1OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt12247528', NULL, NULL, 'Star Wars: Episode II - Attack of the Clones: Deleted Scenes', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjczNGQ3OTgtOWRmYi00NzFlLTlmNWMtYmE0MWY0NDlhOTFiXkEyXkFqcGdeQXVyNjY5Mzc0MTU@._V1_Ratio0.7053_AL_.jpg', NULL, '7.0', NULL),
('tt12262116', NULL, NULL, 'Thirteen Lives', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2EzNjYxYWQtNWQ2NS00MDFiLTk5ZGUtNWFkZGI0OWNjMjk5XkEyXkFqcGdeQXVyNTk5NTQzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1229238', NULL, NULL, 'Mission: Impossible - Ghost Protocol', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY4MTUxMjQ5OV5BMl5BanBnXkFtZTcwNTUyMzg5Ng@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt12359080', NULL, NULL, 'Zero Contact', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDQ2Nzk0ZDMtNTkzNy00M2Q5LWIyNzItZjU4OWY2MDMxMGQxXkEyXkFqcGdeQXVyMzQwMTY2Nzk@._V1_Ratio0.6763_AL_.jpg', NULL, '3.3', NULL),
('tt12390572', NULL, NULL, 'The Twin', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWEyNTM4M2YtOWY1Ny00ODMxLTg2MTgtZGUzMWYzNDZkMmMyXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt12412888', 22, 1, 'Sonic the Hedgehog 2', 'Sonic the Hedgehog 2 (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMGI1NjA1MjUtNGQxNC00NDYyLThjODgtZjFkZjQ4OGM0NDc5XkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6716_AL_.jpg', '\"Jeff Fowler (dir.), James Marsden, Jim Carrey\"', '6.6', '42140'),
('tt1243957', NULL, NULL, 'The Tourist', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTMyMzc3OTkwMV5BMl5BanBnXkFtZTcwMjc0MTgwNA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt12477480', NULL, NULL, 'Decision to Leave', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzI3NzBlMzEtMTdmYi00N2M3LTlkYzEtZjU3NGI3NmMyNzhlXkEyXkFqcGdeQXVyMjY3NDMzMzU@._V1_Ratio0.6860_AL_.jpg', NULL, '7.2', NULL),
('tt12519030', NULL, NULL, 'Hatching', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGNiNDQ2OTAtZWYwOS00ZGVlLThmNmItM2NlMDU5M2QxNzUyXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt12545566', NULL, NULL, 'Mr. Malcolm\'s List', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODYyNWIxZjAtMGE2MC00MDhhLWI4ZDctOTY0NGNmODQyZjhlXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt12550376', NULL, NULL, 'Shark Bait', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2VmMzhiMGUtOTdlMC00NDVmLWFjNWYtYzczNTY3OTNhODFlXkEyXkFqcGdeQXVyMDU5MDEyMA@@._V1_Ratio0.6763_AL_.jpg', NULL, '4.3', NULL),
('tt12585076', NULL, NULL, 'Moonshot', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmFkZGFjMWEtMzYzNS00N2MzLWI4NDEtODA2NzIxN2JjOTAxXkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.6763_AL_.jpg', NULL, '5.5', NULL),
('tt12593682', 63, 111, 'Bullet Train', 'Bullet Train (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMDU2ZmM2OTYtNzIxYy00NjM5LTliNGQtN2JmOWQzYTBmZWUzXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"David Leitch (dir.), Zazie Beetz, Sandra Bullock\"', '7.8', '35'),
('tt12618926', NULL, NULL, 'Parallel Mothers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2Y2MWIzY2YtZDJiYi00ODM3LWE5NGYtNjlkYWE5ZmMxNTdmXkEyXkFqcGdeQXVyOTgxNDIzMTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt1273221', 94, 9, 'London Fields', 'London Fields (2018)', 2018, 'https://imdb-api.com/images/original/MV5BYjMwYWNiN2EtMWNkMS00MDU5LThiMGMtOTk5NTQzMjQ4OTkwXkEyXkFqcGdeQXVyNDExMzMxNjE@._V1_Ratio0.6716_AL_.jpg', '\"Mathew Cullen (dir.), Amber Heard, Theo James\"', '3.8', '10643'),
('tt12789558', NULL, NULL, 'Belfast', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODMwYTYyY2ItOWQ5Yi00OTI1LTllYTQtYTdlNWM4YzJhYTM0XkEyXkFqcGdeQXVyMTA2MDU0NjM5._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt12801262', NULL, NULL, 'Luca', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTQyNTU0MDktYTFkYi00ZjNhLWE2ODctMzBkM2U1ZTk3YTMzXkEyXkFqcGdeQXVyNTI4MzE4MDU@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt12874338', NULL, NULL, 'Beetlejuice: The Online Musical', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2FhMzliYTQtMGM1Ni00MGMxLWE2MGEtOTFjMzE2MDBmMTFlXkEyXkFqcGdeQXVyMTIzMDU4MTMy._V1_Ratio0.6763_AL_.jpg', NULL, '8.5', NULL),
('tt12874990', NULL, NULL, 'Puffins', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGE3NDllM2MtMTVmMy00ZGE5LThjMmEtYzRlMTA3NDFhNzI5XkEyXkFqcGdeQXVyNDg3NDQyODA@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1289401', NULL, NULL, 'Ghostbusters', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGYzNDM0M2QtZDFkNy00OTI2LWIyNjctNjNhNDM5Zjk3NzU2XkEyXkFqcGdeQXVyNjQ3MDg0MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt12976224', NULL, NULL, 'The Essex Serpent', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2U4ZmRkN2EtMzg1Ni00ZjdjLWFiODMtMTI3NjNlZWIwOTU3XkEyXkFqcGdeQXVyNjEwNTM2Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt1298644', NULL, NULL, 'The Hustle', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc3MDcyNzE5N15BMl5BanBnXkFtZTgwNzE2MDE0NzM@._V1_Ratio0.6860_AL_.jpg', NULL, '5.4', NULL),
('tt1298650', NULL, NULL, 'Pirates of the Caribbean: On Stranger Tides', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjE5MjkwODI3Nl5BMl5BanBnXkFtZTcwNjcwMDk4NA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt12996154', 58, -11, '365 Days: This Day', '365 Days: This Day (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYjY2NzUxNjgtNjJhNy00NTA4LTlmNzItYzQ4MDdjNWYxZjkwXkEyXkFqcGdeQXVyMTEwMTY3NDI@._V1_Ratio0.7015_AL_.jpg', '\"Barbara Bialowas (dir.), Anna-Maria Sieklucka, Michele Morrone\"', '2.5', '14807'),
('tt13056008', NULL, NULL, 'No One Gets Out Alive', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGQzODVkZDAtOWFhNS00MWJhLThjNDctNjFlZDExYjg5NWM1XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6957_AL_.jpg', NULL, '5.3', NULL),
('tt13056052', NULL, NULL, 'Broker', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2UxOTEwOGUtYmFmOS00NTc4LWI0MWMtNGJkZGViY2EwZTgyXkEyXkFqcGdeQXVyNDY5NTQyMDU@._V1_Ratio0.7053_AL_.jpg', NULL, '7.2', NULL),
('tt13069986', NULL, NULL, 'After We Fell', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTEzN2MxZWUtYTJkYS00NjU5LTk0ZjgtNzc1OTMwNWNjZGFkXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '4.6', NULL),
('tt13204490', NULL, NULL, 'Petite Maman', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2EyZjE2NWUtNTg4ZC00OThmLTlmMzktMmFkOWRmZTc4ZWMwXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6860_AL_.jpg', NULL, '7.4', NULL),
('tt13249596', NULL, NULL, 'Father of the Bride', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGQwMjA2NzItNmJjYS00MDQ4LWJiZmYtNjgyZjFlNTY0MjQ0XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt13270424', NULL, NULL, 'Brian and Charles', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTA5Y2E2ODItMzk0OC00NjA0LWE3YzYtMmJkMjA1MTIxOTIzXkEyXkFqcGdeQXVyMTA2MDU0NjM5._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt13276352', 86, -45, 'Toscana', 'Toscana (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYjJhNGRhNmItMDA1Yi00MTk0LWJiY2YtMmI2MzhiZTU0ZWZiXkEyXkFqcGdeQXVyNTk1NDE0NTU@._V1_Ratio0.7910_AL_.jpg', '\"Mehdi Avaz (dir.), Cristiana Dell\'Anna, Lærke Winther\"', '5.7', '4293'),
('tt13302660', NULL, NULL, 'Double Threat', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTI2MmQ0NDgtNmM4My00MjYzLTljODEtMzM4ZGVkMzk4MWUyXkEyXkFqcGdeQXVyMzg1ODQ4OQ@@._V1_Ratio0.7536_AL_.jpg', NULL, '4.6', NULL),
('tt13320622', 15, -1, 'The Lost City', 'The Lost City (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMmIwYzFhODAtY2I1YS00ZDdmLTkyYWQtZjI5NDIwMDc2MjEyXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6716_AL_.jpg', '\"Aaron Nee (dir.), Sandra Bullock, Channing Tatum\"', '6.2', '59532'),
('tt13391710', NULL, NULL, 'Jana Gana Mana', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzU0MjM3YTQtZmNjYi00ODI5LThhYzQtOWMwZjAxMjg2MTRjXkEyXkFqcGdeQXVyMjkxNzQ1NDI@._V1_Ratio0.6860_AL_.jpg', NULL, '8.4', NULL),
('tt13403046', NULL, NULL, 'Fresh', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTgxMGQ2ZDctYWY4Yy00YTI4LWIxMmYtOWViMGI5ZDIwMmFiXkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt13434866', NULL, NULL, 'Spitfire Over Berlin', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzhlNmQzNDEtYzBjNi00OTFjLTkzY2YtMTFmYWU3ZTgwZDdlXkEyXkFqcGdeQXVyMzIxODMxMTE@._V1_Ratio0.7536_AL_.jpg', NULL, '4.2', NULL),
('tt13453006', NULL, NULL, 'Red Rocket', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjYyZWMyNjYtZjNlNC00NmNhLThjOTItYmViMGU5ZDU4YTM4XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt1345836', NULL, NULL, 'The Dark Knight Rises', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt13482828', NULL, NULL, 'One Fine Morning', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTQ5ZDUyNTktZTEyYi00ZWVlLTliNDktNDgyZjYzMmFkMDQ2XkEyXkFqcGdeQXVyMTUzNjU1MDY2._V1_Ratio1.7778_AL_.jpg', NULL, '7.1', NULL),
('tt13534808', NULL, NULL, 'Janhit Mein Jaari', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTA4YWU3ZGMtOTAwYy00MTIzLTk0YjYtMGYzMTg4YTM4Y2UxXkEyXkFqcGdeQXVyMzE4NjMwMjc@._V1_Ratio0.6763_AL_.jpg', NULL, '8.1', NULL),
('tt13560574', 18, 1, 'X', 'X (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMTJiMmE5YWItOWZjYS00YTg0LWE0MTYtMzg2ZTY4YjNkNDEzXkEyXkFqcGdeQXVyMTAzMDg4NzU0._V1_Ratio0.7910_AL_.jpg', '\"Ti West (dir.), Mia Goth, Jenna Ortega\"', '6.6', '43622'),
('tt13622964', NULL, NULL, 'Tiana', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2I4N2YyMTItOWJiZS00MGRmLWE1MGEtNDlhNjQyOTI4ZDhkXkEyXkFqcGdeQXVyNzEzNjU1NDg@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt13623772', NULL, NULL, 'Iwájú', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYThlZTRhNzItMjhjMS00ZDI3LThhODMtMTcxM2I0ZWNlZTljXkEyXkFqcGdeQXVyNzEzNjU1NDg@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt13650600', 34, 23, 'Emergency', 'Emergency (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMzg0ZDkwZDItMzVkZC00YjI2LTk5OTAtMmE4YTZjMWU3YzllXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6716_AL_.jpg', '\"Carey Williams (dir.), RJ Cyler, Donald Elise Watkins\"', '6.0', '3332'),
('tt13656980', NULL, NULL, 'Montana Story', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU0ZTBjYTEtNjA5MS00YTM0LWFmMTgtMTgxNWY5NTdjNmZmXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt13729648', NULL, NULL, 'Candy', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWUzNWM3YTItMzY1OC00N2NmLTkwNjMtMWU0NGJiYTA5YWIxXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.8019_AL_.jpg', NULL, '7.2', NULL),
('tt1375666', NULL, NULL, 'Inception', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.8', NULL),
('tt13822738', NULL, NULL, 'The Takedown', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjNmMWFjZmUtZWYyMy00YTE4LTlhNzEtMTBlMGFkMzNmOTE3XkEyXkFqcGdeQXVyNjE4ODA3NTY@._V1_Ratio0.6763_AL_.jpg', NULL, '5.7', NULL),
('tt13833978', NULL, NULL, 'The Lincoln Lawyer', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmE0YjNkZjUtZmM5YS00NTFlLWJjOWUtODFiNzkwM2Q3OWJhXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt13841850', 21, -5, 'Men', 'Men (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZGQ2ZDNiMjgtMTNhNS00MjUxLWFkYTMtYTI1OTE0MmQ2MmJkXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Alex Garland (dir.), Jessie Buckley, Rory Kinnear\"', '6.3', '6993'),
('tt13880104', NULL, NULL, 'Happening', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDU4NTE3YTQtMzczMC00YzRkLWI5MjItNGE3NjQ0NTY4MzExXkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.7343_AL_.jpg', NULL, '7.4', NULL),
('tt13919802', 85, 283, 'Anek', 'Anek (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNjc0ZGI2ZDItZmVmNC00ZjdiLWEwMDYtMmI1NjMyNzg5MDk3XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6716_AL_.jpg', '\"Anubhav Sinha (dir.), Ayushmann Khurrana, Andrea Kevichüsa\"', '8.2', '11683'),
('tt13953638', NULL, NULL, 'Shadowprowler', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTViNTM2YjYtYTdiMi00YWRiLTlkY2ItOTQxY2MyMzZhNTViXkEyXkFqcGdeQXVyMjUwNjg1OTA@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt14033476', NULL, NULL, 'Toscana', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzBhNWViMWQtOTI2MC00NjQ4LTllNDgtMzNkMDM5ZWNkYmI2XkEyXkFqcGdeQXVyNTQyOTEwMDg@._V1_Ratio0.7053_AL_.jpg', NULL, '5.9', NULL),
('tt14039582', NULL, NULL, 'Drive My Car', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2NkNDdmZTUtYWQ2MC00MjUyLTk1MGMtNWZiZjI3ZWMzNDYwXkEyXkFqcGdeQXVyNTY4ODAxODI@._V1_Ratio0.7053_AL_.jpg', NULL, '7.6', NULL),
('tt14060094', NULL, NULL, 'Blacklight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2ViYmNhNzEtZDJhNS00YzM4LTkzZWItZDJiNzc5ZDExOWZmXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '4.7', NULL),
('tt14074936', NULL, NULL, 'Fire Island', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDA4YTJiM2UtYzE0NC00NTY3LTgzNzItODE0ZGEzNDE4NmNiXkEyXkFqcGdeQXVyNjczNTM5ODI@._V1_Ratio0.7343_AL_.jpg', NULL, '', NULL),
('tt14114802', 83, 10, 'The Outfit', 'The Outfit (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYWQ0NWUyMjktYjg4Yy00NmY3LTg2YzEtNWY5OTY5YTc2MjhjXkEyXkFqcGdeQXVyMTA2MDU0NjM5._V1_Ratio0.6716_AL_.jpg', '\"Graham Moore (dir.), Zoey Deutch, Dylan O\'Brien\"', '7.1', '22524'),
('tt14145426', NULL, NULL, 'Beavis and Butt-Head Do the Universe', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTc5ZmNiYjItMjE3Mi00NTQ4LThjYjctZDBhZDNjYzBkNWI5XkEyXkFqcGdeQXVyMTQzNTA5MzYz._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt14174940', 17, 445, 'Interceptor', 'Interceptor (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZGNjYjQ3NjgtZWM0NS00MTY5LTlkZWMtODZlNzhkNTU3MzZiXkEyXkFqcGdeQXVyMjM2OTI3Mzk@._V1_Ratio0.6716_AL_.jpg', '\"Matthew Reilly (dir.), Elsa Pataky, Luke Bracey\"', '4.5', '6394'),
('tt1431045', NULL, NULL, 'Deadpool', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzE5MjY1ZDgtMTkyNC00MTMyLThhMjAtZGI5OTE1NzFlZGJjXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt14376344', NULL, NULL, 'Cha Cha Real Smooth', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjYzMGU0MzUtMTUxYy00MzE4LWFiMjctOTgwODg1ZjkwNTc0XkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt14404596', NULL, NULL, 'Backpackers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjdiNzk3YmYtMDdkYi00MmQyLTg1MWEtNzAwNGQ1ZDE1MWZiXkEyXkFqcGdeQXVyMzM0NTc2MTE@._V1_Ratio0.6860_AL_.jpg', NULL, '5.7', NULL),
('tt14405338', NULL, NULL, 'A House on the Bayou', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjVlZTJlMjYtZDJjMC00YmIzLWJhOWEtYmMzMDk1YTJhYzU1XkEyXkFqcGdeQXVyMjY5ODI4NDk@._V1_Ratio0.6763_AL_.jpg', NULL, '5.5', NULL),
('tt14412446', NULL, NULL, 'Moloch', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2ExYmM3NTQtYTU5OC00ZDY1LTgxNzktNDFlMjc2ODUxYTIyXkEyXkFqcGdeQXVyNTUwOTc4Mjk@._V1_Ratio0.7053_AL_.jpg', NULL, '7.0', NULL),
('tt14439896', 23, 310, 'Father Stu', 'Father Stu (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNGYwOTI1MTUtYmY0Mi00OTAxLTkwNDEtOTI5YTkyZTVhN2JiXkEyXkFqcGdeQXVyMTAxNDE3MTE5._V1_Ratio0.7910_AL_.jpg', '\"Rosalind Ross (dir.), Mark Wahlberg, Mel Gibson\"', '6.5', '5407'),
('tt14463484', NULL, NULL, 'Through My Window', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmNkYWMwZjQtNDQyZC00OTgxLTk0ZWEtNmMwNzQ1MmQ2ODYyXkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.6763_AL_.jpg', NULL, '5.4', NULL),
('tt14506528', NULL, NULL, 'Along for the Ride', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTAxNTRjYTQtYjg3ZC00NzI1LWE5YzgtZTIwMGU1NDBkYzBmXkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.8019_AL_.jpg', NULL, '6.0', NULL),
('tt14549466', 14, 14, 'Crimes of the Future', 'Crimes of the Future (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZDdjODNkMmYtYjMwNS00NTQzLThlYjUtODY2ZjdjNTNlY2JiXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"David Cronenberg (dir.), Léa Seydoux, Kristen Stewart\"', '6.6', '2195'),
('tt14586544', NULL, NULL, 'Billy the Kid', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWRiMmUzNDctYmY2MC00MDVlLWE0N2QtYzc5MDA5MzBhYmJlXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt14641542', NULL, NULL, 'The Eight Mountains', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjkxY2YyZmYtOWRmYy00YmI0LWFiYjktNjJmYzkwZTdlNGE2XkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.7053_AL_.jpg', NULL, '6.7', NULL),
('tt1464335', 31, -2, 'Uncharted', 'Uncharted (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMWEwNjhkYzYtNjgzYy00YTY2LThjYWYtYzViMGJkZTI4Y2MyXkEyXkFqcGdeQXVyNTM0OTY1OQ@@._V1_Ratio0.6716_AL_.jpg', '\"Ruben Fleischer (dir.), Tom Holland, Mark Wahlberg\"', '6.4', '126841'),
('tt14686544', NULL, NULL, 'White Elephant', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjlhYjk5Y2MtZTJlYi00YzM2LTk2ZmQtOTE2NmEyZGM1MjJhXkEyXkFqcGdeQXVyMTE5NTM5NTU5._V1_Ratio0.6763_AL_.jpg', NULL, '5.1', NULL),
('tt1477834', 26, -8, 'Aquaman', 'Aquaman (2018)', 2018, 'https://imdb-api.com/images/original/MV5BOTk5ODg0OTU5M15BMl5BanBnXkFtZTgwMDQ3MDY3NjM@._V1_Ratio0.6716_AL_.jpg', '\"James Wan (dir.), Jason Momoa, Amber Heard\"', '6.8', '454765'),
('tt1480656', NULL, NULL, 'Cosmopolis', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY1NjI0MDYyNV5BMl5BanBnXkFtZTcwNDIzMDEyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.1', NULL),
('tt14807308', NULL, NULL, 'She Said', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTc3NWI3NDktMGVkYi00MjU4LWFkNzUtZjAzZGRlMWQyYmU0XkEyXkFqcGdeQXVyNTk5NTQzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt14817272', NULL, NULL, 'The Weekend Away', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmYzNTBiZTAtNmJjNi00MTcyLThlZGMtNDA5Y2RkNjM3ODAzXkEyXkFqcGdeQXVyMzg3OTQ5MjU@._V1_Ratio0.8019_AL_.jpg', NULL, '5.6', NULL),
('tt14821150', NULL, NULL, 'Vortex', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjMxYTFmNTctNDgyYi00NzQwLTk1NTItMmVkYjk5Yjc1NmI2XkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.6957_AL_.jpg', NULL, '7.5', NULL),
('tt1488589', 88, 0, 'Guillermo del Toro\'s Pinocchio', 'Guillermo del Toro\'s Pinocchio (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMTkwNjk2ODY2NF5BMl5BanBnXkFtZTcwNTgzNjAyOQ@@._V1_Ratio0.6716_AL_.jpg', '\"Guillermo del Toro (dir.), Finn Wolfhard, Ewan McGregor\"', '', '0'),
('tt1490017', NULL, NULL, 'The Lego Movie', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt14976386', NULL, NULL, 'Forever Young', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDE5NDgyMDktM2EzYS00NmMyLWJhNjQtNDZkMWZiOGI4M2IzXkEyXkFqcGdeQXVyMTMzNzQ0MTUw._V1_Ratio1.8551_AL_.jpg', NULL, '6.5', NULL),
('tt15004136', 37, 211, 'Last Seen Alive', 'Last Seen Alive (2022)', 2022, 'https://imdb-api.com/images/original/MV5BODk4MzkxODgtODEwZi00YTAwLWJjYzUtNjRkYjEzY2ZmNzYxXkEyXkFqcGdeQXVyMDEyNTM2Mg@@._V1_Ratio0.7015_AL_.jpg', '\"Brian Goodman (dir.), Gerard Butler, Jaimie Alexander\"', '5.6', '2214'),
('tt15010292', NULL, NULL, 'Flux Gourmet', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTFjNjY2ZDctYTBiYS00ZjRhLThhZjUtZjk5NTlmZjU2NDBiXkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt15079778', NULL, NULL, 'Costa!!', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGVhYzQxNjItZTIwOC00MGY2LWJiNDktMDVjOTRiYjczMzAwXkEyXkFqcGdeQXVyMTIzODgzODAw._V1_Ratio0.7053_AL_.jpg', NULL, '5.8', NULL),
('tt15097216', NULL, NULL, 'Jai Bhim', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGEzN2VkMmUtMGM1Zi00Y2U1LTlkMDktMTlhMTdmYzZmZDlhXkEyXkFqcGdeQXVyODEyNjEwMDk@._V1_Ratio0.6763_AL_.jpg', NULL, '8.9', NULL),
('tt15137580', NULL, NULL, 'Wheel Chair Romeo', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTVkNzkxMDYtZTkzZS00MDg1LWJmZDgtMWM0MjNlZjIyMDYyXkEyXkFqcGdeQXVyOTcxMjcxMDg@._V1_Ratio0.6763_AL_.jpg', NULL, '9.6', NULL),
('tt15174116', NULL, NULL, 'Dashcam', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjQ2YTcxYTctODM3Yi00ZjQ3LWE3NTctNmZiM2JhMDRjMzc0XkEyXkFqcGdeQXVyMjY5ODI4NDk@._V1_Ratio0.6957_AL_.jpg', NULL, '4.8', NULL),
('tt15215512', 25, -12, 'A Perfect Pairing', 'A Perfect Pairing (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNTgzZjM5MWQtN2NhMy00NTFiLTliNGUtYTFiZjY3MWYwYmZjXkEyXkFqcGdeQXVyNjEwNTM2Mzc@._V1_Ratio0.7910_AL_.jpg', '\"Stuart McDonald (dir.), Victoria Justice, Adam Demos\"', '6.1', '6192'),
('tt15218000', 57, 975, 'Fire Island', 'Fire Island (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNjBiZjc3YzItYWQ0Ni00YjZlLWFjYTAtMTBiNzM5ZmMxOGExXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Andrew Ahn (dir.), Joel Kim Booster, Bowen Yang\"', '6.8', '2186'),
('tt15239678', NULL, NULL, 'Dune: Part Two', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjFkM2RhZjUtN2U0MC00NTMxLTk1MjktZDkwNjg3MjI0NmYxXkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt15255876', NULL, NULL, 'Emily the Criminal', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzM5ZWYxYTctNzIzOC00OTZiLWEyMmUtMWJlYjlmNTMwZTg0XkEyXkFqcGdeQXVyMTMyMDYyNTA0._V1_Ratio1.7778_AL_.jpg', NULL, '7.0', NULL),
('tt15341442', NULL, NULL, 'The Croods: Family Tree', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTAzNmFiMjctMmZhZi00MjdmLWI1OWEtYWY1NGIzMzYxZTU1XkEyXkFqcGdeQXVyNDU1Mjg2ODQ@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt15387160', NULL, NULL, 'Degala Babji', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODU5MGIwNWUtNzk5Mi00MzcwLWE5YTUtMWRhYmY3ZWI3YzcxXkEyXkFqcGdeQXVyMTA0MDMwNDEy._V1_Ratio0.6763_AL_.jpg', NULL, '8.3', NULL),
('tt15432804', NULL, NULL, 'F*ck Love Too', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2NmYjRmYmUtNmRjMS00NTc3LThjNDAtMjQzNjIzNDhjYzRiXkEyXkFqcGdeQXVyMTk1ODQxNTM@._V1_Ratio0.7150_AL_.jpg', NULL, '3.8', NULL),
('tt15452062', NULL, NULL, 'Boy from Heaven', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTk5YWQyMGQtN2ViNi00MGRkLTgwMjgtODcwNTkwNTMwYmJkXkEyXkFqcGdeQXVyMTM5NTczMjkz._V1_Ratio0.7536_AL_.jpg', NULL, '7.1', NULL),
('tt15498104', NULL, NULL, 'Foodies', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2M5YzE1NzUtMmM3Ni00ZDg1LTk5NjQtZDEyMzlkODVlN2U5XkEyXkFqcGdeQXVyMTUwNDAxNDk5._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt1561755', NULL, NULL, 'Bob\'s Burgers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGJiNmM1NDctNWUxYS00YzE4LWJjNTgtYTJhYzE0NjFmMTMwXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt1563742', NULL, NULL, 'Overboard', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2E5MWYwYTktMmIxZC00MWVkLTk4YjctNGU1OGVjMDIwNzM2XkEyXkFqcGdeQXVyNTAwODk1NzY@._V1_Ratio0.7053_AL_.jpg', NULL, '6.0', NULL),
('tt1571222', NULL, NULL, 'A Dangerous Method', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU5Mjk3NjgxMl5BMl5BanBnXkFtZTcwMDM5MjA5Ng@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt1606375', NULL, NULL, 'Downton Abbey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2U1NmIwYzgtNjFkOS00YWUxLTg0YTMtZmE5NTA3YjRmY2NlXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_Ratio0.7053_AL_.jpg', NULL, '8.7', NULL),
('tt16116174', NULL, NULL, 'Harry Potter 20th Anniversary: Return to Hogwarts', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTZkNWEyZTgtYzJlOS00OWNiLTgwZjMtZGU5NTRhNDNjOTRhXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_Ratio1.0048_AL_.jpg', NULL, '8.0', NULL),
('tt1630029', 78, -42, 'Avatar: The Way of Water', 'Avatar: The Way of Water (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMWFmYmRiYzMtMTQ4YS00NjA5LTliYTgtMmM3OTc4OGY3MTFkXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.7910_AL_.jpg', '\"James Cameron (dir.), Michelle Yeoh, Zoe Saldana\"', '', '0'),
('tt1638355', NULL, NULL, 'The Man from U.N.C.L.E.', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTZmMWFhYmQtZDE5YS00YzBlLWJlOGEtYzAwNGU1YzVlYjZlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt1649418', 48, -28, 'The Gray Man', 'The Gray Man (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOWY4MmFiY2QtMzE1YS00NTg1LWIwOTQtYTI4ZGUzNWIxNTVmXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6716_AL_.jpg', '\"Anthony Russo (dir.), Ana de Armas, Chris Evans\"', '', '0'),
('tt16550638', NULL, NULL, 'Madelines', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ2NmFlNGUtNmQ2NS00OGIwLTkxMzAtNzBlOWMyNjZlNTUxXkEyXkFqcGdeQXVyMzY3MTkwMw@@._V1_Ratio0.6763_AL_.jpg', NULL, '3.8', NULL),
('tt1655444', NULL, NULL, 'There Are No Saints', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGU2YWYyNzYtNjc1My00ODQwLTk3ZWEtZjA1M2QxZTNlOWQ5XkEyXkFqcGdeQXVyNDA1NDA2NTk@._V1_Ratio0.6763_AL_.jpg', NULL, '4.5', NULL),
('tt1663202', NULL, NULL, 'The Revenant', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDE5OWMzM2QtOTU2ZS00NzAyLWI2MDEtOTRlYjIxZGM0OWRjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt16914952', NULL, NULL, 'Black', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGVjOGMyYWEtOTc0OC00ZDhhLWJlZTQtZmMzZGE4M2I0ZTNjXkEyXkFqcGdeQXVyMTA3NjE0OTEz._V1_Ratio0.7053_AL_.jpg', NULL, '9.0', NULL),
('tt1709216', NULL, NULL, 'Operation Mincemeat', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWYxYzdjNmYtMTkwMS00Mjg5LWIyYzAtMWEwMjg3ZDcwYTFmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTgwNjU0MDA@._V1_Ratio1.7585_AL_.jpg', NULL, '7.9', NULL),
('tt1745960', 1, 0, 'Top Gun: Maverick', 'Top Gun: Maverick (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMmIwZDMyYWUtNTU0ZS00ODJhLTg2ZmEtMTk5ZmYzODcxODYxXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Joseph Kosinski (dir.), Tom Cruise, Jennifer Connelly\"', '8.7', '115447'),
('tt1751634', NULL, NULL, 'The Sandman', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTIyZDEzZjEtNjJjNC00MmMzLWE3MmEtYjY1ZDg0YzA1ZWNlXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1757678', NULL, NULL, 'Avatar 3', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmM1NmY4N2QtNmVkOS00MjMyLWI5ZGUtYWYxMDRjY2MzNDdiXkEyXkFqcGdeQXVyMTAwMDAwMA@@._V1_Ratio1.0048_AL_.jpg', NULL, '', NULL),
('tt17595094', NULL, NULL, 'In the Fire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTlmMmRjYzAtMGEwMC00MjQ1LTg5MGMtNmVmYzFiZWI4NzIxXkEyXkFqcGdeQXVyNDg3NDQyODA@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt1790809', 73, -9, 'Pirates of the Caribbean: Dead Men Tell No Tales', 'Pirates of the Caribbean: Dead Men Tell No Tales (2017)', 2017, 'https://imdb-api.com/images/original/MV5BMTYyMTcxNzc5M15BMl5BanBnXkFtZTgwOTg2ODE2MTI@._V1_Ratio0.6716_AL_.jpg', '\"Joachim Rønning (dir.), Johnny Depp, Geoffrey Rush\"', '6.5', '300554'),
('tt1791528', NULL, NULL, 'Inherent Vice', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTVhMjA0OWEtNzY4MS00YWY0LThlOWYtOWNkYjUwMzE5NDYwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt1798632', 87, -45, 'Firestarter', 'Firestarter (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMWIzNzA4MmUtYTIzNy00Y2Q5LWIyM2YtZGRiYzM0ZWQzOTU2XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Keith Thomas (dir.), Zac Efron, Ryan Kiera Armstrong\"', '4.6', '10012'),
('tt1825683', NULL, NULL, 'Black Panther', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTg1MTY2MjYzNV5BMl5BanBnXkFtZTgwMTc4NTMwNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt18258584', NULL, NULL, 'Jackass 4.5', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmIyYWJjZDEtMjg3ZC00YTMwLWE2NmItNmI3Nzk2ZDNlNGU2XkEyXkFqcGdeQXVyMTM0NDcyNTcy._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt18259086', NULL, NULL, 'Sonic the Hedgehog 3', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDE4MzZhMjctZGI1Ny00NjY4LTg0MjMtODQ4YTE0YWU0OTNhXkEyXkFqcGdeQXVyMTQ4MTE5NTE1._V1_Ratio0.8986_AL_.jpg', NULL, '', NULL),
('tt18317064', NULL, NULL, 'Tori and Lokita', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWI0ODY0YTEtMWZlZS00MzE5LTgyZWEtNDAxNGQxNTdhYmY5XkEyXkFqcGdeQXVyMTMzNzQ0MTUw._V1_Ratio1.5072_AL_.jpg', NULL, '6.0', NULL),
('tt1843866', NULL, NULL, 'Captain America: The Winter Soldier', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzA2NDkwODAwM15BMl5BanBnXkFtZTgwODk5MTgzMTE@._V1_Ratio0.6860_AL_.jpg', NULL, '7.8', NULL),
('tt1853728', NULL, NULL, 'Django Unchained', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt18550182', NULL, NULL, 'R.M.N.', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2VkNjg0NjUtNTI5OC00NmQ2LThhMzgtYjA4MGMxYzQ2MGUzXkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.7343_AL_.jpg', NULL, '7.4', NULL),
('tt1856101', NULL, NULL, 'Blade Runner 2049', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzA1Njg4NzYxOV5BMl5BanBnXkFtZTgwODk5NjU3MzI@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt18689424', NULL, NULL, 'Batman v Superman: Dawn of Justice Ultimate Edition', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzgyMTMzZjUtNGNjMy00NTJjLWIzNDYtMTc2YzQwOGE5MGM4XkEyXkFqcGdeQXVyMTUwODYzMjcw._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt1877830', 12, 0, 'The Batman', 'The Batman (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMDdmMTBiNTYtMDIzNi00NGVlLWIzMDYtZTk3MTQ3NGQxZGEwXkEyXkFqcGdeQXVyMzMwOTU5MDk@._V1_Ratio0.6716_AL_.jpg', '\"Matt Reeves (dir.), Robert Pattinson, Zoë Kravitz\"', '7.9', '500872'),
('tt1879016', 39, -13, 'Operation Mincemeat', 'Operation Mincemeat (2021)', 2021, 'https://imdb-api.com/images/original/MV5BOGZlNjZhNjgtMjQzZC00MDI0LWFmNGQtNmNiYTIyYTE3ODhkXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6716_AL_.jpg', '\"John Madden (dir.), Colin Firth, Matthew Macfadyen\"', '6.6', '13449'),
('tt1879030', NULL, NULL, 'Desire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY4OTk5Mjg3MF5BMl5BanBnXkFtZTcwMDIyNDY2Nw@@._V1_Ratio0.7150_AL_.jpg', NULL, '5.4', NULL),
('tt1885299', NULL, NULL, 'Lucky Them', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTM5OTI4ODAzOV5BMl5BanBnXkFtZTgwNTY5OTg2MTE@._V1_Ratio0.6957_AL_.jpg', NULL, '6.1', NULL),
('tt19064880', NULL, NULL, 'The Batman: Deleted Arkham Scene', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTc5MTBiZjQtZGM3ZC00NzExLWE5YTktN2FjNTlhNjIzYWU4XkEyXkFqcGdeQXVyMTEyNzgwMDUw._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt19139066', NULL, NULL, 'Louis', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDBhMDBmODMtOWM3OC00NmZkLTk3MGMtYTM2Y2EzNjUyY2ViXkEyXkFqcGdeQXVyNzczMzU5OTU@._V1_Ratio0.7053_AL_.jpg', NULL, '7.6', NULL),
('tt19623240', 8, -2, 'Winnie-The-Pooh: Blood and Honey', 'Winnie-The-Pooh: Blood and Honey ( 2)', 2, 'https://imdb-api.com/images/original/MV5BNWZiMDFiZTgtN2QzYS00YjViLWE2OGQtZWIxNzA4MjFmM2UzXkEyXkFqcGdeQXVyMjM4MTU4NjQ@._V1_Ratio1.7761_AL_.jpg', '\"Rhys Frake-Waterfield (dir.), Natasha Tosini, Amber Doig-Thorne\"', '', '0'),
('tt19652910', NULL, NULL, 'EO', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTllN2UwNDEtOTRjZS00OTM5LWE4NjYtMTBlNjFkNjQ1MDU0XkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.7053_AL_.jpg', NULL, '6.9', NULL),
('tt19704638', NULL, NULL, 'Our Father', NULL, NULL, 'https://imdb-api.com/images/original/MV5BM2ZjYzI3MWItODYxYS00ZmNmLWEyN2YtNDQ1NjhjNTcwYzc4XkEyXkFqcGdeQXVyMjY5ODI4NDk@._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt1972591', NULL, NULL, 'King Arthur: Legend of the Sword', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjM3ODY3Njc5Ml5BMl5BanBnXkFtZTgwMjQ5NjM5MTI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt1979376', NULL, NULL, 'Toy Story 4', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTYzMDM4NzkxOV5BMl5BanBnXkFtZTgwNzM1Mzg2NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt1981115', NULL, NULL, 'Thor: The Dark World', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQyNzAwOTUxOF5BMl5BanBnXkFtZTcwMTE0OTc5OQ@@._V1_Ratio0.7053_AL_.jpg', NULL, '6.8', NULL),
('tt20420316', NULL, NULL, 'Gladbeck: The Hostage Crisis', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGFhNzg1ODAtM2E2NS00NmNlLWIxZTUtZmNkMmNiNmZmNzM1XkEyXkFqcGdeQXVyNDg0NjMwNDY@._V1_Ratio0.7150_AL_.jpg', NULL, '7.5', NULL),
('tt20449048', NULL, NULL, 'Feels Like Home', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2Q1NDMwNGYtYjBkNi00YjM3LTk5NGQtZjk1ZjllZTdjNWEzXkEyXkFqcGdeQXVyOTg3MTI0NjA@._V1_Ratio0.6957_AL_.jpg', NULL, '8.5', NULL),
('tt2049403', 32, 130, 'Beetlejuice 2', 'Beetlejuice 2 (2025)', 2025, 'https://imdb-api.com/images/original/nopicture.jpg', 'Tim Burton (dir.)', '', '0'),
('tt20560404', NULL, NULL, 'Keep Sweet: Pray and Obey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjhmZmExNzctMjIwMS00ZDdmLWI5OGItMDExZjcxMDVhMjA1XkEyXkFqcGdeQXVyNDI3NjU1NzQ@._V1_Ratio0.7150_AL_.jpg', NULL, '7.5', NULL),
('tt2080323', NULL, NULL, 'Hotel Desire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjNmZjIzNjItNDMxMS00ZjNjLTg3ZDYtZjliYmM1M2MxOTUzXkEyXkFqcGdeQXVyNjUzNDkzMDI@._V1_Ratio0.7053_AL_.jpg', NULL, '5.6', NULL),
('tt2081436', NULL, NULL, 'New-Gen', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzNjODQwMTgtNTRlYi00YzNkLWE2YmUtYWY1ZjhiZTIwZDE2XkEyXkFqcGdeQXVyMjQ0MjIwMg@@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt20866202', NULL, NULL, 'Cyber Vaar', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDljZDA3ZWEtN2M5OC00NWM3LWFlYTEtYWZlNWJjYjAyMWIyXkEyXkFqcGdeQXVyMTE0MzY0NjE1._V1_Ratio0.6763_AL_.jpg', NULL, '9.5', NULL),
('tt2092452', NULL, NULL, 'Pirates of the Caribbean: Tales of the Code: Wedlocked', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGFiZTQ0MDctM2ViMS00MGEwLWIxNzgtYWUzZDM4N2NiMmQyXkEyXkFqcGdeQXVyNTE1NjY5Mg@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt2096673', NULL, NULL, 'Inside Out', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt2172584', NULL, NULL, 'Maps to the Stars', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY3MjQwNzYyNV5BMl5BanBnXkFtZTgwNTY3NDQ5MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt2209764', NULL, NULL, 'Transcendence', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc1MjQ3ODAyOV5BMl5BanBnXkFtZTgwNjI1NDQ0MTE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt2245084', NULL, NULL, 'Big Hero 6', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDliOTIzNmUtOTllOC00NDU3LWFiNjYtMGM0NDc1YTMxNjYxXkEyXkFqcGdeQXVyNTM3NzExMDQ@._V1_Ratio0.7053_AL_.jpg', NULL, '7.8', NULL),
('tt2250912', NULL, NULL, 'Spider-Man: Homecoming', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTk4ODQ1MzgzNl5BMl5BanBnXkFtZTgwMTMyMzM4MTI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt2278871', NULL, NULL, 'Blue Is the Warmest Colour', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ5NTg5ODk4OV5BMl5BanBnXkFtZTgwODc4MTMzMDE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt2294629', NULL, NULL, 'Frozen', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ1MjQwMTE5OF5BMl5BanBnXkFtZTgwNjk3MTcyMDE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt2296777', NULL, NULL, 'Sherlock Gnomes', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc2NjUzODMxMF5BMl5BanBnXkFtZTgwMzMwMDIzNDM@._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt2322441', NULL, NULL, 'Fifty Shades of Grey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjE1MTM4NDAzOF5BMl5BanBnXkFtZTgwNTMwNjI0MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '4.1', NULL),
('tt2379713', NULL, NULL, 'Spectre', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWQ1MDE1NzgtNTQ4OC00ZjliLTllZDAtN2IyOTVmMTc5YjUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt2380307', NULL, NULL, 'Coco', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_Ratio0.7053_AL_.jpg', NULL, '8.4', NULL),
('tt2381249', NULL, NULL, 'Mission: Impossible - Rogue Nation', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTFmNDA3ZjMtN2Y0MC00NDYyLWFlY2UtNTQ4OTQxMmY1NmVjXkEyXkFqcGdeQXVyNTg4NDQ4NDY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt2382320', 69, 5, 'No Time to Die', 'No Time to Die (2021)', 2021, 'https://imdb-api.com/images/original/MV5BYWQ2NzQ1NjktMzNkNS00MGY1LTgwMmMtYTllYTI5YzNmMmE0XkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6716_AL_.jpg', '\"Cary Joji Fukunaga (dir.), Daniel Craig, Ana de Armas\"', '7.3', '359021'),
('tt2395427', NULL, NULL, 'Avengers: Age of Ultron', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTM4OGJmNWMtOTM4Ni00NTE3LTg3MDItZmQxYjc4N2JhNmUxXkEyXkFqcGdeQXVyNTgzMDMzMTg@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt2452244', NULL, NULL, 'Isn\'t It Romantic', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGE1NGYxOWItODdmMy00NWNhLTgxZmMtYmVjYmViMGI0NTdmXkEyXkFqcGdeQXVyNzE2MTQyMzM@._V1_Ratio0.6763_AL_.jpg', NULL, '5.9', NULL),
('tt2463208', 81, -5, 'The Adam Project', 'The Adam Project (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOWM0YWMwMDQtMjE5NS00ZTIwLWE1NWEtODViMWZjMWI2OTU3XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Shawn Levy (dir.), Ryan Reynolds, Walker Scobell\"', '6.7', '169249'),
('tt2488496', NULL, NULL, 'Star Wars: Episode VII - The Force Awakens', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt2527336', NULL, NULL, 'Star Wars: Episode VIII - The Last Jedi', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjQ1MzcxNjg4N15BMl5BanBnXkFtZTgwNzgwMjY4MzI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt2527338', NULL, NULL, 'Star Wars: Episode IX - The Rise of Skywalker', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDljNTQ5ODItZmQwMy00M2ExLTljOTQtZTVjNGE2NTg0NGIxXkEyXkFqcGdeQXVyODkzNTgxMDg@._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt2567026', NULL, NULL, 'Alice Through the Looking Glass', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTc2NjExMTIyN15BMl5BanBnXkFtZTgwMjg0OTIwODE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt2631186', NULL, NULL, 'Baahubali: The Beginning', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWVlMjVhZWYtNWViNC00ODFkLTk1MmItYjU1MDY5ZDdhMTU3XkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt2677722', NULL, NULL, 'City of Lies', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2YyNTJjYmMtOGQxZC00N2UxLWEzNjMtOGU3ZjA2MGU1NjA5XkEyXkFqcGdeQXVyMTE1Nzg4NjY0._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt2798920', NULL, NULL, 'Annihilation', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTk2Mjc2NzYxNl5BMl5BanBnXkFtZTgwMTA2OTA1NDM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt2922112', NULL, NULL, 'Pleasure', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjI0NzU0MjEwNl5BMl5BanBnXkFtZTgwMjU5MjAxMTE@._V1_Ratio0.7536_AL_.jpg', NULL, '5.5', NULL),
('tt2948356', NULL, NULL, 'Zootopia', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTMyMjEyNzIzMV5BMl5BanBnXkFtZTgwNzIyNjU0NzE@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt2948372', NULL, NULL, 'Soul', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGE1MDg5M2MtNTkyZS00MTY5LTg1YzUtZTlhZmM1Y2EwNmFmXkEyXkFqcGdeQXVyNjA3OTI0MDc@._V1_Ratio0.6763_AL_.jpg', NULL, '8.0', NULL),
('tt2953050', 97, -2, 'Encanto', 'Encanto (2021)', 2021, 'https://imdb-api.com/images/original/MV5BNjE5NzA4ZDctOTJkZi00NzM0LTkwOTYtMDI4MmNkMzIxODhkXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6716_AL_.jpg', '\"Jared Bush (dir.), Stephanie Beatriz, María Cecilia Botero\"', '7.2', '199843'),
('tt3045616', NULL, NULL, 'Mortdecai', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjM3NDcxOTM5Ml5BMl5BanBnXkFtZTgwNTEwNzE0MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '5.5', NULL),
('tt3095356', NULL, NULL, 'Avatar 4', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmM1NmY4N2QtNmVkOS00MjMyLWI5ZGUtYWYxMDRjY2MzNDdiXkEyXkFqcGdeQXVyMTAwMDAwMA@@._V1_Ratio1.0048_AL_.jpg', NULL, '', NULL),
('tt3183660', 54, 128, 'Fantastic Beasts and Where to Find Them', 'Fantastic Beasts and Where to Find Them (2016)', 2016, 'https://imdb-api.com/images/original/MV5BMjMxOTM1OTI4MV5BMl5BanBnXkFtZTgwODE5OTYxMDI@._V1_Ratio0.6716_AL_.jpg', '\"David Yates (dir.), Eddie Redmayne, Katherine Waterston\"', '7.2', '463482'),
('tt3232262', NULL, NULL, 'Sonic Boom', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjNkOWVhZmItMmE4Yi00MGNkLWI2YzQtOGRiNWFjNTEyMDFlXkEyXkFqcGdeQXVyOTcyNTkzOTA@._V1_Ratio0.7150_AL_.jpg', NULL, '6.8', NULL),
('tt3402236', NULL, NULL, 'Murder on the Orient Express', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTAxNDkxODIyMDZeQTJeQWpwZ15BbWU4MDQ2Mjg4NDIy._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt3447590', NULL, NULL, 'Matilda', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDBhYmFjNTEtYzBmYS00NDU1LWI0NmYtZDFiZGRiYTU1MTFkXkEyXkFqcGdeQXVyNTk5NTQzNDI@._V1_Ratio1.0048_AL_.jpg', NULL, '', NULL),
('tt3460252', NULL, NULL, 'The Hateful Eight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjA1MTc1NTg5NV5BMl5BanBnXkFtZTgwOTM2MDEzNzE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt3470600', NULL, NULL, 'Sing', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTYzODYzODU2Ml5BMl5BanBnXkFtZTgwNTc1MTA2NzE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.1', NULL),
('tt3480822', NULL, NULL, 'Black Widow', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjRmNDI5MjMtMmFhZi00YzcwLWI4ZGItMGI2MjI0N2Q3YmIwXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt3498820', NULL, NULL, 'Captain America: Civil War', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.8', NULL),
('tt3501632', NULL, NULL, 'Thor: Ragnarok', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjMyNDkzMzI1OF5BMl5BanBnXkFtZTgwODcxODg5MjI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt3513500', 11, -8, 'Chip \'n Dale: Rescue Rangers', 'Chip \'n Dale: Rescue Rangers (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZjBlMjIxN2ItNTMyNi00NDk5LWFhMzEtNzdiODE0Y2M4MWI2XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Akiva Schaffer (dir.), Andy Samberg, John Mulaney\"', '7.1', '23350'),
('tt3521164', NULL, NULL, 'Moana', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjI4MzU5NTExNF5BMl5BanBnXkFtZTgwNzY1MTEwMDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt3581652', NULL, NULL, 'West Side Story', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzQ5ZDZhZDItZTNmZi00MWQ0LWJlNDUtZTE4ZWJmODNlM2Y3XkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt3704428', 13, 2, 'Elvis', 'Elvis (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMjk0YWFlZDQtZjIzYi00Y2Q3LTkxMjktNmMzNzc1NzFmMzhjXkEyXkFqcGdeQXVyNjc0NzQzNTM@._V1_Ratio0.6716_AL_.jpg', '\"Baz Luhrmann (dir.), Tom Hanks, Austin Butler\"', '', '0'),
('tt3706352', NULL, NULL, 'All the Old Knives', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTZhNDM0MGItYjIwYS00NTMzLWIxYmUtZjIwM2Q4NDhjY2EyXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt3731562', NULL, NULL, 'Kong: Skull Island', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDg0OGM1NWEtNDEwOC00OTE2LTliZWEtNzg1MTZkNjFlMmNhXkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_Ratio0.6763_AL_.jpg', NULL, '6.6', NULL),
('tt3748528', 92, 90, 'Rogue One: A Star Wars Story', 'Rogue One: A Star Wars Story (2016)', 2016, 'https://imdb-api.com/images/original/MV5BMjEwMzMxODIzOV5BMl5BanBnXkFtZTgwNzg3OTAzMDI@._V1_Ratio0.6716_AL_.jpg', '\"Gareth Edwards (dir.), Felicity Jones, Diego Luna\"', '7.8', '608945'),
('tt3774694', 70, 11, 'Love', 'Love (2015)', 2015, 'https://imdb-api.com/images/original/MV5BMTQzNDUwODk5NF5BMl5BanBnXkFtZTgwNzA0MDQ2NTE@._V1_Ratio0.7015_AL_.jpg', '\"Gaspar Noé (dir.), Aomi Muyock, Karl Glusman\"', '6.0', '57320'),
('tt3778644', NULL, NULL, 'Solo: A Star Wars Story', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTM2NTI3NTc3Nl5BMl5BanBnXkFtZTgwNzM1OTQyNTM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt3794354', 100, -17, 'Sonic the Hedgehog', 'Sonic the Hedgehog (2020)', 2020, 'https://imdb-api.com/images/original/MV5BNTdmNmI4MzQtZTAzNS00MjhjLWEzOGQtZjI1NDNjZjk4N2JjXkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6716_AL_.jpg', '\"Jeff Fowler (dir.), Ben Schwartz, James Marsden\"', '6.5', '131186'),
('tt3838992', NULL, NULL, 'Yoga Hosers', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU0MjUzMDc3Ml5BMl5BanBnXkFtZTgwNjg5NjYwOTE@._V1_Ratio0.6763_AL_.jpg', NULL, '4.2', NULL),
('tt4028464', NULL, NULL, 'The Innocents', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDgwNGFmMDMtNGQzMC00Mjc2LWFhNzItYWIxMGJlM2Q2MzZlXkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt4034354', NULL, NULL, 'Swiss Army Man', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTk0OTEyMjM1OF5BMl5BanBnXkFtZTgwMzMzODM4ODE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt4081630', 46, -25, 'The Valet', 'The Valet (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNWZiNDM3MjgtYzY1Ni00ZTI1LTgzMTktMzBiOTI5OWU0OTc0XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Richard Wong (dir.), Eugenio Derbez, Samara Weaving\"', '6.7', '6735'),
('tt4116284', NULL, NULL, 'The Lego Batman Movie', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTcyNTEyOTY0M15BMl5BanBnXkFtZTgwOTAyNzU3MDI@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt4123430', 29, 104, 'Fantastic Beasts: The Crimes of Grindelwald', 'Fantastic Beasts: The Crimes of Grindelwald (2018)', 2018, 'https://imdb-api.com/images/original/MV5BYWVlMDI5N2UtZTIyMC00NjZkLWI5Y2QtODM5NGE5MzA0NmVjXkEyXkFqcGdeQXVyNzU3NjUxMzE@._V1_Ratio0.6716_AL_.jpg', '\"David Yates (dir.), Eddie Redmayne, Katherine Waterston\"', '6.5', '271344'),
('tt4123432', 3, 31, 'Fantastic Beasts: The Secrets of Dumbledore', 'Fantastic Beasts: The Secrets of Dumbledore (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZGQ1NjQyNDMtNzFlZS00ZGIzLTliMWUtNGJkMGMzNTBjNDg0XkEyXkFqcGdeQXVyMTE1NDI5MDQx._V1_Ratio0.6716_AL_.jpg', '\"David Yates (dir.), Eddie Redmayne, Jude Law\"', '6.3', '81866');
INSERT INTO `evidenza` (`id`, `rank`, `rankUpDown`, `title`, `fullTitle`, `year`, `image`, `crew`, `imDbRating`, `imDbRatingCount`) VALUES
('tt4126476', NULL, NULL, 'After', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGUwMjk3YzktNDI0Yy00MzFiLWFjNmEtYTA2ODVjMzNhODhjXkEyXkFqcGdeQXVyOTQ1MDI4MzY@._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt4154664', NULL, NULL, 'Captain Marvel', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTE0YWFmOTMtYTU2ZS00ZTIxLWE3OTEtYTNiYzBkZjViZThiXkEyXkFqcGdeQXVyODMzMzQ4OTI@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt4154756', NULL, NULL, 'Avengers: Infinity War', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjMxNjY2MDU1OV5BMl5BanBnXkFtZTgwNzY1MTUwNTM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt4154796', 79, -5, 'Avengers: Endgame', 'Avengers: Endgame (2019)', 2019, 'https://imdb-api.com/images/original/MV5BMTc5MDE2ODcwNV5BMl5BanBnXkFtZTgwMzI2NzQ2NzM@._V1_Ratio0.6716_AL_.jpg', '\"Anthony Russo (dir.), Robert Downey Jr., Chris Evans\"', '8.4', '1059848'),
('tt4209952', NULL, NULL, 'Beetlejuice 2', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjhjMDAyMTYtZDdiOS00MmNiLTlmN2MtYzM1NWIwODQ0NWMzXkEyXkFqcGdeQXVyMzQ5MDUwMDE@._V1_Ratio1.9710_AL_.jpg', NULL, '5.6', NULL),
('tt4227392', NULL, NULL, 'Morbius: The Living Vampire', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTU2MTg5MjE5NV5BMl5BanBnXkFtZTgwNzQzNjU1MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt4263482', NULL, NULL, 'The Witch', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTUyNzkwMzAxOF5BMl5BanBnXkFtZTgwMzc1OTk1NjE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.9', NULL),
('tt4299234', NULL, NULL, 'Fire Island', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2Q3NDY5N2QtYjI0YS00NDg4LTg2ZDctMjdjZTUyNzk5OGE3XkEyXkFqcGdeQXVyNDIwMDY1ODM@._V1_Ratio0.6763_AL_.jpg', NULL, '3.7', NULL),
('tt4465564', NULL, NULL, 'Fifty Shades Darker', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ5NTk0Njg2N15BMl5BanBnXkFtZTgwNzk5Nzk3MDI@._V1_Ratio0.6763_AL_.jpg', NULL, '4.5', NULL),
('tt4477536', NULL, NULL, 'Fifty Shades Freed', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTYxOTQ1MzI0Nl5BMl5BanBnXkFtZTgwMzgwMzIxNDM@._V1_Ratio0.6763_AL_.jpg', NULL, '4.4', NULL),
('tt4513678', 40, -9, 'Ghostbusters: Afterlife', 'Ghostbusters: Afterlife (2021)', 2021, 'https://imdb-api.com/images/original/MV5BMmZiMjdlN2UtYzdiZS00YjgxLTgyZGMtYzE4ZGU5NTlkNjhhXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Jason Reitman (dir.), Carrie Coon, Paul Rudd\"', '7.1', '153135'),
('tt4574334', NULL, NULL, 'Stranger Things', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODZlYjQ4NzYtZTg1MC00NGY4LTg4NjQtNGE3ZjRkMjk3YjMyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.8019_AL_.jpg', NULL, '8.7', NULL),
('tt4593060', 5, 0, 'Pinocchio', 'Pinocchio (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNDZiMTA3ZjEtZGJjNS00OTkwLWFiYzUtZjdkZDUxZTVlZTY0XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Robert Zemeckis (dir.), Tom Hanks, Lorraine Bracco\"', '', '0'),
('tt4624366', NULL, NULL, 'Monstrous', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmJhZDJkMGEtYzQxMC00MDA0LTk4NWItMjljNDRjNTJmNjY1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6763_AL_.jpg', NULL, '4.6', NULL),
('tt4633694', NULL, NULL, 'Spider-Man: Into the Spider-Verse', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjMwNDkxMTgzOF5BMl5BanBnXkFtZTgwNTkwNTQ3NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt4641602', NULL, NULL, '365 Days', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzlkZTg3OWItOGI2OC00MDAwLWFkZjktMGRmMDJiM2IyZmI0XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_Ratio0.7150_AL_.jpg', NULL, '2.3', NULL),
('tt4849438', NULL, NULL, 'Baahubali 2: The Conclusion', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOGNlNmRkMjctNDgxMC00NzFhLWIzY2YtZDk3ZDE0NWZhZDBlXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt4881806', NULL, NULL, 'Jurassic World: Fallen Kingdom', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzIxMjYwNDEwN15BMl5BanBnXkFtZTgwMzk5MDI3NTM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt4912910', NULL, NULL, 'Mission: Impossible - Fallout', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjRlZmM0ODktY2RjNS00ZDdjLWJhZGYtNDljNWZkMGM5MTg0XkEyXkFqcGdeQXVyNjAwMjI5MDk@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt4998632', 45, 0, 'Ambulance', 'Ambulance (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYjUyN2VlZGEtNGEyZC00YjViLTgwYmQtZDJiM2FlOTU3Mjg2XkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.6716_AL_.jpg', '\"Michael Bay (dir.), Jake Gyllenhaal, Yahya Abdul-Mateen II\"', '6.1', '43435'),
('tt5013984', NULL, NULL, 'Gully', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTMwZWMyODctM2E3ZS00Yzk1LWFjMWQtN2I4YmJkNGU0M2Y0XkEyXkFqcGdeQXVyMTAyMjQ3NzQ1._V1_Ratio0.7053_AL_.jpg', NULL, '1.7', NULL),
('tt5062938', NULL, NULL, 'While We Live', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzRkYjJmMGMtYWQxOS00MWY2LWFiMjItNjJkZjMwNjc5Njg2XkEyXkFqcGdeQXVyMjQ3NzUxOTM@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt5108870', 16, 1, 'Morbius', 'Morbius (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNTA3N2Q0ZTAtODJjNy00MmQzLWJlMmItOGFmNDI0ODgxN2QwXkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6716_AL_.jpg', '\"Daniel Espinosa (dir.), Jared Leto, Matt Smith\"', '5.2', '72601'),
('tt5109280', NULL, NULL, 'Raya and the Last Dragon', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWNiOTc4NGItNGY4YS00ZGNkLThkOWEtMDE2ODcxODEwNjkwXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt5113044', NULL, NULL, 'Minions: The Rise of Gru', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDQyODUwM2MtNzA0YS00ZjdmLTgzMjItZWRjN2YyYWE5ZTNjXkEyXkFqcGdeQXVyMTI2MzY1MjM1._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt5151570', NULL, NULL, 'Mrs Harris Goes to Paris', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODdlNDdjOWUtNDYwNy00ZWViLWI2MjItZTMwZTVhOTk3ZjMxXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.8019_AL_.jpg', NULL, '', NULL),
('tt5254640', NULL, NULL, 'Spa Night', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTY1Njk0MjA2N15BMl5BanBnXkFtZTgwNTY3Mzc1OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt5301942', NULL, NULL, 'Jersey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDQ4YmExNjctMGY5NC00N2RjLThiYjQtNGUxNTZjY2NhNTQyXkEyXkFqcGdeQXVyMTUxOTQwMzE0._V1_Ratio0.8019_AL_.jpg', NULL, '7.3', NULL),
('tt5311842', NULL, NULL, 'Beauty and the Beast', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTQ2MjUxNjgxMl5BMl5BanBnXkFtZTgwNjgzMTYwODE@._V1_Ratio0.7536_AL_.jpg', NULL, '7.0', NULL),
('tt5315212', 19, -10, 'Senior Year', 'Senior Year (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNDUyYTM0ODYtYzIyMy00OTM2LWFmOTAtMTFlODQwN2NlYjY1XkEyXkFqcGdeQXVyNTk5NTQzNDI@._V1_Ratio0.7910_AL_.jpg', '\"Alex Hardcastle (dir.), Rebel Wilson, Angourie Rice\"', '5.5', '27857'),
('tt5343450', NULL, NULL, 'Little Angels: The Brightest Christmas', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmVkNGUwZjItYmYyNi00N2Q3LWI1OGEtYmQ2YTg1ZGQzYjllXkEyXkFqcGdeQXVyODIxNjk4NzQ@._V1_Ratio0.7053_AL_.jpg', NULL, '3.4', NULL),
('tt5433140', NULL, NULL, 'Fast X', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWY2Yzg4OTktYzIzMS00MGM4LWJiZmEtN2I0ZTg4NjYxYzY5XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.8019_AL_.jpg', NULL, '', NULL),
('tt5456120', NULL, NULL, 'Donald Trump\'s The Art of the Deal: The Movie', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODcyNTk1ZGYtYzcwYy00Y2FiLTk4MjQtNmRlZmMyYWY1NzBkXkEyXkFqcGdeQXVyMjU3NDQ3MDg@._V1_Ratio0.6763_AL_.jpg', NULL, '5.8', NULL),
('tt5559528', NULL, NULL, 'Maanagaram', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODY5OTJiNGUtNzgyMy00ZTQ5LWIyYzctMWQ0ZGM4ZjRiM2E0XkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.1', NULL),
('tt5635026', NULL, NULL, 'Peter Pan & Wendy', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYThlNWI5ZTMtNzlhYy00MjlhLTljMzMtNWY4N2VhNDA1YTE3XkEyXkFqcGdeQXVyNzEzNjU1NDg@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt5637536', NULL, NULL, 'Avatar 5', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmM1NmY4N2QtNmVkOS00MjMyLWI5ZGUtYWYxMDRjY2MzNDdiXkEyXkFqcGdeQXVyMTAwMDAwMA@@._V1_Ratio1.0048_AL_.jpg', NULL, '', NULL),
('tt5727208', NULL, NULL, 'Uncut Gems', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDhkMjUyYjItYWVkYi00YTM5LWE4MGEtY2FlMjA3OThlYmZhXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt5814534', NULL, NULL, 'Spies in Disguise', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzg1MzM3OWUtNjgzZC00NjMzLWE1NzAtOThiMDgyMjhhZDBhXkEyXkFqcGdeQXVyODkzNTgxMDg@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt5821450', NULL, NULL, 'Hump', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTg2ZGIyMjAtMGMzZC00ZWNhLWEzNDEtZWQ1N2ZmMzZkMjc1XkEyXkFqcGdeQXVyMzQwNzkwNw@@._V1_Ratio0.7053_AL_.jpg', NULL, '', NULL),
('tt5834426', 82, -16, 'Moonfall', 'Moonfall (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZjk0OWZiN2ItNmQ2YS00NTJmLTg0MjItNzM4NzBkMWM1ZTRlXkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.7015_AL_.jpg', '\"Roland Emmerich (dir.), Halle Berry, Patrick Wilson\"', '5.2', '51197'),
('tt5884052', NULL, NULL, 'Pokémon: Detective Pikachu', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDkxNzRmNDYtMDY0OS00N2JhLTkzZWUtMWE3MzZkNDk1MmJiXkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt5915444', NULL, NULL, 'A Small Fortune', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDZmYzUxMTgtMWM3MC00MjlkLThmNTAtMmIyMGQyOGEwNWUyXkEyXkFqcGdeQXVyMTU2NjA2ODM@._V1_Ratio0.6957_AL_.jpg', NULL, '5.2', NULL),
('tt5919756', 49, 0, 'Disappearance at Clifton Hill', 'Disappearance at Clifton Hill (2019)', 2019, 'https://imdb-api.com/images/original/MV5BZmQ4NTM4ODctZjU1Yi00ZGMwLWJkMGYtYWZiNjhmMzg2MTk2XkEyXkFqcGdeQXVyODY3Nzc0OTk@._V1_Ratio0.6716_AL_.jpg', '\"Albert Shin (dir.), Addison Tymec, Mikayla Radan\"', '5.4', '3499'),
('tt5971474', NULL, NULL, 'The Little Mermaid', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWUxOGRjNTgtMjhjZC00YjRhLTk4YzEtN2IwMGFiYjZhOTBiXkEyXkFqcGdeQXVyMTA4ODY5NzE0._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt6148156', NULL, NULL, 'Vikram Vedha', NULL, NULL, 'https://imdb-api.com/images/original/MV5BY2FiMTFmMzMtZDI2ZC00NDQyLWExYTUtOWNmZWM1ZDg5YjVjXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt6149052', NULL, NULL, 'Fantastic Beasts and Where to Find Them 4', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzRhMDA4ZDctZjc1ZS00NGUwLWI3MWUtNTBhNDhiYTk1ZGY1XkEyXkFqcGdeQXVyMTQ4MTE5NTE1._V1_Ratio0.6860_AL_.jpg', NULL, '', NULL),
('tt6149154', NULL, NULL, 'Waiting for the Barbarians', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNjNlOTNkYWYtOTdlZC00YzA4LTk2NmQtN2MxYzJhMDI5Y2EzXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.9', NULL),
('tt6208148', NULL, NULL, 'Disney\'s Snow White', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWM1YjI0YmMtN2Q4NS00OThjLThjODAtYmM3YWRmMTBkYjc0XkEyXkFqcGdeQXVyMTExNTY0MjMw._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt6244528', NULL, NULL, 'The Black Ghiandola', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjUwMGI1M2UtYzQxZC00NjViLTk5OTctMTA3MzQyNGY2MjUxXkEyXkFqcGdeQXVyMjY3NjA3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '5.7', NULL),
('tt6264654', 84, 15, 'Free Guy', 'Free Guy (2021)', 2021, 'https://imdb-api.com/images/original/MV5BOTY2NzFjODctOWUzMC00MGZhLTlhNjMtM2Y2ODBiNGY1ZWRiXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6716_AL_.jpg', '\"Shawn Levy (dir.), Ryan Reynolds, Jodie Comer\"', '7.1', '341531'),
('tt6304710', NULL, NULL, 'Moonfall', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGJjOGM4YjEtM2Y4My00YjY1LThlZDMtZGRmYjFiYTliMmNlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjg2NDU5OA@@._V1_Ratio0.7053_AL_.jpg', NULL, '6.4', NULL),
('tt6320628', NULL, NULL, 'Spider-Man: Far from Home', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGZlNTY1ZWUtYTMzNC00ZjUyLWE0MjQtMTMxN2E3ODYxMWVmXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt6329726', NULL, NULL, 'Raising Christopher', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmUyYWUyMGYtYjc3ZC00NzQyLTg2M2EtYTEyNzczN2E0YWI0XkEyXkFqcGdeQXVyNzM1MjIzMzc@._V1_Ratio0.7536_AL_.jpg', NULL, '', NULL),
('tt6334354', NULL, NULL, 'The Suicide Squad', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWU4NDQ2NjEtNjhkOS00Y2MwLWJkODItZmJhZGE0MDU1OWM4XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt6398184', NULL, NULL, 'Downton Abbey', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmQxNGRkMjYtZTAyMy00MDUyLThiNmYtODI1NTkyNmI0ZTNlXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt6404142', NULL, NULL, 'Toruk: The First Flight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWMwYjkxNTUtZGYyZS00OWEyLWE3ZWEtZDYyMGIyMThjM2M1L2ltYWdlXkEyXkFqcGdeQXVyMTYyMTcxMw@@._V1_Ratio0.7053_AL_.jpg', NULL, '7.0', NULL),
('tt6443346', NULL, NULL, 'Black Adam', NULL, NULL, 'https://imdb-api.com/images/original/MV5BN2ZmYTlhNmMtODQ0OS00YWNiLWI1MmMtNzkwYWMzOGM4YWQxXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt6455162', NULL, NULL, 'Bhool Bhulaiyaa 2', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWY5MWEyNzYtYjI2ZS00OWU5LWIxOTUtNjViYTVhY2YzYTc0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.8019_AL_.jpg', NULL, '6.8', NULL),
('tt6467266', 91, -1, 'Sing 2', 'Sing 2 (2021)', 2021, 'https://imdb-api.com/images/original/MV5BMWRiZGQ1NDMtODQ2OS00MDlhLWJkZGYtM2ZmNjlhZThjOWRmXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Garth Jennings (dir.), Matthew McConaughey, Reese Witherspoon\"', '7.4', '50341'),
('tt6710474', 4, 1, 'Everything Everywhere All at Once', 'Everything Everywhere All at Once (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYTdiOTIyZTQtNmQ1OS00NjZlLWIyMTgtYzk5Y2M3ZDVmMDk1XkEyXkFqcGdeQXVyMTAzMDg4NzU0._V1_Ratio0.6716_AL_.jpg', '\"Dan Kwan (dir.), Michelle Yeoh, Stephanie Hsu\"', '8.3', '98776'),
('tt6791350', NULL, NULL, 'Guardians of the Galaxy Vol. 3', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWM3ZWNlMjgtODZjMi00YTAwLWJhZTktMTM4NTgyMjE0NjMwXkEyXkFqcGdeQXVyNTE1NjY5Mg@@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt6810930', NULL, NULL, 'Fire Island', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjFkYjNlZjQtYjQxNC00MDY1LThjZGYtOWU0MDdmYTM1NGNiXkEyXkFqcGdeQXVyMjIzODcxNDY@._V1_Ratio0.6860_AL_.jpg', NULL, '4.8', NULL),
('tt6856242', NULL, NULL, 'The King\'s Man', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDEzZDY2ZDktNTlmOS00NThjLThkNTEtMjE5MzI5NWEwZmRjXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt6865690', NULL, NULL, 'The Professor', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGI0OWI3NTUtNzMwYy00NWJjLWI1ODEtOGMzNzc5YmJiMzE0XkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_Ratio1.7778_AL_.jpg', NULL, '6.7', NULL),
('tt7032958', NULL, NULL, 'Love Machine', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMWViOWIzMjQtNmIzOS00NzZkLThmZGItYmMzNTI5MmMyYTUxXkEyXkFqcGdeQXVyNzM1MjUyNTQ@._V1_Ratio0.7053_AL_.jpg', NULL, '4.0', NULL),
('tt7042798', NULL, NULL, 'The Overnight', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTQ0NjkzZTYtNDQ2Yi00MDQ2LWJmYjAtODk3Nzc4NGJlZTUyXkEyXkFqcGdeQXVyMjYzNTE2OTk@._V1_Ratio0.6763_AL_.jpg', NULL, '2.4', NULL),
('tt7131622', 60, 4, 'Once Upon a Time... In Hollywood', 'Once Upon a Time... In Hollywood (2019)', 2019, 'https://imdb-api.com/images/original/MV5BOTg4ZTNkZmUtMzNlZi00YmFjLTk1MmUtNWQwNTM0YjcyNTNkXkEyXkFqcGdeQXVyNjg2NjQwMDQ@._V1_Ratio0.6716_AL_.jpg', '\"Quentin Tarantino (dir.), Leonardo DiCaprio, Brad Pitt\"', '7.6', '691573'),
('tt7132658', NULL, NULL, 'Emergency', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjI0OGU4YzUtYzUyMS00ZDkyLTk4YWQtYjUxNDNjYjc5ZDU4XkEyXkFqcGdeQXVyMjcwMTE4Nzc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt7144666', 52, 18, 'The Black Phone', 'The Black Phone (2021)', 2021, 'https://imdb-api.com/images/original/MV5BOWVmNTBiYTUtZWQ3Yi00ZDlhLTgyYjUtNzBhZjM3YjRiNGRkXkEyXkFqcGdeQXVyNzYyOTM1ODI@._V1_Ratio0.6716_AL_.jpg', '\"Scott Derrickson (dir.), Ethan Hawke, Jeremy Davies\"', '7.3', '935'),
('tt7146812', NULL, NULL, 'Onward', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTZlYzk3NzQtMmViYS00YWZmLTk5ZTEtNWE0NGVjM2MzYWU1XkEyXkFqcGdeQXVyNDg4NjY5OTQ@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt7161856', NULL, NULL, 'Training \'John Wick\'', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzk0MGFlZGMtYTk4ZS00MDFiLWJhNDAtODhmYWI2NmNhZDU4XkEyXkFqcGdeQXVyODA1NjQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt7286456', NULL, NULL, 'Joker', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNGVjNWI4ZGUtNzE0MS00YTJmLWE0ZDctN2ZiYTk2YmI3NTYyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt7322224', 20, 33, 'Triangle of Sadness', 'Triangle of Sadness (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOTFlYzkyMzEtMTEyNS00MTA3LTk4NTAtZGQzMGQ5MTBiNzVmXkEyXkFqcGdeQXVyNDYwNDUyNDc@._V1_Ratio0.6716_AL_.jpg', '\"Ruben Östlund (dir.), Charlbi Dean, Harris Dickinson\"', '7.8', '252'),
('tt7466442', 42, 16, 'The Bob\'s Burgers Movie', 'The Bob\'s Burgers Movie (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYzFhNDNkY2UtYjc3ZS00NzVkLTlhNzEtYmZiZGMzYmRjMjVhXkEyXkFqcGdeQXVyMjQwMDg0Ng@@._V1_Ratio0.6716_AL_.jpg', '\"Loren Bouchard (dir.), H. Jon Benjamin, Kristen Schaal\"', '7.5', '3440'),
('tt7466810', NULL, NULL, '777 Charlie', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDljMWQxZjQtODllNi00MzljLTg3ZGUtNDU4Zjk2NTAzMWQ2XkEyXkFqcGdeQXVyNDY3NTMzOTM@._V1_Ratio0.6763_AL_.jpg', NULL, '9.3', NULL),
('tt7467820', NULL, NULL, 'Fantastic Beasts and Where to Find Them: Before Harry Potter', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWUxNDcxOGEtZTRmOS00OTY3LTk4YTUtZTE4ZjNiMzM5YjVjXkEyXkFqcGdeQXVyODA1NjQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt7467858', NULL, NULL, 'Fantastic Beasts and Where to Find Them: Newt', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWU1MGVjMGEtMWQ5MS00NmYxLThkMjAtOTFjMjQ4N2I1NDA1XkEyXkFqcGdeQXVyODA1NjQ0OTY@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt7504818', NULL, NULL, 'Ron\'s Gone Wrong', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMzMxMjllYTgtZWNjZS00ODc0LTljZWUtYjdiMDQ2ZDJkM2FkXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt7518786', NULL, NULL, '\'83', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTc0MWIzMjYtMDg4Mi00YmM3LWIxNGUtYjQ5NzBlZTM3YWI2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.8019_AL_.jpg', NULL, '7.5', NULL),
('tt7529298', NULL, NULL, 'Attack', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzY1MWU0YjMtNGQ1ZS00OWYyLTliOTAtMDYzNjEyM2UxNmI4XkEyXkFqcGdeQXVyMTIyNzY0NTMx._V1_Ratio0.8019_AL_.jpg', NULL, '7.1', NULL),
('tt7657566', 27, 6, 'Death on the Nile', 'Death on the Nile (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNjI4ZTQ1OTYtNTI0Yi00M2EyLThiNjMtMzk1MmZlOWMyMDQwXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Kenneth Branagh (dir.), Tom Bateman, Annette Bening\"', '6.3', '113472'),
('tt7740496', NULL, NULL, 'Nightmare Alley', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTI4NDhhNGEtZjQxZC00ZTRmLThmZTctOGJmY2ZlOTc0ZGY0XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt7838252', NULL, NULL, 'K.G.F: Chapter 1', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDNlNzBjMGUtYTA0Yy00OTI2LWJmZjMtODliYmUyYTI0OGFmXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt7903530', NULL, NULL, 'We Die Young', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWRjYzFhMWUtOGExZC00NDIzLTk4OTItNWZjZDRjMmQyOTE1XkEyXkFqcGdeQXVyOTg4MDYyNw@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.2', NULL),
('tt7972454', NULL, NULL, '365', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDkwNmYxZjItODhkNi00MGRkLTg3MTAtY2RjMjE1ZjA4MTU5XkEyXkFqcGdeQXVyMTA5MjkzODc@._V1_Ratio0.7053_AL_.jpg', NULL, '3.4', NULL),
('tt7984734', NULL, NULL, 'The Lighthouse', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmE0MGJhNmYtOWNjYi00Njc5LWE2YjEtMWMxZTVmODUwMmMxXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt7985704', NULL, NULL, 'Operation Fortune: Ruse de guerre', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGFmNmRlZmQtMDAyYy00NTJjLTg2ODQtZDI0OWE3M2I2NDcyXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.3', NULL),
('tt7991608', NULL, NULL, 'Red Notice', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZmRjODgyMzEtMzIxYS00OWY2LTk4YjUtMGMzZjMzMTZiN2Q0XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.3', NULL),
('tt8009428', 95, 167, 'Hustle', 'Hustle (2022)', 2022, 'https://imdb-api.com/images/original/MV5BYjdhYTE3NjMtZjI3OC00NzVlLWFiNTUtNzQ3NDNiNTI3NDg4XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6716_AL_.jpg', '\"Jeremiah Zagar (dir.), Adam Sandler, Ben Foster\"', '', '0'),
('tt8013970', NULL, NULL, 'Bilby', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZjk4NTU1YjAtMDlhMi00NjRjLWFhMDItZTljOGMyYmQwZDdmXkEyXkFqcGdeQXVyNDE1ODU4OTA@._V1_Ratio0.6860_AL_.jpg', NULL, '7.3', NULL),
('tt8041270', 10, 17, 'Jurassic World: Dominion', 'Jurassic World: Dominion (2022)', 2022, 'https://imdb-api.com/images/original/MV5BZmQ1NDZjMTktMjFhZC00ZGY5LWEyMTMtNDhkOWM4NmMyZjI0XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6716_AL_.jpg', '\"Colin Trevorrow (dir.), Chris Pratt, Bryce Dallas Howard\"', '6.3', '4153'),
('tt8097030', NULL, NULL, 'Turning Red', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOWYxZDMxYWUtNjNiZC00MDE1LWI2Y2QtNWZhNDAyMGY5ZjVhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.0', NULL),
('tt8110652', NULL, NULL, 'Bodies Bodies Bodies', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTA2ODg5ZjgtOTU2My00MzFkLWI0NzMtZmQ5MmRhMWU1NzhlXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt8111088', NULL, NULL, 'The Mandalorian', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZDhlMzY0ZGItZTcyNS00ZTAxLWIyMmYtZGQ2ODg5OWZiYmJkXkEyXkFqcGdeQXVyODkzNTgxMDg@._V1_Ratio0.6763_AL_.jpg', NULL, '8.7', NULL),
('tt8115900', 38, -6, 'The Bad Guys', 'The Bad Guys (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMDhkYmU0MzctMWEzNy00ODg1LWI3ZjAtMGZlZjkzNWVmMzVjXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Pierre Perifel (dir.), Sam Rockwell, Marc Maron\"', '6.9', '19356'),
('tt8134186', NULL, NULL, 'Devs', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODY3ODVjYjUtNTBiMy00ZjlkLTg5MTItNDU5NmVlM2U0YzhmXkEyXkFqcGdeQXVyMzY0MTE3NzU@._V1_Ratio0.6763_AL_.jpg', NULL, '7.7', NULL),
('tt8178634', 28, 8, 'RRR', 'RRR (2022)', 2022, 'https://imdb-api.com/images/original/MV5BOTA5NzQwMGMtNDRlZC00YzA4LTliMzQtNGM0NDIwYTk5Y2ZiXkEyXkFqcGdeQXVyMTIyNzY0NTMx._V1_Ratio1.0000_AL_.jpg', '\"S.S. Rajamouli (dir.), Ram Charan, N.T. Rama Rao Jr.\"', '8.1', '73723'),
('tt8333746', NULL, NULL, 'Pinocchio', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzgxNWJiOWQtZDA5Mi00NjBkLWIxMzUtZTg3Yjk5NjYyMDZjXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt8356942', NULL, NULL, 'The 355', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzk4MDZhNTctMDA3OC00ODdkLWIyOWYtN2M0MzA3MDY5NDk1XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.4', NULL),
('tt8359848', NULL, NULL, 'Climax', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMjllYmQ2OGQtN2IxZC00ODJiLWI4NjQtYmNlZjYzNzUzYjkyXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_Ratio0.7343_AL_.jpg', NULL, '6.9', NULL),
('tt8367814', 77, -10, 'The Gentlemen', 'The Gentlemen (2019)', 2019, 'https://imdb-api.com/images/original/MV5BMTlkMmVmYjktYTc2NC00ZGZjLWEyOWUtMjc2MDMwMjQwOTA5XkEyXkFqcGdeQXVyNTI4MzE4MDU@._V1_Ratio0.6716_AL_.jpg', '\"Guy Ritchie (dir.), Matthew McConaughey, Charlie Hunnam\"', '7.8', '319455'),
('tt8466564', NULL, NULL, 'Obi-Wan Kenobi', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTAxOTlmOTAtMjA0Yy00YjVjLWE3OTQtYjAzMWMxOTAwZTY1XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt8480678', NULL, NULL, 'Pinocchio: A True Story', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTUyMjUzNjYtM2RmMi00N2IyLTgwODUtMTA1MmJlYWE0NmM4XkEyXkFqcGdeQXVyNTA3MTU2MjE@._V1_Ratio0.7053_AL_.jpg', NULL, '4.4', NULL),
('tt8549874', NULL, NULL, 'Bob\'s Burgers After Show', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzk4MmE5MjMtZTM4MS00OGI2LWE1OGUtNDAyYzJmMGUxMTcwXkEyXkFqcGdeQXVyMTk2NjkyMjY@._V1_Ratio1.0048_AL_.jpg', NULL, '6.5', NULL),
('tt8550054', 74, -9, 'Pleasure', 'Pleasure (2021)', 2021, 'https://imdb-api.com/images/original/MV5BNmU3ZTJjMTEtYzc2Ny00YjVhLTkyYmQtZTFhYWY0N2MxMzkxXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Ninja Thyberg (dir.), Sofia Kappel, Zelda Morrison\"', '6.3', '9833'),
('tt8672748', NULL, NULL, 'The Hitman\'s Bodyguard: Dangerous Women', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjYzOTExMzItYmY0Ni00NmQ1LWI3MTMtYzhhOTA0Yzk3YjllXkEyXkFqcGdeQXVyMTY1MTcxMzc@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt8706598', NULL, NULL, 'The Hitman\'s Bodyguard: The Hitman vs. The Bodyguard', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWUwNjA0Y2UtYWM4Zi00ZWE5LTkyYzUtYzZlOGQxOTViZGEwXkEyXkFqcGdeQXVyMTY1MTcxMzc@._V1_Ratio0.6957_AL_.jpg', NULL, '6.9', NULL),
('tt8718158', NULL, NULL, 'The Hating Game', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNDI2MDQzZDAtZmVlZS00MWU1LThkNzUtNjZmZmY3ZDljYjk2XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.2', NULL),
('tt8783930', NULL, NULL, 'The Time Traveler\'s Wife', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTU4Zjc3ODQtOWRjZi00MGU5LWIxOTYtOTk3NmQ5NjI2MjU3XkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt8790086', NULL, NULL, 'Kraven the Hunter', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzRmOTBjY2ItY2I1My00YjRkLTk1Y2MtZmYzZTExMTk3NDI5XkEyXkFqcGdeQXVyNTc2MDc2ODQ@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt8847712', NULL, NULL, 'The French Dispatch', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNmQxZTNiODYtNzBhYy00MzVlLWJlN2UtNTc4YWZjMDIwMmEzXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt8925680', NULL, NULL, 'Dior: Sauvage - Legend of the Magic Hour', NULL, NULL, 'https://imdb-api.com/images/original/MV5BOTgzNzRkYjQtZmExNS00ZjRjLWFiYWQtMTkxNTc0NTZjMzFjXkEyXkFqcGdeQXVyODUxNjcxNjE@._V1_Ratio0.7053_AL_.jpg', NULL, '7.9', NULL),
('tt8946378', NULL, NULL, 'Knives Out', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMGUwZjliMTAtNzAxZi00MWNiLWE2NzgtZGUxMGQxZjhhNDRiXkEyXkFqcGdeQXVyNjU1NzU3MzE@._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt9005184', NULL, NULL, 'Dual', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZWE4ZWMwOTYtZDkyYi00NWEwLTgyNWYtNWNkNjhlMjBmZTJmXkEyXkFqcGdeQXVyMzQwMTY2Nzk@._V1_Ratio0.6763_AL_.jpg', NULL, '5.8', NULL),
('tt9032400', 90, -18, 'Eternals', 'Eternals (2021)', 2021, 'https://imdb-api.com/images/original/MV5BMTExZmVjY2ItYTAzYi00MDdlLWFlOWItNTJhMDRjMzQ5ZGY0XkEyXkFqcGdeQXVyODIyOTEyMzY@._V1_Ratio0.6716_AL_.jpg', '\"Chloé Zhao (dir.), Gemma Chan, Richard Madden\"', '6.3', '309483'),
('tt9100054', NULL, NULL, 'The Lost Daughter', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTJmYTJmYTktMzU1Yy00ZTZlLTgzNjItYmY4ZDFjZGFjYjZhXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '6.7', NULL),
('tt9114286', NULL, NULL, 'Black Panther: Wakanda Forever', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjJlMjBmYzUtY2E3MC00OWI1LWE1YmUtOTdmM2IyMTQyZDBjXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt9140554', NULL, NULL, 'Loki', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTkwOTE1ZDYtODQ3Yy00YTYwLTg0YWQtYmVkNmFjNGZlYmRiXkEyXkFqcGdeQXVyNTc4MjczMTM@._V1_Ratio0.6763_AL_.jpg', NULL, '8.2', NULL),
('tt9140560', NULL, NULL, 'WandaVision', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGEwYmMwZmMtMTQ3MS00YWNhLWEwMmQtZTU5YTIwZmJjZGQ0XkEyXkFqcGdeQXVyMTI5MzA5MjA1._V1_Ratio0.6763_AL_.jpg', NULL, '7.9', NULL),
('tt9140632', NULL, NULL, 'The Great North', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZGI1NDg3NjItZGM2ZC00YWNkLTk1ZjUtYTc2N2MwOGRlZTJhXkEyXkFqcGdeQXVyODQ4MjU1MDk@._V1_Ratio0.6763_AL_.jpg', NULL, '6.5', NULL),
('tt9179430', 68, 0, 'Vikram', 'Vikram (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMmJhYTYxMGEtNjQ5NS00MWZiLWEwN2ItYjJmMWE2YTU1YWYxXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_Ratio0.6716_AL_.jpg', '\"Lokesh Kanagaraj (dir.), Kamal Haasan, Vijay Sethupathi\"', '9.1', '13365'),
('tt9198364', NULL, NULL, 'Three Thousand Years of Longing', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODFjMmVmN2YtOTc5Yy00YWM0LTg0N2ItZDJiNTU5MWMyMDVlXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.5', NULL),
('tt9208876', NULL, NULL, 'The Falcon and the Winter Soldier', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODNiODVmYjItM2MyMC00ZWQyLTgyMGYtNzJjMmVmZTY2OTJjXkEyXkFqcGdeQXVyNzk3NDUzNTc@._V1_Ratio0.6763_AL_.jpg', NULL, '7.2', NULL),
('tt9242528', NULL, NULL, 'The Survivor', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWRlYjg0ZTUtYmZhOS00YWMxLWJhYWEtOTA3Y2MyMzg4ODg4XkEyXkFqcGdeQXVyMTAxOTI5MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.8', NULL),
('tt9253284', NULL, NULL, 'Andor', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYzFjN2JlMWMtMmU0ZC00ZjQ3LWJlZmYtMDg3YWFkN2MxYWZkXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '', NULL),
('tt9261218', NULL, NULL, 'Uncorked', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTg3NWFkN2ItOTdjMi00NDk4LTllMDktNGZiNTUxYmZmMjlmXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6763_AL_.jpg', NULL, '6.4', NULL),
('tt9288748', NULL, NULL, 'My Father\'s Dragon', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMTcxZGQyMmUtMGI1Zi00YzgzLWE2MTUtMDEwYjk4NjIwNGMyXkEyXkFqcGdeQXVyMTEzMTI1Mjk3._V1_Ratio0.7150_AL_.jpg', NULL, '', NULL),
('tt9319826', NULL, NULL, 'Jungle Cry', NULL, NULL, 'https://imdb-api.com/images/original/MV5BZTBkYjQ2MjQtNGQ3My00OTk1LWIzZGMtMjIwMDZlNGMwYzA2XkEyXkFqcGdeQXVyMDc2NTEzMw@@._V1_Ratio0.6957_AL_.jpg', NULL, '8.7', NULL),
('tt9376612', NULL, NULL, 'Shang-Chi and the Legend of the Ten Rings', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNTliYjlkNDQtMjFlNS00NjgzLWFmMWEtYmM2Mzc2Zjg3ZjEyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.4', NULL),
('tt9389998', NULL, NULL, 'Pushpa: The Rise - Part 1', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMmQ4YmM3NjgtNTExNC00ZTZhLWEwZTctYjdhOWI4ZWFlMDk2XkEyXkFqcGdeQXVyMTI1NDEyNTM5._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt9419884', 6, 1, 'Doctor Strange in the Multiverse of Madness', 'Doctor Strange in the Multiverse of Madness (2022)', 2022, 'https://imdb-api.com/images/original/MV5BNWM0ZGJlMzMtZmYwMi00NzI3LTgzMzMtNjMzNjliNDRmZmFlXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6716_AL_.jpg', '\"Sam Raimi (dir.), Benedict Cumberbatch, Elizabeth Olsen\"', '7.3', '195460'),
('tt9561862', NULL, NULL, 'Love, Death & Robots', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTNiYTNkNTAtYzE3ZS00ZDQ1LWEwZTYtZjI1NzYzMWJjY2U4XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6763_AL_.jpg', NULL, '8.4', NULL),
('tt9603212', 47, -36, 'Mission: Impossible - Dead Reckoning - Part One', 'Mission: Impossible - Dead Reckoning - Part One (2023)', 2023, 'https://imdb-api.com/images/original/MV5BZmM1MmI1MjctOTkyMi00MjZhLWEwN2MtYjEwNGRjNmUxZmVjXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6716_AL_.jpg', '\"Christopher McQuarrie (dir.), Tom Cruise, Indira Varma\"', '', '0'),
('tt9620288', NULL, NULL, 'King Richard', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYTcyNmY4ZGEtYmE4Zi00ZDViLTlmYzMtMmQ4ZTM4OWNmZjQxXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '7.5', NULL),
('tt9637132', NULL, NULL, 'Samrat Prithviraj', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNzlkZjI3ZDctNTEzMy00MjUxLWI5YjQtYjg0ODNjNzdjZjg0XkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_Ratio0.7536_AL_.jpg', NULL, '7.7', NULL),
('tt9660502', NULL, NULL, 'Close', NULL, NULL, 'https://imdb-api.com/images/original/MV5BMDI0NDYyOTUtOWUyOS00OTFjLWIzY2MtMDk1YjdkNWMzOTBkXkEyXkFqcGdeQXVyODA0MjgyNzM@._V1_Ratio0.7343_AL_.jpg', NULL, '6.8', NULL),
('tt9663764', 75, -15, 'Aquaman and the Lost Kingdom', 'Aquaman and the Lost Kingdom (2023)', 2023, 'https://imdb-api.com/images/original/MV5BM2QyYTRkMjMtMDk5NC00OTc0LWIyYTYtNGNhMzRjMTNhNGNkXkEyXkFqcGdeQXVyNjc0NzQzNTM@._V1_Ratio1.7761_AL_.jpg', '\"James Wan (dir.), Amber Heard, Temuera Morrison\"', '', '0'),
('tt9764362', 24, 0, 'The Menu', 'The Menu (2022)', 2022, 'https://imdb-api.com/images/original/MV5BMGUyOTNhZjEtYzg3Ni00NDJjLWJlYzQtYzRmMTBhODRmM2FkXkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_Ratio1.5075_AL_.jpg', '\"Mark Mylod (dir.), Anya Taylor-Joy, Ralph Fiennes\"', '', '0'),
('tt9794630', NULL, NULL, 'The Vanished', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYmU0MWZhNmQtOGQ4MC00ZTVlLTkwMTctYzBiY2Q1ZjQyYWJmXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6860_AL_.jpg', NULL, '5.7', NULL),
('tt9848626', NULL, NULL, 'Hotel Transylvania 4: Transformania', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWJmNzRiMWEtNzk3Ni00OGU5LThlMDctYmJhMTA1YzEzNjY4XkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6763_AL_.jpg', NULL, '6.0', NULL),
('tt9851854', NULL, NULL, 'Major', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWI2ODNjMDktZjcxNS00YThkLTljMDUtMGIyOTg3ZjY2MjlhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.7150_AL_.jpg', NULL, '8.9', NULL),
('tt9860728', NULL, NULL, 'Falling Inn Love', NULL, NULL, 'https://imdb-api.com/images/original/MV5BNWE1NmMzNjUtMDc3NS00ZjBlLTllMTktZTVkMWQzZGVlYzdhXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6763_AL_.jpg', NULL, '5.6', NULL),
('tt9866072', NULL, NULL, 'Holidate', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYWVmYTFjODItOTY2Ni00NDhhLTk1ZDYtMzBmOGFhZTMyY2Q0XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6763_AL_.jpg', NULL, '6.1', NULL),
('tt9883832', NULL, NULL, 'Moonage Daydream', NULL, NULL, 'https://imdb-api.com/images/original/MV5BODljZTM3ZjMtMTcwNy00ZmRlLWJlMmItNWY2YjhhNjgxMTVjXkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_Ratio0.6763_AL_.jpg', NULL, '7.6', NULL),
('tt9900782', NULL, NULL, 'Kaithi', NULL, NULL, 'https://imdb-api.com/images/original/MV5BYjc1ZjU2MzgtZjU4MS00ZWYwLWIxZjYtNWM5YTEzMTAxMjI3XkEyXkFqcGdeQXVyMTA1OTMzNTQw._V1_Ratio0.6763_AL_.jpg', NULL, '8.5', NULL);
-- --------------------------------------------------------
--
-- Struttura della tabella `film`
--
CREATE TABLE `film` (
`p_id` varchar(100) NOT NULL,
`image` varchar(200) DEFAULT NULL,
`plot` varchar(800) DEFAULT NULL,
`title` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dump dei dati per la tabella `film`
--
INSERT INTO `film` (`p_id`, `image`, `plot`, `title`) VALUES
('tt0068646', 'https://imdb-api.com/images/original/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6751_AL_.jpg', 'The aging patriarch of an organized crime dynasty in postwar New York City transfers control of his clandestine empire to his reluctant youngest son.', 'The Godfather'),
('tt0076759', 'https://imdb-api.com/images/original/MV5BNzg4MjQxNTQtZmI5My00YjMwLWJlMjUtMmJlY2U2ZWFlNzY1XkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6751_AL_.jpg', 'Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire\'s world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth Vader.', 'Star Wars'),
('tt0087800', 'https://imdb-api.com/images/original/MV5BNzFjZmM1ODgtMDBkMS00NWFlLTg2YmUtZjc3ZTgxMjE1OTI2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6751_AL_.jpg', 'Teenager Nancy Thompson must uncover the dark truth concealed by her parents after she and her friends become targets of the spirit of a serial killer with a bladed glove in their dreams, in which if they die, it kills them in real life.', 'A Nightmare on Elm Street'),
('tt0092099', 'https://imdb-api.com/images/original/MV5BZjQxYTA3ODItNzgxMy00N2Y2LWJlZGMtMTRlM2JkZjI1ZDhhXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_Ratio0.6751_AL_.jpg', 'As students at the United States Navy\'s elite fighter weapons school compete to be best in the class, one daring young pilot learns a few things from a civilian instructor that are not taught in the classroom.', 'Top Gun'),
('tt0096446', 'https://imdb-api.com/images/original/MV5BZWIyMTA2M2ItOGI5MC00OTY0LWFmZTItN2NkOWQ0MGQ5NDkyL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6751_AL_.jpg', 'A young farmer is chosen to undertake a perilous journey in order to protect a special baby from an evil queen.', 'Willow'),
('tt0099685', 'https://imdb-api.com/images/original/MV5BY2NkZjEzMDgtN2RjYy00YzM1LWI4ZmQtMjIwYjFjNmI3ZGEwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_Ratio0.6751_AL_.jpg', 'The story of Henry Hill and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate... Read all', 'Goodfellas'),
('tt0107290', 'https://imdb-api.com/images/original/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_Ratio0.6751_AL_.jpg', 'A pragmatic paleontologist touring an almost complete theme park on an island in Central America is tasked with protecting a couple of kids after a power failure causes the park\'s cloned dinosaurs to run loose.', 'Jurassic Park'),
('tt0109830', 'https://imdb-api.com/images/original/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_Ratio0.6751_AL_.jpg', 'The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood swe...', 'Forrest Gump'),
('tt0111161', 'https://imdb-api.com/images/original/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6751_AL_.jpg', 'Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.', 'The Shawshank Redemption'),
('tt0120915', 'https://imdb-api.com/images/original/MV5BYTRhNjcwNWQtMGJmMi00NmQyLWE2YzItODVmMTdjNWI0ZDA2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_Ratio0.6751_AL_.jpg', 'Two Jedi escape a hostile blockade to find allies and come across a young boy who may bring balance to the Force, but the long dormant Sith resurface to claim their original glory.', 'Star Wars: Episode I - The Phantom Menace'),
('tt0121766', 'https://imdb-api.com/images/original/MV5BNTc4MTc3NTQ5OF5BMl5BanBnXkFtZTcwOTg0NjI4NA@@._V1_Ratio0.6751_AL_.jpg', 'Nearly three years have passed since the beginning of the Clone Wars. The Republic, with the help of the Jedi, take on Count Dooku and the Separatists. With a new threat rising, the Jedi Council sends Obi-Wan Kenobi and Anakin Skywalker to aid the captured Chancellor. Anakin feels he is ready to be promoted to Jedi Master. Obi-Wan is hunting down the Separatist General, Grievous. When Anakin has future visions of pain and suffering coming Padmé\'s way, he sees Master Yoda for counsel. When Darth Sidious executes Order 66, it destroys most of all the Jedi have built. Experience the birth of Darth Vader. Feel the betrayal that leads to hatred between two brothers. And witness the power of hope.', 'Star Wars: Episode III - Revenge of the Sith'),
('tt0241527', 'https://imdb-api.com/images/original/MV5BMzkyZGFlOWQtZjFlMi00N2YwLWE2OWQtYTgxY2NkNmM1NjMwXkEyXkFqcGdeQXVyNjY1NTM1MzA@._V1_Ratio0.6751_AL_.jpg', 'An orphaned boy enrolls in a school of wizardry, where he learns the truth about himself, his family and the terrible evil that haunts the magical world.', 'Harry Potter and the Sorcerer\'s Stone'),
('tt0325980', 'https://imdb-api.com/images/original/MV5BNGYyZGM5MGMtYTY2Ni00M2Y1LWIzNjQtYWUzM2VlNGVhMDNhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6751_AL_.jpg', 'Blacksmith Will Turner teams up with eccentric pirate \"Captain\" Jack Sparrow to save his love, the governor\'s daughter, from Jack\'s former pirate allies, who are now undead.', 'Pirates of the Caribbean: The Curse of the Black Pearl'),
('tt0367594', 'https://imdb-api.com/images/original/MV5BNjcxMjg1Njg2NF5BMl5BanBnXkFtZTcwMjQ4NzMzMw@@._V1_Ratio0.6751_AL_.jpg', 'A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world\'s most unusual candy maker.', 'Charlie and the Chocolate Factory'),
('tt0369610', 'https://imdb-api.com/images/original/MV5BNzQ3OTY4NjAtNzM5OS00N2ZhLWJlOWUtYzYwZjNmOWRiMzcyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_Ratio0.6751_AL_.jpg', 'A new theme park, built on the original site of Jurassic Park, creates a genetically modified hybrid dinosaur, the Indominus Rex, which escapes containment and goes on a killing spree.', 'Jurassic World'),
('tt0376136', 'https://imdb-api.com/images/original/MV5BMTM5ODA4MjYxM15BMl5BanBnXkFtZTcwMTM3NTE5Ng@@._V1_Ratio0.6751_AL_.jpg', 'American journalist Paul Kemp takes on a freelance job in Puerto Rico for a local newspaper during the 1960s and struggles to find a balance between island culture and the expatriates who li... Read all', 'The Rum Diary'),
('tt10298810', 'https://imdb-api.com/images/original/MV5BYTg2Zjk0ZTctM2ZmMi00MDRmLWJjOGYtNWM0YjBmZTBjMjRkXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'While spending years attempting to return home, marooned Space Ranger Buzz Lightyear encounters an army of ruthless robots commanded by Zurg who are attempting to steal his fuel source.', 'Lightyear'),
('tt10323676', 'https://imdb-api.com/images/original/MV5BOWQ3MDg1MTgtMmI4ZC00YjU3LWIyZGEtNmRkNzI0Y2QyN2ExXkEyXkFqcGdeQXVyNzgzODI1OTE@._V1_Ratio0.6751_AL_.jpg', 'A discharged U.S. Special Forces sergeant, James Harper, risks everything for his family when he joins a private contracting organization.', 'The Contractor'),
('tt10648342', 'https://imdb-api.com/images/original/MV5BYmMxZWRiMTgtZjM0Ny00NDQxLWIxYWQtZDdlNDNkOTEzYTdlXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'Thor enlists the help of Valkyrie, Korg and ex-girlfriend Jane Foster to fight Gorr the God Butcher, who intends to make the gods extinct.', 'Thor: Love and Thunder'),
('tt10838180', 'https://imdb-api.com/images/original/MV5BMGJkNDJlZWUtOGM1Ny00YjNkLThiM2QtY2ZjMzQxMTIxNWNmXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6751_AL_.jpg', 'Return to a world of two realities: one, everyday life; the other, what lies behind it. To find out if his reality is a construct, to truly know himself, Mr. Anderson will have to choose to follow the white rabbit once more.', 'The Matrix Resurrections'),
('tt10872600', 'https://imdb-api.com/images/original/MV5BZWMyYzFjYTYtNTRjYi00OGExLWE2YzgtOGRmYjAxZTU3NzBiXkEyXkFqcGdeQXVyMzQ0MzA0NTM@._V1_Ratio0.6751_AL_.jpg', 'With Spider-Man\'s identity now revealed, Peter asks Doctor Strange for help. When a spell goes wrong, dangerous foes from other worlds start to appear, forcing Peter to discover what it truly means to be Spider-Man.', 'Spider-Man: No Way Home'),
('tt10886166', 'https://imdb-api.com/images/original/MV5BMDdhYzNkOWQtYWNlNi00NDdjLWJlZDMtMjJjZDYyNjAxM2U1XkEyXkFqcGdeQXVyMTQyMTMwOTk0._V1_Ratio0.6751_AL_.jpg', 'Massimo is a member of the Sicilian Mafia family and Laura is a sales director. She does not expect that on a trip to Sicily trying to save her relationship, Massimo will kidnap her and give her 365 days to fall in love with him.', '365 Days'),
('tt10954652', 'https://imdb-api.com/images/original/MV5BMjJjZGRhM2YtNTU4NC00OWMwLThhYWUtMWUxNDNhMDZlOTNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6751_AL_.jpg', 'A vacationing family discovers that the secluded beach where they\'re relaxing for a few hours is somehow causing them to age rapidly, reducing their entire lives into a single day.', 'Old'),
('tt11138512', 'https://imdb-api.com/images/original/MV5BMzVlMmY2NTctODgwOC00NDMzLWEzMWYtM2RiYmIyNTNhMTI0XkEyXkFqcGdeQXVyNTAzNzgwNTg@._V1_Ratio0.6751_AL_.jpg', 'From visionary director Robert Eggers comes The Northman, an action-filled epic that follows a young Viking prince on his quest to avenge his father\'s murder.', 'The Northman'),
('tt11271038', 'https://imdb-api.com/images/original/MV5BYjkwMzIxYzMtOTVkMS00NDQxLThkMjItNzgxN2RiNjdlNTliXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6751_AL_.jpg', 'The story of Alana Kane and Gary Valentine growing up, running around and going through the treacherous navigation of first love in the San Fernando Valley, 1973.', 'Licorice Pizza'),
('tt11291274', 'https://imdb-api.com/images/original/MV5BNDM2ODNiMWItOWRkNS00ODE3LWE2OGYtNTZkMDJkOWI1ODMxXkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.6751_AL_.jpg', 'In this action-packed comedy, Nicolas Cage plays Nick Cage, channeling his iconic characters as he\'s caught between a superfan (Pedro Pascal) and a CIA agent (Tiffany Haddish).', 'The Unbearable Weight of Massive Talent'),
('tt1160419', 'https://imdb-api.com/images/original/MV5BN2FjNmEyNWMtYzM0ZS00NjIyLTg5YzYtYThlMGVjNzE1OGViXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'A noble family becomes embroiled in a war for control over the galaxy\'s most valuable asset while its heir becomes troubled by visions of a dark future.', 'Dune'),
('tt11703710', 'https://imdb-api.com/images/original/MV5BZDdjZjM1YWItNWRmOS00OTEzLWJmYjAtOGQzNTAyNmEwNDhjXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'Follow-up to the 2019 feature film in which the Crawley family and Downton staff received a royal visit from the King and Queen of Great Britain.', 'Downton Abbey: A New Era'),
('tt11827628', 'https://imdb-api.com/images/original/MV5BOGI5N2FhNzktZjZlNi00MmRjLWE1MmUtNjRlNzQyOGMzYjNhXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6751_AL_.jpg', 'An assassin-for-hire finds that he\'s become a target after he refuses to complete a job for a dangerous criminal organization. A remake of the 2003 Belgian film \'The Memory of a Killer\'.', 'Memory'),
('tt1189340', 'https://imdb-api.com/images/original/MV5BMTQ4NDE4NTY5MV5BMl5BanBnXkFtZTcwODQyMTkxNA@@._V1_Ratio0.6751_AL_.jpg', 'A lawyer defending a wealthy man begins to believe his client is guilty of more than just one crime.', 'The Lincoln Lawyer'),
('tt12004038', 'https://imdb-api.com/images/original/MV5BMTNkNjU4OGYtODM3NS00NzM1LWFkZWItZTExNzdjYTAwMmRlXkEyXkFqcGdeQXVyMTE1MzI2NzIz._V1_Ratio0.6751_AL_.jpg', 'A young American woman moves with her husband to Bucharest, and begins to suspect that a stranger who watches her from the apartment building across the street may be a local serial killer decapitating women.', 'Watcher'),
('tt12412888', 'https://imdb-api.com/images/original/MV5BMGI1NjA1MjUtNGQxNC00NDYyLThjODgtZjFkZjQ4OGM0NDc5XkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6751_AL_.jpg', 'When the manic Dr Robotnik returns to Earth with a new ally, Knuckles the Echidna, Sonic and his new friend Tails is all that stands in their way.', 'Sonic the Hedgehog 2'),
('tt12593682', 'https://imdb-api.com/images/original/MV5BMDU2ZmM2OTYtNzIxYy00NjM5LTliNGQtN2JmOWQzYTBmZWUzXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'Five assassins aboard a fast moving bullet train find out their missions have something in common.', 'Bullet Train'),
('tt1273221', 'https://imdb-api.com/images/original/MV5BYjMwYWNiN2EtMWNkMS00MDU5LThiMGMtOTk5NTQzMjQ4OTkwXkEyXkFqcGdeQXVyNDExMzMxNjE@._V1_Ratio0.6751_AL_.jpg', 'An American writer arrives in London where he meets Nicola Six, a beautiful woman who soon becomes his muse. She is playing a dangerous game, dating a small-time (married) gangster and a wealthy businessman in an effort to con them both. A clairvoyant, she has premonitions of her own death, at the hands of one of the three men she is involved with.', 'London Fields'),
('tt12996154', 'https://imdb-api.com/images/original/MV5BYjY2NzUxNjgtNjJhNy00NTA4LTlmNzItYzQ4MDdjNWYxZjkwXkEyXkFqcGdeQXVyMTEwMTY3NDI@._V1_Ratio0.6751_AL_.jpg', 'Laura and Massimo are back and stronger than ever. But Massimo\'s family ties and a mysterious man bidding for Laura\'s heart complicate the lovers\' lives.', '365 Days: This Day'),
('tt13276352', 'https://imdb-api.com/images/original/MV5BYjJhNGRhNmItMDA1Yi00MTk0LWJiY2YtMmI2MzhiZTU0ZWZiXkEyXkFqcGdeQXVyNTk1NDE0NTU@._V1_Ratio0.6751_AL_.jpg', 'When a Danish chef travels to Tuscany to sell his father\'s business, he meets a local woman who inspires him to rethink his approach to life and love.', 'Toscana'),
('tt13320622', 'https://imdb-api.com/images/original/MV5BMmIwYzFhODAtY2I1YS00ZDdmLTkyYWQtZjI5NDIwMDc2MjEyXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6751_AL_.jpg', 'A reclusive romance novelist on a book tour with her cover model gets swept up in a kidnapping attempt that lands them both in a cutthroat jungle adventure.', 'The Lost City'),
('tt13560574', 'https://imdb-api.com/images/original/MV5BMTJiMmE5YWItOWZjYS00YTg0LWE0MTYtMzg2ZTY4YjNkNDEzXkEyXkFqcGdeQXVyMTAzMDg4NzU0._V1_Ratio0.6751_AL_.jpg', 'Set in 1979, adult movie actors and a small film crew arrive to a farmhouse occupied by an elderly couple in the desolate Texas countryside to film an adult movie. As the day shifts to night, the visitors slowly realize that they are not safe, and are being targeted by a nearby enemy.', 'X'),
('tt13650600', 'https://imdb-api.com/images/original/MV5BMzg0ZDkwZDItMzVkZC00YjI2LTk5OTAtMmE4YTZjMWU3YzllXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6751_AL_.jpg', 'Ready for a night of legendary partying, three college students must weigh the pros and cons of calling the police when faced with an unexpected situation.', 'Emergency'),
('tt13841850', 'https://imdb-api.com/images/original/MV5BZGQ2ZDNiMjgtMTNhNS00MjUxLWFkYTMtYTI1OTE0MmQ2MmJkXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'A young woman goes on a solo vacation to the English countryside following the death of her ex-husband.', 'Men'),
('tt13919802', 'https://imdb-api.com/images/original/MV5BYzNiNDM4NjYtZDMyMS00YTgyLWIzMWYtNmFhMjBiNWJiN2RjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6751_AL_.jpg', 'A socio political, action thriller set against the geopolitical backdrop of Northeast India.', 'Anek'),
('tt14114802', 'https://imdb-api.com/images/original/MV5BYWQ0NWUyMjktYjg4Yy00NmY3LTg2YzEtNWY5OTY5YTc2MjhjXkEyXkFqcGdeQXVyMTA2MDU0NjM5._V1_Ratio0.6751_AL_.jpg', 'An expert cutter must outwit a dangerous group of mobsters in order to survive a fateful night.', 'The Outfit'),
('tt14174940', 'https://imdb-api.com/images/original/MV5BZGNjYjQ3NjgtZWM0NS00MTY5LTlkZWMtODZlNzhkNTU3MzZiXkEyXkFqcGdeQXVyMjM2OTI3Mzk@._V1_Ratio0.6751_AL_.jpg', 'One Army captain must use her years of tactical training and military expertise when a simultaneous coordinated attack threatens the remote missile interceptor station she is in command of.', 'Interceptor'),
('tt14439896', 'https://imdb-api.com/images/original/MV5BNGYwOTI1MTUtYmY0Mi00OTAxLTkwNDEtOTI5YTkyZTVhN2JiXkEyXkFqcGdeQXVyMTAxNDE3MTE5._V1_Ratio0.6751_AL_.jpg', 'Follows the life of Father Stuart Long, a boxer-turned-priest who inspired countless people during his journey from self-destruction to redemption.', 'Father Stu'),
('tt14549466', 'https://imdb-api.com/images/original/MV5BZDdjODNkMmYtYjMwNS00NTQzLThlYjUtODY2ZjdjNTNlY2JiXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'Humans adapt to a synthetic environment, with new transformations and mutations. With his partner Caprice, Saul Tenser, celebrity performance artist, publicly showcases the metamorphosis of his organs in avant-garde performances.', 'Crimes of the Future'),
('tt1464335', 'https://imdb-api.com/images/original/MV5BMWEwNjhkYzYtNjgzYy00YTY2LThjYWYtYzViMGJkZTI4Y2MyXkEyXkFqcGdeQXVyNTM0OTY1OQ@@._V1_Ratio0.6751_AL_.jpg', 'Street-smart Nathan Drake is recruited by seasoned treasure hunter Victor \"Sully\" Sullivan to recover a fortune amassed by Ferdinand Magellan, and lost 500 years ago by the House of Moncada.', 'Uncharted'),
('tt1477834', 'https://imdb-api.com/images/original/MV5BOTk5ODg0OTU5M15BMl5BanBnXkFtZTgwMDQ3MDY3NjM@._V1_Ratio0.6751_AL_.jpg', 'Arthur Curry, the human-born heir to the underwater kingdom of Atlantis, goes on a quest to prevent a war between the worlds of ocean and land.', 'Aquaman'),
('tt1488589', 'https://imdb-api.com/images/original/MV5BMTkwNjk2ODY2NF5BMl5BanBnXkFtZTcwNTgzNjAyOQ@@._V1_Ratio0.6751_AL_.jpg', 'A darker version of the classic children\'s fairy tale of a wooden puppet that transforms into a real living boy.', 'Guillermo del Toro\'s Pinocchio'),
('tt15004136', 'https://imdb-api.com/images/original/MV5BODk4MzkxODgtODEwZi00YTAwLWJjYzUtNjRkYjEzY2ZmNzYxXkEyXkFqcGdeQXVyMDEyNTM2Mg@@._V1_Ratio0.6751_AL_.jpg', '\"Chase\" centers on Will Spann (Butler), who is driving his soon-to-be ex-wife Lisa (Alexander) to her parents\' home when she mysteriously disappears without a trace during a stop at a gas station. A frantic Will engages the local police and Lisa\'s parents in a desperate attempt to find her, but as time passes and suspicion falls on him, he must take matters into his own hands, delving into the town\'s criminal underbelly while running from the authorities in a race against time to find Lisa.', 'Last Seen Alive'),
('tt15215512', 'https://imdb-api.com/images/original/MV5BNTgzZjM5MWQtN2NhMy00NTFiLTliNGUtYTFiZjY3MWYwYmZjXkEyXkFqcGdeQXVyNjEwNTM2Mzc@._V1_Ratio0.6751_AL_.jpg', 'It follows a hard-driving LA wine-company executive who travels to an Australian sheep station to land a major client and there she ends up working as a ranch hand and sparking with a rugged local.', 'A Perfect Pairing'),
('tt15218000', 'https://imdb-api.com/images/original/MV5BNjBiZjc3YzItYWQ0Ni00YjZlLWFjYTAtMTBiNzM5ZmMxOGExXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'A pair of best friends set out to have a legendary week-long summer vacation with the help of cheap rosé and a group of eclectic friends.', 'Fire Island'),
('tt1630029', 'https://imdb-api.com/images/original/MV5BMWFmYmRiYzMtMTQ4YS00NjA5LTliYTgtMmM3OTc4OGY3MTFkXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6751_AL_.jpg', 'Jake Sully lives with his newfound family formed on the planet of Pandora. Once a familiar threat returns to finish what was previously started, Jake must work with Neytiri and the army of the Na\'vi race to protect their planet.', 'Avatar: The Way of Water'),
('tt1649418', 'https://imdb-api.com/images/original/MV5BOWY4MmFiY2QtMzE1YS00NTg1LWIwOTQtYTI4ZGUzNWIxNTVmXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6751_AL_.jpg', 'When the CIA\'s most skilled operative-whose true identity is known to none-accidentally uncovers dark agency secrets, a psychopathic former colleague puts a bounty on his head, setting off a global manhunt by international assassins.', 'The Gray Man'),
('tt1745960', 'https://imdb-api.com/images/original/MV5BMmIwZDMyYWUtNTU0ZS00ODJhLTg2ZmEtMTk5ZmYzODcxODYxXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'After more than thirty years of service as one of the Navy\'s top aviators, Pete Mitchell is where he belongs, pushing the envelope as a courageous test pilot and dodging the advancement in rank that would ground him.', 'Top Gun: Maverick'),
('tt1790809', 'https://imdb-api.com/images/original/MV5BMTYyMTcxNzc5M15BMl5BanBnXkFtZTgwOTg2ODE2MTI@._V1_Ratio0.6751_AL_.jpg', 'Captain Jack Sparrow is pursued by old rival Captain Salazar and a crew of deadly ghosts who have escaped from the Devil\'s Triangle. They\'re determined to kill every pirate at sea...notably Jack.', 'Pirates of the Caribbean: Dead Men Tell No Tales'),
('tt1798632', 'https://imdb-api.com/images/original/MV5BMWIzNzA4MmUtYTIzNy00Y2Q5LWIyM2YtZGRiYzM0ZWQzOTU2XkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'A young girl tries to understand how she mysteriously gained the power to set things on fire with her mind.', 'Firestarter'),
('tt1877830', 'https://imdb-api.com/images/original/MV5BMDdmMTBiNTYtMDIzNi00NGVlLWIzMDYtZTk3MTQ3NGQxZGEwXkEyXkFqcGdeQXVyMzMwOTU5MDk@._V1_Ratio0.6751_AL_.jpg', 'When a sadistic serial killer begins murdering key political figures in Gotham, Batman is forced to investigate the city\'s hidden corruption and question his family\'s involvement.', 'The Batman'),
('tt1879016', 'https://imdb-api.com/images/original/MV5BOGZlNjZhNjgtMjQzZC00MDI0LWFmNGQtNmNiYTIyYTE3ODhkXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_Ratio0.6751_AL_.jpg', 'During WWII, two intelligence officers use a corpse and false papers to outwit German troops.', 'Operation Mincemeat'),
('tt19623240', NULL, NULL, NULL),
('tt2049403', 'https://imdb-api.com/images/original/nopicture.jpg', 'This is a follow-up to the comedy Beetle Juice (1988), about a ghost who\'s recruited to help haunt a house.', 'Beetlejuice 2'),
('tt2382320', 'https://imdb-api.com/images/original/MV5BYWQ2NzQ1NjktMzNkNS00MGY1LTgwMmMtYTllYTI5YzNmMmE0XkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_Ratio0.6751_AL_.jpg', 'James Bond has left active service. His peace is short-lived when Felix Leiter, an old friend from the CIA, turns up asking for help, leading Bond onto the trail of a mysterious villain armed with dangerous new technology.', 'No Time to Die'),
('tt2463208', 'https://imdb-api.com/images/original/MV5BOWM0YWMwMDQtMjE5NS00ZTIwLWE1NWEtODViMWZjMWI2OTU3XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'After accidentally crash-landing in 2022, time-traveling fighter pilot Adam Reed teams up with his 12-year-old self for a mission to save the future.', 'The Adam Project'),
('tt2953050', 'https://imdb-api.com/images/original/MV5BNjE5NzA4ZDctOTJkZi00NzM0LTkwOTYtMDI4MmNkMzIxODhkXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_Ratio0.6751_AL_.jpg', 'A Colombian teenage girl has to face the frustration of being the only member of her family without magical powers.', 'Encanto'),
('tt3183660', 'https://imdb-api.com/images/original/MV5BMjMxOTM1OTI4MV5BMl5BanBnXkFtZTgwODE5OTYxMDI@._V1_Ratio0.6751_AL_.jpg', 'The adventures of writer Newt Scamander in New York\'s secret community of witches and wizards seventy years before Harry Potter reads his book in school.', 'Fantastic Beasts and Where to Find Them'),
('tt3513500', 'https://imdb-api.com/images/original/MV5BZjBlMjIxN2ItNTMyNi00NDk5LWFhMzEtNzdiODE0Y2M4MWI2XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'Thirty years after their popular television show ended, chipmunks Chip and Dale live very different lives. When a cast member from the original series mysteriously disappears, the pair must reunite to save their friend.', 'Chip \'n Dale: Rescue Rangers'),
('tt3704428', 'https://imdb-api.com/images/original/MV5BMjk0YWFlZDQtZjIzYi00Y2Q3LTkxMjktNmMzNzc1NzFmMzhjXkEyXkFqcGdeQXVyNjc0NzQzNTM@._V1_Ratio0.6751_AL_.jpg', 'From his childhood in Tupelo, Mississippi to his rise to stardom starting in Memphis, Tennessee and his conquering of Las Vegas, Nevada, Elvis Presley becomes the first rock \'n roll star and changes the world with his music.', 'Elvis'),
('tt3748528', 'https://imdb-api.com/images/original/MV5BMjEwMzMxODIzOV5BMl5BanBnXkFtZTgwNzg3OTAzMDI@._V1_Ratio0.6751_AL_.jpg', 'In a time of conflict, a group of unlikely heroes band together on a mission to steal the plans to the Death Star, the Empire\'s ultimate weapon of destruction.', 'Rogue One: A Star Wars Story'),
('tt3774694', 'https://imdb-api.com/images/original/MV5BMTQzNDUwODk5NF5BMl5BanBnXkFtZTgwNzA0MDQ2NTE@._V1_Ratio0.6751_AL_.jpg', 'Murphy is an American living in Paris who enters a highly sexually and emotionally charged relationship with Electra. Unaware of the effect it will have on their relationship, they invite their pretty neighbor into their bed.', 'Love'),
('tt3794354', 'https://imdb-api.com/images/original/MV5BNTdmNmI4MzQtZTAzNS00MjhjLWEzOGQtZjI1NDNjZjk4N2JjXkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6751_AL_.jpg', 'After discovering a small, blue, fast hedgehog, a small-town police officer must help him defeat an evil genius who wants to do experiments on him.', 'Sonic the Hedgehog'),
('tt4081630', 'https://imdb-api.com/images/original/MV5BNWZiNDM3MjgtYzY1Ni00ZTI1LTgzMTktMzBiOTI5OWU0OTc0XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'A movie star enlists a parking valet at a Beverly Hills restaurant to pose as her lover to cover for her relationship with a married man.', 'The Valet'),
('tt4123430', 'https://imdb-api.com/images/original/MV5BYWVlMDI5N2UtZTIyMC00NjZkLWI5Y2QtODM5NGE5MzA0NmVjXkEyXkFqcGdeQXVyNzU3NjUxMzE@._V1_Ratio0.6751_AL_.jpg', 'The second installment of the \"Fantastic Beasts\" series featuring the adventures of Magizoologist Newt Scamander.', 'Fantastic Beasts: The Crimes of Grindelwald'),
('tt4123432', 'https://imdb-api.com/images/original/MV5BZGQ1NjQyNDMtNzFlZS00ZGIzLTliMWUtNGJkMGMzNTBjNDg0XkEyXkFqcGdeQXVyMTE1NDI5MDQx._V1_Ratio0.6751_AL_.jpg', 'Albus Dumbledore assigns Newt and his allies with a mission related to the rising power of Grindelwald.', 'Fantastic Beasts: The Secrets of Dumbledore'),
('tt4154796', 'https://imdb-api.com/images/original/MV5BMTc5MDE2ODcwNV5BMl5BanBnXkFtZTgwMzI2NzQ2NzM@._V1_Ratio0.6751_AL_.jpg', 'After the devastating events of Avengers: Infinity War (2018), the universe is in ruins. With the help of remaining allies, the Avengers assemble once more in order to reverse Thanos\' actions and restore balance to the universe.', 'Avengers: Endgame'),
('tt4513678', 'https://imdb-api.com/images/original/MV5BMmZiMjdlN2UtYzdiZS00YjgxLTgyZGMtYzE4ZGU5NTlkNjhhXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind.', 'Ghostbusters: Afterlife'),
('tt4593060', 'https://imdb-api.com/images/original/MV5BNDZiMTA3ZjEtZGJjNS00OTkwLWFiYzUtZjdkZDUxZTVlZTY0XkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'A live-action adaptation of Disney\'s \'Pinocchio\'.', 'Pinocchio'),
('tt4998632', 'https://imdb-api.com/images/original/MV5BYjUyN2VlZGEtNGEyZC00YjViLTgwYmQtZDJiM2FlOTU3Mjg2XkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.6751_AL_.jpg', 'Two robbers steal an ambulance after their heist goes awry.', 'Ambulance'),
('tt5108870', 'https://imdb-api.com/images/original/MV5BNTA3N2Q0ZTAtODJjNy00MmQzLWJlMmItOGFmNDI0ODgxN2QwXkEyXkFqcGdeQXVyMTM0NTUzNDIy._V1_Ratio0.6751_AL_.jpg', 'Biochemist Michael Morbius tries to cure himself of a rare blood disease, but he inadvertently infects himself with a form of vampirism instead.', 'Morbius'),
('tt5315212', 'https://imdb-api.com/images/original/MV5BNDUyYTM0ODYtYzIyMy00OTM2LWFmOTAtMTFlODQwN2NlYjY1XkEyXkFqcGdeQXVyNTk5NTQzNDI@._V1_Ratio0.6751_AL_.jpg', 'A cheerleading stunt gone wrong landed her in a 20-year coma. Now she\'s 37, newly awake and ready to live out her high school dream: becoming prom queen.', 'Senior Year'),
('tt5834426', 'https://imdb-api.com/images/original/MV5BZjk0OWZiN2ItNmQ2YS00NTJmLTg0MjItNzM4NzBkMWM1ZTRlXkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_Ratio0.6751_AL_.jpg', 'A mysterious force knocks the moon from its orbit and sends it hurtling on a collision course toward earth.', 'Moonfall'),
('tt5919756', 'https://imdb-api.com/images/original/MV5BZmQ4NTM4ODctZjU1Yi00ZGMwLWJkMGYtYWZiNjhmMzg2MTk2XkEyXkFqcGdeQXVyODY3Nzc0OTk@._V1_Ratio0.6751_AL_.jpg', 'Follows a troubled young woman returning to her hometown of Niagara Falls, where the memory of a long-ago kidnapping quickly ensnares her.', 'Disappearance at Clifton Hill'),
('tt6264654', 'https://imdb-api.com/images/original/MV5BOTY2NzFjODctOWUzMC00MGZhLTlhNjMtM2Y2ODBiNGY1ZWRiXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6751_AL_.jpg', 'A bank teller discovers that he\'s actually an NPC inside a brutal, open world video game.', 'Free Guy'),
('tt6467266', 'https://imdb-api.com/images/original/MV5BMWRiZGQ1NDMtODQ2OS00MDlhLWJkZGYtM2ZmNjlhZThjOWRmXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.6751_AL_.jpg', 'Buster Moon and his friends must persuade reclusive rock star Clay Calloway to join them for the opening of a new show.', 'Sing 2'),
('tt6710474', 'https://imdb-api.com/images/original/MV5BYTdiOTIyZTQtNmQ1OS00NjZlLWIyMTgtYzk5Y2M3ZDVmMDk1XkEyXkFqcGdeQXVyMTAzMDg4NzU0._V1_Ratio0.6751_AL_.jpg', 'An aging Chinese immigrant is swept up in an insane adventure, where she alone can save the world by exploring other universes connecting with the lives she could have led.', 'Everything Everywhere All at Once'),
('tt7131622', 'https://imdb-api.com/images/original/MV5BOTg4ZTNkZmUtMzNlZi00YmFjLTk1MmUtNWQwNTM0YjcyNTNkXkEyXkFqcGdeQXVyNjg2NjQwMDQ@._V1_Ratio0.6751_AL_.jpg', 'A faded television actor and his stunt double strive to achieve fame and success in the final years of Hollywood\'s Golden Age in 1969 Los Angeles.', 'Once Upon a Time... In Hollywood'),
('tt7144666', 'https://imdb-api.com/images/original/MV5BOWVmNTBiYTUtZWQ3Yi00ZDlhLTgyYjUtNzBhZjM3YjRiNGRkXkEyXkFqcGdeQXVyNzYyOTM1ODI@._V1_Ratio0.6751_AL_.jpg', 'After being abducted by a child killer and locked in a soundproof basement, a 13-year-old boy starts receiving calls on a disconnected phone from the killer\'s previous victims.', 'The Black Phone'),
('tt7322224', 'https://imdb-api.com/images/original/MV5BOTFlYzkyMzEtMTEyNS00MTA3LTk4NTAtZGQzMGQ5MTBiNzVmXkEyXkFqcGdeQXVyNDYwNDUyNDc@._V1_Ratio0.6751_AL_.jpg', 'A cruise for the super-rich sinks thus leaving survivors, including a fashion model celebrity couple, trapped on an island.', 'Triangle of Sadness'),
('tt7466442', 'https://imdb-api.com/images/original/MV5BYzFhNDNkY2UtYjc3ZS00NzVkLTlhNzEtYmZiZGMzYmRjMjVhXkEyXkFqcGdeQXVyMjQwMDg0Ng@@._V1_Ratio0.6751_AL_.jpg', 'The Belchers try to save the restaurant from closing as a sinkhole forms in front of it, while the kids try to solve a mystery that could save their family\'s restaurant.', 'The Bob\'s Burgers Movie'),
('tt7657566', 'https://imdb-api.com/images/original/MV5BNjI4ZTQ1OTYtNTI0Yi00M2EyLThiNjMtMzk1MmZlOWMyMDQwXkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'While on vacation on the Nile, Hercule Poirot must investigate the murder of a young heiress.', 'Death on the Nile'),
('tt8009428', 'https://imdb-api.com/images/original/MV5BYjdhYTE3NjMtZjI3OC00NzVlLWFiNTUtNzQ3NDNiNTI3NDg4XkEyXkFqcGdeQXVyMTEyMjM2NDc2._V1_Ratio0.6751_AL_.jpg', 'A basketball scout discovers a phenomenal street ball player while in Spain and sees the prospect as his opportunity to get back into the NBA.', 'Hustle'),
('tt8041270', 'https://imdb-api.com/images/original/MV5BOTBjMjA4NmYtN2RjMi00YWZlLTliYTktOTIwMmNkYjYxYmE1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_Ratio0.6751_AL_.jpg', 'Four years after the destruction of Isla Nublar, dinosaurs now live--and hunt--alongside humans all over the world. This fragile balance will reshape the future and determine, once and for all, whether human beings are to remain the apex predators on a planet they now share with history\'s most fearsome creatures in a new Era.', 'Jurassic World Dominion'),
('tt8115900', 'https://imdb-api.com/images/original/MV5BMDhkYmU0MzctMWEzNy00ODg1LWI3ZjAtMGZlZjkzNWVmMzVjXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'Several reformed yet misunderstood criminal animals attempt to become good, with some disastrous results along the way.', 'The Bad Guys'),
('tt8178634', 'https://imdb-api.com/images/original/MV5BOTA5NzQwMGMtNDRlZC00YzA4LTliMzQtNGM0NDIwYTk5Y2ZiXkEyXkFqcGdeQXVyMTIyNzY0NTMx._V1_Ratio0.6751_AL_.jpg', 'A fictitious story about two legendary revolutionaries and their journey away from home before they started fighting for their country in 1920\'s.', 'RRR'),
('tt8367814', 'https://imdb-api.com/images/original/MV5BMTlkMmVmYjktYTc2NC00ZGZjLWEyOWUtMjc2MDMwMjQwOTA5XkEyXkFqcGdeQXVyNTI4MzE4MDU@._V1_Ratio0.6751_AL_.jpg', 'An American expat tries to sell off his highly profitable marijuana empire in London, triggering plots, schemes, bribery and blackmail in an attempt to steal his domain out from under him.', 'The Gentlemen'),
('tt8550054', 'https://imdb-api.com/images/original/MV5BNmU3ZTJjMTEtYzc2Ny00YjVhLTkyYmQtZTFhYWY0N2MxMzkxXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'Bella Cherry arrives in Los Angeles with dreams of becoming an adult film star, but she soon learns that fame won\'t come easy as she harnesses her ambition and cunning to rise to the top of this mesmerizing and singular world.', 'Pleasure'),
('tt9032400', 'https://imdb-api.com/images/original/MV5BYzVjYThmNDAtOTE1NC00YjQ2LTk4NWYtNTc4Yzc4OTRhYjllXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_Ratio0.6751_AL_.jpg', 'The saga of the Eternals, a race of immortal beings who lived on Earth and shaped its history and civilizations.', 'Eternals'),
('tt9179430', 'https://imdb-api.com/images/original/MV5BMmJhYTYxMGEtNjQ5NS00MWZiLWEwN2ItYjJmMWE2YTU1YWYxXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_Ratio0.6751_AL_.jpg', 'Amar is assigned to investigate a case of serial killings. When Amar investigates the case, he realizes it is not what it seems to be and following down this path will lead to nothing but war between everyone involved.', 'Vikram'),
('tt9419884', 'https://imdb-api.com/images/original/MV5BNWM0ZGJlMzMtZmYwMi00NzI3LTgzMzMtNjMzNjliNDRmZmFlXkEyXkFqcGdeQXVyMTM1MTE1NDMx._V1_Ratio0.6751_AL_.jpg', 'Doctor Strange teams up with a mysterious teenage girl from his dreams who can travel across multiverses, to battle multiple threats, including other-universe versions of himself, which threaten to wipe out millions across the mul...', 'Doctor Strange in the Multiverse of Madness'),
('tt9603212', 'https://imdb-api.com/images/original/MV5BZmM1MmI1MjctOTkyMi00MjZhLWEwN2MtYjEwNGRjNmUxZmVjXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_Ratio0.6751_AL_.jpg', 'Seventh entry in the long-running Mission: Impossible series.', 'Mission: Impossible - Dead Reckoning - Part One'),
('tt9663764', 'https://imdb-api.com/images/original/MV5BM2QyYTRkMjMtMDk5NC00OTc0LWIyYTYtNGNhMzRjMTNhNGNkXkEyXkFqcGdeQXVyNjc0NzQzNTM@._V1_Ratio0.6751_AL_.jpg', 'Plot unknown. Sequel to the 2018 film \'Aquaman.\'', 'Aquaman and the Lost Kingdom'),
('tt9764362', 'https://imdb-api.com/images/original/MV5BMGUyOTNhZjEtYzg3Ni00NDJjLWJlYzQtYzRmMTBhODRmM2FkXkEyXkFqcGdeQXVyODc0OTEyNDU@._V1_Ratio0.6751_AL_.jpg', 'A young couple travel to a remote island to eat at an exclusive restaurant where the chef has prepared a lavish menu, with some shocking surprises.', 'The Menu');