Zhankui He commited on
Commit
5f9d9e3
1 Parent(s): 96855de

inspired data

Browse files
entity2id.json ADDED
The diff for this file is too large to render. See raw diff
 
extract_prediction.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ Extract the prediction samples from the raw prediction file.
2
+ i.e., ${data}/test_raw.jsonl to ${data}/test.jsonl
3
+ """
4
+
5
+
6
+ import json
7
+ from jsonargparse import CLI
8
+
9
+ def context2input(l, start=0):
10
+ """ Given a list of context, just following UniCRS to format the context.
11
+ """
12
+ context = ''
13
+ for i, utt in enumerate(l):
14
+ if utt == '' or utt == ' ':
15
+ continue
16
+ if i % 2 == start:
17
+ context += '\nUser: '
18
+ else:
19
+ context += '\nSystem: '
20
+ context += utt
21
+ return context + '\nSystem: '
22
+
23
+ def main(from_json: str = None, to_json: str = None, start: int = 0):
24
+ with open(from_json) as fr, open(to_json, 'w') as fw:
25
+ for l in fr:
26
+ l = json.loads(l)
27
+ if l['is_user'] == 0 and len(l['rec']) > 0:
28
+ l['input'] = context2input(l['context'], start=start)
29
+ fw.write(json.dumps(l) + '\n')
30
+
31
+ if __name__ == '__main__':
32
+ # python extract_prediction.py --from_json=inspired/test_raw.jsonl --to_json=inspired/test.jsonl --start 0
33
+ # python extract_prediction.py --from_json=redial/test_raw.jsonl --to_json=redial/test.jsonl --start 1
34
+ # python extract_prediction.py --from_json=reddit/test_raw.jsonl --to_json=reddit/test.jsonl --start 1
35
+ CLI(main)
gen_itemname.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+
3
+ entity2id = "entity2id.json"
4
+ entity2id = json.load(open(entity2id, "r"))
5
+
6
+
7
+ itemids = "item_ids.json"
8
+ itemids = json.load(open(itemids, "r"))
9
+
10
+ itemnames = [k for k, v in entity2id.items() if v in itemids]
11
+
12
+ with open("itemnames.json", "w") as f:
13
+ json.dump(itemnames, f)
item_global2local.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"@0": 0, "@100": 1, "@10006": 2, "@10035": 3, "@10036": 4, "@10038": 5, "@1004": 6, "@10056": 7, "@1007": 8, "@10088": 9, "@10092": 10, "@10093": 11, "@10108": 12, "@10109": 13, "@10126": 14, "@10139": 15, "@10148": 16, "@10149": 17, "@10158": 18, "@10161": 19, "@1017": 20, "@1018": 21, "@10189": 22, "@10192": 23, "@10209": 24, "@10211": 25, "@10220": 26, "@10233": 27, "@10244": 28, "@1027": 29, "@10272": 30, "@10291": 31, "@10300": 32, "@10302": 33, "@10307": 34, "@10320": 35, "@10323": 36, "@10357": 37, "@10358": 38, "@10369": 39, "@10397": 40, "@10415": 41, "@10426": 42, "@10439": 43, "@10445": 44, "@10468": 45, "@10473": 46, "@10495": 47, "@10504": 48, "@10505": 49, "@10510": 50, "@10515": 51, "@10519": 52, "@10550": 53, "@10553": 54, "@10572": 55, "@10592": 56, "@10594": 57, "@10601": 58, "@10606": 59, "@10608": 60, "@10618": 61, "@10622": 62, "@10632": 63, "@10643": 64, "@10664": 65, "@10678": 66, "@10680": 67, "@10686": 68, "@1069": 69, "@10698": 70, "@10713": 71, "@10720": 72, "@10735": 73, "@10744": 74, "@10754": 75, "@10760": 76, "@10763": 77, "@10772": 78, "@10773": 79, "@10775": 80, "@10777": 81, "@10782": 82, "@10791": 83, "@10800": 84, "@1082": 85, "@10825": 86, "@10829": 87, "@10853": 88, "@10854": 89, "@1086": 90, "@10875": 91, "@10878": 92, "@10906": 93, "@10934": 94, "@10961": 95, "@10964": 96, "@10972": 97, "@10980": 98, "@11015": 99, "@1102": 100, "@11024": 101, "@11032": 102, "@11042": 103, "@11061": 104, "@11067": 105, "@11089": 106, "@11094": 107, "@11104": 108, "@11120": 109, "@11126": 110, "@11129": 111, "@11135": 112, "@11152": 113, "@11155": 114, "@11158": 115, "@11159": 116, "@11168": 117, "@11201": 118, "@11272": 119, "@11275": 120, "@11311": 121, "@11314": 122, "@11331": 123, "@11344": 124, "@1137": 125, "@11389": 126, "@11395": 127, "@11397": 128, "@11433": 129, "@11435": 130, "@11442": 131, "@11445": 132, "@1145": 133, "@11452": 134, "@11462": 135, "@1147": 136, "@11471": 137, "@1148": 138, "@11485": 139, "@11489": 140, "@11496": 141, "@1151": 142, "@1154": 143, "@1158": 144, "@11589": 145, "@11605": 146, "@11641": 147, "@11661": 148, "@11691": 149, "@11695": 150, "@11710": 151, "@11718": 152, "@11732": 153, "@11748": 154, "@11753": 155, "@11770": 156, "@11774": 157, "@11797": 158, "@11807": 159, "@11809": 160, "@11820": 161, "@11826": 162, "@11828": 163, "@11854": 164, "@11864": 165, "@11921": 166, "@11931": 167, "@11934": 168, "@11938": 169, "@1195": 170, "@11953": 171, "@11969": 172, "@1199": 173, "@11996": 174, "@1200": 175, "@12008": 176, "@12016": 177, "@12020": 178, "@12028": 179, "@12030": 180, "@12043": 181, "@12050": 182, "@12054": 183, "@12070": 184, "@12076": 185, "@12082": 186, "@1209": 187, "@12104": 188, "@12132": 189, "@12136": 190, "@12148": 191, "@12167": 192, "@12168": 193, "@12173": 194, "@12192": 195, "@12211": 196, "@12240": 197, "@12241": 198, "@12249": 199, "@12257": 200, "@12271": 201, "@12277": 202, "@12292": 203, "@12308": 204, "@12319": 205, "@12331": 206, "@12335": 207, "@12341": 208, "@12370": 209, "@12410": 210, "@12425": 211, "@12429": 212, "@12436": 213, "@12445": 214, "@1245": 215, "@12469": 216, "@12475": 217, "@12481": 218, "@12484": 219, "@12495": 220, "@12503": 221, "@12532": 222, "@12533": 223, "@12541": 224, "@12548": 225, "@12556": 226, "@12582": 227, "@12583": 228, "@12596": 229, "@12609": 230, "@12612": 231, "@12613": 232, "@12635": 233, "@12641": 234, "@12669": 235, "@12674": 236, "@12679": 237, "@12692": 238, "@12693": 239, "@127": 240, "@12714": 241, "@12728": 242, "@12752": 243, "@12766": 244, "@1278": 245, "@12783": 246, "@12789": 247, "@12791": 248, "@12802": 249, "@12806": 250, "@12808": 251, "@12811": 252, "@12815": 253, "@12816": 254, "@12843": 255, "@12858": 256, "@1287": 257, "@12872": 258, "@12889": 259, "@12926": 260, "@12929": 261, "@12933": 262, "@12942": 263, "@12944": 264, "@12960": 265, "@12974": 266, "@1299": 267, "@12997": 268, "@13001": 269, "@13006": 270, "@13008": 271, "@13024": 272, "@13068": 273, "@13071": 274, "@13074": 275, "@13087": 276, "@13089": 277, "@13094": 278, "@13097": 279, "@13098": 280, "@1310": 281, "@13108": 282, "@13127": 283, "@13134": 284, "@13164": 285, "@13165": 286, "@13166": 287, "@13178": 288, "@13203": 289, "@13221": 290, "@1323": 291, "@13235": 292, "@13239": 293, "@13249": 294, "@13266": 295, "@13278": 296, "@13297": 297, "@13321": 298, "@13327": 299, "@13330": 300, "@13351": 301, "@13355": 302, "@1336": 303, "@13383": 304, "@13384": 305, "@13392": 306, "@13400": 307, "@13410": 308, "@13418": 309, "@13424": 310, "@13431": 311, "@13434": 312, "@13438": 313, "@13458": 314, "@1346": 315, "@13461": 316, "@13474": 317, "@1350": 318, "@13520": 319, "@13535": 320, "@13542": 321, "@1355": 322, "@13560": 323, "@13568": 324, "@13574": 325, "@13599": 326, "@13605": 327, "@13606": 328, "@13613": 329, "@13625": 330, "@13642": 331, "@13649": 332, "@13659": 333, "@13661": 334, "@13673": 335, "@13710": 336, "@13725": 337, "@13755": 338, "@13760": 339, "@1378": 340, "@138": 341, "@13806": 342, "@13809": 343, "@13816": 344, "@13826": 345, "@13832": 346, "@13854": 347, "@13875": 348, "@13876": 349, "@13886": 350, "@139": 351, "@1390": 352, "@13904": 353, "@13921": 354, "@13930": 355, "@13935": 356, "@13957": 357, "@13959": 358, "@13971": 359, "@13983": 360, "@13993": 361, "@14015": 362, "@14033": 363, "@14036": 364, "@14063": 365, "@14075": 366, "@14077": 367, "@14083": 368, "@14085": 369, "@14088": 370, "@14103": 371, "@14109": 372, "@14114": 373, "@14115": 374, "@14189": 375, "@14195": 376, "@14209": 377, "@14212": 378, "@14230": 379, "@14233": 380, "@14235": 381, "@14244": 382, "@1425": 383, "@14283": 384, "@143": 385, "@14300": 386, "@1431": 387, "@14315": 388, "@1434": 389, "@14348": 390, "@14361": 391, "@14390": 392, "@14409": 393, "@14410": 394, "@14415": 395, "@14416": 396, "@14441": 397, "@14453": 398, "@14454": 399, "@14473": 400, "@14474": 401, "@14489": 402, "@14492": 403, "@14493": 404, "@14496": 405, "@1450": 406, "@1451": 407, "@14537": 408, "@14541": 409, "@1456": 410, "@14564": 411, "@1458": 412, "@14597": 413, "@14610": 414, "@14617": 415, "@14627": 416, "@1463": 417, "@14637": 418, "@14666": 419, "@14713": 420, "@14718": 421, "@14719": 422, "@14724": 423, "@14728": 424, "@14730": 425, "@14734": 426, "@14751": 427, "@14758": 428, "@14762": 429, "@14772": 430, "@14780": 431, "@14787": 432, "@14812": 433, "@14823": 434, "@14825": 435, "@14829": 436, "@14835": 437, "@14837": 438, "@14840": 439, "@14849": 440, "@1485": 441, "@14859": 442, "@14865": 443, "@14869": 444, "@14874": 445, "@1490": 446, "@14924": 447, "@1495": 448, "@14977": 449, "@14985": 450, "@1499": 451, "@14997": 452, "@15012": 453, "@15029": 454, "@15030": 455, "@15044": 456, "@15057": 457, "@15062": 458, "@15064": 459, "@15112": 460, "@15113": 461, "@15128": 462, "@15129": 463, "@15131": 464, "@15136": 465, "@15147": 466, "@15171": 467, "@15177": 468, "@15187": 469, "@15191": 470, "@15214": 471, "@15228": 472, "@1524": 473, "@15246": 474, "@15249": 475, "@1525": 476, "@15252": 477, "@15262": 478, "@1527": 479, "@15296": 480, "@15303": 481, "@15304": 482, "@15309": 483, "@15311": 484, "@15319": 485, "@15322": 486, "@15337": 487, "@15341": 488, "@15347": 489, "@15352": 490, "@15356": 491, "@15364": 492, "@15365": 493, "@15380": 494, "@15386": 495, "@15393": 496, "@15409": 497, "@15451": 498, "@15458": 499, "@15473": 500, "@15476": 501, "@15489": 502, "@15515": 503, "@15517": 504, "@15519": 505, "@15525": 506, "@15542": 507, "@15558": 508, "@15569": 509, "@15592": 510, "@15598": 511, "@15602": 512, "@15605": 513, "@15610": 514, "@1562": 515, "@15642": 516, "@15657": 517, "@15668": 518, "@15669": 519, "@15679": 520, "@15682": 521, "@15693": 522, "@15704": 523, "@1572": 524, "@15721": 525, "@15728": 526, "@15761": 527, "@15773": 528, "@15789": 529, "@15799": 530, "@15815": 531, "@15818": 532, "@15833": 533, "@15836": 534, "@1584": 535, "@15852": 536, "@15857": 537, "@15863": 538, "@15874": 539, "@15888": 540, "@15893": 541, "@1591": 542, "@1593": 543, "@15932": 544, "@15957": 545, "@15967": 546, "@15970": 547, "@15976": 548, "@15981": 549, "@15983": 550, "@15987": 551, "@16": 552, "@16036": 553, "@16066": 554, "@16069": 555, "@1608": 556, "@16081": 557, "@16116": 558, "@16144": 559, "@16175": 560, "@1620": 561, "@16203": 562, "@16243": 563, "@16246": 564, "@16255": 565, "@16286": 566, "@16296": 567, "@16318": 568, "@16340": 569, "@1635": 570, "@16351": 571, "@16359": 572, "@16362": 573, "@16368": 574, "@16380": 575, "@16388": 576, "@1639": 577, "@16390": 578, "@1640": 579, "@16418": 580, "@16421": 581, "@16426": 582, "@16427": 583, "@16434": 584, "@16462": 585, "@1648": 586, "@1649": 587, "@16511": 588, "@16512": 589, "@16519": 590, "@16535": 591, "@1656": 592, "@1658": 593, "@16597": 594, "@16601": 595, "@16621": 596, "@16654": 597, "@16675": 598, "@16697": 599, "@16704": 600, "@16718": 601, "@16737": 602, "@16741": 603, "@16755": 604, "@16758": 605, "@16768": 606, "@1677": 607, "@16782": 608, "@16797": 609, "@1680": 610, "@1683": 611, "@16837": 612, "@1686": 613, "@16864": 614, "@16868": 615, "@16887": 616, "@16899": 617, "@16903": 618, "@16905": 619, "@1691": 620, "@16910": 621, "@16925": 622, "@16929": 623, "@16932": 624, "@16933": 625, "@16948": 626, "@16956": 627, "@16966": 628, "@16971": 629, "@17001": 630, "@17011": 631, "@17022": 632, "@17034": 633, "@1709": 634, "@17101": 635, "@17115": 636, "@1713": 637, "@17147": 638, "@17154": 639, "@17159": 640, "@17164": 641, "@17165": 642, "@17175": 643, "@17191": 644, "@1720": 645, "@17205": 646, "@17211": 647, "@17236": 648, "@17237": 649, "@17244": 650, "@17246": 651, "@17248": 652, "@17252": 653, "@17253": 654, "@17259": 655, "@17266": 656, "@174": 657, "@1743": 658, "@1748": 659, "@1752": 660, "@1785": 661, "@1804": 662, "@1822": 663, "@1823": 664, "@1828": 665, "@1829": 666, "@1830": 667, "@1839": 668, "@1848": 669, "@1870": 670, "@1877": 671, "@1880": 672, "@1882": 673, "@189": 674, "@1904": 675, "@1909": 676, "@191": 677, "@1935": 678, "@1936": 679, "@2013": 680, "@2014": 681, "@2015": 682, "@202": 683, "@2020": 684, "@2034": 685, "@2049": 686, "@205": 687, "@2084": 688, "@209": 689, "@2097": 690, "@210": 691, "@2115": 692, "@212": 693, "@2125": 694, "@2126": 695, "@2138": 696, "@2156": 697, "@2170": 698, "@2203": 699, "@2205": 700, "@2211": 701, "@2226": 702, "@2231": 703, "@2257": 704, "@2268": 705, "@2270": 706, "@2279": 707, "@2287": 708, "@2297": 709, "@23": 710, "@2300": 711, "@2306": 712, "@2307": 713, "@2308": 714, "@2310": 715, "@2313": 716, "@2331": 717, "@2362": 718, "@2370": 719, "@2374": 720, "@2382": 721, "@2384": 722, "@2388": 723, "@2392": 724, "@2400": 725, "@2415": 726, "@2437": 727, "@2442": 728, "@2446": 729, "@2471": 730, "@248": 731, "@250": 732, "@2516": 733, "@2519": 734, "@2525": 735, "@2543": 736, "@2548": 737, "@2552": 738, "@2556": 739, "@2592": 740, "@2599": 741, "@2607": 742, "@2611": 743, "@2643": 744, "@2644": 745, "@2651": 746, "@2653": 747, "@266": 748, "@2673": 749, "@2682": 750, "@2686": 751, "@2693": 752, "@2695": 753, "@2696": 754, "@2711": 755, "@2712": 756, "@2742": 757, "@2743": 758, "@2754": 759, "@2762": 760, "@278": 761, "@2788": 762, "@2804": 763, "@2811": 764, "@2813": 765, "@282": 766, "@2827": 767, "@283": 768, "@2844": 769, "@2860": 770, "@2872": 771, "@2874": 772, "@2880": 773, "@2896": 774, "@290": 775, "@291": 776, "@2910": 777, "@2926": 778, "@293": 779, "@2937": 780, "@294": 781, "@2944": 782, "@2949": 783, "@2965": 784, "@2973": 785, "@2975": 786, "@2978": 787, "@2991": 788, "@2992": 789, "@3002": 790, "@3010": 791, "@3029": 792, "@303": 793, "@3054": 794, "@3062": 795, "@3064": 796, "@3072": 797, "@3075": 798, "@3076": 799, "@3080": 800, "@3105": 801, "@3106": 802, "@3121": 803, "@3143": 804, "@3169": 805, "@3177": 806, "@3178": 807, "@3193": 808, "@3195": 809, "@3208": 810, "@3209": 811, "@3216": 812, "@3221": 813, "@3225": 814, "@3226": 815, "@3235": 816, "@3267": 817, "@3269": 818, "@3275": 819, "@3278": 820, "@3280": 821, "@329": 822, "@33": 823, "@3325": 824, "@3333": 825, "@3344": 826, "@3351": 827, "@3356": 828, "@337": 829, "@3372": 830, "@3386": 831, "@3397": 832, "@3398": 833, "@340": 834, "@3401": 835, "@3410": 836, "@3423": 837, "@3448": 838, "@3455": 839, "@3489": 840, "@3495": 841, "@3505": 842, "@3507": 843, "@3508": 844, "@3511": 845, "@3512": 846, "@3513": 847, "@3524": 848, "@3536": 849, "@3562": 850, "@3605": 851, "@3624": 852, "@3632": 853, "@3637": 854, "@3644": 855, "@3647": 856, "@3656": 857, "@367": 858, "@3673": 859, "@3679": 860, "@368": 861, "@3684": 862, "@3693": 863, "@3716": 864, "@3720": 865, "@3724": 866, "@3733": 867, "@3735": 868, "@3736": 869, "@3761": 870, "@3764": 871, "@3790": 872, "@3842": 873, "@3843": 874, "@3845": 875, "@3848": 876, "@3852": 877, "@3854": 878, "@3868": 879, "@3910": 880, "@3916": 881, "@3917": 882, "@3925": 883, "@3945": 884, "@3953": 885, "@3954": 886, "@3957": 887, "@3986": 888, "@4001": 889, "@4039": 890, "@4054": 891, "@4064": 892, "@4071": 893, "@4083": 894, "@4109": 895, "@4126": 896, "@4144": 897, "@4157": 898, "@4161": 899, "@4179": 900, "@4184": 901, "@4186": 902, "@4191": 903, "@4198": 904, "@4203": 905, "@422": 906, "@4222": 907, "@4243": 908, "@4246": 909, "@4247": 910, "@4262": 911, "@4274": 912, "@4279": 913, "@4297": 914, "@4301": 915, "@4310": 916, "@4319": 917, "@4322": 918, "@4328": 919, "@4334": 920, "@4350": 921, "@438": 922, "@4391": 923, "@4393": 924, "@4399": 925, "@4402": 926, "@4411": 927, "@4420": 928, "@4431": 929, "@4434": 930, "@4439": 931, "@4491": 932, "@4498": 933, "@4502": 934, "@4505": 935, "@4514": 936, "@4534": 937, "@4549": 938, "@4555": 939, "@4556": 940, "@4571": 941, "@4583": 942, "@4606": 943, "@4607": 944, "@4625": 945, "@4629": 946, "@4635": 947, "@4646": 948, "@4656": 949, "@4660": 950, "@4663": 951, "@4678": 952, "@4683": 953, "@4685": 954, "@4706": 955, "@4726": 956, "@4729": 957, "@4741": 958, "@4778": 959, "@4789": 960, "@4803": 961, "@4813": 962, "@4817": 963, "@4827": 964, "@4832": 965, "@4835": 966, "@4855": 967, "@4863": 968, "@4870": 969, "@4879": 970, "@4895": 971, "@4899": 972, "@4926": 973, "@4937": 974, "@4939": 975, "@494": 976, "@4945": 977, "@4951": 978, "@4955": 979, "@4957": 980, "@4963": 981, "@4966": 982, "@4970": 983, "@4980": 984, "@4982": 985, "@4984": 986, "@4993": 987, "@4997": 988, "@4999": 989, "@50": 990, "@5008": 991, "@5017": 992, "@5037": 993, "@5038": 994, "@5051": 995, "@5055": 996, "@5064": 997, "@5072": 998, "@5073": 999, "@5074": 1000, "@5089": 1001, "@5122": 1002, "@515": 1003, "@5156": 1004, "@5166": 1005, "@5194": 1006, "@5203": 1007, "@5204": 1008, "@5215": 1009, "@5217": 1010, "@5244": 1011, "@5264": 1012, "@5290": 1013, "@53": 1014, "@5329": 1015, "@5364": 1016, "@5369": 1017, "@5371": 1018, "@5373": 1019, "@5383": 1020, "@5391": 1021, "@540": 1022, "@5400": 1023, "@5401": 1024, "@5406": 1025, "@5469": 1026, "@547": 1027, "@5470": 1028, "@5471": 1029, "@5477": 1030, "@5479": 1031, "@5482": 1032, "@5489": 1033, "@5491": 1034, "@5505": 1035, "@5524": 1036, "@5533": 1037, "@5560": 1038, "@5599": 1039, "@5612": 1040, "@5629": 1041, "@5637": 1042, "@5639": 1043, "@5659": 1044, "@5670": 1045, "@5672": 1046, "@5678": 1047, "@5704": 1048, "@571": 1049, "@5711": 1050, "@572": 1051, "@5731": 1052, "@5752": 1053, "@5754": 1054, "@5758": 1055, "@5777": 1056, "@5800": 1057, "@5806": 1058, "@583": 1059, "@5834": 1060, "@5855": 1061, "@5862": 1062, "@589": 1063, "@590": 1064, "@5913": 1065, "@5938": 1066, "@5943": 1067, "@5944": 1068, "@5950": 1069, "@5968": 1070, "@5971": 1071, "@5975": 1072, "@5985": 1073, "@5990": 1074, "@5996": 1075, "@6": 1076, "@6003": 1077, "@6004": 1078, "@6006": 1079, "@6016": 1080, "@6018": 1081, "@6065": 1082, "@607": 1083, "@6070": 1084, "@6073": 1085, "@6095": 1086, "@6114": 1087, "@6119": 1088, "@612": 1089, "@6143": 1090, "@6188": 1091, "@6192": 1092, "@6196": 1093, "@6217": 1094, "@6218": 1095, "@623": 1096, "@6239": 1097, "@6265": 1098, "@6283": 1099, "@6291": 1100, "@6294": 1101, "@6295": 1102, "@6300": 1103, "@6311": 1104, "@6319": 1105, "@6345": 1106, "@6354": 1107, "@6355": 1108, "@6374": 1109, "@6380": 1110, "@6388": 1111, "@6393": 1112, "@64": 1113, "@6402": 1114, "@6408": 1115, "@6415": 1116, "@6425": 1117, "@6426": 1118, "@6432": 1119, "@6469": 1120, "@6481": 1121, "@649": 1122, "@6499": 1123, "@6504": 1124, "@6535": 1125, "@6540": 1126, "@6544": 1127, "@6549": 1128, "@6550": 1129, "@6556": 1130, "@6557": 1131, "@6558": 1132, "@6567": 1133, "@6612": 1134, "@6620": 1135, "@6622": 1136, "@6627": 1137, "@6643": 1138, "@6645": 1139, "@665": 1140, "@6661": 1141, "@6667": 1142, "@6676": 1143, "@6681": 1144, "@6693": 1145, "@6695": 1146, "@6710": 1147, "@6716": 1148, "@6734": 1149, "@6745": 1150, "@6754": 1151, "@6758": 1152, "@6777": 1153, "@678": 1154, "@6800": 1155, "@6820": 1156, "@6854": 1157, "@6872": 1158, "@6875": 1159, "@6876": 1160, "@6886": 1161, "@6889": 1162, "@6890": 1163, "@6893": 1164, "@6914": 1165, "@6917": 1166, "@6925": 1167, "@6948": 1168, "@6953": 1169, "@6959": 1170, "@6963": 1171, "@6978": 1172, "@6995": 1173, "@7010": 1174, "@7012": 1175, "@7061": 1176, "@7075": 1177, "@7078": 1178, "@708": 1179, "@7088": 1180, "@7097": 1181, "@7099": 1182, "@710": 1183, "@7109": 1184, "@7113": 1185, "@7116": 1186, "@7120": 1187, "@7168": 1188, "@7169": 1189, "@7172": 1190, "@7183": 1191, "@719": 1192, "@7196": 1193, "@7200": 1194, "@7206": 1195, "@7235": 1196, "@7244": 1197, "@7253": 1198, "@7262": 1199, "@7293": 1200, "@7295": 1201, "@7324": 1202, "@7356": 1203, "@737": 1204, "@738": 1205, "@7388": 1206, "@7393": 1207, "@7419": 1208, "@7471": 1209, "@7476": 1210, "@748": 1211, "@7483": 1212, "@7489": 1213, "@7490": 1214, "@7496": 1215, "@7501": 1216, "@7526": 1217, "@7535": 1218, "@7542": 1219, "@7547": 1220, "@755": 1221, "@7567": 1222, "@7572": 1223, "@7584": 1224, "@759": 1225, "@7591": 1226, "@7598": 1227, "@7609": 1228, "@7611": 1229, "@7614": 1230, "@7630": 1231, "@7634": 1232, "@7648": 1233, "@7653": 1234, "@7669": 1235, "@7673": 1236, "@7692": 1237, "@7702": 1238, "@7707": 1239, "@7729": 1240, "@773": 1241, "@7730": 1242, "@7750": 1243, "@7758": 1244, "@7765": 1245, "@7771": 1246, "@7804": 1247, "@781": 1248, "@7812": 1249, "@7813": 1250, "@7814": 1251, "@7817": 1252, "@7820": 1253, "@7826": 1254, "@7827": 1255, "@7847": 1256, "@7863": 1257, "@7881": 1258, "@7896": 1259, "@7899": 1260, "@7904": 1261, "@791": 1262, "@7928": 1263, "@7953": 1264, "@7959": 1265, "@7969": 1266, "@7977": 1267, "@7984": 1268, "@7986": 1269, "@7990": 1270, "@7992": 1271, "@8012": 1272, "@8028": 1273, "@8031": 1274, "@8040": 1275, "@8055": 1276, "@8059": 1277, "@8065": 1278, "@8066": 1279, "@8077": 1280, "@8092": 1281, "@8096": 1282, "@8100": 1283, "@8102": 1284, "@8149": 1285, "@8152": 1286, "@8153": 1287, "@8154": 1288, "@8160": 1289, "@8163": 1290, "@8169": 1291, "@8183": 1292, "@8190": 1293, "@8205": 1294, "@8208": 1295, "@8223": 1296, "@8240": 1297, "@8243": 1298, "@8244": 1299, "@8258": 1300, "@8263": 1301, "@8279": 1302, "@8281": 1303, "@8289": 1304, "@8310": 1305, "@8314": 1306, "@8340": 1307, "@8342": 1308, "@8345": 1309, "@8347": 1310, "@8354": 1311, "@8368": 1312, "@8372": 1313, "@8430": 1314, "@8445": 1315, "@845": 1316, "@8454": 1317, "@8456": 1318, "@8475": 1319, "@8520": 1320, "@8524": 1321, "@853": 1322, "@8543": 1323, "@8550": 1324, "@8570": 1325, "@8580": 1326, "@8600": 1327, "@8624": 1328, "@8625": 1329, "@8634": 1330, "@8642": 1331, "@8655": 1332, "@8657": 1333, "@8669": 1334, "@8693": 1335, "@8698": 1336, "@87": 1337, "@8712": 1338, "@8716": 1339, "@8721": 1340, "@8728": 1341, "@8746": 1342, "@8749": 1343, "@876": 1344, "@8762": 1345, "@8776": 1346, "@8781": 1347, "@8794": 1348, "@8799": 1349, "@880": 1350, "@8821": 1351, "@883": 1352, "@8831": 1353, "@8846": 1354, "@8873": 1355, "@8883": 1356, "@8887": 1357, "@889": 1358, "@8904": 1359, "@8920": 1360, "@893": 1361, "@8934": 1362, "@8941": 1363, "@8952": 1364, "@8953": 1365, "@8956": 1366, "@8960": 1367, "@8962": 1368, "@8967": 1369, "@8975": 1370, "@898": 1371, "@8987": 1372, "@903": 1373, "@9050": 1374, "@9094": 1375, "@9101": 1376, "@9107": 1377, "@9149": 1378, "@9155": 1379, "@9160": 1380, "@9165": 1381, "@9169": 1382, "@9182": 1383, "@9192": 1384, "@9199": 1385, "@920": 1386, "@9202": 1387, "@9206": 1388, "@9214": 1389, "@9238": 1390, "@9243": 1391, "@9244": 1392, "@9249": 1393, "@9262": 1394, "@9275": 1395, "@9276": 1396, "@930": 1397, "@9305": 1398, "@9314": 1399, "@933": 1400, "@9338": 1401, "@9363": 1402, "@937": 1403, "@938": 1404, "@9386": 1405, "@9393": 1406, "@9398": 1407, "@9402": 1408, "@9403": 1409, "@9423": 1410, "@9428": 1411, "@9432": 1412, "@944": 1413, "@9445": 1414, "@9446": 1415, "@9447": 1416, "@9452": 1417, "@9462": 1418, "@9476": 1419, "@9478": 1420, "@9498": 1421, "@9517": 1422, "@9528": 1423, "@9537": 1424, "@9540": 1425, "@9545": 1426, "@9546": 1427, "@9549": 1428, "@9561": 1429, "@9572": 1430, "@9578": 1431, "@9598": 1432, "@9652": 1433, "@9692": 1434, "@9699": 1435, "@97": 1436, "@9711": 1437, "@9716": 1438, "@9717": 1439, "@9720": 1440, "@9722": 1441, "@9727": 1442, "@9731": 1443, "@9740": 1444, "@9743": 1445, "@9763": 1446, "@9765": 1447, "@9768": 1448, "@9772": 1449, "@9774": 1450, "@9781": 1451, "@979": 1452, "@9790": 1453, "@9810": 1454, "@9823": 1455, "@9840": 1456, "@9848": 1457, "@9853": 1458, "@9872": 1459, "@9895": 1460, "@9915": 1461, "@9916": 1462, "@9925": 1463, "@9931": 1464, "@9956": 1465, "@9964": 1466, "@9968": 1467, "@9974": 1468, "@9981": 1469, "@9992": 1470, "@9995": 1471}
item_ids.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [0, 16388, 12292, 16390, 6, 4109, 8205, 8208, 16, 12308, 23, 4126, 12319, 8223, 33, 16418, 16421, 16426, 12331, 16427, 12335, 4144, 8240, 16434, 8243, 50, 53, 12341, 8244, 4157, 64, 4161, 8258, 8263, 16462, 12370, 4179, 87, 4184, 8279, 8281, 4186, 4191, 97, 8289, 100, 4198, 4203, 8310, 8314, 12410, 4222, 16511, 127, 16512, 16519, 12425, 138, 139, 12429, 143, 4243, 12436, 8340, 4246, 4247, 16535, 8345, 8342, 8347, 12445, 8354, 4262, 174, 8368, 4274, 8372, 12469, 4279, 12475, 189, 191, 12481, 12484, 4297, 202, 205, 4301, 12495, 209, 210, 212, 16597, 4310, 12503, 16601, 4319, 4322, 4328, 16621, 4334, 8430, 12532, 12533, 248, 250, 8445, 12541, 4350, 12548, 8454, 8456, 266, 12556, 16654, 278, 282, 283, 8475, 290, 291, 16675, 293, 12582, 4391, 12583, 4393, 294, 4399, 303, 4402, 12596, 16697, 4411, 16704, 12609, 4420, 12612, 12613, 8520, 329, 8524, 16718, 4431, 337, 4434, 340, 4439, 12635, 8543, 16737, 12641, 16741, 8550, 367, 368, 16755, 16758, 8570, 12669, 16768, 12674, 8580, 12679, 4491, 16782, 4498, 12692, 12693, 4502, 8600, 4505, 16797, 4514, 422, 12714, 8624, 8625, 4534, 438, 12728, 8634, 8642, 16837, 4549, 4555, 4556, 8655, 12752, 8657, 4571, 8669, 12766, 16864, 16868, 4583, 494, 12783, 8693, 12789, 12791, 16887, 8698, 4606, 4607, 12802, 515, 16899, 12806, 16903, 12808, 8712, 16905, 12811, 8716, 16910, 12815, 12816, 8721, 4625, 4629, 8728, 4635, 540, 16925, 16929, 547, 16932, 16933, 4646, 8746, 12843, 8749, 4656, 4660, 16948, 4663, 12858, 571, 16956, 572, 8762, 16966, 583, 8776, 12872, 4678, 4683, 16971, 589, 590, 8781, 4685, 12889, 8794, 8799, 607, 4706, 612, 17001, 623, 17011, 8821, 4726, 4729, 12926, 8831, 17022, 12929, 12933, 4741, 649, 17034, 12942, 8846, 12944, 665, 12960, 678, 8873, 4778, 12974, 8883, 4789, 8887, 4803, 708, 12997, 710, 8904, 13001, 17101, 13006, 719, 13008, 4817, 4813, 8920, 4827, 17115, 4832, 737, 738, 4835, 13024, 8934, 748, 8941, 755, 759, 8952, 8953, 4855, 17147, 8956, 4863, 8960, 17154, 8962, 773, 4870, 8967, 17159, 17164, 781, 13068, 4879, 8975, 17165, 13074, 13071, 17175, 791, 8987, 4895, 13087, 13089, 4899, 13094, 17191, 13097, 13098, 13108, 17205, 17211, 4926, 13127, 4937, 4939, 845, 13134, 4945, 17236, 17237, 853, 4951, 9050, 4955, 17244, 4957, 17246, 17248, 4963, 17252, 17253, 4966, 4970, 17259, 876, 13165, 13166, 13164, 880, 17266, 883, 4980, 4982, 4984, 889, 13178, 893, 4993, 898, 4997, 9094, 4999, 903, 9101, 5008, 9107, 13203, 920, 5017, 930, 13221, 933, 937, 938, 5037, 5038, 944, 13235, 13239, 5051, 9149, 5055, 13249, 9155, 9160, 5064, 9165, 5072, 9169, 13266, 5074, 5073, 979, 13278, 9182, 5089, 9192, 1004, 1007, 9199, 13297, 9202, 9206, 1017, 1018, 9214, 5122, 1027, 13321, 13327, 13330, 9238, 9243, 9244, 9249, 5156, 13351, 13355, 1069, 9262, 5166, 1082, 9275, 9276, 1086, 13383, 13384, 5194, 1102, 13392, 5203, 5204, 13400, 9305, 5215, 5217, 13410, 9314, 13418, 13424, 1137, 13431, 1145, 13434, 1147, 9338, 1148, 5244, 1151, 13438, 1154, 1158, 5264, 13458, 9363, 13461, 13474, 5290, 9386, 1195, 1199, 1200, 9393, 9398, 1209, 9402, 9403, 9423, 13520, 5329, 9428, 9432, 1245, 13535, 9445, 9446, 9447, 13542, 9452, 5364, 9462, 13560, 5369, 5371, 5373, 1278, 13568, 9476, 9478, 1287, 13574, 5383, 5391, 1299, 5400, 5401, 9498, 5406, 1310, 13599, 13605, 13606, 1323, 9517, 13613, 9528, 1336, 13625, 9537, 1346, 9540, 1350, 9545, 13642, 1355, 9546, 9549, 13649, 9561, 13659, 13661, 5470, 5471, 5469, 1378, 9572, 5477, 5479, 13673, 5482, 9578, 1390, 5489, 5491, 9598, 5505, 13710, 1425, 5524, 1431, 1434, 5533, 13725, 1450, 1451, 1456, 1458, 9652, 1463, 5560, 13755, 13760, 1485, 1490, 1495, 1499, 9692, 5599, 9699, 5612, 13806, 9711, 13809, 9716, 1525, 1524, 1527, 9717, 9720, 9722, 13816, 5629, 9727, 13826, 9731, 5637, 5639, 13832, 9740, 9743, 1562, 5659, 13854, 9763, 1572, 9765, 5670, 5672, 9768, 9772, 5678, 9774, 1584, 13875, 13876, 9781, 1591, 1593, 13886, 9790, 5704, 1608, 5711, 13904, 9810, 1620, 9823, 13921, 5731, 1635, 1639, 1640, 13930, 13935, 1648, 9840, 1649, 1656, 9848, 5754, 5752, 1658, 9853, 5758, 13957, 13959, 1677, 1680, 5777, 9872, 13971, 1683, 1686, 1691, 13983, 9895, 5800, 13993, 1709, 5806, 1713, 1720, 9915, 9916, 14015, 9925, 5834, 9931, 1743, 14033, 14036, 1748, 1752, 5855, 9956, 5862, 9964, 14063, 9968, 9974, 1785, 14075, 9981, 14077, 14083, 14085, 14088, 9992, 9995, 1804, 10006, 14103, 5913, 14109, 1822, 1823, 14114, 14115, 1828, 1829, 1830, 1839, 5938, 10035, 10036, 10038, 5943, 1848, 5944, 5950, 10056, 1870, 5968, 5971, 1877, 5975, 1880, 1882, 5985, 5990, 10088, 10092, 10093, 5996, 14189, 1904, 14195, 6004, 1909, 6006, 6003, 10108, 10109, 6016, 14209, 6018, 14212, 10126, 1935, 1936, 14230, 14233, 10139, 14235, 10148, 10149, 14244, 10158, 10161, 6065, 6070, 6073, 14283, 10189, 6095, 10192, 14300, 2013, 2014, 2015, 10209, 6114, 10211, 2020, 6119, 14315, 10220, 2034, 10233, 6143, 2049, 10244, 14348, 14361, 10272, 2084, 6188, 6192, 2097, 10291, 6196, 14390, 10300, 10302, 10307, 2115, 14409, 14410, 6218, 6217, 2125, 2126, 14415, 10320, 14416, 10323, 2138, 6239, 14441, 2156, 14453, 10358, 10357, 14454, 6265, 2170, 10369, 14473, 14474, 6283, 6291, 6294, 6295, 14489, 2203, 6300, 2205, 10397, 14493, 14496, 14492, 2211, 6311, 10415, 6319, 2226, 2231, 10426, 10439, 6345, 14537, 10445, 14541, 2257, 6354, 6355, 2268, 2270, 10468, 14564, 6374, 2279, 10473, 6380, 2287, 6388, 6393, 2297, 2300, 10495, 6402, 2306, 2308, 14597, 2310, 2307, 6408, 2313, 10505, 10504, 10510, 6415, 14610, 10515, 10519, 14617, 6425, 2331, 6426, 6432, 14627, 14637, 10550, 10553, 2362, 2370, 6469, 2374, 14666, 10572, 2382, 2384, 6481, 2388, 2392, 10592, 2400, 10594, 6499, 6504, 10601, 10606, 2415, 10608, 14713, 10618, 14718, 14719, 10622, 14724, 2437, 6535, 10632, 14728, 2442, 14730, 6540, 2446, 14734, 6544, 10643, 6549, 6550, 6556, 6557, 6558, 14751, 14758, 2471, 10664, 6567, 14762, 14772, 10678, 10680, 14780, 10686, 14787, 10698, 2516, 6612, 2519, 10713, 6620, 2525, 6622, 14812, 10720, 6627, 14823, 14825, 14829, 2543, 10735, 14835, 2548, 6645, 6643, 14837, 10744, 14840, 2552, 2556, 14849, 10754, 6661, 10760, 10763, 6667, 14859, 14865, 6676, 14869, 10773, 10775, 10772, 10777, 6681, 14874, 10782, 2592, 6693, 10791, 2599, 6695, 2607, 10800, 2611, 6710, 6716, 10825, 14924, 10829, 6734, 2643, 2644, 6745, 2651, 2653, 6754, 10853, 10854, 6758, 2673, 6777, 2682, 10875, 2686, 10878, 14977, 2693, 2695, 2696, 14985, 6800, 14997, 2711, 2712, 10906, 15012, 6820, 15029, 15030, 2743, 10934, 2742, 2754, 15044, 6854, 2762, 10961, 15057, 10964, 15062, 6872, 15064, 6875, 6876, 10972, 2788, 10980, 6886, 6889, 6890, 6893, 2804, 2811, 2813, 6914, 6917, 11015, 15112, 15113, 2827, 6925, 11024, 15128, 11032, 15129, 15131, 2844, 15136, 11042, 6948, 6953, 15147, 2860, 6959, 6963, 11061, 2872, 2874, 11067, 2880, 6978, 15171, 15177, 2896, 11089, 15187, 6995, 11094, 15191, 2910, 11104, 7010, 7012, 15214, 2926, 11120, 11126, 2937, 11129, 15228, 11135, 2944, 2949, 15246, 11152, 15249, 11155, 15252, 2965, 11158, 7061, 11159, 2973, 15262, 2975, 11168, 2978, 7075, 7078, 2991, 7088, 2992, 7097, 3002, 7099, 15296, 11201, 3010, 7109, 15303, 15304, 7113, 7116, 15309, 15311, 7120, 3029, 15319, 15322, 15337, 15341, 3054, 15347, 3062, 15352, 3064, 15356, 7168, 7169, 3072, 3075, 15364, 15365, 7172, 3076, 3080, 11272, 11275, 7183, 15380, 15386, 7196, 7200, 3105, 15393, 3106, 7206, 11311, 15409, 3121, 11314, 11331, 7235, 3143, 7244, 11344, 7253, 15451, 7262, 3169, 15458, 3177, 3178, 15473, 15476, 3193, 3195, 7293, 11389, 7295, 15489, 11395, 11397, 3208, 3209, 3216, 3221, 3225, 3226, 15515, 7324, 15517, 15519, 3235, 15525, 11433, 11435, 11442, 11445, 15542, 11452, 7356, 3267, 3269, 15558, 11462, 3275, 3278, 11471, 3280, 15569, 7388, 11485, 11489, 7393, 15592, 11496, 15598, 15602, 15605, 15610, 7419, 3325, 3333, 3344, 3351, 15642, 3356, 15657, 3372, 7471, 15668, 15669, 7476, 3386, 7483, 15679, 7489, 15682, 7490, 3397, 11589, 3398, 7496, 3401, 7501, 15693, 3410, 11605, 15704, 3423, 7526, 15721, 7535, 15728, 7542, 3448, 11641, 7547, 3455, 11661, 7567, 15761, 7572, 15773, 7584, 3489, 7591, 3495, 11691, 15789, 7598, 11695, 3505, 3507, 3508, 3511, 3512, 7609, 15799, 7611, 3513, 11710, 7614, 3524, 11718, 15815, 15818, 7630, 3536, 7634, 11732, 15833, 15836, 7648, 11748, 7653, 11753, 3562, 15852, 15857, 7669, 15863, 7673, 11770, 11774, 15874, 7692, 15888, 11797, 3605, 7702, 15893, 7707, 11807, 11809, 3624, 11820, 3632, 7729, 7730, 11826, 11828, 3637, 3644, 15932, 3647, 7750, 3656, 7758, 11854, 7765, 15957, 11864, 3673, 7771, 3679, 15967, 15970, 3684, 15976, 3693, 15981, 15983, 15987, 7804, 3716, 7813, 7814, 7812, 3720, 7817, 7820, 3724, 11921, 7826, 7827, 3733, 3735, 3736, 11931, 11934, 11938, 16036, 7847, 11953, 3761, 3764, 7863, 11969, 16066, 16069, 7881, 3790, 16081, 7896, 7899, 11996, 7904, 12008, 12016, 16116, 12020, 7928, 12028, 12030, 3842, 3843, 3845, 3848, 12043, 3852, 3854, 16144, 7953, 12050, 12054, 7959, 3868, 7969, 12070, 7977, 12076, 16175, 7984, 12082, 7986, 7990, 7992, 3910, 12104, 16203, 3916, 3917, 8012, 3925, 8028, 8031, 12132, 12136, 8040, 3945, 3953, 3954, 16243, 12148, 3957, 16246, 8055, 8059, 16255, 8065, 8066, 12167, 12168, 12173, 8077, 3986, 8092, 16286, 12192, 4001, 8096, 8100, 8102, 16296, 12211, 16318, 4039, 12240, 12241, 16340, 8149, 4054, 8152, 8153, 12249, 8154, 16351, 8160, 4064, 12257, 8163, 4071, 16359, 8169, 16362, 12271, 16368, 4083, 12277, 8183, 16380, 8190]
itemid2abs.json ADDED
The diff for this file is too large to render. See raw diff
 
itemnames.json ADDED
@@ -0,0 +1 @@
 
 
1
+ ["<http://dbpedia.org/resource/Hoffa_(film)>", "<http://dbpedia.org/resource/Goldfinger_(film)>", "<http://dbpedia.org/resource/Pacific_Rim_(film)>", "<http://dbpedia.org/resource/Addicted_(2014_film)>", "<http://dbpedia.org/resource/Family_Viewing>", "<http://dbpedia.org/resource/Whip_It_(film)>", "<http://dbpedia.org/resource/Silver_Linings_Playbook>", "<http://dbpedia.org/resource/The_Internship>", "<http://dbpedia.org/resource/Saving_Private_Ryan>", "<http://dbpedia.org/resource/Night_School_(2018_film)>", "<http://dbpedia.org/resource/Alien_Abduction_(2014_film)>", "<http://dbpedia.org/resource/One_Chance_(film)>", "<http://dbpedia.org/resource/Sweet_November_(2001_film)>", "<http://dbpedia.org/resource/Sir_(2018_film)>", "<http://dbpedia.org/resource/Mr._&_Mrs._Smith_(2005_film)>", "<http://dbpedia.org/resource/Neighbors_(2014_American_film)>", "<http://dbpedia.org/resource/The_Kitchen_(2019_film)>", "<http://dbpedia.org/resource/Ace_Ventura:_Pet_Detective>", "<http://dbpedia.org/resource/Marshall_(film)>", "<http://dbpedia.org/resource/I_Am_Legend_(film)>", "<http://dbpedia.org/resource/Ford_v_Ferrari>", "<http://dbpedia.org/resource/Texas_(1941_film)>", "<http://dbpedia.org/resource/Australia_(2008_film)>", "<http://dbpedia.org/resource/Jurassic_World_(film_score)>", "<http://dbpedia.org/resource/Le_Mans_(film)>", "<http://dbpedia.org/resource/West_(2007_film)>", "<http://dbpedia.org/resource/13_Going_on_30>", "<http://dbpedia.org/resource/The_Thing_(1982_film)>", "<http://dbpedia.org/resource/The_Truman_Show>", "<http://dbpedia.org/resource/The_Shawshank_Redemption>", "<http://dbpedia.org/resource/Harriet_(film)>", "<http://dbpedia.org/resource/Phantasm_(film)>", "<http://dbpedia.org/resource/The_Prestige_(film)>", "<http://dbpedia.org/resource/Amber_(singer)>", "<http://dbpedia.org/resource/School_of_Rock>", "<http://dbpedia.org/resource/The_Incredible_Hulk_(film)>", "<http://dbpedia.org/resource/Isn't_It_Romantic_(2019_film)>", "<http://dbpedia.org/resource/Tell_(2014_film)>", "<http://dbpedia.org/resource/Beauty_and_the_Beast_(2017_film)>", "<http://dbpedia.org/resource/Over_the_Hedge_(film)>", "<http://dbpedia.org/resource/The_Bone_Collector>", "<http://dbpedia.org/resource/Big_Business_(1988_film)>", "<http://dbpedia.org/resource/Captain_Marvel_(film)>", "<http://dbpedia.org/resource/Silent_Library_(TV_series)>", "<http://dbpedia.org/resource/Roll_Bounce>", "<http://dbpedia.org/resource/Captain_America:_Civil_War>", "<http://dbpedia.org/resource/Hahaha_(film)>", "<http://dbpedia.org/resource/Firefly_(film)>", "<http://dbpedia.org/resource/Today_(1930_film)>", "<http://dbpedia.org/resource/Bird_Box_(film)>", "<http://dbpedia.org/resource/High_Incident>", "<http://dbpedia.org/resource/Hulk_(film)>", "<http://dbpedia.org/resource/The_Imitation_Game>", "<http://dbpedia.org/resource/John_Wick:_Chapter_2>", "<http://dbpedia.org/resource/Signs_(2002_film)>", "<http://dbpedia.org/resource/In_the_Tall_Grass_(film)>", "<http://dbpedia.org/resource/Ice_Age_(2002_film)>", "<http://dbpedia.org/resource/Office_Space>", "<http://dbpedia.org/resource/Rings_(2017_film)>", "<http://dbpedia.org/resource/Knocked_Up>", "<http://dbpedia.org/resource/Hugo_(film)>", "<http://dbpedia.org/resource/The_Cleansing_Hour>", "<http://dbpedia.org/resource/The_Happy_Prince_(2018_film)>", "<http://dbpedia.org/resource/Vampires_(1998_film)>", "<http://dbpedia.org/resource/Apocalypto>", "<http://dbpedia.org/resource/Silence_(2016_film)>", "<http://dbpedia.org/resource/Finding_Dory>", "<http://dbpedia.org/resource/Earth_to_Echo>", "<http://dbpedia.org/resource/The_Prodigy_(film)>", "<http://dbpedia.org/resource/Life_Partners>", "<http://dbpedia.org/resource/October_(2018_film)>", "<http://dbpedia.org/resource/Jason_Bourne_(film)>", "<http://dbpedia.org/resource/Wonder_(film)>", "<http://dbpedia.org/resource/Dora_the_Explorer>", "<http://dbpedia.org/resource/World_War_Z_(film)>", "<http://dbpedia.org/resource/Bridge_of_Spies_(film)>", "<http://dbpedia.org/resource/Sorry_to_Bother_You>", "<http://dbpedia.org/resource/Emotional_Arithmetic>", "<http://dbpedia.org/resource/The_Wicker_Man_(2006_film)>", "<http://dbpedia.org/resource/The_Martian_(film)>", "<http://dbpedia.org/resource/Parker_(2013_film)>", "<http://dbpedia.org/resource/Locke_&_Key_(TV_series)>", "<http://dbpedia.org/resource/End_Game_(2018_film)>", "<http://dbpedia.org/resource/Jojo_Rabbit>", "<http://dbpedia.org/resource/Dunkirk_(2017_film)>", "<http://dbpedia.org/resource/Last_Christmas_(film)>", "<http://dbpedia.org/resource/Emma_(2020_film)>", "<http://dbpedia.org/resource/Jessica_(miniseries)>", "<http://dbpedia.org/resource/The_Princess_Bride_(film)>", "<http://dbpedia.org/resource/Rise_of_the_Guardians>", "<http://dbpedia.org/resource/Ocean's_8>", "<http://dbpedia.org/resource/Zombies_2>", "<http://dbpedia.org/resource/Gemini_Man_(film)>", "<http://dbpedia.org/resource/Lady_Bird_(film)>", "<http://dbpedia.org/resource/Grand_Theft_Auto_(film)>", "<http://dbpedia.org/resource/Singapore_(1947_film)>", "<http://dbpedia.org/resource/Michael_(1996_film)>", "<http://dbpedia.org/resource/A_Nightmare_on_Elm_Street_(2010_film)>", "<http://dbpedia.org/resource/The_Journey_(2017_film)>", "<http://dbpedia.org/resource/Rick_and_Morty_(season_1)>", "<http://dbpedia.org/resource/Geronimo_(1962_film)>", "<http://dbpedia.org/resource/Masterpiece_(2017_film)>", "<http://dbpedia.org/resource/Coming_to_America>", "<http://dbpedia.org/resource/Fallen_Angels_(1995_film)>", "<http://dbpedia.org/resource/The_Birth_of_a_Nation_(2016_film)>", "<http://dbpedia.org/resource/Ride_Along_(film)>", "<http://dbpedia.org/resource/Simon_Sez>", "<http://dbpedia.org/resource/Black_and_White_(1999_TV_film)>", "<http://dbpedia.org/resource/Close_(2019_film)>", "<http://dbpedia.org/resource/Gerald's_Game_(film)>", "<http://dbpedia.org/resource/Another_Evil>", "<http://dbpedia.org/resource/Fury_(2014_film)>", "<http://dbpedia.org/resource/Paws_(film)>", "<http://dbpedia.org/resource/Zoolander>", "<http://dbpedia.org/resource/The_Boss_Baby>", "<http://dbpedia.org/resource/Fight_Club>", "<http://dbpedia.org/resource/After_Earth>", "<http://dbpedia.org/resource/Tangled>", "<http://dbpedia.org/resource/Slasher_(2004_film)>", "<http://dbpedia.org/resource/The_Incredibles_(film_score)>", "<http://dbpedia.org/resource/The_Current_(song)>", "<http://dbpedia.org/resource/Friday_(1995_film)>", "<http://dbpedia.org/resource/The_Year_Without_a_Santa_Claus>", "<http://dbpedia.org/resource/12_Years_a_Slave_(film)>", "<http://dbpedia.org/resource/Hit_Man_(1972_film)>", "<http://dbpedia.org/resource/Guardians_of_the_Galaxy_Vol._2>", "<http://dbpedia.org/resource/Atonement_(2007_film)>", "<http://dbpedia.org/resource/Scary_Movie>", "<http://dbpedia.org/resource/Looking_for_Richard>", "<http://dbpedia.org/resource/The_Meyerowitz_Stories>", "<http://dbpedia.org/resource/Coco_(2017_film)>", "<http://dbpedia.org/resource/30_Days_of_Night_(film)>", "<http://dbpedia.org/resource/Isle_of_Dogs_(film)>", "<http://dbpedia.org/resource/Blue_Sky_(1994_film)>", "<http://dbpedia.org/resource/The_Hitman's_Bodyguard>", "<http://dbpedia.org/resource/Jumanji>", "<http://dbpedia.org/resource/Monty_Python's_Life_of_Brian>", "<http://dbpedia.org/resource/Jaws_(film)>", "<http://dbpedia.org/resource/Anchorman_(film_series)>", "<http://dbpedia.org/resource/Doctor_Sleep_(2019_film)>", "<http://dbpedia.org/resource/10_Things_I_Hate_About_You>", "<http://dbpedia.org/resource/Banning_(film)>", "<http://dbpedia.org/resource/Big_Hero_6_(film)>", "<http://dbpedia.org/resource/Touch_(July_Talk_album)>", "<http://dbpedia.org/resource/Sleepy_Hollow_(film)>", "<http://dbpedia.org/resource/Monster_(2003_film)>", "<http://dbpedia.org/resource/Supernatural_(film)>", "<http://dbpedia.org/resource/The_Walking_Dead_(season_1)>", "<http://dbpedia.org/resource/You_(season_2)>", "<http://dbpedia.org/resource/Wild_(2014_film)>", "<http://dbpedia.org/resource/Back_(TV_series)>", "<http://dbpedia.org/resource/Gravity_(2013_film)>", "<http://dbpedia.org/resource/Annabelle_Comes_Home>", "<http://dbpedia.org/resource/Logan_(film)>", "<http://dbpedia.org/resource/Gangs_of_New_York>", "<http://dbpedia.org/resource/The_Great_Gatsby_(2013_film)>", "<http://dbpedia.org/resource/Pi_(film)>", "<http://dbpedia.org/resource/Mirrors_(2008_film)>", "<http://dbpedia.org/resource/Mad_Max:_Fury_Road>", "<http://dbpedia.org/resource/Grown_Ups_(film)>", "<http://dbpedia.org/resource/Rocketman_(film)>", "<http://dbpedia.org/resource/Indiana_Jones_and_the_Temple_of_Doom>", "<http://dbpedia.org/resource/Gattaca>", "<http://dbpedia.org/resource/Little_(film)>", "<http://dbpedia.org/resource/You've_Got_Mail>", "<http://dbpedia.org/resource/Chicago_(2002_film)>", "<http://dbpedia.org/resource/Endgame_(2009_film)>", "<http://dbpedia.org/resource/The_Inventor:_Out_for_Blood_in_Silicon_Valley>", "<http://dbpedia.org/resource/Trainspotting_(film)>", "<http://dbpedia.org/resource/War_Story_(2014_film)>", "<http://dbpedia.org/resource/The_Turning_(2020_film)>", "<http://dbpedia.org/resource/Maid_in_Manhattan>", "<http://dbpedia.org/resource/Superhero_Movie>", "<http://dbpedia.org/resource/Blood_(2012_film)>", "<http://dbpedia.org/resource/Late_Night_(film)>", "<http://dbpedia.org/resource/Miss_Congeniality_(film)>", "<http://dbpedia.org/resource/Sparks_(film)>", "<http://dbpedia.org/resource/Tomorrow_(1972_film)>", "<http://dbpedia.org/resource/National_Lampoon's_Vacation>", "<http://dbpedia.org/resource/Seven_Pounds>", "<http://dbpedia.org/resource/The_Switch_(2010_film)>", "<http://dbpedia.org/resource/Spider_(2002_film)>", "<http://dbpedia.org/resource/Legacies_(TV_series)>", "<http://dbpedia.org/resource/See_(TV_series)>", "<http://dbpedia.org/resource/Tulsa_(film)>", "<http://dbpedia.org/resource/Judy_(film)>", "<http://dbpedia.org/resource/Moneyball_(film)>", "<http://dbpedia.org/resource/Angel_Has_Fallen>", "<http://dbpedia.org/resource/Hitchcock_(film)>", "<http://dbpedia.org/resource/The_Nightmare_Before_Christmas>", "<http://dbpedia.org/resource/Roman_(film)>", "<http://dbpedia.org/resource/13_Sins>", "<http://dbpedia.org/resource/The_Walker>", "<http://dbpedia.org/resource/Fantastic_Beasts_and_Where_to_Find_Them_(film)>", "<http://dbpedia.org/resource/Perhaps_Love_(2005_film)>", "<http://dbpedia.org/resource/Aguirre,_the_Wrath_of_God>", "<http://dbpedia.org/resource/In_Like_Flint>", "<http://dbpedia.org/resource/The_Good_Night>", "<http://dbpedia.org/resource/Network_(1976_film)>", "<http://dbpedia.org/resource/Dutch_(film)>", "<http://dbpedia.org/resource/Full_Metal_Jacket>", "<http://dbpedia.org/resource/Jumanji:_Welcome_to_the_Jungle>", "<http://dbpedia.org/resource/The_Office_(American_TV_series)>", "<http://dbpedia.org/resource/Frozen_(2013_film)>", "<http://dbpedia.org/resource/Long_Shot_(2019_film)>", "<http://dbpedia.org/resource/Little_Miss_Sunshine>", "<http://dbpedia.org/resource/Black_and_Blue_(2019_film)>", "<http://dbpedia.org/resource/Good_Morning,_Night>", "<http://dbpedia.org/resource/Cats_(2019_film)>", "<http://dbpedia.org/resource/Avatar_(2009_film)>", "<http://dbpedia.org/resource/Captain_America_(1990_film)>", "<http://dbpedia.org/resource/The_Twilight_Zone>", "<http://dbpedia.org/resource/The_Call_of_the_Wild_(2020_film)>", "<http://dbpedia.org/resource/Batman_(1989_film)>", "<http://dbpedia.org/resource/Escape_Room_(2019_film)>", "<http://dbpedia.org/resource/Men_in_Black_(1997_film)>", "<http://dbpedia.org/resource/Platoon_(film)>", "<http://dbpedia.org/resource/Oscar_(1991_film)>", "<http://dbpedia.org/resource/Gentleman's_Agreement>", "<http://dbpedia.org/resource/127_Hours>", "<http://dbpedia.org/resource/Burlesque_(2010_American_film)>", "<http://dbpedia.org/resource/The_Village_(2004_film)>", "<http://dbpedia.org/resource/First_Descent>", "<http://dbpedia.org/resource/Arnold_(film)>", "<http://dbpedia.org/resource/Giant_(1956_film)>", "<http://dbpedia.org/resource/The_Good_Place>", "<http://dbpedia.org/resource/Bhoot_(film)>", "<http://dbpedia.org/resource/Once_(film)>", "<http://dbpedia.org/resource/North_(1994_film)>", "<http://dbpedia.org/resource/Memphis_(film)>", "<http://dbpedia.org/resource/Wonder_Woman_(2017_film)>", "<http://dbpedia.org/resource/Moulin_Rouge_(1952_film)>", "<http://dbpedia.org/resource/Friends>", "<http://dbpedia.org/resource/I_Love_You_(2005_Croatian_film)>", "<http://dbpedia.org/resource/Kids_(film)>", "<http://dbpedia.org/resource/The_Boss_(2016_film)>", "<http://dbpedia.org/resource/Watchmen_(film)>", "<http://dbpedia.org/resource/The_Butler>", "<http://dbpedia.org/resource/Pirates_of_the_Caribbean:_The_Curse_of_the_Black_Pearl>", "<http://dbpedia.org/resource/Die_Hard>", "<http://dbpedia.org/resource/Dr._Dolittle:_Million_Dollar_Mutts>", "<http://dbpedia.org/resource/The_Festival_(film)>", "<http://dbpedia.org/resource/Drive_(2011_film)>", "<http://dbpedia.org/resource/Supernatural_Activity>", "<http://dbpedia.org/resource/Get_Out>", "<http://dbpedia.org/resource/Camp_(2003_film)>", "<http://dbpedia.org/resource/Ad_Astra_(film)>", "<http://dbpedia.org/resource/American_Sniper>", "<http://dbpedia.org/resource/Sleepy_Hollow_(TV_series)>", "<http://dbpedia.org/resource/The_Poughkeepsie_Tapes>", "<http://dbpedia.org/resource/Underworld_(2003_film)>", "<http://dbpedia.org/resource/Frozen_II>", "<http://dbpedia.org/resource/The_Conjuring>", "<http://dbpedia.org/resource/Blair_Witch_(film)>", "<http://dbpedia.org/resource/Finding_Nemo>", "<http://dbpedia.org/resource/Nightcrawler_(film)>", "<http://dbpedia.org/resource/Onward_(film)>", "<http://dbpedia.org/resource/Panther_(film)>", "<http://dbpedia.org/resource/The_One_(2001_film)>", "<http://dbpedia.org/resource/Avenger_(film)>", "<http://dbpedia.org/resource/Dixie_(film)>", "<http://dbpedia.org/resource/Rick_(film)>", "<http://dbpedia.org/resource/Final_Destination_(film)>", "<http://dbpedia.org/resource/The_Lovebirds_(2020_film)>", "<http://dbpedia.org/resource/The_Lion_King_(2019_film)>", "<http://dbpedia.org/resource/Power_(1986_film)>", "<http://dbpedia.org/resource/Ready_Player_One_(film)>", "<http://dbpedia.org/resource/Ferris_Bueller's_Day_Off>", "<http://dbpedia.org/resource/Blended_(film)>", "<http://dbpedia.org/resource/2_Hours_Love>", "<http://dbpedia.org/resource/American_Gangster_(film)>", "<http://dbpedia.org/resource/Super_(2010_American_film)>", "<http://dbpedia.org/resource/Silent_Night_(2012_film)>", "<http://dbpedia.org/resource/I_Am_Bruce_Lee>", "<http://dbpedia.org/resource/Star_Trek_Into_Darkness>", "<http://dbpedia.org/resource/Ghostbusters_(2016_film)>", "<http://dbpedia.org/resource/Copycat_(film)>", "<http://dbpedia.org/resource/Paranoid_(TV_series)>", "<http://dbpedia.org/resource/Rear_Window>", "<http://dbpedia.org/resource/Goodfellas>", "<http://dbpedia.org/resource/Tell_Me_Who_I_Am>", "<http://dbpedia.org/resource/Wilby_Wonderful>", "<http://dbpedia.org/resource/The_Dark_Knight_Rises>", "<http://dbpedia.org/resource/Times_Square_(1980_film)>", "<http://dbpedia.org/resource/Adam_(2009_film)>", "<http://dbpedia.org/resource/I_Smile_Back>", "<http://dbpedia.org/resource/Iron_Man_2>", "<http://dbpedia.org/resource/Emma_(1996_TV_film)>", "<http://dbpedia.org/resource/The_Hunger_Games_(film)>", "<http://dbpedia.org/resource/Moulin_Rouge!>", "<http://dbpedia.org/resource/Superstar_(1999_film)>", "<http://dbpedia.org/resource/The_Curious_Case_of_Benjamin_Button_(film)>", "<http://dbpedia.org/resource/Spaceballs>", "<http://dbpedia.org/resource/American_Hustle>", "<http://dbpedia.org/resource/Kiss_Kiss_Bang_Bang>", "<http://dbpedia.org/resource/Impractical_Jokers>", "<http://dbpedia.org/resource/Everything_(film)>", "<http://dbpedia.org/resource/We're_the_Millers>", "<http://dbpedia.org/resource/Miracle_on_34th_Street>", "<http://dbpedia.org/resource/Prom_(film)>", "<http://dbpedia.org/resource/Giant_Little_Ones>", "<http://dbpedia.org/resource/Hotel_Transylvania_(film)>", "<http://dbpedia.org/resource/21_Jump_Street_(film)>", "<http://dbpedia.org/resource/Panic_Room>", "<http://dbpedia.org/resource/Simba_(1955_film)>", "<http://dbpedia.org/resource/Ghostbusters>", "<http://dbpedia.org/resource/Lucy_(2014_film)>", "<http://dbpedia.org/resource/Iron_Man_(2008_film)>", "<http://dbpedia.org/resource/Max_Steel_(film)>", "<http://dbpedia.org/resource/Breakthrough_(2019_film)>", "<http://dbpedia.org/resource/Children_of_Men>", "<http://dbpedia.org/resource/X-Men_(film)>", "<http://dbpedia.org/resource/Scrooged>", "<http://dbpedia.org/resource/Monday_(2000_film)>", "<http://dbpedia.org/resource/Fatal_Attraction>", "<http://dbpedia.org/resource/Emperor_(2020_film)>", "<http://dbpedia.org/resource/Crown_for_Christmas>", "<http://dbpedia.org/resource/Scary_Stories_to_Tell_in_the_Dark_(film)>", "<http://dbpedia.org/resource/Gone_Girl_(film)>", "<http://dbpedia.org/resource/The_Purge_(2013_film)>", "<http://dbpedia.org/resource/Jurassic_Park_(film)>", "<http://dbpedia.org/resource/Marriage_Story>", "<http://dbpedia.org/resource/Escape_to_Witch_Mountain_(1975_film)>", "<http://dbpedia.org/resource/Inside_Amy_Schumer>", "<http://dbpedia.org/resource/Dog_Days_(2018_film)>", "<http://dbpedia.org/resource/Hoop_Dreams>", "<http://dbpedia.org/resource/Incredibles_2>", "<http://dbpedia.org/resource/Wine_Country_(film)>", "<http://dbpedia.org/resource/Taken_2>", "<http://dbpedia.org/resource/It_Comes_at_Night>", "<http://dbpedia.org/resource/Under_the_Skin_(2013_film)>", "<http://dbpedia.org/resource/Rogue_One>", "<http://dbpedia.org/resource/The_Fast_and_the_Furious_(2001_film)>", "<http://dbpedia.org/resource/The_Sixth_Sense>", "<http://dbpedia.org/resource/Truth_or_Dare_(2018_film)>", "<http://dbpedia.org/resource/27_Dresses>", "<http://dbpedia.org/resource/Troop_Zero>", "<http://dbpedia.org/resource/The_Highwaymen_(film)>", "<http://dbpedia.org/resource/Psycho_(1960_film)>", "<http://dbpedia.org/resource/The_Silence_(2019_film)>", "<http://dbpedia.org/resource/Talladega_Nights:_The_Ballad_of_Ricky_Bobby>", "<http://dbpedia.org/resource/How_to_Train_Your_Dragon_2>", "<http://dbpedia.org/resource/Anger_Management_(film)>", "<http://dbpedia.org/resource/Somewhere_(film)>", "<http://dbpedia.org/resource/May_(film)>", "<http://dbpedia.org/resource/Black_Widow_(1987_film)>", "<http://dbpedia.org/resource/Amadeus_(film)>", "<http://dbpedia.org/resource/Bad_Boys_(1995_film)>", "<http://dbpedia.org/resource/The_Man_(2005_film)>", "<http://dbpedia.org/resource/Shaun_of_the_Dead>", "<http://dbpedia.org/resource/The_Hustle_(film)>", "<http://dbpedia.org/resource/The_Wedding_Ringer>", "<http://dbpedia.org/resource/Despicable_Me_2>", "<http://dbpedia.org/resource/Step_(film)>", "<http://dbpedia.org/resource/The_Green_(film)>", "<http://dbpedia.org/resource/Donnie_Darko>", "<http://dbpedia.org/resource/Homecoming_(2009_film)>", "<http://dbpedia.org/resource/Extremely_Dangerous>", "<http://dbpedia.org/resource/Inside_Out_(2015_film)>", "<http://dbpedia.org/resource/Spider-Man_(2002_film)>", "<http://dbpedia.org/resource/The_Nun_(2018_film)>", "<http://dbpedia.org/resource/Mine_(2016_film)>", "<http://dbpedia.org/resource/Cinderella_(2015_Disney_film)>", "<http://dbpedia.org/resource/The_Grand_Budapest_Hotel>", "<http://dbpedia.org/resource/Mr._Popper's_Penguins_(film)>", "<http://dbpedia.org/resource/Mary_(2019_film)>", "<http://dbpedia.org/resource/Bruce_Almighty>", "<http://dbpedia.org/resource/Mirror_Mirror_(film)>", "<http://dbpedia.org/resource/The_Mist_(film)>", "<http://dbpedia.org/resource/Must_Love_Dogs>", "<http://dbpedia.org/resource/A_Family_Man>", "<http://dbpedia.org/resource/Shaft_(2019_film)>", "<http://dbpedia.org/resource/Chuck_(Chuck_Berry_album)>", "<http://dbpedia.org/resource/Mortal_Engines_(film)>", "<http://dbpedia.org/resource/Hellraiser>", "<http://dbpedia.org/resource/Excellent_Cadavers_(film)>", "<http://dbpedia.org/resource/River_(Bishop_Briggs_song)>", "<http://dbpedia.org/resource/Changeling_(film)>", "<http://dbpedia.org/resource/Robin_Hood:_Men_in_Tights>", "<http://dbpedia.org/resource/Black_Christmas_(2019_film)>", "<http://dbpedia.org/resource/Highly_Dangerous>", "<http://dbpedia.org/resource/Crazy_Rich_Asians_(film)>", "<http://dbpedia.org/resource/How_to_Train_Your_Dragon:_The_Hidden_World>", "<http://dbpedia.org/resource/The_Age_of_Shadows>", "<http://dbpedia.org/resource/The_Bourne_Legacy_(film)>", "<http://dbpedia.org/resource/Gracie's_Choice>", "<http://dbpedia.org/resource/The_Dark_Knight_(film)>", "<http://dbpedia.org/resource/The_Show_(2017_film)>", "<http://dbpedia.org/resource/Popcorn_(1991_film)>", "<http://dbpedia.org/resource/Rosewood_(film)>", "<http://dbpedia.org/resource/Mamma_Mia!_(film)>", "<http://dbpedia.org/resource/Zombeavers>", "<http://dbpedia.org/resource/Gretel_&_Hansel>", "<http://dbpedia.org/resource/Thinner_(film)>", "<http://dbpedia.org/resource/The_Longest_Day_(film)>", "<http://dbpedia.org/resource/Central_Intelligence>", "<http://dbpedia.org/resource/Rated_X_(film)>", "<http://dbpedia.org/resource/Overboard_(1987_film)>", "<http://dbpedia.org/resource/Wonder_Women_(film)>", "<http://dbpedia.org/resource/Bird_(1988_film)>", "<http://dbpedia.org/resource/Passengers_(2016_film)>", "<http://dbpedia.org/resource/Detective_Story_(1951_film)>", "<http://dbpedia.org/resource/Checking_Out_(2005_film)>", "<http://dbpedia.org/resource/Monty_Python_and_the_Holy_Grail>", "<http://dbpedia.org/resource/Weird_Science_(film)>", "<http://dbpedia.org/resource/Stranger_Things>", "<http://dbpedia.org/resource/The_Thin_Blue_Line_(1988_film)>", "<http://dbpedia.org/resource/Venom_(2018_film)>", "<http://dbpedia.org/resource/Black_Swan_(film)>", "<http://dbpedia.org/resource/Historical_Roasts>", "<http://dbpedia.org/resource/The_Expendables_(2010_film)>", "<http://dbpedia.org/resource/Superman_(1978_film)>", "<http://dbpedia.org/resource/A_Fall_from_Grace>", "<http://dbpedia.org/resource/Hero_(1992_film)>", "<http://dbpedia.org/resource/Hanna_(film)>", "<http://dbpedia.org/resource/Just_Friends>", "<http://dbpedia.org/resource/King_Kong_(2005_film)>", "<http://dbpedia.org/resource/Paul_(film)>", "<http://dbpedia.org/resource/Scream_(1996_film)>", "<http://dbpedia.org/resource/Remember_(2015_film)>", "<http://dbpedia.org/resource/The_Blind_Side_(film)>", "<http://dbpedia.org/resource/Victorian_Farm>", "<http://dbpedia.org/resource/Caddyshack>", "<http://dbpedia.org/resource/Super_Troopers_2>", "<http://dbpedia.org/resource/Mr._Right_(2015_film)>", "<http://dbpedia.org/resource/Dora_and_the_Lost_City_of_Gold>", "<http://dbpedia.org/resource/The_Descent>", "<http://dbpedia.org/resource/Death_Wish_(2018_film)>", "<http://dbpedia.org/resource/Enemy_(2013_film)>", "<http://dbpedia.org/resource/Queen_of_the_Damned>", "<http://dbpedia.org/resource/Avengers:_Endgame>", "<http://dbpedia.org/resource/Robots_(2005_film)>", "<http://dbpedia.org/resource/The_Originals_(TV_series)>", "<http://dbpedia.org/resource/Murder_Mystery_(film)>", "<http://dbpedia.org/resource/Daddy's_Home_(film)>", "<http://dbpedia.org/resource/John_Adams_(miniseries)>", "<http://dbpedia.org/resource/The_Scarlet_Pimpernel_(1982_film)>", "<http://dbpedia.org/resource/Riddick_(film)>", "<http://dbpedia.org/resource/The_Two_Popes>", "<http://dbpedia.org/resource/Silent_Hill_(film)>", "<http://dbpedia.org/resource/The_Monuments_Men>", "<http://dbpedia.org/resource/Big_Brother_(Belgian_TV_series)>", "<http://dbpedia.org/resource/Queen_&_Slim>", "<http://dbpedia.org/resource/Horror_Island>", "<http://dbpedia.org/resource/One_Flew_Over_the_Cuckoo's_Nest_(film)>", "<http://dbpedia.org/resource/The_Operative_(film)>", "<http://dbpedia.org/resource/The_Man_from_Nowhere_(2010_film)>", "<http://dbpedia.org/resource/Stuber_(film)>", "<http://dbpedia.org/resource/These_Girls>", "<http://dbpedia.org/resource/Adventure_Time_(season_1)>", "<http://dbpedia.org/resource/Kicking_and_Screaming_(1995_film)>", "<http://dbpedia.org/resource/Safe_(2012_film)>", "<http://dbpedia.org/resource/Domino_(2005_film)>", "<http://dbpedia.org/resource/Airplane!>", "<http://dbpedia.org/resource/Wichita_(1955_film)>", "<http://dbpedia.org/resource/The_English_Teacher_(film)>", "<http://dbpedia.org/resource/Raising_Arizona>", "<http://dbpedia.org/resource/Hairspray_(2007_film)>", "<http://dbpedia.org/resource/Early_Man_(film)>", "<http://dbpedia.org/resource/Manhattan_Night>", "<http://dbpedia.org/resource/Get_Hard>", "<http://dbpedia.org/resource/Avengers:_Infinity_War>", "<http://dbpedia.org/resource/Remember_the_Titans>", "<http://dbpedia.org/resource/Ma_(film)>", "<http://dbpedia.org/resource/Brightburn>", "<http://dbpedia.org/resource/In_Darkness_(2018_film)>", "<http://dbpedia.org/resource/Manson_(film)>", "<http://dbpedia.org/resource/Zombieland:_Double_Tap>", "<http://dbpedia.org/resource/The_Wedding_Date>", "<http://dbpedia.org/resource/The_International_(2009_film)>", "<http://dbpedia.org/resource/What_Lies_Beneath_(The_Vampire_Diaries)>", "<http://dbpedia.org/resource/Hancock_(film)>", "<http://dbpedia.org/resource/Notting_Hill_(film)>", "<http://dbpedia.org/resource/Love,_Simon>", "<http://dbpedia.org/resource/Valerian_and_the_City_of_a_Thousand_Planets>", "<http://dbpedia.org/resource/Three_Days_(2001_film)>", "<http://dbpedia.org/resource/The_Watch_(2012_film)>", "<http://dbpedia.org/resource/Glass_(2019_film)>", "<http://dbpedia.org/resource/My_Spy>", "<http://dbpedia.org/resource/Gossip_Girl>", "<http://dbpedia.org/resource/Cars_(film)>", "<http://dbpedia.org/resource/Lethal_Weapon>", "<http://dbpedia.org/resource/Unbreakable_(film)>", "<http://dbpedia.org/resource/Scarface_(1983_film)>", "<http://dbpedia.org/resource/Gargoyles_(TV_series)>", "<http://dbpedia.org/resource/A_Star_Is_Born_(2018_film)>", "<http://dbpedia.org/resource/The_Intern_(2015_film)>", "<http://dbpedia.org/resource/Alita:_Battle_Angel>", "<http://dbpedia.org/resource/Bloodshot_(film)>", "<http://dbpedia.org/resource/The_Fifth_Element>", "<http://dbpedia.org/resource/Lady_and_the_Tramp_(2019_film)>", "<http://dbpedia.org/resource/September_(1987_film)>", "<http://dbpedia.org/resource/The_Raid_2>", "<http://dbpedia.org/resource/Harley_Quinn_(TV_series)>", "<http://dbpedia.org/resource/Jigsaw_(2017_film)>", "<http://dbpedia.org/resource/Working_Girl>", "<http://dbpedia.org/resource/Take_Care_(film)>", "<http://dbpedia.org/resource/Kingsman:_The_Secret_Service>", "<http://dbpedia.org/resource/Romancing_the_Stone>", "<http://dbpedia.org/resource/Honeymoon_(2014_film)>", "<http://dbpedia.org/resource/Quantum_of_Solace>", "<http://dbpedia.org/resource/Truth_(2015_film)>", "<http://dbpedia.org/resource/Thank_You_for_Your_Service_(2017_film)>", "<http://dbpedia.org/resource/The_Age_of_Adaline>", "<http://dbpedia.org/resource/Suicide_Squad_(film)>", "<http://dbpedia.org/resource/Dolemite_Is_My_Name>", "<http://dbpedia.org/resource/Ender's_Game_(film)>", "<http://dbpedia.org/resource/Split_(2016_American_film)>", "<http://dbpedia.org/resource/Happy_Gilmore>", "<http://dbpedia.org/resource/Happy_Feet>", "<http://dbpedia.org/resource/Captain_Phillips_(film)>", "<http://dbpedia.org/resource/Happy_Days>", "<http://dbpedia.org/resource/Action_Point>", "<http://dbpedia.org/resource/The_Matrix>", "<http://dbpedia.org/resource/Bonnie_and_Clyde_(film)>", "<http://dbpedia.org/resource/Primer_(film)>", "<http://dbpedia.org/resource/Sonic_the_Hedgehog_(film)>", "<http://dbpedia.org/resource/50_First_Dates>", "<http://dbpedia.org/resource/Dragon_(2011_film)>", "<http://dbpedia.org/resource/3_from_Hell>", "<http://dbpedia.org/resource/Your_Highness>", "<http://dbpedia.org/resource/Antebellum_(film)>", "<http://dbpedia.org/resource/Lost_in_Space_(2018_TV_series)>", "<http://dbpedia.org/resource/Eddie_(film)>", "<http://dbpedia.org/resource/Winter_Soldier_(film)>", "<http://dbpedia.org/resource/The_Dark_Crystal>", "<http://dbpedia.org/resource/Rambo_III>", "<http://dbpedia.org/resource/Star_Wars:_The_Last_Jedi>", "<http://dbpedia.org/resource/Enter_the_Void>", "<http://dbpedia.org/resource/Always_(1989_film)>", "<http://dbpedia.org/resource/Quarantine_L.A.>", "<http://dbpedia.org/resource/Everyone_(film)>", "<http://dbpedia.org/resource/Lopez_Tonight>", "<http://dbpedia.org/resource/Resident_Evil_(film)>", "<http://dbpedia.org/resource/Up_(2009_film)>", "<http://dbpedia.org/resource/The_Night_Before_(2015_film)>", "<http://dbpedia.org/resource/Bedtime_Stories_(film)>", "<http://dbpedia.org/resource/Few_Options>", "<http://dbpedia.org/resource/The_General_(1926_film)>", "<http://dbpedia.org/resource/Gun_Crazy>", "<http://dbpedia.org/resource/The_Breakfast_Club>", "<http://dbpedia.org/resource/The_Intruder_(2019_film)>", "<http://dbpedia.org/resource/Predator_(film)>", "<http://dbpedia.org/resource/Anon_(film)>", "<http://dbpedia.org/resource/London_Has_Fallen>", "<http://dbpedia.org/resource/San_Andreas_(film)>", "<http://dbpedia.org/resource/The_Witch_(2015_film)>", "<http://dbpedia.org/resource/Tinker_Tailor_Soldier_Spy_(film)>", "<http://dbpedia.org/resource/Ralph_Breaks_the_Internet>", "<http://dbpedia.org/resource/Danny_(2019_film)>", "<http://dbpedia.org/resource/Letters_from_Iwo_Jima>", "<http://dbpedia.org/resource/Hustle_&_Flow>", "<http://dbpedia.org/resource/The_Green_Mile_(film)>", "<http://dbpedia.org/resource/Rampage_(2018_film)>", "<http://dbpedia.org/resource/The_Equalizer_(film)>", "<http://dbpedia.org/resource/Lucas_(film)>", "<http://dbpedia.org/resource/Annie_(2014_film)>", "<http://dbpedia.org/resource/Law_Abiding_Citizen>", "<http://dbpedia.org/resource/The_Mirror_Crack'd>", "<http://dbpedia.org/resource/Snatch_(film)>", "<http://dbpedia.org/resource/The_Man_from_U.N.C.L.E._(film)>", "<http://dbpedia.org/resource/The_Lamb_(1915_film)>", "<http://dbpedia.org/resource/Les_Norton_(TV_series)>", "<http://dbpedia.org/resource/The_Wizard_(1989_film)>", "<http://dbpedia.org/resource/Two_Night_Stand>", "<http://dbpedia.org/resource/Star_Wars:_The_Rise_of_Skywalker>", "<http://dbpedia.org/resource/Rosemary's_Baby_(film)>", "<http://dbpedia.org/resource/Link_(film)>", "<http://dbpedia.org/resource/The_Universe_(TV_series)>", "<http://dbpedia.org/resource/Tropic_Thunder>", "<http://dbpedia.org/resource/Wilson_(2017_film)>", "<http://dbpedia.org/resource/Adult_Life_Skills>", "<http://dbpedia.org/resource/Ghost_Rider_(2007_film)>", "<http://dbpedia.org/resource/Thor:_Ragnarok>", "<http://dbpedia.org/resource/Apache_(film)>", "<http://dbpedia.org/resource/Hereditary_(film)>", "<http://dbpedia.org/resource/Aliens_(film)>", "<http://dbpedia.org/resource/Cold_Pursuit>", "<http://dbpedia.org/resource/Little_Nikita>", "<http://dbpedia.org/resource/Good_Will_Hunting>", "<http://dbpedia.org/resource/Happy_Together_(1997_film)>", "<http://dbpedia.org/resource/Galaxy_Quest>", "<http://dbpedia.org/resource/Cursed_(2005_film)>", "<http://dbpedia.org/resource/Carol_(film)>", "<http://dbpedia.org/resource/Police_Academy_(film)>", "<http://dbpedia.org/resource/White_Snake_(film)>", "<http://dbpedia.org/resource/How_the_Grinch_Stole_Christmas!_(TV_special)>", "<http://dbpedia.org/resource/Medium_Cool>", "<http://dbpedia.org/resource/Snowden_(film)>", "<http://dbpedia.org/resource/Terminator_(character_concept)>", "<http://dbpedia.org/resource/Sharknado_5:_Global_Swarming>", "<http://dbpedia.org/resource/The_Family_(2013_film)>", "<http://dbpedia.org/resource/The_Farewell_(2019_film)>", "<http://dbpedia.org/resource/Spotlight_(film)>", "<http://dbpedia.org/resource/Back_to_the_Future>", "<http://dbpedia.org/resource/Identity_(2003_film)>", "<http://dbpedia.org/resource/Get_Smart_(film)>", "<http://dbpedia.org/resource/Pretty_Woman>", "<http://dbpedia.org/resource/Malibu's_Most_Wanted>", "<http://dbpedia.org/resource/Live_and_Let_Die_(film)>", "<http://dbpedia.org/resource/The_Gift_(2015_American_film)>", "<http://dbpedia.org/resource/The_Orphanage_(2007_film)>", "<http://dbpedia.org/resource/The_Photograph_(2020_film)>", "<http://dbpedia.org/resource/Baby_(2015_Hindi_film)>", "<http://dbpedia.org/resource/Red_Sparrow>", "<http://dbpedia.org/resource/The_Little_Mermaid_(1989_film)>", "<http://dbpedia.org/resource/The_Wedding_Planner>", "<http://dbpedia.org/resource/Mr._Bean>", "<http://dbpedia.org/resource/Lady_and_the_Tramp>", "<http://dbpedia.org/resource/The_Incredible_Burt_Wonderstone>", "<http://dbpedia.org/resource/Ant-Man_(film)>", "<http://dbpedia.org/resource/Anna_(2019_feature_film)>", "<http://dbpedia.org/resource/Untamed_Heart>", "<http://dbpedia.org/resource/Weiner_(film)>", "<http://dbpedia.org/resource/Looper_(film)>", "<http://dbpedia.org/resource/Rushmore_(film)>", "<http://dbpedia.org/resource/Little_Women_(2019_film)>", "<http://dbpedia.org/resource/Nature_Calls>", "<http://dbpedia.org/resource/Deadpool_(film)>", "<http://dbpedia.org/resource/Found_(film)>", "<http://dbpedia.org/resource/Frankenstein_(1931_film)>", "<http://dbpedia.org/resource/The_Good_Liar>", "<http://dbpedia.org/resource/It_(miniseries)>", "<http://dbpedia.org/resource/Ted_(film)>", "<http://dbpedia.org/resource/Doctor_Who_(series_1)>", "<http://dbpedia.org/resource/My_Best_Friend's_Wedding>", "<http://dbpedia.org/resource/The_Lovely_Bones_(film)>", "<http://dbpedia.org/resource/Rush_Hour_(1998_film)>", "<http://dbpedia.org/resource/The_Rainbow_(1989_film)>", "<http://dbpedia.org/resource/The_Waterboy>", "<http://dbpedia.org/resource/Tommy_Boy>", "<http://dbpedia.org/resource/Shoot_(film)>", "<http://dbpedia.org/resource/Santa_Claus_(1959_film)>", "<http://dbpedia.org/resource/Juno_(film)>", "<http://dbpedia.org/resource/Midnight_Cowboy>", "<http://dbpedia.org/resource/Hot_Fuzz>", "<http://dbpedia.org/resource/Most_Wanted_(1997_film)>", "<http://dbpedia.org/resource/Nicholas_Nickleby_(2002_film)>", "<http://dbpedia.org/resource/The_Happytime_Murders>", "<http://dbpedia.org/resource/The_Hallow>", "<http://dbpedia.org/resource/31_(film)>", "<http://dbpedia.org/resource/Pirates_of_the_Caribbean:_Dead_Men_Tell_No_Tales>", "<http://dbpedia.org/resource/Rogue_One:_A_Star_Wars_Story_(novel)>", "<http://dbpedia.org/resource/Playing_with_Fire_(2019_film)>", "<http://dbpedia.org/resource/The_Comedy_(film)>", "<http://dbpedia.org/resource/Faking_It_(American_TV_series)>", "<http://dbpedia.org/resource/Highlander_(film)>", "<http://dbpedia.org/resource/Alive_(1993_film)>", "<http://dbpedia.org/resource/Gothika>", "<http://dbpedia.org/resource/The_Shadow_(1994_film)>", "<http://dbpedia.org/resource/Whiplash_(2014_film)>", "<http://dbpedia.org/resource/Girls_Trip>", "<http://dbpedia.org/resource/Skyscraper_(2018_film)>", "<http://dbpedia.org/resource/True_Story_(film)>", "<http://dbpedia.org/resource/Serial_Mom>", "<http://dbpedia.org/resource/Creative_Control_(film)>", "<http://dbpedia.org/resource/Showtime_(film)>", "<http://dbpedia.org/resource/A_Beautiful_Mind_(film)>", "<http://dbpedia.org/resource/Tall_Girl>", "<http://dbpedia.org/resource/Graceland_(film)>", "<http://dbpedia.org/resource/Mulan_(2020_film)>", "<http://dbpedia.org/resource/Maleficent_(film)>", "<http://dbpedia.org/resource/The_Stranger_(1946_film)>", "<http://dbpedia.org/resource/Far_and_Away>", "<http://dbpedia.org/resource/Back_to_the_Future_Part_II>", "<http://dbpedia.org/resource/The_King_(2019_film)>", "<http://dbpedia.org/resource/Dark_(TV_series)>", "<http://dbpedia.org/resource/Insidious:_The_Last_Key>", "<http://dbpedia.org/resource/LOL_(2012_film)>", "<http://dbpedia.org/resource/Mission:_Impossible_(film)>", "<http://dbpedia.org/resource/The_Quiet>", "<http://dbpedia.org/resource/Diary_of_the_Dead>", "<http://dbpedia.org/resource/Genesis_(2018_Canadian_film)>", "<http://dbpedia.org/resource/Frank_(film)>", "<http://dbpedia.org/resource/Labyrinth_(1986_film)>", "<http://dbpedia.org/resource/The_Lord_of_the_Rings_(1978_film)>", "<http://dbpedia.org/resource/Dark_Days_(film)>", "<http://dbpedia.org/resource/Uncut_Gems>", "<http://dbpedia.org/resource/Underwater_(film)>", "<http://dbpedia.org/resource/The_Notebook>", "<http://dbpedia.org/resource/The_Lodge_(film)>", "<http://dbpedia.org/resource/The_Aftermath_(2019_film)>", "<http://dbpedia.org/resource/The_Conjuring_2>", "<http://dbpedia.org/resource/Morgan_(2016_film)>", "<http://dbpedia.org/resource/I,_Robot_(film)>", "<http://dbpedia.org/resource/Being_John_Malkovich>", "<http://dbpedia.org/resource/Prefontaine_(film)>", "<http://dbpedia.org/resource/Pandemic_(film)>", "<http://dbpedia.org/resource/Judgement_Day_(1988_film)>", "<http://dbpedia.org/resource/Jack_the_Giant_Slayer>", "<http://dbpedia.org/resource/Pan's_Labyrinth>", "<http://dbpedia.org/resource/The_Case_for_Christ>", "<http://dbpedia.org/resource/Midway_(2019_film)>", "<http://dbpedia.org/resource/Fifty_Shades_of_Grey_(film)>", "<http://dbpedia.org/resource/Dogs_(2016_film)>", "<http://dbpedia.org/resource/Special_(film)>", "<http://dbpedia.org/resource/The_Spy_Who_Dumped_Me>", "<http://dbpedia.org/resource/The_Lego_Batman_Movie>", "<http://dbpedia.org/resource/Life_(2017_film)>", "<http://dbpedia.org/resource/Halloween_(2018_film)>", "<http://dbpedia.org/resource/A_Beautiful_Day_in_the_Neighborhood>", "<http://dbpedia.org/resource/Blade_Runner_(franchise)>", "<http://dbpedia.org/resource/The_Boy_(2016_film)>", "<http://dbpedia.org/resource/Guilty_by_Suspicion>", "<http://dbpedia.org/resource/Bad_Moms>", "<http://dbpedia.org/resource/South_Park_(season_1)>", "<http://dbpedia.org/resource/The_Force_(2017_film)>", "<http://dbpedia.org/resource/Serenity_(2019_film)>", "<http://dbpedia.org/resource/Bumblebee_(film)>", "<http://dbpedia.org/resource/The_Spiderwick_Chronicles_(film)>", "<http://dbpedia.org/resource/Instant_Family>", "<http://dbpedia.org/resource/Surviving_Christmas>", "<http://dbpedia.org/resource/Castaway_(film)>", "<http://dbpedia.org/resource/La_La_Land>", "<http://dbpedia.org/resource/Breaking_Bad>", "<http://dbpedia.org/resource/Holmes_&_Watson>", "<http://dbpedia.org/resource/Clue_(film)>", "<http://dbpedia.org/resource/The_Lobster>", "<http://dbpedia.org/resource/Minions_(film)>", "<http://dbpedia.org/resource/Clay_Pigeons>", "<http://dbpedia.org/resource/Fantastic_Mr._Fox_(film)>", "<http://dbpedia.org/resource/August_(2008_film)>", "<http://dbpedia.org/resource/Armed_Response_(2017_film)>", "<http://dbpedia.org/resource/Pearl_Harbor_(film)>", "<http://dbpedia.org/resource/The_Hangover_Part_III>", "<http://dbpedia.org/resource/My_Sister's_Keeper_(film)>", "<http://dbpedia.org/resource/End_Game_(2006_film)>", "<http://dbpedia.org/resource/Source_Code>", "<http://dbpedia.org/resource/Red_Dragon_(2002_film)>", "<http://dbpedia.org/resource/Dream_House_(2011_film)>", "<http://dbpedia.org/resource/Twice_Born>", "<http://dbpedia.org/resource/The_Uninvited_(2009_film)>", "<http://dbpedia.org/resource/Philadelphia_(film)>", "<http://dbpedia.org/resource/A_Private_War>", "<http://dbpedia.org/resource/Cloverfield>", "<http://dbpedia.org/resource/6_Underground_(film)>", "<http://dbpedia.org/resource/The_Walk_(2015_film)>", "<http://dbpedia.org/resource/Money_Train>", "<http://dbpedia.org/resource/Come_Outside>", "<http://dbpedia.org/resource/GirlsAward_2015_Autumn/Winter>", "<http://dbpedia.org/resource/Return_from_Witch_Mountain>", "<http://dbpedia.org/resource/South_Park:_Bigger,_Longer_&_Uncut>", "<http://dbpedia.org/resource/Toy_Story_(franchise)>", "<http://dbpedia.org/resource/Martian_Child>", "<http://dbpedia.org/resource/Good_Morning,_Vietnam>", "<http://dbpedia.org/resource/Snow_Queen_(2002_film)>", "<http://dbpedia.org/resource/Zodiac_(film)>", "<http://dbpedia.org/resource/Another_Life_(2019_TV_series)>", "<http://dbpedia.org/resource/Guardians_of_the_Galaxy_(film)>", "<http://dbpedia.org/resource/Prime_(film)>", "<http://dbpedia.org/resource/Pitch_Perfect>", "<http://dbpedia.org/resource/Tokyo_Drifter>", "<http://dbpedia.org/resource/Admiral_(gambling)>", "<http://dbpedia.org/resource/It_Chapter_Two>", "<http://dbpedia.org/resource/Younger_and_Younger>", "<http://dbpedia.org/resource/Vampire_Hunter_D_(1985_film)>", "<http://dbpedia.org/resource/The_Lion_King>", "<http://dbpedia.org/resource/Jay_and_Silent_Bob_Reboot>", "<http://dbpedia.org/resource/Vantage_Point_(film)>", "<http://dbpedia.org/resource/Annihilation_(film)>", "<http://dbpedia.org/resource/Vampire_(2011_film)>", "<http://dbpedia.org/resource/Klaus_(film)>", "<http://dbpedia.org/resource/Carrie_(1976_film)>", "<http://dbpedia.org/resource/District_9>", "<http://dbpedia.org/resource/Melancholia_(2011_film)>", "<http://dbpedia.org/resource/Beast_(2017_film)>", "<http://dbpedia.org/resource/Game_Night_(film)>", "<http://dbpedia.org/resource/Knights_(film)>", "<http://dbpedia.org/resource/Birds_of_Prey_(1973_film)>", "<http://dbpedia.org/resource/Spies_in_Disguise>", "<http://dbpedia.org/resource/The_Squid_and_the_Whale>", "<http://dbpedia.org/resource/Keanu_(film)>", "<http://dbpedia.org/resource/Nobody's_Fool_(2018_film)>", "<http://dbpedia.org/resource/Sherlock_Holmes_(2009_film)>", "<http://dbpedia.org/resource/The_Ballad_of_Buster_Scruggs>", "<http://dbpedia.org/resource/The_First_Wives_Club>", "<http://dbpedia.org/resource/Jeepers_Creepers_(2001_film)>", "<http://dbpedia.org/resource/Groundhog_Day_(film)>", "<http://dbpedia.org/resource/The_Star_(2017_film)>", "<http://dbpedia.org/resource/Greta_(2018_film)>", "<http://dbpedia.org/resource/Ratatouille_(film)>", "<http://dbpedia.org/resource/Forrest_Gump>", "<http://dbpedia.org/resource/Table_19>", "<http://dbpedia.org/resource/Jack_(1996_film)>", "<http://dbpedia.org/resource/Barbarian_Queen>", "<http://dbpedia.org/resource/Jack_Reacher:_Never_Go_Back>", "<http://dbpedia.org/resource/Baby_Driver>", "<http://dbpedia.org/resource/Doctor_Strange_(2016_film)>", "<http://dbpedia.org/resource/V_for_Vendetta_(film)>", "<http://dbpedia.org/resource/3_Backyards>", "<http://dbpedia.org/resource/Spider-Man:_Into_the_Spider-Verse>", "<http://dbpedia.org/resource/Dark_Command>", "<http://dbpedia.org/resource/It_Takes_Two_(1995_film)>", "<http://dbpedia.org/resource/Good_(film)>", "<http://dbpedia.org/resource/Bride_Wars>", "<http://dbpedia.org/resource/Fireproof_(film)>", "<http://dbpedia.org/resource/Apocalypse_(Bill_Callahan_album)>", "<http://dbpedia.org/resource/Happy!_(TV_series)>", "<http://dbpedia.org/resource/The_New_Mutants_(film)>", "<http://dbpedia.org/resource/Patton_(film)>", "<http://dbpedia.org/resource/America's_Sweethearts>", "<http://dbpedia.org/resource/Haunted_(1995_film)>", "<http://dbpedia.org/resource/Trolls_(film)>", "<http://dbpedia.org/resource/Lords_of_Chaos_(film)>", "<http://dbpedia.org/resource/Here_(2011_film)>", "<http://dbpedia.org/resource/You're_Next>", "<http://dbpedia.org/resource/The_Bat_(1959_film)>", "<http://dbpedia.org/resource/Blade_Runner>", "<http://dbpedia.org/resource/Tag_(2018_film)>", "<http://dbpedia.org/resource/Unrest_(2006_film)>", "<http://dbpedia.org/resource/The_Maze_Runner_(film)>", "<http://dbpedia.org/resource/Child's_Play_(2019_film)>", "<http://dbpedia.org/resource/Android_(film)>", "<http://dbpedia.org/resource/Hostiles_(film)>", "<http://dbpedia.org/resource/Casino_Royale_(2006_film)>", "<http://dbpedia.org/resource/Helen_(2009_film)>", "<http://dbpedia.org/resource/October_1_(film)>", "<http://dbpedia.org/resource/Grosse_Pointe_Blank>", "<http://dbpedia.org/resource/The_Other_Woman_(2014_film)>", "<http://dbpedia.org/resource/Jerry_Maguire>", "<http://dbpedia.org/resource/Harry_Potter_(film_series)>", "<http://dbpedia.org/resource/Fargo_(1996_film)>", "<http://dbpedia.org/resource/Speed_(1994_film)>", "<http://dbpedia.org/resource/Haunted_(comics)>", "<http://dbpedia.org/resource/The_Professor_(2018_film)>", "<http://dbpedia.org/resource/Batman_v_Superman:_Dawn_of_Justice>", "<http://dbpedia.org/resource/Saturday_Night_(2010_film)>", "<http://dbpedia.org/resource/Midsommer>", "<http://dbpedia.org/resource/Overboard_(2018_film)>", "<http://dbpedia.org/resource/Transcendence_(2014_film)>", "<http://dbpedia.org/resource/War_Room_(film)>", "<http://dbpedia.org/resource/Tommy_(1975_film)>", "<http://dbpedia.org/resource/Bad_Boys_for_Life>", "<http://dbpedia.org/resource/Dirty_Dancing_(2017_film)>", "<http://dbpedia.org/resource/The_Royal_Tenenbaums>", "<http://dbpedia.org/resource/Rollercoaster_(1977_film)>", "<http://dbpedia.org/resource/Promised_Land_(2012_film)>", "<http://dbpedia.org/resource/Edge_of_Tomorrow>", "<http://dbpedia.org/resource/Entertainment_(2015_film)>", "<http://dbpedia.org/resource/Halloween_(1978_film)>", "<http://dbpedia.org/resource/Wreck-It_Ralph>", "<http://dbpedia.org/resource/Fright_(film)>", "<http://dbpedia.org/resource/Paranoid_Park_(film)>", "<http://dbpedia.org/resource/Buddy_Boy>", "<http://dbpedia.org/resource/Alien_(film)>", "<http://dbpedia.org/resource/The_Ring_(2002_film)>", "<http://dbpedia.org/resource/Fallen_(1998_film)>", "<http://dbpedia.org/resource/The_Predator_(film)>", "<http://dbpedia.org/resource/Corrupt_(1999_film)>", "<http://dbpedia.org/resource/Don't_Let_Go_(2019_film)>", "<http://dbpedia.org/resource/Gotti_(song)>", "<http://dbpedia.org/resource/Dazed_and_Confused_(film)>", "<http://dbpedia.org/resource/Django_Unchained>", "<http://dbpedia.org/resource/Mad_Max_(film)>", "<http://dbpedia.org/resource/Pineapple_Express_(film)>", "<http://dbpedia.org/resource/Dirty_Rotten_Scoundrels_(film)>", "<http://dbpedia.org/resource/Virus_(1999_film)>", "<http://dbpedia.org/resource/Resident_Evil:_The_Final_Chapter>", "<http://dbpedia.org/resource/The_Proposal_(2009_film)>", "<http://dbpedia.org/resource/Clash_of_the_Titans_(2010_film)>", "<http://dbpedia.org/resource/The_Florida_Project>", "<http://dbpedia.org/resource/Hustlers_(film)>", "<http://dbpedia.org/resource/You_&_I_(Nobody_in_the_World)>", "<http://dbpedia.org/resource/Mrs._Doubtfire>", "<http://dbpedia.org/resource/More_(1998_film)>", "<http://dbpedia.org/resource/Holidays_(2016_film)>", "<http://dbpedia.org/resource/Wild_Things_(film)>", "<http://dbpedia.org/resource/Countdown_(2019_film)>", "<http://dbpedia.org/resource/Barton_Fink>", "<http://dbpedia.org/resource/A_Quiet_Place>", "<http://dbpedia.org/resource/Louisiana_Story>", "<http://dbpedia.org/resource/Let_Me_In_(film)>", "<http://dbpedia.org/resource/War_Horse_(film)>", "<http://dbpedia.org/resource/Wonderful_Life_(1964_film)>", "<http://dbpedia.org/resource/Dead_Again>", "<http://dbpedia.org/resource/Dumb_and_Dumber>", "<http://dbpedia.org/resource/Top_Gun>", "<http://dbpedia.org/resource/Godzilla_(2014_film)>", "<http://dbpedia.org/resource/Kung_Fu_Hustle>", "<http://dbpedia.org/resource/Good_Luck_(1996_film)>", "<http://dbpedia.org/resource/Hitler_(1962_film)>", "<http://dbpedia.org/resource/Bronson_(film)>", "<http://dbpedia.org/resource/Memento_(film)>", "<http://dbpedia.org/resource/Rambo:_Last_Blood>", "<http://dbpedia.org/resource/Chemistry_(TV_series)>", "<http://dbpedia.org/resource/Modern_Times_(film)>", "<http://dbpedia.org/resource/Rose_Red_(miniseries)>", "<http://dbpedia.org/resource/Serial_(1980_film)>", "<http://dbpedia.org/resource/The_Devil's_Rejects>", "<http://dbpedia.org/resource/Accepted>", "<http://dbpedia.org/resource/Eagle_Eye>", "<http://dbpedia.org/resource/Daddy_(2015_film)>", "<http://dbpedia.org/resource/Play_(Chungha_song)>", "<http://dbpedia.org/resource/Goldengirl>", "<http://dbpedia.org/resource/Devil_(2010_film)>", "<http://dbpedia.org/resource/Black_Hawk_Down_(film)>", "<http://dbpedia.org/resource/Ricky_(2009_film)>", "<http://dbpedia.org/resource/Make_the_Yuletide_Gay>", "<http://dbpedia.org/resource/Inception>", "<http://dbpedia.org/resource/It_(2017_film)>", "<http://dbpedia.org/resource/The_Formula_(1980_film)>", "<http://dbpedia.org/resource/Solo:_A_Star_Wars_Story>", "<http://dbpedia.org/resource/Appropriate_Adult>", "<http://dbpedia.org/resource/The_Machinist>", "<http://dbpedia.org/resource/Chloe_(2009_film)>", "<http://dbpedia.org/resource/Saving_Mr._Banks>", "<http://dbpedia.org/resource/Black_Panther_(film)>", "<http://dbpedia.org/resource/The_Hangover>", "<http://dbpedia.org/resource/Going_Overboard>", "<http://dbpedia.org/resource/I_Love_You_Phillip_Morris>", "<http://dbpedia.org/resource/Contagion_(2011_film)>", "<http://dbpedia.org/resource/Supporting_Characters>", "<http://dbpedia.org/resource/Power_Rangers_(film)>", "<http://dbpedia.org/resource/Along_Came_a_Spider_(film)>", "<http://dbpedia.org/resource/Jennifer's_Body>", "<http://dbpedia.org/resource/7_Women>", "<http://dbpedia.org/resource/Welcome_to_the_Jungle_(2013_film)>", "<http://dbpedia.org/resource/Jeff_(1969_film)>", "<http://dbpedia.org/resource/Atomic_Blonde>", "<http://dbpedia.org/resource/Little_Man_(2006_film)>", "<http://dbpedia.org/resource/Bean_(film)>", "<http://dbpedia.org/resource/The_Big_Lebowski>", "<http://dbpedia.org/resource/Zombieland>", "<http://dbpedia.org/resource/Dark_Waters_(2019_film)>", "<http://dbpedia.org/resource/A_Dog's_Journey_(film)>", "<http://dbpedia.org/resource/Arthur_Christmas>", "<http://dbpedia.org/resource/Birds_of_Prey_(2020_film)>", "<http://dbpedia.org/resource/The_Man_from_Earth>", "<http://dbpedia.org/resource/Sonic_X>", "<http://dbpedia.org/resource/Black_Monday_(TV_series)>", "<http://dbpedia.org/resource/Vincent_(1982_film)>", "<http://dbpedia.org/resource/Crimson_Peak>", "<http://dbpedia.org/resource/You_Were_Never_Really_Here>", "<http://dbpedia.org/resource/Like_a_Boss_(film)>", "<http://dbpedia.org/resource/Infinity_(film)>", "<http://dbpedia.org/resource/The_Secret_Life_of_Pets_2>", "<http://dbpedia.org/resource/Dolittle_(film)>", "<http://dbpedia.org/resource/The_Informant!>", "<http://dbpedia.org/resource/The_Stranger_(2020_American_TV_series)>", "<http://dbpedia.org/resource/Amazon_(1997_film)>", "<http://dbpedia.org/resource/The_Boys_(2019_TV_series)>", "<http://dbpedia.org/resource/The_Wedding_Singer>", "<http://dbpedia.org/resource/Jiro_Dreams_of_Sushi>", "<http://dbpedia.org/resource/Uncle_Buck>", "<http://dbpedia.org/resource/American_Reunion>", "<http://dbpedia.org/resource/Spectre_(2015_film)>", "<http://dbpedia.org/resource/Forbidden_Games>", "<http://dbpedia.org/resource/White_Chicks>", "<http://dbpedia.org/resource/Knowing_(film)>", "<http://dbpedia.org/resource/Surrogates>", "<http://dbpedia.org/resource/Brother_(2000_film)>", "<http://dbpedia.org/resource/Triple_Frontier_(film)>", "<http://dbpedia.org/resource/Home_Town_(TV_series)>", "<http://dbpedia.org/resource/Great_Migrations>", "<http://dbpedia.org/resource/Wild_Card_(2015_film)>", "<http://dbpedia.org/resource/Jack_Reacher_(film)>", "<http://dbpedia.org/resource/Four_Weddings_and_a_Funeral>", "<http://dbpedia.org/resource/Vito_(film)>", "<http://dbpedia.org/resource/Paranormal_Activity_(film_series)>", "<http://dbpedia.org/resource/Love_and_Death>", "<http://dbpedia.org/resource/How_to_Lose_a_Guy_in_10_Days>", "<http://dbpedia.org/resource/Call_Me_by_Your_Name_(film)>", "<http://dbpedia.org/resource/Charlie's_Angels_(2000_film)>", "<http://dbpedia.org/resource/Before_You_Go_(film)>", "<http://dbpedia.org/resource/The_Lincoln_Lawyer_(film)>", "<http://dbpedia.org/resource/Batman_Forever>", "<http://dbpedia.org/resource/Shutter_Island_(film)>", "<http://dbpedia.org/resource/Thor_(film)>", "<http://dbpedia.org/resource/Gambit_(2012_film)>", "<http://dbpedia.org/resource/The_Producers_(2005_film)>", "<http://dbpedia.org/resource/Tammy_(film)>", "<http://dbpedia.org/resource/Running_Scared_(2006_film)>", "<http://dbpedia.org/resource/Deadpool_2>", "<http://dbpedia.org/resource/Without_Limits>", "<http://dbpedia.org/resource/Little_Women:_LA>", "<http://dbpedia.org/resource/The_Expendables_3>", "<http://dbpedia.org/resource/Hello_(2008_film)>", "<http://dbpedia.org/resource/Pumpkinhead_(film)>", "<http://dbpedia.org/resource/Heat_(1995_film)>", "<http://dbpedia.org/resource/Trapped_in_Paradise>", "<http://dbpedia.org/resource/Natural_Born_Killers>", "<http://dbpedia.org/resource/Steven_Universe>", "<http://dbpedia.org/resource/Sully_(film)>", "<http://dbpedia.org/resource/Special_Effects_(film)>", "<http://dbpedia.org/resource/Her_(film)>", "<http://dbpedia.org/resource/Widows_(2018_film)>", "<http://dbpedia.org/resource/21_Bridges>", "<http://dbpedia.org/resource/Blockers_(film)>", "<http://dbpedia.org/resource/Burn_After_Reading>", "<http://dbpedia.org/resource/The_Darkness_(film)>", "<http://dbpedia.org/resource/Interstellar_(film)>", "<http://dbpedia.org/resource/Train_(film)>", "<http://dbpedia.org/resource/Us_(2019_film)>", "<http://dbpedia.org/resource/Dune_(1984_film)>", "<http://dbpedia.org/resource/Regression_(film)>", "<http://dbpedia.org/resource/The_Interview>", "<http://dbpedia.org/resource/Yesterday_(2019_film)>", "<http://dbpedia.org/resource/The_Lighthouse_(2019_film)>", "<http://dbpedia.org/resource/Batman_Beyond:_Return_of_the_Joker>", "<http://dbpedia.org/resource/Train_to_Busan>", "<http://dbpedia.org/resource/Hellboy_(2004_film)>", "<http://dbpedia.org/resource/Thank_You_for_Smoking>", "<http://dbpedia.org/resource/Festival_in_Cannes>", "<http://dbpedia.org/resource/Parasite_(2019_film)>", "<http://dbpedia.org/resource/Finding_Home>", "<http://dbpedia.org/resource/Mary_Poppins_(film)>", "<http://dbpedia.org/resource/The_Christmas_Gift>", "<http://dbpedia.org/resource/Criminal_(2016_film)>", "<http://dbpedia.org/resource/Earth_(2007_film)>", "<http://dbpedia.org/resource/Ant-Man_and_the_Wasp>", "<http://dbpedia.org/resource/Dark_Skies_(2013_film)>", "<http://dbpedia.org/resource/Game_of_Thrones>", "<http://dbpedia.org/resource/Ace_Ventura:_When_Nature_Calls>", "<http://dbpedia.org/resource/The_Shallows_(film)>", "<http://dbpedia.org/resource/Sleepaway_Camp_(film_series)>", "<http://dbpedia.org/resource/Trainwreck_(film)>", "<http://dbpedia.org/resource/The_Time_Traveler's_Wife_(film)>", "<http://dbpedia.org/resource/The_Rose_(film)>", "<http://dbpedia.org/resource/Family_Ties>", "<http://dbpedia.org/resource/Fargo_(season_1)>", "<http://dbpedia.org/resource/Office_Christmas_Party>", "<http://dbpedia.org/resource/Raging_Bull>", "<http://dbpedia.org/resource/The_Angel_(2018_American_film)>", "<http://dbpedia.org/resource/Elizabeth_(film)>", "<http://dbpedia.org/resource/Howard_the_Duck_(film)>", "<http://dbpedia.org/resource/Maverick_(film)>", "<http://dbpedia.org/resource/The_Hateful_Eight>", "<http://dbpedia.org/resource/Dark_Phoenix_(film)>", "<http://dbpedia.org/resource/Bridesmaids_(2011_film)>", "<http://dbpedia.org/resource/Haunt_(2019_film)>", "<http://dbpedia.org/resource/Area_51_(film)>", "<http://dbpedia.org/resource/The_Shining_(film)>", "<http://dbpedia.org/resource/Promising_Young_Woman>", "<http://dbpedia.org/resource/The_Hurt_Locker>", "<http://dbpedia.org/resource/Event_Horizon_(film)>", "<http://dbpedia.org/resource/Tombstone_(film)>", "<http://dbpedia.org/resource/My_Family_and_Other_Animals_(film)>", "<http://dbpedia.org/resource/Gladiator_(2000_film)>", "<http://dbpedia.org/resource/Jessie_(film)>", "<http://dbpedia.org/resource/The_Host_(2006_film)>", "<http://dbpedia.org/resource/Once_Upon_a_Time_(1944_film)>", "<http://dbpedia.org/resource/Good_Dick>", "<http://dbpedia.org/resource/Dolores_Claiborne_(film)>", "<http://dbpedia.org/resource/Dope_(2015_film)>", "<http://dbpedia.org/resource/Mixed_Nuts>", "<http://dbpedia.org/resource/Killer_Klowns_from_Outer_Space>", "<http://dbpedia.org/resource/Romance_(1999_film)>", "<http://dbpedia.org/resource/Waiting..._(film)>", "<http://dbpedia.org/resource/Due_Date>", "<http://dbpedia.org/resource/Road_House_(1989_film)>", "<http://dbpedia.org/resource/Annabelle:_Creation>", "<http://dbpedia.org/resource/Shoah_(film)>", "<http://dbpedia.org/resource/Arthur_(2011_film)>", "<http://dbpedia.org/resource/Happy_(2015_film)>", "<http://dbpedia.org/resource/The_Art_of_Racing_in_the_Rain_(film)>", "<http://dbpedia.org/resource/Meet_the_Fockers>", "<http://dbpedia.org/resource/Fantasy_Island_(film)>", "<http://dbpedia.org/resource/The_Foreigner_(2017_film)>", "<http://dbpedia.org/resource/47_Meters_Down>", "<http://dbpedia.org/resource/Insidious_(film)>", "<http://dbpedia.org/resource/Green_Lantern_(film)>", "<http://dbpedia.org/resource/The_Invisible_Man_(2020_film)>", "<http://dbpedia.org/resource/Dolemite>", "<http://dbpedia.org/resource/Crouching_Tiger,_Hidden_Dragon>", "<http://dbpedia.org/resource/Jack_the_Ripper_(miniseries)>", "<http://dbpedia.org/resource/The_Major_(film)>", "<http://dbpedia.org/resource/Beverly_Hills_Cop>", "<http://dbpedia.org/resource/Police_(1985_film)>", "<http://dbpedia.org/resource/Life_Is_Beautiful>", "<http://dbpedia.org/resource/Taxi_Driver>", "<http://dbpedia.org/resource/National_Treasure_(film)>", "<http://dbpedia.org/resource/Green_Book_(film)>", "<http://dbpedia.org/resource/Role_Models>", "<http://dbpedia.org/resource/Rocky>", "<http://dbpedia.org/resource/Knives_Out>", "<http://dbpedia.org/resource/No_Country_for_Old_Men_(film)>", "<http://dbpedia.org/resource/True_Blood_(season_1)>", "<http://dbpedia.org/resource/Castle_Rock_(TV_series)>", "<http://dbpedia.org/resource/Cast_Away>", "<http://dbpedia.org/resource/Help_Me_Help_You_(TV_series)>", "<http://dbpedia.org/resource/Old_Enough>", "<http://dbpedia.org/resource/Fresh_(1994_film)>", "<http://dbpedia.org/resource/Murder_on_the_Orient_Express_(2017_film)>", "<http://dbpedia.org/resource/My_Old_Lady_(film)>", "<http://dbpedia.org/resource/The_Holiday>", "<http://dbpedia.org/resource/The_Boy_and_the_Beast>", "<http://dbpedia.org/resource/Buddy_(1997_film)>", "<http://dbpedia.org/resource/Pulp_Fiction>", "<http://dbpedia.org/resource/Zootopia>", "<http://dbpedia.org/resource/Bohemian_Rhapsody_(film)>", "<http://dbpedia.org/resource/Ready_or_Not_(2019_film)>", "<http://dbpedia.org/resource/Starship_Troopers_(film)>", "<http://dbpedia.org/resource/The_Seven_Deadly_Sins_(season_1)>", "<http://dbpedia.org/resource/Europa_(film)>", "<http://dbpedia.org/resource/This_Is_40>", "<http://dbpedia.org/resource/What_Lies_Beneath>", "<http://dbpedia.org/resource/Black_Mass_(film)>", "<http://dbpedia.org/resource/Eternal_Sunshine_of_the_Spotless_Mind>", "<http://dbpedia.org/resource/Ghost_(1990_film)>", "<http://dbpedia.org/resource/Defiance_(2008_film)>", "<http://dbpedia.org/resource/10_Cloverfield_Lane>", "<http://dbpedia.org/resource/Shazam!_(film)>", "<http://dbpedia.org/resource/Baby_Boy_(film)>", "<http://dbpedia.org/resource/Good_Time_(film)>", "<http://dbpedia.org/resource/Apollo_13_(film)>", "<http://dbpedia.org/resource/Captive_State>", "<http://dbpedia.org/resource/Scott_Pilgrim_vs._the_World>", "<http://dbpedia.org/resource/Tully_(2018_film)>", "<http://dbpedia.org/resource/Fences_(film)>", "<http://dbpedia.org/resource/The_Big_Sick>", "<http://dbpedia.org/resource/Mario_(2018_film)>", "<http://dbpedia.org/resource/True_(Ryan_Cabrera_song)>", "<http://dbpedia.org/resource/Happy_Death_Day_2U>", "<http://dbpedia.org/resource/Dirty_Dancing>", "<http://dbpedia.org/resource/Fast_&_Furious_6>", "<http://dbpedia.org/resource/Moonraker_(film)>", "<http://dbpedia.org/resource/Annabelle_(film)>", "<http://dbpedia.org/resource/Hidden_Figures>", "<http://dbpedia.org/resource/Men_in_Black:_International>", "<http://dbpedia.org/resource/Aquaman_(film)>", "<http://dbpedia.org/resource/Upgrade_(film)>", "<http://dbpedia.org/resource/Full_of_Life>", "<http://dbpedia.org/resource/Jason_X>", "<http://dbpedia.org/resource/In_the_Mouth_of_Madness>", "<http://dbpedia.org/resource/The_Bucket_List>", "<http://dbpedia.org/resource/Rain_Man>", "<http://dbpedia.org/resource/On_Her_Majesty's_Secret_Service_(film)>", "<http://dbpedia.org/resource/Aladdin_(2019_film)>", "<http://dbpedia.org/resource/Bridge_to_Terabithia_(2007_film)>", "<http://dbpedia.org/resource/Dead_Men_Tell>", "<http://dbpedia.org/resource/Mike_and_Dave_Need_Wedding_Dates>", "<http://dbpedia.org/resource/The_Silence_of_the_Lambs_(film)>", "<http://dbpedia.org/resource/Heartbreak_Ridge>", "<http://dbpedia.org/resource/Wonder_Boys_(film)>", "<http://dbpedia.org/resource/The_Greatest_Showman>", "<http://dbpedia.org/resource/Good_Morning_(1959_film)>", "<http://dbpedia.org/resource/Jexi>", "<http://dbpedia.org/resource/Mamma_Mia!_Here_We_Go_Again>", "<http://dbpedia.org/resource/Just_Cause_(film)>", "<http://dbpedia.org/resource/Hellboy_(2019_film)>", "<http://dbpedia.org/resource/I_Stand_Alone_(film)>", "<http://dbpedia.org/resource/Ryan_(film)>", "<http://dbpedia.org/resource/The_Invisible_Man_(painting)>", "<http://dbpedia.org/resource/The_Asphalt_Jungle>", "<http://dbpedia.org/resource/Ace_Ventura>", "<http://dbpedia.org/resource/Harrison_Bergeron_(film)>", "<http://dbpedia.org/resource/Manhattan_(1979_film)>", "<http://dbpedia.org/resource/Divergent_(film)>", "<http://dbpedia.org/resource/Friday_the_13th_(2009_film)>", "<http://dbpedia.org/resource/Commando_(1985_film)>", "<http://dbpedia.org/resource/Dave_(film)>", "<http://dbpedia.org/resource/Jumping_the_Broom>", "<http://dbpedia.org/resource/Made_Men_(film)>", "<http://dbpedia.org/resource/Jeepers_Creepers_3>", "<http://dbpedia.org/resource/Chasing_Amy>", "<http://dbpedia.org/resource/Jennifer_(1978_film)>", "<http://dbpedia.org/resource/A_Christmas_Prince>", "<http://dbpedia.org/resource/El_Camino:_A_Breaking_Bad_Movie>", "<http://dbpedia.org/resource/The_Boy_Next_Door_(film)>", "<http://dbpedia.org/resource/The_Rocky_Horror_Picture_Show>", "<http://dbpedia.org/resource/Argo_(2012_film)>", "<http://dbpedia.org/resource/Poltergeist_(1982_film)>", "<http://dbpedia.org/resource/High_Hopes_(1988_film)>", "<http://dbpedia.org/resource/Stir_of_Echoes>", "<http://dbpedia.org/resource/Evolution_(2001_film)>", "<http://dbpedia.org/resource/In_Bruges>", "<http://dbpedia.org/resource/Taxi_(1998_film)>", "<http://dbpedia.org/resource/The_Babadook>", "<http://dbpedia.org/resource/Soldier_(1998_American_film)>", "<http://dbpedia.org/resource/Charlie's_Angels_(2019_film)>", "<http://dbpedia.org/resource/The_Post_(film)>", "<http://dbpedia.org/resource/Arrival_(film)>", "<http://dbpedia.org/resource/Tooth_Fairy_(2010_film)>", "<http://dbpedia.org/resource/Step_Brothers_(film)>", "<http://dbpedia.org/resource/Taken_(film)>", "<http://dbpedia.org/resource/Identity_Thief>", "<http://dbpedia.org/resource/Epic_(2013_film)>", "<http://dbpedia.org/resource/Troops_(film)>", "<http://dbpedia.org/resource/Wonder_Wheel_(film)>", "<http://dbpedia.org/resource/Star_Trek_(1979_pinball)>", "<http://dbpedia.org/resource/Goodbye_(2011_film)>", "<http://dbpedia.org/resource/Total_Recall_(2012_film)>", "<http://dbpedia.org/resource/Amazing_Stories_(1985_TV_series)>", "<http://dbpedia.org/resource/The_Island_(2005_film)>", "<http://dbpedia.org/resource/Peppermint_(2018_film)>", "<http://dbpedia.org/resource/Olympus_Has_Fallen>", "<http://dbpedia.org/resource/Being_There>", "<http://dbpedia.org/resource/I_Am_Michael>", "<http://dbpedia.org/resource/Casablanca_(film)>", "<http://dbpedia.org/resource/Lion_(2016_film)>", "<http://dbpedia.org/resource/Snowpiercer>", "<http://dbpedia.org/resource/Hawaii_(1966_film)>", "<http://dbpedia.org/resource/Oldboy_(2013_film)>", "<http://dbpedia.org/resource/A_Rainy_Day_in_New_York>", "<http://dbpedia.org/resource/Homeward_Bound:_The_Incredible_Journey>", "<http://dbpedia.org/resource/Werewolf_(2018_film)>", "<http://dbpedia.org/resource/Friday_Night_Lights_(film)>", "<http://dbpedia.org/resource/Comedian_(film)>", "<http://dbpedia.org/resource/Wasp_(2003_film)>", "<http://dbpedia.org/resource/Enough_(film)>", "<http://dbpedia.org/resource/Dinosaurs_(TV_series)>", "<http://dbpedia.org/resource/Superbad>", "<http://dbpedia.org/resource/Wolves_(2014_film)>", "<http://dbpedia.org/resource/Under_the_Shadow>", "<http://dbpedia.org/resource/Once_Upon_a_Time_in_Venice>", "<http://dbpedia.org/resource/Terminator:_Dark_Fate>", "<http://dbpedia.org/resource/Midsommar>", "<http://dbpedia.org/resource/Either_Way_(film)>", "<http://dbpedia.org/resource/Where'd_You_Go,_Bernadette_(film)>", "<http://dbpedia.org/resource/Hysterical_(1983_film)>", "<http://dbpedia.org/resource/Bad_Boys_II>", "<http://dbpedia.org/resource/Love_Actually>", "<http://dbpedia.org/resource/Fantastic_Four_(2015_film)>", "<http://dbpedia.org/resource/The_Campaign_(film)>", "<http://dbpedia.org/resource/Little_Nicky>", "<http://dbpedia.org/resource/Godzilla_(1954_film)>", "<http://dbpedia.org/resource/Miller's_Crossing>", "<http://dbpedia.org/resource/The_Secret_Life_of_Walter_Mitty_(2013_film)>", "<http://dbpedia.org/resource/Blood_and_Bone>", "<http://dbpedia.org/resource/Ip_Man_4:_The_Finale>", "<http://dbpedia.org/resource/The_Death_of_Stalin>", "<http://dbpedia.org/resource/The_President_(1961_film)>", "<http://dbpedia.org/resource/Clueless>", "<http://dbpedia.org/resource/Power_(2014_Kannada_film)>", "<http://dbpedia.org/resource/My_Fair_Lady_(film)>", "<http://dbpedia.org/resource/Ocean's_Eleven>", "<http://dbpedia.org/resource/Booksmart>", "<http://dbpedia.org/resource/John_Carter_(film)>", "<http://dbpedia.org/resource/Rambo_(franchise)>", "<http://dbpedia.org/resource/Bad_Taste>", "<http://dbpedia.org/resource/The_Beast_Within>", "<http://dbpedia.org/resource/Mutants_(2008_film)>", "<http://dbpedia.org/resource/Paranormal_Activity_3>", "<http://dbpedia.org/resource/The_Queen_(2006_film)>", "<http://dbpedia.org/resource/Ouija_(2014_film)>", "<http://dbpedia.org/resource/Daddy's_Home_2>", "<http://dbpedia.org/resource/Wings_of_Life>", "<http://dbpedia.org/resource/Once_Upon_a_Time_(TV_series)>", "<http://dbpedia.org/resource/Star_Wars_(film)>", "<http://dbpedia.org/resource/Despicable_Me_(film)>", "<http://dbpedia.org/resource/Merlin_(metal_band)>", "<http://dbpedia.org/resource/The_BFG_(2016_film)>", "<http://dbpedia.org/resource/Poltergeist_(2015_film)>", "<http://dbpedia.org/resource/Desperate_Housewives>", "<http://dbpedia.org/resource/The_Butterfly_Effect>", "<http://dbpedia.org/resource/Brothers_(2009_film)>", "<http://dbpedia.org/resource/Something_for_Everyone>", "<http://dbpedia.org/resource/Paycheck_(film)>", "<http://dbpedia.org/resource/Someone_Great_(film)>", "<http://dbpedia.org/resource/Spiral_(2007_film)>", "<http://dbpedia.org/resource/Next_Gen_(film)>", "<http://dbpedia.org/resource/Boston_Legal>", "<http://dbpedia.org/resource/Tempted_(film)>", "<http://dbpedia.org/resource/Rush_(2013_film)>", "<http://dbpedia.org/resource/Solo_(1996_film)>", "<http://dbpedia.org/resource/Fighting_(2009_film)>", "<http://dbpedia.org/resource/A_Christmas_Story_2>", "<http://dbpedia.org/resource/The_Autopsy_of_Jane_Doe>", "<http://dbpedia.org/resource/The_Karate_Kid>", "<http://dbpedia.org/resource/Lone_Survivor>", "<http://dbpedia.org/resource/Toy_Story_4>", "<http://dbpedia.org/resource/The_Help_(film)>", "<http://dbpedia.org/resource/Law_and_Order_(1953_film)>", "<http://dbpedia.org/resource/Jumanji:_The_Next_Level>", "<http://dbpedia.org/resource/Erin_Brockovich_(film)>", "<http://dbpedia.org/resource/Braveheart>", "<http://dbpedia.org/resource/Bright_(film)>", "<http://dbpedia.org/resource/Another_Woman_(1988_film)>", "<http://dbpedia.org/resource/Pet_Sematary_(2019_film)>", "<http://dbpedia.org/resource/The_Rock_(film)>", "<http://dbpedia.org/resource/Girl_(2018_film)>", "<http://dbpedia.org/resource/Hours_(2013_film)>", "<http://dbpedia.org/resource/Mean_Girls>", "<http://dbpedia.org/resource/Titanic_(1997_film)>", "<http://dbpedia.org/resource/Sorry_Angel>", "<http://dbpedia.org/resource/Finding_Forrester>", "<http://dbpedia.org/resource/Frailty_(2001_film)>", "<http://dbpedia.org/resource/Dr._Strangelove>", "<http://dbpedia.org/resource/One_Hour_Photo>", "<http://dbpedia.org/resource/The_Avengers_(2012_film)>", "<http://dbpedia.org/resource/The_Shape_of_Water>", "<http://dbpedia.org/resource/Lincoln_(film)>", "<http://dbpedia.org/resource/Casino_(1995_film)>", "<http://dbpedia.org/resource/Memento_Mori_(film)>", "<http://dbpedia.org/resource/Mistress_(1992_film)>", "<http://dbpedia.org/resource/Star_Trek_II:_The_Wrath_of_Khan>", "<http://dbpedia.org/resource/Runaway_Bride_(film)>", "<http://dbpedia.org/resource/Misconduct_(film)>", "<http://dbpedia.org/resource/Deck_the_Halls_(2006_film)>", "<http://dbpedia.org/resource/Rebecca_(1940_film)>", "<http://dbpedia.org/resource/White_Christmas_(film)>", "<http://dbpedia.org/resource/Pirates_(1986_film)>", "<http://dbpedia.org/resource/Friday_the_13th_(1980_film)>", "<http://dbpedia.org/resource/Genre_(1996_film)>", "<http://dbpedia.org/resource/The_Bishop's_Wife>", "<http://dbpedia.org/resource/Bad_Santa>", "<http://dbpedia.org/resource/Grease_(film)>", "<http://dbpedia.org/resource/Fire_(Scooter_song)>", "<http://dbpedia.org/resource/Black_Sheep_(2006_German_film)>", "<http://dbpedia.org/resource/Good_Boys_(film)>", "<http://dbpedia.org/resource/Indiana_Jones>", "<http://dbpedia.org/resource/Home_(2015_film)>", "<http://dbpedia.org/resource/Dances_with_Wolves>", "<http://dbpedia.org/resource/Hush_(2016_film)>", "<http://dbpedia.org/resource/Liar_Liar>", "<http://dbpedia.org/resource/Falling_Skies_(season_1)>", "<http://dbpedia.org/resource/There's_Something_About_Mary>", "<http://dbpedia.org/resource/Industry_(TV_series)>", "<http://dbpedia.org/resource/Bella_(2006_film)>", "<http://dbpedia.org/resource/The_Family_Fang_(film)>", "<http://dbpedia.org/resource/The_Grinch_(film)>", "<http://dbpedia.org/resource/The_Horse_Whisperer_(film)>", "<http://dbpedia.org/resource/I_Am_Number_Four_(film)>", "<http://dbpedia.org/resource/Guardians_(2017_film)>", "<http://dbpedia.org/resource/Arizona_(2018_film)>", "<http://dbpedia.org/resource/Always_Be_My_Maybe_(2019_film)>", "<http://dbpedia.org/resource/Splash_(film)>", "<http://dbpedia.org/resource/Bad_Country>", "<http://dbpedia.org/resource/Playmobil:_The_Movie>", "<http://dbpedia.org/resource/Foxy_Brown_(film)>", "<http://dbpedia.org/resource/Enemy_of_the_State_(film)>", "<http://dbpedia.org/resource/The_Pacific_(miniseries)>", "<http://dbpedia.org/resource/Original_Sin_(2001_film)>", "<http://dbpedia.org/resource/The_Addams_Family_(2019_film)>", "<http://dbpedia.org/resource/The_Civil_War_(miniseries)>", "<http://dbpedia.org/resource/Starship_Troopers_2:_Hero_of_the_Federation>", "<http://dbpedia.org/resource/New_in_Town>", "<http://dbpedia.org/resource/Outlander_(film)>", "<http://dbpedia.org/resource/Seven_(1979_film)>", "<http://dbpedia.org/resource/Some_Like_It_Hot>", "<http://dbpedia.org/resource/Fright_Night>", "<http://dbpedia.org/resource/Titicut_Follies>", "<http://dbpedia.org/resource/Dog_Soldiers_(film)>", "<http://dbpedia.org/resource/The_Score_(2001_film)>", "<http://dbpedia.org/resource/Anastasia_(1997_film)>", "<http://dbpedia.org/resource/John_Wick_(film)>", "<http://dbpedia.org/resource/Hands_of_a_Stranger>", "<http://dbpedia.org/resource/Fido_(film)>", "<http://dbpedia.org/resource/Lust_Stories>", "<http://dbpedia.org/resource/Dan_in_Real_Life>", "<http://dbpedia.org/resource/The_Host_(2013_film)>", "<http://dbpedia.org/resource/Moana_(2016_film)>", "<http://dbpedia.org/resource/Copenhagen_(2014_film)>", "<http://dbpedia.org/resource/A_Dirty_Shame>", "<http://dbpedia.org/resource/Krampus_(film)>", "<http://dbpedia.org/resource/Action_(1980_film)>", "<http://dbpedia.org/resource/Avengers:_Age_of_Ultron>", "<http://dbpedia.org/resource/Gotcha!_(film)>", "<http://dbpedia.org/resource/Marley_(film)>", "<http://dbpedia.org/resource/Inferno_(2016_film)>", "<http://dbpedia.org/resource/Same_Kind_of_Different_as_Me_(film)>", "<http://dbpedia.org/resource/Suspense_(1946_film)>", "<http://dbpedia.org/resource/Danger_One>", "<http://dbpedia.org/resource/Valentine's_Day_(2010_film)>", "<http://dbpedia.org/resource/Kill_the_Irishman>", "<http://dbpedia.org/resource/Independence_Day:_Resurgence>", "<http://dbpedia.org/resource/Cops_(film)>", "<http://dbpedia.org/resource/The_Rise_(film)>", "<http://dbpedia.org/resource/The_Gentlemen_(2019_film)>", "<http://dbpedia.org/resource/Slim_(film)>", "<http://dbpedia.org/resource/500_Days_of_Summer>", "<http://dbpedia.org/resource/Crawl_(2019_film)>", "<http://dbpedia.org/resource/Assassin's_Creed_(film)>", "<http://dbpedia.org/resource/Ghost_in_the_Machine_(film)>", "<http://dbpedia.org/resource/Black/Matrix>", "<http://dbpedia.org/resource/To_All_the_Boys_I've_Loved_Before_(film)>", "<http://dbpedia.org/resource/Now_You_See_Me_(film)>", "<http://dbpedia.org/resource/Columbus_(2017_film)>", "<http://dbpedia.org/resource/Knock_Knock_(2015_film)>", "<http://dbpedia.org/resource/Action_(TV_series)>", "<http://dbpedia.org/resource/Medicine_Man_(film)>", "<http://dbpedia.org/resource/Wedding_Crashers>", "<http://dbpedia.org/resource/Alien:_Covenant>", "<http://dbpedia.org/resource/The_Lone_Ranger_(2013_film)>", "<http://dbpedia.org/resource/Fantastic_Beasts:_The_Crimes_of_Grindelwald>", "<http://dbpedia.org/resource/Doubt_(2008_film)>", "<http://dbpedia.org/resource/High_Tension>", "<http://dbpedia.org/resource/Stripes_(film)>", "<http://dbpedia.org/resource/Adventures_of_Captain_Marvel>", "<http://dbpedia.org/resource/Les_Dalton_(film)>", "<http://dbpedia.org/resource/Volcano_(1997_film)>", "<http://dbpedia.org/resource/Century_(film)>", "<http://dbpedia.org/resource/Atlantis_(1991_film)>", "<http://dbpedia.org/resource/Mystery_Woman>", "<http://dbpedia.org/resource/Cat's_Eye_(1985_film)>", "<http://dbpedia.org/resource/Billy_Madison>", "<http://dbpedia.org/resource/The_Godfather>", "<http://dbpedia.org/resource/Living_the_Dream_(British_TV_series)>", "<http://dbpedia.org/resource/Sex_Drive_(film)>", "<http://dbpedia.org/resource/Downsizing_(film)>", "<http://dbpedia.org/resource/Definitely,_Maybe>", "<http://dbpedia.org/resource/Alena_(2015_film)>", "<http://dbpedia.org/resource/I_Love_Cinema>", "<http://dbpedia.org/resource/Murder_Mystery_(band)>", "<http://dbpedia.org/resource/Elf_(film)>", "<http://dbpedia.org/resource/Horrible_Bosses>", "<http://dbpedia.org/resource/The_Exception>", "<http://dbpedia.org/resource/Parasite_(1982_film)>", "<http://dbpedia.org/resource/Sharktopus>", "<http://dbpedia.org/resource/Sleepless_in_Seattle>", "<http://dbpedia.org/resource/Little_Fugitive_(1953_film)>", "<http://dbpedia.org/resource/Vamps_(film)>", "<http://dbpedia.org/resource/Training_Day>", "<http://dbpedia.org/resource/The_Irishman>", "<http://dbpedia.org/resource/Four_Christmases>", "<http://dbpedia.org/resource/Jupiter_Ascending>", "<http://dbpedia.org/resource/Forget_Paris>", "<http://dbpedia.org/resource/The_Birds_(film)>", "<http://dbpedia.org/resource/Phoenix_(2014_film)>", "<http://dbpedia.org/resource/The_American_(2010_film)>", "<http://dbpedia.org/resource/The_Animal>", "<http://dbpedia.org/resource/Skyfall>", "<http://dbpedia.org/resource/Hacksaw_Ridge>", "<http://dbpedia.org/resource/An_American_Werewolf_in_London>", "<http://dbpedia.org/resource/Greetings_(1968_film)>", "<http://dbpedia.org/resource/Wishmaster_(film)>", "<http://dbpedia.org/resource/Hitch_(film)>", "<http://dbpedia.org/resource/Schindler's_List>", "<http://dbpedia.org/resource/Ex_Machina_(film)>", "<http://dbpedia.org/resource/Brittany_Runs_a_Marathon>", "<http://dbpedia.org/resource/Women_Who_Kill>", "<http://dbpedia.org/resource/Hannibal_(2001_film)>", "<http://dbpedia.org/resource/Beautiful_Creatures_(2013_film)>", "<http://dbpedia.org/resource/Doctor_Who_(film)>", "<http://dbpedia.org/resource/What_We_Do_in_the_Shadows>", "<http://dbpedia.org/resource/Home_Alone>", "<http://dbpedia.org/resource/Joker_(2019_film)>", "<http://dbpedia.org/resource/San_Francisco_(1936_film)>", "<http://dbpedia.org/resource/Half_Baked>", "<http://dbpedia.org/resource/The_Souvenir>", "<http://dbpedia.org/resource/A_Dog's_Purpose_(film)>", "<http://dbpedia.org/resource/The_River_Wild>", "<http://dbpedia.org/resource/National_Lampoon's_Christmas_Vacation>", "<http://dbpedia.org/resource/Amber_(TV_series)>", "<http://dbpedia.org/resource/The_Knight_Before_Christmas>", "<http://dbpedia.org/resource/The_Prom_(film)>", "<http://dbpedia.org/resource/Old_School_(film)>", "<http://dbpedia.org/resource/Brahms:_The_Boy_II>", "<http://dbpedia.org/resource/Romantic_Comedy_(1983_film)>", "<http://dbpedia.org/resource/The_Game_(1997_film)>", "<http://dbpedia.org/resource/Inglourious_Basterds>", "<http://dbpedia.org/resource/Bombshell_(2019_film)>", "<http://dbpedia.org/resource/The_Bridge_(2006_documentary_film)>", "<http://dbpedia.org/resource/The_Tigger_Movie>", "<http://dbpedia.org/resource/Sausage_Party>", "<http://dbpedia.org/resource/Cobra_(1986_film)>", "<http://dbpedia.org/resource/Just_Looking>", "<http://dbpedia.org/resource/True_Romance>", "<http://dbpedia.org/resource/Fingers_(1978_film)>", "<http://dbpedia.org/resource/Treed_Murray>", "<http://dbpedia.org/resource/Such_Good_Friends>", "<http://dbpedia.org/resource/Sweet_Home_Alabama_(film)>", "<http://dbpedia.org/resource/Behind_the_Curve>", "<http://dbpedia.org/resource/The_Psychopath>", "<http://dbpedia.org/resource/Mary_Poppins_Returns>", "<http://dbpedia.org/resource/Something_Wild_(1986_film)>", "<http://dbpedia.org/resource/The_Lego_Movie>", "<http://dbpedia.org/resource/Motherless_Brooklyn_(film)>", "<http://dbpedia.org/resource/Creed_II>", "<http://dbpedia.org/resource/My_Family>", "<http://dbpedia.org/resource/Gabriela_(1983_film)>", "<http://dbpedia.org/resource/King_Arthur_(2004_film)>", "<http://dbpedia.org/resource/Twilight_(2008_film)>", "<http://dbpedia.org/resource/Downton_Abbey>", "<http://dbpedia.org/resource/Fast_&_Furious_(2009_film)>", "<http://dbpedia.org/resource/The_Dictator_(2012_film)>", "<http://dbpedia.org/resource/The_Commuter_(film)>", "<http://dbpedia.org/resource/Evil_(TV_series)>", "<http://dbpedia.org/resource/Aaron_Stone>", "<http://dbpedia.org/resource/Moonrise_Kingdom>", "<http://dbpedia.org/resource/The_Book_of_Eli>", "<http://dbpedia.org/resource/Paul_Blart:_Mall_Cop_2>"]
relation_set.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "<http://dbpedia.org/ontology/starring>",
3
+ "<http://dbpedia.org/ontology/editing>",
4
+ "<http://dbpedia.org/ontology/cinematography>",
5
+ "<http://dbpedia.org/ontology/productionCompany>",
6
+ "<http://dbpedia.org/ontology/producer>",
7
+ "<http://dbpedia.org/ontology/writer>",
8
+ "<http://dbpedia.org/ontology/distributor>",
9
+ "<http://dbpedia.org/ontology/occupation>",
10
+ "<http://dbpedia.org/ontology/genre>",
11
+ "<http://dbpedia.org/ontology/relative>",
12
+ "<http://dbpedia.org/ontology/director>",
13
+ "<http://dbpedia.org/ontology/musicComposer>"
14
+ ]